-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJDG.json
More file actions
14299 lines (14299 loc) · 493 KB
/
JDG.json
File metadata and controls
14299 lines (14299 loc) · 493 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": "Jdg",
"content": []
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 JDG\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": [
"Judges\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"Judges\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"Judges\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"Jdg\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Judges\n"
]
},
{
"type": "para",
"marker": "ie",
"content": []
},
{
"type": "chapter",
"marker": "c",
"number": "1",
"sid": "Jdg 1"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "Jdg 1:1"
},
"And¦111577=he/it¦111577_was¦111577 after¦111578 the¦111579_death¦111579_of¦111579 Yəhōshūˊa/(Joshua)¦111580 and¦111581= the¦111582_people¦111582_of¦111582 =they¦111581_enquired¦111581 of¦111583_Yisrā",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"/(Israel)¦111583 by¦111584÷",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦111584"
]
},
" to¦111585=say¦111585 who¦111586 will¦111587_he¦111587_go¦111587_up¦111587 to/for¦111589=ourselves¦111589 against¦111590 the¦111592÷Kənaˊₐnī/(Canaanite)[s]¦111592 at¦111593÷first¦111593 to¦111594÷engage¦111594_in¦111594_battle¦111594 in/on/over¦111595=him/it¦111595.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "Jdg 1:2"
},
"And¦111597= ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦111598"
]
},
" =he/it¦111597_said¦111597 Yəhūdāh/(Judah)¦111599 he¦111600_will¦111600_go¦111600_up¦111600 here¦111601 I¦111602_have¦111602_given¦111602 untr DOM¦111603untr* the¦111605=earth/land¦111605 in¦111606=his/its¦111606=hand¦111606.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "Jdg 1:3"
},
"And¦111608= Yəhūdāh¦111609 =he/it¦111608_said¦111608 to¦111610÷Shimˊōn¦111610 his/its¦111611=woman¦111611 come¦111612_up¦111612 with¦111613÷me¦111613 in¦111614÷my¦111614_of¦111614÷lot¦111614 so¦111615÷that¦111615_we¦111615_may¦111615_fight¦111615 against¦111616÷Kənaˊₐnī[s]¦111616 and¦111617÷I¦111617_will¦111617_go¦111617 also¦111618 I¦111620 with¦111621÷you¦111621 in¦111622÷your¦111622_of¦111622÷lot¦111622 and¦111623=he/it¦111623_went¦111623 with¦111624=him/it¦111624 Shimˊōn¦111625.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "Jdg 1:4"
},
"And¦111627= Yəhūdāh¦111628 =he/it¦111627_ascended¦111627 and¦111629= ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦111630"
]
},
" =he/it¦111629_gave¦111629 untr DOM¦111631untr* the¦111633=Kənaˊₐnī¦111633 and¦111634÷the¦111634÷Pərizzī[s]¦111634 in¦111635÷their¦111635_of¦111635÷hand¦111635 and¦111636÷they¦111636÷defeated¦111636_them¦111636 at¦111637÷Bezeq¦111637 ten¦111638_of¦111638 thousand(s)¦111639 man¦111640.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "Jdg 1:5"
},
"And¦111642÷they¦111642_found¦111642 untr DOM¦111643untr* Adoni-¦111645 Bezeq¦111646 at¦111647÷Bezeq¦111647 and¦111648÷they¦111648_fought¦111648 in/on/over¦111649=him/it¦111649 and¦111650÷they¦111650_defeated¦111650 untr DOM¦111651untr* the¦111653÷Kənaˊₐnī[s]¦111653 and¦111654=untr DOM¦111654untr* the¦111656÷Pərizzī[s]¦111656.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "Jdg 1:6"
},
"And¦111658= Adoni-¦111659 =he¦111658_fled¦111658 Bezek¦111660 and¦111661÷they¦111661_pursued¦111661 after¦111662÷him¦111662 and¦111663÷they¦111663_seized¦111663 untr DOM¦111664untr*=him/it¦111664 and¦111665÷they¦111665_cut¦111665_off¦111665 untr DOM¦111666untr* the¦111668_thumbs¦111668_of¦111668 his¦111669_hands¦111669_of¦111669÷of¦111669 and¦111670÷his¦111670_of¦111670÷feet¦111670.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "Jdg 1:7"
},
"And¦111672= Adoni-¦111673 =he/it¦111672_said¦111672 Bezek¦111675 seventy¦111676 kings¦111678 the¦111679_thumbs¦111679_of¦111679 their¦111680_hands¦111680_of¦111680÷of¦111680 and¦111681÷their¦111681_of¦111681÷feet¦111681 cut¦111682_off¦111682 they¦111683_were¦111683 gathering¦111684_up¦111684 under¦111685 table¦111686_of¦111686÷my¦111686 just¦111687=as¦111687 I¦111688_have¦111688_done¦111688 so¦111689 he¦111690_has¦111690_repaid¦111690 to¦111692=me¦111692 god¦111693 and¦111694÷they¦111694÷brought¦111694_him¦111694 Yərūshālam/(Jerusalem)¦111695 and¦111696=he/it¦111696_died¦111696 there¦111697.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "Jdg 1:8"
},
"and¦111700= the¦111701_descendants¦111701_of¦111701 =they¦111700_fought¦111700 of¦111703_Yəhūdāh¦111703 against¦111704÷Yərūshālam/(Jerusalem)¦111704 and¦111705÷they¦111705_captured¦111705 it¦111706 and¦111707÷they¦111707÷struck¦111707_it¦111707_down¦111707 to¦111708_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦111708"
]
},
"÷mouth¦111708_of¦111708 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦111710"
]
},
"_sword¦111710 and¦111711=untr DOM¦111711untr* the¦111713=city¦111713 they¦111714_sent¦111714 in¦111715÷fire¦111715.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "Jdg 1:9"
},
"And¦111717=after¦111717 the¦111719_descendants¦111719_of¦111719 they¦111718_went¦111718_down¦111718 of¦111720_Yəhūdāh/(Judah)¦111720 to¦111721÷fight¦111721 against¦111722÷Kənaˊₐnī/(Canaanite)[s]¦111722 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦111723_was¦111723"
]
},
"_dwelling¦111723 the¦111724_hill¦111724÷country¦111724 and¦111725÷the¦111725÷Negeⱱ¦111725 and¦111726÷the¦111726÷Shephelah¦111726.\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "Jdg 1:10"
},
"And¦111728= Yəhūdāh¦111729 =he/it¦111728_went¦111728 against¦111730 the¦111732÷Kənaˊₐnī[s]¦111732 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦111733÷was¦111733"
]
},
"_dwelling¦111733 in¦111734÷Ḩeⱱrōn¦111734 and¦111735=name¦111735_of¦111735 Ḩeⱱrōn¦111737 formerly¦111738 ",
{
"type": "char",
"marker": "add",
"content": [
"+was¦111739"
]
},
"_Qiryat¦111739 ʼArbaˊ¦111740 and¦111741÷they¦111741_defeated¦111741 untr DOM¦111742untr* Shēshay¦111744 and¦111745=untr DOM¦111745untr* ʼAḩīman¦111747 and¦111748=untr DOM¦111748untr* Talmay¦111750.\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "Jdg 1:11"
},
"And¦111752=he/it¦111752_went¦111752 from¦111753=there¦111753 against¦111754 the¦111756_inhabitants¦111756_of¦111756 Dəⱱīr¦111757 and¦111758=name¦111758_of¦111758 Dəⱱīr¦111760 formerly¦111761 ",
{
"type": "char",
"marker": "add",
"content": [
"+was¦111762"
]
},
"_Qiryat¦111762 Sepher¦111764.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "Jdg 1:12"
},
"And¦111766= Kālēⱱ/(Caleb)¦111767 =he/it¦111766_said¦111766 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦111768"
]
},
"_",
{
"type": "char",
"marker": "add",
"content": [
">one¦111768"
]
},
"_who¦111768 he¦111770_will¦111770_attack¦111770 untr DOM¦111771untr* Qiryat¦111773 Sepher¦111775 and¦111776÷he¦111776÷will¦111776_capture¦111776_it¦111776 and¦111777÷I¦111777_will¦111777_give¦111777 to¦111778=him/it¦111778 untr DOM¦111779untr* ˊAkşāh¦111781 daughter¦111782_of¦111782÷my¦111782 to/for¦111783=(a)¦111783_woman¦111783.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "Jdg 1:13"
},
"And¦111785÷he¦111785÷captured¦111785_it¦111785 ˊĀtənī",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"¦111786 the¦111787_son¦111787_of¦111787 Qənaz¦111789 the¦111790_brother¦111790_of¦111790 Kālēⱱ¦111791 the¦111792=small(sg)¦111792 from¦111793=him/it¦111793 and¦111794÷he¦111794_gave¦111794 to¦111796=him/it¦111796 untr DOM¦111797untr* ˊAkşāh¦111799 daughter¦111800_of¦111800÷his¦111800 to/for¦111801=(a)¦111801_woman¦111801.\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "Jdg 1:14"
},
"And¦111803=he/it¦111803_was¦111803 when¦111804÷she¦111804÷came¦111804 and¦111805÷she¦111805÷incited¦111805_him¦111805 to¦111806÷ask¦111806 from¦111807÷with¦111807 father¦111809_of¦111809÷her¦111809 the¦111810=field¦111810 and¦111811÷she¦111811_went¦111811_down¦111811 from¦111812=under¦111812 the¦111813÷donkey¦111813 and¦111814=he/it¦111814_said¦111814 to/for¦111816=her/it¦111816 Kālēⱱ¦111817 what¦111818 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦111820"
]
},
"_to¦111820÷you¦111820.\n",
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "Jdg 1:15"
},
"And¦111822=she/it¦111822_said¦111822 to¦111823=him/it¦111823 come¦111824=now¦111824 to/for¦111826=me¦111826 a¦111827_blessing¦111827 if/because¦111828 the¦111829_land¦111829_of¦111829 the¦111830_Negeⱱ¦111830 you¦111831÷have¦111831_given¦111831_to¦111831_me¦111831 and¦111832=you(ms)¦111832_will¦111832_give¦111832 to¦111833=me¦111833 springs¦111834_of¦111834 water¦111835 and¦111836÷he¦111836_gave¦111836 to/for¦111838=her/it¦111838 Kālēⱱ¦111839 untr DOM¦111840untr* springs¦111841_of¦111841 upper¦111842 and¦111843=untr DOM¦111843untr* springs¦111844_of¦111844 lower¦111845.\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "Jdg 1:16"
},
"and¦111848=the¦111848_sons¦111848 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦111849"
]
},
"_Qēynī¦111849 the¦111850_father-in-law¦111850_of¦111850 Mosheh¦111851 they¦111852_went¦111852_up¦111852 from¦111853÷the¦111853_city¦111853_of¦111853 the¦111854_palm¦111854_trees¦111854 with¦111855 the¦111857_descendants¦111857_of¦111857 Yəhūdāh/(Judah)¦111858 the¦111859_wilderness¦111859_of¦111859 Yəhūdāh¦111860 which¦111861 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦111862"
]
},
"_in¦111862÷the¦111862_Negeⱱ¦111862_of¦111862 ˊArād¦111863 and¦111864=he/it¦111864_went¦111864 and¦111865=he/it¦111865_sat¦111865_down//remained//lived¦111865 with¦111866 the¦111868÷people¦111868.\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "Jdg 1:17"
},
"And¦111870= Yəhūdāh¦111871 =he/it¦111870_went¦111870 with¦111872 Shimˊōn¦111874 his/its¦111875=woman¦111875 and¦111876÷they¦111876_attacked¦111876 untr DOM¦111877untr* the¦111879÷Kənaˊₐnī/(Canaanite)[s]¦111879 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦111880_was¦111880"
]
},
"_dwelling¦111880 Tsəfat/(Zephath)¦111881 and¦111882÷they¦111882_totally¦111882_destroyed¦111882 it¦111883 and¦111884=he/it¦111884_called¦111884 untr DOM¦111885untr* the¦111887_name¦111887_of¦111887 the¦111889=city¦111889 Ḩārəmāh¦111890.\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "Jdg 1:18"
},
"And¦111892= Yəhūdāh¦111893 =he¦111892_captured¦111892 untr DOM¦111894untr* ˊAzzāh¦111896 and¦111897=untr DOM¦111897untr* territory¦111899_of¦111899÷its¦111899 and¦111900÷untr DOM¦111900untr* ʼAshqəlōn¦111902 and¦111903=untr DOM¦111903untr* territory¦111905_of¦111905÷its¦111905 and¦111906=untr DOM¦111906untr* ˊEqrōn¦111908 and¦111909=untr DOM¦111909untr* territory¦111911_of¦111911÷its¦111911.\n",
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "Jdg 1:19"
},
"And¦111913=he/it¦111913_was¦111913 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦111914"
]
},
" with¦111915 Yəhūdāh¦111917",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:19 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We read the punctuation in L differently from BHQ."
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:19 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: Marks an anomalous form."
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:19 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We read punctuation in L differently from BHS."
]
}
],
"caller": "+"
},
" and¦111921÷it¦111921_took¦111921_possession¦111921_of¦111921 untr DOM¦111922untr* the¦111924_hill¦111924÷country¦111924 if/because¦111925 not¦111926 to¦111927÷dispossess¦111927 untr DOM¦111928untr* the¦111930_inhabitants¦111930_of¦111930 the¦111931_valley¦111931 if/because¦111932 chariotry¦111934_of¦111934 iron¦111935 to/for¦111936=them¦111936.\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "Jdg 1:20"
},
"And¦111938÷people¦111938_gave¦111938 to¦111939÷Kālēⱱ/(Caleb)¦111939 untr DOM¦111940untr* Ḩeⱱrōn¦111942 just¦111943=as¦111943 he¦111944_had¦111944_said¦111944 Mosheh¦111945 and¦111946÷he¦111946_dispossessed¦111946 from¦111947=there¦111947 untr DOM¦111948untr* three¦111950 the¦111951_sons¦111951_of¦111951 (the)¦111952÷ˊĀnāq¦111952.\n",
{
"type": "verse",
"marker": "v",
"number": "21",
"sid": "Jdg 1:21"
},
"And¦111954=untr DOM¦111954untr* the¦111956=Yəⱱūşī¦111956 Yərūshālam/(Jerusalem)¦111958 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦111957_was¦111957"
]
},
"_dwelling¦111957 not¦111959 the¦111961_descendants¦111961_of¦111961 they¦111960_dispossessed¦111960 of¦111962_Binyāmīn¦111962 and¦111963=he/it¦111963_sat¦111963_down//remained//lived¦111963 the¦111964=Yəⱱūşī¦111964 with¦111965 the¦111967_descendants¦111967_of¦111967 Binyāmīn¦111968 in¦111969÷Yərūshālam/(Jerusalem)¦111969 until¦111970 the¦111971=day¦111971 (the)¦111972÷this¦111972.\n",
{
"type": "verse",
"marker": "v",
"number": "22",
"sid": "Jdg 1:22"
},
"and¦111975= the¦111976_house¦111976_of¦111976 =they¦111975_went¦111975_up¦111975 of¦111978_Yōşēf/(Joseph)¦111978 also¦111979 they¦111981 Bēyt-¦111982 ",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"¦111984 and¦111985=",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦111985"
]
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"+was¦111986"
]
},
"_with¦111986÷them¦111986.\n",
{
"type": "verse",
"marker": "v",
"number": "23",
"sid": "Jdg 1:23"
},
"And¦111988= the¦111989_house¦111989_of¦111989 =they¦111988_caused¦111988_to¦111988_spy¦111988_out¦111988 of¦111991_Yōşēf¦111991 in¦111992=house¦111992_of¦111992 ",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"¦111994 and¦111995=name¦111995_of¦111995 the¦111997=city¦111997 formerly¦111998 ",
{
"type": "char",
"marker": "add",
"content": [
"+was¦111999"
]
},
"_Lūz¦111999.\n",
{
"type": "verse",
"marker": "v",
"number": "24",
"sid": "Jdg 1:24"
},
"And¦112001=they¦112001_saw¦112001 ",
{
"type": "char",
"marker": "add",
"content": [
"those¦112002= a¦112003_man¦112003 =who¦112002"
]
},
"_watched¦112002 coming¦112004_out¦112004 from¦112005 the¦112007=city¦112007 and¦112008=they¦112008_said¦112008 to¦112009=him/it¦112009 show¦112010÷us¦112010 please¦112011 untr DOM¦112012untr* the¦112014_entrance¦112014_of¦112014 the¦112015=city¦112015 and¦112016÷we¦112016_will¦112016_do¦112016 with¦112017÷you¦112017 loyalty¦112018.\n",
{
"type": "verse",
"marker": "v",
"number": "25",
"sid": "Jdg 1:25"
},
"And¦112020÷he¦112020÷showed¦112020_them¦112020 untr DOM¦112021untr* the¦112023_entrance¦112023_of¦112023 the¦112024=city¦112024 and¦112025÷they¦112025_struck¦112025_down¦112025 untr DOM¦112026untr* the¦112028=city¦112028 to¦112029_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦112029"
]
},
"÷mouth¦112029_of¦112029 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦112031"
]
},
"_sword¦112031 and¦112032=untr DOM¦112032untr* the¦112034=man¦112034 and¦112035=untr DOM¦112035untr* all¦112037_of¦112037 family¦112039_of¦112039÷his¦112039 they¦112040_let¦112040_go¦112040.\n",
{
"type": "verse",
"marker": "v",
"number": "26",
"sid": "Jdg 1:26"
},
"And¦112042=he/it¦112042_went¦112042 the¦112043=man¦112043 the¦112044_land¦112044_of¦112044 the¦112045_Ḩittiy¦112045 and¦112046=he/it¦112046_built¦112046 a¦112047_city¦112047 and¦112048=he/it¦112048_called¦112048 his/its¦112049=name¦112049 Lūz¦112050 that¦112051 his/its¦112052=name¦112052 until¦112053 the¦112054=day¦112054 (the)¦112055÷this¦112055.\n",
{
"type": "verse",
"marker": "v",
"number": "27",
"sid": "Jdg 1:27"
},
"and¦112058=not¦112058 Mənashsheh¦112061 it¦112060_took¦112060_possession¦112060_of¦112060 untr DOM¦112062untr* Bēyt¦112064 Shan¦112066 and¦112067=untr DOM¦112067untr* daughters¦112069_of¦112069÷its¦112069 and¦112070=untr DOM¦112070untr* Taˊₐnāk¦112072 and¦112073=untr DOM¦112073untr* daughters¦112075_of¦112075÷its¦112075 and¦112076=untr DOM¦112076untr* the¦112078_inhabitants¦112078_of¦112078",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:27 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB variant note: ישב: (x-qere) 'יֹשְׁבֵ֨י': lemma=3427 morph=HVqrmpc id=07Xh9 יֹשְׁבֵ֨י"
]
}
],
"caller": "+"
},
" of¦112080_Dōr¦112080 and¦112081=untr DOM¦112081untr* daughters¦112083_of¦112083÷its¦112083 and¦112084=untr DOM¦112084untr* of¦112087_Yiⱱləˊām/(Ibleam)¦112087 the¦112086_inhabitants¦112086_of¦112086 and¦112088=untr DOM¦112088untr* daughters¦112090_of¦112090÷its¦112090 and¦112091=untr DOM¦112091untr* of¦112094_Məgiddōn¦112094 the¦112093_inhabitants¦112093_of¦112093 and¦112095=untr DOM¦112095untr* daughters¦112097_of¦112097÷its¦112097 and¦112098÷it¦112098_was¦112098_determined¦112098 the¦112099÷Kənaˊₐnī/(Canaanite)[s]¦112099 to¦112100÷dwell¦112100 on¦112101_the¦112101=earth¦112101 (the)¦112102÷this¦112102.\n",
{
"type": "verse",
"marker": "v",
"number": "28",
"sid": "Jdg 1:28"
},
"And¦112104=he/it¦112104_was¦112104 if/because¦112105 Yisrā",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"/(Israel)¦112108 it¦112107_became¦112107_strong¦112107 and¦112109=he/it¦112109_assigned¦112109 untr DOM¦112110untr* the¦112112÷Kənaˊₐnī[s]¦112112 into¦112113÷forced¦112113_labour¦112113 and¦112114÷completely¦112114_(dispossess)¦112114 not¦112115 it¦112116÷dispossessed¦112116_him¦112116.\n",
{
"type": "verse",
"marker": "v",
"number": "29",
"sid": "Jdg 1:29"
},
"and¦112119÷ʼEfrayim¦112119 not¦112120 it¦112121_dispossessed¦112121 untr DOM¦112122untr* the¦112124÷Kənaˊₐnī[s]¦112124 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦112125÷was¦112125"
]
},
"_dwelling¦112125 in¦112126÷Gezer¦112126 and¦112127=he/it¦112127_sat¦112127_down//remained//lived¦112127 the¦112128÷Kənaˊₐnī[s]¦112128 in¦112129÷its¦112129_of¦112129÷midst¦112129 in¦112130÷Gezer¦112130.\n",
{
"type": "verse",
"marker": "v",
"number": "30",
"sid": "Jdg 1:30"
},
"Zəⱱulun¦112133 not¦112134 it¦112135_dispossessed¦112135 untr DOM¦112136untr* the¦112138_inhabitants¦112138_of¦112138 Qiţrōn¦112139 and¦112140=untr DOM¦112140untr* the¦112142_inhabitants¦112142_of¦112142 Nahₐlāl¦112143 and¦112144=he/it¦112144_sat¦112144_down//remained//lived¦112144 the¦112145÷Kənaˊₐnī[s]¦112145 in¦112146÷its¦112146_of¦112146÷midst¦112146 and¦112147=they¦112147_were¦112147 (into)¦112148_forced¦112148÷labour¦112148.\n",
{
"type": "verse",
"marker": "v",
"number": "31",
"sid": "Jdg 1:31"
},
"ʼĀshēr¦112151 not¦112152 it¦112153_dispossessed¦112153 untr DOM¦112154untr* the¦112156_inhabitants¦112156_of¦112156 ˊAkkō¦112157 and¦112158=untr DOM¦112158untr* the¦112160_inhabitants¦112160_of¦112160 Tsīdōn/(Sidon)¦112161 and¦112162=untr DOM¦112162untr* ʼAḩlāⱱ¦112164 and¦112165=untr DOM¦112165untr* ʼAkzīⱱ¦112167 and¦112168=untr DOM¦112168untr* Ḩelbāh¦112170 and¦112171=untr DOM¦112171untr* ʼAfēq¦112173 and¦112174=untr DOM¦112174untr* Rəḩoⱱ¦112176.\n",
{
"type": "verse",
"marker": "v",
"number": "32",
"sid": "Jdg 1:32"
},
"And¦112178=he/it¦112178_sat¦112178_down//remained//lived¦112178 the¦112179÷Asherite[s]¦112179 in¦112180÷the¦112180_midst¦112180_of¦112180 the¦112181_Kənaˊₐnī[s]¦112181 the¦112182_inhabitants¦112182_of¦112182 the¦112183=earth/land¦112183 if/because¦112184 not¦112185 it¦112186÷dispossessed¦112186_it¦112186.\n",
{
"type": "verse",
"marker": "v",
"number": "33",
"sid": "Jdg 1:33"
},
"Naftālī¦112189 not¦112190 it¦112192_dispossessed¦112192 untr DOM¦112193untr* the¦112195_inhabitants¦112195_of¦112195 Bēyt¦112196 Shemesh¦112198 and¦112199=untr DOM¦112199untr* the¦112201_inhabitants¦112201_of¦112201 Bēyt¦112202 Anath¦112204 and¦112205=he/it¦112205_sat¦112205_down//remained//lived¦112205 in¦112206÷the¦112206_midst¦112206_of¦112206 the¦112207_Kənaˊₐnī[s]¦112207 the¦112208_inhabitants¦112208_of¦112208 the¦112209=earth/land¦112209 and¦112210÷the¦112210_inhabitants¦112210_of¦112210 Bēyt¦112211 Shemesh¦112213 and¦112214 anath¦112215 they¦112216_became¦112216 to/for¦112217=them¦112217 (into)¦112218_forced¦112218÷labour¦112218.\n",
{
"type": "verse",
"marker": "v",
"number": "34",
"sid": "Jdg 1:34"
},
"and¦112221÷they¦112221_pressed¦112221 the¦112222=ʼAmorī¦112222 untr DOM¦112223untr* the¦112225_descendants¦112225_of¦112225 Dān¦112227 to¦112228÷the¦112228_hill¦112228÷country¦112228 if/because¦112229 not¦112231 it¦112232÷permitted¦112232_it¦112232 to¦112233÷go¦112233_down¦112233 to¦112234÷valley¦112234.\n",
{
"type": "verse",
"marker": "v",
"number": "35",
"sid": "Jdg 1:35"
},
"And¦112236÷it¦112236_was¦112236_determined¦112236 the¦112237=ʼAmorī¦112237 to¦112238÷dwell¦112238 in¦112239÷the¦112239_mountain¦112239_of¦112239 Ḩereş¦112241 in¦112242÷ʼAyyālōn¦112242 and¦112243÷in¦112243÷Shaˊalⱱīm¦112243 and¦112244= the¦112245_hand¦112245_of¦112245 =it¦112244_was¦112244_heavy¦112244 of¦112246_the¦112246_house¦112246_of¦112246 of¦112248_Yōşēf/(Joseph)¦112248 and¦112249=they¦112249_were¦112249 (into)¦112250_forced¦112250÷labour¦112250.\n",
{
"type": "verse",
"marker": "v",
"number": "36",
"sid": "Jdg 1:36"
},
"And¦112252÷the¦112252_border¦112252_of¦112252 the¦112253=ʼAmorī¦112253 ",
{
"type": "char",
"marker": "add",
"content": [
"+was¦112254"
]
},
"_from¦112254_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦112254"
]
},
"÷ascent¦112254_of¦112254 scorpions¦112255 from¦112256÷(the)¦112256÷Sela¦112256 and¦112257÷(to)¦112257÷upwards¦112257.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "Jdg 2"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "Jdg 2:1"
},
"and¦112260= the¦112261_messenger¦112261_of¦112261 =he/it¦112260_ascended¦112260 of¦112263_",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦112263"
]
},
" from¦112264 (the)¦112266÷Gilgāl¦112266 to¦112267 (the)¦112269÷Bokim¦112269 and¦112271=he/it¦112271_said¦112271 I¦112272_brought¦112272_up¦112272 you(pl)¦112273 from¦112274=Miʦrayim/(Egypt)¦112274 and¦112275÷I¦112275_brought¦112275 you(pl)¦112276 into¦112277 the¦112279=earth/land¦112279 which¦112280 I¦112281_swore¦112281 to¦112282÷your(pl)¦112282_of¦112282÷ancestors¦112282 and¦112283÷I¦112283_said¦112283 not¦112284 I¦112286_will¦112286_break¦112286 covenant¦112287_of¦112287÷my¦112287 with¦112288÷you(pl)¦112288 forever¦112289.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "Jdg 2:2"
},
"And¦112291÷you(pl)¦112291 not¦112292 you(pl)¦112294_must¦112294_make¦112294 a¦112295_covenant¦112295 to¦112296÷the¦112296_inhabitants¦112296_of¦112296 the¦112297=earth/land¦112297 (the)¦112298÷this¦112298 altars¦112299_of¦112299÷their¦112299 you(pl)¦112300÷will¦112300_pull¦112300_down¦112300 and¦112301=not¦112301 you(pl)¦112303_have¦112303_listened¦112303 to¦112304÷my¦112304_of¦112304÷voice¦112304 what¦112305 this¦112307 have¦112308_you(pl)¦112308_done¦112308.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "Jdg 2:3"
},
"And¦112310=also¦112310 I¦112311_say¦112311 not¦112312 I¦112314_will¦112314_drive¦112314_out¦112314 them¦112315 from¦112316÷before¦112316_of¦112316÷you(pl)¦112316 and¦112317=they¦112317_will¦112317_be¦112317 to/for¦112318=you(pl)¦112318 (into)¦112319÷sides¦112319 and¦112320÷their¦112320_of¦112320÷gods¦112320 they¦112321_will¦112321_become¦112321 to/for¦112322=you(pl)¦112322 (into)¦112323_a¦112323÷snare¦112323.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "Jdg 2:4"
},
"And¦112325=he/it¦112325_was¦112325 just¦112326÷as¦112326_spoke¦112326 the¦112327_messenger¦112327_of¦112327 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦112328"
]
},
" untr DOM¦112329untr* the¦112331÷words/messages¦112331 the¦112332=these¦112332 to¦112333 all¦112335_of¦112335 the¦112337_people¦112337_of¦112337 Yisrā",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"/(Israel)¦112338 and¦112339÷they¦112339_lifted¦112339_up¦112339 the¦112340÷people¦112340 untr DOM¦112341untr* voice¦112343_of¦112343÷their¦112343 and¦112344÷they¦112344_wept¦112344.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "Jdg 2:5"
},
"And¦112346÷they¦112346_called¦112346 the¦112347_name¦112347_of¦112347 the¦112349_place¦112349 (the)¦112350=that¦112350 Bokim¦112351 and¦112352÷they¦112352_sacrificed¦112352 there¦112354 to/for¦112355=",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦112355"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "Jdg 2:6"
},
"and¦112358= Yəhōshūˊa/(Joshua)¦112359 =he¦112358_sent¦112358_away¦112358 untr DOM¦112360untr* the¦112362÷people¦112362 and¦112363= the¦112364_people¦112364_of¦112364 =they¦112363_went¦112363 of¦112366_Yisrā",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"/(Israel)¦112366 everyone¦112367 to¦112368÷his¦112368_own¦112368_of¦112368÷inheritance¦112368 to¦112369÷take¦112369_possession¦112369_of¦112369 untr DOM¦112370untr* the¦112372=earth/land¦112372.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "Jdg 2:7"
},
"And¦112374÷they¦112374_served¦112374 the¦112375÷people¦112375 untr DOM¦112376untr* ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦112378"
]
},
" all¦112379_of¦112379 the¦112380_days¦112380_of¦112380 Yəhōshūˊa¦112381 and¦112382=all/each/any/every¦112382 the¦112384_days¦112384_of¦112384 the¦112385_old¦112385_",
{
"type": "char",
"marker": "add",
"content": [
">men¦112385"
]
},
" who¦112386 days¦112388 they¦112387_made¦112387_long¦112387 after¦112389 Yəhōshūˊa¦112390 who¦112391 they¦112392_had¦112392_seen¦112392 untr DOM¦112393untr* all¦112394_of¦112394 the¦112396_work¦112396_of¦112396 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦112397"
]
},
" (the)¦112398÷great¦112398 which¦112399 he¦112400_had¦112400_done¦112400 for¦112401÷Yisrā",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"/(Israel)¦112401.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "Jdg 2:8"
},
"And¦112403= Yəhōshūˊa¦112404 =he/it¦112403_died¦112403 the¦112405_son¦112405_of¦112405 Nun¦112407 the¦112408_servant¦112408_of¦112408 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦112409"
]
},
" a¦112410_son¦112410_of¦112410 a¦112412_hundred¦112412 and¦112413÷ten¦112413 years¦112414.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "Jdg 2:9"
},
"And¦112416÷people¦112416_buried¦112416 him¦112417 in¦112418÷the¦112418_territory¦112418_of¦112418 his¦112419_inheritance¦112419_of¦112419÷of¦112419 in¦112420 heres¦112422 in¦112423÷the¦112423_hill¦112423_country¦112423_of¦112423 ʼEfrayim¦112424 from¦112425_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦112425"
]
},
"÷north¦112425_of¦112425 the¦112426_mountain¦112426_of¦112426 Gaˊash¦112428.\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "Jdg 2:10"
},
"And¦112430=also¦112430 all¦112431_of¦112431 the¦112433÷generation¦112433 (the)¦112434=that¦112434 they¦112435_were¦112435_gathered¦112435 to¦112436 ancestors¦112438_of¦112438÷its¦112438 and¦112439= a¦112440_generation¦112440 =he/it¦112439_rose¦112439_up¦112439 another¦112441 after¦112442÷them¦112442 which¦112443 not¦112444 they¦112446_knew¦112446 untr DOM¦112447untr* ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦112449"
]
},
" and¦112450=also¦112450 untr DOM¦112451untr* the¦112453÷work¦112453 which¦112454 he¦112455_had¦112455_done¦112455 for¦112456÷Yisrā",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"/(Israel)¦112456.\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "Jdg 2:11"
},
"and¦112459= the¦112460_people¦112460_of¦112460 =they¦112459_made¦112459 of¦112462_Yisrā",
{
"type": "char",
"marker": "sup",
"content": [
"ʼēl"
]
},
"/(Israel)¦112462 untr DOM¦112463untr* the¦112465÷evil¦112465 in/on¦112466=both¦112466_eyes¦112466_of¦112466 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦112467"
]
},
" and¦112468÷they¦112468_served¦112468 untr DOM¦112469untr* the¦112471÷Baˊal¦112471.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "Jdg 2:12"
},
"And¦112473÷they¦112473_abandoned¦112473 untr DOM¦112474untr* ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦112476"
]
},
" the¦112478_god¦112478_of¦112478 their¦112479_ancestors¦112479_of¦112479÷of¦112479 ",
{
"type": "char",
"marker": "add",
"content": [
"who¦112480"
]
},
"_brought¦112480÷out¦112480 them¦112481 from¦112482÷the¦112482_land¦112482_of¦112482 Miʦrayim/(Egypt)¦112483 and¦112484÷they¦112484_went¦112484 after¦112485 gods¦112487 other¦112488 some¦112489÷of¦112489_the¦112489_gods¦112489_of¦112489 the¦112490_peoples¦112490 which¦112491 ",
{
"type": "char",
"marker": "add",
"content": [
"+were¦112492"
]
},
"_around¦112492_of¦112492÷them¦112492 and¦112493÷they¦112493_bowed¦112493_down¦112493 to/for¦112494=them¦112494 and¦112495÷they¦112495_provoked¦112495_to¦112495_anger¦112495 untr DOM¦112496untr* ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦112498"
]
},
".",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:12 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We read one or more accents in L differently from BHQ."
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:12 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We read one or more accents in L differently than BHS. Often this notation indicates a typographical error in BHS."
]
}
],
"caller": "+"
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "Jdg 2:13"
},
"and¦112502÷they¦112502_abandoned¦112502 untr DOM¦112503untr* ",
{