-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.out
1277 lines (1277 loc) · 156 KB
/
README.out
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
\BOOKMARK [1][-]{section.1}{Confessions\040of\040faith}{}% 1
\BOOKMARK [2][-]{subsection.1.1}{The\040order\040of\040salvation}{section.1}% 2
\BOOKMARK [2][-]{subsection.1.2}{Living\040in\040observance\040of\040the\040Law\040is\040fine,\040and\040even\040encouraged}{section.1}% 3
\BOOKMARK [3][-]{subsubsection.1.2.1}{It's\040interesting\040that\040the\040KJV\040reads\040quite\040differently\040here,\040but\040I'm\040comfortable\040with\040the\040ESV}{subsection.1.2}% 4
\BOOKMARK [2][-]{subsection.1.3}{I'm\040non-denominational}{section.1}% 5
\BOOKMARK [2][-]{subsection.1.4}{1689\040Baptist\040confession\040of\040faith}{section.1}% 6
\BOOKMARK [3][-]{subsubsection.1.4.1}{Chapter\0401}{subsection.1.4}% 7
\BOOKMARK [3][-]{subsubsection.1.4.2}{Notes\040for\040Chapter\0402,\040paragraph\0401}{subsection.1.4}% 8
\BOOKMARK [3][-]{subsubsection.1.4.3}{Notes\040for\040Chapter\0409,\040paragraph\0403}{subsection.1.4}% 9
\BOOKMARK [3][-]{subsubsection.1.4.4}{Heidelberg\040Catechism}{subsection.1.4}% 10
\BOOKMARK [1][-]{section.2}{My\040thoughts\040and\040bible\040references\040regarding\040theology}{}% 11
\BOOKMARK [2][-]{subsection.2.1}{Bible\040versions\040used\040in\040this\040document}{section.2}% 12
\BOOKMARK [1][-]{section.3}{Being\040born-again}{}% 13
\BOOKMARK [2][-]{subsection.3.1}{Being\040born-again\040of\040the\040Spirit}{section.3}% 14
\BOOKMARK [3][-]{subsubsection.3.1.1}{New creation \(kainē ktisis\) - All things new}{subsection.3.1}% 15
\BOOKMARK [3][-]{subsubsection.3.1.2}{Repentance\040after\040being\040born\040of\040the\040Spirit}{subsection.3.1}% 16
\BOOKMARK [3][-]{subsubsection.3.1.3}{Becoming\040born-again\040of\040the\040Spirit\040may\040be\040receiving\040the\040inheritance}{subsection.3.1}% 17
\BOOKMARK [3][-]{subsubsection.3.1.4}{The\040living\040water,\040the\040Holy\040Spirit\040of\040promise\040is\040the\040seal\040of\040our\040inheritance,\040and\040received\040through\040faith\040in\040Jesus}{subsection.3.1}% 18
\BOOKMARK [3][-]{subsubsection.3.1.5}{Jesus\040being\040glorified\040means\040we\040can\040receive\040the\040Holy\040Spirit\040through\040faith}{subsection.3.1}% 19
\BOOKMARK [3][-]{subsubsection.3.1.6}{When\040we\040are\040born\040of\040the\040Spirit,\040we\040receive\040a\040regenerated\040spirit-man.\040This\040is\040part\040of\040the\040inheritance,\040I\040think}{subsection.3.1}% 20
\BOOKMARK [3][-]{subsubsection.3.1.7}{Any\040spiritual\040experience\040should\040be\040in\040the\040character\040of\040the\040Holy\040Spirit}{subsection.3.1}% 21
\BOOKMARK [3][-]{subsubsection.3.1.8}{My\040testimony\040of\040being\040born-again\040of\040the\040Spirit}{subsection.3.1}% 22
\BOOKMARK [2][-]{subsection.3.2}{Experiential\040heart\040belief\040through\040obedience}{section.3}% 23
\BOOKMARK [2][-]{subsection.3.3}{Repentance\040from\040sin\040may\040come\040before\040believing\040in\040Jesus}{section.3}% 24
\BOOKMARK [2][-]{subsection.3.4}{Born\040of\040God}{section.3}% 25
\BOOKMARK [3][-]{subsubsection.3.4.1}{We\040put\040away\040the\040false\040gods,\040and\040only\040worship\040the\040One\040True\040God:\040Jehovah,\040and\040Jesus\040Christ\040who\040He\040sent}{subsection.3.4}% 26
\BOOKMARK [3][-]{subsubsection.3.4.2}{Peter\040initially\040protested,\040but\040then\040came\040to\040trust\040Jesus\040and\040have\040a\040"share\040with\040Jesus"}{subsection.3.4}% 27
\BOOKMARK [3][-]{subsubsection.3.4.3}{Jesus\040created\040disciples\040of\040Himself}{subsection.3.4}% 28
\BOOKMARK [3][-]{subsubsection.3.4.4}{Everyone\040who\040is\040actively\040and\040actually\040believing\040that\040Jesus\040is\040the\040Christ\040has\040been\040born\040of\040God}{subsection.3.4}% 29
\BOOKMARK [3][-]{subsubsection.3.4.5}{Whoever\040loves\040with\040Christ's\040love\040has\040been\040born\040of\040God\040and\040knows\040God}{subsection.3.4}% 30
\BOOKMARK [2][-]{subsection.3.5}{A\040person\040who\040is\040really\040believing\040in\040Jesus\040will\040do\040the\040works\040of\040Jesus\040-\040they'll\040produce\040good\040works}{section.3}% 31
\BOOKMARK [3][-]{subsubsection.3.5.1}{Receiving\040the\040inheritance\040naturally\040comes\040after\040hearing\040the\040word\040of\040truth\040and\040believing\040in\040Jesus}{subsection.3.5}% 32
\BOOKMARK [2][-]{subsection.3.6}{Further\040repentance\040from\040sin\040and\040to\040come\040to\040love\040in\040the\040way\040that\040Jesus\040did\040is\040an\040inevitable\040consequence\040of\040being\040born\040of\040God\040i.e.\040truly\040believing\040in\040Jesus}{section.3}% 33
\BOOKMARK [2][-]{subsection.3.7}{Knowing\040God\040by\040obeying\040Jesus\040and\040loving\040with\040Christ's\040love\040implies\040you\040have\040at\040some\040stage\040been\040born\040of\040God}{section.3}% 34
\BOOKMARK [2][-]{subsection.3.8}{Obedience\040lead\040to\040belief\040which\040leads\040to\040obedience\040\(loving\040with\040Christ's\040love\040with\040the\040help\040of\040God's\040spirit\)\040which\040leads\040to\040overcoming\040the\040world}{section.3}% 35
\BOOKMARK [2][-]{subsection.3.9}{We\040overcome\040the\040world\040with\040a\040new\040spirit\040God\040has\040given\040us\040to\040wait\040and\040trust\040on\040Him\040and\040obey\040Him}{section.3}% 36
\BOOKMARK [3][-]{subsubsection.3.9.1}{Marriage\040should\040not\040become\040idolatry}{subsection.3.9}% 37
\BOOKMARK [2][-]{subsection.3.10}{The\040importance\040of\040loving\040one\040another}{section.3}% 38
\BOOKMARK [2][-]{subsection.3.11}{Receiving\040the\040Holy\040Spirit}{section.3}% 39
\BOOKMARK [3][-]{subsubsection.3.11.1}{Water\040baptism\040as\040an\040appeal\040to\040God}{subsection.3.11}% 40
\BOOKMARK [3][-]{subsubsection.3.11.2}{We\040need\040are\040sealed\040with\040the\040Holy\040Spirit\040through\040accepting\040the\040truth\040of\040the\040good\040news\040of\040Jesus\040and\040God's\040Living\040Word\040works\040in\040us\040to\040save\040us}{subsection.3.11}% 41
\BOOKMARK [3][-]{subsubsection.3.11.3}{We\040need\040to\040be\040born-again\040and\040we\040want\040to\040be\040filled\040with\040and\040baptised\040by\040the\040Holy\040Spirit}{subsection.3.11}% 42
\BOOKMARK [3][-]{subsubsection.3.11.4}{The\040Holy\040Spirit\040may\040teach\040us\040even\040before\040He\040is\040in\040us,\040by\040helping\040us\040as\040He\040dwells\040with\040us}{subsection.3.11}% 43
\BOOKMARK [2][-]{subsection.3.12}{Our\040will\040should\040be\040for\040God's\040will\040to\040be\040done,\040and\040to\040will\040to\040do\040God's\040will}{section.3}% 44
\BOOKMARK [3][-]{subsubsection.3.12.1}{Being\040filled\040with\040the\040Holy\040Spirit}{subsection.3.12}% 45
\BOOKMARK [2][-]{subsection.3.13}{In\040God's\040mercy,\040we\040come\040to\040obedient\040faith\040and\040come\040into\040Christ\040Jesus}{section.3}% 46
\BOOKMARK [3][-]{subsubsection.3.13.1}{In\040Christ\040Jesus,\040the\040blood\040of\040Jesus\040cleanses\040us\040from\040all\040sin}{subsection.3.13}% 47
\BOOKMARK [2][-]{subsection.3.14}{Obedience\040is\040absolutely\040within\040our\040ability}{section.3}% 48
\BOOKMARK [3][-]{subsubsection.3.14.1}{Observing\040Jesus,\040continuing\040to\040believe\040in\040Him\040and\040believe\040His\040words\040and\040abide\040in\040His\040word,\040we\040will\040live\040forever}{subsection.3.14}% 49
\BOOKMARK [3][-]{subsubsection.3.14.2}{We\040are\040saved\040by\040grace\040through\040faith\040in\040Jesus\040Christ}{subsection.3.14}% 50
\BOOKMARK [3][-]{subsubsection.3.14.3}{We\040become\040obedient\040to\040Jesus}{subsection.3.14}% 51
\BOOKMARK [3][-]{subsubsection.3.14.4}{There's\040some\040bonuses\040to\040suffering\040for\040Christ's\040sake\040and\040for\040endurance}{subsection.3.14}% 52
\BOOKMARK [3][-]{subsubsection.3.14.5}{Eternal\040life\040and\040salvation\040is\040a\040gift\040received\040through\040faith\040and\040obedience\040to\040God}{subsection.3.14}% 53
\BOOKMARK [2][-]{subsection.3.15}{Treasuring\040anything\040else\040more\040than\040God\040is\040sin}{section.3}% 54
\BOOKMARK [3][-]{subsubsection.3.15.1}{Eschatology}{subsection.3.15}% 55
\BOOKMARK [3][-]{subsubsection.3.15.2}{How\040we\040should\040act\040how\040we're\040instructed\040to\040act\040while\040awaiting\040the\040Lord's\040return}{subsection.3.15}% 56
\BOOKMARK [3][-]{subsubsection.3.15.3}{As\040Christians,\040we've\040got\040to\040repent\040of\040evil\040deeds\040and\040keep\040Jesus'\040works\040-\040keep\040imitating\040Christ,\040even\040in\040holiness}{subsection.3.15}% 57
\BOOKMARK [3][-]{subsubsection.3.15.4}{We\040absolutely\040cling\040to\040Jesus\040as\040well}{subsection.3.15}% 58
\BOOKMARK [2][-]{subsection.3.16}{Disobedience\040towards\040God\040is\040sin.\040Treasuring\040anything\040else\040more\040than\040God\040is\040sin}{section.3}% 59
\BOOKMARK [2][-]{subsection.3.17}{God\040makes\040us\040born-again,\040so\040we\040can\040love\040Him,\040obediently}{section.3}% 60
\BOOKMARK [3][-]{subsubsection.3.17.1}{The\040Christian\040life\040is\040both\040gift\040and\040duty}{subsection.3.17}% 61
\BOOKMARK [3][-]{subsubsection.3.17.2}{Jesus'\040obedience}{subsection.3.17}% 62
\BOOKMARK [3][-]{subsubsection.3.17.3}{Our\040following\040His\040example}{subsection.3.17}% 63
\BOOKMARK [3][-]{subsubsection.3.17.4}{God\040working\040in\040us}{subsection.3.17}% 64
\BOOKMARK [3][-]{subsubsection.3.17.5}{God\040acts\040for\040those\040who\040wait\040for\040Him}{subsection.3.17}% 65
\BOOKMARK [3][-]{subsubsection.3.17.6}{The\040free\040gift\040is\040God\040-\040God\040is\040the\040Gospel}{subsection.3.17}% 66
\BOOKMARK [3][-]{subsubsection.3.17.7}{God\040the\040justifier\040of\040the\040one\040who\040has\040faith\040in\040Jesus\040-\040the\040righteousness\040of\040God\040apart\040from\040the\040law\040is\040received\040by\040faith}{subsection.3.17}% 67
\BOOKMARK [3][-]{subsubsection.3.17.8}{The\040point\040of\040justification\040-\040we\040rejoice\040in\040the\040hope\040of\040the\040glory\040of\040God,\040and\040we\040are\040transformed}{subsection.3.17}% 68
\BOOKMARK [3][-]{subsubsection.3.17.9}{Why\040do\040we\040want\040to\040live\040righteously?\040To\040honour\040Christ}{subsection.3.17}% 69
\BOOKMARK [2][-]{subsection.3.18}{Saved\040not\040by\040my\040own\040works\040done\040outside\040of\040Him\040but\040by\040His\040work}{section.3}% 70
\BOOKMARK [3][-]{subsubsection.3.18.1}{Under\040the\040right\040conditions,\040I\040don't\040see\040a\040problem\040with\040'working'\040for\040God}{subsection.3.18}% 71
\BOOKMARK [2][-]{subsection.3.19}{Eternal\040security\040for\040those\040who\040follow\040Jesus}{section.3}% 72
\BOOKMARK [2][-]{subsection.3.20}{Some\040indicators\040to\040know\040for\040sure\040you\040are\040saved}{section.3}% 73
\BOOKMARK [3][-]{subsubsection.3.20.1}{By\040the\040Spirit\040Jesus\040has\040given\040us}{subsection.3.20}% 74
\BOOKMARK [2][-]{subsection.3.21}{Indicators\040that\040we\040are\040of\040the\040truth}{section.3}% 75
\BOOKMARK [1][-]{section.4}{Following\040Jesus}{}% 76
\BOOKMARK [2][-]{subsection.4.1}{Being\040led\040by\040the\040Spirit\040is\040not\040license\040to\040sin}{section.4}% 77
\BOOKMARK [2][-]{subsection.4.2}{Walk\040by\040the\040Spirit\040=\040Obey\040Jesus\040=\040Led\040by\040the\040Spirit\040=\040Walk\040in\040the\040light\040as\040He\040is\040in\040the\040light}{section.4}% 78
\BOOKMARK [3][-]{subsubsection.4.2.1}{God\040loved\040us\040first,\040and\040forgave\040us\040first}{subsection.4.2}% 79
\BOOKMARK [3][-]{subsubsection.4.2.2}{God's\040kindness\040is\040meant\040to\040lead\040us\040to\040repentance\040from\040sin}{subsection.4.2}% 80
\BOOKMARK [3][-]{subsubsection.4.2.3}{Subsequent\040behaviour\040-\040the\040Golden\040Rule\040and\040the\040Royal\040Law,\040faith\040working\040through\040love}{subsection.4.2}% 81
\BOOKMARK [3][-]{subsubsection.4.2.4}{God's\040name\040must\040be\040hallowed.\040We\040should\040not\040take\040it\040in\040vain}{subsection.4.2}% 82
\BOOKMARK [3][-]{subsubsection.4.2.5}{Christ-like\040humility}{subsection.4.2}% 83
\BOOKMARK [3][-]{subsubsection.4.2.6}{Anti-christ-like\040behaviour}{subsection.4.2}% 84
\BOOKMARK [3][-]{subsubsection.4.2.7}{We\040should\040welcome\040people\040who\040hear\040Jesus'\040words\040and\040want\040to\040learn\040how\040to\040follow\040Jesus,\040and\040we\040should\040give\040them\040Jesus'\040words}{subsection.4.2}% 85
\BOOKMARK [3][-]{subsubsection.4.2.8}{God\040definitely\040disciplines\040us\040even\040if\040we\040love\040Jesus\040-\040every\040son\040he\040receives}{subsection.4.2}% 86
\BOOKMARK [3][-]{subsubsection.4.2.9}{Christians\040should\040live\040fulfilling\040the\040Royal\040Law}{subsection.4.2}% 87
\BOOKMARK [3][-]{subsubsection.4.2.10}{Fulfilling\040Christ's\040law\040is\040the\040least\040we\040can\040endeavour\040to\040do\040as\040an\040appropriate\040response\040of\040love\040for\040Jesus,\040Jesus\040having\040fulfilled\040the\040entire\040law\040and\040prophets}{subsection.4.2}% 88
\BOOKMARK [2][-]{subsection.4.3}{Following\040Jesus\040is\040the\040way\040of\040righteousness}{section.4}% 89
\BOOKMARK [2][-]{subsection.4.4}{Obey\040the\040Truth,\040obey\040Jesus.\040Serve\040one\040another\040through\040love}{section.4}% 90
\BOOKMARK [3][-]{subsubsection.4.4.1}{You\040cannot\040serve\040God,\040and\040also\040be\040yoked\040to\040money}{subsection.4.4}% 91
\BOOKMARK [3][-]{subsubsection.4.4.2}{Make\040friends\040with\040charity\040while\040money\040hasn't\040yet\040failed}{subsection.4.4}% 92
\BOOKMARK [3][-]{subsubsection.4.4.3}{In\040this\040world\040God\040can\040see\040if\040we\040are\040to\040be\040trusted\040with\040true\040heavenly\040wealth\040by\040seeing\040how\040we\040used\040our\040money}{subsection.4.4}% 93
\BOOKMARK [3][-]{subsubsection.4.4.4}{We\040must\040actually\040make\040following\040Jesus\040a\040reality\040to\040take\040hold\040of\040the\040eternal\040life\040to\040which\040we\040are\040called}{subsection.4.4}% 94
\BOOKMARK [1][-]{section.5}{Great\040commission}{}% 95
\BOOKMARK [2][-]{subsection.5.1}{Even\040the\040Old\040Testament\040makes\040a\040person\040wise\040for\040salvation\040through\040faith\040in\040Christ\040Jesus:}{section.5}% 96
\BOOKMARK [2][-]{subsection.5.2}{Jesus}{section.5}% 97
\BOOKMARK [2][-]{subsection.5.3}{Belief}{section.5}% 98
\BOOKMARK [2][-]{subsection.5.4}{Fun\040acronyms}{section.5}% 99
\BOOKMARK [3][-]{subsubsection.5.4.1}{A\040H.A.N.D.S.\040Approach\040to\040Showing\040Jesus\040is\040God}{subsection.5.4}% 100
\BOOKMARK [2][-]{subsection.5.5}{Our\040obedient\040faith\040should\040be\040penitent,\040and\040should\040be\040without\040partiality.\040We\040aim\040for\040perfection,\040to\040be\040conformed\040to\040Christ's\040image}{section.5}% 101
\BOOKMARK [3][-]{subsubsection.5.5.1}{Faith\040is\040not\040merely\040belief,\040but\040faith\040is\040walking\040as\040Abraham\040did\040-\040believing\040and\040obedient}{subsection.5.5}% 102
\BOOKMARK [3][-]{subsubsection.5.5.2}{Joy\040and\040obedience\040-\040we\040want\040both\040of\040them\040at\040the\040same\040time}{subsection.5.5}% 103
\BOOKMARK [3][-]{subsubsection.5.5.3}{We\040are\040bought\040with\040the\040precious\040blood\040of\040Christ\040and\040we\040should\040be\040obedient\040to\040God}{subsection.5.5}% 104
\BOOKMARK [3][-]{subsubsection.5.5.4}{Eternal\040salvation\040goes\040to\040those\040who\040obey\040Him}{subsection.5.5}% 105
\BOOKMARK [3][-]{subsubsection.5.5.5}{Faith\040in\040Jesus\040Christ's\040name\040to\040be\040saved}{subsection.5.5}% 106
\BOOKMARK [2][-]{subsection.5.6}{By\040God's\040grace\040God\040has\040saved\040us\040and\040provided\040us\040with\040a\040means\040to\040be\040reconciled\040to\040Him\040through\040trusting\040faith\040in\040Him}{section.5}% 107
\BOOKMARK [2][-]{subsection.5.7}{Receiving\040Jesus}{section.5}% 108
\BOOKMARK [3][-]{subsubsection.5.7.1}{Receiving\040Jesus\040may\040be\040as\040easy\040as\040receiving\040the\040one\040who\040He\040sends,\040or\040receiving\040a\040child\040in\040His\040name}{subsection.5.7}% 109
\BOOKMARK [3][-]{subsubsection.5.7.2}{Receive\040Jesus\040and\040His\040words,\040and\040then\040put\040to\040death\040the\040deeds\040of\040the\040body}{subsection.5.7}% 110
\BOOKMARK [3][-]{subsubsection.5.7.3}{God\040through\040His\040mercy\040saves\040us.\040We\040should\040respond\040well}{subsection.5.7}% 111
\BOOKMARK [3][-]{subsubsection.5.7.4}{Those\040who\040have\040a\040heart\040of\040faith\040towards\040Him\040\(and\040anyone\040who\040He\040wills\)\040may\040receive\040forgiveness\040of\040sins\040through\040his\040name}{subsection.5.7}% 112
\BOOKMARK [2][-]{subsection.5.8}{I\040believe\040that\040a\040loving,\040trusting\040\(\040believing\040and\040obedient\040\)\040heart\040for\040Jesus\040Christ\040is\040essential\040for\040permanent\040abiding\040in\040Him}{section.5}% 113
\BOOKMARK [3][-]{subsubsection.5.8.1}{The\040Holy\040Spirit\040is\040the\040living\040water}{subsection.5.8}% 114
\BOOKMARK [3][-]{subsubsection.5.8.2}{Trusting\040belief\040\(through\040grace\)\040leads\040to\040continued\040obedience,\040which\040leads\040to\040knowledge\040of\040the\040Truth}{subsection.5.8}% 115
\BOOKMARK [3][-]{subsubsection.5.8.3}{As\040we\040come\040to\040Jesus,\040we\040are\040conformed\040to\040His\040image}{subsection.5.8}% 116
\BOOKMARK [3][-]{subsubsection.5.8.4}{Peter\040was\040quick\040to\040belief,\040and\040his\040belief\040led\040to\040obedience}{subsection.5.8}% 117
\BOOKMARK [3][-]{subsubsection.5.8.5}{Thomas\040was\040following\040Jesus\040around\040for\040a\040long\040time\040and\040was\040slow\040to\040belief,\040but\040arrived}{subsection.5.8}% 118
\BOOKMARK [3][-]{subsubsection.5.8.6}{Believing\040Jesus}{subsection.5.8}% 119
\BOOKMARK [3][-]{subsubsection.5.8.7}{Believing\040Jesus,\040we\040have\040the\040right\040to\040become\040a\040child\040of\040God}{subsection.5.8}% 120
\BOOKMARK [3][-]{subsubsection.5.8.8}{My\040understanding\040of\040repentance}{subsection.5.8}% 121
\BOOKMARK [3][-]{subsubsection.5.8.9}{We\040must\040have\040a\040changed\040heart,\040which\040longs\040to\040serve\040the\040living\040God,\040to\040be\040a\040bondservant\040of\040Jesus.\040AMEN!!}{subsection.5.8}% 122
\BOOKMARK [3][-]{subsubsection.5.8.10}{Doing\040the\040will\040of\040God}{subsection.5.8}% 123
\BOOKMARK [3][-]{subsubsection.5.8.11}{Work\040may\040be\040burned\040up,\040and\040the\040person\040who\040has\040a\040believing\040and\040obedient\040heart\040is\040still\040saved}{subsection.5.8}% 124
\BOOKMARK [3][-]{subsubsection.5.8.12}{Forever\040abiding\040is\040believing\040and\040being\040a\040disciple,\040a\040servant}{subsection.5.8}% 125
\BOOKMARK [2][-]{subsection.5.9}{God\040opens\040the\040eyes\040to\040see\040the\040light\040of\040the\040gospel}{section.5}% 126
\BOOKMARK [2][-]{subsection.5.10}{Gospel}{section.5}% 127
\BOOKMARK [3][-]{subsubsection.5.10.1}{Living\040a\040godly\040life\040in\040Christ\040Jesus\040is\040part\040of\040the\040gospel}{subsection.5.10}% 128
\BOOKMARK [3][-]{subsubsection.5.10.2}{Faith\040is\040disqualified\040in\040people\040who\040disregard\040the\040teachings\040-\040they\040never\040arrive\040at\040the\040knowledge\040of\040the\040truth}{subsection.5.10}% 129
\BOOKMARK [2][-]{subsection.5.11}{Be\040a\040disciple\040of\040Jesus\040to\040be\040set\040free\040and\040abide\040forever}{section.5}% 130
\BOOKMARK [3][-]{subsubsection.5.11.1}{The\040high\040cost\040of\040following\040Christ}{subsection.5.11}% 131
\BOOKMARK [3][-]{subsubsection.5.11.2}{Give\040our\040mind\040to\040Christ}{subsection.5.11}% 132
\BOOKMARK [2][-]{subsection.5.12}{The\040free\040gift\040of\040salvation\040is\040to\040be\040set\040free\040from\040sin\040to\040be\040a\040slave\040of\040righteousness}{section.5}% 133
\BOOKMARK [3][-]{subsubsection.5.12.1}{Receiving\040the\040Holy\040Spirit}{subsection.5.12}% 134
\BOOKMARK [2][-]{subsection.5.13}{The\040work\040of\040the\040Holy\040Spirit}{section.5}% 135
\BOOKMARK [3][-]{subsubsection.5.13.1}{The\040Holy\040Spirit\040may\040teach\040us\040even\040before\040He\040is\040in\040us,\040by\040helping\040us\040as\040He\040dwells\040with\040us}{subsection.5.13}% 136
\BOOKMARK [3][-]{subsubsection.5.13.2}{Teaching\040us,\040leading\040us\040into\040the\040Truth}{subsection.5.13}% 137
\BOOKMARK [3][-]{subsubsection.5.13.3}{The\040fruit\040of\040the\040Spirit}{subsection.5.13}% 138
\BOOKMARK [2][-]{subsection.5.14}{Becoming\040a\040servant,\040humbling\040oneself\040and\040following\040Jesus\040is\040what\040we\040should\040do}{section.5}% 139
\BOOKMARK [2][-]{subsection.5.15}{I\040believe\040that\040I\040should\040try\040as\040hard\040as\040I\040can\040to\040enter\040via\040the\040narrow\040gate}{section.5}% 140
\BOOKMARK [3][-]{subsubsection.5.15.1}{Narrow\040is\040the\040gate\040and\040hard\040is\040the\040way\040that\040leads\040to\040life}{subsection.5.15}% 141
\BOOKMARK [3][-]{subsubsection.5.15.2}{Wide\040gate}{subsection.5.15}% 142
\BOOKMARK [3][-]{subsubsection.5.15.3}{Obedience\040to\040Jesus\040has\040everything\040to\040do\040with\040receiving\040Him,\040and\040receiving\040Salvation}{subsection.5.15}% 143
\BOOKMARK [3][-]{subsubsection.5.15.4}{Disobedience}{subsection.5.15}% 144
\BOOKMARK [3][-]{subsubsection.5.15.5}{The\040way\040is\040easy\040that\040leads\040to\040destruction}{subsection.5.15}% 145
\BOOKMARK [3][-]{subsubsection.5.15.6}{Narrow\040gate}{subsection.5.15}% 146
\BOOKMARK [3][-]{subsubsection.5.15.7}{The\040narrow\040gate\040vitally\040requires\040submitting\040to\040God's\040righteousness.\040We\040need\040God's\040forgiveness\040and\040His\040justification\040that\040comes\040through\040faith}{subsection.5.15}% 147
\BOOKMARK [3][-]{subsubsection.5.15.8}{We\040have\040to\040receive\040the\040Kingdom\040like\040a\040child.\040Don't\040resist\040Jesus\040or\040His\040teachings\040-\040follow\040Jesus}{subsection.5.15}% 148
\BOOKMARK [3][-]{subsubsection.5.15.9}{We\040have\040to\040believe\040in\040and\040obey\040Jesus.\040We\040all\040fall\040short\040but\040we\040still\040must\040have\040faith\040in\040Jesus}{subsection.5.15}% 149
\BOOKMARK [3][-]{subsubsection.5.15.10}{All\040judgement\040has\040been\040given\040to\040Jesus}{subsection.5.15}% 150
\BOOKMARK [3][-]{subsubsection.5.15.11}{The\040gospel\040has\040to\040be\040obeyed}{subsection.5.15}% 151
\BOOKMARK [3][-]{subsubsection.5.15.12}{God\040will\040be\040the\040judge\040of\040who\040has\040had\040faith\040in\040Jesus,\040and\040who\040has\040obeyed\040Him.\040I\040wouldn't\040take\040obedience\040lightly}{subsection.5.15}% 152
\BOOKMARK [3][-]{subsubsection.5.15.13}{Jesus\040was\040extremely\040humble\040here.\040Likewise,\040we\040should\040be\040able\040to\040recognise\040that\040we\040need\040Him\040as\040our\040Lord\040looking\040over\040us}{subsection.5.15}% 153
\BOOKMARK [3][-]{subsubsection.5.15.14}{Let\040us\040serve\040Jesus\040Christ\040in\040truth,\040and\040have\040confidence}{subsection.5.15}% 154
\BOOKMARK [3][-]{subsubsection.5.15.15}{We\040must\040recognise\040that\040where\040our\040efforts\040to\040obey\040falls\040short,\040Jesus's\040blood\040covers\040us.\040But\040we\040must\040still\040have\040the\040heart\040to\040make\040Jesus\040our\040Lord\040and\040King,\040and\040be\040following\040Him}{subsection.5.15}% 155
\BOOKMARK [3][-]{subsubsection.5.15.16}{Do\040not\040condemn\040others.\040Speak\040the\040truth\040and\040leave\040judgement\040to\040the\040Judge}{subsection.5.15}% 156
\BOOKMARK [3][-]{subsubsection.5.15.17}{Jesus\040Christ\040is\040the\040word\040of\040life,\040Jesus\040Christ\040is\040the\040eternal\040life}{subsection.5.15}% 157
\BOOKMARK [3][-]{subsubsection.5.15.18}{Simply\040tell\040the\040truth\040from\040God.\040We\040must\040not\040reject\040Jesus}{subsection.5.15}% 158
\BOOKMARK [3][-]{subsubsection.5.15.19}{Jesus\040is\040Almighty\040God's\040Son\040and\040is\040sitting\040in\040Power\040next\040to\040His\040Father}{subsection.5.15}% 159
\BOOKMARK [3][-]{subsubsection.5.15.20}{Faith\040and\040law-keeping\040as\040a\040Christian}{subsection.5.15}% 160
\BOOKMARK [1][-]{section.6}{Jehovah\040is\040Almighty\040God,\040Creator\040of\040Heaven\040and\040Earth}{}% 161
\BOOKMARK [2][-]{subsection.6.1}{Seven\040I\040AM\040statements\040in\040the\040Gospel\040of\040John}{section.6}% 162
\BOOKMARK [3][-]{subsubsection.6.1.1}{The\040Bread\040of\040Life}{subsection.6.1}% 163
\BOOKMARK [3][-]{subsubsection.6.1.2}{The\040Light\040of\040the\040World}{subsection.6.1}% 164
\BOOKMARK [3][-]{subsubsection.6.1.3}{The\040Door}{subsection.6.1}% 165
\BOOKMARK [3][-]{subsubsection.6.1.4}{The\040Good\040Shepherd}{subsection.6.1}% 166
\BOOKMARK [3][-]{subsubsection.6.1.5}{The\040Resurrection\040and\040the\040Life}{subsection.6.1}% 167
\BOOKMARK [3][-]{subsubsection.6.1.6}{The\040Way,\040the\040Truth\040and\040the\040Life}{subsection.6.1}% 168
\BOOKMARK [3][-]{subsubsection.6.1.7}{The\040True\040Vine}{subsection.6.1}% 169
\BOOKMARK [2][-]{subsection.6.2}{Jesus}{section.6}% 170
\BOOKMARK [3][-]{subsubsection.6.2.1}{Jesus\040has\040overcome\040the\040world}{subsection.6.2}% 171
\BOOKMARK [3][-]{subsubsection.6.2.2}{Jesus\040is\040the\040Lamb\040of\040God\040who\040sits\040with\040God\040on\040God's\040throne}{subsection.6.2}% 172
\BOOKMARK [3][-]{subsubsection.6.2.3}{Follow\040Jesus\040for\040eternal\040life.\040Jesus\040is\040the\040Bread\040of\040Life}{subsection.6.2}% 173
\BOOKMARK [3][-]{subsubsection.6.2.4}{Believe\040Jesus\040and\040allow\040His\040word\040to\040abide\040in\040you}{subsection.6.2}% 174
\BOOKMARK [3][-]{subsubsection.6.2.5}{We\040are\040implored\040to\040love\040Jesus\040and\040follow\040Him}{subsection.6.2}% 175
\BOOKMARK [3][-]{subsubsection.6.2.6}{We\040must\040listen\040to\040Jesus}{subsection.6.2}% 176
\BOOKMARK [3][-]{subsubsection.6.2.7}{We\040are\040implored\040to\040honour\040Jesus}{subsection.6.2}% 177
\BOOKMARK [3][-]{subsubsection.6.2.8}{We\040are\040implored\040to\040keep\040Jesus'\040words}{subsection.6.2}% 178
\BOOKMARK [3][-]{subsubsection.6.2.9}{We\040must\040receive\040Jesus.\040Jesus\040is\040God's\040Only-Begotten\040Son}{subsection.6.2}% 179
\BOOKMARK [3][-]{subsubsection.6.2.10}{Even\040those\040who\040have\040faith\040in\040Jesus\040Christ's\040name\040may\040have\040the\040right\040to\040be\040born\040of\040God\040and\040become\040children\040of\040God}{subsection.6.2}% 180
\BOOKMARK [3][-]{subsubsection.6.2.11}{We\040must\040do\040the\040will\040of\040God,\040which\040is\040the\040food\040and\040drink\040which\040Jesus\040gives\040us}{subsection.6.2}% 181
\BOOKMARK [3][-]{subsubsection.6.2.12}{Having\040faith\040\(living\040in\040accordance\040with\040the\040truth,\040and\040in\040relationship\040with\040God\)\040is\040asked\040of\040us\040-\040faith\040continues}{subsection.6.2}% 182
\BOOKMARK [3][-]{subsubsection.6.2.13}{We\040must\040abide\040by\040his\040teaching}{subsection.6.2}% 183
\BOOKMARK [3][-]{subsubsection.6.2.14}{We\040must\040live\040sowing\040to\040the\040Spirit}{subsection.6.2}% 184
\BOOKMARK [3][-]{subsubsection.6.2.15}{We\040must\040be\040servants\040of\040Christ}{subsection.6.2}% 185
\BOOKMARK [3][-]{subsubsection.6.2.16}{We\040must\040remain\040ultimately\040faithful\040to\040Jesus\040Christ,\040and\040never\040deny\040Him\040as\040our\040only\040Master\040and\040Lord}{subsection.6.2}% 186
\BOOKMARK [3][-]{subsubsection.6.2.17}{We\040must\040endeavour\040to\040live\040faithfully\040to\040our\040Jesus\040Christ}{subsection.6.2}% 187
\BOOKMARK [3][-]{subsubsection.6.2.18}{Christian\040faith\040looks\040like\040this}{subsection.6.2}% 188
\BOOKMARK [3][-]{subsubsection.6.2.19}{We\040should\040clean\040ourselves\040with\040the\040aid\040of\040the\040Word\040and\040the\040Holy\040Spirit}{subsection.6.2}% 189
\BOOKMARK [3][-]{subsubsection.6.2.20}{We\040must\040clean\040ourselves\040up\040with\040God's\040help}{subsection.6.2}% 190
\BOOKMARK [3][-]{subsubsection.6.2.21}{We\040must\040be\040wanting\040to\040be\040cleaned\040of\040sin}{subsection.6.2}% 191
\BOOKMARK [3][-]{subsubsection.6.2.22}{We\040should\040put\040the\040ignorant\040to\040silence\040through\040doing\040good}{subsection.6.2}% 192
\BOOKMARK [3][-]{subsubsection.6.2.23}{The\040obedient\040children\040are\040the\040ones\040who\040are\040not\040conformed\040to\040the\040passions\040of\040our\040former\040ignorance}{subsection.6.2}% 193
\BOOKMARK [3][-]{subsubsection.6.2.24}{The\040sons\040of\040disobedience\040are\040the\040ones\040who\040are\040conformed\040to\040sexual\040immorality,\040impurity,\040or\040covetousness,\040etc.}{subsection.6.2}% 194
\BOOKMARK [3][-]{subsubsection.6.2.25}{If\040we\040trust\040in\040the\040name\040of\040the\040Son\040of\040God,\040Jesus\040Christ,\040we\040have\040eternal\040life}{subsection.6.2}% 195
\BOOKMARK [3][-]{subsubsection.6.2.26}{Get\040to\040know\040Jesus\040by\040believing\040Him\040and\040following\040His\040commandments}{subsection.6.2}% 196
\BOOKMARK [3][-]{subsubsection.6.2.27}{Atonement}{subsection.6.2}% 197
\BOOKMARK [3][-]{subsubsection.6.2.28}{Everyone\040needs\040saving}{subsection.6.2}% 198
\BOOKMARK [3][-]{subsubsection.6.2.29}{Righteous\040deeds}{subsection.6.2}% 199
\BOOKMARK [3][-]{subsubsection.6.2.30}{Whoever\040makes\040an\040appeal\040to\040God,\040calls\040upon\040His\040name\040will\040be\040saved}{subsection.6.2}% 200
\BOOKMARK [3][-]{subsubsection.6.2.31}{Baptism\040is\040an\040appeal\040to\040God\040for\040a\040good\040conscience\040through\040the\040[death\040and]\040resurrection\040of\040Jesus\040Christ's,\040taking\040part\040in\040it}{subsection.6.2}% 201
\BOOKMARK [2][-]{subsection.6.3}{Obedience\040-\040A\040heart\040of\040obedience\040is\040the\040start\040of\040faith,\040and\040belief\040is\040the\040start\040of\040continued\040obedience}{section.6}% 202
\BOOKMARK [3][-]{subsubsection.6.3.1}{Continued\040revelation\040comes\040from\040having\040a\040heart\040of\040obedience\040towards\040God}{subsection.6.3}% 203
\BOOKMARK [3][-]{subsubsection.6.3.2}{God's\040commanded\040is\040for\040everyone\040to\040come\040to\040the\040obedience\040of\040having\040faith\040in\040Him\040through\040Jesus\040Christ}{subsection.6.3}% 204
\BOOKMARK [3][-]{subsubsection.6.3.3}{Fear\040of\040the\040Lord}{subsection.6.3}% 205
\BOOKMARK [2][-]{subsection.6.4}{Repentance\040does\040involve\040turning\040from\040sin}{section.6}% 206
\BOOKMARK [3][-]{subsubsection.6.4.1}{Justification\040by\040having\040faith\040like\040Abraham\040in\040He\040who\040raised\040Jesus\040Christ\040from\040the\040dead}{subsection.6.4}% 207
\BOOKMARK [2][-]{subsection.6.5}{The\040obedient\040children\040are\040the\040ones\040who\040are\040not\040conformed\040to\040the\040passions\040of\040our\040former\040ignorance}{section.6}% 208
\BOOKMARK [3][-]{subsubsection.6.5.1}{Jesus\040Christ\040has\040explained\040what\040the\040faith\040of\040Abraham\040looks\040like\040for\040someone\040who\040believes\040in\040Him}{subsection.6.5}% 209
\BOOKMARK [2][-]{subsection.6.6}{Get\040to\040know\040Jesus\040by\040following\040His\040commandments}{section.6}% 210
\BOOKMARK [2][-]{subsection.6.7}{The\040sons\040of\040disobedience\040are\040the\040ones\040who\040are\040conformed\040to\040sexual\040immorality,\040impurity,\040or\040covetousness,\040etc.}{section.6}% 211
\BOOKMARK [3][-]{subsubsection.6.7.1}{All\040sin\040is\040lawlessness}{subsection.6.7}% 212
\BOOKMARK [1][-]{section.7}{Try\040to\040clarify\040what\040sin\040looks\040like\040from\040Bible\040verses}{}% 213
\BOOKMARK [2][-]{subsection.7.1}{Iniquity\040and\040sin:\040In\040this\040case,\040sin\040is\040the\040verb,\040I\040think,\040and\040iniquity\040is\040the\040noun}{section.7}% 214
\BOOKMARK [2][-]{subsection.7.2}{God\040searches\040the\040heart\040and\040tests\040the\040mind}{section.7}% 215
\BOOKMARK [2][-]{subsection.7.3}{The\040law\040is\040laid\040down\040for\040the\040sinners}{section.7}% 216
\BOOKMARK [2][-]{subsection.7.4}{Whoever\040transgresses\040the\040law\040is\040liable\040to\040judgement}{section.7}% 217
\BOOKMARK [2][-]{subsection.7.5}{Anger\040leads\040to\040the\040matter\040being\040settled\040in\040God's\040court}{section.7}% 218
\BOOKMARK [2][-]{subsection.7.6}{Sin\040-\040what\040does\040it\040look\040like}{section.7}% 219
\BOOKMARK [3][-]{subsubsection.7.6.1}{Transgressing\040the\04010\040Commandments}{subsection.7.6}% 220
\BOOKMARK [3][-]{subsubsection.7.6.2}{Having\040a\040will\040to\040do\040evil,\040rather\040than\040a\040will\040to\040do\040God's\040will}{subsection.7.6}% 221
\BOOKMARK [3][-]{subsubsection.7.6.3}{All\040manner\040of\040unrighteousness}{subsection.7.6}% 222
\BOOKMARK [3][-]{subsubsection.7.6.4}{Murder}{subsection.7.6}% 223
\BOOKMARK [3][-]{subsubsection.7.6.5}{Theft}{subsection.7.6}% 224
\BOOKMARK [3][-]{subsubsection.7.6.6}{Rejecting\040the\040word\040of\040the\040LORD}{subsection.7.6}% 225
\BOOKMARK [3][-]{subsubsection.7.6.7}{Presumption\040and\040going\040beyond\040the\040Scripture}{subsection.7.6}% 226
\BOOKMARK [3][-]{subsubsection.7.6.8}{Wandering\040/\040backsliding\040from\040God}{subsection.7.6}% 227
\BOOKMARK [3][-]{subsubsection.7.6.9}{Prophesying\040lies}{subsection.7.6}% 228
\BOOKMARK [3][-]{subsubsection.7.6.10}{Ungodliness}{subsection.7.6}% 229
\BOOKMARK [3][-]{subsubsection.7.6.11}{Pride,\040debauchery,\040greed}{subsection.7.6}% 230
\BOOKMARK [3][-]{subsubsection.7.6.12}{Pride\040in\040self\040and\040lack\040of\040humility\040towards\040God}{subsection.7.6}% 231
\BOOKMARK [3][-]{subsubsection.7.6.13}{Discouraging\040the\040righteous,\040encouraging\040the\040wicked,\040even\040to\040misguide\040them\040to\040harm}{subsection.7.6}% 232
\BOOKMARK [3][-]{subsubsection.7.6.14}{Dishonesty}{subsection.7.6}% 233
\BOOKMARK [3][-]{subsubsection.7.6.15}{Lies\040and\040adultery}{subsection.7.6}% 234
\BOOKMARK [3][-]{subsubsection.7.6.16}{Iniquity}{subsection.7.6}% 235
\BOOKMARK [3][-]{subsubsection.7.6.17}{Profaning\040what\040is\040holy}{subsection.7.6}% 236
\BOOKMARK [3][-]{subsubsection.7.6.18}{Blasphemy}{subsection.7.6}% 237
\BOOKMARK [3][-]{subsubsection.7.6.19}{Lawlessness\040is\040sin\040-\040unresponsive\040and\040disobedient\040to\040God}{subsection.7.6}% 238
\BOOKMARK [3][-]{subsubsection.7.6.20}{Rebellion\040against\040God\040is\040sin}{subsection.7.6}% 239
\BOOKMARK [3][-]{subsubsection.7.6.21}{Not\040caring\040for\040the\040innocent}{subsection.7.6}% 240
\BOOKMARK [3][-]{subsubsection.7.6.22}{Doing\040evil\040deeds\040is\040sin}{subsection.7.6}% 241
\BOOKMARK [3][-]{subsubsection.7.6.23}{unjust\040gain}{subsection.7.6}% 242
\BOOKMARK [3][-]{subsubsection.7.6.24}{dishonesty}{subsection.7.6}% 243
\BOOKMARK [3][-]{subsubsection.7.6.25}{idolatry}{subsection.7.6}% 244
\BOOKMARK [3][-]{subsubsection.7.6.26}{sexual\040immorality}{subsection.7.6}% 245
\BOOKMARK [3][-]{subsubsection.7.6.27}{carnal,\040fleshly\040things,\040greed\040and\040self-indulgence}{subsection.7.6}% 246
\BOOKMARK [3][-]{subsubsection.7.6.28}{unnatural\040desire}{subsection.7.6}% 247
\BOOKMARK [3][-]{subsubsection.7.6.29}{Rape\040is\040very,\040very\040bad}{subsection.7.6}% 248
\BOOKMARK [3][-]{subsubsection.7.6.30}{Being\040habitually\040drunk\040is\040sinful}{subsection.7.6}% 249
\BOOKMARK [3][-]{subsubsection.7.6.31}{Abortion}{subsection.7.6}% 250
\BOOKMARK [3][-]{subsubsection.7.6.32}{More\040sins\040condemned\040by\040the\040early\040Church}{subsection.7.6}% 251
\BOOKMARK [1][-]{section.8}{If\040the\040world\040is\040encouraging\040you,\040you're\040probably\040in\040falsehood\040or\040taking\040the\040wide\040road}{}% 252
\BOOKMARK [1][-]{section.9}{The\040times\040of\040ignorance\040are\040past}{}% 253
\BOOKMARK [1][-]{section.10}{Common\040grace}{}% 254
\BOOKMARK [1][-]{section.11}{Justification\040-\040declared\040'not\040guilty',\040if\040in\040Christ\040Jesus}{}% 255
\BOOKMARK [2][-]{subsection.11.1}{We\040must\040live\040by\040faith\040-\040live\040by\040obedience\040to\040God!}{section.11}% 256
\BOOKMARK [2][-]{subsection.11.2}{We\040must\040be\040found\040in\040Jesus}{section.11}% 257
\BOOKMARK [2][-]{subsection.11.3}{The\040ones\040who\040are\040in\040Jesus\040have\040been\040called\040out\040of\040darkness\040and\040into\040His\040light}{section.11}% 258
\BOOKMARK [2][-]{subsection.11.4}{Sanctification\040\(turning\040from\040sin\040and\040being\040cleaned\)\040is\040a\040marker\040of\040those\040who\040are\040in\040Jesus}{section.11}% 259
\BOOKMARK [2][-]{subsection.11.5}{We\040are\040justified\040by\040faith\040in\040God\040who\040delivered\040up\040for\040our\040trespasses\040and\040raised\040Jesus\040Christ\040from\040the\040dead\040for\040our\040justification}{section.11}% 260
\BOOKMARK [2][-]{subsection.11.6}{Justified\040by\040our\040words}{section.11}% 261
\BOOKMARK [2][-]{subsection.11.7}{Justified\040by\040grace}{section.11}% 262
\BOOKMARK [3][-]{subsubsection.11.7.1}{Justified\040by\040faith\040following\040Jesus}{subsection.11.7}% 263
\BOOKMARK [3][-]{subsubsection.11.7.2}{When\040James\040mentions\040"justification\040by\040works",\040he\040actually\040is\040referring\040to\040justification\040by\040obedient\040faith\040\(obedient\040faith\040is\040still\040faith\)}{subsection.11.7}% 264
\BOOKMARK [3][-]{subsubsection.11.7.3}{Justified\040by\040the\040blood\040of\040Jesus,\040received\040through\040faith\040in\040Jesus\040Christ\040as\040Lord}{subsection.11.7}% 265
\BOOKMARK [3][-]{subsubsection.11.7.4}{Believing\040the\040Word\040of\040Truth\040-\040sealed\040with\040the\040promised\040Holy\040Spirit}{subsection.11.7}% 266
\BOOKMARK [2][-]{subsection.11.8}{Faith,\040Law,\040Works}{section.11}% 267
\BOOKMARK [3][-]{subsubsection.11.8.1}{Love\040is\040defined\040by\040Jesus}{subsection.11.8}% 268
\BOOKMARK [3][-]{subsubsection.11.8.2}{Christians\040are\040not\040under\040the\040Mosaic\040law\040because\040we\040are\040under\040grace\040as\040we\040are\040under\040Christ's\040law,\040but\040we\040don't\040despise\040the\040Torah,\040nor\040annul\040it,\040nor\040teach\040others\040to\040annul\040it}{subsection.11.8}% 269
\BOOKMARK [3][-]{subsubsection.11.8.3}{Faith\040in\040Jesus\040Christ\040doesn't\040exclude\040obedience.\040Knowing\040Jesus\040is\040more\040than\040knowing\040about\040Jesus.\040About\040the\040Galatian\040error\040for\040those\040who\040try\040to\040use\040this\040passage\040in\040order\040to\040avoid\040obeying\040Jesus}{subsection.11.8}% 270
\BOOKMARK [3][-]{subsubsection.11.8.4}{Didache}{subsection.11.8}% 271
\BOOKMARK [3][-]{subsubsection.11.8.5}{Our\040point\040of\040reference}{subsection.11.8}% 272
\BOOKMARK [3][-]{subsubsection.11.8.6}{Purity\040of\040heart}{subsection.11.8}% 273
\BOOKMARK [3][-]{subsubsection.11.8.7}{We\040should\040align\040our\040hearts\040and\040minds\040to\040God's\040precepts,\040not\040submit\040to\040worldly\040precepts\040which\040are\040fictions}{subsection.11.8}% 274
\BOOKMARK [3][-]{subsubsection.11.8.8}{We\040must\040cleanse\040ourself\040of\040defilement\040if\040we\040want\040God\040to\040use\040us\040more,\040and\040if\040we\040want\040to\040see\040with\040faith\040and\040hear\040God\040more\040clearly}{subsection.11.8}% 275
\BOOKMARK [3][-]{subsubsection.11.8.9}{Impurity\040lies\040the\040heart}{subsection.11.8}% 276
\BOOKMARK [3][-]{subsubsection.11.8.10}{Purifying\040the\040heart\040and\040the\040soul}{subsection.11.8}% 277
\BOOKMARK [3][-]{subsubsection.11.8.11}{Being\040a\040slave\040to\040righteousness\040is\040possible\040without\040adhering\040to\040the\040Mosaic\040law,\040by\040being\040led\040by\040Jesus'\040Spirit}{subsection.11.8}% 278
\BOOKMARK [3][-]{subsubsection.11.8.12}{If\040a\040person\040is\040led\040by\040the\040Spirit\040then\040the\040Lord\040Jesus\040is\040in\040control\040of\040their\040life,\040which\040means\040that\040person\040obeys\040Jesus'\040commandments:}{subsection.11.8}% 279
\BOOKMARK [3][-]{subsubsection.11.8.13}{We\040must\040have\040attention\040to\040Jesus\040Christ\040our\040Lord}{subsection.11.8}% 280
\BOOKMARK [3][-]{subsubsection.11.8.14}{Make\040the\040tree\040good\040and\040the\040fruit\040good}{subsection.11.8}% 281
\BOOKMARK [3][-]{subsubsection.11.8.15}{Judgement}{subsection.11.8}% 282
\BOOKMARK [3][-]{subsubsection.11.8.16}{Our\040Lord\040is\040the\040Son\040of\040Man,\040and\040we\040should\040be\040ready\040and\040on\040alert}{subsection.11.8}% 283
\BOOKMARK [3][-]{subsubsection.11.8.17}{I\040believe\040I\040was\040saved\040and\040born-again\040by\040seeking\040Jesus\040and\040calling\040on\040the\040name\040of\040the\040Lord}{subsection.11.8}% 284
\BOOKMARK [3][-]{subsubsection.11.8.18}{We\040should\040not\040rebel\040against\040the\040law\040-\040but\040we\040should\040obey\040the\040truth\040in\040truth}{subsection.11.8}% 285
\BOOKMARK [1][-]{section.12}{Faith\040requires\040obedience}{}% 286
\BOOKMARK [2][-]{subsection.12.1}{The\040obedient\040children\040are\040the\040ones\040who\040are\040not\040conformed\040to\040the\040passions\040of\040our\040former\040ignorance}{section.12}% 287
\BOOKMARK [2][-]{subsection.12.2}{The\040sons\040of\040disobedience\040are\040the\040ones\040who\040are\040conformed\040to\040sexual\040immorality,\040impurity,\040or\040covetousness,\040etc.}{section.12}% 288
\BOOKMARK [2][-]{subsection.12.3}{Get\040to\040know\040Jesus\040by\040following\040His\040commandments}{section.12}% 289
\BOOKMARK [1][-]{section.13}{True\040religion}{}% 290
\BOOKMARK [1][-]{section.14}{Repentance\040from\040sin}{}% 291
\BOOKMARK [2][-]{subsection.14.1}{Parable\040of\040the\040prodigal\040son\040-\040God's\040joy\040over\040a\040sinner\040that\040repents\040from\040sin}{section.14}% 292
\BOOKMARK [1][-]{section.15}{Obtain\040a\040faith\040of\040equal\040standing\040with\040the\040Apostles\040by\040the\040righteousness\040of\040our\040God\040and\040Savior\040Jesus\040Christ}{}% 293
\BOOKMARK [2][-]{subsection.15.1}{Knowing\040and\040being\040found\040in\040Christ\040Jesus\040is\040what\040it's\040all\040about}{section.15}% 294
\BOOKMARK [2][-]{subsection.15.2}{There\040is\040no\040salvation\040without\040repentance\040-\040we\040must\040turn\040away\040from\040sin}{section.15}% 295
\BOOKMARK [2][-]{subsection.15.3}{We\040must\040believe\040the\040truth,\040forsake\040sin,\040and\040live\040to\040righteousness}{section.15}% 296
\BOOKMARK [3][-]{subsubsection.15.3.1}{Holiness}{subsection.15.3}% 297
\BOOKMARK [3][-]{subsubsection.15.3.2}{Personal\040'holiness'\040/\040'righteousness'\040\(i.e.\040devotion\040to\040Christ\)}{subsection.15.3}% 298
\BOOKMARK [3][-]{subsubsection.15.3.3}{We\040approach\040Christ's\040very\040image}{subsection.15.3}% 299
\BOOKMARK [3][-]{subsubsection.15.3.4}{Repentance:\040Put\040off\040the\040old\040self}{subsection.15.3}% 300
\BOOKMARK [3][-]{subsubsection.15.3.5}{Put\040on\040the\040new\040self:\040Christ-likeness}{subsection.15.3}% 301
\BOOKMARK [3][-]{subsubsection.15.3.6}{What\040must\040be\040believe,\040and\040what\040we\040must\040do:\040Walk\040in\040truth\040and\040love\040the\040way\040Jesus\040has\040commanded\040us}{subsection.15.3}% 302
\BOOKMARK [3][-]{subsubsection.15.3.7}{Come\040to\040the\040knowledge\040of\040the\040truth}{subsection.15.3}% 303
\BOOKMARK [3][-]{subsubsection.15.3.8}{Identity\040in\040Christ}{subsection.15.3}% 304
\BOOKMARK [3][-]{subsubsection.15.3.9}{Become\040what\040we\040are\040by\040identity\040-\040put\040to\040death\040the\040old\040leaven}{subsection.15.3}% 305
\BOOKMARK [1][-]{section.16}{Sanctification}{}% 306
\BOOKMARK [2][-]{subsection.16.1}{Allow\040myself\040to\040be\040corrected}{section.16}% 307
\BOOKMARK [3][-]{subsubsection.16.1.1}{The\040Holy\040Spirit\040will\040teach\040you}{subsection.16.1}% 308
\BOOKMARK [2][-]{subsection.16.2}{Be\040corrected\040by\040the\040truth}{section.16}% 309
\BOOKMARK [2][-]{subsection.16.3}{Repent\040of\040evil\040deeds,\040feelings\040and\040thoughts}{section.16}% 310
\BOOKMARK [2][-]{subsection.16.4}{Renew\040our\040minds}{section.16}% 311
\BOOKMARK [2][-]{subsection.16.5}{Be\040qualified\040regarding\040the\040faith\040-\040renewed\040in\040mind,\040not\040opposing\040the\040truth}{section.16}% 312
\BOOKMARK [3][-]{subsubsection.16.5.1}{Set\040our\040mind\040on\040heavenly\040things,\040not\040earthly\040things}{subsection.16.5}% 313
\BOOKMARK [2][-]{subsection.16.6}{Put\040a\040stop\040to\040sin\040and\040practice\040personal\040righteousness}{section.16}% 314
\BOOKMARK [2][-]{subsection.16.7}{Sanctification\040by\040the\040Spirit\040and\040faith\040/\040obedience}{section.16}% 315
\BOOKMARK [2][-]{subsection.16.8}{God\040is\040the\040source\040of\040our\040life\040in\040Christ\040Jesus.\040Jesus\040is\040the\040source\040of\040our\040wisdom\040and\040righteousness\040and\040sanctification\040and\040redemption}{section.16}% 316
\BOOKMARK [3][-]{subsubsection.16.8.1}{We\040only\040boast\040in\040Christ\040Jesus,\040since\040He\040is\040our\040wisdom,\040righteousness,\040sanctification\040and\040redemption}{subsection.16.8}% 317
\BOOKMARK [3][-]{subsubsection.16.8.2}{Filled\040with\040the\040fruit\040of\040righteousness\040that\040comes\040through\040Jesus\040Christ,\040to\040the\040glory\040and\040praise\040of\040God}{subsection.16.8}% 318
\BOOKMARK [2][-]{subsection.16.9}{Sanctification\040is\040being\040cleaned\040from\040sin\040and\040brought\040into\040believing\040and\040practicing\040truth}{section.16}% 319
\BOOKMARK [3][-]{subsubsection.16.9.1}{Corruption\040remains\040a\040problem\040even\040for\040the\040regenerated}{subsection.16.9}% 320
\BOOKMARK [3][-]{subsubsection.16.9.2}{Bad\040desire\040-\040leads\040to\040death.\040We\040do\040not\040want\040to\040be\040enslaved\040to\040corruption}{subsection.16.9}% 321
\BOOKMARK [3][-]{subsubsection.16.9.3}{Good\040desire\040-\040Love\040God\040and\040one's\040neighbour}{subsection.16.9}% 322
\BOOKMARK [1][-]{section.17}{Clearing\040up\040justifying\040faith\040vs\040justifying\040works\040-\040It's\040faith\040in\040Jesus\040Himself\040that\040matters.\040Also,\040it's\040God\040who\040justifies\040us,\040not\040we\040who\040justify\040ourselves.\040We\040have\040faith\040in\040God\040to\040justify\040us,\040as\040we\040place\040our\040faith\040in\040Him}{}% 323
\BOOKMARK [2][-]{subsubsection.17.0.1}{Salvation\040by\040obedience}{section.17}% 324
\BOOKMARK [2][-]{subsection.17.1}{Walking\040in\040trusting\040faith\040in\040Jesus}{section.17}% 325
\BOOKMARK [3][-]{subsubsection.17.1.1}{To\040be\040"under\040the\040law"\040is\040to\040"rely"\040on\040your\040own\040perfect\040obedience\040to\040the\040law\040for\040justification,\040life\040and\040salvation}{subsection.17.1}% 326
\BOOKMARK [3][-]{subsubsection.17.1.2}{I\040affirm\040we\040are\040free\040in\040Christ\040Jesus,\040enslaved\040to\040God,\040and\040have\040victory\040over\040death}{subsection.17.1}% 327
\BOOKMARK [2][-]{subsection.17.2}{God\040justifies\040even\040ungodly\040people\040who\040have\040faith\040in\040Jesus}{section.17}% 328
\BOOKMARK [2][-]{subsection.17.3}{Obedient\040action\040including\040seeking\040God\040in\040faith\040\(trusting\040God's\040words\040and\040seeking\)}{section.17}% 329
\BOOKMARK [2][-]{subsection.17.4}{Obedience\040belongs\040in\040faith}{section.17}% 330
\BOOKMARK [2][-]{subsection.17.5}{The\040type\040of\040work\040that\040is\040good\040-\040works\040done\040in\040faith}{section.17}% 331
\BOOKMARK [3][-]{subsubsection.17.5.1}{Since\040Jesus\040has\040made\040the\040way,\040we\040serve\040God\040with\040good\040works.\040We\040have\040received\040mercy.\040We\040should\040then\040be\040merciful:}{subsection.17.5}% 332
\BOOKMARK [3][-]{subsubsection.17.5.2}{Works\040must\040serve\040God,\040submitted\040to\040the\040righteousness\040that\040comes\040from\040God}{subsection.17.5}% 333
\BOOKMARK [2][-]{subsection.17.6}{Dead\040works:\040The\040type\040of\040work\040that's\040bad}{section.17}% 334
\BOOKMARK [3][-]{subsubsection.17.6.1}{Works\040of\040the\040law\040are\040dead\040works.\040God\040always\040desired\040us\040to\040serve\040Him\040with\040mercy}{subsection.17.6}% 335
\BOOKMARK [2][-]{subsection.17.7}{Working\040faith}{section.17}% 336
\BOOKMARK [3][-]{subsubsection.17.7.1}{Faith\040in\040Jesus\040Himself}{subsection.17.7}% 337
\BOOKMARK [3][-]{subsubsection.17.7.2}{Faith\040is\040faithful,\040humble,\040and\040enduring\040-\040it's\040active\040and\040enduring\040faithfulness\040to\040God\040in\040humility}{subsection.17.7}% 338
\BOOKMARK [3][-]{subsubsection.17.7.3}{Jesus's\040Lordship\040is\040not\040merely\040His\040authority\040over\040us,\040but\040us\040yielding\040our\040lives\040to\040Jesus\040-\040us\040wanting\040to\040do\040His\040will,\040and\040us\040wanting\040to\040obey\040Him}{subsection.17.7}% 339
\BOOKMARK [3][-]{subsubsection.17.7.4}{Lordship\040salvation\040and\040free\040grace\040-\040an\040apparent\040paradox}{subsection.17.7}% 340
\BOOKMARK [3][-]{subsubsection.17.7.5}{God\040desired\040to\040give\040assurance\040to\040the\040heirs\040of\040the\040promise}{subsection.17.7}% 341
\BOOKMARK [3][-]{subsubsection.17.7.6}{Yield\040to\040God}{subsection.17.7}% 342
\BOOKMARK [3][-]{subsubsection.17.7.7}{Obey\040God\040and\040let\040Him\040save\040you}{subsection.17.7}% 343
\BOOKMARK [3][-]{subsubsection.17.7.8}{The\040work\040of\040God\040is\040to\040trust\040in\040who\040He\040has\040sent,\040Jesus.\040God's\040work\040is\040God\040working,\040and\040us\040working\040in\040obedience\040to\040God}{subsection.17.7}% 344
\BOOKMARK [3][-]{subsubsection.17.7.9}{Don't\040underestimate\040Jesus'\040saving\040power}{subsection.17.7}% 345
\BOOKMARK [3][-]{subsubsection.17.7.10}{Justification\040and\040redemption\040are\040a\040total\040gift}{subsection.17.7}% 346
\BOOKMARK [3][-]{subsubsection.17.7.11}{Just\040believe/obey\040Jesus\040to\040receive\040more\040faith\040and\040revelation\040and\040salvation}{subsection.17.7}% 347
\BOOKMARK [3][-]{subsubsection.17.7.12}{The\040obedience\040of\040faith}{subsection.17.7}% 348
\BOOKMARK [1][-]{section.18}{Faith\040in\040God}{}% 349
\BOOKMARK [2][-]{subsection.18.1}{Only\040with\040God\040are\040all\040things\040possible\040for\040one\040who\040believes.\040Our\040faith\040must\040be\040faith\040'with\040God',\040and\040our\040faith\040should\040in\040accordance\040with\040His\040will}{section.18}% 350
\BOOKMARK [3][-]{subsubsection.18.1.1}{We\040should\040have\040faith\040for\040what\040is\040according\040to\040His\040will}{subsection.18.1}% 351
\BOOKMARK [2][-]{subsection.18.2}{Faith\040should\040be\040built\040up\040on\040trusting\040the\040Word\040of\040God}{section.18}% 352
\BOOKMARK [2][-]{subsection.18.3}{We\040should\040have\040minds\040that,\040by\040testing,\040we\040can\040discern\040the\040will\040of\040God,\040and\040act\040in\040faith\040according\040to\040God's\040will\040as\040far\040as\040we\040can\040discern}{section.18}% 353
\BOOKMARK [2][-]{subsection.18.4}{Faith\040that\040has\040been\040built\040up\040in\040God's\040will\040produces\040miracles}{section.18}% 354
\BOOKMARK [2][-]{subsection.18.5}{This\040man\040trusted\040Jesus'\040word\040and\040acted\040on\040it\040-\040He\040had\040faith\040in\040Jesus}{section.18}% 355
\BOOKMARK [2][-]{subsection.18.6}{This\040man\040had\040faith\040to\040be\040made\040well.\040Paul\040the\040Apostle\040was\040also\040acting\040in\040faith}{section.18}% 356
\BOOKMARK [2][-]{subsection.18.7}{Jesus,\040with\040compassion\040for\040the\040man,\040and\040faith\040in\040God,\040sternly\040commanded\040the\040unclean\040spirit\040to\040leave}{section.18}% 357
\BOOKMARK [2][-]{subsection.18.8}{healing\040/\040deliverance\040ministries}{section.18}% 358
\BOOKMARK [3][-]{subsubsection.18.8.1}{I\040feel\040like\040we\040should\040have\040compassion\040when\040we\040are\040serving\040others,\040even\040in\040healing\040/\040deliverance\040ministries}{subsection.18.8}% 359
\BOOKMARK [2][-]{subsection.18.9}{Deliverance}{section.18}% 360
\BOOKMARK [3][-]{subsubsection.18.9.1}{A\040simple\040command\040should\040work,\040with\040faith}{subsection.18.9}% 361
\BOOKMARK [3][-]{subsubsection.18.9.2}{We\040can\040and\040should\040use\040Jesus'\040name\040to\040cast\040out\040demons\040-\040There\040is\040power\040in\040the\040name\040of\040Jesus}{subsection.18.9}% 362
\BOOKMARK [3][-]{subsubsection.18.9.3}{Christians\040can\040be\040afflicted\040by\040demons}{subsection.18.9}% 363
\BOOKMARK [3][-]{subsubsection.18.9.4}{Deliverance\040on\040oneself\040\(according\040to\040Derek\040Prince\)}{subsection.18.9}% 364
\BOOKMARK [3][-]{subsubsection.18.9.5}{Using\040Jesus'\040name\040with\040faith}{subsection.18.9}% 365
\BOOKMARK [3][-]{subsubsection.18.9.6}{Why\040some\040people\040are\040not\040delivered\040\(according\040to\040Derek\040Prince\)}{subsection.18.9}% 366
\BOOKMARK [3][-]{subsubsection.18.9.7}{How\040to\040keep\040your\040deliverance}{subsection.18.9}% 367
\BOOKMARK [3][-]{subsubsection.18.9.8}{Prayer\040by\040Derek\040Prince}{subsection.18.9}% 368
\BOOKMARK [2][-]{subsection.18.10}{Deliverance/exorcism}{section.18}% 369
\BOOKMARK [3][-]{subsubsection.18.10.1}{Good\040songs\040for\040getting\040rid\040of\040demons\040\(speak\040the\040lyrics\040in\040your\040head\040or\040out\040loud,\040especially\040say\040them\040in\040your\040heart\)}{subsection.18.10}% 370
\BOOKMARK [3][-]{subsubsection.18.10.2}{We\040can\040rebuke\040the\040devil\040with\040Jesus'\040authority}{subsection.18.10}% 371
\BOOKMARK [3][-]{subsubsection.18.10.3}{Demons\040are\040not\040rare}{subsection.18.10}% 372
\BOOKMARK [3][-]{subsubsection.18.10.4}{Demons\040consider\040a\040persons'\040body\040their\040home}{subsection.18.10}% 373
\BOOKMARK [3][-]{subsubsection.18.10.5}{Renounce\040the\040ungodliness}{subsection.18.10}% 374
\BOOKMARK [3][-]{subsubsection.18.10.6}{This\040demon\040came\040out\040within\040the\040hour}{subsection.18.10}% 375
\BOOKMARK [3][-]{subsubsection.18.10.7}{This\040demon\040was\040resistant}{subsection.18.10}% 376
\BOOKMARK [3][-]{subsubsection.18.10.8}{All\040believers\040can\040cast\040out\040demons}{subsection.18.10}% 377
\BOOKMARK [3][-]{subsubsection.18.10.9}{We\040must\040be\040spiritually-minded,\040not\040earthly-minded}{subsection.18.10}% 378
\BOOKMARK [3][-]{subsubsection.18.10.10}{Exorcism\040prayer\040by\040Derek\040Prince}{subsection.18.10}% 379
\BOOKMARK [3][-]{subsubsection.18.10.11}{Prayer\040by\040Isaiah\040Saldivar}{subsection.18.10}% 380
\BOOKMARK [2][-]{subsection.18.11}{Faith\040requires\040obedience\040-\040i.e.\040acting\040in\040faith\040/\040living\040by\040faith}{section.18}% 381
\BOOKMARK [3][-]{subsubsection.18.11.1}{Work/Love/Walking-By-Faith}{subsection.18.11}% 382
\BOOKMARK [3][-]{subsubsection.18.11.2}{Fear-of-God}{subsection.18.11}% 383
\BOOKMARK [3][-]{subsubsection.18.11.3}{Faith\040vector\040illustration}{subsection.18.11}% 384
\BOOKMARK [1][-]{section.19}{Jesus\040has\040immortality\040and\040gives\040eternal\040life,\040but\040we\040must\040come\040to\040Him\040in\040obedience,\040and\040follow\040Him,\040to\040receive\040it}{}% 385
\BOOKMARK [2][-]{subsection.19.1}{Do\040not\040doubt,\040and\040believe\040that\040you\040have\040received\040it,\040even\040acting\040in\040a\040way\040in\040which\040it\040is\040already\040received}{section.19}% 386
\BOOKMARK [2][-]{subsection.19.2}{We\040work\040as\040servants\040of\040God,\040and\040the\040foundation\040of\040our\040work\040must\040be\040Jesus\040Christ}{section.19}% 387
\BOOKMARK [3][-]{subsubsection.19.2.1}{For\040Christ}{subsection.19.2}% 388
\BOOKMARK [2][-]{subsection.19.3}{Love}{section.19}% 389
\BOOKMARK [3][-]{subsubsection.19.3.1}{Love\040is\040doing\040what\040Jesus\040has\040said\040for\040us\040to\040do.\040Love\040is\040following\040the\040commandments}{subsection.19.3}% 390
\BOOKMARK [3][-]{subsubsection.19.3.2}{Almsgiving\040is\040a\040great\040practice\040-\040God\040really\040loves\040a\040cheerful\040giver}{subsection.19.3}% 391
\BOOKMARK [3][-]{subsubsection.19.3.3}{The\040person\040who\040loves\040their\040brother\040abides\040in\040light}{subsection.19.3}% 392
\BOOKMARK [2][-]{subsection.19.4}{Justifying\040faith\040should\040result\040in\040going\040from\040it\040being\040impossible\040to\040obey\040God\040to\040possible}{section.19}% 393
\BOOKMARK [3][-]{subsubsection.19.4.1}{Faith\040submits\040to\040God's\040will}{subsection.19.4}% 394
\BOOKMARK [3][-]{subsubsection.19.4.2}{The\040Mosaic\040law\040doesn't\040help\040people\040to\040keep\040the\040law.\040It\040doesn't\040save\040-\040it\040only\040condemns\040or\040justifies.\040Only\040grace\040through\040faith\040in\040God\040who\040raised\040Jesus\040from\040the\040dead\040saves}{subsection.19.4}% 395
\BOOKMARK [3][-]{subsubsection.19.4.3}{With\040God,\040following\040the\04010\040commandments\040and\040to\040love\040God\040and\040our\040neighbour\040is\040possible}{subsection.19.4}% 396
\BOOKMARK [2][-]{subsection.19.5}{Justifying\040faith\040should\040result\040in\040going\040from\040disobedient\040to\040obedient}{section.19}% 397
\BOOKMARK [2][-]{subsection.19.6}{Obedience\040is\040essential\040to\040justifying\040faith}{section.19}% 398
\BOOKMARK [2][-]{subsection.19.7}{Jesus'\040odedience\040resulted\040in\040turning\040others\040to\040obedience}{section.19}% 399
\BOOKMARK [3][-]{subsubsection.19.7.1}{Likewise,\040we\040are\040commanded\040to\040do\040the\040same}{subsection.19.7}% 400
\BOOKMARK [2][-]{subsection.19.8}{It\040is\040the\040mercy\040of\040God\040that\040we\040are\040turned\040from\040disobedience\040to\040obedience}{section.19}% 401
\BOOKMARK [3][-]{subsubsection.19.8.1}{As\040obedient\040children,\040we\040are\040to\040be\040conformed\040to\040holiness}{subsection.19.8}% 402
\BOOKMARK [3][-]{subsubsection.19.8.2}{Illegitimate\040children\040are\040left\040without\040discipline\040and\040are\040not\040sons}{subsection.19.8}% 403
\BOOKMARK [2][-]{subsection.19.9}{The\040measure\040of\040what\040we\040hear\040and\040take\040heed\040of\040and\040how\040we\040hear\040and\040let\040take\040root\040in\040us\040will\040be\040measured\040to\040us}{section.19}% 404
\BOOKMARK [1][-]{section.20}{Spirit\040of\040Truth\040vs\040Spirit\040of\040Error}{}% 405
\BOOKMARK [2][-]{subsection.20.1}{Don't\040believe\040falsehood}{section.20}% 406
\BOOKMARK [3][-]{subsubsection.20.1.1}{No\040lie\040is\040of\040the\040truth}{subsection.20.1}% 407
\BOOKMARK [3][-]{subsubsection.20.1.2}{Garden\040of\040Eden}{subsection.20.1}% 408
\BOOKMARK [2][-]{subsection.20.2}{Not\040all\040'spirit'\040is\040true}{section.20}% 409
\BOOKMARK [2][-]{subsection.20.3}{Spirit\040of\040Truth}{section.20}% 410
\BOOKMARK [3][-]{subsubsection.20.3.1}{Jesus\040is\040noticeably\040present\040with\040us\040as\040we\040believe\040and\040affirm\040and\040obey\040the\040Truth}{subsection.20.3}% 411
\BOOKMARK [3][-]{subsubsection.20.3.2}{God\040is\040not\040a\040God\040of\040confusion\040but\040of\040peace}{subsection.20.3}% 412
\BOOKMARK [3][-]{subsubsection.20.3.3}{We\040should\040listen\040to\040and\040obey\040Jesus'\040words\040and\040compare\040everything\040with\040the\040scripture}{subsection.20.3}% 413
\BOOKMARK [3][-]{subsubsection.20.3.4}{sola\040scriptura\040as\040the\040source\040of\040truth\040against\040false\040dreams\040and\040against\040lies}{subsection.20.3}% 414
\BOOKMARK [3][-]{subsubsection.20.3.5}{Do\040not\040associate\040with\040people\040who\040call\040themselves\040believers\040but\040are\040against\040sound\040doctrine}{subsection.20.3}% 415
\BOOKMARK [3][-]{subsubsection.20.3.6}{The\040criminal\040conviction\040has\040made\040it\040more\040difficult\040to\040support\040myself\040and\040other\040people\040in\040need}{subsection.20.3}% 416
\BOOKMARK [3][-]{subsubsection.20.3.7}{False\040adversaries\040and\040the\040real\040adversary}{subsection.20.3}% 417
\BOOKMARK [3][-]{subsubsection.20.3.8}{Jesus\040is\040giving\040us\040perspective.}{subsection.20.3}% 418
\BOOKMARK [3][-]{subsubsection.20.3.9}{Do\040God's\040will\040-\040follow\040Jesus\040in\040truth,\040and\040be\040obedient\040to\040God\040to\040combat\040falsehood}{subsection.20.3}% 419
\BOOKMARK [3][-]{subsubsection.20.3.10}{Pay\040attention\040to\040promptings\040from\040the\040Holy\040Spirit}{subsection.20.3}% 420
\BOOKMARK [2][-]{subsection.20.4}{Spirit\040of\040Error}{section.20}% 421
\BOOKMARK [3][-]{subsubsection.20.4.1}{Don't\040believe\040lies\040nor\040even\040listen\040to\040false\040dreams\040from\040false\040prophets\040and\040diviners}{subsection.20.4}% 422
\BOOKMARK [3][-]{subsubsection.20.4.2}{Heretical\040apocryphal\040'gospels'}{subsection.20.4}% 423
\BOOKMARK [2][-]{subsection.20.5}{Renovating\040vs\040Innovating}{section.20}% 424
\BOOKMARK [1][-]{section.21}{laws}{}% 425
\BOOKMARK [2][-]{subsection.21.1}{The\040law\040of\040Christ}{section.21}% 426
\BOOKMARK [2][-]{subsection.21.2}{Doing\040the\040law\040and\040doing\040faith\040in\040Jesus\040are\040compatible.\040And\040with\040faith\040in\040Jesus\040we\040still\040seek\040to\040do\040the\040law\040but\040our\040justification\040comes\040by\040our\040faith\040in\040Jesus\040not\040by\040law-keeping}{section.21}% 427
\BOOKMARK [2][-]{subsection.21.3}{The\040law\040of\040the\040Spirit\040of\040life\040vs\040law\040of\040sin\040and\040death}{section.21}% 428
\BOOKMARK [2][-]{subsection.21.4}{The\040Torah}{section.21}% 429
\BOOKMARK [1][-]{section.22}{Whoever\040puts\040their\040faith\040in\040Jesus,\040puts\040their\040faith\040in\040God}{}% 430
\BOOKMARK [1][-]{section.23}{As\040we\040hold\040our\040faith\040in\040Christ,\040living\040for\040Christ,\040we\040will\040not\040have\040to\040worry\040about\040perfect\040compliance\040to\040the\040law}{}% 431
\BOOKMARK [2][-]{subsection.23.1}{We\040should\040observe\040the\040law\040-\040but\040be\040a\040doer,\040and\040avoid\040judging\040others\040with\040the\040law}{section.23}% 432
\BOOKMARK [1][-]{section.24}{Mosaic\040Law,\040and\040progressing\040from\040having\040hope\040in\040Moses\040to\040having\040hope\040in\040Jesus}{}% 433
\BOOKMARK [1][-]{section.25}{Commandments\040and\040faith}{}% 434
\BOOKMARK [2][-]{subsubsection.25.0.1}{Christians\040do\040not\040Judaize\040\(Christians\040do\040not\040instruct\040Gentiles\040to\040conform\040to\040Judaism\)}{section.25}% 435
\BOOKMARK [3][-]{subsubsection.25.0.2}{Jesus'\040commandments\040don't\040contradict\040the\040rest\040of\040the\040commandments}{subsubsection.25.0.1}% 436
\BOOKMARK [3][-]{subsubsection.25.0.3}{However,\040we\040must\040submit\040to\040God's\040righteousness\040through\040faith\040in\040Jesus\040Christ\040-\040this\040is\040what\040saves}{subsubsection.25.0.1}% 437
\BOOKMARK [3][-]{subsubsection.25.0.4}{Abraham's\040faith\040is\040a\040pattern\040for\040us}{subsubsection.25.0.1}% 438
\BOOKMARK [3][-]{subsubsection.25.0.5}{Love\040never\040ends.\040Jesus'\040words\040never\040end.}{subsubsection.25.0.1}% 439
\BOOKMARK [3][-]{subsubsection.25.0.6}{The\040new\040heavens\040and\040new\040earth}{subsubsection.25.0.1}% 440
\BOOKMARK [3][-]{subsubsection.25.0.7}{Being\040sanctified\040in\040the\040Truth}{subsubsection.25.0.1}% 441
\BOOKMARK [3][-]{subsubsection.25.0.8}{A\040study\040on\040the\040pronunciation\040of\040Yhvh,\040the\040proper\040name\040of\040the\040God\040of\040Israel}{subsubsection.25.0.1}% 442
\BOOKMARK [3][-]{subsubsection.25.0.9}{The\040Mosaic\040law\040is\040not\040abolished\040but\040Jesus\040fulfilled\040it\040like\040a\040prophesy}{subsubsection.25.0.1}% 443
\BOOKMARK [3][-]{subsubsection.25.0.10}{A\040person\040must\040begin\040repenting\040of\040sin\040and\040have\040a\040faithful\040heart\040towards\040God\040to\040receive\040the\040Holy\040Spirit}{subsubsection.25.0.1}% 444
\BOOKMARK [3][-]{subsubsection.25.0.11}{I\040believe\040the\04010\040commandments\040are\040special,\040and\040Jesus\040calls\040us\040to\040follow\040them\040from\040the\040heart}{subsubsection.25.0.1}% 445
\BOOKMARK [3][-]{subsubsection.25.0.12}{The\040Apostles\040also\040placed\040requirements\040on\040the\040Gentiles\040similar\040to\040the\04010\040commandments}{subsubsection.25.0.1}% 446
\BOOKMARK [3][-]{subsubsection.25.0.13}{Faith\040in\040Jesus\040justifies\040but\040Jesus\040helps\040us\040to\040follow\040the\040commandments}{subsubsection.25.0.1}% 447
\BOOKMARK [3][-]{subsubsection.25.0.14}{Grace\040from\040Jesus\040is\040essential.\040Faith\040in\040Jesus\040is\040essential,\040even\040for\040the\040one\040who\040pursues\040the\040law}{subsubsection.25.0.1}% 448
\BOOKMARK [3][-]{subsubsection.25.0.15}{The\040doers\040of\040the\040law\040are\040justified.\040Jesus\040judges.\040No-one\040can\040be\040justified\040without\040faith}{subsubsection.25.0.1}% 449
\BOOKMARK [3][-]{subsubsection.25.0.16}{I\040still\040think\040there\040is\040hope\040for\040people\040who\040do\040what\040the\040law\040requires,\040and\040have\040not\040yet\040heard\040the\040gospel}{subsubsection.25.0.1}% 450
\BOOKMARK [3][-]{subsubsection.25.0.17}{Faith\040in\040Jesus\040essential\040to\040even\040those\040who\040pursue\040the\040law,\040but\040the\040law\040is\040still\040pursued}{subsubsection.25.0.1}% 451
\BOOKMARK [1][-]{section.26}{The\040Old\040Testament\040makes\040a\040person\040wise\040for\040salvation\040through\040faith\040in\040Christ\040Jesus,\040and\040is\040profitable\040for\040training\040in\040righteousness:}{}% 452
\BOOKMARK [1][-]{section.27}{Jesus\040allowed\040himself\040to\040be\040baptised\040by\040John\040for\040the\040fulfillment\040of\040all\040righteousness}{}% 453
\BOOKMARK [1][-]{section.28}{Jesus\040fulfilled\040the\040law}{}% 454
\BOOKMARK [2][-]{subsection.28.1}{Don't\040be\040deceived:\040Keeping\040commandments\040isn't\040the\040same\040thing\040as\040placing\040oneself\040under\040the\040Mosaic\040law\040for\040justification.\040We're\040commanded\040to\040obey\040Jesus,\040and\040that\040matters}{section.28}% 455
\BOOKMARK [2][-]{subsection.28.2}{Justified\040by\040faith\040alone\040-\040faith\040is\040obedient}{section.28}% 456
\BOOKMARK [2][-]{subsection.28.3}{Friends\040of\040God\040obey\040God}{section.28}% 457
\BOOKMARK [3][-]{subsubsection.28.3.1}{The\040love\040of\040the\040truth\040involves\040sanctification}{subsection.28.3}% 458
\BOOKMARK [2][-]{subsection.28.4}{Dead\040faith\040is\040disobedient}{section.28}% 459
\BOOKMARK [3][-]{subsubsection.28.4.1}{We\040were\040disobedient}{subsection.28.4}% 460
\BOOKMARK [3][-]{subsubsection.28.4.2}{We\040are\040brought\040to\040obedience}{subsection.28.4}% 461
\BOOKMARK [3][-]{subsubsection.28.4.3}{The\040disobedient\040will\040receive\040the\040wrath\040of\040God}{subsection.28.4}% 462
\BOOKMARK [2][-]{subsection.28.5}{Saving\040faith}{section.28}% 463
\BOOKMARK [3][-]{subsubsection.28.5.1}{believing\040on\040Jesus}{subsection.28.5}% 464
\BOOKMARK [3][-]{subsubsection.28.5.2}{by\040the\040grace\040of\040God\040alone\040-\040no\040works}{subsection.28.5}% 465
\BOOKMARK [3][-]{subsubsection.28.5.3}{fear\040of\040God\040as\040a\040friend\040of\040God}{subsection.28.5}% 466
\BOOKMARK [3][-]{subsubsection.28.5.4}{a\040life\040of\040faith}{subsection.28.5}% 467
\BOOKMARK [3][-]{subsubsection.28.5.5}{Saving\040faith\040/\040Works\040of\040faith\040/\040Faith\040with\040works}{subsection.28.5}% 468
\BOOKMARK [3][-]{subsubsection.28.5.6}{Salvation\040is\040through\040grace\040alone,\040but\040through\040sanctification\040by\040the\040Spirit\040and\040faith\040in\040the\040truth,\040which\040is\040cooperative}{subsection.28.5}% 469
\BOOKMARK [2][-]{subsection.28.6}{Working\040faith\040/\040faith\040with\040substance}{section.28}% 470
\BOOKMARK [1][-]{section.29}{We\040must\040love\040God}{}% 471
\BOOKMARK [2][-]{subsection.29.1}{We\040must\040agape\040love\040God,\040we\040must\040agape\040people\040and\040we\040must\040not\040agape\040the\040things\040of\040the\040world}{section.29}% 472
\BOOKMARK [2][-]{subsection.29.2}{We\040must\040love\040Jesus}{section.29}% 473
\BOOKMARK [2][-]{subsection.29.3}{What's\040the\040relationship\040between\040loving\040God\040and\040loving\040Jesus?}{section.29}% 474
\BOOKMARK [2][-]{subsection.29.4}{What\040is\040the\040nature\040of\040this\040love?}{section.29}% 475
\BOOKMARK [3][-]{subsubsection.29.4.1}{It's\040affectionate\040and\040treasuring}{subsection.29.4}% 476
\BOOKMARK [3][-]{subsubsection.29.4.2}{Heavenly\040treasure\040and\040the\040Pearl\040of\040Great\040Price}{subsection.29.4}% 477
\BOOKMARK [3][-]{subsubsection.29.4.3}{We\040need\040to\040treasure\040Jesus,\040and\040from\040there\040we\040should\040keep\040Jesus'\040commandments.\040Jesus\040must\040be\040our\040number\0401}{subsection.29.4}% 478
\BOOKMARK [3][-]{subsubsection.29.4.4}{The\040person\040who\040has\040Jesus'\040commandments\040and\040keeps\040them,\040loves\040Jesus}{subsection.29.4}% 479
\BOOKMARK [3][-]{subsubsection.29.4.5}{If\040we\040love\040Jesus,\040then\040we\040will\040keep\040Jesus'\040commandments}{subsection.29.4}% 480
\BOOKMARK [2][-]{subsection.29.5}{How\040do\040we\040get\040to\040this\040place\040of\040treasuring\040Jesus?}{section.29}% 481
\BOOKMARK [2][-]{subsection.29.6}{If\040we\040don't\040love\040Jesus,\040we\040wont\040have\040Jesus}{section.29}% 482
\BOOKMARK [1][-]{section.30}{Kingdom\040of\040Servants}{}% 483
\BOOKMARK [2][-]{subsection.30.1}{Being\040washed\040and\040washing\040one\040another}{section.30}% 484
\BOOKMARK [2][-]{subsection.30.2}{Entering\040into\040life\040/\040the\040Kingdom\040of\040Heaven}{section.30}% 485
\BOOKMARK [2][-]{subsection.30.3}{Guideline}{section.30}% 486
\BOOKMARK [3][-]{subsubsection.30.3.1}{We\040practice\040personal\040righteousness\040AND\040we\040have\040obtained\040a\040faith\040of\040equal\040standing\040with\040the\040Apostles\040by\040the\040righteousness\040of\040our\040God\040and\040Savior\040Jesus\040Christ}{subsection.30.3}% 487
\BOOKMARK [3][-]{subsubsection.30.3.2}{Follow\040the\040commandments\040\(get\040out\040of\040falsehood;\040forsake\040sin\)\040and\040put\040your\040heart\040in\040Heaven}{subsection.30.3}% 488
\BOOKMARK [3][-]{subsubsection.30.3.3}{Then\040arriving\040at\040eternal\040life\040-\040follow\040Jesus}{subsection.30.3}% 489
\BOOKMARK [2][-]{subsection.30.4}{We\040are\040certainly\040supposed\040to\040keep\040the\040commandments\040-\040we're\040supposed\040to\040love\040God\040and\040our\040neighbour\040in\040truth}{section.30}% 490
\BOOKMARK [3][-]{subsubsection.30.4.1}{Keeping\040the\040commandments\040is\040how\040to\040love\040and\040Christian's\040are\040called\040to\040keep\040God's\040commandments}{subsection.30.4}% 491
\BOOKMARK [3][-]{subsubsection.30.4.2}{It\040matters\040that\040we\040are\040loving,\040going\040into\040eternity}{subsection.30.4}% 492
\BOOKMARK [3][-]{subsubsection.30.4.3}{We\040must\040submit\040to\040the\040righteousness\040from\040God\040through\040faith\040in\040Jesus}{subsection.30.4}% 493
\BOOKMARK [3][-]{subsubsection.30.4.4}{All\040things\040are\040put\040under\040Jesus'\040feet\040whether\040we\040are\040compliant\040or\040understand\040it\040or\040not}{subsection.30.4}% 494
\BOOKMARK [3][-]{subsubsection.30.4.5}{The\040Kingdom\040of\040Heaven\040-\040is\040a\040kingdom\040of\040servants}{subsection.30.4}% 495
\BOOKMARK [3][-]{subsubsection.30.4.6}{you\040must\040be\040holy!}{subsection.30.4}% 496
\BOOKMARK [3][-]{subsubsection.30.4.7}{you\040must\040be\040a\040servant!}{subsection.30.4}% 497
\BOOKMARK [3][-]{subsubsection.30.4.8}{Deliverance\040for\040Jesus'\040servants}{subsection.30.4}% 498
\BOOKMARK [1][-]{section.31}{Coming\040into\040the\040Body\040of\040Christ\040/\040into\040abiding\040in\040Jesus}{}% 499
\BOOKMARK [2][-]{subsection.31.1}{An\040infant\040in\040Christ\040-\040still\040of\040the\040flesh\040-\040not\040spiritual}{section.31}% 500
\BOOKMARK [2][-]{subsection.31.2}{A\040disciple\040of\040Jesus\040-\040someone\040who\040has\040been\040obedient\040to\040Jesus}{section.31}% 501
\BOOKMARK [2][-]{subsection.31.3}{A\040person\040who\040is\040mature\040in\040Christ}{section.31}% 502
\BOOKMARK [3][-]{subsubsection.31.3.1}{Don't\040be\040an\040enemy\040of\040the\040cross\040to\040others\040-\040Don't\040allow\040enemies\040of\040the\040cross\040to\040deter\040you,\040but\040rather\040pray\040for\040them}{subsection.31.3}% 503
\BOOKMARK [2][-]{subsection.31.4}{Pray\040for\040others\040to\040come\040into\040Jesus'\040Kingdom}{section.31}% 504
\BOOKMARK [2][-]{subsection.31.5}{Don't\040abandon\040but\040support\040born-again,\040obedient,\040faithful\040disciples\040of\040Jesus,\040not\040pushing\040them\040back\040to\040worldly\040thinking}{section.31}% 505
\BOOKMARK [1][-]{section.32}{Faith}{}% 506
\BOOKMARK [1][-]{section.33}{Receiving\040the\040Holy\040Spirit}{}% 507
\BOOKMARK [2][-]{subsection.33.1}{The\040Holy\040Spirit\040cleanses\040the\040heart\040by\040faith}{section.33}% 508
\BOOKMARK [2][-]{subsection.33.2}{The\040faith\040itself\040may\040be\040a\040gift,\040but\040certainly\040is\040cooperative}{section.33}% 509
\BOOKMARK [3][-]{subsubsection.33.2.1}{Faith\040and\040works\040-\040they\040overlap\040and\040are\040not\040mutually\040exclusive!}{subsection.33.2}% 510
\BOOKMARK [3][-]{subsubsection.33.2.2}{The\040faith\040of\040Abraham\040looks\040like\040this.\040This\040is\040what\040salvation-accepting\040faith\040looks\040like}{subsection.33.2}% 511
\BOOKMARK [3][-]{subsubsection.33.2.3}{The\040repentance\040of\040turning\040away\040from\040sin\040is\040an\040act\040of\040faith\040/\040a\040work\040of\040faith\040and\040also\040essential\040for\040eternal\040life,\040I\040think}{subsection.33.2}% 512
\BOOKMARK [2][-]{subsection.33.3}{Loving\040God\040is\040obedience\040to\040God}{section.33}% 513
\BOOKMARK [2][-]{subsection.33.4}{The\040law}{section.33}% 514
\BOOKMARK [3][-]{subsubsection.33.4.1}{The\040law\040may\040be\040pursued\040by\040faith.\040Justification\040through\040faith}{subsection.33.4}% 515
\BOOKMARK [3][-]{subsubsection.33.4.2}{One\040in\040Christ\040Jesus\040-\040not\040excluding\040the\040adherent\040of\040the\040law}{subsection.33.4}% 516
\BOOKMARK [3][-]{subsubsection.33.4.3}{But\040we\040are\040not\040justified\040by\040the\040law.\040We\040are\040justified\040by\040faith}{subsection.33.4}% 517
\BOOKMARK [2][-]{subsection.33.5}{Mercy}{section.33}% 518
\BOOKMARK [2][-]{subsection.33.6}{The\040law\040is\040good,\040if\040used\040properly\040-\040and\040its\040usage\040is\040part\040of\040the\040gospel}{section.33}% 519
\BOOKMARK [2][-]{subsection.33.7}{Both\040Father\040God\040and\040Jesus\040Christ\040God's\040Son\040have\040life\040in\040Himself\040and\040the\040power\040to\040resurrect}{section.33}% 520
\BOOKMARK [2][-]{subsection.33.8}{Salvation\040in\040no-one\040else\040other\040than\040Jesus\040Christ\040-\040But\040we\040must\040obey\040the\040gospel,\040and\040walk\040in\040the\040Way}{section.33}% 521
\BOOKMARK [2][-]{subsection.33.9}{Anyone\040who\040believes\040in\040Him\040receives\040forgiveness\040of\040sins}{section.33}% 522
\BOOKMARK [3][-]{subsubsection.33.9.1}{Eternal\040life\040available\040for\040all\040who\040believe\040in\040Jesus,\040but\040obedience\040and\040sanctification\040is\040necessary}{subsection.33.9}% 523
\BOOKMARK [1][-]{section.34}{Spiritual\040gifts}{}% 524
\BOOKMARK [2][-]{subsection.34.1}{Excel\040in\040building\040up\040the\040church\040to\040see\040manifestations\040of\040the\040Spirit}{section.34}% 525
\BOOKMARK [2][-]{subsection.34.2}{Using\040one's\040mind\040to\040speak\040to\040others\040intelligible\040words\040in\040the\040church\040is\040not\040subordinate\040to\040speaking\040in\040tongues}{section.34}% 526
\BOOKMARK [2][-]{subsection.34.3}{Rebuking\040Marcionism}{section.34}% 527
\BOOKMARK [2][-]{subsection.34.4}{I\040was\040tested\040today\040<2024-11-24\040Sun>}{section.34}% 528
\BOOKMARK [3][-]{subsubsection.34.4.1}{Prophesy\040etiquette}{subsection.34.4}% 529
\BOOKMARK [3][-]{subsubsection.34.4.2}{Woman\040speakers}{subsection.34.4}% 530
\BOOKMARK [3][-]{subsubsection.34.4.3}{Tongues\040etiquette}{subsection.34.4}% 531
\BOOKMARK [2][-]{subsection.34.5}{The\040utterance\040of\040tongues\040is\040given\040by\040the\040Spirit}{section.34}% 532
\BOOKMARK [2][-]{subsection.34.6}{This\040type\040of\040tongues\040is\040for\040communicating\040with\040one\040another\040-\040like\040a\040"babel-fish"\040-\040when\040people\040speak,\040people\040hear\040them\040speak\040in\040their\040language}{section.34}% 533
\BOOKMARK [2][-]{subsection.34.7}{This\040type\040of\040tongues\040is\040for\040speaking\040to\040God}{section.34}% 534
\BOOKMARK [1][-]{section.35}{The\040prophets}{}% 535
\BOOKMARK [2][-]{subsection.35.1}{44\040Prophecies\040Jesus\040Christ\040Fulfilled}{section.35}% 536
\BOOKMARK [3][-]{subsubsection.35.1.1}{Psalm\04031\040and\040Jesus'\040last\040words\040and\040Jesus\040saving\040me}{subsection.35.1}% 537
\BOOKMARK [2][-]{subsection.35.2}{Faith\040has\040a\040quantity,\040and\040faith\040receives\040from\040God\040/\040walks\040into\040what\040He\040has\040promised}{section.35}% 538
\BOOKMARK [3][-]{subsubsection.35.2.1}{Faith\040has\040substance,\040and\040a\040quantity,\040usually\040drawn\040out\040over\040time}{subsection.35.2}% 539
\BOOKMARK [3][-]{subsubsection.35.2.2}{The\040work\040of\040faith}{subsection.35.2}% 540
\BOOKMARK [3][-]{subsubsection.35.2.3}{Justified\040by\040faith\040in\040Jesus\040which\040includes\040walking\040by\040faith\040/\040works\040of\040faith\040\(works\040not\040necessarily\040works\040of\040the\040law\)}{subsection.35.2}% 541
\BOOKMARK [3][-]{subsubsection.35.2.4}{Faith\040receives\040-\040it\040believes,\040trusts\040and\040obeys}{subsection.35.2}% 542
\BOOKMARK [3][-]{subsubsection.35.2.5}{Love\040gives}{subsection.35.2}% 543
\BOOKMARK [3][-]{subsubsection.35.2.6}{Her\040faith\040saved\040her\040/\040is\040forgiven\040because\040she\040loved\040much\040-\040her\040love\040gave\040substance\040to\040her\040faith}{subsection.35.2}% 544
\BOOKMARK [1][-]{section.36}{Worldly\040precepts\040generally\040contradict\040the\040Truth\040and\040don't\040help\040to\040stop\040sin}{}% 545
\BOOKMARK [1][-]{section.37}{Who\040will\040enter\040Heaven?\040Only\040the\040ones\040who\040do\040the\040will\040of\040Father\040God}{}% 546
\BOOKMARK [1][-]{section.38}{Sermon\040on\040the\040mount}{}% 547
\BOOKMARK [2][-]{subsection.38.1}{Those\040who\040mourn\040will\040be\040comforted}{section.38}% 548
\BOOKMARK [2][-]{subsection.38.2}{The\040earth\040may\040be\040inherited}{section.38}% 549
\BOOKMARK [2][-]{subsection.38.3}{Those\040who\040hunger\040and\040thirst\040for\040righteousness\040will\040be\040satisfied}{section.38}% 550
\BOOKMARK [2][-]{subsection.38.4}{The\040merciful\040shall\040receive\040mercy}{section.38}% 551
\BOOKMARK [2][-]{subsection.38.5}{Without\040holiness,\040no-one\040will\040see\040the\040Lord}{section.38}% 552
\BOOKMARK [2][-]{subsection.38.6}{The\040peacemakers\040shall\040be\040called\040sons\040of\040God}{section.38}% 553
\BOOKMARK [2][-]{subsection.38.7}{Christian\040persecution\040is\040for\040abiding\040in\040Jesus\040through\040the\040cross}{section.38}% 554
\BOOKMARK [3][-]{subsubsection.38.7.1}{There\040are\040huge\040rewards\040for\040following\040Jesus\040in\040this\040life\040and\040the\040one\040after}{subsection.38.7}% 555
\BOOKMARK [3][-]{subsubsection.38.7.2}{We\040bless\040back\040and\040endure}{subsection.38.7}% 556
\BOOKMARK [1][-]{section.39}{The\040Kingdom\040of\040God}{}% 557
\BOOKMARK [2][-]{subsection.39.1}{Righteousness\040for\040entering\040the\040kingdom}{section.39}% 558
\BOOKMARK [1][-]{section.40}{Entering\040and\040inheriting\040the\040kingdom}{}% 559
\BOOKMARK [2][-]{subsection.40.1}{Inheriting\040the\040Kingdom\040of\040God,\040even\040on\040earth}{section.40}% 560
\BOOKMARK [2][-]{subsection.40.2}{Jesus\040explains\040how\040we\040can\040go\040about\040seeking\040the\040Kingdom\040of\040God\040and\040His\040righteousness\040-\040this\040is\040obedience\040\(the\040type\040of\040faith\040we\040must\040have\),\040not\040works!}{section.40}% 561
\BOOKMARK [3][-]{subsubsection.40.2.1}{Accept\040the\040free\040gift\040which\040is\040by\040grace\040and\040not\040of\040our\040own\040merit}{subsection.40.2}% 562
\BOOKMARK [3][-]{subsubsection.40.2.2}{Love\040God\040-\040treasure\040God,\040believe\040in\040God,\040obey\040God,\040trust\040in\040God.\040Keep\040His\040commandments\040and\040hold\040faith\040in\040His\040promises}{subsection.40.2}% 563
\BOOKMARK [3][-]{subsubsection.40.2.3}{Remain\040faithful\040to\040God\040and\040keep\040trusting\040Him.\040We\040need\040trust\040in\040Jesus\040as\040we\040go\040through\040the\040trial}{subsection.40.2}% 564
\BOOKMARK [3][-]{subsubsection.40.2.4}{Love\040your\040enemies}{subsection.40.2}% 565
\BOOKMARK [3][-]{subsubsection.40.2.5}{Practice\040your\040righteousness\040for\040God's\040commendation}{subsection.40.2}% 566
\BOOKMARK [3][-]{subsubsection.40.2.6}{Will\040for\040God's\040will\040to\040be\040done}{subsection.40.2}% 567
\BOOKMARK [3][-]{subsubsection.40.2.7}{Do\040the\040will\040of\040God}{subsection.40.2}% 568
\BOOKMARK [3][-]{subsubsection.40.2.8}{Forgive\040everyone}{subsection.40.2}% 569
\BOOKMARK [2][-]{subsection.40.3}{Entering\040the\040kingdom}{section.40}% 570
\BOOKMARK [3][-]{subsubsection.40.3.1}{Behave\040like\040a\040child\040of\040God,\040as\040a\040child\040takes\040after\040their\040parents}{subsection.40.3}% 571
\BOOKMARK [3][-]{subsubsection.40.3.2}{Trust\040Jesus\040like\040a\040child\040trusts\040their\040parents}{subsection.40.3}% 572
\BOOKMARK [3][-]{subsubsection.40.3.3}{Follow\040Jesus\040as\040a\040child\040follows\040their\040parents}{subsection.40.3}% 573
\BOOKMARK [3][-]{subsubsection.40.3.4}{We\040must\040love\040Jesus\040and\040the\040other\040children\040of\040God}{subsection.40.3}% 574
\BOOKMARK [3][-]{subsubsection.40.3.5}{Have\040active\040faith\040in\040Jesus\040and\040trust\040in\040Him.\040This\040is\040the\040good\040news,\040the\040gospel:}{subsection.40.3}% 575
\BOOKMARK [3][-]{subsubsection.40.3.6}{We\040must\040be\040born-again}{subsection.40.3}% 576
\BOOKMARK [3][-]{subsubsection.40.3.7}{We\040must\040be\040born\040of\040God}{subsection.40.3}% 577
\BOOKMARK [3][-]{subsubsection.40.3.8}{We\040must\040be\040able\040to\040discern\040the\040will\040of\040God,\040and\040want\040to\040do\040it}{subsection.40.3}% 578
\BOOKMARK [3][-]{subsubsection.40.3.9}{We\040must\040do\040the\040will\040of\040God}{subsection.40.3}% 579
\BOOKMARK [3][-]{subsubsection.40.3.10}{We\040must\040accept\040it\040as\040a\040child,\040and\040as\040a\040child\040of\040Father\040God}{subsection.40.3}% 580
\BOOKMARK [3][-]{subsubsection.40.3.11}{We\040must\040serve\040people.\040We\040must\040give\040up\040our\040wealth\040for\040others'\040sake}{subsection.40.3}% 581
\BOOKMARK [3][-]{subsubsection.40.3.12}{Even\040doing\040good\040and\040put\040to\040silence\040the\040ignorance\040of\040foolish\040people\040is\040the\040will\040of\040God}{subsection.40.3}% 582
\BOOKMARK [3][-]{subsubsection.40.3.13}{We\040must\040abide\040in\040Jesus\040through\040faith,\040then\040we\040have\040Jesus'\040righteousness,\040but\040faith\040in\040Jesus\040progresses\040to\040obedience\040to\040Jesus,\040which\040is\040doing\040the\040will\040of\040God}{subsection.40.3}% 583
\BOOKMARK [3][-]{subsubsection.40.3.14}{We\040must\040turn\040from\040sin}{subsection.40.3}% 584
\BOOKMARK [3][-]{subsubsection.40.3.15}{We\040must\040endure\040to\040enter\040the\040kingdom\040of\040God}{subsection.40.3}% 585
\BOOKMARK [2][-]{subsection.40.4}{Salvation\040absolutely\040involves\040repenting\040from\040sin}{section.40}% 586
\BOOKMARK [2][-]{subsection.40.5}{Inheriting\040the\040kingdom\040\(being\040an\040Heir\040of\040the\040Kingdom\)}{section.40}% 587
\BOOKMARK [3][-]{subsubsection.40.5.1}{We\040must\040be\040born-again}{subsection.40.5}% 588
\BOOKMARK [3][-]{subsubsection.40.5.2}{Made\040alive\040in\040Christ}{subsection.40.5}% 589
\BOOKMARK [3][-]{subsubsection.40.5.3}{We\040must\040repent\040and\040be\040sanctified\040-\040it's\040for\040our\040own\040good}{subsection.40.5}% 590
\BOOKMARK [3][-]{subsubsection.40.5.4}{We\040must\040be\040a\040good\040and\040faithful\040servant}{subsection.40.5}% 591
\BOOKMARK [3][-]{subsubsection.40.5.5}{We\040must\040be\040servants}{subsection.40.5}% 592
\BOOKMARK [3][-]{subsubsection.40.5.6}{We\040must\040keep\040conquer\040\(in\040our\040own\040lives\)\040evil\040and\040sin,\040keeping\040Jesus'\040works,\040keeping\040our\040faith\040in\040Jesus}{subsection.40.5}% 593
\BOOKMARK [1][-]{section.41}{Who\040will\040enter\040the\040holy\040city\040of\040Jerusalem\040which\040is\040in\040Heaven?\040Not\040sinners.\040Only\040servants.\040Only\040those\040who\040follow\040Jesus'\040commandments}{}% 594
\BOOKMARK [2][-]{subsection.41.1}{Those\040who\040have\040stopped\040sinning\040\(potentially\040through\040the\040power\040of\040the\040Holy\040Spirit\)\040and\040who\040believe\040in\040Jesus\040Christ}{section.41}% 595
\BOOKMARK [2][-]{subsection.41.2}{Sinners\040will\040not\040inherit\040the\040kingdom\040of\040God}{section.41}% 596
\BOOKMARK [2][-]{subsection.41.3}{We've\040died\040to\040sin,\040now\040we\040live\040to\040Christ,\040and\040do\040not\040allow\040sin\040back\040in}{section.41}% 597
\BOOKMARK [2][-]{subsection.41.4}{Compliance\040with\040the\040Torah\040\(Law\)\040is\040not\040self-righteousness,\040but\040obedience}{section.41}% 598
\BOOKMARK [3][-]{subsubsection.41.4.1}{The\040law\040is\040good,\040if\040used\040properly\040-\040and\040its\040usage\040is\040part\040of\040the\040gospel}{subsection.41.4}% 599
\BOOKMARK [1][-]{section.42}{The\040LORD\040our\040God\040and\040my\040Lord\040Jesus\040Christ}{}% 600
\BOOKMARK [1][-]{section.43}{Jesus,\040the\040Bread\040of\040Life}{}% 601
\BOOKMARK [2][-]{subsection.43.1}{Have\040faith\040in\040Jesus.\040Continue\040in\040faith\040in\040Jesus\040and\040it\040will\040well\040up\040to\040eternal\040life}{section.43}% 602
\BOOKMARK [3][-]{subsubsection.43.1.1}{Drink}{subsection.43.1}% 603
\BOOKMARK [3][-]{subsubsection.43.1.2}{Food}{subsection.43.1}% 604
\BOOKMARK [3][-]{subsubsection.43.1.3}{Look\040upon,\040consider\040and\040have\040faith\040\(which\040is\040a\040relationship\040with\040God\)}{subsection.43.1}% 605
\BOOKMARK [2][-]{subsection.43.2}{Jesus,\040the\040Bread\040of\040Life}{section.43}% 606
\BOOKMARK [3][-]{subsubsection.43.2.1}{They\040will\040be\040taught\040by\040God,\040through\040Jesus}{subsection.43.2}% 607
\BOOKMARK [2][-]{subsection.43.3}{Abiding\040in\040Jesus;\040Abiding\040in\040the\040Truth}{section.43}% 608
\BOOKMARK [3][-]{subsubsection.43.3.1}{We\040must\040love\040-\040we\040must\040obey\040Jesus}{subsection.43.3}% 609
\BOOKMARK [3][-]{subsubsection.43.3.2}{Communion\040is\040spiritual,\040and\040helps\040us\040to\040abide\040in\040Him}{subsection.43.3}% 610
\BOOKMARK [3][-]{subsubsection.43.3.3}{Getting\040Jesus'\040words\040in\040us\040helps\040us\040to\040abide\040in\040Him}{subsection.43.3}% 611
\BOOKMARK [3][-]{subsubsection.43.3.4}{Living\040the\040way\040Jesus\040commanded\040us\040helps\040us\040to\040abide\040in\040Him}{subsection.43.3}% 612
\BOOKMARK [1][-]{section.44}{The\040day}{}% 613
\BOOKMARK [2][-]{subsection.44.1}{No\040more\040night}{section.44}% 614
\BOOKMARK [1][-]{section.45}{Christian\040perfection\040through\040suffering\040with\040Christ\040is\040a\040thing}{}% 615
\BOOKMARK [2][-]{subsection.45.1}{Living\040a\040godly\040life\040in\040Christ\040Jesus\040is\040to\040be\040wise\040for\040salvation}{section.45}% 616
\BOOKMARK [2][-]{subsection.45.2}{Unity\040in\040faith\040and\040truth\040and\040love}{section.45}% 617
\BOOKMARK [2][-]{subsection.45.3}{It's\040wholeness\040and\040fullness,\040knowledge\040of\040Jesus}{section.45}% 618
\BOOKMARK [2][-]{subsection.45.4}{It's\040cleaning\040ourselves\040up\040from\040all\040defilement\040of\040flesh\040and\040spirit}{section.45}% 619
\BOOKMARK [2][-]{subsection.45.5}{It's\040a\040process\040leading\040to\040the\040day\040of\040Christ\040Jesus}{section.45}% 620
\BOOKMARK [2][-]{subsection.45.6}{Having\040suffered\040for\040righteousness-sake}{section.45}% 621
\BOOKMARK [2][-]{subsection.45.7}{Without\040lack}{section.45}% 622
\BOOKMARK [2][-]{subsection.45.8}{Perfection\040is\040the\040result\040of\040sanctification}{section.45}% 623
\BOOKMARK [3][-]{subsubsection.45.8.1}{Faith}{subsection.45.8}% 624
\BOOKMARK [3][-]{subsubsection.45.8.2}{Spirit}{subsection.45.8}% 625
\BOOKMARK [3][-]{subsubsection.45.8.3}{Holiness}{subsection.45.8}% 626
\BOOKMARK [3][-]{subsubsection.45.8.4}{Love\040/\040knowing\040Jesus\040/\040Truth}{subsection.45.8}% 627
\BOOKMARK [1][-]{section.46}{Eldership}{}% 628
\BOOKMARK [2][-]{subsection.46.1}{Cultivating\040discipleship}{section.46}% 629
\BOOKMARK [2][-]{subsection.46.2}{Don't\040dominate\040the\040flock,\040but\040be\040an\040example}{section.46}% 630
\BOOKMARK [3][-]{subsubsection.46.2.1}{Jesus\040is\040our\040only\040Teacher\040and\040Lord}{subsection.46.2}% 631
\BOOKMARK [3][-]{subsubsection.46.2.2}{Jesus\040has\040said\040we\040must\040forsake\040sin\040and\040follow\040Jesus\040to\040enter\040the\040kingdom}{subsection.46.2}% 632
\BOOKMARK [2][-]{subsection.46.3}{Forsake\040sin\040and\040serve\040Jesus}{section.46}% 633
\BOOKMARK [3][-]{subsubsection.46.3.1}{Jesus\040when\040He\040sets\040us\040free,\040helps\040us\040to\040stop\040sinning}{subsection.46.3}% 634
\BOOKMARK [2][-]{subsection.46.4}{Put\040sin\040to\040death}{section.46}% 635
\BOOKMARK [3][-]{subsubsection.46.4.1}{We\040want\040to\040be\040transformed}{subsection.46.4}% 636
\BOOKMARK [3][-]{subsubsection.46.4.2}{Quote\040from\040John\040Piper}{subsection.46.4}% 637
\BOOKMARK [3][-]{subsubsection.46.4.3}{Also,\040my\040thoughts}{subsection.46.4}% 638
\BOOKMARK [2][-]{subsection.46.5}{Those\040that\040are\040younger,\040be\040subject\040to\040the\040elders}{section.46}% 639
\BOOKMARK [2][-]{subsection.46.6}{It's\040more\040important\040to\040obey\040God\040if\040an\040elder\040is\040teaching\040falsehood}{section.46}% 640
\BOOKMARK [3][-]{subsubsection.46.6.1}{Obedience\040to\040Christ\040is\040also\040necessary\040for\040salvation}{subsection.46.6}% 641
\BOOKMARK [1][-]{section.47}{Concerning\040Baptism\040\(taken\040from\040the\040Didache\)}{}% 642
\BOOKMARK [2][-]{subsection.47.1}{We\040are\040baptised\040into\040Christ,\040not\040into\040a\040denomination}{section.47}% 643
\BOOKMARK [1][-]{section.48}{Can\040other\040religions\040exist\040anywhere\040in\040the\040Kingdom\040of\040God?\040They\040have\040to\040put\040their\040faith\040in\040and\040follow\040Jesus}{}% 644
\BOOKMARK [2][-]{subsection.48.1}{Not\040all\040religions\040are\040equal.\040There\040is\040only\040one\040true\040God,\040the\040Father\040of\040Jesus\040Christ\040who\040has\040revealed\040Himself\040in\040Jesus\040Christ}{section.48}% 645
\BOOKMARK [2][-]{subsection.48.2}{They\040also\040have\040to\040repent\040from\040idolatry}{section.48}% 646
\BOOKMARK [3][-]{subsubsection.48.2.1}{Idolatry}{subsection.48.2}% 647
\BOOKMARK [2][-]{subsection.48.3}{Jesus\040is\040reigning\040in\040power\040over\040everything\040-\040it's\040all\040in\040His\040control}{section.48}% 648
\BOOKMARK [1][-]{section.49}{Man\040is\040made\040in\040the\040image\040of\040God}{}% 649
\BOOKMARK [2][-]{subsection.49.1}{Male\040and\040female}{section.49}% 650
\BOOKMARK [2][-]{subsection.49.2}{In\040God's\040own\040likeness}{section.49}% 651
\BOOKMARK [3][-]{subsubsection.49.2.1}{Righteousness\040and\040holiness}{subsection.49.2}% 652
\BOOKMARK [2][-]{subsection.49.3}{Created\040for\040God's\040glory}{section.49}% 653
\BOOKMARK [3][-]{subsubsection.49.3.1}{Man\040wasn't\040designed\040to\040kill\040and\040curse\040each\040other}{subsection.49.3}% 654
\BOOKMARK [2][-]{subsection.49.4}{Jesus\040Christ,\040Son\040of\040God}{section.49}% 655
\BOOKMARK [1][-]{section.50}{The\040sheepfold}{}% 656
\BOOKMARK [2][-]{subsection.50.1}{The\040voice\040of\040Truth}{section.50}% 657
\BOOKMARK [2][-]{subsection.50.2}{Sheep\040vs\040goats:\040Sheep\040inherit\040the\040kingdom\040of\040God,\040goats\040do\040not}{section.50}% 658
\BOOKMARK [1][-]{section.51}{Marriage}{}% 659
\BOOKMARK [2][-]{subsection.51.1}{Marriage\040is\040between\040man\040and\040woman}{section.51}% 660
\BOOKMARK [3][-]{subsubsection.51.1.1}{Pursue\040marriage\040with\040those\040who\040share\040our\040faith\040and\040walk\040in\040holiness}{subsection.51.1}% 661
\BOOKMARK [3][-]{subsubsection.51.1.2}{Gay\040'marriage'\040is\040not\040blessed\040at\040all\040by\040God}{subsection.51.1}% 662
\BOOKMARK [3][-]{subsubsection.51.1.3}{The\040law\040may\040have\040come\040later,\040but\040the\040law\040still\040doesn't\040annul\040God's\040former\040decrees}{subsection.51.1}% 663
\BOOKMARK [3][-]{subsubsection.51.1.4}{Let's\040be\040clear:\040God's\040law\040does\040not\040endorse\040gay\040marriage}{subsection.51.1}% 664
\BOOKMARK [3][-]{subsubsection.51.1.5}{However,\040we\040are\040justified\040by\040faith\040in\040Jesus\040Christ\040-\040but\040that\040means\040obeying\040Jesus}{subsection.51.1}% 665
\BOOKMARK [2][-]{subsection.51.2}{Marriage\040should\040not\040be\040forbidden}{section.51}% 666
\BOOKMARK [3][-]{subsubsection.51.2.1}{Marriage\040is\040good}{subsection.51.2}% 667
\BOOKMARK [3][-]{subsubsection.51.2.2}{We\040should\040not\040be\040thieves\040and\040robbers}{subsection.51.2}% 668
\BOOKMARK [3][-]{subsubsection.51.2.3}{I\040want\040to\040get\040married\040but\040continue\040in\040sanctification\040first\040-\040that's\040the\040conflict\040-\040I\040don't\040want\040to\040bring\040any\040ongoing\040issues\040into\040marriage}{subsection.51.2}% 669
\BOOKMARK [3][-]{subsubsection.51.2.4}{Choosing\040a\040marriage\040partner\040in\040the\040Lord\040Jesus\040and\040who\040loves\040the\040Lord\040Jesus}{subsection.51.2}% 670
\BOOKMARK [3][-]{subsubsection.51.2.5}{It's\040extremely\040important\040to\040respect\040the\040institution\040of\040marriage,\040and\040of\040marriage\040proposal}{subsection.51.2}% 671
\BOOKMARK [3][-]{subsubsection.51.2.6}{Personal\040testimony\040thoughts\040around\040marriage\040sabotage}{subsection.51.2}% 672
\BOOKMARK [3][-]{subsubsection.51.2.7}{The\0403\040that\040testify\040that\040God\040gave\040us\040eternal\040life,\040and\040this\040life\040is\040in\040his\040Son}{subsection.51.2}% 673
\BOOKMARK [3][-]{subsubsection.51.2.8}{I\040was\040learning\040Christ\040before\040I\040was\040born-again}{subsection.51.2}% 674
\BOOKMARK [3][-]{subsubsection.51.2.9}{Genuine\040belief\040results\040a\040dramatic\040decoupling\040with\040the\040world\040out\040of\040darkness\040and\040out\040from\040under\040the\040power\040of\040Satan}{subsection.51.2}% 675
\BOOKMARK [3][-]{subsubsection.51.2.10}{Holiness\040-\040J.C.\040Ryle}{subsection.51.2}% 676
\BOOKMARK [3][-]{subsubsection.51.2.11}{Gay\040'marriage'\040should\040not\040be\040held\040in\040equal\040standing\040to\040God's\040design}{subsection.51.2}% 677
\BOOKMARK [2][-]{subsection.51.3}{Workers\040of\040the\040kingdom\040may\040take\040a\040believing\040wife}{section.51}% 678
\BOOKMARK [3][-]{subsubsection.51.3.1}{But\040for\040the\040sake\040of\040the\040Kingdom,\040they\040may\040choose\040to\040be\040single}{subsection.51.3}% 679
\BOOKMARK [3][-]{subsubsection.51.3.2}{Being\040ready\040for\040Jesus\040comes\040first}{subsection.51.3}% 680
\BOOKMARK [2][-]{subsection.51.4}{Marriage\040should\040be\040holy\040for\040future\040sake}{section.51}% 681
\BOOKMARK [3][-]{subsubsection.51.4.1}{The\040spiritual\040marriage\040belongs\040to\040Christ}{subsection.51.4}% 682
\BOOKMARK [2][-]{subsection.51.5}{Marriage\040is\040still\040good\040but\040so\040is\040singleness}{section.51}% 683
\BOOKMARK [2][-]{subsection.51.6}{Spiritual\040attraction:\040God\040must\040be\040our\040spiritual\040spouse\040and\040if\040it's\040not\040God,\040then\040it's\040something\040else}{section.51}% 684
\BOOKMARK [2][-]{subsection.51.7}{Covenant\040marriage\040is\040great,\040but\040for\040the\040Gentiles\040who\040turn\040to\040God,\040it's\040not\040essentially\040required\040to\040burden\040them\040beyond\040abstaining\040from\040sexual\040immorality}{section.51}% 685
\BOOKMARK [2][-]{subsection.51.8}{Marriage\040in\040the\040next\040age}{section.51}% 686
\BOOKMARK [3][-]{subsubsection.51.8.1}{Incorruptible\040love\040to\040make\040it\040into\040heaven,\040but\040not\040lust}{subsection.51.8}% 687
\BOOKMARK [3][-]{subsubsection.51.8.2}{There\040is\040no\040lust\040in\040heaven}{subsection.51.8}% 688
\BOOKMARK [3][-]{subsubsection.51.8.3}{No-one\040marrys\040\(verb\)\040or\040is\040given\040in\040marriage\040\(verb\)}{subsection.51.8}% 689
\BOOKMARK [3][-]{subsubsection.51.8.4}{In\040heaven,\040people\040are\040like\040angels\040-\040imperishable}{subsection.51.8}% 690
\BOOKMARK [3][-]{subsubsection.51.8.5}{Jesus\040is\040incorruptible}{subsection.51.8}% 691
\BOOKMARK [3][-]{subsubsection.51.8.6}{We\040are\040married\040to\040Christ}{subsection.51.8}% 692
\BOOKMARK [3][-]{subsubsection.51.8.7}{We\040must\040present\040ourselves\040as\040virgins\040to\040Christ.\040We\040must\040be\040being\040sanctified}{subsection.51.8}% 693
\BOOKMARK [2][-]{subsection.51.9}{Bride\040of\040Christ}{section.51}% 694
\BOOKMARK [2][-]{subsection.51.10}{I\040do\040not\040endorse\040gay\040marriage\040-\040I\040consider\040it\040to\040be\040sin\040-\040grave\040sin,\040actually}{section.51}% 695
\BOOKMARK [2][-]{subsection.51.11}{God's\040law\040is\040still\040used.\040It's\040part\040of\040the\040gospel,\040and\040can\040certainly\040be\040used\040to\040judge\040the\040sinners,\040including\040those\040who\040are\040unrepentant\040from\040sexual\040immorality}{section.51}% 696
\BOOKMARK [2][-]{subsection.51.12}{God's\040law\040is\040good.\040His\040precepts\040are\040good.\040I\040don't\040identify\040with\040any\040of\040this\040LGBT\040stuff,\040and\040I\040am\040against\040licentiousness}{section.51}% 697
\BOOKMARK [2][-]{subsection.51.13}{Can\040gay\040'marriage'\040exist\040anywhere\040in\040the\040Kingdom\040of\040God?\040It's\040certainly\040not\040generally\040endorsed,\040nor\040should\040it\040be\040normalised\040or\040made\040equal\040with\040marriage}{section.51}% 698
\BOOKMARK [3][-]{subsubsection.51.13.1}{God\040still\040does\040not\040endorse\040practicing\040homosexuality,\040nor\040lust}{subsection.51.13}% 699
\BOOKMARK [3][-]{subsubsection.51.13.2}{The\040most\040weighty\040matters\040of\040the\040law\040are\040justice,\040mercy,\040faithfulness,\040and\040service}{subsection.51.13}% 700
\BOOKMARK [3][-]{subsubsection.51.13.3}{Even\040though\040the\040law\040came\040later,\040practicing\040homosexuality\040has\040always\040been\040sinful}{subsection.51.13}% 701
\BOOKMARK [3][-]{subsubsection.51.13.4}{Sexual\040immorality,\040sensuality,\040etc.\040will\040really\040stop\040people\040from\040inheriting\040the\040kingdom\040of\040God}{subsection.51.13}% 702
\BOOKMARK [3][-]{subsubsection.51.13.5}{Faith\040in\040Jesus\040is\040required\040-\040Him\040paying\040the\040price\040for\040our\040sin}{subsection.51.13}% 703
\BOOKMARK [3][-]{subsubsection.51.13.6}{Sanctification\040\(turning\040from\040sin,\040etc.\)\040is\040essential\040for\040inheriting\040the\040kingdom\040and\040eternal\040life}{subsection.51.13}% 704
\BOOKMARK [3][-]{subsubsection.51.13.7}{Practicing\040homosexuality\040is\040very\040sinful\040and\040so\040locking\040it\040in\040with\040a\040covenant\040is\040very\040self-destructive}{subsection.51.13}% 705
\BOOKMARK [3][-]{subsubsection.51.13.8}{Without\040following\040Jesus\040Christ's\040commandments,\040gay\040'marriage'\040would\040never\040be\040justifiable}{subsection.51.13}% 706
\BOOKMARK [3][-]{subsubsection.51.13.9}{The\040slave\040to\040sin\040doesn't\040remain\040in\040God's\040house\040forever}{subsection.51.13}% 707
\BOOKMARK [3][-]{subsubsection.51.13.10}{The\040everlasting\040covenant\040if\040one\040is\040in\040the\040everlasting\040covenant,\040should\040incite\040a\040person's\040shame\040for\040their\040past\040sin\040-\040not\040their\040pride}{subsection.51.13}% 708
\BOOKMARK [3][-]{subsubsection.51.13.11}{The\040abyss\040is\040a\040thing.\040And\040our\040security\040is\040faith\040in\040Christ}{subsection.51.13}% 709
\BOOKMARK [3][-]{subsubsection.51.13.12}{Grace\040even\040for\040the\040evildoer}{subsection.51.13}% 710
\BOOKMARK [3][-]{subsubsection.51.13.13}{God's\040original\040design\040is\040male\040and\040female\040union\040and\040also\040the\040law\040reflects\040the\040spiritual\040reality}{subsection.51.13}% 711
\BOOKMARK [3][-]{subsubsection.51.13.14}{Born\040of\040water\040and\040the\040spirit}{subsection.51.13}% 712
\BOOKMARK [3][-]{subsubsection.51.13.15}{The\040truth\040is\040God\040made\040them\040male\040and\040female,\040but\040handed\040erroneous,\040rebellious\040people\040over\040to\040their\040lust\040in\040impurity}{subsection.51.13}% 713
\BOOKMARK [3][-]{subsubsection.51.13.16}{We\040have\040to\040walk\040the\040straight\040and\040narrow\040to\040reign\040with\040Christ}{subsection.51.13}% 714
\BOOKMARK [1][-]{section.52}{Employment}{}% 715
\BOOKMARK [2][-]{subsection.52.1}{Kingdom\040work\040is\040work,\040but\040kingdom\040workers\040should\040still\040seek\040to\040carry\040their\040own\040load\040and\040accept\040support\040only\040when\040in\040need\040of\040support}{section.52}% 716
\BOOKMARK [1][-]{section.53}{Hearing\040the\040gospel\040progresses\040to\040abiding\040in\040Christ}{}% 717
\BOOKMARK [1][-]{section.54}{Abiding\040in\040Christ}{}% 718
\BOOKMARK [2][-]{subsection.54.1}{The\040cost\040of\040discipleship\040involves\040renouncing\040everything\040you\040have\040to\040achieve\040perfection}{section.54}% 719
\BOOKMARK [2][-]{subsection.54.2}{How\040Christians\040agape\040love}{section.54}% 720
\BOOKMARK [3][-]{subsubsection.54.2.1}{Who\040Christians\040must\040agape\040love}{subsection.54.2}% 721
\BOOKMARK [3][-]{subsubsection.54.2.2}{Who\040Christians\040are\040called\040to\040agape\040love:}{subsection.54.2}% 722
\BOOKMARK [3][-]{subsubsection.54.2.3}{What\040Christians\040must\040not\040agape\040love}{subsection.54.2}% 723
\BOOKMARK [2][-]{subsection.54.3}{The\040slave\040to\040sin\040doesn't\040abide\040forever.\040Repentance\040from\040sin\040is\040essential\040for\040eternal\040life}{section.54}% 724
\BOOKMARK [2][-]{subsection.54.4}{Having\040the\040Spirit\040given\040to\040us\040and\040keeping\040Jesus'\040commandments}{section.54}% 725
\BOOKMARK [2][-]{subsection.54.5}{Eternal\040life\040is\040forever\040abiding}{section.54}% 726
\BOOKMARK [2][-]{subsection.54.6}{Whoever\040truly\040believes\040/\040has\040faith\040in\040Jesus\040has\040eternal\040life}{section.54}% 727
\BOOKMARK [3][-]{subsubsection.54.6.1}{Every\040human\040being\040who\040does\040evil\040will\040receive\040tribulation\040and\040distress.\040God\040is\040fair.}{subsection.54.6}% 728
\BOOKMARK [3][-]{subsubsection.54.6.2}{Human\040beings\040were\040totally\040at\040the\040mercy\040of\040God.\040We\040needed\040Jesus\040to\040come.\040We\040still\040need\040Jesus}{subsection.54.6}% 729
\BOOKMARK [3][-]{subsubsection.54.6.3}{Atonement\040and\040sanctification,\040and\040eternal\040life\040in\040Jesus\040-\040righteousness\040apart\040from\040the\040works\040of\040the\040law}{subsection.54.6}% 730
\BOOKMARK [2][-]{subsection.54.7}{Abiding\040in\040Christ\040through\040His\040name}{section.54}% 731
\BOOKMARK [2][-]{subsection.54.8}{Jesus\040abiding\040in\040you\040/\040me}{section.54}% 732
\BOOKMARK [2][-]{subsection.54.9}{Loving\040God\040and\040loving\040Jesus\040and\040loving\040others\040and\040abiding\040in\040His\040love}{section.54}% 733
\BOOKMARK [2][-]{subsection.54.10}{Saint\040-\040an\040imitator\040of\040Jesus\040-\040keeps\040the\040commandments\040of\040God\040and\040has\040faith\040in\040Jesus}{section.54}% 734
\BOOKMARK [2][-]{subsection.54.11}{Followers\040of\040Jesus\040-\040the\040saints\040\(people\040who\040keep\040God's\040commandments\)\040judge\040the\040world}{section.54}% 735
\BOOKMARK [2][-]{subsection.54.12}{Saints\040inherit\040the\040Kingdom\040with\040Jesus}{section.54}% 736
\BOOKMARK [2][-]{subsection.54.13}{Be\040humble\040in\040this\040world\040and\040serve\040others\040of\040humble\040circumstances\040while\040in\040this\040world}{section.54}% 737
\BOOKMARK [3][-]{subsubsection.54.13.1}{Jesus'\040friends\040are\040those\040who\040actually\040do\040what\040Jesus\040says}{subsection.54.13}% 738
\BOOKMARK [2][-]{subsection.54.14}{Entering\040the\040kingdom\040of\040heaven}{section.54}% 739
\BOOKMARK [2][-]{subsection.54.15}{Knowing\040Jesus,\040knowing\040God,\040knowing\040Jehovah\040God}{section.54}% 740
\BOOKMARK [3][-]{subsubsection.54.15.1}{Anyone\040who\040doesn't\040abide\040will\040be\040thrown\040away\040like\040a\040branch\040and\040withers.\040Eventually\040they\040will\040be\040into\040the\040fire\040\(Hell,\040I\040assume\)}{subsection.54.15}% 741
\BOOKMARK [2][-]{subsection.54.16}{His\040name:\040Jesus\040Christ,\040the\040Son\040of\040God}{section.54}% 742
\BOOKMARK [2][-]{subsection.54.17}{Deeply\040abiding\040in\040Jesus,\040abiding\040in\040Jesus\040Christ's\040love,\040and\040passing-forward\040Christ's\040love}{section.54}% 743
\BOOKMARK [3][-]{subsubsection.54.17.1}{Abiding\040forever\040vs\040abiding\040-\040there's\040a\040difference}{subsection.54.17}% 744
\BOOKMARK [2][-]{subsection.54.18}{The\040fruit\040\(work\)\040of\040disciples\040of\040Jesus\040then\040abides}{section.54}% 745
\BOOKMARK [2][-]{subsection.54.19}{Secure\040rewards\040and\040a\040guarantee\040of\040eternal\040life\040for\040Jesus'\040disciples}{section.54}% 746
\BOOKMARK [3][-]{subsubsection.54.19.1}{Eternal\040life\040is\040receiving\040an\040eternal\040name,\040I\040think}{subsection.54.19}% 747
\BOOKMARK [2][-]{subsection.54.20}{The\040work\040of\040God,\040believing\040in\040Jesus}{section.54}% 748
\BOOKMARK [2][-]{subsection.54.21}{We\040in\040Christ,\040Christ\040in\040us}{section.54}% 749
\BOOKMARK [3][-]{subsubsection.54.21.1}{Jesus\040Christ\040is\040in\040us}{subsection.54.21}% 750
\BOOKMARK [3][-]{subsubsection.54.21.2}{We\040are\040in\040Christ}{subsection.54.21}% 751
\BOOKMARK [3][-]{subsubsection.54.21.3}{Our\040life\040is\040hidden\040with\040Christ\040in\040God}{subsection.54.21}% 752
\BOOKMARK [2][-]{subsection.54.22}{Only\040God\040the\040Father\040could\040graft\040people\040in\040and\040out\040of\040Christ\040-\040but\040Jesus\040intercedes\040for\040us}{section.54}% 753
\BOOKMARK [2][-]{subsection.54.23}{The\040law\040of\040Christ}{section.54}% 754
\BOOKMARK [2][-]{subsection.54.24}{Sharing\040Jesus'\040holiness\040/\040personal\040righteousness\040\(fruit\040of\040righteousness\)\040-\040coming\040after\040faith\040in\040Jesus}{section.54}% 755
\BOOKMARK [3][-]{subsubsection.54.24.1}{Have\040faith\040in\040Jesus;\040Believe\040in\040Him,\040and\040be\040obedient\040to\040Him,\040following\040His\040teaching}{subsection.54.24}% 756
\BOOKMARK [3][-]{subsubsection.54.24.2}{The\040yoke\040of\040the\040Lord\040Jesus}{subsection.54.24}% 757
\BOOKMARK [3][-]{subsubsection.54.24.3}{The\040upward\040call\040of\040God\040in\040Christ\040Jesus}{subsection.54.24}% 758
\BOOKMARK [2][-]{subsection.54.25}{Personal\040holiness}{section.54}% 759
\BOOKMARK [2][-]{subsection.54.26}{Belief\040comes\040before\040or\040at\040the\040time\040of\040receiving\040the\040Holy\040Spirit\040\(receiving\040the\040Holy\040Spirit\040comes\040at\040the\040time\040of\040or\040after\040believing\)}{section.54}% 760
\BOOKMARK [2][-]{subsection.54.27}{God\040is\040sovereign\040to\040reveal\040Himself,\040sovereign\040to\040save\040and\040sovereign\040to\040destroy}{section.54}% 761
\BOOKMARK [2][-]{subsection.54.28}{Just\040saying\040a\040creed\040doesn't\040guarantee\040that\040a\040person\040is\040saved\040\(I\040think\)}{section.54}% 762
\BOOKMARK [2][-]{subsection.54.29}{It's\040the\040obedient\040who\040are\040justified,\040not\040the\040hearers}{section.54}% 763
\BOOKMARK [3][-]{subsubsection.54.29.1}{These\040people\040who\040were\040unable\040to\040enter\040the\040kingdom\040of\040heaven\040performed\040dead\040works,\040and\040never\040obeyed\040Jesus}{subsection.54.29}% 764
\BOOKMARK [2][-]{subsection.54.30}{Outside\040of\040the\040Holy\040Spirit,\040noone\040can\040say\040Jesus\040is\040Lord}{section.54}% 765
\BOOKMARK [2][-]{subsection.54.31}{Works\040accompany\040the\040true\040believers}{section.54}% 766
\BOOKMARK [2][-]{subsection.54.32}{Those\040that\040reject\040the\040gospel\040are\040not\040the\040same\040as\040those\040who\040haven't\040heard\040the\040gospel}{section.54}% 767
\BOOKMARK [3][-]{subsubsection.54.32.1}{The\040following\040applies\040to\040believing\040Jesus,\040not\040to\040believing\040that\040a\040disciple\040of\040Jesus\040is\040Jesus}{subsection.54.32}% 768
\BOOKMARK [3][-]{subsubsection.54.32.2}{There's\040more\040chances\040to\040accept\040Jesus\040after\040hearing\040the\040gospel\040and\040initially\040rejecting\040or\040being\040unsure}{subsection.54.32}% 769
\BOOKMARK [3][-]{subsubsection.54.32.3}{If\040someone\040receives\040the\040one\040who\040Jesus\040sends,\040they\040receive\040Jesus}{subsection.54.32}% 770
\BOOKMARK [3][-]{subsubsection.54.32.4}{People\040always\040have\040the\040choice\040to\040believe\040the\040gospel}{subsection.54.32}% 771
\BOOKMARK [3][-]{subsubsection.54.32.5}{I\040lean\040towards\040this\040interpretation}{subsection.54.32}% 772
\BOOKMARK [3][-]{subsubsection.54.32.6}{Rejecting\040Jesus\040in\040front\040of\040others\040is\040not\040good}{subsection.54.32}% 773
\BOOKMARK [3][-]{subsubsection.54.32.7}{It's\040really\040important\040to\040not\040reject\040Jesus\040through}{subsection.54.32}% 774
\BOOKMARK [2][-]{subsection.54.33}{I\040believe\040that\040repentance\040is\040important\040in\040faith\040and\040faithfulness\040to\040God}{section.54}% 775
\BOOKMARK [2][-]{subsection.54.34}{Celebrating/endorsing\040sin\040/\040error\040is\040not\040right}{section.54}% 776
\BOOKMARK [2][-]{subsection.54.35}{Faith\040has\040substance\040to\040it,\040and\040an\040amount\040to\040it,\040usually\040drawn\040out\040over\040time}{section.54}% 777
\BOOKMARK [2][-]{subsection.54.36}{Faith\040believes\040God\040and\040hopes\040in\040invisible\040things,\040and\040is\040convicted\040of\040them}{section.54}% 778
\BOOKMARK [2][-]{subsection.54.37}{Jesus'\040words\040never\040pass\040away.\040The\040law\040could\040only\040pass\040away\040after\040heaven\040and\040earth\040passes\040away}{section.54}% 779
\BOOKMARK [2][-]{subsection.54.38}{Structure\040of\040the\040Kingdom}{section.54}% 780
\BOOKMARK [3][-]{subsubsection.54.38.1}{Great\040or\040small\040in\040the\040kingdom\040of\040God}{subsection.54.38}% 781
\BOOKMARK [3][-]{subsubsection.54.38.2}{The\040one\040who\040is\040least\040in\040the\040kingdom\040is\040who\040is\040great}{subsection.54.38}% 782
\BOOKMARK [3][-]{subsubsection.54.38.3}{Your\040servant\040will\040be\040greater}{subsection.54.38}% 783
\BOOKMARK [3][-]{subsubsection.54.38.4}{The\040humble\040and\040obedient\040will\040be\040called\040great}{subsection.54.38}% 784
\BOOKMARK [3][-]{subsubsection.54.38.5}{God's\040kingdom\040is\040from\040Heaven\040to\040Earth}{subsection.54.38}% 785
\BOOKMARK [3][-]{subsubsection.54.38.6}{Jesus\040inherits\040the\040entire\040Kingdom}{subsection.54.38}% 786
\BOOKMARK [3][-]{subsubsection.54.38.7}{Jesus'\040sheep/followers/saints\040inherit\040the\040Kingdom\040with\040Jesus.\040Jesus'\040sheep\040follow\040Jesus}{subsection.54.38}% 787
\BOOKMARK [3][-]{subsubsection.54.38.8}{Followers\040of\040Jesus\040become\040fishers\040of\040men}{subsection.54.38}% 788
\BOOKMARK [3][-]{subsubsection.54.38.9}{One\040must\040be\040born-again\040to\040enter\040in\040and\040inherit\040the\040Kingdom\040of\040God}{subsection.54.38}% 789
\BOOKMARK [2][-]{subsection.54.39}{There\040is\040no\040sexual\040immorality\040in\040Heaven,\040no\040violence,\040no\040sinners.}{section.54}% 790
\BOOKMARK [2][-]{subsection.54.40}{Adhering\040to\040the\040law\040like\040a\040Pharisee\040-\040pursuing\040the\040law\040by\040works}{section.54}% 791
\BOOKMARK [3][-]{subsubsection.54.40.1}{Instead\040of\040adhering\040to\040the\040law\040like\040a\040Pharisee\040we\040should\040become\040obedient\040to\040Jesus}{subsection.54.40}% 792
\BOOKMARK [2][-]{subsection.54.41}{Follow\040the\040law\040mercifully\040and\040without\040self-righteousness,\040accountable\040to\040God,\040being\040a\040servant\040to\040others}{section.54}% 793
\BOOKMARK [2][-]{subsection.54.42}{Being\040in\040the\040Kingdom\040of\040Jesus\040Christ\040on\040earth\040is\040being\040the\040light\040of\040the\040world}{section.54}% 794
\BOOKMARK [2][-]{subsection.54.43}{All\040the\040law\040is\040still\040used}{section.54}% 795
\BOOKMARK [3][-]{subsubsection.54.43.1}{Even\040the\040smallest\040of\040laws\040still\040come\040into\040effect\040in\040certain\040circumstances}{subsection.54.43}% 796
\BOOKMARK [3][-]{subsubsection.54.43.2}{We\040do\040not\040seek\040to\040change\040God's\040law}{subsection.54.43}% 797
\BOOKMARK [2][-]{subsection.54.44}{My\040experience\040of\040being\040born-again,\040and\040reasoning\040surrounding\040justification}{section.54}% 798
\BOOKMARK [3][-]{subsubsection.54.44.1}{John\040Piper's\040view,\040I\040affirm,\040but\040it\040also\040sounds\040optimal}{subsection.54.44}% 799
\BOOKMARK [3][-]{subsubsection.54.44.2}{But\040my\040experience\040was\040like\040this\040and\040this\040is\040why\040I\040cannot\040deny\040the\040importance\040of\040obedience\040and\040abiding\040in\040the\040teaching\040of\040Christ\040by\040obedient,\040trusting,\040hoping,\040faith,\040even\040before\040being\040born\040of\040the\040Spirit}{subsection.54.44}% 800
\BOOKMARK [3][-]{subsubsection.54.44.3}{I\040also\040affirm\040justification\040by\040works\040of\040faith\040done\040by\040grace\040[alone],\040not\040just\040'faith\040alone'\040because\040I\040affirm\040Romans\0404:9-12\040which\040says\040its\040both\040groups,\040and\040also\040Hebrews\04011\040confirms}{subsection.54.44}% 801
\BOOKMARK [3][-]{subsubsection.54.44.4}{Mid-2022\040to\040mid-2023\040was\040chaotic}{subsection.54.44}% 802
\BOOKMARK [3][-]{subsubsection.54.44.5}{An\040obedient/loving\040response\040to\040Jesus,\040I\040think\040is\040extremely\040important}{subsection.54.44}% 803
\BOOKMARK [3][-]{subsubsection.54.44.6}{But\040I\040believe\040the\040grace\040is\040a\040free\040gift\040from\040God.}{subsection.54.44}% 804
\BOOKMARK [2][-]{subsection.54.45}{Justification\040by\040faith\040-\040Jews\040+\040Gentiles,\040and\040in-between}{section.54}% 805
\BOOKMARK [2][-]{subsection.54.46}{Theoretically\040belief\040usually\040comes\040before\040or\040at\040the\040time\040receiving\040the\040Holy\040Spirit}{section.54}% 806
\BOOKMARK [1][-]{section.55}{Receive\040through\040the\040hearing\040of\040the\040word\040and\040faith}{}% 807
\BOOKMARK [2][-]{subsection.55.1}{Faith\040requires\040obedience}{section.55}% 808
\BOOKMARK [2][-]{subsection.55.2}{The\040promised\040Spirit\040is\040received\040through\040faith}{section.55}% 809
\BOOKMARK [3][-]{subsubsection.55.2.1}{Everlasting\040covenant}{subsection.55.2}% 810
\BOOKMARK [3][-]{subsubsection.55.2.2}{2\040years\040before\040being\040born\040again\040of\040the\040Spirit\040-\040prayer\040-\040proving\040belief\040came\040before\040being\040born-again}{subsection.55.2}% 811
\BOOKMARK [3][-]{subsubsection.55.2.3}{Over\040easter}{subsection.55.2}% 812
\BOOKMARK [3][-]{subsubsection.55.2.4}{Being\040born-again}{subsection.55.2}% 813
\BOOKMARK [3][-]{subsubsection.55.2.5}{Meeting\040with\040the\040Holy\040Spirit}{subsection.55.2}% 814
\BOOKMARK [3][-]{subsubsection.55.2.6}{I\040wrote\040about\040following\040the\040law\040by\040faith,\040also\040law\040written\040on\040my\040heart.}{subsection.55.2}% 815
\BOOKMARK [3][-]{subsubsection.55.2.7}{Baptised\040in\040the\040Holy\040Spirit}{subsection.55.2}% 816
\BOOKMARK [2][-]{subsection.55.3}{Later\040in\040the\040year}{section.55}% 817
\BOOKMARK [2][-]{subsection.55.4}{Jesus\040is\040our\040Eternal\040High\040Priest}{section.55}% 818
\BOOKMARK [2][-]{subsection.55.5}{New\040covenant}{section.55}% 819
\BOOKMARK [2][-]{subsection.55.6}{Life\040is\040very\040different\040for\040me\040now\040after\040being\040born-again}{section.55}% 820
\BOOKMARK [3][-]{subsubsection.55.6.1}{The\040'wilderness'\040-\040I\040guess\040this\040is\040common\040experience/season\040for\040born-again\040season\040Christians\040after\040being\040baptised\040/\040born-again\040of\040the\040Spirit}{subsection.55.6}% 821
\BOOKMARK [2][-]{subsection.55.7}{Born\040of\040Water\040and\040the\040Spirit}{section.55}% 822
\BOOKMARK [2][-]{subsection.55.8}{Justification\040by\040faith\040for\040the\040both\040adherents\040of\040the\040law\040and\040the\040gentiles}{section.55}% 823
\BOOKMARK [2][-]{subsection.55.9}{Paul\040used\040the\040law\040to\040judge\040back,\040but\040without\040hypocrisy}{section.55}% 824
\BOOKMARK [2][-]{subsection.55.10}{Justified\040by\040God\040through\040faith\040[and\040works\040done\040in\040faith?]}{section.55}% 825
\BOOKMARK [3][-]{subsubsection.55.10.1}{God\040is\040the\040one\040who\040justifies}{subsection.55.10}% 826
\BOOKMARK [3][-]{subsubsection.55.10.2}{We\040have\040been\040saved,\040we\040are\040being\040saved,\040and\040we\040will\040be\040saved}{subsection.55.10}% 827
\BOOKMARK [3][-]{subsubsection.55.10.3}{Justified\040by\040faith\040alone.\040But\040faith\040is\040substantiated\040by\040works,\040Jesus'\040works\040which\040is\040entirely\040sufficient\040and\040Jesus\040working\040in\040us\040even\040by\040our\040obedience}{subsection.55.10}% 828
\BOOKMARK [3][-]{subsubsection.55.10.4}{Paul\040here\040mentions\040trust\040even\040for\040the\040one\040who\040trusts\040in\040Him\040who\040justifies\040the\040ungodly}{subsection.55.10}% 829
\BOOKMARK [2][-]{subsection.55.11}{Conditional\040Promises\040In\040The\040New\040Testament}{section.55}% 830
\BOOKMARK [3][-]{subsubsection.55.11.1}{}{subsection.55.11}% 831
\BOOKMARK [3][-]{subsubsection.55.11.2}{}{subsection.55.11}% 832
\BOOKMARK [3][-]{subsubsection.55.11.3}{}{subsection.55.11}% 833
\BOOKMARK [3][-]{subsubsection.55.11.4}{}{subsection.55.11}% 834
\BOOKMARK [3][-]{subsubsection.55.11.5}{}{subsection.55.11}% 835
\BOOKMARK [3][-]{subsubsection.55.11.6}{}{subsection.55.11}% 836
\BOOKMARK [3][-]{subsubsection.55.11.7}{}{subsection.55.11}% 837
\BOOKMARK [3][-]{subsubsection.55.11.8}{}{subsection.55.11}% 838
\BOOKMARK [3][-]{subsubsection.55.11.9}{}{subsection.55.11}% 839
\BOOKMARK [3][-]{subsubsection.55.11.10}{}{subsection.55.11}% 840
\BOOKMARK [3][-]{subsubsection.55.11.11}{}{subsection.55.11}% 841
\BOOKMARK [3][-]{subsubsection.55.11.12}{}{subsection.55.11}% 842
\BOOKMARK [3][-]{subsubsection.55.11.13}{}{subsection.55.11}% 843
\BOOKMARK [3][-]{subsubsection.55.11.14}{}{subsection.55.11}% 844
\BOOKMARK [3][-]{subsubsection.55.11.15}{}{subsection.55.11}% 845
\BOOKMARK [3][-]{subsubsection.55.11.16}{}{subsection.55.11}% 846
\BOOKMARK [3][-]{subsubsection.55.11.17}{}{subsection.55.11}% 847
\BOOKMARK [3][-]{subsubsection.55.11.18}{}{subsection.55.11}% 848
\BOOKMARK [3][-]{subsubsection.55.11.19}{}{subsection.55.11}% 849
\BOOKMARK [3][-]{subsubsection.55.11.20}{}{subsection.55.11}% 850
\BOOKMARK [3][-]{subsubsection.55.11.21}{}{subsection.55.11}% 851
\BOOKMARK [3][-]{subsubsection.55.11.22}{}{subsection.55.11}% 852
\BOOKMARK [3][-]{subsubsection.55.11.23}{}{subsection.55.11}% 853
\BOOKMARK [3][-]{subsubsection.55.11.24}{}{subsection.55.11}% 854
\BOOKMARK [3][-]{subsubsection.55.11.25}{}{subsection.55.11}% 855
\BOOKMARK [3][-]{subsubsection.55.11.26}{}{subsection.55.11}% 856
\BOOKMARK [3][-]{subsubsection.55.11.27}{}{subsection.55.11}% 857
\BOOKMARK [3][-]{subsubsection.55.11.28}{}{subsection.55.11}% 858
\BOOKMARK [3][-]{subsubsection.55.11.29}{}{subsection.55.11}% 859
\BOOKMARK [3][-]{subsubsection.55.11.30}{}{subsection.55.11}% 860
\BOOKMARK [3][-]{subsubsection.55.11.31}{}{subsection.55.11}% 861
\BOOKMARK [3][-]{subsubsection.55.11.32}{}{subsection.55.11}% 862
\BOOKMARK [2][-]{subsection.55.12}{Body\040without\040spirit\040is\040dead.\040But\040I\040think\040the\040spirit\040without\040the\040body\040is\040still\040alive}{section.55}% 863
\BOOKMARK [2][-]{subsection.55.13}{Forgiveness\040and\040ongoing\040sin}{section.55}% 864
\BOOKMARK [3][-]{subsubsection.55.13.1}{New\040covenant}{subsection.55.13}% 865
\BOOKMARK [3][-]{subsubsection.55.13.2}{We\040must\040seek\040to\040stop\040sinning\040after\040receiving\040the\040'big\040forgiveness'\040for\040past\040sin}{subsection.55.13}% 866
\BOOKMARK [3][-]{subsubsection.55.13.3}{We\040totally\040should\040seek\040to\040stop\040sinning,\040since\040we\040await\040a\040place\040without\040sinning}{subsection.55.13}% 867
\BOOKMARK [3][-]{subsubsection.55.13.4}{The\040'all\040time'\040means\040we\040can\040still\040approach\040Jesus\040for\040forgiveness\040for\040future\040sins}{subsection.55.13}% 868
\BOOKMARK [3][-]{subsubsection.55.13.5}{If\040we\040sin}{subsection.55.13}% 869
\BOOKMARK [1][-]{section.56}{Personally\040judging\040sin}{}% 870
\BOOKMARK [2][-]{subsection.56.1}{We\040should\040always\040discern\040what\040is\040right\040on\040our\040own\040initiative}{section.56}% 871
\BOOKMARK [2][-]{subsection.56.2}{We\040should\040be\040examining,\040judging,\040cleaning\040ourselves\040up,\040taking\040a\040look\040in\040the\040mirror\040first}{section.56}% 872
\BOOKMARK [2][-]{subsection.56.3}{It\040is\040necessary\040sometimes\040to\040judge\040others,\040but\040do\040it\040properly}{section.56}% 873
\BOOKMARK [3][-]{subsubsection.56.3.1}{Here\040we\040go}{subsection.56.3}% 874
\BOOKMARK [2][-]{subsection.56.4}{I\040repent\040from\040being\040liberal\040and\040ever\040endorsing\040LGBT\040or\040idolatry}{section.56}% 875
\BOOKMARK [3][-]{subsubsection.56.4.1}{Endorsing\040sinful\040things\040endorses\040people\040to\040become\040enslaved\040by\040sin\040/\040stuck\040in\040falsehood}{subsection.56.4}% 876
\BOOKMARK [3][-]{subsubsection.56.4.2}{Endorsing\040sinful\040behavior\040welcomes\040demons}{subsection.56.4}% 877
\BOOKMARK [3][-]{subsubsection.56.4.3}{Personal\040holiness}{subsection.56.4}% 878
\BOOKMARK [1][-]{section.57}{The\040law\040of\040liberty}{}% 879
\BOOKMARK [2][-]{subsection.57.1}{The\040Torah\040isn't\040contrary\040to\040the\040promises\040of\040God,\040including\040justification\040by\040faith}{section.57}% 880
\BOOKMARK [2][-]{subsection.57.2}{Submitting\040to\040God\040is\040submitting\040to\040Christ}{section.57}% 881
\BOOKMARK [2][-]{subsection.57.3}{The\040freedom\040Christ\040gives\040us\040involves\040obeying\040Christ}{section.57}% 882
\BOOKMARK [2][-]{subsection.57.4}{We\040are\040no\040longer\040'under'\040the\040Mosaic\040Law\040but\040we\040have\040freedom\040as\040we\040are\040led\040by\040the\040Spirit}{section.57}% 883
\BOOKMARK [2][-]{subsection.57.5}{Submitting\040to\040God's\040righteousness\040involves\040obeying\040Jesus\040because\040Jesus\040is\040God's\040righteousness}{section.57}% 884
\BOOKMARK [1][-]{section.58}{Both\040God\040the\040Father\040and\040God\040the\040Son\040raise\040the\040dead}{}% 885
\BOOKMARK [2][-]{subsection.58.1}{Leaving\040the\040tomb\040/\040spiritual\040prison\040\(Sheol/Hades\040/\040the\040bad\040place\040in\040Sheol/Hades\)\040which\040was\040a\040result\040of\040disobedience}{section.58}% 886
\BOOKMARK [1][-]{section.59}{The\040resurrection\040at\040the\040second\040coming}{}% 887
\BOOKMARK [2][-]{subsection.59.1}{So\040don't\040be\040in\040Adam,\040but\040be\040in\040Christ,\040because\040all\040in\040Christ\040will\040be\040made\040alive,\040but\040all\040in\040Adam\040will\040perish}{section.59}% 888
\BOOKMARK [2][-]{subsection.59.2}{What\040it\040looks\040like}{section.59}% 889
\BOOKMARK [3][-]{subsubsection.59.2.1}{The\040fiery\040trial\040and\040the\040rapture\040being\040contemporaneous}{subsection.59.2}% 890
\BOOKMARK [3][-]{subsubsection.59.2.2}{The\040resurrection\040of\040the\040just}{subsection.59.2}% 891
\BOOKMARK [3][-]{subsubsection.59.2.3}{The\040natural\040first,\040then\040the\040spiritual}{subsection.59.2}% 892
\BOOKMARK [3][-]{subsubsection.59.2.4}{This\040-\040we\040are\040made\040like\040the\040man\040of\040heaven}{subsection.59.2}% 893
\BOOKMARK [3][-]{subsubsection.59.2.5}{The\040mortal\040puts\040on\040immortality\040\(at\040the\040resurrection\)}{subsection.59.2}% 894
\BOOKMARK [3][-]{subsubsection.59.2.6}{Victory\040over\040sin\040and\040death\040through\040Jesus}{subsection.59.2}% 895
\BOOKMARK [3][-]{subsubsection.59.2.7}{No\040lust/corruption\040in\040heaven.\040The\040divine\040nature\040does\040not\040have\040lust/corruption}{subsection.59.2}% 896
\BOOKMARK [3][-]{subsubsection.59.2.8}{Incorruptible\040inheritance}{subsection.59.2}% 897
\BOOKMARK [1][-]{section.60}{We're\040not\040called\040to\040agree\040with\040sinners\040but\040to\040show\040them\040the\040light}{}% 898
\BOOKMARK [2][-]{subsection.60.1}{Jesus'\040company\040with\040sinners\040was\040to\040bring\040them\040to\040repentance,\040and\040from\040darkness\040to\040light}{section.60}% 899
\BOOKMARK [2][-]{subsection.60.2}{We\040must\040disagree\040with\040evil,\040and\040show\040people\040the\040light\040of\040the\040Gospel}{section.60}% 900
\BOOKMARK [3][-]{subsubsection.60.2.1}{Friendship\040with\040the\040world\040is\040emnity\040to\040God}{subsection.60.2}% 901
\BOOKMARK [3][-]{subsubsection.60.2.2}{We\040must\040desire\040to\040live\040a\040godly\040life\040in\040Christ\040Jesus\040and\040that\040goes\040against\040the\040pattern\040of\040the\040world}{subsection.60.2}% 902
\BOOKMARK [1][-]{section.61}{Commandments\040of\040God}{}% 903
\BOOKMARK [2][-]{subsection.61.1}{Commandments\040of\040Father\040God\040in\040the\040New\040Testament:}{section.61}% 904
\BOOKMARK [2][-]{subsection.61.2}{Commandments\040of\040Jesus\040\(which\040are\040from\040God\)}{section.61}% 905
\BOOKMARK [2][-]{subsection.61.3}{Precepts\040of\040Paul}{section.61}% 906
\BOOKMARK [2][-]{subsection.61.4}{Do\040not\040be\040unequally\040yoked\040with\040unbelievers}{section.61}% 907
\BOOKMARK [1][-]{section.62}{More\040commandments\040of\040Jesus\040\(which\040are\040all\040from\040God\)}{}% 908
\BOOKMARK [2][-]{subsection.62.1}{From\040the\040gospel\040of\040Matthew}{section.62}% 909
\BOOKMARK [3][-]{subsubsection.62.1.1}{Do\040the\040will\040of\040Father\040God\040to\040enter\040heaven}{subsection.62.1}% 910
\BOOKMARK [3][-]{subsubsection.62.1.2}{Amend\040your\040lives,\040repent\040from\040sin}{subsection.62.1}% 911
\BOOKMARK [3][-]{subsubsection.62.1.3}{Follow\040Jesus}{subsection.62.1}% 912
\BOOKMARK [3][-]{subsubsection.62.1.4}{Rejoice\040when\040persecuted,\040and\040slandered\040on\040Jesus'\040account}{subsection.62.1}% 913
\BOOKMARK [3][-]{subsubsection.62.1.5}{Let\040your\040light\040\(good\040works\)\040shine\040before\040others\040so\040they\040may\040give\040glory\040to\040Father\040God}{subsection.62.1}% 914
\BOOKMARK [3][-]{subsubsection.62.1.6}{}{subsection.62.1}% 915
\BOOKMARK [3][-]{subsubsection.62.1.7}{}{subsection.62.1}% 916
\BOOKMARK [3][-]{subsubsection.62.1.8}{Do\040not\040swear\040an\040oath\040at\040all}{subsection.62.1}% 917
\BOOKMARK [3][-]{subsubsection.62.1.9}{Do\040not\040render\040evil\040for\040evil}{subsection.62.1}% 918
\BOOKMARK [3][-]{subsubsection.62.1.10}{Overcome\040evil\040with\040good}{subsection.62.1}% 919
\BOOKMARK [3][-]{subsubsection.62.1.11}{Give\040to\040the\040one\040who\040begs\040from\040you,\040and\040do\040not\040refuse\040the\040one\040who\040would\040borrow\040from\040you}{subsection.62.1}% 920
\BOOKMARK [3][-]{subsubsection.62.1.12}{Love\040your\040enemies}{subsection.62.1}% 921
\BOOKMARK [3][-]{subsubsection.62.1.13}{Do\040your\040good\040not\040to\040get\040some\040kind\040of\040earthly\040praise}{subsection.62.1}% 922
\BOOKMARK [3][-]{subsubsection.62.1.14}{Be\040merciful}{subsection.62.1}% 923
\BOOKMARK [3][-]{subsubsection.62.1.15}{How\040to\040pray}{subsection.62.1}% 924
\BOOKMARK [3][-]{subsubsection.62.1.16}{How\040to\040fast}{subsection.62.1}% 925
\BOOKMARK [3][-]{subsubsection.62.1.17}{Lay\040up\040treasure\040in\040heaven,\040not\040on\040earth\040-\040have\040your\040heart\040in\040heaven,\040not\040on\040earth}{subsection.62.1}% 926
\BOOKMARK [3][-]{subsubsection.62.1.18}{Trust\040in\040God\040to\040provide}{subsection.62.1}% 927
\BOOKMARK [3][-]{subsubsection.62.1.19}{Seek\040first\040the\040Kingdom\040of\040God\040and\040His\040righteousness}{subsection.62.1}% 928
\BOOKMARK [3][-]{subsubsection.62.1.20}{Do\040not\040judge\040unless\040you\040don't\040mind\040being\040judged\040by\040the\040same\040judgement}{subsection.62.1}% 929
\BOOKMARK [3][-]{subsubsection.62.1.21}{}{subsection.62.1}% 930
\BOOKMARK [3][-]{subsubsection.62.1.22}{}{subsection.62.1}% 931
\BOOKMARK [3][-]{subsubsection.62.1.23}{Ask\040and\040seek}{subsection.62.1}% 932
\BOOKMARK [3][-]{subsubsection.62.1.24}{Golden\040Rule}{subsection.62.1}% 933
\BOOKMARK [3][-]{subsubsection.62.1.25}{Enter\040by\040the\040narrow\040gate}{subsection.62.1}% 934
\BOOKMARK [3][-]{subsubsection.62.1.26}{Beware\040of\040false\040prophets}{subsection.62.1}% 935
\BOOKMARK [3][-]{subsubsection.62.1.27}{Follow\040Jesus}{subsection.62.1}% 936
\BOOKMARK [3][-]{subsubsection.62.1.28}{}{subsection.62.1}% 937
\BOOKMARK [3][-]{subsubsection.62.1.29}{Rely\040on\040God's\040mercy\040continually,\040and\040have\040mercy\040on\040others}{subsection.62.1}% 938
\BOOKMARK [3][-]{subsubsection.62.1.30}{}{subsection.62.1}% 939
\BOOKMARK [3][-]{subsubsection.62.1.31}{}{subsection.62.1}% 940
\BOOKMARK [3][-]{subsubsection.62.1.32}{Pray\040for\040God\040to\040work/extend\040His\040kingdom,\040sending\040laborers}{subsection.62.1}% 941
\BOOKMARK [3][-]{subsubsection.62.1.33}{}{subsection.62.1}% 942
\BOOKMARK [3][-]{subsubsection.62.1.34}{}{subsection.62.1}% 943
\BOOKMARK [3][-]{subsubsection.62.1.35}{As\040Jesus'\040sheep,\040be\040wise\040and\040innocent\040amongst\040'wolves'}{subsection.62.1}% 944
\BOOKMARK [3][-]{subsubsection.62.1.36}{}{subsection.62.1}% 945
\BOOKMARK [3][-]{subsubsection.62.1.37}{}{subsection.62.1}% 946
\BOOKMARK [3][-]{subsubsection.62.1.38}{}{subsection.62.1}% 947
\BOOKMARK [3][-]{subsubsection.62.1.39}{}{subsection.62.1}% 948
\BOOKMARK [3][-]{subsubsection.62.1.40}{}{subsection.62.1}% 949
\BOOKMARK [3][-]{subsubsection.62.1.41}{}{subsection.62.1}% 950
\BOOKMARK [3][-]{subsubsection.62.1.42}{}{subsection.62.1}% 951
\BOOKMARK [3][-]{subsubsection.62.1.43}{}{subsection.62.1}% 952
\BOOKMARK [3][-]{subsubsection.62.1.44}{}{subsection.62.1}% 953
\BOOKMARK [3][-]{subsubsection.62.1.45}{}{subsection.62.1}% 954
\BOOKMARK [3][-]{subsubsection.62.1.46}{}{subsection.62.1}% 955
\BOOKMARK [3][-]{subsubsection.62.1.47}{}{subsection.62.1}% 956
\BOOKMARK [3][-]{subsubsection.62.1.48}{}{subsection.62.1}% 957
\BOOKMARK [3][-]{subsubsection.62.1.49}{}{subsection.62.1}% 958
\BOOKMARK [3][-]{subsubsection.62.1.50}{}{subsection.62.1}% 959
\BOOKMARK [3][-]{subsubsection.62.1.51}{}{subsection.62.1}% 960
\BOOKMARK [3][-]{subsubsection.62.1.52}{}{subsection.62.1}% 961
\BOOKMARK [3][-]{subsubsection.62.1.53}{}{subsection.62.1}% 962
\BOOKMARK [3][-]{subsubsection.62.1.54}{}{subsection.62.1}% 963
\BOOKMARK [3][-]{subsubsection.62.1.55}{}{subsection.62.1}% 964
\BOOKMARK [3][-]{subsubsection.62.1.56}{}{subsection.62.1}% 965
\BOOKMARK [3][-]{subsubsection.62.1.57}{}{subsection.62.1}% 966
\BOOKMARK [3][-]{subsubsection.62.1.58}{}{subsection.62.1}% 967
\BOOKMARK [3][-]{subsubsection.62.1.59}{}{subsection.62.1}% 968
\BOOKMARK [3][-]{subsubsection.62.1.60}{}{subsection.62.1}% 969
\BOOKMARK [3][-]{subsubsection.62.1.61}{Be\040instructed\040by\040Christ}{subsection.62.1}% 970
\BOOKMARK [3][-]{subsubsection.62.1.62}{}{subsection.62.1}% 971
\BOOKMARK [3][-]{subsubsection.62.1.63}{}{subsection.62.1}% 972
\BOOKMARK [3][-]{subsubsection.62.1.64}{}{subsection.62.1}% 973
\BOOKMARK [3][-]{subsubsection.62.1.65}{}{subsection.62.1}% 974
\BOOKMARK [3][-]{subsubsection.62.1.66}{}{subsection.62.1}% 975
\BOOKMARK [3][-]{subsubsection.62.1.67}{}{subsection.62.1}% 976
\BOOKMARK [3][-]{subsubsection.62.1.68}{Our\040Lord\040is\040the\040Son\040of\040Man,\040and\040we\040should\040be\040ready\040and\040on\040alert}{subsection.62.1}% 977
\BOOKMARK [3][-]{subsubsection.62.1.69}{}{subsection.62.1}% 978
\BOOKMARK [3][-]{subsubsection.62.1.70}{}{subsection.62.1}% 979
\BOOKMARK [3][-]{subsubsection.62.1.71}{}{subsection.62.1}% 980
\BOOKMARK [3][-]{subsubsection.62.1.72}{}{subsection.62.1}% 981
\BOOKMARK [3][-]{subsubsection.62.1.73}{}{subsection.62.1}% 982
\BOOKMARK [2][-]{subsection.62.2}{From\040the\040gospel\040of\040Mark}{section.62}% 983
\BOOKMARK [3][-]{subsubsection.62.2.1}{}{subsection.62.2}% 984
\BOOKMARK [3][-]{subsubsection.62.2.2}{Follow\040me,\040and\040I\040will\040make\040you\040become\040fishers\040of\040men}{subsection.62.2}% 985
\BOOKMARK [3][-]{subsubsection.62.2.3}{}{subsection.62.2}% 986
\BOOKMARK [3][-]{subsubsection.62.2.4}{}{subsection.62.2}% 987
\BOOKMARK [3][-]{subsubsection.62.2.5}{}{subsection.62.2}% 988
\BOOKMARK [3][-]{subsubsection.62.2.6}{}{subsection.62.2}% 989
\BOOKMARK [3][-]{subsubsection.62.2.7}{}{subsection.62.2}% 990
\BOOKMARK [3][-]{subsubsection.62.2.8}{}{subsection.62.2}% 991
\BOOKMARK [3][-]{subsubsection.62.2.9}{}{subsection.62.2}% 992
\BOOKMARK [3][-]{subsubsection.62.2.10}{}{subsection.62.2}% 993
\BOOKMARK [3][-]{subsubsection.62.2.11}{}{subsection.62.2}% 994
\BOOKMARK [3][-]{subsubsection.62.2.12}{}{subsection.62.2}% 995
\BOOKMARK [3][-]{subsubsection.62.2.13}{}{subsection.62.2}% 996
\BOOKMARK [3][-]{subsubsection.62.2.14}{}{subsection.62.2}% 997
\BOOKMARK [3][-]{subsubsection.62.2.15}{}{subsection.62.2}% 998
\BOOKMARK [3][-]{subsubsection.62.2.16}{}{subsection.62.2}% 999
\BOOKMARK [3][-]{subsubsection.62.2.17}{}{subsection.62.2}% 1000