-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEPH.json
More file actions
4068 lines (4068 loc) · 80.8 KB
/
EPH.json
File metadata and controls
4068 lines (4068 loc) · 80.8 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": "EPH",
"content": [
"- Open English Translation—Readers’ Version (OET-RV) v0.1.53"
]
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 EPH\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_NT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"Ephesians\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"Ephesians\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"Ephesians\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"Eph.\n"
]
},
{
"type": "para",
"marker": "mt2",
"content": [
"Paul’s letter to the believers in\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Ephesus\n"
]
},
{
"type": "para",
"marker": "is1",
"content": [
"Introduction\n"
]
},
{
"type": "para",
"marker": "is2",
"content": [
"The author\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"This ",
{
"type": "char",
"marker": "bk",
"content": [
"Letter to the believers in Ephesus"
]
},
" was written by Paul from prison in Rome.\n"
]
},
{
"type": "para",
"marker": "is2",
"content": [
"This letter\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"This letter wasn’t just written for the assembly of believers there in Ephesus, but also for other assemblies of believers.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"Paul’s main theme is about God’s plan that ‘at the right time he will gather everything, whether in heaven or here on earth, for the messiah’ (1:10).\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"In the first part of letter, he wrote about unity. Paul carefully explained about how God the father chooses his people, about forgiving and saving them from their sins through his son, Yeshua the messiah.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"In the second part of letter, Paul urges the reader that the believers need to be united in the messiah by means of their unity with each other.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"Paul uses many allegories about the unity of people with God via the messiah: the believers are the body of the messiah, he is the head; it’s like a house, with the messiah as the foundation stone; the believers are also like a bride with the messiah as the groom.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"It’s also explained here about the correct behaviour for couples, of parents and children, and for slaves and masters. Then in concluding his letter, it’s explained about the armour that’s given to believers for them to use to stand against Satan’s attacks.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"It should be noted here that this letter, like most of the scriptures, was dictated to a scribe (See 2 Thess 3:17), so it was an oral letter, quite different from our modern letters which we edit with word-processing software, adding a word back in a previous sentence, combining two short sentences, or breaking an over-long sentence. Oral letters tend to contain a lot of ",
{
"type": "char",
"marker": "it",
"content": [
"run-on sentences"
]
},
" where the thoughts keep flowing without a break, thus 1:3-14 is considered by most Greek experts to be one long sentence (like this one is 😀), however for us as readers, a sentence with some two hundred words is very difficult for us to absorb, hence this ",
{
"type": "char",
"marker": "em",
"content": [
"Reader’s Version"
]
},
" breaks that single Greek sentence into a number of smaller sentences, in fact, this kind of adjustment is regularly done throughout the Bible by all major English translations in order to make them easier for us to read, but the disadvantage is that we can sometimes lose whatever the connection was between the consecutive thoughts. The ",
{
"type": "char",
"marker": "em",
"content": [
"OET"
]
},
" tries to be more transparent about such adjustments by placing the ",
{
"type": "char",
"marker": "em",
"content": [
"Literal Version"
]
},
" right beside this text so that the serious student can compare the two.\n"
]
},
{
"type": "para",
"marker": "iot",
"content": [
"Main components of Paul’s letter\n"
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Introduction ",
{
"type": "char",
"marker": "ior",
"content": [
"1:1-2"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Spiritual blessings from the messiah ",
{
"type": "char",
"marker": "ior",
"content": [
"1:3–3:21"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Proper behaviour for believers ",
{
"type": "char",
"marker": "ior",
"content": [
"4:1–6:20"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Closing ",
{
"type": "char",
"marker": "ior",
"content": [
"6:21-24"
]
}
]
},
{
"type": "para",
"marker": "rem",
"content": [
"This is still a very early look into the unfinished text of the Open English Translation of the Bible. Please double-check the text in advance before using in public.\n"
]
},
{
"type": "para",
"marker": "ie",
"content": []
},
{
"type": "chapter",
"marker": "c",
"number": "1",
"sid": "EPH 1"
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Greetings from Paul\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Salutation\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "EPH 1:1"
},
{
"type": "char",
"marker": "add",
"content": [
"This letter is from"
]
},
" Paul, a missionary of Yeshua the messiah by the will of ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦128006"
]
},
".",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:1: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Acts 18:19-21; 19:1."
]
}
],
"caller": "+"
},
"\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
"To the godly people ",
{
"type": "char",
"marker": "add",
"content": [
"there"
]
},
" in Ephesus¦128013 who are faithful¦128015 to Yeshua the messiah.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "EPH 1:2"
},
"May our father¦128025 ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦128024"
]
},
" and our ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦128028 Yeshua"
]
},
" the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦128030"
]
},
" give grace¦128019 and peace¦128022 to you¦128020 all.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Spiritual blessings\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The glory of Christ in the church\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Spiritual Blessings\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Spiritual Blessings in Christ\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "EPH 1:3"
},
"We praise ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦128033"
]
},
", the father¦128035 of our ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦128037 Yeshua"
]
},
" the messiah.",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:3 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"Verses 3-14 seem to be just one long, rambling sentence in the Greek, and it’s not totally clear what each part means, or how they all connect logically together in sequence. We have split it into smaller sentence chunks to try to help our readers extract some meaning out of it."
]
}
],
"caller": "+"
},
" He is the one who’s blessed us with every¦128047 spiritual¦128049 blessing in heavenly¦128052 places—blessings that come from the messiah.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "EPH 1:4"
},
"He chose¦128056 us to follow him even before¦128060 the creation of the world¦128062, so that we could become pure¦128065 and blameless¦128067 in front¦128068 of him. Because of his¦128068 love¦128071\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "EPH 1:5"
},
"he decided in advance to adopt¦128075 us as his¦128087 children through¦128076 ",
{
"type": "char",
"marker": "nd",
"content": [
"Yeshua¦128078"
]
},
" the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦128079"
]
},
". His¦128087 decision gave him great pleasure¦128084\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "EPH 1:6"
},
"and now he’s praised¦128089 for the greatness of his¦128093 grace¦128092 which¦128096 favoured¦128097 us, as the one he loved¦128101\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "EPH 1:7"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:7: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Col 1:14."
]
}
],
"caller": "+"
},
"redeemed us by means of his blood¦128110 and forgave our sins. It was from the riches¦128119 of his grace¦128123\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "EPH 1:8"
},
"that was poured onto us that we gain wisdom¦128131 and¦128132 understanding¦128133\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "EPH 1:9"
},
"as he revealed the mystery¦128137 of his will to us according¦128149 to his great pleasure¦128151 as he himself planned.\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "EPH 1:10"
},
"He planned for the orchestration of the times¦128165, and at the right time he will gather everything, whether in heaven¦128177 or here on earth¦128182, for the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦128171"
]
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "EPH 1:11"
},
"and we¦128188 also have been assigned an inheritance¦128188 in him¦128201. This was also predetermined¦128189 according to God’s plan and the decisions of his¦128201 will\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "EPH 1:12"
},
"so that we, the ones who first put our trust in the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦128215"
]
},
", would praise¦128207 his¦128210 greatness.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "EPH 1:13"
},
"And you people also, after hearing the message of truth¦128225, the good message about being saved, were confirmed by receiving the ",
{
"type": "char",
"marker": "nd",
"content": [
"spirit¦128238"
]
},
" of pure¦128242 promise¦128240 after you believed¦128234.\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "EPH 1:14"
},
"This spirit is the deposit¦128246 on our¦128249 inheritance¦128248 until we procure¦128253 the freedom which has been bought for us, leading us to praise¦128255 God’s greatness.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Paul’s prayer for them\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Thanksgiving and Prayer\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Paul’s Prayer\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Paul’s Prayer for Spiritual Wisdom\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "EPH 1:15"
},
"Because¦128259 of that¦128275, and because I heard¦128262 about your faith¦128266 in the ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦128269 Yeshua"
]
},
" and your ",
{
"type": "char",
"marker": "add",
"content": [
"acceptance"
]
},
" of all the pure¦128279 believers,\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "EPH 1:16"
},
"I don’t¦128280 stop giving¦128282 thanks¦128282 for all of you, mentioning¦128285 you in my¦128291 prayers¦128290,\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "EPH 1:17"
},
"asking the ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦128294"
]
},
" of our¦128297 ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦128296 Yeshua¦128299"
]
},
" the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦128300"
]
},
" to give¦128305 you¦128307 spiritual¦128308 wisdom¦128309 and¦128310 to reveal the knowledge¦128313 about him¦128314.\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "EPH 1:18"
},
"I ask that your¦128321 inner thoughts will be enlightened¦128315 so that you’ll all know the expectation of what he’s calling¦128332 you to—the riches¦128337 of the greatness of his¦128333 inheritance¦128341 for the believers\n",
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "EPH 1:19"
},
"and the exceeding greatness¦128353 of his power to ",
{
"type": "char",
"marker": "add",
"content": [
"help"
]
},
" us who believe¦128360, according¦128361 to the working¦128363 of the power of his strength¦128367.\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "EPH 1:20"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:20: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Psa 110:1."
]
}
],
"caller": "+"
},
"He worked¦128371 this power in the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦128374"
]
},
" when he brought him back to life and seated him in the place of honour in heavenly¦128392 places—\n",
{
"type": "verse",
"marker": "v",
"number": "21",
"sid": "EPH 1:21"
},
"giving him authority¦128398 over every law and government, and over every powerful¦128401 group and organisation, and over every earthly title, not only in the present age but¦128397 also in the age to come.\n",
{
"type": "verse",
"marker": "v",
"number": "22",
"sid": "EPH 1:22"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:22: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Psa 8:6."
]
}
],
"caller": "+"
},
"Everything in existence will be under¦128422 his¦128425 authority and God set him in charge of all matters concerning¦128430 the assembly¦128433,\n",
{
"type": "verse",
"marker": "v",
"number": "23",
"sid": "EPH 1:23"
},
"which¦128434 is his¦128438 body¦128437—the completeness of the messiah who completes everything.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "EPH 2"
},
{
"type": "para",
"marker": "s1",
"content": [
"God’s mercy, grace, and plans for us\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 God’s grace to Gentiles\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Made Alive with Christ\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Made Alive in Christ\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 From Death to Life\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "EPH 2:1"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"2:1-5: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Col 2:13."
]
}
],
"caller": "+"
},
"You all were dead¦128450 due to your¦128460 disobedience and¦128454 the ",
{
"type": "char",
"marker": "add",
"content": [
"path of"
]
},
" sinning\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "EPH 2:2"
},
"that you once walked¦128464 along when you followed the trends of this world¦128469 which ",
{
"type": "char",
"marker": "add",
"content": [
"in turn"
]
},
" come from the ruler¦128473 of the invisible powers—he’s the spirit¦128479 that works in the children of disobedience.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "EPH 2:3"
},
"In the past, we also lived like them inside our¦128503 fleshly lusts and then living out those desires and fantasies, and so we were children¦128515 ",
{
"type": "char",
"marker": "add",
"content": [
"deserving"
]
},
" strong anger¦128518 just like everyone else.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "EPH 2:4"
},
"But ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦128526"
]
},
" was generous with his¦128535 mercy¦128530 because¦128531 of the great¦128533 love¦128534 that¦128536 he loved¦128537 us with,\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "EPH 2:5"
},
"so although we were dead¦128543 as a result of our disobedience, he make us alive¦128551 along with the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦128554"
]
},
". Yes, we have been saved¦128557 by ",
{
"type": "char",
"marker": "add",
"content": [
"God’s"
]
},
" grace¦128555.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "EPH 2:6"
},
"And God lifted us up and sat¦128561 us together¦128561 with ",
{
"type": "char",
"marker": "nd",
"content": [
"Yeshua"
]
},
" the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦128567"
]
},
" in the heavenly¦128564 ",
{
"type": "char",
"marker": "add",
"content": [
"domains"
]
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "EPH 2:7"
},
"so that¦128574 for the ages to come, he could display¦128570 the overflowing riches¦128580 of his grace¦128583 through his kindness¦128586 to us via ",
{
"type": "char",
"marker": "nd",
"content": [
"Yeshua¦128592"