-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathZEC.json
More file actions
6117 lines (6117 loc) · 177 KB
/
ZEC.json
File metadata and controls
6117 lines (6117 loc) · 177 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"type": "USJ",
"version": "3.1",
"content": [
{
"type": "book",
"marker": "id",
"code": "Zec",
"content": []
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 ZEC\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_OT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"The parsed Hebrew text used to create this file is Copyright © 2019 by https://hb.openscriptures.org\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"Our English glosses are released CC0 by https://Freely-Given.org\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM file created 2026-04-09 12:49 by extract_glossed_OSHB_OT_to_ESFM v1.0\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"USFM file edited by ScriptedBibleEditor v0.35\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"Zəkar"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"Zəkar"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"Zəkar"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"Zec\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Zəkar"
]
},
{
"type": "para",
"marker": "ie",
"content": []
},
{
"type": "chapter",
"marker": "c",
"number": "1",
"sid": "Zec 1"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "Zec 1:1"
},
"In¦376324÷month¦376324 (the)¦376325÷eighth¦376325 in¦376326=year¦376326 two¦376327 of¦376328÷Dārəyāvesh¦376328 the¦376330_message¦376330_of¦376330 it¦376329_came¦376329 of¦376332_",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376332"
]
},
" to¦376333 Zəkar",
{
"type": "char",
"marker": "sup",
"content": [
"yāh"
]
},
"¦376335 the¦376336_son¦376336_of¦376336 Berek",
{
"type": "char",
"marker": "sup",
"content": [
"yāh"
]
},
"¦376338 the¦376339_son¦376339_of¦376339 ˊIddō¦376341 the¦376342÷prophet¦376342 to¦376343=say¦376343.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "Zec 1:2"
},
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376346"
]
},
" He¦376345_was¦376345_angry¦376345 towards¦376347 ancestors¦376349_of¦376349÷your(pl)¦376349 anger¦376350.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "Zec 1:3"
},
"And¦376352÷you¦376352_will¦376352_say¦376352 to¦376353÷them¦376353 thus¦376354 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376356"
]
},
" he¦376355_says¦376355 hosts¦376357 return¦376358 to¦376359=me¦376359 the¦376360_utterance¦376360_of¦376360 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376361"
]
},
" hosts¦376362 and¦376363÷I¦376363_will¦376363_return¦376363 to¦376364÷you(pl)¦376364 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376366"
]
},
" he¦376365_says¦376365 hosts¦376367.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "Zec 1:4"
},
"Do¦376369_not¦376369 be¦376371 like¦376372÷your(pl)¦376372_of¦376372÷ancestors¦376372 whom¦376373 they¦376374_proclaimed¦376374 to¦376376÷them¦376376 the¦376377÷prophets¦376377 (the)¦376378÷former¦376378 to¦376379=say¦376379 thus¦376380 he¦376381_says¦376381 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376382"
]
},
" hosts¦376383 turn¦376384_back¦376384 please¦376385 from¦376386÷your(pl)¦376386_of¦376386÷ways¦376386 (the)¦376387÷evil¦376387 and¦376388÷your(pl)¦376388_of¦376388÷deeds¦376388",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:4 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB variant note: ו/מעלילי/כם: (x-qere) 'וּ/מַֽעֲלְלֵי/כֶ֖ם': lemma=c/4611 n=1.0 morph=HC/Ncmpc/Sp2mp id=38fsu וּ/מַֽעֲלְלֵי/כֶ֖ם"
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:4 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We agree with both BHS 1997 and BHQ on an unexpected reading."
]
}
],
"caller": "+"
},
" (the)¦376391÷evil¦376391 and¦376392=not¦376392 they¦376393_listened¦376393 and¦376394=not¦376394 they¦376396_paid¦376396_attention¦376396 to¦376397=me¦376397 the¦376398_utterance¦376398_of¦376398 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376400"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "Zec 1:5"
},
"Ancestors¦376402_of¦376402÷your(pl)¦376402 where¦376403 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦376405"
]
},
"_they¦376405 and¦376406÷the¦376406÷prophets¦376406 forever¦376407 do¦376408_they¦376408_live¦376408.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "Zec 1:6"
},
"Nevertheless¦376410 words/messages¦376412_of¦376412÷my¦376412 and¦376413÷my¦376413_of¦376413÷regulations¦376413 which¦376414 I¦376415_commanded¦376415 untr DOM¦376416untr* servants¦376418_of¦376418÷my¦376418 the¦376419÷prophets¦376419 am¦376420=not¦376420 did¦376421_they¦376421_overtake¦376421 ancestors¦376422_of¦376422÷your(pl)¦376422 and¦376423÷they¦376423_repented¦376423 and¦376424=they¦376424_said¦376424 just¦376425=as¦376425 he¦376426_planned¦376426 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376427"
]
},
" hosts¦376428 for¦376429=doing¦376429 to/for¦376430=us¦376430 according¦376431÷to¦376431_of¦376431÷our¦376431_ways¦376431 and¦376432÷according¦376432÷to¦376432_of¦376432÷our¦376432_deeds¦376432 so¦376433 he¦376434_has¦376434_done¦376434 with¦376435÷us¦376435.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "Zec 1:7"
},
"in/on¦376438=day¦376438 twenty¦376439 and¦376440÷four¦376440 of¦376441÷one¦376441_plus¦376441_of¦376441 ten¦376443 month¦376444 it¦376445 ",
{
"type": "char",
"marker": "add",
"content": [
"+was¦376447"
]
},
"_the¦376447_month¦376447_of¦376447 Shebat¦376448 in¦376449=year¦376449 two¦376450 of¦376451÷Dārəyāvesh¦376451 the¦376453_message¦376453_of¦376453 it¦376452_came¦376452 of¦376455_",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376455"
]
},
" to¦376456 Zəkar",
{
"type": "char",
"marker": "sup",
"content": [
"yāh"
]
},
"¦376458 the¦376459_son¦376459_of¦376459 Berek",
{
"type": "char",
"marker": "sup",
"content": [
"yāh"
]
},
"¦376461 the¦376462_son¦376462_of¦376462 ˊIddō¦376464 the¦376465÷prophet¦376465 to¦376466=say¦376466.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "Zec 1:8"
},
"I¦376468_saw¦376468 the¦376470=night¦376470 and¦376471=see/lo/see¦376471 a¦376473_man¦376473 ",
{
"type": "char",
"marker": "add",
"content": [
"+was¦376474"
]
},
"_riding¦376474 on¦376475 a¦376477_horse¦376477 red¦376478 and¦376479=he¦376479 ",
{
"type": "char",
"marker": "add",
"content": [
"+was¦376480"
]
},
"_standing¦376480 between¦376481 the¦376482_myrtle¦376482÷trees¦376482 which¦376483 ",
{
"type": "char",
"marker": "add",
"content": [
"+were¦376484"
]
},
"_in¦376484÷hollow¦376484 and¦376485_",
{
"type": "char",
"marker": "add",
"content": [
"+were¦376485"
]
},
"÷behind¦376485÷him¦376485 horses¦376486 red¦376487 sorrel¦376488 and¦376489÷white¦376489.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "Zec 1:9"
},
"And¦376491÷I¦376491_said¦376491 what¦376492 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦376494"
]
},
"_these¦376494 my¦376495=master¦376495 and¦376496=he/it¦376496_said¦376496 to¦376497=me¦376497 the¦376498÷messenger¦376498 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦376499÷was¦376499"
]
},
"_speaking¦376499 with¦376500÷me¦376500 I¦376501 I¦376502÷will¦376502_show¦376502_you¦376502 what¦376503 they¦376505 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦376506"
]
},
"_these¦376506.\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "Zec 1:10"
},
"And¦376508÷he¦376508_answered¦376508 the¦376509=man¦376509 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦376510÷was¦376510"
]
},
"_standing¦376510 between¦376511 the¦376513_myrtle¦376513÷trees¦376513",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:10 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We agree with both BHS 1997 and BHQ on an unexpected reading."
]
}
],
"caller": "+"
},
" and¦376515÷he¦376515_said¦376515 these¦376516 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦376517"
]
},
"_",
{
"type": "char",
"marker": "add",
"content": [
"+those¦376517"
]
},
"_whom¦376517 he¦376518_has¦376518_sent¦376518 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376519"
]
},
" to¦376520÷go¦376520_about¦376520 on¦376521_the¦376521=earth¦376521.\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "Zec 1:11"
},
"And¦376523÷they¦376523_answered¦376523 untr DOM¦376524untr* the¦376526_messenger¦376526_of¦376526 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376527"
]
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"who¦376528÷was¦376528"
]
},
"_standing¦376528 between¦376529 the¦376530_myrtle¦376530÷trees¦376530 and¦376531=they¦376531_said¦376531 we¦376532_have¦376532_gone¦376532_about¦376532 in/on¦376533_the¦376533=earth¦376533 and¦376534=see/lo/see¦376534 all¦376535_of¦376535 the¦376537=earth/land¦376537 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦376538"
]
},
"_dwelling¦376538 and¦376539_",
{
"type": "char",
"marker": "add",
"content": [
"+is¦376539"
]
},
"÷undisturbed¦376539.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "Zec 1:12"
},
"And¦376541= the¦376542_messenger¦376542_of¦376542 =he¦376541_answered¦376541 of¦376544_",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376544"
]
},
" and¦376545÷he¦376545_said¦376545 Oh¦376546_",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376546"
]
},
" hosts¦376547 until¦376548 when¦376550 you¦376551 not¦376552 will¦376554_you¦376554_have¦376554_compassion¦376554_on¦376554 untr DOM¦376555untr* Yərūshālam/(Jerusalem)¦376557 and¦376558=untr DOM¦376558untr* the¦376559_cities¦376559_of¦376559 Yəhūdāh/(Judah)¦376560 which¦376561 you¦376562_have¦376562_been¦376562_indignant¦376562 this¦376563 seventy¦376564 year[s]¦376565.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "Zec 1:13"
},
"And¦376567= ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376568"
]
},
" =he¦376567_answered¦376567 untr DOM¦376569untr* the¦376571÷messenger¦376571 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦376572÷was¦376572"
]
},
"_speaking¦376572 with¦376573÷me¦376573 words/messages¦376574 good¦376575 words/messages¦376576 comfort(s)¦376577.\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "Zec 1:14"
},
"And¦376579=he/it¦376579_said¦376579 to¦376580=me¦376580 the¦376581÷messenger¦376581 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦376582÷was¦376582"
]
},
"_speaking¦376582 with¦376583÷me¦376583 proclaim¦376584 to¦376585=say¦376585 thus¦376586 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376588"
]
},
" he¦376587_says¦376587 hosts¦376589 I¦376590_am¦376590_jealous¦376590 for¦376591÷Yərūshālam/(Jerusalem)¦376591 and¦376592÷for¦376592÷Tsiyyōn/(Zion)¦376592 jealousy¦376593 great¦376594.\n",
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "Zec 1:15"
},
"And¦376596÷anger¦376596 great¦376597 I¦376598 ",
{
"type": "char",
"marker": "add",
"content": [
"+am¦376599"
]
},
"_angry¦376599 towards¦376600 the¦376602=nations¦376602 (the)¦376603_at¦376603÷ease¦376603 that¦376604 I¦376605 I¦376606_was¦376606_angry¦376606 a¦376607_little¦376607 and¦376608÷they¦376608 they¦376609_have¦376609_helped¦376609 for¦376610÷evil¦376610.\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "Zec 1:16"
},
"For¦376612=so/thus/hence¦376612 thus¦376613 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376616"
]
},
" he¦376615_says¦376615 I¦376617_have¦376617_returned¦376617 to¦376618÷Yərūshālam/(Jerusalem)¦376618 with¦376619÷compassion(s)¦376619 house¦376620_of¦376620÷my¦376620 it¦376621_will¦376621_be¦376621_rebuilt¦376621 in¦376622÷it¦376622 the¦376623_utterance¦376623_of¦376623 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376624"
]
},
" hosts¦376625 and¦376626÷a¦376626_measuring-line¦376626",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:16 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB variant note: ו/קוה: (x-qere) 'וְ/קָ֥ו': lemma=c/6957 b morph=HC/Ncmsa id=38wA4 וְ/קָ֥ו"
]
}
],
"caller": "+"
},
" it¦376628_will¦376628_be¦376628_stretched¦376628_out¦376628 over¦376629 Yərūshālam/(Jerusalem)¦376631.\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "Zec 1:17"
},
"Again¦376633 proclaim¦376635 to¦376636=say¦376636 thus¦376637 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376639"
]
},
" he¦376638_says¦376638 hosts¦376640 again¦376641 cities¦376643_of¦376643÷my¦376643 they¦376642_will¦376642_overflow¦376642 from¦376644÷good¦376644 and¦376645= ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376646"
]
},
" =he¦376645_will¦376645_comfort¦376645 again¦376647 untr DOM¦376648untr* Tsiyyōn¦376650 and¦376651÷he¦376651_will¦376651_choose¦376651 again¦376652 (in)¦376653÷Yərūshālam/(Jerusalem)¦376653.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "Zec 2"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "Zec 2:1"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:1 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"Note: KJB: Zech.1.18"
]
}
],
"caller": "+"
},
" and¦376657÷I¦376657_lifted¦376657_up¦376657 untr DOM¦376658untr* eyes¦376660_of¦376660÷my¦376660 and¦376661÷I¦376661_saw¦376661 and¦376662=see/lo/see¦376662 four¦376663 horns¦376664.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "Zec 2:2"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:2 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"Note: KJB: Zech.1.19"
]
}
],
"caller": "+"
},
" and¦376667÷I¦376667_said¦376667 to¦376668 the¦376670÷messenger¦376670 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦376671÷was¦376671"
]
},
"_speaking¦376671 with¦376672÷me¦376672 what¦376673 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦376675"
]
},
"_these¦376675 and¦376676=he/it¦376676_said¦376676 to¦376677=me¦376677 these¦376678 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦376679"
]
},
"_the¦376679÷horns¦376679 which¦376680 they¦376681_scattered¦376681 untr DOM¦376682untr* Yəhūdāh/(Judah)¦376684 untr DOM¦376685untr* Yisrā",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"/(Israel)¦376687 and¦376688÷Yərūshālam/(Jerusalem)¦376688.",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:2 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We agree with both BHS 1997 and BHQ on an unexpected reading."
]
}
],
"caller": "+"
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "Zec 2:3"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:3 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"Note: KJB: Zech.1.20"
]
}
],
"caller": "+"
},
" and¦376693÷he¦376693÷showed¦376693_me¦376693 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦376694"
]
},
" four¦376695 craftsmen¦376696.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "Zec 2:4"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:4 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"Note: KJB: Zech.1.21"
]
}
],
"caller": "+"
},
" and¦376699÷I¦376699_said¦376699 what¦376700 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦376701"
]
},
"_these¦376701 coming¦376702 to¦376703÷do¦376703 and¦376704=he/it¦376704_said¦376704 to¦376705=say¦376705 these¦376706 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦376707"
]
},
"_the¦376707÷horns¦376707 which¦376708 they¦376710_scattered¦376710 untr DOM¦376711untr* Yəhūdāh¦376713 according¦376714÷to¦376714_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦376714"
]
},
"_mouth¦376714_of¦376714 a¦376716_man¦376716 not¦376717 he¦376719_lifted¦376719_up¦376719 his/its¦376720=head¦376720 and¦376721=they¦376721_came¦376721 these¦376722_",
{
"type": "char",
"marker": "add",
"content": [
">craftsmen¦376722"
]
},
" to¦376723÷terrify¦376723 untr DOM¦376724untr*=them¦376724 to¦376725÷throw¦376725_down¦376725 untr DOM¦376726untr* the¦376728_horns¦376728_of¦376728 the¦376729=nations¦376729 ",
{
"type": "char",
"marker": "add",
"content": [
"which¦376730"
]
},
"_lifted¦376730= a¦376731_horn¦376731 =up¦376730 against¦376732 the¦376734_land¦376734_of¦376734 Yəhūdāh¦376735 to¦376736÷scatter¦376736÷it¦376736.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "Zec 2:5"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:5 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"Note: KJB: Zech.2.1"
]
}
],
"caller": "+"
},
" and¦376740÷I¦376740_lifted¦376740_up¦376740 eyes¦376741_of¦376741÷my¦376741 and¦376742÷I¦376742_saw¦376742 and¦376743=see/lo/see¦376743 a¦376745_man¦376745 and¦376746_",
{
"type": "char",
"marker": "add",
"content": [
"+was¦376746"
]
},
"÷in¦376746÷his¦376746_of¦376746÷hand¦376746 a¦376747_cord¦376747_of¦376747 measurement¦376748.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "Zec 2:6"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:6 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"Note: KJB: Zech.2.2"
]
}
],
"caller": "+"
},
" and¦376751÷I¦376751_said¦376751 where¦376752 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦376753"
]
},
"_you¦376753 going¦376754 and¦376755=he/it¦376755_said¦376755 to¦376756=me¦376756 to¦376757÷measure¦376757 untr DOM¦376758untr* Yərūshālam/(Jerusalem)¦376760 to¦376761=see¦376761 how¦376762÷much¦376762 breadth¦376764_of¦376764÷",
{
"type": "char",
"marker": "add",
"content": [
"+is¦376764"
]
},
"_its¦376764 and¦376765÷how¦376765÷much¦376765 length¦376766_of¦376766÷",
{
"type": "char",
"marker": "add",
"content": [
"+is¦376766"
]
},
"_its¦376766.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "Zec 2:7"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:7 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"Note: KJB: Zech.2.3"
]
}
],
"caller": "+"
},
" and¦376769=see/lo/see¦376769 the¦376770÷messenger¦376770 ",
{
"type": "char",
"marker": "add",
"content": [