-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJN1.json
More file actions
2385 lines (2385 loc) · 70.8 KB
/
JN1.json
File metadata and controls
2385 lines (2385 loc) · 70.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": "1JN",
"content": []
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 JN1\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_NT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"The VLT source table used to create this file is Copyright © 2022 by https://GreekCNTR.org\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM file originally created 2026-04-09 11:29 by Extract_VLT_NT_to_ESFM v1.0\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"USFM file edited by ScriptedBibleEditor v0.35\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"1 Yōannaʸs\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"1 Yōannaʸs\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"1 Yōannaʸs\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"1Jn.\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"1 Yōannaʸs\n"
]
},
{
"type": "para",
"marker": "ie",
"content": []
},
{
"type": "chapter",
"marker": "c",
"number": "1",
"sid": "1JN 1"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "1JN 1:1"
},
"What¦151765 was¦151766 from¦151767 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦151768"
]
},
"_beginning¦151768, what¦151769 we¦151770_have¦151770_heard¦151770, what¦151771 we¦151772_have¦151772_seen¦151772 with¦151773_the¦151773 eyes¦151774 of¦151775_us¦151775, what¦151776 we¦151777_saw¦151777, and¦151778 the¦151779 hands¦151780 of¦151781_us¦151781 touched¦151782, concerning¦151783 the¦151784 message¦151785 of¦151787_ untr the¦151786untr* _life¦151787,\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "1JN 1:2"
},
"and¦151788 the¦151789 life¦151790 was¦151791_revealed¦151791, and¦151792 we¦151794_have¦151794_seen¦151794, and¦151795 we¦151796_are¦151796_testifying¦151796, and¦151797 we¦151798_are¦151798_reporting¦151798 to¦151799_you¦151799_all¦151799, the¦151800 life¦151801 untr the¦151802untr* eternal¦151803, which¦151804 was¦151805 with¦151806 the¦151807 father¦151808, and¦151809 was¦151810_revealed¦151810 to¦151811_us¦151811,\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "1JN 1:3"
},
"what¦151812 we¦151814_have¦151814_seen¦151814, and¦151815 we¦151816_have¦151816_heard¦151816, we¦151819_are¦151819_reporting¦151819 also¦151821 to¦151822_you¦151822_all¦151822, in¦151823_order¦151823_that¦151823 also¦151824 you¦151825_all¦151825 may¦151827_be¦151827_having¦151827 fellowship¦151826 with¦151828 us¦151829, and¦151833 also¦151830 untr the¦151831untr* untr the¦151834untr* our¦151835_ fellowship¦151832 _",
{
"type": "char",
"marker": "add",
"content": [
"=is¦151835"
]
},
" with¦151837 the¦151838 father¦151839, and¦151840 with¦151841 the¦151842 son¦151843 of¦151844_him¦151844, ",
{
"type": "char",
"marker": "nd",
"content": [
"Yaʸsous/(Yəhōshūˊa)¦151845 chosen¦151846_one¦151846/messiah¦151846"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "1JN 1:4"
},
"And¦151847 we¦151850 are¦151849_writing¦151849 these¦151848 ",
{
"type": "char",
"marker": "add",
"content": [
">things¦151848"
]
},
", in¦151852_order¦151852_that¦151852 the¦151853 joy¦151854 of¦151855_us¦151855 may¦151857_be¦151857 having¦151858_been¦151858_fulfilled¦151858.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "1JN 1:5"
},
"And¦151859 this¦151862 is¦151861 the¦151863 message¦151869 which¦151870 we¦151871_have¦151871_heard¦151871 from¦151872 him¦151873 and¦151874 we¦151875_are¦151875_declaring¦151875 to¦151877_you¦151877_all¦151877, that¦151878 untr the¦151879untr* ",
{
"type": "char",
"marker": "nd",
"content": [
"god¦151880"
]
},
" is¦151882 light¦151881, and¦151883 darkness¦151884 is¦151888 not¦151887 in¦151885 him¦151886, not¦151891_one¦151891.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "1JN 1:6"
},
"If¦151892 we¦151894_may¦151894_say¦151894 that¦151895 we¦151897_are¦151897_having¦151897 fellowship¦151896 with¦151898 him¦151899, and¦151900_yet¦151900 we¦151904_may¦151904_be¦151904_walking¦151904 in¦151901 the¦151902 darkness¦151903, we¦151905_are¦151905_lying¦151905 and¦151906 we¦151908_are¦151908_ not¦151907 _practicing¦151908 the¦151910 truth¦151911.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "1JN 1:7"
},
"But¦151913 if¦151912 we¦151917_may¦151917_be¦151917_walking¦151917 in¦151914 the¦151915 light¦151916 as¦151918 he¦151919 is¦151920 in¦151921 the¦151922 light¦151923, we¦151925_are¦151925_having¦151925 fellowship¦151924 with¦151926 one¦151927_another¦151927, and¦151928 the¦151929 blood¦151930 of¦151931_",
{
"type": "char",
"marker": "nd",
"content": [
"Yaʸsous¦151931"
]
},
" the¦151933 son¦151934 of¦151935_him¦151935, is¦151936_cleansing¦151936 us¦151937 from¦151938 all¦151939 sin¦151940.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "1JN 1:8"
},
"If¦151941 we¦151942_may¦151942_say¦151942 that¦151943 we¦151946_are¦151946_ not¦151945 _having¦151946 sin¦151944, we¦151949_are¦151949_deceiving¦151949 ourselves¦151947 and¦151950 the¦151951 truth¦151952 is¦151954 not¦151953. in¦151955 us¦151956.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "1JN 1:9"
},
"If¦151959 we¦151960_may¦151960_be¦151960_confessing¦151960 the¦151961 sins¦151962 of¦151963_us¦151963, he¦151965_is¦151965 faithful¦151964 and¦151966 righteous¦151967, in¦151968_order¦151968_that¦151968 he¦151969_may¦151969_forgive¦151969 our¦151971 sins¦151972 to¦151970_us¦151970, and¦151974 may¦151975_cleanse¦151975 us¦151977 from¦151978 all¦151979 unrighteousness¦151980.\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "1JN 1:10"
},
"If¦151981 we¦151982_may¦151982_say¦151982 that¦151983 we¦151985_have¦151985_ not¦151984 _sinned¦151985, we¦151987_are¦151987_making¦151987 him¦151988 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦151986"
]
},
"_liar¦151986, and¦151989 the¦151990 message¦151991 of¦151992_him¦151992 is¦151994 not¦151993 in¦151995 us¦151996.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "1JN 2"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "1JN 2:1"
},
"Little¦151997_children¦151997 of¦151998_me¦151998, I¦152000_am¦152000_writing¦152000 these¦151999 ",
{
"type": "char",
"marker": "add",
"content": [
">things¦151999"
]
},
" to¦152001_you¦152001_all¦152001, in¦152002_order¦152002_that¦152002 you¦152004_may¦152004_ not¦152003 _sin¦152004. And¦152005 if¦152006 anyone¦152007 may¦152008_sin¦152008, we¦152010_are¦152010_having¦152010 ",
{
"type": "char",
"marker": "add",
"content": [
"+an¦152009"
]
},
"_advocate¦152009 with¦152011 the¦152012 father¦152013, ",
{
"type": "char",
"marker": "nd",
"content": [
"Yaʸsous/(Yəhōshūˊa)¦152014 chosen¦152015_one¦152015/messiah¦152015"
]
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152016"
]
},
"_righteous¦152016,\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "1JN 2:2"
},
"and¦152017 he¦152018 is¦152020 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152019"
]
},
"_atonement¦152019 for¦152022 the¦152023 sins¦152024 of¦152025_us¦152025, and¦152030 not¦152026 for¦152027 untr the¦152028untr* our¦152029 ",
{
"type": "char",
"marker": "add",
"content": [
"sins¦152029"
]
},
" only¦152032, but¦152033 also¦152034 for¦152035 all¦152036 the¦152037 world¦152038.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "1JN 2:3"
},
"And¦152039 by¦152040 this¦152041 we¦152042_are¦152042_knowing¦152042 that¦152044 we¦152045_have¦152045_known¦152045 him¦152046, if¦152047 we¦152052_may¦152052_be¦152052_keeping¦152052 the¦152048 commands¦152049 of¦152050_him¦152050.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "1JN 2:4"
},
"The¦152053 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152053"
]
},
" saying¦152054, untr that¦152055untr* I¦152056_have¦152056_known¦152056 him¦152057, and¦152058 not¦152062 keeping¦152063 the¦152059 commands¦152060 of¦152061_him¦152061, is¦152065 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦152064"
]
},
"_liar¦152064, and¦152066 the¦152069 truth¦152070 is¦152074 not¦152073 in¦152067 this¦152068 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152068"
]
},
",\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "1JN 2:5"
},
"but¦152076 whoever¦152075 untr wishfully¦152077untr* may¦152078_be¦152078_keeping¦152078 the¦152080 message¦152081 of¦152079_him¦152079, truly¦152082 the¦152085 love¦152086 of¦152088_ untr the¦152087untr* _",
{
"type": "char",
"marker": "nd",
"content": [
"god¦152088"
]
},
" has¦152089_been¦152089_perfected¦152089 in¦152083 this¦152084 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152084"
]
},
". By¦152090 this¦152091 we¦152092_are¦152092_knowing¦152092 that¦152093 we¦152096_are¦152096 in¦152094 him¦152095:\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "1JN 2:6"
},
"the¦152097 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152097"
]
},
" saying¦152098 to¦152101_be¦152101_remaining¦152101 in¦152099 him¦152100, ought¦152102 also¦152106 himself¦152107 to¦152109_be¦152109_walking¦152109 as¦152103 that¦152104 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152104"
]
},
" walked¦152105.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "1JN 2:7"
},
"Beloved¦152110, I¦152115_am¦152115_ not¦152112 _writing¦152115 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦152113"
]
},
"_ new¦152114 _command¦152113 to¦152116_you¦152116_all¦152116, but¦152117 ",
{
"type": "char",
"marker": "add",
"content": [
"+an¦152118"
]
},
"_ old¦152119 _command¦152118, which¦152120 you¦152121_all¦152121_were¦152121_having¦152121 from¦152122 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152123"
]
},
"_beginning¦152123. The¦152124 untr the¦152126untr* old¦152127 command¦152125 is¦152128 the¦152129 message¦152130 that¦152131 you¦152132_all¦152132_heard¦152132.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "1JN 2:8"
},
"Contrastly¦152135 I¦152138_am¦152138_writing¦152138 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦152136"
]
},
"_ new¦152137 _command¦152136 to¦152139_you¦152139_all¦152139, which¦152140 is¦152141 true¦152142 in¦152144 him¦152145 and¦152147 in¦152148 you¦152149_all¦152149, because¦152151 the¦152152 darkness¦152154 is¦152155_being¦152155_passed¦152155_away¦152155, and¦152156 the¦152157 untr the¦152159untr* true¦152161 light¦152158 is¦152163_ already¦152162 _shining¦152163.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "1JN 2:9"
},
"The¦152164 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152164"
]
},
" saying¦152165 to¦152169_be¦152169 in¦152166 the¦152167 light¦152168, and¦152170 hating¦152174 the¦152171 brother¦152172 of¦152173_him¦152173, is¦152181 in¦152178 the¦152179 darkness¦152180 until¦152182 now¦152183.\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "1JN 2:10"
},
"The¦152184 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152184"
]
},
" loving¦152185 the¦152186 brother¦152187 of¦152188_him¦152188, is¦152192_remaining¦152192 in¦152189 the¦152190 light¦152191, and¦152193 offense¦152194 is¦152198 not¦152197 in¦152195 him¦152196\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "1JN 2:11"
},
"But¦152202 the¦152201 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152201"
]
},
" hating¦152203 the¦152204 brother¦152205 of¦152206_him¦152206, is¦152210 in¦152207 the¦152208 darkness¦152209, and¦152211 is¦152215_walking¦152215 in¦152212 the¦152213 darkness¦152214, and¦152216 has¦152218_ not¦152217 _known¦152218 where¦152219 he¦152220_is¦152220_going¦152220, because¦152221 the¦152222 darkness¦152223 blinded¦152224 the¦152225 eyes¦152226 of¦152227_him¦152227.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "1JN 2:12"
},
"I¦152229_am¦152229_writing¦152229 to¦152230_you¦152230_all¦152230, little¦152231_children¦152231, because¦152232 your¦152236 sins¦152237 have¦152233_been¦152233_forgiven¦152233 to¦152235_you¦152235_all¦152235, because¦152238_of¦152238 the¦152239 name¦152240 of¦152241_him¦152241.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "1JN 2:13"
},
"I¦152242_am¦152242_writing¦152242 to¦152243_you¦152243_all¦152243, fathers¦152244, because¦152245 you¦152246_all¦152246_have¦152246_known¦152246 the¦152247 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152247"
]
},
" from¦152248 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152249"
]
},
"_beginning¦152249. I¦152250_am¦152250_writing¦152250 to¦152251_you¦152251_all¦152251, young¦152252_men¦152252, because¦152253 you¦152254_all¦152254_have¦152254_overcome¦152254 the¦152255 evil¦152257 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152257"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "1JN 2:14"
},
"I¦152260_wrote¦152260 to¦152261_you¦152261_all¦152261, little¦152262_children¦152262, because¦152263 you¦152264_all¦152264_have¦152264_known¦152264 the¦152265 father¦152266. I¦152267_wrote¦152267 to¦152268_you¦152268_all¦152268, fathers¦152269, because¦152270 you¦152271_all¦152271_have¦152271_known¦152271 the¦152272 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152272"
]
},
" from¦152274 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152275"
]
},
"_beginning¦152275. I¦152276_wrote¦152276 to¦152277_you¦152277_all¦152277, young¦152278_men¦152278, because¦152279 you¦152281_all¦152281_are¦152281 strong¦152280 ",
{
"type": "char",
"marker": "add",
"content": [
">ones¦152280"
]
},
", and¦152282 the¦152283 message¦152284 of¦152286_ untr the¦152285untr* _",
{
"type": "char",
"marker": "nd",
"content": [
"god¦152286"
]
},
" is¦152289_remaining¦152289 in¦152287 you¦152288_all¦152288, and¦152290 you¦152291_all¦152291_have¦152291_overcome¦152291 the¦152292 evil¦152293 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152293"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "1JN 2:15"
},
"Neither¦152294 be¦152295_loving¦152295 the¦152296 world¦152297, nor¦152298 the¦152299 ",
{
"type": "char",
"marker": "add",
"content": [
">things¦152299"
]
},
" in¦152300 the¦152301 world¦152302. If¦152303 anyone¦152304 may¦152305_be¦152305_loving¦152305 the¦152306 world¦152307, the¦152310 love¦152311 of¦152312_the¦152312 father¦152314 is¦152309 not¦152308 in¦152315 him¦152316.\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "1JN 2:16"
},
"Because¦152317 all¦152318 which¦152319 ",
{
"type": "char",
"marker": "add",
"content": [
"=is¦152319"
]
},
" in¦152320 the¦152321 world¦152322, the¦152323 desire¦152324 of¦152325_the¦152325 flesh¦152326, and¦152327 the¦152328 desire¦152329 of¦152330_the¦152330 eyes¦152331, and¦152332 the¦152333 arrogance¦152334 of¦152335_the¦152335 living¦152336, is¦152338 not¦152337 from¦152339 the¦152340 father¦152341, but¦152342 is¦152346 from¦152343 the¦152344 world¦152345.\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "1JN 2:17"
},
"And¦152347 the¦152348 world¦152349 and¦152351 the¦152352 desire¦152353 of¦152354_it¦152354 is¦152350_being¦152350_passed¦152350_away¦152350, but¦152356 the¦152355 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152355"
]
},
" doing¦152357 the¦152358 will¦152359 of¦152361_ untr the¦152360untr* _",
{
"type": "char",
"marker": "nd",
"content": [
"god¦152361"
]
},
" is¦152362_remaining¦152362 for¦152363 the¦152364 age¦152365.\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "1JN 2:18"
},
"Little¦152366_children¦152366, it¦152372_is¦152372 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152367"
]
},
"_last¦152367 hour¦152370, and¦152373 as¦152374 you¦152375_all¦152375_heard¦152375 that¦152376 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152378"
]
},
"_anti-messiah¦152378 is¦152379_coming¦152379, even¦152380 now¦152381 many¦152383 false¦152382_messiahs¦152382 have¦152384_become¦152384, whence¦152385 we¦152386_are¦152386_knowing¦152386 that¦152388 it¦152391_is¦152391 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152389"
]
},
"_last¦152389 hour¦152390.\n",
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "1JN 2:19"
},
"They¦152394_came¦152394_out¦152394 from¦152392 us¦152393, but¦152395 they¦152397_were¦152397 not¦152396 of¦152398 us¦152399, because/for¦152401 if¦152400 they¦152405_were¦152405 of¦152403 us¦152404, they¦152406_ would¦152407 _had¦152406_remained¦152406 with¦152408 us¦152409, but¦152410 in¦152411_order¦152411_that¦152411 they¦152412_may¦152412_be¦152412_revealed¦152412 that¦152413 they¦152415_are¦152415 all¦152416 not¦152414 of¦152417 us¦152418.\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "1JN 2:20"
},
"And¦152419 you¦152420_all¦152420 are¦152422_having¦152422 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152421"
]
},
"_anointing¦152421 from¦152423 the¦152424 holy¦152425 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152425"
]
},
", and¦152426 you¦152427_all¦152427_have¦152427_known¦152427 all¦152429.\n",
{
"type": "verse",
"marker": "v",
"number": "21",
"sid": "1JN 2:21"
},
"I¦152431_ not¦152430 _wrote¦152431 to¦152432_you¦152432_all¦152432 because¦152433 you¦152435_all¦152435_have¦152435_ not¦152434 _known¦152435 the¦152436 truth¦152437, but¦152438 because¦152439 you¦152440_all¦152440_have¦152440_known¦152440 it¦152441, and¦152442 because¦152443 any¦152444 falsehood¦152445 is¦152450 not¦152449 of¦152446 the¦152447 truth¦152448.\n",
{
"type": "verse",
"marker": "v",
"number": "22",
"sid": "1JN 2:22"
},
"Who¦152451 is¦152452 the¦152453 liar¦152454, except¦152455 untr not/lest¦152456untr* the¦152457 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152457"
]
},
" disowning¦152458 that¦152459 ",
{
"type": "char",
"marker": "nd",
"content": [
"Yaʸsous/(Yəhōshūˊa)¦152460"
]
},
" is¦152462 not¦152461 the¦152464 ",
{
"type": "char",
"marker": "nd",
"content": [
"chosen¦152465_one¦152465/messiah¦152465"
]
},
"? This¦152466 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152466"
]
},
" is¦152467 the¦152468 anti-messiah¦152469, the¦152470 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152470"
]
},
" disowning¦152471 the¦152473 father¦152474 and¦152475 the¦152476 son¦152477.\n",
{
"type": "verse",
"marker": "v",
"number": "23",
"sid": "1JN 2:23"
},
"Everyone¦152478 untr which¦152479untr* disowning¦152480 the¦152481 son¦152482, neither¦152483 is¦152486_having¦152486 the¦152484 father¦152485. The¦152487 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152487"
]
},
" confessing¦152488 the¦152489 son¦152490, also¦152491 is¦152494_having¦152494 the¦152492 father¦152493.\n",
{
"type": "verse",
"marker": "v",
"number": "24",
"sid": "1JN 2:24"
},
"You¦152495_all¦152495, what¦152497 you¦152498_all¦152498_heard¦152498 from¦152500 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152501"
]
},
"_beginning¦152501, let¦152504_it¦152504_be¦152504_remaining¦152504 in¦152502 you¦152503_all¦152503. If¦152505 it¦152508_may¦152508_remain¦152508 in¦152506 you¦152507_all¦152507 what¦152509 you¦152513_all¦152513_heard¦152513 from¦152511 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152512"
]
},
"_beginning¦152512, you¦152515_all¦152515 also¦152514 will¦152525_be¦152525_remaining¦152525 in¦152516 the¦152517 son¦152519 and¦152520 in¦152521 the¦152522 father¦152524.\n",
{
"type": "verse",
"marker": "v",
"number": "25",
"sid": "1JN 2:25"
},
"And¦152526 this¦152527 is¦152528 the¦152529 promise¦152530 which¦152531 he¦152532 promised¦152533 to¦152535_us¦152535, untr the¦152538untr* eternal¦152539 untr the¦152536untr* life¦152537.\n",
{
"type": "verse",
"marker": "v",
"number": "26",
"sid": "1JN 2:26"
},
"I¦152542_wrote¦152542 these¦152540 ",
{
"type": "char",
"marker": "add",
"content": [
">things¦152540"
]
},
" to¦152543_you¦152543_all¦152543 concerning¦152544 the¦152545 ",
{
"type": "char",
"marker": "add",
"content": [
">ones¦152545"
]
},
" misleading¦152546 you¦152547_all¦152547.\n",
{
"type": "verse",
"marker": "v",
"number": "27",
"sid": "1JN 2:27"
},
"And¦152548 you¦152549_all¦152549, the¦152550 anointing¦152552 that¦152553 you¦152554_all¦152554_received¦152554 from¦152555 him¦152556, is¦152557_remaining¦152557 in¦152558 you¦152560_all¦152560, and¦152562 you¦152565_all¦152565_are¦152565_ not¦152563 _having¦152565 need¦152564 that¦152566 anyone¦152567 may¦152568_be¦152568_teaching¦152568 you¦152570_all¦152570, but¦152571 as¦152572 the¦152573 anointing¦152577 of¦152575_him¦152575 is¦152578_teaching¦152578 you¦152579_all¦152579 concerning¦152580 all¦152581 ",
{
"type": "char",
"marker": "add",
"content": [
">things¦152581"
]
},
", and¦152582 is¦152585 true¦152583 and¦152586 is¦152588 not¦152587 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦152589"
]
},
"_falsehood¦152589, and¦152591 as¦152592 it¦152593_taught¦152593 you¦152594_all¦152594, you¦152595_all¦152595_are¦152595_remaining¦152595 in¦152597 him¦152598.\n",
{
"type": "verse",
"marker": "v",
"number": "28",
"sid": "1JN 2:28"
},
"And¦152599 now¦152600, little¦152601_children¦152601, be¦152602_remaining¦152602 in¦152603 him¦152604, in¦152605_order¦152605_that¦152605 if¦152606 he¦152608_may¦152608_be¦152608_revealed¦152608, we¦152609_may¦152609_have¦152609 boldness¦152611, and¦152612 we¦152614_may¦152614_ not¦152613 _be¦152614_ashamed¦152614 because¦152615_of¦152615 him¦152616 at¦152617 the¦152618 coming¦152619 of¦152620_him¦152620.\n",
{
"type": "verse",
"marker": "v",
"number": "29",
"sid": "1JN 2:29"
},
"If¦152623 you¦152625_all¦152625_may¦152625_have¦152625_known¦152625 that¦152626 he¦152628_is¦152628 righteous¦152627, you¦152629_all¦152629_are¦152629_knowing¦152629 that¦152630 also¦152631 everyone¦152632 untr which¦152633untr* practicing¦152634 untr the¦152635untr* righteousness¦152636 has¦152639_been¦152639_born¦152639 of¦152637 him¦152638.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "3",
"sid": "1JN 3"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "1JN 3:1"
},
"See¦152641 what¦152642_kind¦152642_of¦152642 love¦152643 the¦152648 father¦152649 has¦152644_given¦152644 to¦152647_us¦152647, in¦152650_order¦152650_that¦152650 we¦152653_may¦152653_be¦152653_called¦152653 children¦152651 of¦152652_",
{
"type": "char",
"marker": "nd",
"content": [
"god¦152652"
]
},
", and¦152654 we¦152655_are¦152655. Because¦152656_of¦152656 this¦152657, the¦152658 world¦152659 is¦152661_ not¦152660 _knowing¦152661 us¦152663, because¦152664 it¦152666_ not¦152665 _knew¦152666 him¦152667.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "1JN 3:2"
},
"Beloved¦152668, now¦152669 we¦152672_are¦152672 children¦152670 of¦152671_",
{
"type": "char",
"marker": "nd",
"content": [
"god¦152671"
]
},
", and¦152673 was¦152675_ not¦152674_yet¦152674 _revealed¦152675 what¦152676 we¦152677_will¦152677_be¦152677. We¦152678_have¦152678_known¦152678 that¦152680 if¦152681 he¦152682_may¦152682_be¦152682_revealed¦152682, we¦152685_will¦152685_be¦152685 similar¦152683 to¦152684_him¦152684, because¦152686 we¦152687_will¦152687_be¦152687_seeing¦152687 him¦152688 as¦152689 he¦152690_is¦152690.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "1JN 3:3"
},
"And¦152691 everyone¦152692 untr which¦152693untr* having¦152694 untr the¦152695untr* this¦152697 hope¦152696 in¦152698 him¦152699, is¦152700_purifying¦152700 himself¦152701, as¦152702 that¦152703 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152703"
]
},
" is¦152705 pure¦152704.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "1JN 3:4"
},
"Everyone¦152706 untr which¦152707untr* practicing¦152708 untr the¦152709untr* sin¦152710, is¦152714_ also¦152711 _practicing¦152714 untr the¦152712untr* lawlessness¦152713, and¦152715 untr the¦152716untr* sin¦152717 is¦152718 untr the¦152720untr* lawlessness¦152721.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "1JN 3:5"
},
"And¦152722 you¦152723_all¦152723_have¦152723_known¦152723 that¦152725 that¦152726 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152726"
]
},
" was¦152727_revealed¦152727, in¦152728_order¦152728_that¦152728 he¦152732_may¦152732_take¦152732_away¦152732 untr the¦152729untr* sins¦152730, and¦152733 sin¦152734 is¦152738 not¦152737 in¦152735 him¦152736.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "1JN 3:6"
},
"Everyone¦152741 untr which¦152742untr* remaining¦152745 in¦152743 him¦152744 is¦152747_ not¦152746 _sinning¦152747, everyone¦152748 untr which¦152749untr* sinning¦152750 has¦152752_ neither¦152751 _seen¦152752 him¦152753, nor¦152754 has¦152755_known¦152755 him¦152756.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "1JN 3:7"
},
"Little¦152758_children¦152758, let¦152762_ no¦152759_one¦152759 _be¦152762_deceiving¦152762 you¦152763_all¦152763, the¦152764 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152764"
]
},
" practicing¦152765 untr the¦152766untr* righteousness¦152767, is¦152769 righteous¦152768, as¦152770 that¦152771 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152771"
]
},
" is¦152773 righteous¦152772.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "1JN 3:8"
},
"The¦152774 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦152774"
]
},
" practicing¦152776 untr the¦152777untr* sin¦152778, is¦152782 of¦152779 the¦152780 devil¦152781, because¦152783 the¦152786 devil¦152787 is¦152788_sinning¦152788 from¦152784 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152785"
]
},
"_beginning¦152785. The¦152792 son¦152793 of¦152795_ untr the¦152794untr* _",
{
"type": "char",
"marker": "nd",
"content": [
"god¦152795"
]
},
" was¦152791_revealed¦152791 for¦152789 this¦152790, in¦152796_order¦152796_that¦152796 he¦152797_may¦152797_destroy¦152797 the¦152798 works¦152799 of¦152800_the¦152800 devil¦152801.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "1JN 3:9"
},
"Everyone¦152802 untr which¦152803untr* having¦152804_been¦152804_born¦152804 of¦152805 untr the¦152806untr* ",
{
"type": "char",
"marker": "nd",
"content": [
"god¦152807"
]
},
", is¦152810_ not¦152809 _practicing¦152810 sin¦152808, because¦152811 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦152812"
]
},
"_seed¦152812 of¦152813_him¦152813 is¦152816_remaining¦152816 in¦152814 him¦152815, and¦152817 he¦152819_is¦152819_ not¦152818 _able¦152819 to¦152820_be¦152820_sinning¦152820, because¦152821 he¦152825_has¦152825_been¦152825_born¦152825 of¦152822 untr the¦152823untr* ",
{
"type": "char",