-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_shift_index.txt
3429 lines (3429 loc) · 214 KB
/
test_shift_index.txt
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
jeremiah jeremiah$ eremiah$j remiah$je emiah$jer miah$jere iah$jerem ah$jeremi h$jeremia $jeremiah
11 11$ 1$1 $11
the the$ he$t e$th $the
words words$ ords$w rds$wo ds$wor s$word $words
of of$ f$o $of
son son$ on$s n$so $son
hilkiah hilkiah$ ilkiah$h lkiah$hi kiah$hil iah$hilk ah$hilki h$hilkia $hilkiah
priests priests$ riests$p iests$pr ests$pri sts$prie ts$pries s$priest $priests
that that$ hat$t at$th t$tha $that
were were$ ere$w re$we e$wer $were
in in$ n$i $in
anathoth anathoth$ nathoth$a athoth$an thoth$ana hoth$anat oth$anath th$anatho h$anathot $anathoth
land land$ and$l nd$la d$lan $land
benjamin benjamin$ enjamin$b njamin$be jamin$ben amin$benj min$benja in$benjam n$benjami $benjamin
12 12$ 2$1 $12
to to$ o$t $to
whom whom$ hom$w om$wh m$who $whom
word word$ ord$w rd$wo d$wor $word
lord lord$ ord$l rd$lo d$lor $lord
came came$ ame$c me$ca e$cam $came
days days$ ays$d ys$da s$day $days
josiah josiah$ osiah$j siah$jo iah$jos ah$josi h$josia $josiah
amon amon$ mon$a on$am n$amo $amon
king king$ ing$k ng$ki g$kin $king
judah judah$ udah$j dah$ju ah$jud h$juda $judah
thirteenth thirteenth$ hirteenth$t irteenth$th rteenth$thi teenth$thir eenth$thirt enth$thirte nth$thirtee th$thirteen h$thirteent $thirteenth
year year$ ear$y ar$ye r$yea $year
his his$ is$h s$hi $his
reign reign$ eign$r ign$re gn$rei n$reig $reign
13 13$ 3$1 $13
it it$ t$i $it
also also$ lso$a so$al o$als $also
jehoiakim jehoiakim$ ehoiakim$j hoiakim$je oiakim$jeh iakim$jeho akim$jehoi kim$jehoia im$jehoiak m$jehoiaki $jehoiakim
unto unto$ nto$u to$un o$unt $unto
end end$ nd$e d$en $end
eleventh eleventh$ leventh$e eventh$el venth$ele enth$elev nth$eleve th$eleven h$elevent $eleventh
zedekiah zedekiah$ edekiah$z dekiah$ze ekiah$zed kiah$zede iah$zedek ah$zedeki h$zedekia $zedekiah
carrying carrying$ arrying$c rrying$ca rying$car ying$carr ing$carry ng$carryi g$carryin $carrying
away away$ way$a ay$aw y$awa $away
jerusalem jerusalem$ erusalem$j rusalem$je usalem$jer salem$jeru alem$jerus lem$jerusa em$jerusal m$jerusale $jerusalem
captive captive$ aptive$c ptive$ca tive$cap ive$capt ve$capti e$captiv $captive
fifth fifth$ ifth$f fth$fi th$fif h$fift $fifth
month month$ onth$m nth$mo th$mon h$mont $month
14 14$ 4$1 $14
then then$ hen$t en$th n$the $then
me me$ e$m $me
saying saying$ aying$s ying$sa ing$say ng$sayi g$sayin $saying
15 15$ 5$1 $15
before before$ efore$b fore$be ore$bef re$befo e$befor $before
i i$ $i
formed formed$ ormed$f rmed$fo med$for ed$form d$forme $formed
thee thee$ hee$t ee$th e$the $thee
belly belly$ elly$b lly$be ly$bel y$bell $belly
knew knew$ new$k ew$kn w$kne $knew
and and$ nd$a d$an $and
thou thou$ hou$t ou$th u$tho $thou
camest camest$ amest$c mest$ca est$cam st$came t$cames $camest
forth forth$ orth$f rth$fo th$for h$fort $forth
out out$ ut$o t$ou $out
womb womb$ omb$w mb$wo b$wom $womb
sanctified sanctified$ anctified$s nctified$sa ctified$san tified$sanc ified$sanct fied$sancti ied$sanctif ed$sanctifi d$sanctifie $sanctified
ordained ordained$ rdained$o dained$or ained$ord ined$orda ned$ordai ed$ordain d$ordaine $ordained
a a$ $a
prophet prophet$ rophet$p ophet$pr phet$pro het$prop et$proph t$prophe $prophet
nations nations$ ations$n tions$na ions$nat ons$nati ns$natio s$nation $nations
16 16$ 6$1 $16
said said$ aid$s id$sa d$sai $said
ah ah$ h$a $ah
god god$ od$g d$go $god
behold behold$ ehold$b hold$be old$beh ld$beho d$behol $behold
cannot cannot$ annot$c nnot$ca not$can ot$cann t$canno $cannot
speak speak$ peak$s eak$sp ak$spe k$spea $speak
for for$ or$f r$fo $for
am am$ m$a $am
child child$ hild$c ild$ch ld$chi d$chil $child
17 17$ 7$1 $17
but but$ ut$b t$bu $but
say say$ ay$s y$sa $say
not not$ ot$n t$no $not
shalt shalt$ halt$s alt$sh lt$sha t$shal $shalt
go go$ o$g $go
all all$ ll$a l$al $all
shall shall$ hall$s all$sh ll$sha l$shal $shall
send send$ end$s nd$se d$sen $send
whatsoever whatsoever$ hatsoever$w atsoever$wh tsoever$wha soever$what oever$whats ever$whatso ver$whatsoe er$whatsoev r$whatsoeve $whatsoever
command command$ ommand$c mmand$co mand$com and$comm nd$comma d$comman $command
18 18$ 8$1 $18
be be$ e$b $be
afraid afraid$ fraid$a raid$af aid$afr id$afra d$afrai $afraid
their their$ heir$t eir$th ir$the r$thei $their
faces faces$ aces$f ces$fa es$fac s$face $faces
with with$ ith$w th$wi h$wit $with
deliver deliver$ eliver$d liver$de iver$del ver$deli er$deliv r$delive $deliver
saith saith$ aith$s ith$sa th$sai h$sait $saith
19 19$ 9$1 $19
put put$ ut$p t$pu $put
hand hand$ and$h nd$ha d$han $hand
touched touched$ ouched$t uched$to ched$tou hed$touc ed$touch d$touche $touched
my my$ y$m $my
mouth mouth$ outh$m uth$mo th$mou h$mout $mouth
have have$ ave$h ve$ha e$hav $have
thy thy$ hy$t y$th $thy
110 110$ 10$1 0$11 $110
see see$ ee$s e$se $see
this this$ his$t is$th s$thi $this
day day$ ay$d y$da $day
set set$ et$s t$se $set
over over$ ver$o er$ov r$ove $over
kingdoms kingdoms$ ingdoms$k ngdoms$ki gdoms$kin doms$king oms$kingd ms$kingdo s$kingdom $kingdoms
root root$ oot$r ot$ro t$roo $root
pull pull$ ull$p ll$pu l$pul $pull
down down$ own$d wn$do n$dow $down
destroy destroy$ estroy$d stroy$de troy$des roy$dest oy$destr y$destro $destroy
throw throw$ hrow$t row$th ow$thr w$thro $throw
build build$ uild$b ild$bu ld$bui d$buil $build
plant plant$ lant$p ant$pl nt$pla t$plan $plant
111 111$ 11$1 1$11 $111
moreover moreover$ oreover$m reover$mo eover$mor over$more ver$moreo er$moreov r$moreove $moreover
what what$ hat$w at$wh t$wha $what
seest seest$ eest$s est$se st$see t$sees $seest
rod rod$ od$r d$ro $rod
an an$ n$a $an
almond almond$ lmond$a mond$al ond$alm nd$almo d$almon $almond
tree tree$ ree$t ee$tr e$tre $tree
112 112$ 12$1 2$11 $112
hast hast$ ast$h st$ha t$has $hast
well well$ ell$w ll$we l$wel $well
seen seen$ een$s en$se n$see $seen
will will$ ill$w ll$wi l$wil $will
hasten hasten$ asten$h sten$ha ten$has en$hast n$haste $hasten
perform perform$ erform$p rform$pe form$per orm$perf rm$perfo m$perfor $perform
113 113$ 13$1 3$11 $113
second second$ econd$s cond$se ond$sec nd$seco d$secon $second
time time$ ime$t me$ti e$tim $time
seething seething$ eething$s ething$se thing$see hing$seet ing$seeth ng$seethi g$seethin $seething
pot pot$ ot$p t$po $pot
face face$ ace$f ce$fa e$fac $face
thereof thereof$ hereof$t ereof$th reof$the eof$ther of$there f$thereo $thereof
is is$ s$i $is
toward toward$ oward$t ward$to ard$tow rd$towa d$towar $toward
north north$ orth$n rth$no th$nor h$nort $north
114 114$ 14$1 4$11 $114
evil evil$ vil$e il$ev l$evi $evil
break break$ reak$b eak$br ak$bre k$brea $break
upon upon$ pon$u on$up n$upo $upon
inhabitants inhabitants$ nhabitants$i habitants$in abitants$inh bitants$inha itants$inhab tants$inhabi ants$inhabit nts$inhabita ts$inhabitan s$inhabitant $inhabitants
115 115$ 15$1 5$11 $115
lo lo$ o$l $lo
call call$ all$c ll$ca l$cal $call
families families$ amilies$f milies$fa ilies$fam lies$fami ies$famil es$famili s$familie $families
they they$ hey$t ey$th y$the $they
come come$ ome$c me$co e$com $come
every every$ very$e ery$ev ry$eve y$ever $every
one one$ ne$o e$on $one
throne throne$ hrone$t rone$th one$thr ne$thro e$thron $throne
at at$ t$a $at
entering entering$ ntering$e tering$en ering$ent ring$ente ing$enter ng$enteri g$enterin $entering
gates gates$ ates$g tes$ga es$gat s$gate $gates
against against$ gainst$a ainst$ag inst$aga nst$agai st$again t$agains $against
walls walls$ alls$w lls$wa ls$wal s$wall $walls
round round$ ound$r und$ro nd$rou d$roun $round
about about$ bout$a out$ab ut$abo t$abou $about
cities cities$ ities$c ties$ci ies$cit es$citi s$citie $cities
116 116$ 16$1 6$11 $116
utter utter$ tter$u ter$ut er$utt r$utte $utter
judgments judgments$ udgments$j dgments$ju gments$jud ments$judg ents$judgm nts$judgme ts$judgmen s$judgment $judgments
them them$ hem$t em$th m$the $them
touching touching$ ouching$t uching$to ching$tou hing$touc ing$touch ng$touchi g$touchin $touching
wickedness wickedness$ ickedness$w ckedness$wi kedness$wic edness$wick dness$wicke ness$wicked ess$wickedn ss$wickedne s$wickednes $wickedness
who who$ ho$w o$wh $who
forsaken forsaken$ orsaken$f rsaken$fo saken$for aken$fors ken$forsa en$forsak n$forsake $forsaken
burned burned$ urned$b rned$bu ned$bur ed$burn d$burne $burned
incense incense$ ncense$i cense$in ense$inc nse$ince se$incen e$incens $incense
other other$ ther$o her$ot er$oth r$othe $other
gods gods$ ods$g ds$go s$god $gods
worshipped worshipped$ orshipped$w rshipped$wo shipped$wor hipped$wors ipped$worsh pped$worshi ped$worship ed$worshipp d$worshippe $worshipped
works works$ orks$w rks$wo ks$wor s$work $works
own own$ wn$o n$ow $own
hands hands$ ands$h nds$ha ds$han s$hand $hands
117 117$ 17$1 7$11 $117
therefore therefore$ herefore$t erefore$th refore$the efore$ther fore$there ore$theref re$therefo e$therefor $therefore
gird gird$ ird$g rd$gi d$gir $gird
up up$ p$u $up
loins loins$ oins$l ins$lo ns$loi s$loin $loins
arise arise$ rise$a ise$ar se$ari e$aris $arise
dismayed dismayed$ ismayed$d smayed$di mayed$dis ayed$dism yed$disma ed$dismay d$dismaye $dismayed
lest lest$ est$l st$le t$les $lest
confound confound$ onfound$c nfound$co found$con ound$conf und$confo nd$confou d$confoun $confound
118 118$ 18$1 8$11 $118
made made$ ade$m de$ma e$mad $made
defenced defenced$ efenced$d fenced$de enced$def nced$defe ced$defen ed$defenc d$defence $defenced
city city$ ity$c ty$ci y$cit $city
iron iron$ ron$i on$ir n$iro $iron
pillar pillar$ illar$p llar$pi lar$pil ar$pill r$pilla $pillar
brasen brasen$ rasen$b asen$br sen$bra en$bras n$brase $brasen
whole whole$ hole$w ole$wh le$who e$whol $whole
kings kings$ ings$k ngs$ki gs$kin s$king $kings
princes princes$ rinces$p inces$pr nces$pri ces$prin es$princ s$prince $princes
people people$ eople$p ople$pe ple$peo le$peop e$peopl $people
119 119$ 19$1 9$11 $119
fight fight$ ight$f ght$fi ht$fig t$figh $fight
prevail prevail$ revail$p evail$pr vail$pre ail$prev il$preva l$prevai $prevail
21 21$ 1$2 $21
22 22$ 2$2 $22
cry cry$ ry$c y$cr $cry
ears ears$ ars$e rs$ea s$ear $ears
thus thus$ hus$t us$th s$thu $thus
remember remember$ emember$r member$re ember$rem mber$reme ber$remem er$rememb r$remembe $remember
kindness kindness$ indness$k ndness$ki dness$kin ness$kind ess$kindn ss$kindne s$kindnes $kindness
youth youth$ outh$y uth$yo th$you h$yout $youth
love love$ ove$l ve$lo e$lov $love
thine thine$ hine$t ine$th ne$thi e$thin $thine
espousals espousals$ spousals$e pousals$es ousals$esp usals$espo sals$espou als$espous ls$espousa s$espousal $espousals
when when$ hen$w en$wh n$whe $when
wentest wentest$ entest$w ntest$we test$wen est$went st$wente t$wentes $wentest
after after$ fter$a ter$af er$aft r$afte $after
wilderness wilderness$ ilderness$w lderness$wi derness$wil erness$wild rness$wilde ness$wilder ess$wildern ss$wilderne s$wildernes $wilderness
was was$ as$w s$wa $was
sown sown$ own$s wn$so n$sow $sown
23 23$ 3$2 $23
israel israel$ srael$i rael$is ael$isr el$isra l$israe $israel
holiness holiness$ oliness$h liness$ho iness$hol ness$holi ess$holin ss$holine s$holines $holiness
firstfruits firstfruits$ irstfruits$f rstfruits$fi stfruits$fir tfruits$firs fruits$first ruits$firstf uits$firstfr its$firstfru ts$firstfrui s$firstfruit $firstfruits
increase increase$ ncrease$i crease$in rease$inc ease$incr ase$incre se$increa e$increas $increase
devour devour$ evour$d vour$de our$dev ur$devo r$devou $devour
him him$ im$h m$hi $him
offend offend$ ffend$o fend$of end$off nd$offe d$offen $offend
24 24$ 4$2 $24
hear hear$ ear$h ar$he r$hea $hear
ye ye$ e$y $ye
o o$ $o
house house$ ouse$h use$ho se$hou e$hous $house
jacob jacob$ acob$j cob$ja ob$jac b$jaco $jacob
25 25$ 5$2 $25
iniquity iniquity$ niquity$i iquity$in quity$ini uity$iniq ity$iniqu ty$iniqui y$iniquit $iniquity
your your$ our$y ur$yo r$you $your
fathers fathers$ athers$f thers$fa hers$fat ers$fath rs$fathe s$father $fathers
found found$ ound$f und$fo nd$fou d$foun $found
are are$ re$a e$ar $are
gone gone$ one$g ne$go e$gon $gone
far far$ ar$f r$fa $far
from from$ rom$f om$fr m$fro $from
walked walked$ alked$w lked$wa ked$wal ed$walk d$walke $walked
vanity vanity$ anity$v nity$va ity$van ty$vani y$vanit $vanity
become become$ ecome$b come$be ome$bec me$beco e$becom $become
vain vain$ ain$v in$va n$vai $vain
26 26$ 6$2 $26
neither neither$ either$n ither$ne ther$nei her$neit er$neith r$neithe $neither
where where$ here$w ere$wh re$whe e$wher $where
brought brought$ rought$b ought$br ught$bro ght$brou ht$broug t$brough $brought
us us$ s$u $us
egypt egypt$ gypt$e ypt$eg pt$egy t$egyp $egypt
led led$ ed$l d$le $led
through through$ hrough$t rough$th ough$thr ugh$thro gh$throu h$throug $through
deserts deserts$ eserts$d serts$de erts$des rts$dese ts$deser s$desert $deserts
pits pits$ its$p ts$pi s$pit $pits
drought drought$ rought$d ought$dr ught$dro ght$drou ht$droug t$drough $drought
shadow shadow$ hadow$s adow$sh dow$sha ow$shad w$shado $shadow
death death$ eath$d ath$de th$dea h$deat $death
no no$ o$n $no
man man$ an$m n$ma $man
passed passed$ assed$p ssed$pa sed$pas ed$pass d$passe $passed
dwelt dwelt$ welt$d elt$dw lt$dwe t$dwel $dwelt
27 27$ 7$2 $27
you you$ ou$y u$yo $you
into into$ nto$i to$in o$int $into
plentiful plentiful$ lentiful$p entiful$pl ntiful$ple tiful$plen iful$plent ful$plenti ul$plentif l$plentifu $plentiful
country country$ ountry$c untry$co ntry$cou try$coun ry$count y$countr $country
eat eat$ at$e t$ea $eat
fruit fruit$ ruit$f uit$fr it$fru t$frui $fruit
goodness goodness$ oodness$g odness$go dness$goo ness$good ess$goodn ss$goodne s$goodnes $goodness
entered entered$ ntered$e tered$en ered$ent red$ente ed$enter d$entere $entered
defiled defiled$ efiled$d filed$de iled$def led$defi ed$defil d$defile $defiled
mine mine$ ine$m ne$mi e$min $mine
heritage heritage$ eritage$h ritage$he itage$her tage$heri age$herit ge$herita e$heritag $heritage
abomination abomination$ bomination$a omination$ab mination$abo ination$abom nation$abomi ation$abomin tion$abomina ion$abominat on$abominati n$abominatio $abomination
28 28$ 8$2 $28
handle handle$ andle$h ndle$ha dle$han le$hand e$handl $handle
law law$ aw$l w$la $law
pastors pastors$ astors$p stors$pa tors$pas ors$past rs$pasto s$pastor $pastors
transgressed transgressed$ ransgressed$t ansgressed$tr nsgressed$tra sgressed$tran gressed$trans ressed$transg essed$transgr ssed$transgre sed$transgres ed$transgress d$transgresse $transgressed
prophets prophets$ rophets$p ophets$pr phets$pro hets$prop ets$proph ts$prophe s$prophet $prophets
prophesied prophesied$ rophesied$p ophesied$pr phesied$pro hesied$prop esied$proph sied$prophe ied$prophes ed$prophesi d$prophesie $prophesied
by by$ y$b $by
baal baal$ aal$b al$ba l$baa $baal
things things$ hings$t ings$th ngs$thi gs$thin s$thing $things
do do$ o$d $do
profit profit$ rofit$p ofit$pr fit$pro it$prof t$profi $profit
29 29$ 9$2 $29
wherefore wherefore$ herefore$w erefore$wh refore$whe efore$wher fore$where ore$wheref re$wherefo e$wherefor $wherefore
yet yet$ et$y t$ye $yet
plead plead$ lead$p ead$pl ad$ple d$plea $plead
childrens childrens$ hildrens$c ildrens$ch ldrens$chi drens$chil rens$child ens$childr ns$childre s$children $childrens
children children$ hildren$c ildren$ch ldren$chi dren$chil ren$child en$childr n$childre $children
210 210$ 10$2 0$21 $210
pass pass$ ass$p ss$pa s$pas $pass
isles isles$ sles$i les$is es$isl s$isle $isles
chittim chittim$ hittim$c ittim$ch ttim$chi tim$chit im$chitt m$chitti $chittim
kedar kedar$ edar$k dar$ke ar$ked r$keda $kedar
consider consider$ onsider$c nsider$co sider$con ider$cons der$consi er$consid r$conside $consider
diligently diligently$ iligently$d ligently$di igently$dil gently$dili ently$dilig ntly$dilige tly$diligen ly$diligent y$diligentl $diligently
if if$ f$i $if
there there$ here$t ere$th re$the e$ther $there
such such$ uch$s ch$su h$suc $such
thing thing$ hing$t ing$th ng$thi g$thin $thing
211 211$ 11$2 1$21 $211
hath hath$ ath$h th$ha h$hat $hath
nation nation$ ation$n tion$na ion$nat on$nati n$natio $nation
changed changed$ hanged$c anged$ch nged$cha ged$chan ed$chang d$change $changed
which which$ hich$w ich$wh ch$whi h$whic $which
glory glory$ lory$g ory$gl ry$glo y$glor $glory
doth doth$ oth$d th$do h$dot $doth
212 212$ 12$2 2$21 $212
astonished astonished$ stonished$a tonished$as onished$ast nished$asto ished$aston shed$astoni hed$astonis ed$astonish d$astonishe $astonished
heavens heavens$ eavens$h avens$he vens$hea ens$heav ns$heave s$heaven $heavens
horribly horribly$ orribly$h rribly$ho ribly$hor ibly$horr bly$horri ly$horrib y$horribl $horribly
very very$ ery$v ry$ve y$ver $very
desolate desolate$ esolate$d solate$de olate$des late$deso ate$desol te$desola e$desolat $desolate
213 213$ 13$2 3$21 $213
committed committed$ ommitted$c mmitted$co mitted$com itted$comm tted$commi ted$commit ed$committ d$committe $committed
two two$ wo$t o$tw $two
evils evils$ vils$e ils$ev ls$evi s$evil $evils
fountain fountain$ ountain$f untain$fo ntain$fou tain$foun ain$fount in$founta n$fountai $fountain
living living$ iving$l ving$li ing$liv ng$livi g$livin $living
waters waters$ aters$w ters$wa ers$wat rs$wate s$water $waters
hewed hewed$ ewed$h wed$he ed$hew d$hewe $hewed
cisterns cisterns$ isterns$c sterns$ci terns$cis erns$cist rns$ciste ns$cister s$cistern $cisterns
broken broken$ roken$b oken$br ken$bro en$brok n$broke $broken
can can$ an$c n$ca $can
hold hold$ old$h ld$ho d$hol $hold
water water$ ater$w ter$wa er$wat r$wate $water
214 214$ 14$2 4$21 $214
servant servant$ ervant$s rvant$se vant$ser ant$serv nt$serva t$servan $servant
he he$ e$h $he
homeborn homeborn$ omeborn$h meborn$ho eborn$hom born$home orn$homeb rn$homebo n$homebor $homeborn
slave slave$ lave$s ave$sl ve$sla e$slav $slave
why why$ hy$w y$wh $why
spoiled spoiled$ poiled$s oiled$sp iled$spo led$spoi ed$spoil d$spoile $spoiled
215 215$ 15$2 5$21 $215
young young$ oung$y ung$yo ng$you g$youn $young
lions lions$ ions$l ons$li ns$lio s$lion $lions
roared roared$ oared$r ared$ro red$roa ed$roar d$roare $roared
yelled yelled$ elled$y lled$ye led$yel ed$yell d$yelle $yelled
waste waste$ aste$w ste$wa te$was e$wast $waste
without without$ ithout$w thout$wi hout$wit out$with ut$witho t$withou $without
inhabitant inhabitant$ nhabitant$i habitant$in abitant$inh bitant$inha itant$inhab tant$inhabi ant$inhabit nt$inhabita t$inhabitan $inhabitant
216 216$ 16$2 6$21 $216
noph noph$ oph$n ph$no h$nop $noph
tahapanes tahapanes$ ahapanes$t hapanes$ta apanes$tah panes$taha anes$tahap nes$tahapa es$tahapan s$tahapane $tahapanes
crown crown$ rown$c own$cr wn$cro n$crow $crown
head head$ ead$h ad$he d$hea $head
217 217$ 17$2 7$21 $217
procured procured$ rocured$p ocured$pr cured$pro ured$proc red$procu ed$procur d$procure $procured
thyself thyself$ hyself$t yself$th self$thy elf$thys lf$thyse f$thysel $thyself
way way$ ay$w y$wa $way
218 218$ 18$2 8$21 $218
now now$ ow$n w$no $now
drink drink$ rink$d ink$dr nk$dri k$drin $drink
sihor sihor$ ihor$s hor$si or$sih r$siho $sihor
or or$ r$o $or
assyria assyria$ ssyria$a syria$as yria$ass ria$assy ia$assyr a$assyri $assyria
river river$ iver$r ver$ri er$riv r$rive $river
219 219$ 19$2 9$21 $219
correct correct$ orrect$c rrect$co rect$cor ect$corr ct$corre t$correc $correct
backslidings backslidings$ ackslidings$b ckslidings$ba kslidings$bac slidings$back lidings$backs idings$backsl dings$backsli ings$backslid ngs$backslidi gs$backslidin s$backsliding $backslidings
reprove reprove$ eprove$r prove$re rove$rep ove$repr ve$repro e$reprov $reprove
know know$ now$k ow$kn w$kno $know
bitter bitter$ itter$b tter$bi ter$bit er$bitt r$bitte $bitter
fear fear$ ear$f ar$fe r$fea $fear
hosts hosts$ osts$h sts$ho ts$hos s$host $hosts
220 220$ 20$2 0$22 $220
old old$ ld$o d$ol $old
yoke yoke$ oke$y ke$yo e$yok $yoke
burst burst$ urst$b rst$bu st$bur t$burs $burst
bands bands$ ands$b nds$ba ds$ban s$band $bands
saidst saidst$ aidst$s idst$sa dst$sai st$said t$saids $saidst
transgress transgress$ ransgress$t ansgress$tr nsgress$tra sgress$tran gress$trans ress$transg ess$transgr ss$transgre s$transgres $transgress
high high$ igh$h gh$hi h$hig $high
hill hill$ ill$h ll$hi l$hil $hill
under under$ nder$u der$un er$und r$unde $under
green green$ reen$g een$gr en$gre n$gree $green
wanderest wanderest$ anderest$w nderest$wa derest$wan erest$wand rest$wande est$wander st$wandere t$wanderes $wanderest
playing playing$ laying$p aying$pl ying$pla ing$play ng$playi g$playin $playing
harlot harlot$ arlot$h rlot$ha lot$har ot$harl t$harlo $harlot
221 221$ 21$2 1$22 $221
had had$ ad$h d$ha $had
planted planted$ lanted$p anted$pl nted$pla ted$plan ed$plant d$plante $planted
noble noble$ oble$n ble$no le$nob e$nobl $noble
vine vine$ ine$v ne$vi e$vin $vine
wholly wholly$ holly$w olly$wh lly$who ly$whol y$wholl $wholly
right right$ ight$r ght$ri ht$rig t$righ $right
seed seed$ eed$s ed$se d$see $seed
how how$ ow$h w$ho $how
art art$ rt$a t$ar $art
turned turned$ urned$t rned$tu ned$tur ed$turn d$turne $turned
degenerate degenerate$ egenerate$d generate$de enerate$deg nerate$dege erate$degen rate$degene ate$degener te$degenera e$degenerat $degenerate
strange strange$ trange$s range$st ange$str nge$stra ge$stran e$strang $strange
222 222$ 22$2 2$22 $222
though though$ hough$t ough$th ugh$tho gh$thou h$thoug $though
wash wash$ ash$w sh$wa h$was $wash
nitre nitre$ itre$n tre$ni re$nit e$nitr $nitre
take take$ ake$t ke$ta e$tak $take
much much$ uch$m ch$mu h$muc $much
soap soap$ oap$s ap$so p$soa $soap
marked marked$ arked$m rked$ma ked$mar ed$mark d$marke $marked
223 223$ 23$2 3$22 $223
canst canst$ anst$c nst$ca st$can t$cans $canst
polluted polluted$ olluted$p lluted$po luted$pol uted$poll ted$pollu ed$pollut d$pollute $polluted
baalim baalim$ aalim$b alim$ba lim$baa im$baal m$baali $baalim
valley valley$ alley$v lley$va ley$val ey$vall y$valle $valley
done done$ one$d ne$do e$don $done
swift swift$ wift$s ift$sw ft$swi t$swif $swift
dromedary dromedary$ romedary$d omedary$dr medary$dro edary$drom dary$drome ary$dromed ry$dromeda y$dromedar $dromedary
traversing traversing$ raversing$t aversing$tr versing$tra ersing$trav rsing$trave sing$traver ing$travers ng$traversi g$traversin $traversing
her her$ er$h r$he $her
ways ways$ ays$w ys$wa s$way $ways
224 224$ 24$2 4$22 $224
wild wild$ ild$w ld$wi d$wil $wild
ass ass$ ss$a s$as $ass
used used$ sed$u ed$us d$use $used
snuffeth snuffeth$ nuffeth$s uffeth$sn ffeth$snu feth$snuf eth$snuff th$snuffe h$snuffet $snuffeth
wind wind$ ind$w nd$wi d$win $wind
pleasure pleasure$ leasure$p easure$pl asure$ple sure$plea ure$pleas re$pleasu e$pleasur $pleasure
occasion occasion$ ccasion$o casion$oc asion$occ sion$occa ion$occas on$occasi n$occasio $occasion
turn turn$ urn$t rn$tu n$tur $turn
seek seek$ eek$s ek$se k$see $seek
weary weary$ eary$w ary$we ry$wea y$wear $weary
themselves themselves$ hemselves$t emselves$th mselves$the selves$them elves$thems lves$themse ves$themsel es$themselv s$themselve $themselves
find find$ ind$f nd$fi d$fin $find
225 225$ 25$2 5$22 $225
withhold withhold$ ithhold$w thhold$wi hhold$wit hold$with old$withh ld$withho d$withhol $withhold
foot foot$ oot$f ot$fo t$foo $foot
being being$ eing$b ing$be ng$bei g$bein $being
unshod unshod$ nshod$u shod$un hod$uns od$unsh d$unsho $unshod
throat throat$ hroat$t roat$th oat$thr at$thro t$throa $throat
thirst thirst$ hirst$t irst$th rst$thi st$thir t$thirs $thirst
hope hope$ ope$h pe$ho e$hop $hope
loved loved$ oved$l ved$lo ed$lov d$love $loved
strangers strangers$ trangers$s rangers$st angers$str ngers$stra gers$stran ers$strang rs$strange s$stranger $strangers
226 226$ 26$2 6$22 $226
as as$ s$a $as
thief thief$ hief$t ief$th ef$thi f$thie $thief
ashamed ashamed$ shamed$a hamed$as amed$ash med$asha ed$asham d$ashame $ashamed
so so$ o$s $so
227 227$ 27$2 7$22 $227
stock stock$ tock$s ock$st ck$sto k$stoc $stock
father father$ ather$f ther$fa her$fat er$fath r$fathe $father
stone stone$ tone$s one$st ne$sto e$ston $stone
back back$ ack$b ck$ba k$bac $back
trouble trouble$ rouble$t ouble$tr uble$tro ble$trou le$troub e$troubl $trouble
save save$ ave$s ve$sa e$sav $save
228 228$ 28$2 8$22 $228
let let$ et$l t$le $let
according according$ ccording$a cording$ac ording$acc rding$acco ding$accor ing$accord ng$accordi g$accordin $according
number number$ umber$n mber$nu ber$num er$numb r$numbe $number
229 229$ 29$2 9$22 $229
230 230$ 30$2 0$23 $230
smitten smitten$ mitten$s itten$sm tten$smi ten$smit en$smitt n$smitte $smitten
received received$ eceived$r ceived$re eived$rec ived$rece ved$recei ed$receiv d$receive $received
correction correction$ orrection$c rrection$co rection$cor ection$corr ction$corre tion$correc ion$correct on$correcti n$correctio $correction
sword sword$ word$s ord$sw rd$swo d$swor $sword
devoured devoured$ evoured$d voured$de oured$dev ured$devo red$devou ed$devour d$devoure $devoured
like like$ ike$l ke$li e$lik $like
destroying destroying$ estroying$d stroying$de troying$des roying$dest oying$destr ying$destro ing$destroy ng$destroyi g$destroyin $destroying
lion lion$ ion$l on$li n$lio $lion
231 231$ 31$2 1$23 $231
generation generation$ eneration$g neration$ge eration$gen ration$gene ation$gener tion$genera ion$generat on$generati n$generatio $generation
been been$ een$b en$be n$bee $been
darkness darkness$ arkness$d rkness$da kness$dar ness$dark ess$darkn ss$darkne s$darknes $darkness
we we$ e$w $we
lords lords$ ords$l rds$lo ds$lor s$lord $lords
more more$ ore$m re$mo e$mor $more
232 232$ 32$2 2$23 $232
maid maid$ aid$m id$ma d$mai $maid
forget forget$ orget$f rget$fo get$for et$forg t$forge $forget
ornaments ornaments$ rnaments$o naments$or aments$orn ments$orna ents$ornam nts$orname ts$ornamen s$ornament $ornaments
bride bride$ ride$b ide$br de$bri e$brid $bride
attire attire$ ttire$a tire$at ire$att re$atti e$attir $attire
forgotten forgotten$ orgotten$f rgotten$fo gotten$for otten$forg tten$forgo ten$forgot en$forgott n$forgotte $forgotten
233 233$ 33$2 3$23 $233
trimmest trimmest$ rimmest$t immest$tr mmest$tri mest$trim est$trimm st$trimme t$trimmes $trimmest
taught taught$ aught$t ught$ta ght$tau ht$taug t$taugh $taught
wicked wicked$ icked$w cked$wi ked$wic ed$wick d$wicke $wicked
ones ones$ nes$o es$on s$one $ones
234 234$ 34$2 4$23 $234
skirts skirts$ kirts$s irts$sk rts$ski ts$skir s$skirt $skirts
blood blood$ lood$b ood$bl od$blo d$bloo $blood
souls souls$ ouls$s uls$so ls$sou s$soul $souls
poor poor$ oor$p or$po r$poo $poor
innocents innocents$ nnocents$i nocents$in ocents$inn cents$inno ents$innoc nts$innoce ts$innocen s$innocent $innocents
secret secret$ ecret$s cret$se ret$sec et$secr t$secre $secret
search search$ earch$s arch$se rch$sea ch$sear h$searc $search
these these$ hese$t ese$th se$the e$thes $these
235 235$ 35$2 5$23 $235
sayest sayest$ ayest$s yest$sa est$say st$saye t$sayes $sayest
because because$ ecause$b cause$be ause$bec use$beca se$becau e$becaus $because
innocent innocent$ nnocent$i nocent$in ocent$inn cent$inno ent$innoc nt$innoce t$innocen $innocent
surely surely$ urely$s rely$su ely$sur ly$sure y$surel $surely
anger anger$ nger$a ger$an er$ang r$ange $anger
sinned sinned$ inned$s nned$si ned$sin ed$sinn d$sinne $sinned
236 236$ 36$2 6$23 $236
gaddest gaddest$ addest$g ddest$ga dest$gad est$gadd st$gadde t$gaddes $gaddest
change change$ hange$c ange$ch nge$cha ge$chan e$chang $change
wast wast$ ast$w st$wa t$was $wast
237 237$ 37$2 7$23 $237
yea yea$ ea$y a$ye $yea
rejected rejected$ ejected$r jected$re ected$rej cted$reje ted$rejec ed$reject d$rejecte $rejected
confidences confidences$ onfidences$c nfidences$co fidences$con idences$conf dences$confi ences$confid nces$confide ces$confiden es$confidenc s$confidence $confidences
prosper prosper$ rosper$p osper$pr sper$pro per$pros er$prosp r$prospe $prosper
31 31$ 1$3 $31
wife wife$ ife$w fe$wi e$wif $wife
she she$ he$s e$sh $she
another another$ nother$a other$an ther$ano her$anot er$anoth r$anothe $another
mans mans$ ans$m ns$ma s$man $mans
return return$ eturn$r turn$re urn$ret rn$retu n$retur $return
again again$ gain$a ain$ag in$aga n$agai $again
greatly greatly$ reatly$g eatly$gr atly$gre tly$grea ly$great y$greatl $greatly
played played$ layed$p ayed$pl yed$pla ed$play d$playe $played
many many$ any$m ny$ma y$man $many
lovers lovers$ overs$l vers$lo ers$lov rs$love s$lover $lovers
32 32$ 2$3 $32
lift lift$ ift$l ft$li t$lif $lift
eyes eyes$ yes$e es$ey s$eye $eyes
places places$ laces$p aces$pl ces$pla es$plac s$place $places
lien lien$ ien$l en$li n$lie $lien
sat sat$ at$s t$sa $sat
arabian arabian$ rabian$a abian$ar bian$ara ian$arab an$arabi n$arabia $arabian
whoredoms whoredoms$ horedoms$w oredoms$wh redoms$who edoms$whor doms$whore oms$whored ms$whoredo s$whoredom $whoredoms
33 33$ 3$3 $33
showers showers$ howers$s owers$sh wers$sho ers$show rs$showe s$shower $showers
withholden withholden$ ithholden$w thholden$wi hholden$wit holden$with olden$withh lden$withho den$withhol en$withhold n$withholde $withholden
latter latter$ atter$l tter$la ter$lat er$latt r$latte $latter
rain rain$ ain$r in$ra n$rai $rain
hadst hadst$ adst$h dst$ha st$had t$hads $hadst
whores whores$ hores$w ores$wh res$who es$whor s$whore $whores
forehead forehead$ orehead$f rehead$fo ehead$for head$fore ead$foreh ad$forehe d$forehea $forehead
refusedst refusedst$ efusedst$r fusedst$re usedst$ref sedst$refu edst$refus dst$refuse st$refused t$refuseds $refusedst
34 34$ 4$3 $34
wilt wilt$ ilt$w lt$wi t$wil $wilt
guide guide$ uide$g ide$gu de$gui e$guid $guide
35 35$ 5$3 $35
reserve reserve$ eserve$r serve$re erve$res rve$rese ve$reser e$reserv $reserve
ever ever$ ver$e er$ev r$eve $ever
keep keep$ eep$k ep$ke p$kee $keep
spoken spoken$ poken$s oken$sp ken$spo en$spok n$spoke $spoken
couldest couldest$ ouldest$c uldest$co ldest$cou dest$coul est$could st$coulde t$couldes $couldest
36 36$ 6$3 $36
backsliding backsliding$ acksliding$b cksliding$ba ksliding$bac sliding$back liding$backs iding$backsl ding$backsli ing$backslid ng$backslidi g$backslidin $backsliding
mountain mountain$ ountain$m untain$mo ntain$mou tain$moun ain$mount in$mounta n$mountai $mountain
37 37$ 7$3 $37
returned returned$ eturned$r turned$re urned$ret rned$retu ned$retur ed$return d$returne $returned
treacherous treacherous$ reacherous$t eacherous$tr acherous$tre cherous$trea herous$treac erous$treach rous$treache ous$treacher us$treachero s$treacherou $treacherous
sister sister$ ister$s ster$si ter$sis er$sist r$siste $sister
saw saw$ aw$s w$sa $saw
38 38$ 8$3 $38
causes causes$ auses$c uses$ca ses$cau es$caus s$cause $causes
whereby whereby$ hereby$w ereby$wh reby$whe eby$wher by$where y$whereb $whereby
adultery adultery$ dultery$a ultery$ad ltery$adu tery$adul ery$adult ry$adulte y$adulter $adultery
given given$ iven$g ven$gi en$giv n$give $given
bill bill$ ill$b ll$bi l$bil $bill
divorce divorce$ ivorce$d vorce$di orce$div rce$divo ce$divor e$divorc $divorce
feared feared$ eared$f ared$fe red$fea ed$fear d$feare $feared
went went$ ent$w nt$we t$wen $went
39 39$ 9$3 $39
lightness lightness$ ightness$l ghtness$li htness$lig tness$ligh ness$light ess$lightn ss$lightne s$lightnes $lightness
whoredom whoredom$ horedom$w oredom$wh redom$who edom$whor dom$whore om$whored m$whoredo $whoredom
stones stones$ tones$s ones$st nes$sto es$ston s$stone $stones
stocks stocks$ tocks$s ocks$st cks$sto ks$stoc s$stock $stocks
310 310$ 10$3 0$31 $310
heart heart$ eart$h art$he rt$hea t$hear $heart
feignedly feignedly$ eignedly$f ignedly$fe gnedly$fei nedly$feig edly$feign dly$feigne ly$feigned y$feignedl $feignedly
311 311$ 11$3 1$31 $311
justified justified$ ustified$j stified$ju tified$jus ified$just fied$justi ied$justif ed$justifi d$justifie $justified
herself herself$ erself$h rself$he self$her elf$hers lf$herse f$hersel $herself
than than$ han$t an$th n$tha $than
312 312$ 12$3 2$31 $312
proclaim proclaim$ roclaim$p oclaim$pr claim$pro laim$proc aim$procl im$procla m$proclai $proclaim
cause cause$ ause$c use$ca se$cau e$caus $cause
fall fall$ all$f ll$fa l$fal $fall
merciful merciful$ erciful$m rciful$me ciful$mer iful$merc ful$merci ul$mercif l$mercifu $merciful
313 313$ 13$3 3$31 $313
only only$ nly$o ly$on y$onl $only
acknowledge acknowledge$ cknowledge$a knowledge$ac nowledge$ack owledge$ackn wledge$ackno ledge$acknow edge$acknowl dge$acknowle ge$acknowled e$acknowledg $acknowledge
scattered scattered$ cattered$s attered$sc ttered$sca tered$scat ered$scatt red$scatte ed$scatter d$scattere $scattered
obeyed obeyed$ beyed$o eyed$ob yed$obe ed$obey d$obeye $obeyed
voice voice$ oice$v ice$vo ce$voi e$voic $voice
314 314$ 14$3 4$31 $314
married married$ arried$m rried$ma ried$mar ied$marr ed$marri d$marrie $married
family family$ amily$f mily$fa ily$fam ly$fami y$famil $family
bring bring$ ring$b ing$br ng$bri g$brin $bring
zion zion$ ion$z on$zi n$zio $zion
315 315$ 15$3 5$31 $315
give give$ ive$g ve$gi e$giv $give
feed feed$ eed$f ed$fe d$fee $feed
knowledge knowledge$ nowledge$k owledge$kn wledge$kno ledge$know edge$knowl dge$knowle ge$knowled e$knowledg $knowledge
understanding understanding$ nderstanding$u derstanding$un erstanding$und rstanding$unde standing$under tanding$unders anding$underst nding$understa ding$understan ing$understand ng$understandi g$understandin $understanding
316 316$ 16$3 6$31 $316
multiplied multiplied$ ultiplied$m ltiplied$mu tiplied$mul iplied$mult plied$multi lied$multip ied$multipl ed$multipli d$multiplie $multiplied
increased increased$ ncreased$i creased$in reased$inc eased$incr ased$incre sed$increa ed$increas d$increase $increased
those those$ hose$t ose$th se$tho e$thos $those
ark ark$ rk$a k$ar $ark
covenant covenant$ ovenant$c venant$co enant$cov nant$cove ant$coven nt$covena t$covenan $covenant
mind mind$ ind$m nd$mi d$min $mind
visit visit$ isit$v sit$vi it$vis t$visi $visit
any any$ ny$a y$an $any
317 317$ 17$3 7$31 $317
gathered gathered$ athered$g thered$ga hered$gat ered$gath red$gathe ed$gather d$gathere $gathered
name name$ ame$n me$na e$nam $name
walk walk$ alk$w lk$wa k$wal $walk
imagination imagination$ magination$i agination$im gination$ima ination$imag nation$imagi ation$imagin tion$imagina ion$imaginat on$imaginati n$imaginatio $imagination
318 318$ 18$3 8$31 $318
together together$ ogether$t gether$to ether$tog ther$toge her$toget er$togeth r$togethe $together
inheritance inheritance$ nheritance$i heritance$in eritance$inh ritance$inhe itance$inher tance$inheri ance$inherit nce$inherita ce$inheritan e$inheritanc $inheritance
319 319$ 19$3 9$31 $319
among among$ mong$a ong$am ng$amo g$amon $among
pleasant pleasant$ leasant$p easant$pl asant$ple sant$plea ant$pleas nt$pleasa t$pleasan $pleasant
goodly goodly$ oodly$g odly$go dly$goo ly$good y$goodl $goodly
320 320$ 20$3 0$32 $320
treacherously treacherously$ reacherously$t eacherously$tr acherously$tre cherously$trea herously$treac erously$treach rously$treache ously$treacher usly$treachero sly$treacherou ly$treacherous y$treacherousl $treacherously
departeth departeth$ eparteth$d parteth$de arteth$dep rteth$depa teth$depar eth$depart th$departe h$departet $departeth
husband husband$ usband$h sband$hu band$hus and$husb nd$husba d$husban $husband
dealt dealt$ ealt$d alt$de lt$dea t$deal $dealt
321 321$ 21$3 1$32 $321
heard heard$ eard$h ard$he rd$hea d$hear $heard
weeping weeping$ eeping$w eping$we ping$wee ing$weep ng$weepi g$weepin $weeping
supplications supplications$ upplications$s pplications$su plications$sup lications$supp ications$suppl cations$suppli ations$supplic tions$supplica ions$supplicat ons$supplicati ns$supplicatio s$supplication $supplications
perverted perverted$ erverted$p rverted$pe verted$per erted$perv rted$perve ted$perver ed$pervert d$perverte $perverted
322 322$ 22$3 2$32 $322
heal heal$ eal$h al$he l$hea $heal
our our$ ur$o r$ou $our
323 323$ 23$3 3$32 $323
truly truly$ ruly$t uly$tr ly$tru y$trul $truly
salvation salvation$ alvation$s lvation$sa vation$sal ation$salv tion$salva ion$salvat on$salvati n$salvatio $salvation
hoped hoped$ oped$h ped$ho ed$hop d$hope $hoped
hills hills$ ills$h lls$hi ls$hil s$hill $hills
multitude multitude$ ultitude$m ltitude$mu titude$mul itude$mult tude$multi ude$multit de$multitu e$multitud $multitude
mountains mountains$ ountains$m untains$mo ntains$mou tains$moun ains$mount ins$mounta ns$mountai s$mountain $mountains
324 324$ 24$3 4$32 $324
shame shame$ hame$s ame$sh me$sha e$sham $shame
labour labour$ abour$l bour$la our$lab ur$labo r$labou $labour
flocks flocks$ locks$f ocks$fl cks$flo ks$floc s$flock $flocks
herds herds$ erds$h rds$he ds$her s$herd $herds
sons sons$ ons$s ns$so s$son $sons
daughters daughters$ aughters$d ughters$da ghters$dau hters$daug ters$daugh ers$daught rs$daughte s$daughter $daughters
325 325$ 25$3 5$32 $325
lie lie$ ie$l e$li $lie
confusion confusion$ onfusion$c nfusion$co fusion$con usion$conf sion$confu ion$confus on$confusi n$confusio $confusion
covereth covereth$ overeth$c vereth$co ereth$cov reth$cove eth$cover th$covere h$coveret $covereth
even even$ ven$e en$ev n$eve $even
41 41$ 1$4 $41
abominations abominations$ bominations$a ominations$ab minations$abo inations$abom nations$abomi ations$abomin tions$abomina ions$abominat ons$abominati ns$abominatio s$abomination $abominations
sight sight$ ight$s ght$si ht$sig t$sigh $sight
remove remove$ emove$r move$re ove$rem ve$remo e$remov $remove
42 42$ 2$4 $42
swear swear$ wear$s ear$sw ar$swe r$swea $swear
liveth liveth$ iveth$l veth$li eth$liv th$live h$livet $liveth
truth truth$ ruth$t uth$tr th$tru h$trut $truth
judgment judgment$ udgment$j dgment$ju gment$jud ment$judg ent$judgm nt$judgme t$judgmen $judgment
righteousness righteousness$ ighteousness$r ghteousness$ri hteousness$rig teousness$righ eousness$right ousness$righte usness$righteo sness$righteou ness$righteous ess$righteousn ss$righteousne s$righteousnes $righteousness
bless bless$ less$b ess$bl ss$ble s$bles $bless
43 43$ 3$4 $43
men men$ en$m n$me $men
fallow fallow$ allow$f llow$fa low$fal ow$fall w$fallo $fallow
ground ground$ round$g ound$gr und$gro nd$grou d$groun $ground
sow sow$ ow$s w$so $sow
thorns thorns$ horns$t orns$th rns$tho ns$thor s$thorn $thorns
44 44$ 4$4 $44
circumcise circumcise$ ircumcise$c rcumcise$ci cumcise$cir umcise$circ mcise$circu cise$circum ise$circumc se$circumci e$circumcis $circumcise
yourselves yourselves$ ourselves$y urselves$yo rselves$you selves$your elves$yours lves$yourse ves$yoursel es$yourselv s$yourselve $yourselves
foreskins foreskins$ oreskins$f reskins$fo eskins$for skins$fore kins$fores ins$foresk ns$foreski s$foreskin $foreskins
fury fury$ ury$f ry$fu y$fur $fury
fire fire$ ire$f re$fi e$fir $fire
burn burn$ urn$b rn$bu n$bur $burn
none none$ one$n ne$no e$non $none
quench quench$ uench$q ench$qu nch$que ch$quen h$quenc $quench
doings doings$ oings$d ings$do ngs$doi gs$doin s$doing $doings
45 45$ 5$4 $45
declare declare$ eclare$d clare$de lare$dec are$decl re$decla e$declar $declare
publish publish$ ublish$p blish$pu lish$pub ish$publ sh$publi h$publis $publish
blow blow$ low$b ow$bl w$blo $blow
trumpet trumpet$ rumpet$t umpet$tr mpet$tru pet$trum et$trump t$trumpe $trumpet
gather gather$ ather$g ther$ga her$gat er$gath r$gathe $gather
assemble assemble$ ssemble$a semble$as emble$ass mble$asse ble$assem le$assemb e$assembl $assemble
46 46$ 6$4 $46
standard standard$ tandard$s andard$st ndard$sta dard$stan ard$stand rd$standa d$standar $standard
retire retire$ etire$r tire$re ire$ret re$reti e$retir $retire
stay stay$ tay$s ay$st y$sta $stay
great great$ reat$g eat$gr at$gre t$grea $great
destruction destruction$ estruction$d struction$de truction$des ruction$dest uction$destr ction$destru tion$destruc ion$destruct on$destructi n$destructio $destruction
47 47$ 7$4 $47
thicket thicket$ hicket$t icket$th cket$thi ket$thic et$thick t$thicke $thicket
destroyer destroyer$ estroyer$d stroyer$de troyer$des royer$dest oyer$destr yer$destro er$destroy r$destroye $destroyer
gentiles gentiles$ entiles$g ntiles$ge tiles$gen iles$gent les$genti es$gentil s$gentile $gentiles
on on$ n$o $on
place place$ lace$p ace$pl ce$pla e$plac $place
make make$ ake$m ke$ma e$mak $make
laid laid$ aid$l id$la d$lai $laid
48 48$ 8$4 $48
sackcloth sackcloth$ ackcloth$s ckcloth$sa kcloth$sac cloth$sack loth$sackc oth$sackcl th$sackclo h$sackclot $sackcloth
lament lament$ ament$l ment$la ent$lam nt$lame t$lamen $lament
howl howl$ owl$h wl$ho l$how $howl
fierce fierce$ ierce$f erce$fi rce$fie ce$fier e$fierc $fierce
49 49$ 9$4 $49
perish perish$ erish$p rish$pe ish$per sh$peri h$peris $perish
wonder wonder$ onder$w nder$wo der$won er$wond r$wonde $wonder
410 410$ 10$4 0$41 $410
deceived deceived$ eceived$d ceived$de eived$dec ived$dece ved$decei ed$deceiv d$deceive $deceived
peace peace$ eace$p ace$pe ce$pea e$peac $peace
whereas whereas$ hereas$w ereas$wh reas$whe eas$wher as$where s$wherea $whereas
reacheth reacheth$ eacheth$r acheth$re cheth$rea heth$reac eth$reach th$reache h$reachet $reacheth
soul soul$ oul$s ul$so l$sou $soul
411 411$ 11$4 1$41 $411
dry dry$ ry$d y$dr $dry
daughter daughter$ aughter$d ughter$da ghter$dau hter$daug ter$daugh er$daught r$daughte $daughter
fan fan$ an$f n$fa $fan
nor nor$ or$n r$no $nor
cleanse cleanse$ leanse$c eanse$cl anse$cle nse$clea se$clean e$cleans $cleanse
412 412$ 12$4 2$41 $412
full full$ ull$f ll$fu l$ful $full
sentence sentence$ entence$s ntence$se tence$sen ence$sent nce$sente ce$senten e$sentenc $sentence
413 413$ 13$4 3$41 $413
clouds clouds$ louds$c ouds$cl uds$clo ds$clou s$cloud $clouds
chariots chariots$ hariots$c ariots$ch riots$cha iots$char ots$chari ts$chario s$chariot $chariots
whirlwind whirlwind$ hirlwind$w irlwind$wh rlwind$whi lwind$whir wind$whirl ind$whirlw nd$whirlwi d$whirlwin $whirlwind
horses horses$ orses$h rses$ho ses$hor es$hors s$horse $horses
swifter swifter$ wifter$s ifter$sw fter$swi ter$swif er$swift r$swifte $swifter
eagles eagles$ agles$e gles$ea les$eag es$eagl s$eagle $eagles
woe woe$ oe$w e$wo $woe
414 414$ 14$4 4$41 $414
mayest mayest$ ayest$m yest$ma est$may st$maye t$mayes $mayest
saved saved$ aved$s ved$sa ed$sav d$save $saved
long long$ ong$l ng$lo g$lon $long
thoughts thoughts$ houghts$t oughts$th ughts$tho ghts$thou hts$thoug ts$though s$thought $thoughts
lodge lodge$ odge$l dge$lo ge$lod e$lodg $lodge
within within$ ithin$w thin$wi hin$wit in$with n$withi $within
415 415$ 15$4 5$41 $415
declareth declareth$ eclareth$d clareth$de lareth$dec areth$decl reth$decla eth$declar th$declare h$declaret $declareth
dan dan$ an$d n$da $dan
publisheth publisheth$ ublisheth$p blisheth$pu lisheth$pub isheth$publ sheth$publi heth$publis eth$publish th$publishe h$publishet $publisheth
affliction affliction$ ffliction$a fliction$af liction$aff iction$affl ction$affli tion$afflic ion$afflict on$afflicti n$afflictio $affliction
mount mount$ ount$m unt$mo nt$mou t$moun $mount
ephraim ephraim$ phraim$e hraim$ep raim$eph aim$ephr im$ephra m$ephrai $ephraim
416 416$ 16$4 6$41 $416
mention mention$ ention$m ntion$me tion$men ion$ment on$menti n$mentio $mention
watchers watchers$ atchers$w tchers$wa chers$wat hers$watc ers$watch rs$watche s$watcher $watchers
417 417$ 17$4 7$41 $417
keepers keepers$ eepers$k epers$ke pers$kee ers$keep rs$keepe s$keeper $keepers
field field$ ield$f eld$fi ld$fie d$fiel $field
rebellious rebellious$ ebellious$r bellious$re ellious$reb llious$rebe lious$rebel ious$rebell ous$rebelli us$rebellio s$rebelliou $rebellious
418 418$ 18$4 8$41 $418
419 419$ 19$4 9$41 $419
bowels bowels$ owels$b wels$bo els$bow ls$bowe s$bowel $bowels
pained pained$ ained$p ined$pa ned$pai ed$pain d$paine $pained
maketh maketh$ aketh$m keth$ma eth$mak th$make h$maket $maketh
noise noise$ oise$n ise$no se$noi e$nois $noise
sound sound$ ound$s und$so nd$sou d$soun $sound
alarm alarm$ larm$a arm$al rm$ala m$alar $alarm
war war$ ar$w r$wa $war
420 420$ 20$4 0$42 $420
cried cried$ ried$c ied$cr ed$cri d$crie $cried
suddenly suddenly$ uddenly$s ddenly$su denly$sud enly$sudd nly$sudde ly$sudden y$suddenl $suddenly
tents tents$ ents$t nts$te ts$ten s$tent $tents
curtains curtains$ urtains$c rtains$cu tains$cur ains$curt ins$curta ns$curtai s$curtain $curtains
moment moment$ oment$m ment$mo ent$mom nt$mome t$momen $moment
backward backward$ ackward$b ckward$ba kward$bac ward$back ard$backw rd$backwa d$backwar $backward
stretch stretch$ tretch$s retch$st etch$str tch$stre ch$stret h$stretc $stretch
repenting repenting$ epenting$r penting$re enting$rep nting$repe ting$repen ing$repent ng$repenti g$repentin $repenting
157 157$ 57$1 7$15 $157
bereave bereave$ ereave$b reave$be eave$ber ave$bere ve$berea e$bereav $bereave
since since$ ince$s nce$si ce$sin e$sinc $since
158 158$ 58$1 8$15 $158
widows widows$ idows$w dows$wi ows$wid ws$wido s$widow $widows
above above$ bove$a ove$ab ve$abo e$abov $above
sand sand$ and$s nd$sa d$san $sand
seas seas$ eas$s as$se s$sea $seas
mother mother$ other$m ther$mo her$mot er$moth r$mothe $mother
spoiler spoiler$ poiler$s oiler$sp iler$spo ler$spoi er$spoil r$spoile $spoiler
noonday noonday$ oonday$n onday$no nday$noo day$noon ay$noond y$noonda $noonday
caused caused$ aused$c used$ca sed$cau ed$caus d$cause $caused
terrors terrors$ errors$t rrors$te rors$ter ors$terr rs$terro s$terror $terrors
159 159$ 59$1 9$15 $159
borne borne$ orne$b rne$bo ne$bor e$born $borne
seven seven$ even$s ven$se en$sev n$seve $seven
languisheth languisheth$ anguisheth$l nguisheth$la guisheth$lan uisheth$lang isheth$langu sheth$langui heth$languis eth$languish th$languishe h$languishet $languisheth
ghost ghost$ host$g ost$gh st$gho t$ghos $ghost
sun sun$ un$s n$su $sun
while while$ hile$w ile$wh le$whi e$whil $while
confounded confounded$ onfounded$c nfounded$co founded$con ounded$conf unded$confo nded$confou ded$confoun ed$confound d$confounde $confounded
residue residue$ esidue$r sidue$re idue$res due$resi ue$resid e$residu $residue
enemies enemies$ nemies$e emies$en mies$ene ies$enem es$enemi s$enemie $enemies
book book$ ook$b ok$bo k$boo $book
moses moses$ oses$m ses$mo es$mos s$mose $moses
called called$ alled$c lled$ca led$cal ed$call d$calle $called
exodus exodus$ xodus$e odus$ex dus$exo us$exod s$exodu $exodus
names names$ ames$n mes$na es$nam s$name $names
household household$ ousehold$h usehold$ho sehold$hou ehold$hous hold$house old$househ ld$househo d$househol $household
reuben reuben$ euben$r uben$re ben$reu en$reub n$reube $reuben
simeon simeon$ imeon$s meon$si eon$sim on$sime n$simeo $simeon
levi levi$ evi$l vi$le i$lev $levi
issachar issachar$ ssachar$i sachar$is achar$iss char$issa har$issac ar$issach r$issacha $issachar
zebulun zebulun$ ebulun$z bulun$ze ulun$zeb lun$zebu un$zebul n$zebulu $zebulun
naphtali naphtali$ aphtali$n phtali$na htali$nap tali$naph ali$napht li$naphta i$naphtal $naphtali
gad gad$ ad$g d$ga $gad
asher asher$ sher$a her$as er$ash r$ashe $asher
seventy seventy$ eventy$s venty$se enty$sev nty$seve ty$seven y$sevent $seventy
joseph joseph$ oseph$j seph$jo eph$jos ph$jose h$josep $joseph
already already$ lready$a ready$al eady$alr ady$alre dy$alrea y$alread $already
died died$ ied$d ed$di d$die $died
brethren brethren$ rethren$b ethren$br thren$bre hren$bret ren$breth en$brethr n$brethre $brethren
fruitful fruitful$ ruitful$f uitful$fr itful$fru tful$frui ful$fruit ul$fruitf l$fruitfu $fruitful
abundantly abundantly$ bundantly$a undantly$ab ndantly$abu dantly$abun antly$abund ntly$abunda tly$abundan ly$abundant y$abundantl $abundantly
waxed waxed$ axed$w xed$wa ed$wax d$waxe $waxed
exceeding exceeding$ xceeding$e ceeding$ex eeding$exc eding$exce ding$excee ing$exceed ng$exceedi g$exceedin $exceeding
mighty mighty$ ighty$m ghty$mi hty$mig ty$migh y$might $mighty
filled filled$ illed$f lled$fi led$fil ed$fill d$fille $filled
arose arose$ rose$a ose$ar se$aro e$aros $arose
new new$ ew$n w$ne $new
mightier mightier$ ightier$m ghtier$mi htier$mig tier$migh ier$might er$mighti r$mightie $mightier
deal deal$ eal$d al$de l$dea $deal
wisely wisely$ isely$w sely$wi ely$wis ly$wise y$wisel $wisely
multiply multiply$ ultiply$m ltiply$mu tiply$mul iply$mult ply$multi ly$multip y$multipl $multiply
falleth falleth$ alleth$f lleth$fa leth$fal eth$fall th$falle h$fallet $falleth
join join$ oin$j in$jo n$joi $join
get get$ et$g t$ge $get
did did$ id$d d$di $did
taskmasters taskmasters$ askmasters$t skmasters$ta kmasters$tas masters$task asters$taskm sters$taskma ters$taskmas ers$taskmast rs$taskmaste s$taskmaster $taskmasters
afflict afflict$ fflict$a flict$af lict$aff ict$affl ct$affli t$afflic $afflict
burdens burdens$ urdens$b rdens$bu dens$bur ens$burd ns$burde s$burden $burdens
built built$ uilt$b ilt$bu lt$bui t$buil $built
pharaoh pharaoh$ haraoh$p araoh$ph raoh$pha aoh$phar oh$phara h$pharao $pharaoh
treasure treasure$ reasure$t easure$tr asure$tre sure$trea ure$treas re$treasu e$treasur $treasure
pithom pithom$ ithom$p thom$pi hom$pit om$pith m$pitho $pithom
raamses raamses$ aamses$r amses$ra mses$raa ses$raam es$raams s$raamse $raamses
afflicted afflicted$ fflicted$a flicted$af licted$aff icted$affl cted$affli ted$afflic ed$afflict d$afflicte $afflicted
grew grew$ rew$g ew$gr w$gre $grew
grieved grieved$ rieved$g ieved$gr eved$gri ved$grie ed$griev d$grieve $grieved
egyptians egyptians$ gyptians$e yptians$eg ptians$egy tians$egyp ians$egypt ans$egypti ns$egyptia s$egyptian $egyptians
serve serve$ erve$s rve$se ve$ser e$serv $serve
rigour rigour$ igour$r gour$ri our$rig ur$rigo r$rigou $rigour
lives lives$ ives$l ves$li es$liv s$live $lives
hard hard$ ard$h rd$ha d$har $hard
bondage bondage$ ondage$b ndage$bo dage$bon age$bond ge$bonda e$bondag $bondage
morter morter$ orter$m rter$mo ter$mor er$mort r$morte $morter
brick brick$ rick$b ick$br ck$bri k$bric $brick
manner manner$ anner$m nner$ma ner$man er$mann r$manne $manner
service service$ ervice$s rvice$se vice$ser ice$serv ce$servi e$servic $service
wherein wherein$ herein$w erein$wh rein$whe ein$wher in$where n$wherei $wherein
spake spake$ pake$s ake$sp ke$spa e$spak $spake
hebrew hebrew$ ebrew$h brew$he rew$heb ew$hebr w$hebre $hebrew
midwives midwives$ idwives$m dwives$mi wives$mid ives$midw ves$midwi es$midwiv s$midwive $midwives
shiphrah shiphrah$ hiphrah$s iphrah$sh phrah$shi hrah$ship rah$shiph ah$shiphr h$shiphra $shiphrah
puah puah$ uah$p ah$pu h$pua $puah
office office$ ffice$o fice$of ice$off ce$offi e$offic $office
midwife midwife$ idwife$m dwife$mi wife$mid ife$midw fe$midwi e$midwif $midwife
women women$ omen$w men$wo en$wom n$wome $women
stools stools$ tools$s ools$st ols$sto ls$stoo s$stool $stools
kill kill$ ill$k ll$ki l$kil $kill
live live$ ive$l ve$li e$liv $live
commanded commanded$ ommanded$c mmanded$co manded$com anded$comm nded$comma ded$comman ed$command d$commande $commanded
alive alive$ live$a ive$al ve$ali e$aliv $alive
egyptian egyptian$ gyptian$e yptian$eg ptian$egy tian$egyp ian$egypt an$egypti n$egyptia $egyptian
lively lively$ ively$l vely$li ely$liv ly$live y$livel $lively
delivered delivered$ elivered$d livered$de ivered$del vered$deli ered$deliv red$delive ed$deliver d$delivere $delivered
ere ere$ re$e e$er $ere
120 120$ 20$1 0$12 $120
121 121$ 21$1 1$12 $121
houses houses$ ouses$h uses$ho ses$hou es$hous s$house $houses
122 122$ 22$1 2$12 $122
charged charged$ harged$c arged$ch rged$cha ged$char ed$charg d$charge $charged
born born$ orn$b rn$bo n$bor $born
cast cast$ ast$c st$ca t$cas $cast
took took$ ook$t ok$to k$too $took
woman woman$ oman$w man$wo an$wom n$woma $woman
conceived conceived$ onceived$c nceived$co ceived$con eived$conc ived$conce ved$concei ed$conceiv d$conceive $conceived
bare bare$ are$b re$ba e$bar $bare
hid hid$ id$h d$hi $hid
three three$ hree$t ree$th ee$thr e$thre $three
months months$ onths$m nths$mo ths$mon hs$mont s$month $months
could could$ ould$c uld$co ld$cou d$coul $could
longer longer$ onger$l nger$lo ger$lon er$long r$longe $longer
hide hide$ ide$h de$hi e$hid $hide
bulrushes bulrushes$ ulrushes$b lrushes$bu rushes$bul ushes$bulr shes$bulru hes$bulrus es$bulrush s$bulrushe $bulrushes
daubed daubed$ aubed$d ubed$da bed$dau ed$daub d$daube $daubed
slime slime$ lime$s ime$sl me$sli e$slim $slime
pitch pitch$ itch$p tch$pi ch$pit h$pitc $pitch
therein therein$ herein$t erein$th rein$the ein$ther in$there n$therei $therein
flags flags$ lags$f ags$fl gs$fla s$flag $flags
rivers rivers$ ivers$r vers$ri ers$riv rs$rive s$river $rivers
brink brink$ rink$b ink$br nk$bri k$brin $brink
stood stood$ tood$s ood$st od$sto d$stoo $stood
afar afar$ far$a ar$af r$afa $afar
off off$ ff$o f$of $off
wit wit$ it$w t$wi $wit
would would$ ould$w uld$wo ld$wou d$woul $would
maidens maidens$ aidens$m idens$ma dens$mai ens$maid ns$maide s$maiden $maidens
along along$ long$a ong$al ng$alo g$alon $along
side side$ ide$s de$si e$sid $side
sent sent$ ent$s nt$se t$sen $sent
fetch fetch$ etch$f tch$fe ch$fet h$fetc $fetch
opened opened$ pened$o ened$op ned$ope ed$open d$opene $opened
babe babe$ abe$b be$ba e$bab $babe
wept wept$ ept$w pt$we t$wep $wept
compassion compassion$ ompassion$c mpassion$co passion$com assion$comp ssion$compa sion$compas ion$compass on$compassi n$compassio $compassion
hebrews hebrews$ ebrews$h brews$he rews$heb ews$hebr ws$hebre s$hebrew $hebrews
pharaohs pharaohs$ haraohs$p araohs$ph raohs$pha aohs$phar ohs$phara hs$pharao s$pharaoh $pharaohs
nurse nurse$ urse$n rse$nu se$nur e$nurs $nurse
may may$ ay$m y$ma $may
childs childs$ hilds$c ilds$ch lds$chi ds$chil s$child $childs
wages wages$ ages$w ges$wa es$wag s$wage $wages
nursed nursed$ ursed$n rsed$nu sed$nur ed$nurs d$nurse $nursed
became became$ ecame$b came$be ame$bec me$beca e$becam $became
drew drew$ rew$d ew$dr w$dre $drew
grown grown$ rown$g own$gr wn$gro n$grow $grown
looked looked$ ooked$l oked$lo ked$loo ed$look d$looke $looked
spied spied$ pied$s ied$sp ed$spi d$spie $spied
smiting smiting$ miting$s iting$sm ting$smi ing$smit ng$smiti g$smitin $smiting
slew slew$ lew$s ew$sl w$sle $slew
strove strove$ trove$s rove$st ove$str ve$stro e$strov $strove
wrong wrong$ rong$w ong$wr ng$wro g$wron $wrong
smitest smitest$ mitest$s itest$sm test$smi est$smit st$smite t$smites $smitest
fellow fellow$ ellow$f llow$fe low$fel ow$fell w$fello $fellow
prince prince$ rince$p ince$pr nce$pri ce$prin e$princ $prince
judge judge$ udge$j dge$ju ge$jud e$judg $judge
intendest intendest$ ntendest$i tendest$in endest$int ndest$inte dest$inten est$intend st$intende t$intendes $intendest
killedst killedst$ illedst$k lledst$ki ledst$kil edst$kill dst$kille st$killed t$killeds $killedst
known known$ nown$k own$kn wn$kno n$know $known
sought sought$ ought$s ught$so ght$sou ht$soug t$sough $sought
slay slay$ lay$s ay$sl y$sla $slay
fled fled$ led$f ed$fl d$fle $fled
midian midian$ idian$m dian$mi ian$mid an$midi n$midia $midian
priest priest$ riest$p iest$pr est$pri st$prie t$pries $priest
troughs troughs$ roughs$t oughs$tr ughs$tro ghs$trou hs$troug s$trough $troughs
flock flock$ lock$f ock$fl ck$flo k$floc $flock
shepherds shepherds$ hepherds$s epherds$sh pherds$she herds$shep erds$sheph rds$shephe ds$shepher s$shepherd $shepherds
drove drove$ rove$d ove$dr ve$dro e$drov $drove
helped helped$ elped$h lped$he ped$hel ed$help d$helpe $helped
watered watered$ atered$w tered$wa ered$wat red$wate ed$water d$watere $watered
reuel reuel$ euel$r uel$re el$reu l$reue $reuel
soon soon$ oon$s on$so n$soo $soon
re re$ e$r $re
night night$ ight$n ght$ni ht$nig t$nigh $night
141 141$ 41$1 1$14 $141
142 142$ 42$1 2$14 $142
encamp encamp$ ncamp$e camp$en amp$enc mp$enca p$encam $encamp
pihahiroth pihahiroth$ ihahiroth$p hahiroth$pi ahiroth$pih hiroth$piha iroth$pihah roth$pihahi oth$pihahir th$pihahiro h$pihahirot $pihahiroth
between between$ etween$b tween$be ween$bet een$betw en$betwe n$betwee $between
migdol migdol$ igdol$m gdol$mi dol$mig ol$migd l$migdo $migdol
sea sea$ ea$s a$se $sea
baalzephon baalzephon$ aalzephon$b alzephon$ba lzephon$baa zephon$baal ephon$baalz phon$baalze hon$baalzep on$baalzeph n$baalzepho $baalzephon
143 143$ 43$1 3$14 $143
entangled entangled$ ntangled$e tangled$en angled$ent ngled$enta gled$entan led$entang ed$entangl d$entangle $entangled
shut shut$ hut$s ut$sh t$shu $shut
144 144$ 44$1 4$14 $144
harden harden$ arden$h rden$ha den$har en$hard n$harde $harden
follow follow$ ollow$f llow$fo low$fol ow$foll w$follo $follow
honoured honoured$ onoured$h noured$ho oured$hon ured$hono red$honou ed$honour d$honoure $honoured
host host$ ost$h st$ho t$hos $host
145 145$ 45$1 5$14 $145
told told$ old$t ld$to d$tol $told
servants servants$ ervants$s rvants$se vants$ser ants$serv nts$serva ts$servan s$servant $servants
serving serving$ erving$s rving$se ving$ser ing$serv ng$servi g$servin $serving
146 146$ 46$1 6$14 $146
ready ready$ eady$r ady$re dy$rea y$read $ready
chariot chariot$ hariot$c ariot$ch riot$cha iot$char ot$chari t$chario $chariot
147 147$ 47$1 7$14 $147
six six$ ix$s x$si $six
hundred hundred$ undred$h ndred$hu dred$hun red$hund ed$hundr d$hundre $hundred
chosen chosen$ hosen$c osen$ch sen$cho en$chos n$chose $chosen
captains captains$ aptains$c ptains$ca tains$cap ains$capt ins$capta ns$captai s$captain $captains
148 148$ 48$1 8$14 $148
hardened hardened$ ardened$h rdened$ha dened$har ened$hard ned$harde ed$harden d$hardene $hardened
pursued pursued$ ursued$p rsued$pu sued$pur ued$purs ed$pursu d$pursue $pursued
149 149$ 49$1 9$14 $149
horsemen horsemen$ orsemen$h rsemen$ho semen$hor emen$hors men$horse en$horsem n$horseme $horsemen
army army$ rmy$a my$ar y$arm $army
overtook overtook$ vertook$o ertook$ov rtook$ove took$over ook$overt ok$overto k$overtoo $overtook
encamping encamping$ ncamping$e camping$en amping$enc mping$enca ping$encam ing$encamp ng$encampi g$encampin $encamping
beside beside$ eside$b side$be ide$bes de$besi e$besid $beside
1410 1410$ 410$1 10$14 0$141 $1410
nigh nigh$ igh$n gh$ni h$nig $nigh
lifted lifted$ ifted$l fted$li ted$lif ed$lift d$lifte $lifted
marched marched$ arched$m rched$ma ched$mar hed$marc ed$march d$marche $marched
sore sore$ ore$s re$so e$sor $sore
1411 1411$ 411$1 11$14 1$141 $1411
graves graves$ raves$g aves$gr ves$gra es$grav s$grave $graves
taken taken$ aken$t ken$ta en$tak n$take $taken
die die$ ie$d e$di $die
carry carry$ arry$c rry$ca ry$car y$carr $carry
1412 1412$ 412$1 12$14 2$141 $1412
tell tell$ ell$t ll$te l$tel $tell
alone alone$ lone$a one$al ne$alo e$alon $alone
better better$ etter$b tter$be ter$bet er$bett r$bette $better
should should$ hould$s ould$sh uld$sho ld$shou d$shoul $should
1413 1413$ 413$1 13$14 3$141 $1413
stand stand$ tand$s and$st nd$sta d$stan $stand
still still$ till$s ill$st ll$sti l$stil $still
shew shew$ hew$s ew$sh w$she $shew
1414 1414$ 414$1 14$14 4$141 $1414
1415 1415$ 415$1 15$14 5$141 $1415
criest criest$ riest$c iest$cr est$cri st$crie t$cries $criest