-
Notifications
You must be signed in to change notification settings - Fork 17
/
all_single_tokens_to_4_characters.txt
9258 lines (9258 loc) · 515 KB
/
all_single_tokens_to_4_characters.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
99084: 0 -> <|startoftext|>, 0</w>, <|endoftext|>
99085: 1 -> <|startoftext|>, 1</w>, <|endoftext|>
99086: 2 -> <|startoftext|>, 2</w>, <|endoftext|>
99087: 3 -> <|startoftext|>, 3</w>, <|endoftext|>
99088: 4 -> <|startoftext|>, 4</w>, <|endoftext|>
99089: 5 -> <|startoftext|>, 5</w>, <|endoftext|>
99090: 6 -> <|startoftext|>, 6</w>, <|endoftext|>
99091: 7 -> <|startoftext|>, 7</w>, <|endoftext|>
99092: 8 -> <|startoftext|>, 8</w>, <|endoftext|>
99093: 9 -> <|startoftext|>, 9</w>, <|endoftext|>
99133: a -> <|startoftext|>, a</w>, <|endoftext|>
99134: b -> <|startoftext|>, b</w>, <|endoftext|>
99135: c -> <|startoftext|>, c</w>, <|endoftext|>
99136: d -> <|startoftext|>, d</w>, <|endoftext|>
99137: e -> <|startoftext|>, e</w>, <|endoftext|>
99138: f -> <|startoftext|>, f</w>, <|endoftext|>
99139: g -> <|startoftext|>, g</w>, <|endoftext|>
99140: h -> <|startoftext|>, h</w>, <|endoftext|>
99141: i -> <|startoftext|>, i</w>, <|endoftext|>
99142: j -> <|startoftext|>, j</w>, <|endoftext|>
99143: k -> <|startoftext|>, k</w>, <|endoftext|>
99144: l -> <|startoftext|>, l</w>, <|endoftext|>
99145: m -> <|startoftext|>, m</w>, <|endoftext|>
99146: n -> <|startoftext|>, n</w>, <|endoftext|>
99147: o -> <|startoftext|>, o</w>, <|endoftext|>
99148: p -> <|startoftext|>, p</w>, <|endoftext|>
99149: q -> <|startoftext|>, q</w>, <|endoftext|>
99150: r -> <|startoftext|>, r</w>, <|endoftext|>
99151: s -> <|startoftext|>, s</w>, <|endoftext|>
99152: t -> <|startoftext|>, t</w>, <|endoftext|>
99153: u -> <|startoftext|>, u</w>, <|endoftext|>
99154: v -> <|startoftext|>, v</w>, <|endoftext|>
99155: w -> <|startoftext|>, w</w>, <|endoftext|>
99156: x -> <|startoftext|>, x</w>, <|endoftext|>
99157: y -> <|startoftext|>, y</w>, <|endoftext|>
99158: z -> <|startoftext|>, z</w>, <|endoftext|>
99331: the -> <|startoftext|>, the</w>, <|endoftext|>
99332: ing -> <|startoftext|>, ing</w>, <|endoftext|>
99338: on -> <|startoftext|>, on</w>, <|endoftext|>
99341: er -> <|startoftext|>, er</w>, <|endoftext|>
99343: in -> <|startoftext|>, in</w>, <|endoftext|>
99344: to -> <|startoftext|>, to</w>, <|endoftext|>
99346: is -> <|startoftext|>, is</w>, <|endoftext|>
99349: at -> <|startoftext|>, at</w>, <|endoftext|>
99350: and -> <|startoftext|>, and</w>, <|endoftext|>
99351: ed -> <|startoftext|>, ed</w>, <|endoftext|>
99352: of -> <|startoftext|>, of</w>, <|endoftext|>
99354: or -> <|startoftext|>, or</w>, <|endoftext|>
99355: es -> <|startoftext|>, es</w>, <|endoftext|>
99358: st -> <|startoftext|>, st</w>, <|endoftext|>
99363: an -> <|startoftext|>, an</w>, <|endoftext|>
99364: ay -> <|startoftext|>, ay</w>, <|endoftext|>
99369: for -> <|startoftext|>, for</w>, <|endoftext|>
99376: ve -> <|startoftext|>, ve</w>, <|endoftext|>
99379: al -> <|startoftext|>, al</w>, <|endoftext|>
99388: day -> <|startoftext|>, day</w>, <|endoftext|>
99389: en -> <|startoftext|>, en</w>, <|endoftext|>
99392: le -> <|startoftext|>, le</w>, <|endoftext|>
99394: our -> <|startoftext|>, our</w>, <|endoftext|>
99398: it -> <|startoftext|>, it</w>, <|endoftext|>
99402: this -> <|startoftext|>, this</w>, <|endoftext|>
99403: ts -> <|startoftext|>, ts</w>, <|endoftext|>
99405: you -> <|startoftext|>, you</w>, <|endoftext|>
99406: with -> <|startoftext|>, with</w>, <|endoftext|>
99410: ly -> <|startoftext|>, ly</w>, <|endoftext|>
99414: as -> <|startoftext|>, as</w>, <|endoftext|>
99420: my -> <|startoftext|>, my</w>, <|endoftext|>
99424: se -> <|startoftext|>, se</w>, <|endoftext|>
99425: ers -> <|startoftext|>, ers</w>, <|endoftext|>
99427: me -> <|startoftext|>, me</w>, <|endoftext|>
99428: all -> <|startoftext|>, all</w>, <|endoftext|>
99431: ke -> <|startoftext|>, ke</w>, <|endoftext|>
99433: out -> <|startoftext|>, out</w>, <|endoftext|>
99434: ent -> <|startoftext|>, ent</w>, <|endoftext|>
99438: ar -> <|startoftext|>, ar</w>, <|endoftext|>
99442: ce -> <|startoftext|>, ce</w>, <|endoftext|>
99443: ght -> <|startoftext|>, ght</w>, <|endoftext|>
99444: are -> <|startoftext|>, are</w>, <|endoftext|>
99445: ss -> <|startoftext|>, ss</w>, <|endoftext|>
99446: from -> <|startoftext|>, from</w>, <|endoftext|>
99447: ch -> <|startoftext|>, ch</w>, <|endoftext|>
99450: one -> <|startoftext|>, one</w>, <|endoftext|>
99451: by -> <|startoftext|>, by</w>, <|endoftext|>
99453: th -> <|startoftext|>, th</w>, <|endoftext|>
99455: ere -> <|startoftext|>, ere</w>, <|endoftext|>
99459: ds -> <|startoftext|>, ds</w>, <|endoftext|>
99462: we -> <|startoftext|>, we</w>, <|endoftext|>
99465: ter -> <|startoftext|>, ter</w>, <|endoftext|>
99467: de -> <|startoftext|>, de</w>, <|endoftext|>
99468: be -> <|startoftext|>, be</w>, <|endoftext|>
99473: ill -> <|startoftext|>, ill</w>, <|endoftext|>
99475: ks -> <|startoftext|>, ks</w>, <|endoftext|>
99480: ver -> <|startoftext|>, ver</w>, <|endoftext|>
99484: ate -> <|startoftext|>, ate</w>, <|endoftext|>
99487: king -> <|startoftext|>, king</w>, <|endoftext|>
99493: ad -> <|startoftext|>, ad</w>, <|endoftext|>
99495: that -> <|startoftext|>, that</w>, <|endoftext|>
99499: new -> <|startoftext|>, new</w>, <|endoftext|>
99500: am -> <|startoftext|>, am</w>, <|endoftext|>
99505: now -> <|startoftext|>, now</w>, <|endoftext|>
99507: ting -> <|startoftext|>, ting</w>, <|endoftext|>
99508: your -> <|startoftext|>, your</w>, <|endoftext|>
99509: ity -> <|startoftext|>, ity</w>, <|endoftext|>
99518: up -> <|startoftext|>, up</w>, <|endoftext|>
99519: so -> <|startoftext|>, so</w>, <|endoftext|>
99521: ons -> <|startoftext|>, ons</w>, <|endoftext|>
99523: ge -> <|startoftext|>, ge</w>, <|endoftext|>
99528: ine -> <|startoftext|>, ine</w>, <|endoftext|>
99531: us -> <|startoftext|>, us</w>, <|endoftext|>
99533: have -> <|startoftext|>, have</w>, <|endoftext|>
99538: ack -> <|startoftext|>, ack</w>, <|endoftext|>
99539: ure -> <|startoftext|>, ure</w>, <|endoftext|>
99543: ld -> <|startoftext|>, ld</w>, <|endoftext|>
99546: ice -> <|startoftext|>, ice</w>, <|endoftext|>
99549: red -> <|startoftext|>, red</w>, <|endoftext|>
99551: ood -> <|startoftext|>, ood</w>, <|endoftext|>
99552: was -> <|startoftext|>, was</w>, <|endoftext|>
99553: tion -> <|startoftext|>, tion</w>, <|endoftext|>
99555: ir -> <|startoftext|>, ir</w>, <|endoftext|>
99556: ther -> <|startoftext|>, ther</w>, <|endoftext|>
99557: ty -> <|startoftext|>, ty</w>, <|endoftext|>
99559: ard -> <|startoftext|>, ard</w>, <|endoftext|>
99563: more -> <|startoftext|>, more</w>, <|endoftext|>
99564: will -> <|startoftext|>, will</w>, <|endoftext|>
99566: can -> <|startoftext|>, can</w>, <|endoftext|>
99569: te -> <|startoftext|>, te</w>, <|endoftext|>
99570: wn -> <|startoftext|>, wn</w>, <|endoftext|>
99574: just -> <|startoftext|>, just</w>, <|endoftext|>
99575: ning -> <|startoftext|>, ning</w>, <|endoftext|>
99576: here -> <|startoftext|>, here</w>, <|endoftext|>
99580: but -> <|startoftext|>, but</w>, <|endoftext|>
99581: what -> <|startoftext|>, what</w>, <|endoftext|>
99582: ally -> <|startoftext|>, ally</w>, <|endoftext|>
99586: ant -> <|startoftext|>, ant</w>, <|endoftext|>
99588: ted -> <|startoftext|>, ted</w>, <|endoftext|>
99590: ment -> <|startoftext|>, ment</w>, <|endoftext|>
99592: get -> <|startoftext|>, get</w>, <|endoftext|>
99593: ame -> <|startoftext|>, ame</w>, <|endoftext|>
99596: not -> <|startoftext|>, not</w>, <|endoftext|>
99598: ays -> <|startoftext|>, ays</w>, <|endoftext|>
99599: man -> <|startoftext|>, man</w>, <|endoftext|>
99600: his -> <|startoftext|>, his</w>, <|endoftext|>
99601: time -> <|startoftext|>, time</w>, <|endoftext|>
99602: like -> <|startoftext|>, like</w>, <|endoftext|>
99603: gh -> <|startoftext|>, gh</w>, <|endoftext|>
99604: has -> <|startoftext|>, has</w>, <|endoftext|>
99606: love -> <|startoftext|>, love</w>, <|endoftext|>
99607: art -> <|startoftext|>, art</w>, <|endoftext|>
99609: ding -> <|startoftext|>, ding</w>, <|endoftext|>
99610: he -> <|startoftext|>, he</w>, <|endoftext|>
99612: ws -> <|startoftext|>, ws</w>, <|endoftext|>
99614: der -> <|startoftext|>, der</w>, <|endoftext|>
99615: ite -> <|startoftext|>, ite</w>, <|endoftext|>
99617: ace -> <|startoftext|>, ace</w>, <|endoftext|>
99618: age -> <|startoftext|>, age</w>, <|endoftext|>
99619: end -> <|startoftext|>, end</w>, <|endoftext|>
99623: re -> <|startoftext|>, re</w>, <|endoftext|>
99625: ell -> <|startoftext|>, ell</w>, <|endoftext|>
99627: ps -> <|startoftext|>, ps</w>, <|endoftext|>
99631: do -> <|startoftext|>, do</w>, <|endoftext|>
99635: who -> <|startoftext|>, who</w>, <|endoftext|>
99638: son -> <|startoftext|>, son</w>, <|endoftext|>
99640: when -> <|startoftext|>, when</w>, <|endoftext|>
99642: how -> <|startoftext|>, how</w>, <|endoftext|>
99645: el -> <|startoftext|>, el</w>, <|endoftext|>
99649: some -> <|startoftext|>, some</w>, <|endoftext|>
99653: les -> <|startoftext|>, les</w>, <|endoftext|>
99659: ong -> <|startoftext|>, ong</w>, <|endoftext|>
99660: don -> <|startoftext|>, don</w>, <|endoftext|>
99662: sh -> <|startoftext|>, sh</w>, <|endoftext|>
99666: ound -> <|startoftext|>, ound</w>, <|endoftext|>
99669: ary -> <|startoftext|>, ary</w>, <|endoftext|>
99670: ful -> <|startoftext|>, ful</w>, <|endoftext|>
99672: ould -> <|startoftext|>, ould</w>, <|endoftext|>
99674: go -> <|startoftext|>, go</w>, <|endoftext|>
99675: see -> <|startoftext|>, see</w>, <|endoftext|>
99676: able -> <|startoftext|>, able</w>, <|endoftext|>
99677: ars -> <|startoftext|>, ars</w>, <|endoftext|>
99678: ll -> <|startoftext|>, ll</w>, <|endoftext|>
99681: ck -> <|startoftext|>, ck</w>, <|endoftext|>
99683: ents -> <|startoftext|>, ents</w>, <|endoftext|>
99684: no -> <|startoftext|>, no</w>, <|endoftext|>
99686: fe -> <|startoftext|>, fe</w>, <|endoftext|>
99688: et -> <|startoftext|>, et</w>, <|endoftext|>
99691: if -> <|startoftext|>, if</w>, <|endoftext|>
99692: ous -> <|startoftext|>, ous</w>, <|endoftext|>
99694: ster -> <|startoftext|>, ster</w>, <|endoftext|>
99697: ance -> <|startoftext|>, ance</w>, <|endoftext|>
99698: ans -> <|startoftext|>, ans</w>, <|endoftext|>
99699: good -> <|startoftext|>, good</w>, <|endoftext|>
99702: they -> <|startoftext|>, they</w>, <|endoftext|>
99704: come -> <|startoftext|>, come</w>, <|endoftext|>
99706: back -> <|startoftext|>, back</w>, <|endoftext|>
99707: ase -> <|startoftext|>, ase</w>, <|endoftext|>
99708: ings -> <|startoftext|>, ings</w>, <|endoftext|>
99709: old -> <|startoftext|>, old</w>, <|endoftext|>
99710: ight -> <|startoftext|>, ight</w>, <|endoftext|>
99712: her -> <|startoftext|>, her</w>, <|endoftext|>
99715: its -> <|startoftext|>, its</w>, <|endoftext|>
99716: ving -> <|startoftext|>, ving</w>, <|endoftext|>
99720: dy -> <|startoftext|>, dy</w>, <|endoftext|>
99723: ying -> <|startoftext|>, ying</w>, <|endoftext|>
99725: led -> <|startoftext|>, led</w>, <|endoftext|>
99726: ry -> <|startoftext|>, ry</w>, <|endoftext|>
99730: ton -> <|startoftext|>, ton</w>, <|endoftext|>
99731: onal -> <|startoftext|>, onal</w>, <|endoftext|>
99736: way -> <|startoftext|>, way</w>, <|endoftext|>
99742: ool -> <|startoftext|>, ool</w>, <|endoftext|>
99747: res -> <|startoftext|>, res</w>, <|endoftext|>
99748: year -> <|startoftext|>, year</w>, <|endoftext|>
99751: als -> <|startoftext|>, als</w>, <|endoftext|>
99754: ture -> <|startoftext|>, ture</w>, <|endoftext|>
99756: ated -> <|startoftext|>, ated</w>, <|endoftext|>
99762: best -> <|startoftext|>, best</w>, <|endoftext|>
99764: work -> <|startoftext|>, work</w>, <|endoftext|>
99765: last -> <|startoftext|>, last</w>, <|endoftext|>
99767: ence -> <|startoftext|>, ence</w>, <|endoftext|>
99769: pe -> <|startoftext|>, pe</w>, <|endoftext|>
99771: il -> <|startoftext|>, il</w>, <|endoftext|>
99774: ys -> <|startoftext|>, ys</w>, <|endoftext|>
99775: over -> <|startoftext|>, over</w>, <|endoftext|>
99776: ies -> <|startoftext|>, ies</w>, <|endoftext|>
99780: ink -> <|startoftext|>, ink</w>, <|endoftext|>
99783: life -> <|startoftext|>, life</w>, <|endoftext|>
99786: land -> <|startoftext|>, land</w>, <|endoftext|>
99794: ft -> <|startoftext|>, ft</w>, <|endoftext|>
99800: ach -> <|startoftext|>, ach</w>, <|endoftext|>
99801: ms -> <|startoftext|>, ms</w>, <|endoftext|>
99802: ile -> <|startoftext|>, ile</w>, <|endoftext|>
99803: pm -> <|startoftext|>, pm</w>, <|endoftext|>
99804: ough -> <|startoftext|>, ough</w>, <|endoftext|>
99807: week -> <|startoftext|>, week</w>, <|endoftext|>
99811: ner -> <|startoftext|>, ner</w>, <|endoftext|>
99816: ves -> <|startoftext|>, ves</w>, <|endoftext|>
99818: got -> <|startoftext|>, got</w>, <|endoftext|>
99820: off -> <|startoftext|>, off</w>, <|endoftext|>
99821: um -> <|startoftext|>, um</w>, <|endoftext|>
99825: look -> <|startoftext|>, look</w>, <|endoftext|>
99827: id -> <|startoftext|>, id</w>, <|endoftext|>
99828: sion -> <|startoftext|>, sion</w>, <|endoftext|>
99832: ort -> <|startoftext|>, ort</w>, <|endoftext|>
99838: been -> <|startoftext|>, been</w>, <|endoftext|>
99839: ily -> <|startoftext|>, ily</w>, <|endoftext|>
99840: team -> <|startoftext|>, team</w>, <|endoftext|>
99842: ic -> <|startoftext|>, ic</w>, <|endoftext|>
99845: ats -> <|startoftext|>, ats</w>, <|endoftext|>
99846: only -> <|startoftext|>, only</w>, <|endoftext|>
99847: mber -> <|startoftext|>, mber</w>, <|endoftext|>
99851: know -> <|startoftext|>, know</w>, <|endoftext|>
99854: ins -> <|startoftext|>, ins</w>, <|endoftext|>
99855: low -> <|startoftext|>, low</w>, <|endoftext|>
99856: she -> <|startoftext|>, she</w>, <|endoftext|>
99857: row -> <|startoftext|>, row</w>, <|endoftext|>
99861: via -> <|startoftext|>, via</w>, <|endoftext|>
99865: xt -> <|startoftext|>, xt</w>, <|endoftext|>
99872: ble -> <|startoftext|>, ble</w>, <|endoftext|>
99874: ish -> <|startoftext|>, ish</w>, <|endoftext|>
99876: game -> <|startoftext|>, game</w>, <|endoftext|>
99877: live -> <|startoftext|>, live</w>, <|endoftext|>
99879: ley -> <|startoftext|>, ley</w>, <|endoftext|>
99881: ick -> <|startoftext|>, ick</w>, <|endoftext|>
99882: ball -> <|startoftext|>, ball</w>, <|endoftext|>
99883: very -> <|startoftext|>, very</w>, <|endoftext|>
99886: ia -> <|startoftext|>, ia</w>, <|endoftext|>
99891: make -> <|startoftext|>, make</w>, <|endoftext|>
99893: show -> <|startoftext|>, show</w>, <|endoftext|>
99901: sts -> <|startoftext|>, sts</w>, <|endoftext|>
99906: view -> <|startoftext|>, view</w>, <|endoftext|>
99907: let -> <|startoftext|>, let</w>, <|endoftext|>
99908: into -> <|startoftext|>, into</w>, <|endoftext|>
99909: most -> <|startoftext|>, most</w>, <|endoftext|>
99913: had -> <|startoftext|>, had</w>, <|endoftext|>
99915: ved -> <|startoftext|>, ved</w>, <|endoftext|>
99918: made -> <|startoftext|>, made</w>, <|endoftext|>
99921: ited -> <|startoftext|>, ited</w>, <|endoftext|>
99923: ical -> <|startoftext|>, ical</w>, <|endoftext|>
99928: kes -> <|startoftext|>, kes</w>, <|endoftext|>
99929: book -> <|startoftext|>, book</w>, <|endoftext|>
99930: ep -> <|startoftext|>, ep</w>, <|endoftext|>
99931: sic -> <|startoftext|>, sic</w>, <|endoftext|>
99933: news -> <|startoftext|>, news</w>, <|endoftext|>
99935: ct -> <|startoftext|>, ct</w>, <|endoftext|>
99936: well -> <|startoftext|>, well</w>, <|endoftext|>
99939: than -> <|startoftext|>, than</w>, <|endoftext|>
99940: ors -> <|startoftext|>, ors</w>, <|endoftext|>
99944: next -> <|startoftext|>, next</w>, <|endoftext|>
99949: down -> <|startoftext|>, down</w>, <|endoftext|>
99950: home -> <|startoftext|>, home</w>, <|endoftext|>
99952: free -> <|startoftext|>, free</w>, <|endoftext|>
99953: da -> <|startoftext|>, da</w>, <|endoftext|>
99956: cial -> <|startoftext|>, cial</w>, <|endoftext|>
99958: side -> <|startoftext|>, side</w>, <|endoftext|>
99961: line -> <|startoftext|>, line</w>, <|endoftext|>
99963: ates -> <|startoftext|>, ates</w>, <|endoftext|>
99971: ship -> <|startoftext|>, ship</w>, <|endoftext|>
99974: days -> <|startoftext|>, days</w>, <|endoftext|>
99976: ason -> <|startoftext|>, ason</w>, <|endoftext|>
99977: gy -> <|startoftext|>, gy</w>, <|endoftext|>
99980: set -> <|startoftext|>, set</w>, <|endoftext|>
99985: take -> <|startoftext|>, take</w>, <|endoftext|>
99993: them -> <|startoftext|>, them</w>, <|endoftext|>
99994: den -> <|startoftext|>, den</w>, <|endoftext|>
99995: why -> <|startoftext|>, why</w>, <|endoftext|>
100003: ue -> <|startoftext|>, ue</w>, <|endoftext|>
100009: ak -> <|startoftext|>, ak</w>, <|endoftext|>
100010: sing -> <|startoftext|>, sing</w>, <|endoftext|>
100012: read -> <|startoftext|>, read</w>, <|endoftext|>
100018: big -> <|startoftext|>, big</w>, <|endoftext|>
100020: int -> <|startoftext|>, int</w>, <|endoftext|>
100021: tor -> <|startoftext|>, tor</w>, <|endoftext|>
100022: try -> <|startoftext|>, try</w>, <|endoftext|>
100023: la -> <|startoftext|>, la</w>, <|endoftext|>
100038: win -> <|startoftext|>, win</w>, <|endoftext|>
100039: ma -> <|startoftext|>, ma</w>, <|endoftext|>
100045: ich -> <|startoftext|>, ich</w>, <|endoftext|>
100049: ket -> <|startoftext|>, ket</w>, <|endoftext|>
100050: two -> <|startoftext|>, two</w>, <|endoftext|>
100051: much -> <|startoftext|>, much</w>, <|endoftext|>
100054: ded -> <|startoftext|>, ded</w>, <|endoftext|>
100055: ast -> <|startoftext|>, ast</w>, <|endoftext|>
100056: ked -> <|startoftext|>, ked</w>, <|endoftext|>
100059: mp -> <|startoftext|>, mp</w>, <|endoftext|>
100060: ever -> <|startoftext|>, ever</w>, <|endoftext|>
100061: ways -> <|startoftext|>, ways</w>, <|endoftext|>
100065: sed -> <|startoftext|>, sed</w>, <|endoftext|>
100066: top -> <|startoftext|>, top</w>, <|endoftext|>
100069: too -> <|startoftext|>, too</w>, <|endoftext|>
100071: dent -> <|startoftext|>, dent</w>, <|endoftext|>
100072: ghts -> <|startoftext|>, ghts</w>, <|endoftext|>
100075: need -> <|startoftext|>, need</w>, <|endoftext|>
100081: ls -> <|startoftext|>, ls</w>, <|endoftext|>
100082: him -> <|startoftext|>, him</w>, <|endoftext|>
100083: may -> <|startoftext|>, may</w>, <|endoftext|>
100085: na -> <|startoftext|>, na</w>, <|endoftext|>
100086: ely -> <|startoftext|>, ely</w>, <|endoftext|>
100093: want -> <|startoftext|>, want</w>, <|endoftext|>
100095: pic -> <|startoftext|>, pic</w>, <|endoftext|>
100097: per -> <|startoftext|>, per</w>, <|endoftext|>
100098: less -> <|startoftext|>, less</w>, <|endoftext|>
100100: vel -> <|startoftext|>, vel</w>, <|endoftext|>
100101: ah -> <|startoftext|>, ah</w>, <|endoftext|>
100107: ness -> <|startoftext|>, ness</w>, <|endoftext|>
100111: ze -> <|startoftext|>, ze</w>, <|endoftext|>
100112: os -> <|startoftext|>, os</w>, <|endoftext|>
100117: ff -> <|startoftext|>, ff</w>, <|endoftext|>
100118: city -> <|startoftext|>, city</w>, <|endoftext|>
100131: help -> <|startoftext|>, help</w>, <|endoftext|>
100133: co -> <|startoftext|>, co</w>, <|endoftext|>
100135: self -> <|startoftext|>, self</w>, <|endoftext|>
100136: ens -> <|startoftext|>, ens</w>, <|endoftext|>
100137: ics -> <|startoftext|>, ics</w>, <|endoftext|>
100142: bs -> <|startoftext|>, bs</w>, <|endoftext|>
100145: fore -> <|startoftext|>, fore</w>, <|endoftext|>
100148: did -> <|startoftext|>, did</w>, <|endoftext|>
100149: ale -> <|startoftext|>, ale</w>, <|endoftext|>
100152: ends -> <|startoftext|>, ends</w>, <|endoftext|>
100153: wing -> <|startoftext|>, wing</w>, <|endoftext|>
100157: sa -> <|startoftext|>, sa</w>, <|endoftext|>
100158: gs -> <|startoftext|>, gs</w>, <|endoftext|>
100159: many -> <|startoftext|>, many</w>, <|endoftext|>
100163: ny -> <|startoftext|>, ny</w>, <|endoftext|>
100169: sted -> <|startoftext|>, sted</w>, <|endoftext|>
100171: ling -> <|startoftext|>, ling</w>, <|endoftext|>
100172: oud -> <|startoftext|>, oud</w>, <|endoftext|>
100173: dge -> <|startoftext|>, dge</w>, <|endoftext|>
100178: were -> <|startoftext|>, were</w>, <|endoftext|>
100179: ina -> <|startoftext|>, ina</w>, <|endoftext|>
100182: ned -> <|startoftext|>, ned</w>, <|endoftext|>
100186: ns -> <|startoftext|>, ns</w>, <|endoftext|>
100188: head -> <|startoftext|>, head</w>, <|endoftext|>
100189: sday -> <|startoftext|>, sday</w>, <|endoftext|>
100197: join -> <|startoftext|>, join</w>, <|endoftext|>
100199: ses -> <|startoftext|>, ses</w>, <|endoftext|>
100201: ana -> <|startoftext|>, ana</w>, <|endoftext|>
100206: act -> <|startoftext|>, act</w>, <|endoftext|>
100209: ams -> <|startoftext|>, ams</w>, <|endoftext|>
100210: ta -> <|startoftext|>, ta</w>, <|endoftext|>
100212: fc -> <|startoftext|>, fc</w>, <|endoftext|>
100213: high -> <|startoftext|>, high</w>, <|endoftext|>
100215: tt -> <|startoftext|>, tt</w>, <|endoftext|>
100219: ral -> <|startoftext|>, ral</w>, <|endoftext|>
100225: mas -> <|startoftext|>, mas</w>, <|endoftext|>
100229: find -> <|startoftext|>, find</w>, <|endoftext|>
100231: port -> <|startoftext|>, port</w>, <|endoftext|>
100233: tive -> <|startoftext|>, tive</w>, <|endoftext|>
100235: ne -> <|startoftext|>, ne</w>, <|endoftext|>
100236: ore -> <|startoftext|>, ore</w>, <|endoftext|>
100240: even -> <|startoftext|>, even</w>, <|endoftext|>
100242: ha -> <|startoftext|>, ha</w>, <|endoftext|>
100243: ya -> <|startoftext|>, ya</w>, <|endoftext|>
100245: uk -> <|startoftext|>, uk</w>, <|endoftext|>
100250: des -> <|startoftext|>, des</w>, <|endoftext|>
100251: ney -> <|startoftext|>, ney</w>, <|endoftext|>
100259: also -> <|startoftext|>, also</w>, <|endoftext|>
100264: say -> <|startoftext|>, say</w>, <|endoftext|>
100265: park -> <|startoftext|>, park</w>, <|endoftext|>
100266: play -> <|startoftext|>, play</w>, <|endoftext|>
100267: ire -> <|startoftext|>, ire</w>, <|endoftext|>
100271: key -> <|startoftext|>, key</w>, <|endoftext|>
100272: pt -> <|startoftext|>, pt</w>, <|endoftext|>
100273: ward -> <|startoftext|>, ward</w>, <|endoftext|>
100281: ago -> <|startoftext|>, ago</w>, <|endoftext|>
100289: full -> <|startoftext|>, full</w>, <|endoftext|>
100290: ey -> <|startoftext|>, ey</w>, <|endoftext|>
100292: ise -> <|startoftext|>, ise</w>, <|endoftext|>
100296: use -> <|startoftext|>, use</w>, <|endoftext|>
100298: ker -> <|startoftext|>, ker</w>, <|endoftext|>
100301: open -> <|startoftext|>, open</w>, <|endoftext|>
100304: ours -> <|startoftext|>, ours</w>, <|endoftext|>
100305: shed -> <|startoftext|>, shed</w>, <|endoftext|>
100309: im -> <|startoftext|>, im</w>, <|endoftext|>
100312: fun -> <|startoftext|>, fun</w>, <|endoftext|>
100315: ger -> <|startoftext|>, ger</w>, <|endoftext|>
100317: any -> <|startoftext|>, any</w>, <|endoftext|>
100322: est -> <|startoftext|>, est</w>, <|endoftext|>
100329: ber -> <|startoftext|>, ber</w>, <|endoftext|>
100333: away -> <|startoftext|>, away</w>, <|endoftext|>
100334: dio -> <|startoftext|>, dio</w>, <|endoftext|>
100337: date -> <|startoftext|>, date</w>, <|endoftext|>
100338: ka -> <|startoftext|>, ka</w>, <|endoftext|>
100339: miss -> <|startoftext|>, miss</w>, <|endoftext|>
100340: unch -> <|startoftext|>, unch</w>, <|endoftext|>
100343: room -> <|startoftext|>, room</w>, <|endoftext|>
100344: ga -> <|startoftext|>, ga</w>, <|endoftext|>
100345: real -> <|startoftext|>, real</w>, <|endoftext|>
100351: long -> <|startoftext|>, long</w>, <|endoftext|>
100356: ils -> <|startoftext|>, ils</w>, <|endoftext|>
100360: vs -> <|startoftext|>, vs</w>, <|endoftext|>
100362: post -> <|startoftext|>, post</w>, <|endoftext|>
100363: tic -> <|startoftext|>, tic</w>, <|endoftext|>
100364: part -> <|startoftext|>, part</w>, <|endoftext|>
100367: cess -> <|startoftext|>, cess</w>, <|endoftext|>
100370: shop -> <|startoftext|>, shop</w>, <|endoftext|>
100372: food -> <|startoftext|>, food</w>, <|endoftext|>
100373: val -> <|startoftext|>, val</w>, <|endoftext|>
100374: stic -> <|startoftext|>, stic</w>, <|endoftext|>
100376: says -> <|startoftext|>, says</w>, <|endoftext|>
100378: star -> <|startoftext|>, star</w>, <|endoftext|>
100388: ones -> <|startoftext|>, ones</w>, <|endoftext|>
100394: inst -> <|startoftext|>, inst</w>, <|endoftext|>
100396: tv -> <|startoftext|>, tv</w>, <|endoftext|>
100402: ants -> <|startoftext|>, ants</w>, <|endoftext|>
100406: west -> <|startoftext|>, west</w>, <|endoftext|>
100407: then -> <|startoftext|>, then</w>, <|endoftext|>
100412: ween -> <|startoftext|>, ween</w>, <|endoftext|>
100417: ces -> <|startoftext|>, ces</w>, <|endoftext|>
100418: town -> <|startoftext|>, town</w>, <|endoftext|>
100422: rent -> <|startoftext|>, rent</w>, <|endoftext|>
100424: girl -> <|startoftext|>, girl</w>, <|endoftext|>
100428: car -> <|startoftext|>, car</w>, <|endoftext|>
100431: di -> <|startoftext|>, di</w>, <|endoftext|>
100432: ple -> <|startoftext|>, ple</w>, <|endoftext|>
100433: call -> <|startoftext|>, call</w>, <|endoftext|>
100436: ford -> <|startoftext|>, ford</w>, <|endoftext|>
100439: hard -> <|startoftext|>, hard</w>, <|endoftext|>
100441: test -> <|startoftext|>, test</w>, <|endoftext|>
100445: kets -> <|startoftext|>, kets</w>, <|endoftext|>
100446: meet -> <|startoftext|>, meet</w>, <|endoftext|>
100451: ven -> <|startoftext|>, ven</w>, <|endoftext|>
100458: els -> <|startoftext|>, els</w>, <|endoftext|>
100459: tly -> <|startoftext|>, tly</w>, <|endoftext|>
100462: ath -> <|startoftext|>, ath</w>, <|endoftext|>
100463: sure -> <|startoftext|>, sure</w>, <|endoftext|>
100465: lar -> <|startoftext|>, lar</w>, <|endoftext|>
100467: ards -> <|startoftext|>, ards</w>, <|endoftext|>
100469: men -> <|startoftext|>, men</w>, <|endoftext|>
100472: logy -> <|startoftext|>, logy</w>, <|endoftext|>
100473: ital -> <|startoftext|>, ital</w>, <|endoftext|>
100483: gan -> <|startoftext|>, gan</w>, <|endoftext|>
100491: cy -> <|startoftext|>, cy</w>, <|endoftext|>
100496: hope -> <|startoftext|>, hope</w>, <|endoftext|>
100497: ca -> <|startoftext|>, ca</w>, <|endoftext|>
100503: sale -> <|startoftext|>, sale</w>, <|endoftext|>
100504: stop -> <|startoftext|>, stop</w>, <|endoftext|>
100505: ery -> <|startoftext|>, ery</w>, <|endoftext|>
100509: ama -> <|startoftext|>, ama</w>, <|endoftext|>
100513: done -> <|startoftext|>, done</w>, <|endoftext|>
100514: dr -> <|startoftext|>, dr</w>, <|endoftext|>
100515: ken -> <|startoftext|>, ken</w>, <|endoftext|>
100517: wood -> <|startoftext|>, wood</w>, <|endoftext|>
100521: vely -> <|startoftext|>, vely</w>, <|endoftext|>
100523: face -> <|startoftext|>, face</w>, <|endoftext|>
100527: ham -> <|startoftext|>, ham</w>, <|endoftext|>
100531: ie -> <|startoftext|>, ie</w>, <|endoftext|>
100537: rs -> <|startoftext|>, rs</w>, <|endoftext|>
100539: keep -> <|startoftext|>, keep</w>, <|endoftext|>
100544: god -> <|startoftext|>, god</w>, <|endoftext|>
100548: ra -> <|startoftext|>, ra</w>, <|endoftext|>
100549: club -> <|startoftext|>, club</w>, <|endoftext|>
100550: ters -> <|startoftext|>, ters</w>, <|endoftext|>
100555: john -> <|startoftext|>, john</w>, <|endoftext|>
100558: soon -> <|startoftext|>, soon</w>, <|endoftext|>
100559: blue -> <|startoftext|>, blue</w>, <|endoftext|>
100562: won -> <|startoftext|>, won</w>, <|endoftext|>
100570: ith -> <|startoftext|>, ith</w>, <|endoftext|>
100571: own -> <|startoftext|>, own</w>, <|endoftext|>
100572: road -> <|startoftext|>, road</w>, <|endoftext|>
100573: tour -> <|startoftext|>, tour</w>, <|endoftext|>
100576: til -> <|startoftext|>, til</w>, <|endoftext|>
100577: nd -> <|startoftext|>, nd</w>, <|endoftext|>
100582: fire -> <|startoftext|>, fire</w>, <|endoftext|>
100587: body -> <|startoftext|>, body</w>, <|endoftext|>
100588: ur -> <|startoftext|>, ur</w>, <|endoftext|>
100589: care -> <|startoftext|>, care</w>, <|endoftext|>
100592: oh -> <|startoftext|>, oh</w>, <|endoftext|>
100594: give -> <|startoftext|>, give</w>, <|endoftext|>
100604: guys -> <|startoftext|>, guys</w>, <|endoftext|>
100605: ba -> <|startoftext|>, ba</w>, <|endoftext|>
100607: baby -> <|startoftext|>, baby</w>, <|endoftext|>
100613: ian -> <|startoftext|>, ian</w>, <|endoftext|>
100615: sses -> <|startoftext|>, sses</w>, <|endoftext|>
100616: ler -> <|startoftext|>, ler</w>, <|endoftext|>
100617: ssed -> <|startoftext|>, ssed</w>, <|endoftext|>
100618: nice -> <|startoftext|>, nice</w>, <|endoftext|>
100636: left -> <|startoftext|>, left</w>, <|endoftext|>
100637: lol -> <|startoftext|>, lol</w>, <|endoftext|>
100642: ef -> <|startoftext|>, ef</w>, <|endoftext|>
100652: ston -> <|startoftext|>, ston</w>, <|endoftext|>
100653: fans -> <|startoftext|>, fans</w>, <|endoftext|>
100654: talk -> <|startoftext|>, talk</w>, <|endoftext|>
100669: tty -> <|startoftext|>, tty</w>, <|endoftext|>
100673: film -> <|startoftext|>, film</w>, <|endoftext|>
100675: dies -> <|startoftext|>, dies</w>, <|endoftext|>
100679: eve -> <|startoftext|>, eve</w>, <|endoftext|>
100686: pped -> <|startoftext|>, pped</w>, <|endoftext|>
100688: sive -> <|startoftext|>, sive</w>, <|endoftext|>
100689: boy -> <|startoftext|>, boy</w>, <|endoftext|>
100696: hi -> <|startoftext|>, hi</w>, <|endoftext|>
100698: wait -> <|startoftext|>, wait</w>, <|endoftext|>
100699: ada -> <|startoftext|>, ada</w>, <|endoftext|>
100705: va -> <|startoftext|>, va</w>, <|endoftext|>
100710: does -> <|startoftext|>, does</w>, <|endoftext|>
100713: ills -> <|startoftext|>, ills</w>, <|endoftext|>
100720: form -> <|startoftext|>, form</w>, <|endoftext|>
100721: tain -> <|startoftext|>, tain</w>, <|endoftext|>
100723: ches -> <|startoftext|>, ches</w>, <|endoftext|>
100724: kids -> <|startoftext|>, kids</w>, <|endoftext|>
100732: dom -> <|startoftext|>, dom</w>, <|endoftext|>
100734: ual -> <|startoftext|>, ual</w>, <|endoftext|>
100735: air -> <|startoftext|>, air</w>, <|endoftext|>
100736: ders -> <|startoftext|>, ders</w>, <|endoftext|>
100738: cer -> <|startoftext|>, cer</w>, <|endoftext|>
100741: ade -> <|startoftext|>, ade</w>, <|endoftext|>
100742: dog -> <|startoftext|>, dog</w>, <|endoftext|>
100744: ices -> <|startoftext|>, ices</w>, <|endoftext|>
100747: run -> <|startoftext|>, run</w>, <|endoftext|>
100748: ism -> <|startoftext|>, ism</w>, <|endoftext|>
100750: cup -> <|startoftext|>, cup</w>, <|endoftext|>
100752: few -> <|startoftext|>, few</w>, <|endoftext|>
100754: eds -> <|startoftext|>, eds</w>, <|endoftext|>
100759: said -> <|startoftext|>, said</w>, <|endoftext|>
100760: ole -> <|startoftext|>, ole</w>, <|endoftext|>
100766: fast -> <|startoftext|>, fast</w>, <|endoftext|>
100767: lot -> <|startoftext|>, lot</w>, <|endoftext|>
100771: yes -> <|startoftext|>, yes</w>, <|endoftext|>
100775: ator -> <|startoftext|>, ator</w>, <|endoftext|>
100776: band -> <|startoftext|>, band</w>, <|endoftext|>
100783: cast -> <|startoftext|>, cast</w>, <|endoftext|>
100786: rd -> <|startoftext|>, rd</w>, <|endoftext|>
100787: ial -> <|startoftext|>, ial</w>, <|endoftext|>
100794: name -> <|startoftext|>, name</w>, <|endoftext|>
100795: mr -> <|startoftext|>, mr</w>, <|endoftext|>
100796: put -> <|startoftext|>, put</w>, <|endoftext|>
100798: ory -> <|startoftext|>, ory</w>, <|endoftext|>
100799: came -> <|startoftext|>, came</w>, <|endoftext|>
100801: site -> <|startoftext|>, site</w>, <|endoftext|>
100806: zed -> <|startoftext|>, zed</w>, <|endoftext|>
100810: alls -> <|startoftext|>, alls</w>, <|endoftext|>
100811: list -> <|startoftext|>, list</w>, <|endoftext|>
100812: ris -> <|startoftext|>, ris</w>, <|endoftext|>
100813: shot -> <|startoftext|>, shot</w>, <|endoftext|>
100816: del -> <|startoftext|>, del</w>, <|endoftext|>
100820: ram -> <|startoftext|>, ram</w>, <|endoftext|>
100823: bit -> <|startoftext|>, bit</w>, <|endoftext|>
100834: cc -> <|startoftext|>, cc</w>, <|endoftext|>
100839: used -> <|startoftext|>, used</w>, <|endoftext|>
100844: cks -> <|startoftext|>, cks</w>, <|endoftext|>
100846: gest -> <|startoftext|>, gest</w>, <|endoftext|>
100847: boys -> <|startoftext|>, boys</w>, <|endoftext|>
100851: ined -> <|startoftext|>, ined</w>, <|endoftext|>
100854: seen -> <|startoftext|>, seen</w>, <|endoftext|>
100855: ph -> <|startoftext|>, ph</w>, <|endoftext|>
100859: such -> <|startoftext|>, such</w>, <|endoftext|>
100861: must -> <|startoftext|>, must</w>, <|endoftext|>
100864: feel -> <|startoftext|>, feel</w>, <|endoftext|>
100871: sk -> <|startoftext|>, sk</w>, <|endoftext|>
100872: fic -> <|startoftext|>, fic</w>, <|endoftext|>
100874: tech -> <|startoftext|>, tech</w>, <|endoftext|>
100875: ot -> <|startoftext|>, ot</w>, <|endoftext|>
100876: box -> <|startoftext|>, box</w>, <|endoftext|>
100879: tal -> <|startoftext|>, tal</w>, <|endoftext|>
100881: case -> <|startoftext|>, case</w>, <|endoftext|>
100882: hot -> <|startoftext|>, hot</w>, <|endoftext|>
100885: era -> <|startoftext|>, era</w>, <|endoftext|>
100888: job -> <|startoftext|>, job</w>, <|endoftext|>
100890: cool -> <|startoftext|>, cool</w>, <|endoftext|>
100892: ths -> <|startoftext|>, ths</w>, <|endoftext|>
100893: mo -> <|startoftext|>, mo</w>, <|endoftext|>
100895: die -> <|startoftext|>, die</w>, <|endoftext|>
100902: ping -> <|startoftext|>, ping</w>, <|endoftext|>
100905: ek -> <|startoftext|>, ek</w>, <|endoftext|>
100907: vers -> <|startoftext|>, vers</w>, <|endoftext|>
100908: ague -> <|startoftext|>, ague</w>, <|endoftext|>
100915: sea -> <|startoftext|>, sea</w>, <|endoftext|>
100916: bad -> <|startoftext|>, bad</w>, <|endoftext|>
100918: turn -> <|startoftext|>, turn</w>, <|endoftext|>
100919: ury -> <|startoftext|>, ury</w>, <|endoftext|>
100920: ming -> <|startoftext|>, ming</w>, <|endoftext|>
100923: mark -> <|startoftext|>, mark</w>, <|endoftext|>
100939: sy -> <|startoftext|>, sy</w>, <|endoftext|>
100940: gets -> <|startoftext|>, gets</w>, <|endoftext|>
100942: ners -> <|startoftext|>, ners</w>, <|endoftext|>
100944: buy -> <|startoftext|>, buy</w>, <|endoftext|>
100947: ased -> <|startoftext|>, ased</w>, <|endoftext|>
100950: ines -> <|startoftext|>, ines</w>, <|endoftext|>
100953: hall -> <|startoftext|>, hall</w>, <|endoftext|>
100959: ched -> <|startoftext|>, ched</w>, <|endoftext|>
100962: guy -> <|startoftext|>, guy</w>, <|endoftext|>
100971: ross -> <|startoftext|>, ross</w>, <|endoftext|>
100972: len -> <|startoftext|>, len</w>, <|endoftext|>
100973: anna -> <|startoftext|>, anna</w>, <|endoftext|>
100975: bc -> <|startoftext|>, bc</w>, <|endoftext|>
100976: ece -> <|startoftext|>, ece</w>, <|endoftext|>
100985: rock -> <|startoftext|>, rock</w>, <|endoftext|>
100986: mon -> <|startoftext|>, mon</w>, <|endoftext|>
100987: bay -> <|startoftext|>, bay</w>, <|endoftext|>
100989: sun -> <|startoftext|>, sun</w>, <|endoftext|>
100990: med -> <|startoftext|>, med</w>, <|endoftext|>
100999: za -> <|startoftext|>, za</w>, <|endoftext|>
101000: vote -> <|startoftext|>, vote</w>, <|endoftext|>
101002: hey -> <|startoftext|>, hey</w>, <|endoftext|>
101021: same -> <|startoftext|>, same</w>, <|endoftext|>
101022: gold -> <|startoftext|>, gold</w>, <|endoftext|>
101023: ain -> <|startoftext|>, ain</w>, <|endoftext|>
101025: both -> <|startoftext|>, both</w>, <|endoftext|>
101028: ai -> <|startoftext|>, ai</w>, <|endoftext|>
101030: pa -> <|startoftext|>, pa</w>, <|endoftext|>
101035: info -> <|startoftext|>, info</w>, <|endoftext|>
101036: san -> <|startoftext|>, san</w>, <|endoftext|>
101038: hair -> <|startoftext|>, hair</w>, <|endoftext|>
101039: tel -> <|startoftext|>, tel</w>, <|endoftext|>
101044: app -> <|startoftext|>, app</w>, <|endoftext|>
101045: hour -> <|startoftext|>, hour</w>, <|endoftext|>
101049: ols -> <|startoftext|>, ols</w>, <|endoftext|>
101051: war -> <|startoftext|>, war</w>, <|endoftext|>
101055: cute -> <|startoftext|>, cute</w>, <|endoftext|>
101058: stry -> <|startoftext|>, stry</w>, <|endoftext|>
101062: sen -> <|startoftext|>, sen</w>, <|endoftext|>
101063: ow -> <|startoftext|>, ow</w>, <|endoftext|>
101064: mi -> <|startoftext|>, mi</w>, <|endoftext|>
101065: near -> <|startoftext|>, near</w>, <|endoftext|>
101071: sey -> <|startoftext|>, sey</w>, <|endoftext|>
101073: ese -> <|startoftext|>, ese</w>, <|endoftext|>
101074: fan -> <|startoftext|>, fan</w>, <|endoftext|>
101083: em -> <|startoftext|>, em</w>, <|endoftext|>
101084: un -> <|startoftext|>, un</w>, <|endoftext|>
101085: july -> <|startoftext|>, july</w>, <|endoftext|>
101090: stay -> <|startoftext|>, stay</w>, <|endoftext|>
101093: took -> <|startoftext|>, took</w>, <|endoftext|>
101094: data -> <|startoftext|>, data</w>, <|endoftext|>
101095: bal -> <|startoftext|>, bal</w>, <|endoftext|>
101097: dan -> <|startoftext|>, dan</w>, <|endoftext|>
101101: ures -> <|startoftext|>, ures</w>, <|endoftext|>
101105: sign -> <|startoftext|>, sign</w>, <|endoftext|>
101108: song -> <|startoftext|>, song</w>, <|endoftext|>
101109: yet -> <|startoftext|>, yet</w>, <|endoftext|>
101116: zy -> <|startoftext|>, zy</w>, <|endoftext|>
101117: ist -> <|startoftext|>, ist</w>, <|endoftext|>
101128: net -> <|startoftext|>, net</w>, <|endoftext|>
101132: que -> <|startoftext|>, que</w>, <|endoftext|>
101134: ages -> <|startoftext|>, ages</w>, <|endoftext|>
101136: ced -> <|startoftext|>, ced</w>, <|endoftext|>
101138: late -> <|startoftext|>, late</w>, <|endoftext|>
101139: ign -> <|startoftext|>, ign</w>, <|endoftext|>
101141: true -> <|startoftext|>, true</w>, <|endoftext|>
101142: ii -> <|startoftext|>, ii</w>, <|endoftext|>
101143: tell -> <|startoftext|>, tell</w>, <|endoftext|>
101146: asy -> <|startoftext|>, asy</w>, <|endoftext|>
101151: gram -> <|startoftext|>, gram</w>, <|endoftext|>
101153: met -> <|startoftext|>, met</w>, <|endoftext|>
101154: hit -> <|startoftext|>, hit</w>, <|endoftext|>
101158: june -> <|startoftext|>, june</w>, <|endoftext|>
101160: noon -> <|startoftext|>, noon</w>, <|endoftext|>
101162: half -> <|startoftext|>, half</w>, <|endoftext|>
101167: lish -> <|startoftext|>, lish</w>, <|endoftext|>
101169: acy -> <|startoftext|>, acy</w>, <|endoftext|>
101170: sia -> <|startoftext|>, sia</w>, <|endoftext|>
101171: bert -> <|startoftext|>, bert</w>, <|endoftext|>
101172: fall -> <|startoftext|>, fall</w>, <|endoftext|>
101181: cat -> <|startoftext|>, cat</w>, <|endoftext|>
101184: yer -> <|startoftext|>, yer</w>, <|endoftext|>
101187: walk -> <|startoftext|>, walk</w>, <|endoftext|>
101189: didn -> <|startoftext|>, didn</w>, <|endoftext|>
101196: ky -> <|startoftext|>, ky</w>, <|endoftext|>
101197: far -> <|startoftext|>, far</w>, <|endoftext|>
101201: ril -> <|startoftext|>, ril</w>, <|endoftext|>
101203: sky -> <|startoftext|>, sky</w>, <|endoftext|>
101215: chat -> <|startoftext|>, chat</w>, <|endoftext|>
101224: bar -> <|startoftext|>, bar</w>, <|endoftext|>
101225: wish -> <|startoftext|>, wish</w>, <|endoftext|>
101229: each -> <|startoftext|>, each</w>, <|endoftext|>
101232: tics -> <|startoftext|>, tics</w>, <|endoftext|>
101237: lin -> <|startoftext|>, lin</w>, <|endoftext|>
101238: saw -> <|startoftext|>, saw</w>, <|endoftext|>
101246: ells -> <|startoftext|>, ells</w>, <|endoftext|>
101247: stan -> <|startoftext|>, stan</w>, <|endoftext|>
101248: tom -> <|startoftext|>, tom</w>, <|endoftext|>
101250: went -> <|startoftext|>, went</w>, <|endoftext|>
101253: pper -> <|startoftext|>, pper</w>, <|endoftext|>
101256: rain -> <|startoftext|>, rain</w>, <|endoftext|>
101258: area -> <|startoftext|>, area</w>, <|endoftext|>
101261: ko -> <|startoftext|>, ko</w>, <|endoftext|>
101264: van -> <|startoftext|>, van</w>, <|endoftext|>
101265: mer -> <|startoftext|>, mer</w>, <|endoftext|>
101267: ites -> <|startoftext|>, ites</w>, <|endoftext|>
101270: con -> <|startoftext|>, con</w>, <|endoftext|>
101276: hand -> <|startoftext|>, hand</w>, <|endoftext|>
101277: com -> <|startoftext|>, com</w>, <|endoftext|>
101279: hs -> <|startoftext|>, hs</w>, <|endoftext|>
101281: link -> <|startoftext|>, link</w>, <|endoftext|>
101284: race -> <|startoftext|>, race</w>, <|endoftext|>
101287: gas -> <|startoftext|>, gas</w>, <|endoftext|>
101291: fit -> <|startoftext|>, fit</w>, <|endoftext|>
101294: ok -> <|startoftext|>, ok</w>, <|endoftext|>
101296: tra -> <|startoftext|>, tra</w>, <|endoftext|>
101298: ads -> <|startoftext|>, ads</w>, <|endoftext|>
101302: door -> <|startoftext|>, door</w>, <|endoftext|>
101305: alia -> <|startoftext|>, alia</w>, <|endoftext|>
101307: ened -> <|startoftext|>, ened</w>, <|endoftext|>
101311: ior -> <|startoftext|>, ior</w>, <|endoftext|>
101312: ties -> <|startoftext|>, ties</w>, <|endoftext|>
101315: shes -> <|startoftext|>, shes</w>, <|endoftext|>
101317: page -> <|startoftext|>, page</w>, <|endoftext|>
101325: ello -> <|startoftext|>, ello</w>, <|endoftext|>
101327: ints -> <|startoftext|>, ints</w>, <|endoftext|>
101330: ldn -> <|startoftext|>, ldn</w>, <|endoftext|>
101337: dit -> <|startoftext|>, dit</w>, <|endoftext|>
101338: bo -> <|startoftext|>, bo</w>, <|endoftext|>
101339: ues -> <|startoftext|>, ues</w>, <|endoftext|>
101342: trip -> <|startoftext|>, trip</w>, <|endoftext|>
101350: cle -> <|startoftext|>, cle</w>, <|endoftext|>
101351: lie -> <|startoftext|>, lie</w>, <|endoftext|>
101352: rest -> <|startoftext|>, rest</w>, <|endoftext|>
101353: ring -> <|startoftext|>, ring</w>, <|endoftext|>
101356: mom -> <|startoftext|>, mom</w>, <|endoftext|>
101357: beer -> <|startoftext|>, beer</w>, <|endoftext|>
101359: tors -> <|startoftext|>, tors</w>, <|endoftext|>
101360: usa -> <|startoftext|>, usa</w>, <|endoftext|>
101365: las -> <|startoftext|>, las</w>, <|endoftext|>
101366: lake -> <|startoftext|>, lake</w>, <|endoftext|>
101371: vin -> <|startoftext|>, vin</w>, <|endoftext|>
101372: pics -> <|startoftext|>, pics</w>, <|endoftext|>
101379: au -> <|startoftext|>, au</w>, <|endoftext|>
101382: wall -> <|startoftext|>, wall</w>, <|endoftext|>
101383: gic -> <|startoftext|>, gic</w>, <|endoftext|>
101387: ri -> <|startoftext|>, ri</w>, <|endoftext|>
101388: mind -> <|startoftext|>, mind</w>, <|endoftext|>
101389: ica -> <|startoftext|>, ica</w>, <|endoftext|>
101393: sis -> <|startoftext|>, sis</w>, <|endoftext|>
101394: ten -> <|startoftext|>, ten</w>, <|endoftext|>
101396: snow -> <|startoftext|>, snow</w>, <|endoftext|>
101397: hear -> <|startoftext|>, hear</w>, <|endoftext|>
101402: blog -> <|startoftext|>, blog</w>, <|endoftext|>
101403: fest -> <|startoftext|>, fest</w>, <|endoftext|>
101405: lee -> <|startoftext|>, lee</w>, <|endoftext|>
101409: ren -> <|startoftext|>, ren</w>, <|endoftext|>
101410: paul -> <|startoftext|>, paul</w>, <|endoftext|>
101411: pes -> <|startoftext|>, pes</w>, <|endoftext|>
101414: card -> <|startoftext|>, card</w>, <|endoftext|>
101415: east -> <|startoftext|>, east</w>, <|endoftext|>
101417: wine -> <|startoftext|>, wine</w>, <|endoftext|>
101418: ti -> <|startoftext|>, ti</w>, <|endoftext|>
101419: law -> <|startoftext|>, law</w>, <|endoftext|>
101421: ki -> <|startoftext|>, ki</w>, <|endoftext|>
101422: ape -> <|startoftext|>, ape</w>, <|endoftext|>
101425: ash -> <|startoftext|>, ash</w>, <|endoftext|>
101427: mail -> <|startoftext|>, mail</w>, <|endoftext|>
101436: main -> <|startoftext|>, main</w>, <|endoftext|>
101437: lost -> <|startoftext|>, lost</w>, <|endoftext|>
101443: pro -> <|startoftext|>, pro</w>, <|endoftext|>
101448: goes -> <|startoftext|>, goes</w>, <|endoftext|>
101449: ond -> <|startoftext|>, ond</w>, <|endoftext|>
101452: dad -> <|startoftext|>, dad</w>, <|endoftext|>
101454: ja -> <|startoftext|>, ja</w>, <|endoftext|>
101459: tta -> <|startoftext|>, tta</w>, <|endoftext|>
101460: atic -> <|startoftext|>, atic</w>, <|endoftext|>
101466: word -> <|startoftext|>, word</w>, <|endoftext|>
101467: once -> <|startoftext|>, once</w>, <|endoftext|>
101471: ano -> <|startoftext|>, ano</w>, <|endoftext|>
101476: wa -> <|startoftext|>, wa</w>, <|endoftext|>
101480: kin -> <|startoftext|>, kin</w>, <|endoftext|>
101482: tage -> <|startoftext|>, tage</w>, <|endoftext|>
101486: save -> <|startoftext|>, save</w>, <|endoftext|>
101489: mary -> <|startoftext|>, mary</w>, <|endoftext|>
101490: tree -> <|startoftext|>, tree</w>, <|endoftext|>
101495: hill -> <|startoftext|>, hill</w>, <|endoftext|>
101496: born -> <|startoftext|>, born</w>, <|endoftext|>
101498: fl -> <|startoftext|>, fl</w>, <|endoftext|>
101499: ste -> <|startoftext|>, ste</w>, <|endoftext|>
101500: ona -> <|startoftext|>, ona</w>, <|endoftext|>
101504: ino -> <|startoftext|>, ino</w>, <|endoftext|>
101506: nel -> <|startoftext|>, nel</w>, <|endoftext|>
101509: deal -> <|startoftext|>, deal</w>, <|endoftext|>
101510: ji -> <|startoftext|>, ji</w>, <|endoftext|>
101512: huge -> <|startoftext|>, huge</w>, <|endoftext|>
101515: fy -> <|startoftext|>, fy</w>, <|endoftext|>
101517: ang -> <|startoftext|>, ang</w>, <|endoftext|>
101518: york -> <|startoftext|>, york</w>, <|endoftext|>
101531: wins -> <|startoftext|>, wins</w>, <|endoftext|>
101534: four -> <|startoftext|>, four</w>, <|endoftext|>
101535: bed -> <|startoftext|>, bed</w>, <|endoftext|>
101536: bank -> <|startoftext|>, bank</w>, <|endoftext|>
101541: ap -> <|startoftext|>, ap</w>, <|endoftext|>
101542: past -> <|startoftext|>, past</w>, <|endoftext|>
101546: gift -> <|startoftext|>, gift</w>, <|endoftext|>
101549: cus -> <|startoftext|>, cus</w>, <|endoftext|>
101555: enge -> <|startoftext|>, enge</w>, <|endoftext|>
101556: dc -> <|startoftext|>, dc</w>, <|endoftext|>
101558: sta -> <|startoftext|>, sta</w>, <|endoftext|>
101559: ety -> <|startoftext|>, ety</w>, <|endoftext|>
101560: dead -> <|startoftext|>, dead</w>, <|endoftext|>
101572: fish -> <|startoftext|>, fish</w>, <|endoftext|>
101577: sm -> <|startoftext|>, sm</w>, <|endoftext|>
101578: ask -> <|startoftext|>, ask</w>, <|endoftext|>
101583: ird -> <|startoftext|>, ird</w>, <|endoftext|>
101584: ser -> <|startoftext|>, ser</w>, <|endoftext|>
101590: ban -> <|startoftext|>, ban</w>, <|endoftext|>
101594: wow -> <|startoftext|>, wow</w>, <|endoftext|>
101596: move -> <|startoftext|>, move</w>, <|endoftext|>
101597: lead -> <|startoftext|>, lead</w>, <|endoftext|>
101608: ro -> <|startoftext|>, ro</w>, <|endoftext|>
101613: fa -> <|startoftext|>, fa</w>, <|endoftext|>
101614: male -> <|startoftext|>, male</w>, <|endoftext|>
101617: cs -> <|startoftext|>, cs</w>, <|endoftext|>
101629: ac -> <|startoftext|>, ac</w>, <|endoftext|>
101633: luck -> <|startoftext|>, luck</w>, <|endoftext|>
101635: oo -> <|startoftext|>, oo</w>, <|endoftext|>
101639: tial -> <|startoftext|>, tial</w>, <|endoftext|>
101644: pool -> <|startoftext|>, pool</w>, <|endoftext|>
101645: nyc -> <|startoftext|>, nyc</w>, <|endoftext|>
101647: load -> <|startoftext|>, load</w>, <|endoftext|>
101652: wear -> <|startoftext|>, wear</w>, <|endoftext|>
101653: bus -> <|startoftext|>, bus</w>, <|endoftext|>
101656: ror -> <|startoftext|>, ror</w>, <|endoftext|>
101661: mm -> <|startoftext|>, mm</w>, <|endoftext|>
101662: fair -> <|startoftext|>, fair</w>, <|endoftext|>
101663: utes -> <|startoftext|>, utes</w>, <|endoftext|>
101665: pop -> <|startoftext|>, pop</w>, <|endoftext|>
101666: fied -> <|startoftext|>, fied</w>, <|endoftext|>
101671: ems -> <|startoftext|>, ems</w>, <|endoftext|>
101674: ised -> <|startoftext|>, ised</w>, <|endoftext|>
101677: ita -> <|startoftext|>, ita</w>, <|endoftext|>
101678: gle -> <|startoftext|>, gle</w>, <|endoftext|>
101683: oil -> <|startoftext|>, oil</w>, <|endoftext|>
101690: camp -> <|startoftext|>, camp</w>, <|endoftext|>
101693: kers -> <|startoftext|>, kers</w>, <|endoftext|>
101699: bill -> <|startoftext|>, bill</w>, <|endoftext|>
101700: due -> <|startoftext|>, due</w>, <|endoftext|>
101701: andy -> <|startoftext|>, andy</w>, <|endoftext|>
101710: fer -> <|startoftext|>, fer</w>, <|endoftext|>
101713: pre -> <|startoftext|>, pre</w>, <|endoftext|>
101716: dium -> <|startoftext|>, dium</w>, <|endoftext|>
101722: lady -> <|startoftext|>, lady</w>, <|endoftext|>
101723: cted -> <|startoftext|>, cted</w>, <|endoftext|>
101724: anda -> <|startoftext|>, anda</w>, <|endoftext|>
101730: gue -> <|startoftext|>, gue</w>, <|endoftext|>
101733: sty -> <|startoftext|>, sty</w>, <|endoftext|>
101734: fort -> <|startoftext|>, fort</w>, <|endoftext|>
101736: isn -> <|startoftext|>, isn</w>, <|endoftext|>
101739: ony -> <|startoftext|>, ony</w>, <|endoftext|>
101741: ald -> <|startoftext|>, ald</w>, <|endoftext|>
101746: ado -> <|startoftext|>, ado</w>, <|endoftext|>
101749: mate -> <|startoftext|>, mate</w>, <|endoftext|>
101750: su -> <|startoftext|>, su</w>, <|endoftext|>
101763: tbt -> <|startoftext|>, tbt</w>, <|endoftext|>
101766: aks -> <|startoftext|>, aks</w>, <|endoftext|>
101770: ella -> <|startoftext|>, ella</w>, <|endoftext|>
101771: lots -> <|startoftext|>, lots</w>, <|endoftext|>
101779: ped -> <|startoftext|>, ped</w>, <|endoftext|>
101783: plan -> <|startoftext|>, plan</w>, <|endoftext|>
101784: ho -> <|startoftext|>, ho</w>, <|endoftext|>
101785: cake -> <|startoftext|>, cake</w>, <|endoftext|>
101793: wer -> <|startoftext|>, wer</w>, <|endoftext|>
101795: lo -> <|startoftext|>, lo</w>, <|endoftext|>
101798: ol -> <|startoftext|>, ol</w>, <|endoftext|>
101803: si -> <|startoftext|>, si</w>, <|endoftext|>
101807: ride -> <|startoftext|>, ride</w>, <|endoftext|>
101808: ired -> <|startoftext|>, ired</w>, <|endoftext|>
101809: safe -> <|startoftext|>, safe</w>, <|endoftext|>
101811: cil -> <|startoftext|>, cil</w>, <|endoftext|>
101813: vil -> <|startoftext|>, vil</w>, <|endoftext|>
101831: beat -> <|startoftext|>, beat</w>, <|endoftext|>
101836: anta -> <|startoftext|>, anta</w>, <|endoftext|>
101842: mes -> <|startoftext|>, mes</w>, <|endoftext|>
101845: cut -> <|startoftext|>, cut</w>, <|endoftext|>
101848: bi -> <|startoftext|>, bi</w>, <|endoftext|>
101849: sus -> <|startoftext|>, sus</w>, <|endoftext|>
101852: ange -> <|startoftext|>, ange</w>, <|endoftext|>
101853: ico -> <|startoftext|>, ico</w>, <|endoftext|>
101856: illa -> <|startoftext|>, illa</w>, <|endoftext|>
101857: kind -> <|startoftext|>, kind</w>, <|endoftext|>
101862: spot -> <|startoftext|>, spot</w>, <|endoftext|>
101864: ane -> <|startoftext|>, ane</w>, <|endoftext|>
101867: ops -> <|startoftext|>, ops</w>, <|endoftext|>
101870: po -> <|startoftext|>, po</w>, <|endoftext|>
101872: ries -> <|startoftext|>, ries</w>, <|endoftext|>
101873: haha -> <|startoftext|>, haha</w>, <|endoftext|>
101877: rick -> <|startoftext|>, rick</w>, <|endoftext|>
101878: ami -> <|startoftext|>, ami</w>, <|endoftext|>
101882: dly -> <|startoftext|>, dly</w>, <|endoftext|>
101883: tte -> <|startoftext|>, tte</w>, <|endoftext|>
101885: ig -> <|startoftext|>, ig</w>, <|endoftext|>
101887: aker -> <|startoftext|>, aker</w>, <|endoftext|>
101890: ray -> <|startoftext|>, ray</w>, <|endoftext|>
101896: cky -> <|startoftext|>, cky</w>, <|endoftext|>
101900: los -> <|startoftext|>, los</w>, <|endoftext|>
101904: mar -> <|startoftext|>, mar</w>, <|endoftext|>
101907: kie -> <|startoftext|>, kie</w>, <|endoftext|>
101908: eyes -> <|startoftext|>, eyes</w>, <|endoftext|>
101909: golf -> <|startoftext|>, golf</w>, <|endoftext|>
101910: plus -> <|startoftext|>, plus</w>, <|endoftext|>
101911: nia -> <|startoftext|>, nia</w>, <|endoftext|>
101925: ert -> <|startoftext|>, ert</w>, <|endoftext|>
101932: nal -> <|startoftext|>, nal</w>, <|endoftext|>
101935: tice -> <|startoftext|>, tice</w>, <|endoftext|>
101940: five -> <|startoftext|>, five</w>, <|endoftext|>
101943: ute -> <|startoftext|>, ute</w>, <|endoftext|>
101946: army -> <|startoftext|>, army</w>, <|endoftext|>
101954: onto -> <|startoftext|>, onto</w>, <|endoftext|>
101955: pick -> <|startoftext|>, pick</w>, <|endoftext|>
101957: dark -> <|startoftext|>, dark</w>, <|endoftext|>
101964: rise -> <|startoftext|>, rise</w>, <|endoftext|>
101965: zing -> <|startoftext|>, zing</w>, <|endoftext|>
101966: cold -> <|startoftext|>, cold</w>, <|endoftext|>
101986: tips -> <|startoftext|>, tips</w>, <|endoftext|>
101989: easy -> <|startoftext|>, easy</w>, <|endoftext|>
101991: mike -> <|startoftext|>, mike</w>, <|endoftext|>
101997: wide -> <|startoftext|>, wide</w>, <|endoftext|>
101999: omg -> <|startoftext|>, omg</w>, <|endoftext|>
102005: td -> <|startoftext|>, td</w>, <|endoftext|>
102018: lies -> <|startoftext|>, lies</w>, <|endoftext|>
102020: nt -> <|startoftext|>, nt</w>, <|endoftext|>
102030: code -> <|startoftext|>, code</w>, <|endoftext|>
102032: sc -> <|startoftext|>, sc</w>, <|endoftext|>
102033: wild -> <|startoftext|>, wild</w>, <|endoftext|>
102035: hood -> <|startoftext|>, hood</w>, <|endoftext|>
102041: fly -> <|startoftext|>, fly</w>, <|endoftext|>
102048: size -> <|startoftext|>, size</w>, <|endoftext|>
102051: eu -> <|startoftext|>, eu</w>, <|endoftext|>
102053: fox -> <|startoftext|>, fox</w>, <|endoftext|>
102056: lets -> <|startoftext|>, lets</w>, <|endoftext|>
102059: note -> <|startoftext|>, note</w>, <|endoftext|>
102067: hold -> <|startoftext|>, hold</w>, <|endoftext|>
102068: dogs -> <|startoftext|>, dogs</w>, <|endoftext|>
102069: ni -> <|startoftext|>, ni</w>, <|endoftext|>
102080: jack -> <|startoftext|>, jack</w>, <|endoftext|>
102085: eye -> <|startoftext|>, eye</w>, <|endoftext|>
102087: tea -> <|startoftext|>, tea</w>, <|endoftext|>
102091: gen -> <|startoftext|>, gen</w>, <|endoftext|>
102092: sat -> <|startoftext|>, sat</w>, <|endoftext|>
102097: mt -> <|startoftext|>, mt</w>, <|endoftext|>
102098: mix -> <|startoftext|>, mix</w>, <|endoftext|>
102099: gg -> <|startoftext|>, gg</w>, <|endoftext|>
102100: dle -> <|startoftext|>, dle</w>, <|endoftext|>
102106: moon -> <|startoftext|>, moon</w>, <|endoftext|>
102107: berg -> <|startoftext|>, berg</w>, <|endoftext|>
102113: tune -> <|startoftext|>, tune</w>, <|endoftext|>
102114: yed -> <|startoftext|>, yed</w>, <|endoftext|>
102115: gate -> <|startoftext|>, gate</w>, <|endoftext|>
102118: joe -> <|startoftext|>, joe</w>, <|endoftext|>
102120: fb -> <|startoftext|>, fb</w>, <|endoftext|>
102121: tube -> <|startoftext|>, tube</w>, <|endoftext|>
102127: gers -> <|startoftext|>, gers</w>, <|endoftext|>
102129: ges -> <|startoftext|>, ges</w>, <|endoftext|>
102134: goal -> <|startoftext|>, goal</w>, <|endoftext|>
102142: bird -> <|startoftext|>, bird</w>, <|endoftext|>
102144: min -> <|startoftext|>, min</w>, <|endoftext|>
102145: tro -> <|startoftext|>, tro</w>, <|endoftext|>
102146: lt -> <|startoftext|>, lt</w>, <|endoftext|>
102147: jan -> <|startoftext|>, jan</w>, <|endoftext|>
102150: sha -> <|startoftext|>, sha</w>, <|endoftext|>
102153: ara -> <|startoftext|>, ara</w>, <|endoftext|>
102154: roll -> <|startoftext|>, roll</w>, <|endoftext|>
102157: else -> <|startoftext|>, else</w>, <|endoftext|>
102158: pay -> <|startoftext|>, pay</w>, <|endoftext|>
102159: cars -> <|startoftext|>, cars</w>, <|endoftext|>
102160: mine -> <|startoftext|>, mine</w>, <|endoftext|>
102161: step -> <|startoftext|>, step</w>, <|endoftext|>
102166: non -> <|startoftext|>, non</w>, <|endoftext|>
102170: dia -> <|startoftext|>, dia</w>, <|endoftext|>
102171: iled -> <|startoftext|>, iled</w>, <|endoftext|>
102173: pink -> <|startoftext|>, pink</w>, <|endoftext|>
102175: thy -> <|startoftext|>, thy</w>, <|endoftext|>
102178: bag -> <|startoftext|>, bag</w>, <|endoftext|>
102185: ron -> <|startoftext|>, ron</w>, <|endoftext|>
102186: ola -> <|startoftext|>, ola</w>, <|endoftext|>
102189: lic -> <|startoftext|>, lic</w>, <|endoftext|>
102192: gon -> <|startoftext|>, gon</w>, <|endoftext|>
102196: deep -> <|startoftext|>, deep</w>, <|endoftext|>
102197: eat -> <|startoftext|>, eat</w>, <|endoftext|>