-
Notifications
You must be signed in to change notification settings - Fork 0
/
safePartialWords.txt
2589 lines (2589 loc) · 15.6 KB
/
safePartialWords.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
_e_
a__
_a_
__e
o__
__a
_o_
_y_
_u_
_i_
__y
i__
e_e
__u
__o
_ee
_oo
u__
oo_
e__
a_a
_ep
fe_
al_
ya_
_ag
o_e
_op
ho_
_ye
gu_
_on
go_
na_
_aw
ai_
_in
to_
_om
fi_
_ry
mo_
_og
s_y
me_
_ed
se_
_ey
_as
di_
ti_
_ig
_ob
_ie
hi_
ne_
_eg
re_
_ip
ki_
_os
lo_
de_
_an
ta_
_un
bu_
_or
ko_
vi_
no_
_am
ga_
la_
_ae
wa_
_um
_ar
gi_
pu_
_oa
po_
_ab
we_
jo_
_ot
_ug
_oe
pi_
fo_
ge_
_el
ma_
_it
ri_
_oy
ra_
be_
_ea
ka_
_et
he_
_ut
_ub
ru_
_ax
fa_
_ad
er_
_ol
_ue
a_e
ba_
_ew
_ow
so_
ke_
_en
_id
du_
cu_
a_s
_ex
le_
sa_
_is
bi_
hu_
li_
pe_
ja_
_ap
o_s
wo_
da_
ar_
_od
ha_
_ox
_ak
_at
pa_
_ur
_ay
do_
su_
_up
or_
a_t
_us
bo_
ca_
tu_
_ud
yo_
si_
te_
_ah
ro_
ye_
_im
e_s
mi_
_es
va_
_ib
co_
ni_
lu_
_e_e
_i__
_a__
_oo_
_o__
_a_a
__a_
__i_
_u__
__o_
__e_
_y__
a___
_aa_
_e__
_ee_
_u_u
__u_
e___
_o_o
a__a
a_a_
e_e_
e__e
__ee
u___
_i_i
i___
_i_s
bi__
la__
_a_o
_a_s
_ad_
_oof
roo_
_on_
_o_t
po__
ra_a
__am
_la_
_ac_
_a_k
_oss
mo__
_oi_
_o_l
_u_e
_ro_
__ow
a_e_
_y_s
a__s
_e_o
de__
_een
wee_
_us_
du__
s_u_
ne__
_e_t
le__
ta__
ar__
we__
__ir
ju__
_uc_
_u_o
_al_
__ed
fe__
_ie_
li__
_oon
loo_
_a_e
va__
e__s
__os
_oa_
__ad
go__
_o_d
_o_s
_ol_
ho__
bo__
_e_s
_en_
ke__
gi__
di__
ca__
_aw_
ni__
_i_y
moo_
_oor
_i_e
si__
_il_
_am_
_as_
_a_t
_ou_
_o_p
_e_k
he__
_ho_
__ut
_au_
fa__
_at_
pa__
ba__
fo__
_an_
s_a_
so__
_o_k
ja__
_o_a
_u_a
o__a
to__
_ow_
_o_i
_or_
mi__
_ic_
__ay
se_s
_un_
pu__
__en
o_e_
_it_
_i_o
_ea_
re__
__al
_all
_a_y
_e_a
s_i_
__im
fi__
je__
_in_
ge__
__an
_eep
_a_i
ka__
_he_
ma__
_ak_
_u_s
bu__
ra__
_le_
do__
o__s
_ar_
wa__
sa__
_i_a
pi__
_is_
_i_t
wi__
_u_i
fu__
_u_t
me__
_el_
_ri_
__is
_a_l
to_t
a__e
co__
_u_y
ri__
d_a_
_o_e
ya__
wo__
no__
_ur_
ye__
lo__
ji__
_iff
hu__
te__
__in
ko__
__on
jo__
_o_y
_oe_
_ha_
__ar
_re_
ha__
ti__
yo__
_ot_
ga__
fee_
s_e_
_o_n
yu__
tu__
_urr
__as
_ap_
hi__
_ull
_ill
da__
pe__
_lo_
su__
ro__
su_s
na__
_ai_
__at
_ui_
_ia_
se__
__op
__er
s_o_
_a_n
mu__
__id
_ir_
be__
_ete
so_s
_uff
_a_d
_ees
__it
_li_
__us
gu__
_ul_
_ook
_ag_
_ra_
ki__
tee_
_eer
_er_
_y_e
_oll
_ut_
ru__
i__s
a__o
p_i_
coo_
ta_a
__um
_ool
lu__
ka_a
_oot
poo_
_aff
to_o
u__s
_eed
a_o_
_ass
_eek
dee_
_ere
_oom
doo_
hoo_
_ood
_ene
si_s
goo_
_oop
_ell
sa_s
see_
_eel
_ree
e_es
_eet
_oos
_uss
boo_
a_as
_igs
la_s
_ads
pon_
cla_
_ack
_oil
_row
_yes
a_es
_ush
_est
_ade
_ols
ho_s
hol_
_ond
_ens
ke_s
_ent
gi_s
_ies
di_s
_awk
si_e
_ile
_amp
_ast
_oup
_eck
_ats
pa_s
_ant
_ouk
_ola
_our
fa_e
_aze
_ich
bla_
_eal
_uke
s_im
_ing
lin_
_ean
_ork
ja_s
_abs
bu_s
_ugs
_ave
_ock
_egs
de_s
_ars
_ite
di_e
_olt
do_t
_art
war_
sa_e
_ake
_ist
_ust
_eld
mar_
_int
con_
_onk
ba_s
bar_
mi_e
_ice
po_e
_oke
_old
min_
_ino
_ove
no_s
_ows
lo_e
_ope
_ums
hu_s
_ein
_ops
ko_s
_adi
_ong
_ins
swa_
ne_s
_ets
_obs
do_y
ga_e
_are
_one
sor_
_aes
wa_s
_eds
_ids
chi_
_orn
_eas
ma_s
_aps
_ied
wo_s
_aks
da_s
_els
pe_s
te_s
_aws
clo_
_low
_oes
ro_s
ri_e
far_
_ort
bor_
_eat
mil_
ban_
_ank
la_e
_ine
_ale
pa_e
ta_e
ho_e
_arn
_uns
wan_
fla_
_irl
we_s
mi_s
_ame
ha_e
dor_
ca_e
_end
_ild
_ots
_hat
cha_
po_s
s_it
_ome
co_e
s_ed
_own
_elt
lea_
_ier
le_s
_ora
_ans
ca_s
_ags
a_ed
ske_
spi_
gra_
do_e
so_a
_ind
_ons
co_s
li_e
ti_e
ri_s
_ane
_ate
wa_e
_air
_uts
ru_s
ba_e
_ews
na_s
_ick
_ain
_out
to_s
bi_e
_ash
ma_e
_ard
_ead
fi_s
_ore
ya_s
_yte
pro_
_ays
fa_s
_ups
_aik
re_s
_usk
scu_
tin_
tor_
_ike
spa_
_ang
_ire
car_
_ark
ro_e
_uds
flo_
ga_s
wai_
_ubs
cu_s
fo_s
cra_
s_at
ka_s
_ath
_yke
_eys
_ail
kai_
sha_
vi_e
wi_e
sca_
dou_
har_
_oms
he_s
co_y
mo_s
_ule
man_
_ide
_ear
lo_s
pu_s
win_
_unt
_ote
mo_e
_ose
to_e
_erk
_ilt
her_
cor_
_ung
_erm
bri_
_ors
_ure
_orm
do_s
_ray
ha_s
vi_s
_url
_unk
_ive
_osh
ra_s
_ole
al_s
_eil
bra_
bo_s
lu_e
pea_
_eta
ta_s
fra_
_ero
ha_t
_ace
dar_
lim_
_urs
po_y
_oys
_ode
bur_
bea_
o_es
_and
for_
va_s
ar_s
pin_
_ams
_ues
gu_s
s_aw
_ink
fe_s
go_s
_ods
whi_
jo_s
s_ag
_awn
_ish
ra_e
ni_s
_its
_ost
_owl
_oth
_uck
ge_s
_ibs
pi_s
_aid
_ogs
_eps
dra_
sla_
ti_s
_ips
_ump
cur_
_oma
li_s
_ase
_o___
_oo__
__u__
___e_
__i__
___i_
___a_
_e___
_u___
__y__
_a___
__o__
__a_a
__e__
_i___
_ee_e
__a__
__e_e
_a_a_
_a__a
_e_e_
___o_
_o_o_
a_a__
a__a_
_i_i_
_e__e
__ee_
_o__o
_o__y
mo___
_oo_y
_ou__
a___s
a__i_
be___
_e__s
_o__e
do___
_u_a_
_um__
_u__s
pu___
_roo_
_ar__
ba___
_a__y
_a__s
__o_t
_lo__
__e_s
_he__
_al__
ma___
_a_i_
_u__a
_i__y
_i_e_
_ic__
li___
_i__s
ga___
_a_e_
no___
_er__
_e__o
_o_a_
__a_y
_la__
_in__
_a__e
le___
_i__o
_ha__
__a_s
s_e__
__a_e
wa___
_u__y
du___
bu___
_u__o
ho___
_o_e_
s_u__
lo___
__i_s
_o__s
_ee_s
ma_a_
_i__e
mi___
__u_s
_an_a
_ea__
_or__
__ri_
_o_i_
__ra_
ke___
_e_i_
_e_er
_e__y
_oo_s
_en__
_ra__
_ro__
_e_o_
_el__
te___
a_o__
__o_s
_a_o_
_li__
__o_a
s_e_s
s_o__
__o_e
_e_ed
_i_a_
_au__
_a__i
__o_y
__on_
bo___
_e_es
__il_
_u_e_
_o__t
_ri__
__in_
_o_n_
__is_
re___
_ul__
__er_
la___
_ru__
_e__a
_a_t_
_ho__
pi___
__i_e
s_i__
s_oo_
__or_
s__i_
_i_o_
_i_it
co___
_u_i_
_o_t_
mu___
so__s
t__e_
_e__t
_a_as
_an__
_o_os
__an_
_il__
s__e_
_a__o
_y__s
_un__
s_o_s
__re_
_ur__
de___
_u__i
s_a__
_u__e
_on__
_o__a
_om__
fi___
_ir__
_ea_e
_ree_
t_i__
_a_an
po___
_re__
a__o_
s_i_s
_hi__
_i_t_
a__as
_le__
boo__
pa__a