-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJAM.json
More file actions
2499 lines (2499 loc) · 54.3 KB
/
JAM.json
File metadata and controls
2499 lines (2499 loc) · 54.3 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": "JAS",
"content": [
"- Open English Translation—Readers’ Version (OET-RV) v0.1.50"
]
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 JAM\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_NT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"Yacob\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"Yacob (James)\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"Yacob\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"Jac.\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Yacob (James)\n"
]
},
{
"type": "para",
"marker": "is1",
"content": [
"Introduction\n"
]
},
{
"type": "para",
"marker": "is2",
"content": [
"Author\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"The author of this letter is commonly known as ‘James’ in English translations, but most people don’t realise that his English name should be Jacob (or Yakōbos if you wanted to be closer to the Koine Greek spelling). This translation error can be traced all the way back to John Wycliffe’s English translation from the Latin in the 1300’s as he didn’t have access to Greek New Testament manuscripts (although he did use Yacob in some parts of his New Testament when it referred to the son of Isaac). The confusion was probably due to changes in the way Latin was spoken over the centuries, and then translating the name from the historically-altered Latin instead of from the original Greek—see https://www.biblicalarchaeology.org/daily/biblical-topics/bible-versions-and-translations/james-or-jacob-in-the-bible for more details.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"Note from the first sentence in the letter that Yacob addressed the letter to the twelve tribes who originated from the twelve sons of his namesake.\n"
]
},
{
"type": "para",
"marker": "is2",
"content": [
"This letter\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"This ",
{
"type": "char",
"marker": "bk",
"content": [
"Letter from Yacob"
]
},
" is Yacob’s collection of advice to those who believe there is a god in heaven. He wrote this to all people scattered all around the world. Yacob used examples in order to explain his advice, so that their behaviour would improve and also their daily work. He also taught on various topics like: faith, testing, suffering, showing, respect, good behaviour, watching what you say, true wisdom from God, and prayer.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"He said that our faith is deficient if we don’t also demonstrate it by our actions.\n"
]
},
{
"type": "para",
"marker": "iot",
"content": [
"Main components of Yacob’s letter\n"
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Introduction ",
{
"type": "char",
"marker": "ior",
"content": [
"1:1"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The faith and the wisdom/knowledge ",
{
"type": "char",
"marker": "ior",
"content": [
"1:2-8"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The poor and the rich man ",
{
"type": "char",
"marker": "ior",
"content": [
"1:9-11"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The testing and the temptation ",
{
"type": "char",
"marker": "ior",
"content": [
"1:12-18"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The listening and the making ",
{
"type": "char",
"marker": "ior",
"content": [
"1:19-27"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Respecting all people ",
{
"type": "char",
"marker": "ior",
"content": [
"2:1-13"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The faith and the good work ",
{
"type": "char",
"marker": "ior",
"content": [
"2:14-26"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The tongue ",
{
"type": "char",
"marker": "ior",
"content": [
"3:1-12"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The wisdom/knowledge from heaven ",
{
"type": "char",
"marker": "ior",
"content": [
"3:13-18"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The Christian and the things/objects ",
{
"type": "char",
"marker": "ior",
"content": [
"4:1–5:6"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Various teachings ",
{
"type": "char",
"marker": "ior",
"content": [
"5:7-20"
]
}
]
},
{
"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": "JAS 1"
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Greetings from James\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Salutation\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "JAS 1:1"
},
{
"type": "char",
"marker": "add",
"content": [
"This letter is from"
]
},
" Yacob, a slave¦146464 for ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦146459"
]
},
" and¦146460 for ",
{
"type": "char",
"marker": "add",
"content": [
"the"
]
},
" ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦146461 Yeshua"
]
},
" the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦146463"
]
},
". ",
{
"type": "char",
"marker": "add",
"content": [
"It’s written"
]
},
" to the tribes¦146467 who have ended up dispersed¦146471 ",
{
"type": "char",
"marker": "add",
"content": [
"into many nations"
]
},
":",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:1: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Mat 13:55; Mrk 6:3; Acts 15:13; Gal 1:19."
]
}
],
"caller": "+"
},
" Greetings.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Gaining endurance and requesting wisdom\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Faith and Endurance\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Trials and Temptations\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Faith and Wisdom\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Faith under trial\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "JAS 1:2"
},
"Be cheerful¦146474 my¦146477 fellow¦146476 believers¦146476, when you¦146480 face a range¦146481 of difficult situations,\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "JAS 1:3"
},
"knowing¦146483 that you¦146487 will learn endurance¦146491 as your¦146487 faith¦146489 is tested.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "JAS 1:4"
},
"Let that endurance¦146494 do its¦146496 perfect work¦146495 so that you¦146499 all might become perfect and¦146501 mature—not lacking¦146505 anything.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "JAS 1:5"
},
"If anyone¦146508 of you is lacking¦146510 wisdom¦146511, then it should¦146512 be requested¦146512 from ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦146518"
]
},
" who gives it generously¦146520 and without disparagement, and so it will be given¦146526 to you,\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "JAS 1:6"
},
"but¦146529 the person who’s asking should¦146528 demonstrate their faith¦146531 and not be doubting. That’s because¦146535 a person who doubts is like a wave on the sea¦146539 that’s just blown¦146540 and tossed¦146542 around\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "JAS 1:7"
},
"and a person¦146547 like that shouldn’t¦146543 expect to get anything¦146551 from the ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦146555"
]
},
"\n",
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Poverty and Riches\n"
]
},
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "JAS 1:8"
},
"because that person is double-minded, and everything they attempt ends up in difficulty.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Behaviour of the poor and the wealthy\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "JAS 1:9"
},
"Those of humbler¦146569 means can boast¦146564 about their greatness\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "JAS 1:10"
},
"whereas the wealthy¦146576 can boast about their weakness because¦146582 they’ll pass away just like the daisies in the grass¦146585.",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:10-11: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Isa 40:6-7 (LXX)."
]
}
],
"caller": "+"
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "JAS 1:11"
},
"When the sun¦146590 rises with its¦146601 scorching¦146593 heat and withers¦146595 the grass¦146597, the flowers¦146600 will drop and lose all their beauty¦146605. So too for rich people who’ll fade away right in the middle of all their projects.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Testing and temptation\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Trial and Temptation\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Testing and Tempting\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "JAS 1:12"
},
"Any person who’s enduring¦146624 testing circumstances is fortunate, because¦146627 once they’ve passed the test, they’ll receive¦146630 a crown¦146632 of life¦146634 that Yeshua promised¦146636 to those who love him¦146641.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "JAS 1:13"
},
"No one should¦146644 say ‘It’s God tempting me’ when they’re being tempted, because¦146652 God can’t be tempted to do evil¦146656 and he doesn’t tempt others,\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "JAS 1:14"
},
"but¦146662 rather they’re being tempted¦146663 by their own lusts. They’re being drawn¦146668 away and¦146669 enticed¦146670 ",
{
"type": "char",
"marker": "add",
"content": [
"into what they know is wrong"
]
},
",\n",
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "JAS 1:15"
},
"and after the desire¦146673 is conceived¦146674 it leads to sin, and once the sin is concluded it leads to death¦146682.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "JAS 1:16"
},
"Don’t be led astray, my¦146686 dear brothers¦146685 and¦146685 sisters¦146685.\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "JAS 1:17"
},
"Every¦146688 gift¦146693 that’s good¦146690 and¦146691 perfect¦146694 comes from heaven. It comes down from the father¦146701 of lights¦146703, none of which are changing or casting moving shadows¦146713.\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "JAS 1:18"
},
"Once he had decided it, he created us by his spoken commands so that we’d become a kind of special first¦146724 ‘harvest’ out of all of his creatures.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Listening then doing\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Hearing and Doing\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Hearing and Doing the Word\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Listening and Doing\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "JAS 1:19"
},
"So my¦146735 dear brothers¦146734 and sisters¦146734, note this: Everyone should be quick¦146743 to listen¦146746 but¦146740 slow to speak¦146750, and should be slow to get angry\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "JAS 1:20"
},
"because¦146755 when people get very angry, it doesn’t lead to the good behaviour that ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦146758"
]
},
" expects.\n",
{
"type": "verse",
"marker": "v",
"number": "21",
"sid": "JAS 1:21"
},
"So¦146762 discard all ",
{
"type": "char",
"marker": "add",
"content": [
"moral"
]
},
" filth¦146765 and the evil¦146769 that’s plentiful, and humbly accept the message¦146776 that’s implanted¦146775 in you¦146782 all and which is capable of saving your¦146782 souls¦146781.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "22",
"sid": "JAS 1:22"
},
"Don’t delude¦146792 yourselves¦146793 by just listening¦146790 to the message¦146786, but¦146784 put it into practice ",
{
"type": "char",
"marker": "add",
"content": [
"in your daily lives"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "23",
"sid": "JAS 1:23"
},
"Anyone who is just a listener¦146797 of the message¦146798 and¦146800 does nothing with it is like someone who looks at their face¦146809 in a mirror¦146814\n",
{
"type": "verse",
"marker": "v",
"number": "24",
"sid": "JAS 1:24"
},
"but¦146818 goes away after having a look and then immediately¦146821 forgets what they looked like.\n",
{
"type": "verse",
"marker": "v",
"number": "25",
"sid": "JAS 1:25"
},
"However the person who investigates¦146827 the perfect¦146830 law that gives freedom¦146833, and then sticks with it, not being just an observer that forgets¦146839 about it but¦146826 rather a person who puts it into practice, this person will prosper in whatever they do.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "26",
"sid": "JAS 1:26"
},
"If anyone¦146853 supposes¦146854 that they’re religious but¦146865 doesn’t guard what comes out of their mouth, then that person’s religion is only skin deep and hasn’t affected their heart¦146867.\n",
{
"type": "verse",
"marker": "v",
"number": "27",
"sid": "JAS 1:27"
},
"A person who wants to truly serve our¦146881 ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦146882"
]
},
" and father¦146885 with a pure heart would be visiting¦146888 orphans¦146889 and widows¦146891 in their¦146895 difficulties and staying unstained by worldly¦146903 ideas.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "JAS 2"
},
{
"type": "para",
"marker": "s1",
"content": [
"Avoiding favouritism\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Warning against Partiality\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 A Warning against Prejudice\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Favouritism Forbidden\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Warning against Prejudice\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Love your neighbour as yourself\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "JAS 2:1"
},
"My¦146905 dear brothers¦146904 and¦146904 sisters¦146904, as you live out your faith¦146911 in our¦146914 honoured ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦146913 Yeshua¦146915"
]
},
" the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦146916"
]
},
", don’t¦146906 show favouritism¦146908 to others.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "JAS 2:2"
},
"For ",
{
"type": "char",
"marker": "add",
"content": [
"example"
]
},
", if a man in nicely cut clothes and wearing an expensive gold¦146927 ring came into to your¦146925 meeting as well as a poor man in filthy¦146936 clothes\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "JAS 2:3"
},
"and you told the well-dressed one, ‘You sit here in this good¦146954 chair,’ while telling the poor man, ‘You stand¦146960 over here,’ or ‘You sit here on the mat,’\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "JAS 2:4"
},
"wouldn’t that discrimination show that you¦146976 have judged¦146981 them with evil¦146983 motives.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "JAS 2:5"
},
"Listen my¦146986 dear brothers¦146985 and sisters¦146985, didn’t¦146988 ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦146990"
]
},
" chose¦146991 the poor in this world¦146996 to be rich in faith¦147001 and participants in the kingdom¦147006 which¦147007 he promises¦147008 to those who love him?\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "JAS 2:6"
},
"But¦147024 you dishonour¦147014 the poor, even though it’s the wealthier people who oppress¦147021 you and bring court¦147029 cases against you.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "JAS 2:7"
},
"And aren’t they¦147032 the ones who slander¦147033 the very God that¦147037 you¦147040 pray to?\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Judgement and mercy\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "JAS 2:8"
},
"However if you are obeying the golden law, then when you love your¦147053 neighbour¦147052 as yourself¦147055,",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"2:8: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Lev 19:18."
]
}
],
"caller": "+"
},
" you’ll be doing¦147061 well according¦147047 to the scriptures¦147049.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "JAS 2:9"
},
"But if you’re showing¦147064 favouritism¦147064, then you’re all sinning by breaking the law.\n",
{
"type": "verse",
"marker": "v",
"number": "10",