wordle_rs 0.1.0

Tools to build and test Wordle strategies
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
//! The wordlists used by Wordle.

/// Indicies into [GUESSES] of all possible correct answers to a Wordle puzzle.
///
/// Wordle allows you to guess many words, but it will only select some
/// words as answers. This slice holds the indices of those words in [GUESSES].
///
/// Using this array in your strategies is discouraged: it amounts to cheating
/// because many normal things that a human would guess are _not_ in this list.
/// Of course, if you want to make a cheating strategy, go ahead.
///
/// Unless you want to ruin your own fun at Wordle, you should not use these
/// indices to print a list of possible answers. It will change how you play!
pub const ANSWERS: [usize; 2315] = [
    6, 12, 15, 20, 21, 28, 29, 31, 37, 44, 45, 46, 56, 61, 85, 88, 93, 94, 96, 97, 107, 114, 115,
    117, 119, 120, 121, 128, 146, 147, 149, 151, 154, 155, 158, 161, 165, 174, 175, 184, 190, 192,
    193, 201, 213, 231, 257, 263, 274, 278, 286, 287, 289, 290, 293, 299, 302, 305, 306, 307, 318,
    321, 322, 323, 325, 327, 328, 329, 339, 342, 344, 346, 351, 368, 369, 379, 385, 386, 390, 402,
    403, 404, 406, 407, 412, 418, 424, 425, 426, 428, 437, 443, 445, 449, 458, 461, 465, 473, 474,
    479, 485, 493, 499, 511, 525, 533, 542, 548, 549, 554, 557, 563, 568, 577, 581, 584, 587, 598,
    600, 622, 625, 632, 635, 636, 639, 647, 659, 666, 668, 674, 677, 678, 679, 680, 682, 689, 694,
    698, 702, 703, 731, 752, 754, 755, 760, 761, 780, 787, 794, 802, 813, 834, 842, 849, 856, 858,
    859, 860, 868, 872, 875, 878, 882, 889, 899, 903, 905, 914, 917, 934, 937, 942, 945, 947, 949,
    950, 953, 956, 962, 965, 966, 968, 970, 976, 992, 999, 1000, 1006, 1014, 1021, 1028, 1045,
    1047, 1049, 1069, 1079, 1083, 1092, 1093, 1100, 1105, 1114, 1118, 1127, 1134, 1135, 1144, 1146,
    1147, 1148, 1152, 1160, 1161, 1163, 1166, 1167, 1169, 1172, 1176, 1178, 1181, 1185, 1189, 1191,
    1193, 1196, 1197, 1198, 1200, 1204, 1212, 1216, 1220, 1221, 1223, 1224, 1228, 1231, 1236, 1289,
    1290, 1296, 1302, 1318, 1319, 1321, 1322, 1323, 1328, 1341, 1349, 1351, 1354, 1362, 1364, 1366,
    1377, 1388, 1402, 1409, 1411, 1412, 1416, 1421, 1422, 1426, 1428, 1429, 1430, 1436, 1437, 1441,
    1455, 1456, 1457, 1458, 1459, 1467, 1468, 1469, 1471, 1474, 1480, 1486, 1487, 1492, 1493, 1495,
    1499, 1500, 1508, 1509, 1512, 1527, 1528, 1539, 1540, 1544, 1545, 1549, 1552, 1555, 1564, 1580,
    1599, 1601, 1610, 1612, 1614, 1621, 1626, 1631, 1632, 1640, 1647, 1649, 1651, 1652, 1656, 1658,
    1661, 1662, 1665, 1678, 1684, 1706, 1707, 1716, 1717, 1726, 1727, 1728, 1736, 1747, 1749, 1761,
    1768, 1774, 1779, 1787, 1790, 1791, 1793, 1797, 1803, 1810, 1814, 1819, 1830, 1862, 1863, 1865,
    1866, 1868, 1870, 1875, 1876, 1881, 1884, 1887, 1889, 1890, 1898, 1899, 1900, 1901, 1903, 1912,
    1913, 1923, 1926, 1927, 1930, 1932, 1933, 1935, 1938, 1949, 1958, 1964, 1965, 1978, 1979, 1980,
    1988, 1992, 1994, 1996, 1999, 2006, 2009, 2015, 2021, 2035, 2037, 2040, 2045, 2047, 2049, 2050,
    2057, 2058, 2059, 2067, 2068, 2069, 2074, 2080, 2083, 2086, 2088, 2091, 2092, 2098, 2100, 2107,
    2113, 2115, 2117, 2120, 2121, 2122, 2128, 2129, 2132, 2133, 2137, 2145, 2153, 2160, 2199, 2200,
    2213, 2214, 2215, 2217, 2226, 2227, 2236, 2273, 2276, 2282, 2294, 2313, 2315, 2316, 2317, 2318,
    2324, 2328, 2329, 2331, 2332, 2337, 2350, 2359, 2360, 2366, 2368, 2369, 2375, 2376, 2377, 2378,
    2379, 2382, 2383, 2384, 2385, 2386, 2388, 2389, 2391, 2393, 2396, 2398, 2400, 2401, 2406, 2407,
    2408, 2410, 2411, 2418, 2421, 2423, 2429, 2432, 2433, 2438, 2440, 2442, 2443, 2447, 2451, 2455,
    2456, 2461, 2462, 2467, 2474, 2495, 2516, 2519, 2523, 2524, 2527, 2528, 2540, 2551, 2554, 2563,
    2575, 2584, 2587, 2588, 2594, 2603, 2605, 2635, 2641, 2662, 2669, 2674, 2678, 2681, 2684, 2688,
    2690, 2693, 2695, 2696, 2710, 2720, 2724, 2728, 2738, 2740, 2747, 2750, 2756, 2758, 2761, 2762,
    2765, 2783, 2784, 2785, 2788, 2813, 2819, 2837, 2846, 2850, 2854, 2857, 2859, 2866, 2873, 2878,
    2881, 2888, 2892, 2894, 2899, 2911, 2927, 2928, 2941, 2945, 2954, 2973, 2975, 2993, 3024, 3027,
    3043, 3045, 3053, 3055, 3064, 3071, 3074, 3075, 3076, 3078, 3080, 3084, 3085, 3088, 3089, 3099,
    3104, 3105, 3107, 3108, 3110, 3113, 3116, 3119, 3121, 3126, 3127, 3130, 3132, 3133, 3137, 3139,
    3146, 3147, 3158, 3180, 3187, 3189, 3191, 3225, 3227, 3228, 3229, 3236, 3239, 3240, 3245, 3253,
    3254, 3262, 3266, 3268, 3273, 3274, 3281, 3287, 3293, 3294, 3301, 3312, 3316, 3322, 3324, 3329,
    3330, 3332, 3334, 3335, 3338, 3340, 3342, 3347, 3351, 3358, 3361, 3362, 3367, 3386, 3391, 3397,
    3399, 3400, 3404, 3408, 3416, 3417, 3419, 3423, 3434, 3437, 3439, 3442, 3443, 3445, 3457, 3460,
    3464, 3474, 3476, 3485, 3486, 3488, 3494, 3503, 3505, 3507, 3510, 3514, 3519, 3520, 3522, 3527,
    3530, 3533, 3539, 3541, 3542, 3545, 3549, 3557, 3561, 3582, 3584, 3585, 3594, 3598, 3605, 3611,
    3628, 3633, 3637, 3638, 3647, 3664, 3667, 3681, 3686, 3689, 3694, 3696, 3697, 3706, 3715, 3720,
    3722, 3725, 3729, 3734, 3735, 3743, 3744, 3751, 3756, 3757, 3761, 3767, 3768, 3770, 3777, 3779,
    3785, 3788, 3790, 3792, 3794, 3797, 3814, 3817, 3829, 3832, 3834, 3836, 3839, 3840, 3841, 3843,
    3844, 3849, 3852, 3854, 3855, 3865, 3869, 3872, 3878, 3881, 3885, 3886, 3889, 3894, 3896, 3901,
    3902, 3904, 3908, 3911, 3912, 3913, 3919, 3920, 3921, 3923, 3925, 3926, 3929, 3930, 3934, 3939,
    3940, 3941, 3944, 3952, 3958, 3961, 3975, 3978, 3984, 3985, 3990, 3991, 3993, 3994, 4005, 4015,
    4022, 4024, 4026, 4033, 4036, 4037, 4038, 4046, 4048, 4050, 4054, 4056, 4061, 4064, 4067, 4069,
    4074, 4075, 4076, 4079, 4081, 4092, 4104, 4108, 4116, 4120, 4121, 4127, 4129, 4139, 4147, 4165,
    4171, 4196, 4201, 4205, 4234, 4245, 4246, 4251, 4255, 4257, 4262, 4266, 4267, 4271, 4281, 4284,
    4286, 4304, 4310, 4340, 4341, 4343, 4350, 4376, 4379, 4385, 4394, 4395, 4399, 4405, 4407, 4409,
    4412, 4414, 4415, 4432, 4438, 4443, 4444, 4451, 4454, 4455, 4458, 4471, 4475, 4479, 4495, 4507,
    4511, 4514, 4520, 4523, 4534, 4535, 4537, 4550, 4558, 4572, 4575, 4589, 4590, 4593, 4594, 4595,
    4602, 4604, 4605, 4606, 4608, 4609, 4610, 4611, 4613, 4615, 4616, 4620, 4622, 4624, 4636, 4641,
    4642, 4643, 4644, 4647, 4657, 4661, 4666, 4667, 4668, 4672, 4673, 4674, 4676, 4677, 4683, 4686,
    4690, 4700, 4702, 4706, 4707, 4710, 4712, 4713, 4714, 4717, 4721, 4727, 4731, 4734, 4742, 4757,
    4759, 4782, 4794, 4820, 4847, 4859, 4872, 4876, 4878, 4887, 4888, 4889, 4895, 4896, 4897, 4899,
    4910, 4912, 4913, 4916, 4927, 4931, 4937, 4940, 4942, 4944, 4945, 4951, 4959, 4964, 4970, 4971,
    4984, 5001, 5041, 5048, 5055, 5056, 5063, 5071, 5075, 5092, 5107, 5115, 5127, 5132, 5158, 5163,
    5164, 5176, 5178, 5183, 5186, 5190, 5192, 5195, 5226, 5230, 5231, 5232, 5235, 5236, 5238, 5244,
    5249, 5251, 5252, 5258, 5259, 5268, 5273, 5289, 5290, 5298, 5302, 5303, 5305, 5309, 5314, 5324,
    5330, 5337, 5347, 5349, 5354, 5357, 5362, 5366, 5373, 5375, 5376, 5382, 5387, 5388, 5390, 5393,
    5398, 5402, 5412, 5416, 5423, 5428, 5431, 5433, 5438, 5492, 5499, 5516, 5523, 5530, 5533, 5543,
    5575, 5576, 5578, 5585, 5604, 5614, 5619, 5620, 5627, 5630, 5634, 5635, 5642, 5698, 5704, 5728,
    5734, 5796, 5847, 5850, 5866, 5880, 5886, 5888, 5889, 5890, 5893, 5894, 5899, 5900, 5906, 5913,
    5971, 6026, 6029, 6039, 6042, 6046, 6079, 6085, 6087, 6091, 6097, 6105, 6110, 6115, 6118, 6120,
    6125, 6131, 6152, 6161, 6165, 6167, 6170, 6173, 6175, 6178, 6179, 6180, 6182, 6188, 6192, 6196,
    6202, 6203, 6208, 6220, 6221, 6231, 6250, 6251, 6267, 6278, 6289, 6292, 6296, 6305, 6312, 6323,
    6324, 6328, 6344, 6360, 6366, 6368, 6371, 6377, 6380, 6383, 6388, 6396, 6399, 6402, 6407, 6409,
    6441, 6443, 6457, 6461, 6486, 6487, 6491, 6497, 6499, 6509, 6517, 6519, 6533, 6537, 6538, 6540,
    6543, 6549, 6550, 6557, 6565, 6583, 6585, 6586, 6589, 6606, 6612, 6617, 6618, 6621, 6624, 6628,
    6629, 6647, 6648, 6650, 6672, 6676, 6677, 6686, 6687, 6688, 6690, 6691, 6692, 6695, 6697, 6706,
    6711, 6729, 6731, 6740, 6742, 6748, 6752, 6767, 6780, 6784, 6786, 6797, 6800, 6806, 6808, 6811,
    6812, 6813, 6828, 6832, 6853, 6859, 6862, 6866, 6878, 6880, 6889, 6911, 6913, 6916, 6923, 6938,
    6951, 6956, 6960, 6965, 6970, 6973, 6974, 6984, 6989, 6994, 7019, 7024, 7025, 7026, 7035, 7045,
    7052, 7055, 7074, 7082, 7087, 7100, 7111, 7120, 7121, 7131, 7135, 7142, 7144, 7146, 7155, 7156,
    7157, 7159, 7160, 7163, 7165, 7167, 7170, 7186, 7189, 7190, 7205, 7217, 7221, 7230, 7237, 7254,
    7255, 7258, 7264, 7287, 7305, 7319, 7336, 7356, 7358, 7359, 7366, 7368, 7388, 7399, 7413, 7419,
    7430, 7436, 7438, 7449, 7450, 7459, 7468, 7479, 7480, 7482, 7508, 7509, 7522, 7523, 7527, 7548,
    7555, 7559, 7561, 7574, 7592, 7609, 7612, 7616, 7617, 7620, 7634, 7646, 7647, 7655, 7658, 7663,
    7664, 7675, 7677, 7680, 7708, 7709, 7717, 7727, 7729, 7743, 7748, 7764, 7765, 7767, 7772, 7780,
    7783, 7787, 7813, 7815, 7820, 7824, 7834, 7836, 7837, 7844, 7845, 7849, 7850, 7852, 7858, 7863,
    7870, 7879, 7893, 7902, 7912, 7922, 7935, 7943, 7947, 7952, 7958, 7961, 7974, 7981, 7992, 7993,
    7996, 8006, 8007, 8009, 8010, 8017, 8020, 8022, 8026, 8045, 8046, 8049, 8050, 8058, 8067, 8072,
    8104, 8105, 8115, 8117, 8127, 8133, 8136, 8149, 8151, 8154, 8162, 8170, 8180, 8183, 8184, 8191,
    8198, 8202, 8208, 8210, 8236, 8243, 8246, 8251, 8257, 8268, 8275, 8287, 8289, 8294, 8295, 8297,
    8300, 8302, 8305, 8306, 8307, 8308, 8309, 8311, 8316, 8322, 8323, 8325, 8333, 8334, 8351, 8355,
    8356, 8357, 8360, 8362, 8379, 8387, 8388, 8391, 8395, 8403, 8409, 8429, 8449, 8453, 8469, 8473,
    8474, 8486, 8494, 8499, 8501, 8519, 8527, 8531, 8542, 8548, 8549, 8551, 8552, 8559, 8561, 8566,
    8568, 8570, 8572, 8573, 8575, 8587, 8588, 8590, 8593, 8599, 8601, 8602, 8604, 8606, 8607, 8612,
    8624, 8633, 8641, 8668, 8669, 8676, 8688, 8690, 8691, 8695, 8696, 8698, 8704, 8708, 8716, 8722,
    8748, 8752, 8755, 8758, 8761, 8762, 8763, 8764, 8772, 8773, 8774, 8778, 8779, 8780, 8784, 8786,
    8788, 8789, 8800, 8803, 8813, 8814, 8815, 8819, 8821, 8824, 8829, 8831, 8832, 8857, 8859, 8862,
    8873, 8874, 8877, 8887, 8889, 8892, 8905, 8909, 8916, 8930, 8933, 8939, 8955, 8961, 8962, 8963,
    8966, 8969, 8977, 8983, 8986, 8990, 8991, 8994, 9004, 9005, 9025, 9036, 9039, 9043, 9052, 9056,
    9069, 9070, 9072, 9081, 9083, 9086, 9097, 9099, 9102, 9109, 9115, 9118, 9128, 9133, 9134, 9135,
    9136, 9139, 9155, 9160, 9177, 9179, 9187, 9192, 9193, 9195, 9211, 9215, 9216, 9219, 9220, 9224,
    9230, 9235, 9237, 9240, 9246, 9250, 9252, 9254, 9256, 9258, 9259, 9294, 9300, 9332, 9337, 9338,
    9342, 9345, 9347, 9352, 9355, 9359, 9365, 9383, 9384, 9394, 9400, 9403, 9409, 9422, 9424, 9434,
    9465, 9469, 9488, 9499, 9508, 9511, 9515, 9519, 9522, 9523, 9538, 9540, 9554, 9571, 9577, 9579,
    9581, 9583, 9587, 9590, 9597, 9598, 9599, 9617, 9618, 9620, 9621, 9622, 9626, 9630, 9631, 9635,
    9646, 9647, 9652, 9655, 9657, 9658, 9660, 9663, 9665, 9666, 9670, 9671, 9672, 9678, 9680, 9684,
    9685, 9692, 9693, 9694, 9731, 9738, 9753, 9763, 9774, 9785, 9794, 9808, 9817, 9818, 9826, 9827,
    9828, 9834, 9842, 9843, 9845, 9846, 9849, 9852, 9853, 9854, 9856, 9859, 9862, 9864, 9866, 9867,
    9868, 9870, 9873, 9874, 9883, 9887, 9888, 9889, 9890, 9891, 9892, 9893, 9905, 9909, 9913, 9915,
    9917, 9918, 9921, 9935, 9937, 9946, 9947, 9951, 9954, 9956, 9957, 9961, 9962, 9964, 9966, 9969,
    9972, 9973, 9977, 9982, 9984, 9989, 10005, 10011, 10014, 10017, 10031, 10033, 10044, 10048,
    10049, 10060, 10069, 10084, 10085, 10096, 10125, 10128, 10129, 10131, 10140, 10158, 10159,
    10160, 10169, 10174, 10178, 10180, 10183, 10184, 10187, 10192, 10193, 10195, 10196, 10199,
    10200, 10201, 10204, 10206, 10207, 10208, 10223, 10225, 10229, 10230, 10242, 10244, 10245,
    10247, 10250, 10253, 10256, 10258, 10262, 10263, 10265, 10270, 10271, 10274, 10275, 10278,
    10279, 10281, 10283, 10285, 10291, 10299, 10302, 10303, 10304, 10306, 10309, 10316, 10322,
    10327, 10329, 10332, 10346, 10348, 10349, 10351, 10354, 10356, 10357, 10363, 10368, 10384,
    10396, 10406, 10411, 10414, 10419, 10433, 10435, 10457, 10469, 10474, 10479, 10494, 10496,
    10514, 10517, 10518, 10521, 10526, 10532, 10535, 10537, 10540, 10548, 10549, 10550, 10551,
    10553, 10560, 10563, 10565, 10566, 10571, 10573, 10575, 10576, 10579, 10582, 10583, 10586,
    10590, 10592, 10596, 10597, 10598, 10599, 10600, 10602, 10605, 10607, 10610, 10614, 10616,
    10618, 10632, 10633, 10635, 10640, 10641, 10644, 10649, 10651, 10652, 10655, 10657, 10658,
    10659, 10660, 10661, 10662, 10663, 10664, 10667, 10670, 10671, 10675, 10676, 10677, 10680,
    10683, 10684, 10685, 10686, 10692, 10694, 10697, 10698, 10700, 10713, 10719, 10722, 10725,
    10726, 10730, 10731, 10732, 10746, 10749, 10751, 10752, 10755, 10757, 10761, 10762, 10764,
    10765, 10770, 10771, 10772, 10773, 10780, 10781, 10789, 10790, 10791, 10797, 10802, 10804,
    10807, 10808, 10812, 10814, 10815, 10817, 10824, 10831, 10851, 10856, 10858, 10867, 10868,
    10871, 10881, 10883, 10892, 10896, 10898, 10902, 10916, 10917, 10927, 10929, 10930, 10935,
    10936, 10940, 10943, 10945, 10947, 10951, 10954, 10956, 10957, 10961, 10962, 10971, 10972,
    10975, 10976, 10977, 10980, 11000, 11007, 11013, 11019, 11020, 11030, 11032, 11036, 11047,
    11053, 11054, 11072, 11074, 11080, 11089, 11091, 11104, 11107, 11113, 11122, 11137, 11138,
    11146, 11150, 11162, 11176, 11184, 11185, 11191, 11199, 11222, 11230, 11237, 11238, 11239,
    11245, 11246, 11259, 11261, 11267, 11288, 11300, 11304, 11307, 11310, 11312, 11314, 11318,
    11319, 11320, 11325, 11326, 11329, 11334, 11335, 11338, 11343, 11344, 11347, 11349, 11350,
    11354, 11355, 11359, 11363, 11365, 11373, 11381, 11383, 11390, 11400, 11402, 11419, 11425,
    11428, 11430, 11440, 11445, 11447, 11466, 11486, 11493, 11495, 11503, 11505, 11514, 11523,
    11534, 11538, 11544, 11546, 11550, 11551, 11561, 11562, 11571, 11572, 11581, 11582, 11583,
    11584, 11588, 11589, 11590, 11591, 11600, 11605, 11608, 11609, 11619, 11627, 11628, 11629,
    11630, 11631, 11633, 11648, 11652, 11662, 11669, 11671, 11674, 11675, 11678, 11679, 11681,
    11686, 11687, 11688, 11689, 11690, 11691, 11696, 11707, 11712, 11726, 11727, 11732, 11741,
    11747, 11762, 11771, 11775, 11776, 11781, 11784, 11789, 11794, 11796, 11799, 11804, 11827,
    11836, 11844, 11853, 11881, 11885, 11888, 11889, 11891, 11894, 11895, 11905, 11906, 11907,
    11909, 11919, 11921, 11935, 11940, 11941, 11943, 11947, 11958, 11962, 11974, 11988, 11999,
    12001, 12002, 12005, 12007, 12010, 12011, 12019, 12028, 12029, 12031, 12033, 12034, 12045,
    12046, 12064, 12065, 12077, 12100, 12102, 12105, 12108, 12109, 12113, 12128, 12132, 12140,
    12141, 12144, 12158, 12159, 12162, 12163, 12172, 12177, 12180, 12181, 12184, 12194, 12195,
    12203, 12206, 12211, 12212, 12214, 12230, 12232, 12234, 12238, 12256, 12261, 12270, 12274,
    12277, 12286, 12289, 12308, 12339, 12345, 12348, 12349, 12358, 12365, 12376, 12377, 12382,
    12385, 12400, 12402, 12407, 12414, 12417, 12429, 12430, 12436, 12443, 12444, 12450, 12452,
    12456, 12458, 12461, 12464, 12466, 12470, 12474, 12477, 12481, 12484, 12490, 12500, 12501,
    12503, 12504, 12505, 12515, 12525, 12528, 12529, 12530, 12532, 12552, 12557, 12560, 12566,
    12578, 12585, 12588, 12596, 12598, 12603, 12610, 12612, 12614, 12617, 12618, 12619, 12620,
    12622, 12623, 12624, 12628, 12634, 12636, 12637, 12639, 12644, 12645, 12646, 12649, 12651,
    12653, 12655, 12691, 12743, 12745, 12777, 12827, 12832, 12889, 12899, 12941,
];

/// All possible guesses in a Wordle game.
///
/// Wordle prevents you from guessing five-letter sequences that are not words,
/// and this is the wordlist that it uses to determine which guesses are valid.
/// Reading this list is not a spoiler since this is just a list of all words
/// that Wordle will accept.
///
/// In the Wordle source code, this list is disjoint from the list of possible answers. I
/// have duplicated the elements of that list here to make guessing easier.
/// The elements of the answer list are mixed in and this array is sorted.
pub const GUESSES: [&str; 12972] = [
    "aahed", "aalii", "aargh", "aarti", "abaca", "abaci", "aback", "abacs", "abaft", "abaka",
    "abamp", "aband", "abase", "abash", "abask", "abate", "abaya", "abbas", "abbed", "abbes",
    "abbey", "abbot", "abcee", "abeam", "abear", "abele", "abers", "abets", "abhor", "abide",
    "abies", "abled", "abler", "ables", "ablet", "ablow", "abmho", "abode", "abohm", "aboil",
    "aboma", "aboon", "abord", "abore", "abort", "about", "above", "abram", "abray", "abrim",
    "abrin", "abris", "absey", "absit", "abuna", "abune", "abuse", "abuts", "abuzz", "abyes",
    "abysm", "abyss", "acais", "acari", "accas", "accoy", "acerb", "acers", "aceta", "achar",
    "ached", "aches", "achoo", "acids", "acidy", "acing", "acini", "ackee", "acker", "acmes",
    "acmic", "acned", "acnes", "acock", "acold", "acorn", "acred", "acres", "acrid", "acros",
    "acted", "actin", "acton", "actor", "acute", "acyls", "adage", "adapt", "adaws", "adays",
    "adbot", "addax", "added", "adder", "addio", "addle", "adeem", "adept", "adhan", "adieu",
    "adios", "adits", "adman", "admen", "admin", "admit", "admix", "adobe", "adobo", "adopt",
    "adore", "adorn", "adown", "adoze", "adrad", "adred", "adsum", "aduki", "adult", "adunc",
    "adust", "advew", "adyta", "adzed", "adzes", "aecia", "aedes", "aegis", "aeons", "aerie",
    "aeros", "aesir", "afald", "afara", "afars", "afear", "affix", "afire", "aflaj", "afoot",
    "afore", "afoul", "afrit", "afros", "after", "again", "agama", "agami", "agape", "agars",
    "agast", "agate", "agave", "agaze", "agene", "agent", "agers", "agger", "aggie", "aggri",
    "aggro", "aggry", "aghas", "agila", "agile", "aging", "agios", "agism", "agist", "agita",
    "aglee", "aglet", "agley", "agloo", "aglow", "aglus", "agmas", "agoge", "agone", "agons",
    "agony", "agood", "agora", "agree", "agria", "agrin", "agros", "agued", "agues", "aguna",
    "aguti", "ahead", "aheap", "ahent", "ahigh", "ahind", "ahing", "ahint", "ahold", "ahull",
    "ahuru", "aidas", "aided", "aider", "aides", "aidoi", "aidos", "aiery", "aigas", "aight",
    "ailed", "aimed", "aimer", "ainee", "ainga", "aioli", "aired", "airer", "airns", "airth",
    "airts", "aisle", "aitch", "aitus", "aiver", "aiyee", "aizle", "ajies", "ajiva", "ajuga",
    "ajwan", "akees", "akela", "akene", "aking", "akita", "akkas", "alaap", "alack", "alamo",
    "aland", "alane", "alang", "alans", "alant", "alapa", "alaps", "alarm", "alary", "alate",
    "alays", "albas", "albee", "album", "alcid", "alcos", "aldea", "alder", "aldol", "aleck",
    "alecs", "alefs", "aleft", "aleph", "alert", "alews", "aleye", "alfas", "algae", "algal",
    "algas", "algid", "algin", "algor", "algum", "alias", "alibi", "alien", "alifs", "align",
    "alike", "aline", "alist", "alive", "aliya", "alkie", "alkos", "alkyd", "alkyl", "allay",
    "allee", "allel", "alley", "allis", "allod", "allot", "allow", "alloy", "allyl", "almah",
    "almas", "almeh", "almes", "almud", "almug", "alods", "aloed", "aloes", "aloft", "aloha",
    "aloin", "alone", "along", "aloof", "aloos", "aloud", "alowe", "alpha", "altar", "alter",
    "altho", "altos", "alula", "alums", "alure", "alvar", "alway", "amahs", "amain", "amass",
    "amate", "amaut", "amaze", "amban", "amber", "ambit", "amble", "ambos", "ambry", "ameba",
    "ameer", "amend", "amene", "amens", "ament", "amias", "amice", "amici", "amide", "amido",
    "amids", "amies", "amiga", "amigo", "amine", "amino", "amins", "amirs", "amiss", "amity",
    "amlas", "amman", "ammon", "ammos", "amnia", "amnic", "amnio", "amoks", "amole", "among",
    "amort", "amour", "amove", "amowt", "amped", "ample", "amply", "ampul", "amrit", "amuck",
    "amuse", "amyls", "anana", "anata", "ancho", "ancle", "ancon", "andro", "anear", "anele",
    "anent", "angas", "angel", "anger", "angle", "anglo", "angry", "angst", "anigh", "anile",
    "anils", "anima", "anime", "animi", "anion", "anise", "anker", "ankhs", "ankle", "ankus",
    "anlas", "annal", "annas", "annat", "annex", "annoy", "annul", "anoas", "anode", "anole",
    "anomy", "ansae", "antae", "antar", "antas", "anted", "antes", "antic", "antis", "antra",
    "antre", "antsy", "anura", "anvil", "anyon", "aorta", "apace", "apage", "apaid", "apart",
    "apayd", "apays", "apeak", "apeek", "apers", "apert", "apery", "apgar", "aphid", "aphis",
    "apian", "aping", "apiol", "apish", "apism", "apnea", "apode", "apods", "apoop", "aport",
    "appal", "appay", "appel", "apple", "apply", "appro", "appui", "appuy", "apres", "apron",
    "apses", "apsis", "apsos", "apted", "apter", "aptly", "aquae", "aquas", "araba", "araks",
    "arame", "arars", "arbas", "arbor", "arced", "archi", "arcos", "arcus", "ardeb", "ardor",
    "ardri", "aread", "areae", "areal", "arear", "areas", "areca", "aredd", "arede", "arefy",
    "areic", "arena", "arene", "arepa", "arere", "arete", "arets", "arett", "argal", "argan",
    "argil", "argle", "argol", "argon", "argot", "argue", "argus", "arhat", "arias", "ariel",
    "ariki", "arils", "ariot", "arise", "arish", "arked", "arled", "arles", "armed", "armer",
    "armet", "armil", "armor", "arnas", "arnut", "aroba", "aroha", "aroid", "aroma", "arose",
    "arpas", "arpen", "arrah", "arras", "array", "arret", "arris", "arrow", "arroz", "arsed",
    "arses", "arsey", "arsis", "arson", "artal", "artel", "artic", "artis", "artsy", "aruhe",
    "arums", "arval", "arvee", "arvos", "aryls", "asana", "ascon", "ascot", "ascus", "asdic",
    "ashed", "ashen", "ashes", "ashet", "aside", "asked", "asker", "askew", "askoi", "askos",
    "aspen", "asper", "aspic", "aspie", "aspis", "aspro", "assai", "assam", "assay", "asses",
    "asset", "assez", "assot", "aster", "astir", "astun", "asura", "asway", "aswim", "asyla",
    "ataps", "ataxy", "atigi", "atilt", "atimy", "atlas", "atman", "atmas", "atmos", "atocs",
    "atoke", "atoks", "atoll", "atoms", "atomy", "atone", "atony", "atopy", "atria", "atrip",
    "attap", "attar", "attic", "atuas", "audad", "audio", "audit", "auger", "aught", "augur",
    "aulas", "aulic", "auloi", "aulos", "aumil", "aunes", "aunts", "aunty", "aurae", "aural",
    "aurar", "auras", "aurei", "aures", "auric", "auris", "aurum", "autos", "auxin", "avail",
    "avale", "avant", "avast", "avels", "avens", "avers", "avert", "avgas", "avian", "avine",
    "avion", "avise", "aviso", "avize", "avoid", "avows", "avyze", "await", "awake", "award",
    "aware", "awarn", "awash", "awato", "awave", "aways", "awdls", "aweel", "aweto", "awful",
    "awing", "awmry", "awned", "awner", "awoke", "awols", "awork", "axels", "axial", "axile",
    "axils", "axing", "axiom", "axion", "axite", "axled", "axles", "axman", "axmen", "axoid",
    "axone", "axons", "ayahs", "ayaya", "ayelp", "aygre", "ayins", "ayont", "ayres", "ayrie",
    "azans", "azide", "azido", "azine", "azlon", "azoic", "azole", "azons", "azote", "azoth",
    "azuki", "azure", "azurn", "azury", "azygy", "azyme", "azyms", "baaed", "baals", "babas",
    "babel", "babes", "babka", "baboo", "babul", "babus", "bacca", "bacco", "baccy", "bacha",
    "bachs", "backs", "bacon", "baddy", "badge", "badly", "baels", "baffs", "baffy", "bafts",
    "bagel", "baggy", "baghs", "bagie", "bahts", "bahus", "bahut", "bails", "bairn", "baisa",
    "baith", "baits", "baiza", "baize", "bajan", "bajra", "bajri", "bajus", "baked", "baken",
    "baker", "bakes", "bakra", "balas", "balds", "baldy", "baled", "baler", "bales", "balks",
    "balky", "balls", "bally", "balms", "balmy", "baloo", "balsa", "balti", "balun", "balus",
    "bambi", "banak", "banal", "banco", "bancs", "banda", "bandh", "bands", "bandy", "baned",
    "banes", "bangs", "bania", "banjo", "banks", "banns", "bants", "bantu", "banty", "banya",
    "bapus", "barbe", "barbs", "barby", "barca", "barde", "bardo", "bards", "bardy", "bared",
    "barer", "bares", "barfi", "barfs", "barge", "baric", "barks", "barky", "barms", "barmy",
    "barns", "barny", "baron", "barps", "barra", "barre", "barro", "barry", "barye", "basal",
    "basan", "based", "basen", "baser", "bases", "basho", "basic", "basij", "basil", "basin",
    "basis", "basks", "bason", "basse", "bassi", "basso", "bassy", "basta", "baste", "basti",
    "basto", "basts", "batch", "bated", "bates", "bathe", "baths", "batik", "baton", "batta",
    "batts", "battu", "batty", "bauds", "bauks", "baulk", "baurs", "bavin", "bawds", "bawdy",
    "bawks", "bawls", "bawns", "bawrs", "bawty", "bayed", "bayer", "bayes", "bayle", "bayou",
    "bayts", "bazar", "bazoo", "beach", "beads", "beady", "beaks", "beaky", "beals", "beams",
    "beamy", "beano", "beans", "beany", "beard", "beare", "bears", "beast", "beath", "beats",
    "beaty", "beaus", "beaut", "beaux", "bebop", "becap", "becke", "becks", "bedad", "bedel",
    "bedes", "bedew", "bedim", "bedye", "beech", "beedi", "beefs", "beefy", "beeps", "beers",
    "beery", "beets", "befit", "befog", "begad", "began", "begar", "begat", "begem", "beget",
    "begin", "begot", "begum", "begun", "beige", "beigy", "being", "beins", "bekah", "belah",
    "belar", "belay", "belch", "belee", "belga", "belie", "belle", "bells", "belly", "belon",
    "below", "belts", "bemad", "bemas", "bemix", "bemud", "bench", "bends", "bendy", "benes",
    "benet", "benga", "benis", "benne", "benni", "benny", "bento", "bents", "benty", "bepat",
    "beray", "beres", "beret", "bergs", "berko", "berks", "berme", "berms", "berob", "berry",
    "berth", "beryl", "besat", "besaw", "besee", "beses", "beset", "besit", "besom", "besot",
    "besti", "bests", "betas", "beted", "betel", "betes", "beths", "betid", "beton", "betta",
    "betty", "bevel", "bever", "bevor", "bevue", "bevvy", "bewet", "bewig", "bezel", "bezes",
    "bezil", "bezzy", "bhais", "bhaji", "bhang", "bhats", "bhels", "bhoot", "bhuna", "bhuts",
    "biach", "biali", "bialy", "bibbs", "bibes", "bible", "biccy", "bicep", "bices", "biddy",
    "bided", "bider", "bides", "bidet", "bidis", "bidon", "bield", "biers", "biffo", "biffs",
    "biffy", "bifid", "bigae", "biggs", "biggy", "bigha", "bight", "bigly", "bigos", "bigot",
    "bijou", "biked", "biker", "bikes", "bikie", "bilbo", "bilby", "biled", "biles", "bilge",
    "bilgy", "bilks", "bills", "billy", "bimah", "bimas", "bimbo", "binal", "bindi", "binds",
    "biner", "bines", "binge", "bingo", "bings", "bingy", "binit", "binks", "bints", "biogs",
    "biome", "biont", "biota", "biped", "bipod", "birch", "birds", "birks", "birle", "birls",
    "biros", "birrs", "birse", "birsy", "birth", "bises", "bisks", "bisom", "bison", "bitch",
    "biter", "bites", "bitos", "bitou", "bitsy", "bitte", "bitts", "bitty", "bivia", "bivvy",
    "bizes", "bizzo", "bizzy", "blabs", "black", "blade", "blads", "blady", "blaer", "blaes",
    "blaff", "blags", "blahs", "blain", "blame", "blams", "bland", "blank", "blare", "blart",
    "blase", "blash", "blast", "blate", "blats", "blatt", "blaud", "blawn", "blaws", "blays",
    "blaze", "bleak", "blear", "bleat", "blebs", "blech", "bleed", "bleep", "blees", "blend",
    "blent", "blert", "bless", "blest", "blets", "bleys", "blimp", "blimy", "blind", "bling",
    "blini", "blink", "blins", "bliny", "blips", "bliss", "blist", "blite", "blits", "blitz",
    "blive", "bloat", "blobs", "block", "blocs", "blogs", "bloke", "blond", "blood", "blook",
    "bloom", "bloop", "blore", "blots", "blown", "blows", "blowy", "blubs", "blude", "bluds",
    "bludy", "blued", "bluer", "blues", "bluet", "bluey", "bluff", "bluid", "blume", "blunk",
    "blunt", "blurb", "blurs", "blurt", "blush", "blype", "boabs", "boaks", "board", "boars",
    "boart", "boast", "boats", "bobac", "bobak", "bobas", "bobby", "bobol", "bobos", "bocca",
    "bocce", "bocci", "boche", "bocks", "boded", "bodes", "bodge", "bodhi", "bodle", "boeps",
    "boets", "boeuf", "boffo", "boffs", "bogan", "bogey", "boggy", "bogie", "bogle", "bogue",
    "bogus", "bohea", "bohos", "boils", "boing", "boink", "boite", "boked", "bokeh", "bokes",
    "bokos", "bolar", "bolas", "bolds", "boles", "bolix", "bolls", "bolos", "bolts", "bolus",
    "bomas", "bombe", "bombo", "bombs", "bonce", "bonds", "boned", "boner", "bones", "boney",
    "bongo", "bongs", "bonie", "bonks", "bonne", "bonny", "bonus", "bonza", "bonze", "booai",
    "booay", "boobs", "booby", "boody", "booed", "boofy", "boogy", "boohs", "books", "booky",
    "bools", "booms", "boomy", "boong", "boons", "boord", "boors", "boose", "boost", "booth",
    "boots", "booty", "booze", "boozy", "boppy", "borak", "boral", "boras", "borax", "borde",
    "bords", "bored", "boree", "borel", "borer", "bores", "borgo", "boric", "borks", "borms",
    "borna", "borne", "boron", "borts", "borty", "bortz", "bosie", "bosks", "bosky", "bosom",
    "boson", "bossy", "bosun", "botas", "botch", "botel", "botes", "bothy", "botte", "botts",
    "botty", "bouge", "bough", "bouks", "boule", "boult", "bound", "bouns", "bourd", "bourg",
    "bourn", "bouse", "bousy", "bouts", "bovid", "bowat", "bowed", "bowel", "bower", "bowes",
    "bowet", "bowie", "bowls", "bowne", "bowrs", "bowse", "boxed", "boxen", "boxer", "boxes",
    "boxla", "boxty", "boyar", "boyau", "boyed", "boyfs", "boygs", "boyla", "boyos", "boysy",
    "bozos", "braai", "brace", "brach", "brack", "bract", "brads", "braes", "brags", "braid",
    "brail", "brain", "brake", "braks", "braky", "brame", "brand", "brane", "brank", "brans",
    "brant", "brash", "brass", "brast", "brats", "brava", "brave", "bravi", "bravo", "brawl",
    "brawn", "braws", "braxy", "brays", "braza", "braze", "bread", "break", "bream", "brede",
    "breds", "breed", "breem", "breer", "brees", "breid", "breis", "breme", "brens", "brent",
    "brere", "brers", "breve", "brews", "breys", "briar", "bribe", "brick", "bride", "brief",
    "brier", "bries", "brigs", "briki", "briks", "brill", "brims", "brine", "bring", "brink",
    "brins", "briny", "brios", "brise", "brisk", "briss", "brith", "brits", "britt", "brize",
    "broad", "broch", "brock", "brods", "brogh", "brogs", "broil", "broke", "brome", "bromo",
    "bronc", "brond", "brood", "brook", "brool", "broom", "broos", "brose", "brosy", "broth",
    "brown", "brows", "brugh", "bruin", "bruit", "brule", "brume", "brung", "brunt", "brush",
    "brusk", "brust", "brute", "bruts", "buats", "buaze", "bubal", "bubas", "bubba", "bubbe",
    "bubby", "bubus", "buchu", "bucko", "bucks", "bucku", "budas", "buddy", "budge", "budis",
    "budos", "buffa", "buffe", "buffi", "buffo", "buffs", "buffy", "bufos", "bufty", "buggy",
    "bugle", "buhls", "buhrs", "buiks", "build", "built", "buist", "bukes", "bulbs", "bulge",
    "bulgy", "bulks", "bulky", "bulla", "bulls", "bully", "bulse", "bumbo", "bumfs", "bumph",
    "bumps", "bumpy", "bunas", "bunce", "bunch", "bunco", "bunde", "bundh", "bunds", "bundt",
    "bundu", "bundy", "bungs", "bungy", "bunia", "bunje", "bunjy", "bunko", "bunks", "bunns",
    "bunny", "bunts", "bunty", "bunya", "buoys", "buppy", "buran", "buras", "burbs", "burds",
    "buret", "burfi", "burgh", "burgs", "burin", "burka", "burke", "burks", "burls", "burly",
    "burns", "burnt", "buroo", "burps", "burqa", "burro", "burrs", "burry", "bursa", "burse",
    "burst", "busby", "bused", "buses", "bushy", "busks", "busky", "bussu", "busti", "busts",
    "busty", "butch", "buteo", "butes", "butle", "butoh", "butte", "butts", "butty", "butut",
    "butyl", "buxom", "buyer", "buzzy", "bwana", "bwazi", "byded", "bydes", "byked", "bykes",
    "bylaw", "byres", "byrls", "byssi", "bytes", "byway", "caaed", "cabal", "cabas", "cabby",
    "caber", "cabin", "cable", "cabob", "caboc", "cabre", "cacao", "cacas", "cache", "cacks",
    "cacky", "cacti", "caddy", "cadee", "cades", "cadet", "cadge", "cadgy", "cadie", "cadis",
    "cadre", "caeca", "caese", "cafes", "caffs", "caged", "cager", "cages", "cagey", "cagot",
    "cahow", "caids", "cains", "caird", "cairn", "cajon", "cajun", "caked", "cakes", "cakey",
    "calfs", "calid", "calif", "calix", "calks", "calla", "calls", "calms", "calmy", "calos",
    "calpa", "calps", "calve", "calyx", "caman", "camas", "camel", "cameo", "cames", "camis",
    "camos", "campi", "campo", "camps", "campy", "camus", "canal", "candy", "caned", "caneh",
    "caner", "canes", "cangs", "canid", "canna", "canns", "canny", "canoe", "canon", "canso",
    "canst", "canto", "cants", "canty", "capas", "caped", "caper", "capes", "capex", "caphs",
    "capiz", "caple", "capon", "capos", "capot", "capri", "capul", "caput", "carap", "carat",
    "carbo", "carbs", "carby", "cardi", "cards", "cardy", "cared", "carer", "cares", "caret",
    "carex", "cargo", "carks", "carle", "carls", "carns", "carny", "carob", "carol", "carom",
    "caron", "carpi", "carps", "carrs", "carry", "carse", "carta", "carte", "carts", "carve",
    "carvy", "casas", "casco", "cased", "cases", "casks", "casky", "caste", "casts", "casus",
    "catch", "cater", "cates", "catty", "cauda", "cauks", "cauld", "caulk", "cauls", "caums",
    "caups", "cauri", "causa", "cause", "cavas", "caved", "cavel", "caver", "caves", "cavie",
    "cavil", "cawed", "cawks", "caxon", "cease", "ceaze", "cebid", "cecal", "cecum", "cedar",
    "ceded", "ceder", "cedes", "cedis", "ceiba", "ceili", "ceils", "celeb", "cella", "celli",
    "cello", "cells", "celom", "celts", "cense", "cento", "cents", "centu", "ceorl", "cepes",
    "cerci", "cered", "ceres", "cerge", "ceria", "ceric", "cerne", "ceroc", "ceros", "certs",
    "certy", "cesse", "cesta", "cesti", "cetes", "cetyl", "cezve", "chace", "chack", "chaco",
    "chado", "chads", "chafe", "chaff", "chaft", "chain", "chair", "chais", "chalk", "chals",
    "champ", "chams", "chana", "chang", "chank", "chant", "chaos", "chape", "chaps", "chapt",
    "chara", "chard", "chare", "chark", "charm", "charr", "chars", "chart", "chary", "chase",
    "chasm", "chats", "chave", "chavs", "chawk", "chaws", "chaya", "chays", "cheap", "cheat",
    "check", "cheek", "cheep", "cheer", "chefs", "cheka", "chela", "chelp", "chemo", "chems",
    "chere", "chert", "chess", "chest", "cheth", "chevy", "chews", "chewy", "chiao", "chias",
    "chibs", "chica", "chich", "chick", "chico", "chics", "chide", "chief", "chiel", "chiks",
    "child", "chile", "chili", "chill", "chimb", "chime", "chimo", "chimp", "china", "chine",
    "ching", "chink", "chino", "chins", "chips", "chirk", "chirl", "chirm", "chiro", "chirp",
    "chirr", "chirt", "chiru", "chits", "chive", "chivs", "chivy", "chizz", "chock", "choco",
    "chocs", "chode", "chogs", "choil", "choir", "choke", "choko", "choky", "chola", "choli",
    "cholo", "chomp", "chons", "choof", "chook", "choom", "choon", "chops", "chord", "chore",
    "chose", "chota", "chott", "chout", "choux", "chowk", "chows", "chubs", "chuck", "chufa",
    "chuff", "chugs", "chump", "chums", "chunk", "churl", "churn", "churr", "chuse", "chute",
    "chuts", "chyle", "chyme", "chynd", "cibol", "cided", "cider", "cides", "ciels", "cigar",
    "ciggy", "cilia", "cills", "cimar", "cimex", "cinch", "cinct", "cines", "cinqs", "cions",
    "cippi", "circa", "circs", "cires", "cirls", "cirri", "cisco", "cissy", "cists", "cital",
    "cited", "citer", "cites", "cives", "civet", "civic", "civie", "civil", "civvy", "clach",
    "clack", "clade", "clads", "claes", "clags", "claim", "clame", "clamp", "clams", "clang",
    "clank", "clans", "claps", "clapt", "claro", "clart", "clary", "clash", "clasp", "class",
    "clast", "clats", "claut", "clave", "clavi", "claws", "clays", "clean", "clear", "cleat",
    "cleck", "cleek", "cleep", "clefs", "cleft", "clegs", "cleik", "clems", "clepe", "clept",
    "clerk", "cleve", "clews", "click", "clied", "clies", "cliff", "clift", "climb", "clime",
    "cline", "cling", "clink", "clint", "clipe", "clips", "clipt", "clits", "cloak", "cloam",
    "clock", "clods", "cloff", "clogs", "cloke", "clomb", "clomp", "clone", "clonk", "clons",
    "cloop", "cloot", "clops", "close", "clote", "cloth", "clots", "cloud", "clour", "clous",
    "clout", "clove", "clown", "clows", "cloye", "cloys", "cloze", "clubs", "cluck", "clued",
    "clues", "cluey", "clump", "clung", "clunk", "clype", "cnida", "coach", "coact", "coady",
    "coala", "coals", "coaly", "coapt", "coarb", "coast", "coate", "coati", "coats", "cobbs",
    "cobby", "cobia", "coble", "cobra", "cobza", "cocas", "cocci", "cocco", "cocks", "cocky",
    "cocoa", "cocos", "codas", "codec", "coded", "coden", "coder", "codes", "codex", "codon",
    "coeds", "coffs", "cogie", "cogon", "cogue", "cohab", "cohen", "cohoe", "cohog", "cohos",
    "coifs", "coign", "coils", "coins", "coirs", "coits", "coked", "cokes", "colas", "colby",
    "colds", "coled", "coles", "coley", "colic", "colin", "colls", "colly", "colog", "colon",
    "color", "colts", "colza", "comae", "comal", "comas", "combe", "combi", "combo", "combs",
    "comby", "comer", "comes", "comet", "comfy", "comic", "comix", "comma", "commo", "comms",
    "commy", "compo", "comps", "compt", "comte", "comus", "conch", "condo", "coned", "cones",
    "coney", "confs", "conga", "conge", "congo", "conia", "conic", "conin", "conks", "conky",
    "conne", "conns", "conte", "conto", "conus", "convo", "cooch", "cooed", "cooee", "cooer",
    "cooey", "coofs", "cooks", "cooky", "cools", "cooly", "coomb", "cooms", "coomy", "coons",
    "coops", "coopt", "coost", "coots", "cooze", "copal", "copay", "coped", "copen", "coper",
    "copes", "coppy", "copra", "copse", "copsy", "coqui", "coral", "coram", "corbe", "corby",
    "cords", "cored", "corer", "cores", "corey", "corgi", "coria", "corks", "corky", "corms",
    "corni", "corno", "corns", "cornu", "corny", "corps", "corse", "corso", "cosec", "cosed",
    "coses", "coset", "cosey", "cosie", "costa", "coste", "costs", "cotan", "coted", "cotes",
    "coths", "cotta", "cotts", "couch", "coude", "cough", "could", "count", "coupe", "coups",
    "courb", "courd", "coure", "cours", "court", "couta", "couth", "coved", "coven", "cover",
    "coves", "covet", "covey", "covin", "cowal", "cowan", "cowed", "cower", "cowks", "cowls",
    "cowps", "cowry", "coxae", "coxal", "coxed", "coxes", "coxib", "coyau", "coyed", "coyer",
    "coyly", "coypu", "cozed", "cozen", "cozes", "cozey", "cozie", "craal", "crabs", "crack",
    "craft", "crags", "craic", "craig", "crake", "crame", "cramp", "crams", "crane", "crank",
    "crans", "crape", "craps", "crapy", "crare", "crash", "crass", "crate", "crave", "crawl",
    "craws", "crays", "craze", "crazy", "creak", "cream", "credo", "creds", "creed", "creek",
    "creel", "creep", "crees", "creme", "crems", "crena", "crepe", "creps", "crept", "crepy",
    "cress", "crest", "crewe", "crews", "crias", "cribs", "crick", "cried", "crier", "cries",
    "crime", "crimp", "crims", "crine", "crios", "cripe", "crips", "crise", "crisp", "crith",
    "crits", "croak", "croci", "crock", "crocs", "croft", "crogs", "cromb", "crome", "crone",
    "cronk", "crons", "crony", "crook", "crool", "croon", "crops", "crore", "cross", "crost",
    "croup", "crout", "crowd", "crown", "crows", "croze", "cruck", "crude", "crudo", "cruds",
    "crudy", "cruel", "crues", "cruet", "cruft", "crumb", "crump", "crunk", "cruor", "crura",
    "cruse", "crush", "crust", "crusy", "cruve", "crwth", "cryer", "crypt", "ctene", "cubby",
    "cubeb", "cubed", "cuber", "cubes", "cubic", "cubit", "cuddy", "cuffo", "cuffs", "cuifs",
    "cuing", "cuish", "cuits", "cukes", "culch", "culet", "culex", "culls", "cully", "culms",
    "culpa", "culti", "cults", "culty", "cumec", "cumin", "cundy", "cunei", "cunit", "cunts",
    "cupel", "cupid", "cuppa", "cuppy", "curat", "curbs", "curch", "curds", "curdy", "cured",
    "curer", "cures", "curet", "curfs", "curia", "curie", "curio", "curli", "curls", "curly",
    "curns", "curny", "currs", "curry", "curse", "cursi", "curst", "curve", "curvy", "cusec",
    "cushy", "cusks", "cusps", "cuspy", "cusso", "cusum", "cutch", "cuter", "cutes", "cutey",
    "cutie", "cutin", "cutis", "cutto", "cutty", "cutup", "cuvee", "cuzes", "cwtch", "cyano",
    "cyans", "cyber", "cycad", "cycas", "cycle", "cyclo", "cyder", "cylix", "cymae", "cymar",
    "cymas", "cymes", "cymol", "cynic", "cysts", "cytes", "cyton", "czars", "daals", "dabba",
    "daces", "dacha", "dacks", "dadah", "dadas", "daddy", "dados", "daffs", "daffy", "dagga",
    "daggy", "dagos", "dahls", "daiko", "daily", "daine", "daint", "dairy", "daisy", "daker",
    "daled", "dales", "dalis", "dalle", "dally", "dalts", "daman", "damar", "dames", "damme",
    "damns", "damps", "dampy", "dance", "dancy", "dandy", "dangs", "danio", "danks", "danny",
    "dants", "daraf", "darbs", "darcy", "dared", "darer", "dares", "darga", "dargs", "daric",
    "daris", "darks", "darky", "darns", "darre", "darts", "darzi", "dashi", "dashy", "datal",
    "dated", "dater", "dates", "datos", "datto", "datum", "daube", "daubs", "dauby", "dauds",
    "dault", "daunt", "daurs", "dauts", "daven", "davit", "dawah", "dawds", "dawed", "dawen",
    "dawks", "dawns", "dawts", "dayan", "daych", "daynt", "dazed", "dazer", "dazes", "deads",
    "deair", "deals", "dealt", "deans", "deare", "dearn", "dears", "deary", "deash", "death",
    "deave", "deaws", "deawy", "debag", "debar", "debby", "debel", "debes", "debit", "debts",
    "debud", "debug", "debur", "debus", "debut", "debye", "decad", "decaf", "decal", "decan",
    "decay", "decko", "decks", "decor", "decos", "decoy", "decry", "dedal", "deeds", "deedy",
    "deely", "deems", "deens", "deeps", "deere", "deers", "deets", "deeve", "deevs", "defat",
    "defer", "deffo", "defis", "defog", "degas", "degum", "degus", "deice", "deids", "deify",
    "deign", "deils", "deism", "deist", "deity", "deked", "dekes", "dekko", "delay", "deled",
    "deles", "delfs", "delft", "delis", "dells", "delly", "delos", "delph", "delta", "delts",
    "delve", "deman", "demes", "demic", "demit", "demob", "demoi", "demon", "demos", "dempt",
    "demur", "denar", "denay", "dench", "denes", "denet", "denim", "denis", "dense", "dents",
    "deoxy", "depot", "depth", "derat", "deray", "derby", "dered", "deres", "derig", "derma",
    "derms", "derns", "derny", "deros", "derro", "derry", "derth", "dervs", "desex", "deshi",
    "desis", "desks", "desse", "deter", "detox", "deuce", "devas", "devel", "devil", "devis",
    "devon", "devos", "devot", "dewan", "dewar", "dewax", "dewed", "dexes", "dexie", "dhaba",
    "dhaks", "dhals", "dhikr", "dhobi", "dhole", "dholl", "dhols", "dhoti", "dhows", "dhuti",
    "diact", "dials", "diane", "diary", "diazo", "dibbs", "diced", "dicer", "dices", "dicey",
    "dicht", "dicks", "dicky", "dicot", "dicta", "dicts", "dicty", "diddy", "didie", "didos",
    "didst", "diebs", "diels", "diene", "diets", "diffs", "dight", "digit", "dikas", "diked",
    "diker", "dikes", "dikey", "dildo", "dilli", "dills", "dilly", "dimbo", "dimer", "dimes",
    "dimly", "dimps", "dinar", "dined", "diner", "dines", "dinge", "dingo", "dings", "dingy",
    "dinic", "dinks", "dinky", "dinna", "dinos", "dints", "diode", "diols", "diota", "dippy",
    "dipso", "diram", "direr", "dirge", "dirke", "dirks", "dirls", "dirts", "dirty", "disas",
    "disci", "disco", "discs", "dishy", "disks", "disme", "dital", "ditas", "ditch", "dited",
    "dites", "ditsy", "ditto", "ditts", "ditty", "ditzy", "divan", "divas", "dived", "diver",
    "dives", "divis", "divna", "divos", "divot", "divvy", "diwan", "dixie", "dixit", "diyas",
    "dizen", "dizzy", "djinn", "djins", "doabs", "doats", "dobby", "dobes", "dobie", "dobla",
    "dobra", "dobro", "docht", "docks", "docos", "docus", "doddy", "dodge", "dodgy", "dodos",
    "doeks", "doers", "doest", "doeth", "doffs", "dogan", "doges", "dogey", "doggo", "doggy",
    "dogie", "dogma", "dohyo", "doilt", "doily", "doing", "doits", "dojos", "dolce", "dolci",
    "doled", "doles", "dolia", "dolls", "dolly", "dolma", "dolor", "dolos", "dolts", "domal",
    "domed", "domes", "domic", "donah", "donas", "donee", "doner", "donga", "dongs", "donko",
    "donna", "donne", "donny", "donor", "donsy", "donut", "doobs", "dooce", "doody", "dooks",
    "doole", "dools", "dooly", "dooms", "doomy", "doona", "doorn", "doors", "doozy", "dopas",
    "doped", "doper", "dopes", "dopey", "dorad", "dorba", "dorbs", "doree", "dores", "doric",
    "doris", "dorks", "dorky", "dorms", "dormy", "dorps", "dorrs", "dorsa", "dorse", "dorts",
    "dorty", "dosai", "dosas", "dosed", "doseh", "doser", "doses", "dosha", "dotal", "doted",
    "doter", "dotes", "dotty", "douar", "doubt", "douce", "doucs", "dough", "douks", "doula",
    "douma", "doums", "doups", "doura", "douse", "douts", "doved", "doven", "dover", "doves",
    "dovie", "dowar", "dowds", "dowdy", "dowed", "dowel", "dower", "dowie", "dowle", "dowls",
    "dowly", "downa", "downs", "downy", "dowps", "dowry", "dowse", "dowts", "doxed", "doxes",
    "doxie", "doyen", "doyly", "dozed", "dozen", "dozer", "dozes", "drabs", "drack", "draco",
    "draff", "draft", "drags", "drail", "drain", "drake", "drama", "drams", "drank", "drant",
    "drape", "draps", "drats", "drave", "drawl", "drawn", "draws", "drays", "dread", "dream",
    "drear", "dreck", "dreed", "dreer", "drees", "dregs", "dreks", "drent", "drere", "dress",
    "drest", "dreys", "dribs", "drice", "dried", "drier", "dries", "drift", "drill", "drily",
    "drink", "drips", "dript", "drive", "droid", "droil", "droit", "droke", "drole", "droll",
    "drome", "drone", "drony", "droob", "droog", "drook", "drool", "droop", "drops", "dropt",
    "dross", "drouk", "drove", "drown", "drows", "drubs", "drugs", "druid", "drums", "drunk",
    "drupe", "druse", "drusy", "druxy", "dryad", "dryas", "dryer", "dryly", "dsobo", "dsomo",
    "duads", "duals", "duans", "duars", "dubbo", "ducal", "ducat", "duces", "duchy", "ducks",
    "ducky", "ducts", "duddy", "duded", "dudes", "duels", "duets", "duett", "duffs", "dufus",
    "duing", "duits", "dukas", "duked", "dukes", "dukka", "dulce", "dules", "dulia", "dulls",
    "dully", "dulse", "dumas", "dumbo", "dumbs", "dumka", "dumky", "dummy", "dumps", "dumpy",
    "dunam", "dunce", "dunch", "dunes", "dungs", "dungy", "dunks", "dunno", "dunny", "dunsh",
    "dunts", "duomi", "duomo", "duped", "duper", "dupes", "duple", "duply", "duppy", "dural",
    "duras", "dured", "dures", "durgy", "durns", "duroc", "duros", "duroy", "durra", "durrs",
    "durry", "durst", "durum", "durzi", "dusks", "dusky", "dusts", "dusty", "dutch", "duvet",
    "duxes", "dwaal", "dwale", "dwalm", "dwams", "dwang", "dwarf", "dwaum", "dweeb", "dwell",
    "dwelt", "dwile", "dwine", "dyads", "dyers", "dying", "dyked", "dykes", "dykey", "dykon",
    "dynel", "dynes", "dzhos", "eager", "eagle", "eagre", "ealed", "eales", "eaned", "eards",
    "eared", "earls", "early", "earns", "earnt", "earst", "earth", "eased", "easel", "easer",
    "eases", "easle", "easts", "eaten", "eater", "eathe", "eaved", "eaves", "ebbed", "ebbet",
    "ebons", "ebony", "ebook", "ecads", "eched", "eches", "echos", "eclat", "ecrus", "edema",
    "edged", "edger", "edges", "edict", "edify", "edile", "edits", "educe", "educt", "eejit",
    "eensy", "eerie", "eeven", "eevns", "effed", "egads", "egers", "egest", "eggar", "egged",
    "egger", "egmas", "egret", "ehing", "eider", "eidos", "eight", "eigne", "eiked", "eikon",
    "eilds", "eisel", "eject", "ejido", "eking", "ekkas", "elain", "eland", "elans", "elate",
    "elbow", "elchi", "elder", "eldin", "elect", "elegy", "elemi", "elfed", "elfin", "eliad",
    "elide", "elint", "elite", "elmen", "eloge", "elogy", "eloin", "elope", "elops", "elpee",
    "elsin", "elude", "elute", "elvan", "elven", "elver", "elves", "emacs", "email", "embar",
    "embay", "embed", "ember", "embog", "embow", "embox", "embus", "emcee", "emeer", "emend",
    "emerg", "emery", "emeus", "emics", "emirs", "emits", "emmas", "emmer", "emmet", "emmew",
    "emmys", "emoji", "emong", "emote", "emove", "empts", "empty", "emule", "emure", "emyde",
    "emyds", "enact", "enarm", "enate", "ended", "ender", "endew", "endow", "endue", "enema",
    "enemy", "enews", "enfix", "eniac", "enjoy", "enlit", "enmew", "ennog", "ennui", "enoki",
    "enols", "enorm", "enows", "enrol", "ensew", "ensky", "ensue", "enter", "entia", "entry",
    "enure", "enurn", "envoi", "envoy", "enzym", "eorls", "eosin", "epact", "epees", "ephah",
    "ephas", "ephod", "ephor", "epics", "epoch", "epode", "epopt", "epoxy", "epris", "equal",
    "eques", "equid", "equip", "erase", "erbia", "erect", "erevs", "ergon", "ergos", "ergot",
    "erhus", "erica", "erick", "erics", "ering", "erned", "ernes", "erode", "erose", "erred",
    "error", "erses", "eruct", "erugo", "erupt", "eruvs", "erven", "ervil", "escar", "escot",
    "esile", "eskar", "esker", "esnes", "essay", "esses", "ester", "estoc", "estop", "estro",
    "etage", "etape", "etats", "etens", "ethal", "ether", "ethic", "ethne", "ethos", "ethyl",
    "etics", "etnas", "ettin", "ettle", "etude", "etuis", "etwee", "etyma", "eughs", "euked",
    "eupad", "euros", "eusol", "evade", "evens", "event", "evert", "every", "evets", "evhoe",
    "evict", "evils", "evite", "evohe", "evoke", "ewers", "ewest", "ewhow", "ewked", "exact",
    "exalt", "exams", "excel", "exeat", "execs", "exeem", "exeme", "exert", "exfil", "exies",
    "exile", "exine", "exing", "exist", "exits", "exode", "exome", "exons", "expat", "expel",
    "expos", "extol", "extra", "exude", "exuls", "exult", "exurb", "eyass", "eyers", "eying",
    "eyots", "eyras", "eyres", "eyrie", "eyrir", "ezine", "fabby", "fable", "faced", "facer",
    "faces", "facet", "facia", "facta", "facts", "faddy", "faded", "fader", "fades", "fadge",
    "fados", "faena", "faery", "faffs", "faffy", "faggy", "fagin", "fagot", "faiks", "fails",
    "faine", "fains", "faint", "fairs", "fairy", "faith", "faked", "faker", "fakes", "fakey",
    "fakie", "fakir", "falaj", "falls", "false", "famed", "fames", "fanal", "fancy", "fands",
    "fanes", "fanga", "fango", "fangs", "fanks", "fanny", "fanon", "fanos", "fanum", "faqir",
    "farad", "farce", "farci", "farcy", "fards", "fared", "farer", "fares", "farle", "farls",
    "farms", "faros", "farro", "farse", "farts", "fasci", "fasti", "fasts", "fatal", "fated",
    "fates", "fatly", "fatso", "fatty", "fatwa", "faugh", "fauld", "fault", "fauna", "fauns",
    "faurd", "fauts", "fauve", "favas", "favel", "faver", "faves", "favor", "favus", "fawns",
    "fawny", "faxed", "faxes", "fayed", "fayer", "fayne", "fayre", "fazed", "fazes", "feals",
    "feare", "fears", "feart", "fease", "feast", "feats", "feaze", "fecal", "feces", "fecht",
    "fecit", "fecks", "fedex", "feebs", "feeds", "feels", "feens", "feers", "feese", "feeze",
    "fehme", "feign", "feint", "feist", "felch", "felid", "fella", "fells", "felly", "felon",
    "felts", "felty", "femal", "femes", "femme", "femmy", "femur", "fence", "fends", "fendy",
    "fenis", "fenks", "fenny", "fents", "feods", "feoff", "feral", "ferer", "feres", "feria",
    "ferly", "fermi", "ferms", "ferns", "ferny", "ferry", "fesse", "festa", "fests", "festy",
    "fetal", "fetas", "fetch", "feted", "fetes", "fetid", "fetor", "fetta", "fetts", "fetus",
    "fetwa", "feuar", "feuds", "feued", "fever", "fewer", "feyed", "feyer", "feyly", "fezes",
    "fezzy", "fiars", "fiats", "fiber", "fibre", "fibro", "fices", "fiche", "fichu", "ficin",
    "ficos", "ficus", "fides", "fidge", "fidos", "fiefs", "field", "fiend", "fient", "fiere",
    "fiers", "fiery", "fiest", "fifed", "fifer", "fifes", "fifis", "fifth", "fifty", "figgy",
    "fight", "figos", "fiked", "fikes", "filar", "filch", "filed", "filer", "files", "filet",
    "filii", "filks", "fille", "fillo", "fills", "filly", "filmi", "films", "filmy", "filos",
    "filth", "filum", "final", "finca", "finch", "finds", "fined", "finer", "fines", "finis",
    "finks", "finny", "finos", "fiord", "fiqhs", "fique", "fired", "firer", "fires", "firie",
    "firks", "firms", "firns", "firry", "first", "firth", "fiscs", "fishy", "fisks", "fists",
    "fisty", "fitch", "fitly", "fitna", "fitte", "fitts", "fiver", "fives", "fixed", "fixer",
    "fixes", "fixit", "fizzy", "fjeld", "fjord", "flabs", "flack", "flaff", "flags", "flail",
    "flair", "flake", "flaks", "flaky", "flame", "flamm", "flams", "flamy", "flane", "flank",
    "flans", "flaps", "flare", "flary", "flash", "flask", "flats", "flava", "flawn", "flaws",
    "flawy", "flaxy", "flays", "fleam", "fleas", "fleck", "fleek", "fleer", "flees", "fleet",
    "flegs", "fleme", "flesh", "fleur", "flews", "flexi", "flexo", "fleys", "flick", "flics",
    "flied", "flier", "flies", "flimp", "flims", "fling", "flint", "flips", "flirs", "flirt",
    "flisk", "flite", "flits", "flitt", "float", "flobs", "flock", "flocs", "floes", "flogs",
    "flong", "flood", "floor", "flops", "flora", "flors", "flory", "flosh", "floss", "flota",
    "flote", "flour", "flout", "flown", "flows", "flubs", "flued", "flues", "fluey", "fluff",
    "fluid", "fluke", "fluky", "flume", "flump", "flung", "flunk", "fluor", "flurr", "flush",
    "flute", "fluty", "fluyt", "flyby", "flyer", "flype", "flyte", "foals", "foams", "foamy",
    "focal", "focus", "foehn", "fogey", "foggy", "fogie", "fogle", "fogou", "fohns", "foids",
    "foils", "foins", "foist", "folds", "foley", "folia", "folic", "folie", "folio", "folks",
    "folky", "folly", "fomes", "fonda", "fonds", "fondu", "fones", "fonly", "fonts", "foods",
    "foody", "fools", "foots", "footy", "foram", "foray", "forbs", "forby", "force", "fordo",
    "fords", "forel", "fores", "forex", "forge", "forgo", "forks", "forky", "forme", "forms",
    "forte", "forth", "forts", "forty", "forum", "forza", "forze", "fossa", "fosse", "fouat",
    "fouds", "fouer", "fouet", "foule", "fouls", "found", "fount", "fours", "fouth", "fovea",
    "fowls", "fowth", "foxed", "foxes", "foxie", "foyer", "foyle", "foyne", "frabs", "frack",
    "fract", "frags", "frail", "fraim", "frame", "franc", "frank", "frape", "fraps", "frass",
    "frate", "frati", "frats", "fraud", "fraus", "frays", "freak", "freed", "freer", "frees",
    "freet", "freit", "fremd", "frena", "freon", "frere", "fresh", "frets", "friar", "fribs",
    "fried", "frier", "fries", "frigs", "frill", "frise", "frisk", "frist", "frith", "frits",
    "fritt", "fritz", "frize", "frizz", "frock", "froes", "frogs", "frond", "frons", "front",
    "frore", "frorn", "frory", "frosh", "frost", "froth", "frown", "frows", "frowy", "froze",
    "frugs", "fruit", "frump", "frush", "frust", "fryer", "fubar", "fubby", "fubsy", "fucks",
    "fucus", "fuddy", "fudge", "fudgy", "fuels", "fuero", "fuffs", "fuffy", "fugal", "fuggy",
    "fugie", "fugio", "fugle", "fugly", "fugue", "fugus", "fujis", "fulls", "fully", "fumed",
    "fumer", "fumes", "fumet", "fundi", "funds", "fundy", "fungi", "fungo", "fungs", "funks",
    "funky", "funny", "fural", "furan", "furca", "furls", "furol", "furor", "furrs", "furry",
    "furth", "furze", "furzy", "fused", "fusee", "fusel", "fuses", "fusil", "fusks", "fussy",
    "fusts", "fusty", "futon", "fuzed", "fuzee", "fuzes", "fuzil", "fuzzy", "fyces", "fyked",
    "fykes", "fyles", "fyrds", "fytte", "gabba", "gabby", "gable", "gaddi", "gades", "gadge",
    "gadid", "gadis", "gadje", "gadjo", "gadso", "gaffe", "gaffs", "gaged", "gager", "gages",
    "gaids", "gaily", "gains", "gairs", "gaita", "gaits", "gaitt", "gajos", "galah", "galas",
    "galax", "galea", "galed", "gales", "galls", "gally", "galop", "galut", "galvo", "gamas",
    "gamay", "gamba", "gambe", "gambo", "gambs", "gamed", "gamer", "games", "gamey", "gamic",
    "gamin", "gamma", "gamme", "gammy", "gamps", "gamut", "ganch", "gandy", "ganef", "ganev",
    "gangs", "ganja", "ganof", "gants", "gaols", "gaped", "gaper", "gapes", "gapos", "gappy",
    "garbe", "garbo", "garbs", "garda", "gares", "garis", "garms", "garni", "garre", "garth",
    "garum", "gases", "gasps", "gaspy", "gassy", "gasts", "gatch", "gated", "gater", "gates",
    "gaths", "gator", "gauch", "gaucy", "gauds", "gaudy", "gauge", "gauje", "gault", "gaums",
    "gaumy", "gaunt", "gaups", "gaurs", "gauss", "gauze", "gauzy", "gavel", "gavot", "gawcy",
    "gawds", "gawks", "gawky", "gawps", "gawsy", "gayal", "gayer", "gayly", "gazal", "gazar",
    "gazed", "gazer", "gazes", "gazon", "gazoo", "geals", "geans", "geare", "gears", "geats",
    "gebur", "gecko", "gecks", "geeks", "geeky", "geeps", "geese", "geest", "geist", "geits",
    "gelds", "gelee", "gelid", "gelly", "gelts", "gemel", "gemma", "gemmy", "gemot", "genal",
    "genas", "genes", "genet", "genic", "genie", "genii", "genip", "genny", "genoa", "genom",
    "genre", "genro", "gents", "genty", "genua", "genus", "geode", "geoid", "gerah", "gerbe",
    "geres", "gerle", "germs", "germy", "gerne", "gesse", "gesso", "geste", "gests", "getas",
    "getup", "geums", "geyan", "geyer", "ghast", "ghats", "ghaut", "ghazi", "ghees", "ghest",
    "ghost", "ghoul", "ghyll", "giant", "gibed", "gibel", "giber", "gibes", "gibli", "gibus",
    "giddy", "gifts", "gigas", "gighe", "gigot", "gigue", "gilas", "gilds", "gilet", "gills",
    "gilly", "gilpy", "gilts", "gimel", "gimme", "gimps", "gimpy", "ginch", "ginge", "gings",
    "ginks", "ginny", "ginzo", "gipon", "gippo", "gippy", "gipsy", "girds", "girls", "girly",
    "girns", "giron", "giros", "girrs", "girsh", "girth", "girts", "gismo", "gisms", "gists",
    "gitch", "gites", "giust", "gived", "given", "giver", "gives", "gizmo", "glace", "glade",
    "glads", "glady", "glaik", "glair", "glams", "gland", "glans", "glare", "glary", "glass",
    "glaum", "glaur", "glaze", "glazy", "gleam", "glean", "gleba", "glebe", "gleby", "glede",
    "gleds", "gleed", "gleek", "glees", "gleet", "gleis", "glens", "glent", "gleys", "glial",
    "glias", "glibs", "glide", "gliff", "glift", "glike", "glime", "glims", "glint", "glisk",
    "glits", "glitz", "gloam", "gloat", "globe", "globi", "globs", "globy", "glode", "glogg",
    "gloms", "gloom", "gloop", "glops", "glory", "gloss", "glost", "glout", "glove", "glows",
    "gloze", "glued", "gluer", "glues", "gluey", "glugs", "glume", "glums", "gluon", "glute",
    "gluts", "glyph", "gnarl", "gnarr", "gnars", "gnash", "gnats", "gnawn", "gnaws", "gnome",
    "gnows", "goads", "goafs", "goals", "goary", "goats", "goaty", "goban", "gobar", "gobbi",
    "gobbo", "gobby", "gobis", "gobos", "godet", "godly", "godso", "goels", "goers", "goest",
    "goeth", "goety", "gofer", "goffs", "gogga", "gogos", "goier", "going", "gojis", "golds",
    "goldy", "golem", "goles", "golfs", "golly", "golpe", "golps", "gombo", "gomer", "gompa",
    "gonad", "gonch", "gonef", "goner", "gongs", "gonia", "gonif", "gonks", "gonna", "gonof",
    "gonys", "gonzo", "gooby", "goods", "goody", "gooey", "goofs", "goofy", "googs", "gooks",
    "gooky", "goold", "gools", "gooly", "goons", "goony", "goops", "goopy", "goors", "goory",
    "goose", "goosy", "gopak", "gopik", "goral", "goras", "gored", "gores", "gorge", "goris",
    "gorms", "gormy", "gorps", "gorse", "gorsy", "gosht", "gosse", "gotch", "goths", "gothy",
    "gotta", "gouch", "gouge", "gouks", "goura", "gourd", "gouts", "gouty", "gowan", "gowds",
    "gowfs", "gowks", "gowls", "gowns", "goxes", "goyim", "goyle", "graal", "grabs", "grace",
    "grade", "grads", "graff", "graft", "grail", "grain", "graip", "grama", "grame", "gramp",
    "grams", "grana", "grand", "grans", "grant", "grape", "graph", "grapy", "grasp", "grass",
    "grate", "grave", "gravs", "gravy", "grays", "graze", "great", "grebe", "grebo", "grece",
    "greed", "greek", "green", "grees", "greet", "grege", "grego", "grein", "grens", "grese",
    "greve", "grews", "greys", "grice", "gride", "grids", "grief", "griff", "grift", "grigs",
    "grike", "grill", "grime", "grimy", "grind", "grins", "griot", "gripe", "grips", "gript",
    "gripy", "grise", "grist", "grisy", "grith", "grits", "grize", "groan", "groat", "grody",
    "grogs", "groin", "groks", "groma", "grone", "groof", "groom", "grope", "gross", "grosz",
    "grots", "grouf", "group", "grout", "grove", "grovy", "growl", "grown", "grows", "grrls",
    "grrrl", "grubs", "grued", "gruel", "grues", "grufe", "gruff", "grume", "grump", "grund",
    "grunt", "gryce", "gryde", "gryke", "grype", "grypt", "guaco", "guana", "guano", "guans",
    "guard", "guars", "guava", "gucks", "gucky", "gudes", "guess", "guest", "guffs", "gugas",
    "guide", "guids", "guild", "guile", "guilt", "guimp", "guiro", "guise", "gulag", "gular",
    "gulas", "gulch", "gules", "gulet", "gulfs", "gulfy", "gulls", "gully", "gulph", "gulps",
    "gulpy", "gumbo", "gumma", "gummi", "gummy", "gumps", "gundy", "gunge", "gungy", "gunks",
    "gunky", "gunny", "guppy", "guqin", "gurdy", "gurge", "gurls", "gurly", "gurns", "gurry",
    "gursh", "gurus", "gushy", "gusla", "gusle", "gusli", "gussy", "gusto", "gusts", "gusty",
    "gutsy", "gutta", "gutty", "guyed", "guyle", "guyot", "guyse", "gwine", "gyals", "gyans",
    "gybed", "gybes", "gyeld", "gymps", "gynae", "gynie", "gynny", "gynos", "gyoza", "gypos",
    "gyppo", "gyppy", "gypsy", "gyral", "gyred", "gyres", "gyron", "gyros", "gyrus", "gytes",
    "gyved", "gyves", "haafs", "haars", "habit", "hable", "habus", "hacek", "hacks", "hadal",
    "haded", "hades", "hadji", "hadst", "haems", "haets", "haffs", "hafiz", "hafts", "haggs",
    "hahas", "haick", "haika", "haiks", "haiku", "hails", "haily", "hains", "haint", "hairs",
    "hairy", "haith", "hajes", "hajis", "hajji", "hakam", "hakas", "hakea", "hakes", "hakim",
    "hakus", "halal", "haled", "haler", "hales", "halfa", "halfs", "halid", "hallo", "halls",
    "halma", "halms", "halon", "halos", "halse", "halts", "halva", "halve", "halwa", "hamal",
    "hamba", "hamed", "hames", "hammy", "hamza", "hanap", "hance", "hanch", "hands", "handy",
    "hangi", "hangs", "hanks", "hanky", "hansa", "hanse", "hants", "haole", "haoma", "hapax",
    "haply", "happi", "happy", "hapus", "haram", "hards", "hardy", "hared", "harem", "hares",
    "harim", "harks", "harls", "harms", "harns", "haros", "harps", "harpy", "harry", "harsh",
    "harts", "hashy", "hasks", "hasps", "hasta", "haste", "hasty", "hatch", "hated", "hater",
    "hates", "hatha", "hauds", "haufs", "haugh", "hauld", "haulm", "hauls", "hault", "hauns",
    "haunt", "hause", "haute", "haven", "haver", "haves", "havoc", "hawed", "hawks", "hawms",
    "hawse", "hayed", "hayer", "hayey", "hayle", "hazan", "hazed", "hazel", "hazer", "hazes",
    "heads", "heady", "heald", "heals", "heame", "heaps", "heapy", "heard", "heare", "hears",
    "heart", "heast", "heath", "heats", "heave", "heavy", "heben", "hebes", "hecht", "hecks",
    "heder", "hedge", "hedgy", "heeds", "heedy", "heels", "heeze", "hefte", "hefts", "hefty",
    "heids", "heigh", "heils", "heirs", "heist", "hejab", "hejra", "heled", "heles", "helio",
    "helix", "hello", "hells", "helms", "helos", "helot", "helps", "helve", "hemal", "hemes",
    "hemic", "hemin", "hemps", "hempy", "hence", "hench", "hends", "henge", "henna", "henny",
    "henry", "hents", "hepar", "herbs", "herby", "herds", "heres", "herls", "herma", "herms",
    "herns", "heron", "heros", "herry", "herse", "hertz", "herye", "hesps", "hests", "hetes",
    "heths", "heuch", "heugh", "hevea", "hewed", "hewer", "hewgh", "hexad", "hexed", "hexer",
    "hexes", "hexyl", "heyed", "hiant", "hicks", "hided", "hider", "hides", "hiems", "highs",
    "hight", "hijab", "hijra", "hiked", "hiker", "hikes", "hikoi", "hilar", "hilch", "hillo",
    "hills", "hilly", "hilts", "hilum", "hilus", "himbo", "hinau", "hinds", "hinge", "hings",
    "hinky", "hinny", "hints", "hiois", "hiply", "hippo", "hippy", "hired", "hiree", "hirer",
    "hires", "hissy", "hists", "hitch", "hithe", "hived", "hiver", "hives", "hizen", "hoaed",
    "hoagy", "hoard", "hoars", "hoary", "hoast", "hobby", "hobos", "hocks", "hocus", "hodad",
    "hodja", "hoers", "hogan", "hogen", "hoggs", "hoghs", "hohed", "hoick", "hoied", "hoiks",
    "hoing", "hoise", "hoist", "hokas", "hoked", "hokes", "hokey", "hokis", "hokku", "hokum",
    "holds", "holed", "holes", "holey", "holks", "holla", "hollo", "holly", "holme", "holms",
    "holon", "holos", "holts", "homas", "homed", "homer", "homes", "homey", "homie", "homme",
    "homos", "honan", "honda", "honds", "honed", "honer", "hones", "honey", "hongi", "hongs",
    "honks", "honky", "honor", "hooch", "hoods", "hoody", "hooey", "hoofs", "hooka", "hooks",
    "hooky", "hooly", "hoons", "hoops", "hoord", "hoors", "hoosh", "hoots", "hooty", "hoove",
    "hopak", "hoped", "hoper", "hopes", "hoppy", "horah", "horal", "horas", "horde", "horis",
    "horks", "horme", "horns", "horny", "horse", "horst", "horsy", "hosed", "hosel", "hosen",
    "hoser", "hoses", "hosey", "hosta", "hosts", "hotch", "hotel", "hoten", "hotly", "hotty",
    "houff", "houfs", "hough", "hound", "houri", "hours", "house", "houts", "hovea", "hoved",
    "hovel", "hoven", "hover", "hoves", "howbe", "howdy", "howes", "howff", "howfs", "howks",
    "howls", "howre", "howso", "hoxed", "hoxes", "hoyas", "hoyed", "hoyle", "hubby", "hucks",
    "hudna", "hudud", "huers", "huffs", "huffy", "huger", "huggy", "huhus", "huias", "hulas",
    "hules", "hulks", "hulky", "hullo", "hulls", "hully", "human", "humas", "humfs", "humic",
    "humid", "humor", "humph", "humps", "humpy", "humus", "hunch", "hunks", "hunky", "hunts",
    "hurds", "hurls", "hurly", "hurra", "hurry", "hurst", "hurts", "hushy", "husks", "husky",
    "husos", "hussy", "hutch", "hutia", "huzza", "huzzy", "hwyls", "hydra", "hydro", "hyena",
    "hyens", "hygge", "hying", "hykes", "hylas", "hyleg", "hyles", "hylic", "hymen", "hymns",
    "hynde", "hyoid", "hyped", "hyper", "hypes", "hypha", "hyphy", "hypos", "hyrax", "hyson",
    "hythe", "iambi", "iambs", "ibrik", "icers", "iched", "iches", "ichor", "icier", "icily",
    "icing", "icker", "ickle", "icons", "ictal", "ictic", "ictus", "idant", "ideal", "ideas",
    "idees", "ident", "idiom", "idiot", "idled", "idler", "idles", "idola", "idols", "idyll",
    "idyls", "iftar", "igapo", "igged", "igloo", "iglus", "ihram", "ikans", "ikats", "ikons",
    "ileac", "ileal", "ileum", "ileus", "iliac", "iliad", "ilial", "ilium", "iller", "illth",
    "image", "imago", "imams", "imari", "imaum", "imbar", "imbed", "imbue", "imide", "imido",
    "imids", "imine", "imino", "immew", "immit", "immix", "imped", "impel", "impis", "imply",
    "impot", "impro", "imshi", "imshy", "inane", "inapt", "inarm", "inbox", "inbye", "incel",
    "incle", "incog", "incur", "incus", "incut", "indew", "index", "india", "indie", "indol",
    "indow", "indri", "indue", "inept", "inerm", "inert", "infer", "infix", "infos", "infra",
    "ingan", "ingle", "ingot", "inion", "inked", "inker", "inkle", "inlay", "inlet", "inned",
    "inner", "innit", "inorb", "input", "inrun", "inset", "inspo", "intel", "inter", "intil",
    "intis", "intra", "intro", "inula", "inure", "inurn", "inust", "invar", "inwit", "iodic",
    "iodid", "iodin", "ionic", "iotas", "ippon", "irade", "irate", "irids", "iring", "irked",
    "iroko", "irone", "irons", "irony", "isbas", "ishes", "isled", "isles", "islet", "isnae",
    "issei", "issue", "istle", "itchy", "items", "ither", "ivied", "ivies", "ivory", "ixias",
    "ixnay", "ixora", "ixtle", "izard", "izars", "izzat", "jaaps", "jabot", "jacal", "jacks",
    "jacky", "jaded", "jades", "jafas", "jaffa", "jagas", "jager", "jaggs", "jaggy", "jagir",
    "jagra", "jails", "jaker", "jakes", "jakey", "jalap", "jalop", "jambe", "jambo", "jambs",
    "jambu", "james", "jammy", "jamon", "janes", "janns", "janny", "janty", "japan", "japed",
    "japer", "japes", "jarks", "jarls", "jarps", "jarta", "jarul", "jasey", "jaspe", "jasps",
    "jatos", "jauks", "jaunt", "jaups", "javas", "javel", "jawan", "jawed", "jaxie", "jazzy",
    "jeans", "jeats", "jebel", "jedis", "jeels", "jeely", "jeeps", "jeers", "jeeze", "jefes",
    "jeffs", "jehad", "jehus", "jelab", "jello", "jells", "jelly", "jembe", "jemmy", "jenny",
    "jeons", "jerid", "jerks", "jerky", "jerry", "jesse", "jests", "jesus", "jetes", "jeton",
    "jetty", "jeune", "jewed", "jewel", "jewie", "jhala", "jiaos", "jibba", "jibbs", "jibed",
    "jiber", "jibes", "jiffs", "jiffy", "jiggy", "jigot", "jihad", "jills", "jilts", "jimmy",
    "jimpy", "jingo", "jinks", "jinne", "jinni", "jinns", "jirds", "jirga", "jirre", "jisms",
    "jived", "jiver", "jives", "jivey", "jnana", "jobed", "jobes", "jocko", "jocks", "jocky",
    "jocos", "jodel", "joeys", "johns", "joins", "joint", "joist", "joked", "joker", "jokes",
    "jokey", "jokol", "joled", "joles", "jolls", "jolly", "jolts", "jolty", "jomon", "jomos",
    "jones", "jongs", "jonty", "jooks", "joram", "jorum", "jotas", "jotty", "jotun", "joual",
    "jougs", "jouks", "joule", "jours", "joust", "jowar", "jowed", "jowls", "jowly", "joyed",
    "jubas", "jubes", "jucos", "judas", "judge", "judgy", "judos", "jugal", "jugum", "juice",
    "juicy", "jujus", "juked", "jukes", "jukus", "julep", "jumar", "jumbo", "jumby", "jumps",
    "jumpy", "junco", "junks", "junky", "junta", "junto", "jupes", "jupon", "jural", "jurat",
    "jurel", "jures", "juror", "justs", "jutes", "jutty", "juves", "juvie", "kaama", "kabab",
    "kabar", "kabob", "kacha", "kacks", "kadai", "kades", "kadis", "kafir", "kagos", "kagus",
    "kahal", "kaiak", "kaids", "kaies", "kaifs", "kaika", "kaiks", "kails", "kaims", "kaing",
    "kains", "kakas", "kakis", "kalam", "kales", "kalif", "kalis", "kalpa", "kamas", "kames",
    "kamik", "kamis", "kamme", "kanae", "kanas", "kandy", "kaneh", "kanes", "kanga", "kangs",
    "kanji", "kants", "kanzu", "kaons", "kapas", "kaphs", "kapok", "kapow", "kappa", "kapus",
    "kaput", "karas", "karat", "karks", "karma", "karns", "karoo", "karos", "karri", "karst",
    "karsy", "karts", "karzy", "kasha", "kasme", "katal", "katas", "katis", "katti", "kaugh",
    "kauri", "kauru", "kaury", "kaval", "kavas", "kawas", "kawau", "kawed", "kayak", "kayle",
    "kayos", "kazis", "kazoo", "kbars", "kebab", "kebar", "kebob", "kecks", "kedge", "kedgy",
    "keech", "keefs", "keeks", "keels", "keema", "keeno", "keens", "keeps", "keets", "keeve",
    "kefir", "kehua", "keirs", "kelep", "kelim", "kells", "kelly", "kelps", "kelpy", "kelts",
    "kelty", "kembo", "kembs", "kemps", "kempt", "kempy", "kenaf", "kench", "kendo", "kenos",
    "kente", "kents", "kepis", "kerbs", "kerel", "kerfs", "kerky", "kerma", "kerne", "kerns",
    "keros", "kerry", "kerve", "kesar", "kests", "ketas", "ketch", "ketes", "ketol", "kevel",
    "kevil", "kexes", "keyed", "keyer", "khadi", "khafs", "khaki", "khans", "khaph", "khats",
    "khaya", "khazi", "kheda", "kheth", "khets", "khoja", "khors", "khoum", "khuds", "kiaat",
    "kiack", "kiang", "kibbe", "kibbi", "kibei", "kibes", "kibla", "kicks", "kicky", "kiddo",
    "kiddy", "kidel", "kidge", "kiefs", "kiers", "kieve", "kievs", "kight", "kikes", "kikoi",
    "kiley", "kilim", "kills", "kilns", "kilos", "kilps", "kilts", "kilty", "kimbo", "kinas",
    "kinda", "kinds", "kindy", "kines", "kings", "kinin", "kinks", "kinky", "kinos", "kiore",
    "kiosk", "kipes", "kippa", "kipps", "kirby", "kirks", "kirns", "kirri", "kisan", "kissy",
    "kists", "kited", "kiter", "kites", "kithe", "kiths", "kitty", "kitul", "kivas", "kiwis",
    "klang", "klaps", "klett", "klick", "klieg", "kliks", "klong", "kloof", "kluge", "klutz",
    "knack", "knags", "knaps", "knarl", "knars", "knaur", "knave", "knawe", "knead", "kneed",
    "kneel", "knees", "knell", "knelt", "knife", "knish", "knits", "knive", "knobs", "knock",
    "knoll", "knops", "knosp", "knots", "knout", "knowe", "known", "knows", "knubs", "knurl",
    "knurr", "knurs", "knuts", "koala", "koans", "koaps", "koban", "kobos", "koels", "koffs",
    "kofta", "kogal", "kohas", "kohen", "kohls", "koine", "kojis", "kokam", "kokas", "koker",
    "kokra", "kokum", "kolas", "kolos", "kombu", "konbu", "kondo", "konks", "kooks", "kooky",
    "koori", "kopek", "kophs", "kopje", "koppa", "korai", "koras", "korat", "kores", "korma",
    "koros", "korun", "korus", "koses", "kotch", "kotos", "kotow", "koura", "kraal", "krabs",
    "kraft", "krais", "krait", "krang", "krans", "kranz", "kraut", "krays", "kreep", "kreng",
    "krewe", "krill", "krona", "krone", "kroon", "krubi", "krunk", "ksars", "kubie", "kudos",
    "kudus", "kudzu", "kufis", "kugel", "kuias", "kukri", "kukus", "kulak", "kulan", "kulas",
    "kulfi", "kumis", "kumys", "kuris", "kurre", "kurta", "kurus", "kusso", "kutas", "kutch",
    "kutis", "kutus", "kuzus", "kvass", "kvell", "kwela", "kyack", "kyaks", "kyang", "kyars",
    "kyats", "kybos", "kydst", "kyles", "kylie", "kylin", "kylix", "kyloe", "kynde", "kynds",
    "kypes", "kyrie", "kytes", "kythe", "laari", "labda", "label", "labia", "labis", "labor",
    "labra", "laced", "lacer", "laces", "lacet", "lacey", "lacks", "laddy", "laded", "laden",
    "lader", "lades", "ladle", "laers", "laevo", "lagan", "lager", "lahal", "lahar", "laich",
    "laics", "laids", "laigh", "laika", "laiks", "laird", "lairs", "lairy", "laith", "laity",
    "laked", "laker", "lakes", "lakhs", "lakin", "laksa", "laldy", "lalls", "lamas", "lambs",
    "lamby", "lamed", "lamer", "lames", "lamia", "lammy", "lamps", "lanai", "lanas", "lance",
    "lanch", "lande", "lands", "lanes", "lanks", "lanky", "lants", "lapel", "lapin", "lapis",
    "lapje", "lapse", "larch", "lards", "lardy", "laree", "lares", "large", "largo", "laris",
    "larks", "larky", "larns", "larnt", "larum", "larva", "lased", "laser", "lases", "lassi",
    "lasso", "lassu", "lassy", "lasts", "latah", "latch", "lated", "laten", "later", "latex",
    "lathe", "lathi", "laths", "lathy", "latke", "latte", "latus", "lauan", "lauch", "lauds",
    "laufs", "laugh", "laund", "laura", "laval", "lavas", "laved", "laver", "laves", "lavra",
    "lavvy", "lawed", "lawer", "lawin", "lawks", "lawns", "lawny", "laxed", "laxer", "laxes",
    "laxly", "layed", "layer", "layin", "layup", "lazar", "lazed", "lazes", "lazos", "lazzi",
    "lazzo", "leach", "leads", "leady", "leafs", "leafy", "leaks", "leaky", "leams", "leans",
    "leant", "leany", "leaps", "leapt", "leare", "learn", "lears", "leary", "lease", "leash",
    "least", "leats", "leave", "leavy", "leaze", "leben", "leccy", "ledes", "ledge", "ledgy",
    "ledum", "leear", "leech", "leeks", "leeps", "leers", "leery", "leese", "leets", "leeze",
    "lefte", "lefts", "lefty", "legal", "leger", "leges", "legge", "leggo", "leggy", "legit",
    "lehrs", "lehua", "leirs", "leish", "leman", "lemed", "lemel", "lemes", "lemma", "lemme",
    "lemon", "lemur", "lends", "lenes", "lengs", "lenis", "lenos", "lense", "lenti", "lento",
    "leone", "leper", "lepid", "lepra", "lepta", "lered", "leres", "lerps", "lesbo", "leses",
    "lests", "letch", "lethe", "letup", "leuch", "leuco", "leuds", "leugh", "levas", "levee",
    "level", "lever", "leves", "levin", "levis", "lewis", "lexes", "lexis", "lezes", "lezza",
    "lezzy", "liana", "liane", "liang", "liard", "liars", "liart", "libel", "liber", "libra",
    "libri", "lichi", "licht", "licit", "licks", "lidar", "lidos", "liefs", "liege", "liens",
    "liers", "lieus", "lieve", "lifer", "lifes", "lifts", "ligan", "liger", "ligge", "light",
    "ligne", "liked", "liken", "liker", "likes", "likin", "lilac", "lills", "lilos", "lilts",
    "liman", "limas", "limax", "limba", "limbi", "limbo", "limbs", "limby", "limed", "limen",
    "limes", "limey", "limit", "limma", "limns", "limos", "limpa", "limps", "linac", "linch",
    "linds", "lindy", "lined", "linen", "liner", "lines", "liney", "linga", "lingo", "lings",
    "lingy", "linin", "links", "linky", "linns", "linny", "linos", "lints", "linty", "linum",
    "linux", "lions", "lipas", "lipes", "lipid", "lipin", "lipos", "lippy", "liras", "lirks",
    "lirot", "lisks", "lisle", "lisps", "lists", "litai", "litas", "lited", "liter", "lites",
    "lithe", "litho", "liths", "litre", "lived", "liven", "liver", "lives", "livid", "livor",
    "livre", "llama", "llano", "loach", "loads", "loafs", "loams", "loamy", "loans", "loast",
    "loath", "loave", "lobar", "lobby", "lobed", "lobes", "lobos", "lobus", "local", "loche",
    "lochs", "locie", "locis", "locks", "locos", "locum", "locus", "loden", "lodes", "lodge",
    "loess", "lofts", "lofty", "logan", "loges", "loggy", "logia", "logic", "logie", "login",
    "logoi", "logon", "logos", "lohan", "loids", "loins", "loipe", "loirs", "lokes", "lolls",
    "lolly", "lolog", "lomas", "lomed", "lomes", "loner", "longa", "longe", "longs", "looby",
    "looed", "looey", "loofa", "loofs", "looie", "looks", "looky", "looms", "loons", "loony",
    "loops", "loopy", "loord", "loose", "loots", "loped", "loper", "lopes", "loppy", "loral",
    "loran", "lords", "lordy", "lorel", "lores", "loric", "loris", "lorry", "losed", "losel",
    "losen", "loser", "loses", "lossy", "lotah", "lotas", "lotes", "lotic", "lotos", "lotsa",
    "lotta", "lotte", "lotto", "lotus", "loued", "lough", "louie", "louis", "louma", "lound",
    "louns", "loupe", "loups", "loure", "lours", "loury", "louse", "lousy", "louts", "lovat",
    "loved", "lover", "loves", "lovey", "lovie", "lowan", "lowed", "lower", "lowes", "lowly",
    "lownd", "lowne", "lowns", "lowps", "lowry", "lowse", "lowts", "loxed", "loxes", "loyal",
    "lozen", "luach", "luaus", "lubed", "lubes", "lubra", "luces", "lucid", "lucks", "lucky",
    "lucre", "ludes", "ludic", "ludos", "luffa", "luffs", "luged", "luger", "luges", "lulls",
    "lulus", "lumas", "lumbi", "lumen", "lumme", "lummy", "lumps", "lumpy", "lunar", "lunas",
    "lunch", "lunes", "lunet", "lunge", "lungi", "lungs", "lunks", "lunts", "lupin", "lupus",
    "lurch", "lured", "lurer", "lures", "lurex", "lurgi", "lurgy", "lurid", "lurks", "lurry",
    "lurve", "luser", "lushy", "lusks", "lusts", "lusty", "lusus", "lutea", "luted", "luter",
    "lutes", "luvvy", "luxed", "luxer", "luxes", "lweis", "lyams", "lyard", "lyart", "lyase",
    "lycea", "lycee", "lycra", "lying", "lymes", "lymph", "lynch", "lynes", "lyres", "lyric",
    "lysed", "lyses", "lysin", "lysis", "lysol", "lyssa", "lyted", "lytes", "lythe", "lytic",
    "lytta", "maaed", "maare", "maars", "mabes", "macas", "macaw", "maced", "macer", "maces",
    "mache", "machi", "macho", "machs", "macks", "macle", "macon", "macro", "madam", "madge",
    "madid", "madly", "madre", "maerl", "mafia", "mafic", "mages", "maggs", "magic", "magma",
    "magot", "magus", "mahoe", "mahua", "mahwa", "maids", "maiko", "maiks", "maile", "maill",
    "mails", "maims", "mains", "maire", "mairs", "maise", "maist", "maize", "major", "makar",
    "maker", "makes", "makis", "makos", "malam", "malar", "malas", "malax", "males", "malic",
    "malik", "malis", "malls", "malms", "malmy", "malts", "malty", "malus", "malva", "malwa",
    "mamas", "mamba", "mambo", "mamee", "mamey", "mamie", "mamma", "mammy", "manas", "manat",
    "mandi", "maneb", "maned", "maneh", "manes", "manet", "manga", "mange", "mango", "mangs",
    "mangy", "mania", "manic", "manis", "manky", "manly", "manna", "manor", "manos", "manse",
    "manta", "manto", "manty", "manul", "manus", "mapau", "maple", "maqui", "marae", "marah",
    "maras", "march", "marcs", "mardy", "mares", "marge", "margs", "maria", "marid", "marka",
    "marks", "marle", "marls", "marly", "marms", "maron", "maror", "marra", "marri", "marry",
    "marse", "marsh", "marts", "marvy", "masas", "mased", "maser", "mases", "mashy", "masks",
    "mason", "massa", "masse", "massy", "masts", "masty", "masus", "matai", "match", "mated",
    "mater", "mates", "matey", "maths", "matin", "matlo", "matte", "matts", "matza", "matzo",
    "mauby", "mauds", "mauls", "maund", "mauri", "mausy", "mauts", "mauve", "mauzy", "maven",
    "mavie", "mavin", "mavis", "mawed", "mawks", "mawky", "mawns", "mawrs", "maxed", "maxes",
    "maxim", "maxis", "mayan", "mayas", "maybe", "mayed", "mayor", "mayos", "mayst", "mazed",
    "mazer", "mazes", "mazey", "mazut", "mbira", "meads", "meals", "mealy", "meane", "means",
    "meant", "meany", "meare", "mease", "meath", "meats", "meaty", "mebos", "mecca", "mechs",
    "mecks", "medal", "media", "medic", "medii", "medle", "meeds", "meers", "meets", "meffs",
    "meins", "meint", "meiny", "meith", "mekka", "melas", "melba", "melds", "melee", "melic",
    "melik", "mells", "melon", "melts", "melty", "memes", "memos", "menad", "mends", "mened",
    "menes", "menge", "mengs", "mensa", "mense", "mensh", "menta", "mento", "menus", "meous",
    "meows", "merch", "mercs", "mercy", "merde", "mered", "merel", "merer", "meres", "merge",
    "meril", "meris", "merit", "merks", "merle", "merls", "merry", "merse", "mesal", "mesas",
    "mesel", "meses", "meshy", "mesic", "mesne", "meson", "messy", "mesto", "metal", "meted",
    "meter", "metes", "metho", "meths", "metic", "metif", "metis", "metol", "metre", "metro",
    "meuse", "meved", "meves", "mewed", "mewls", "meynt", "mezes", "mezze", "mezzo", "mhorr",
    "miaou", "miaow", "miasm", "miaul", "micas", "miche", "micht", "micks", "micky", "micos",
    "micra", "micro", "middy", "midge", "midgy", "midis", "midst", "miens", "mieve", "miffs",
    "miffy", "mifty", "miggs", "might", "mihas", "mihis", "miked", "mikes", "mikra", "mikva",
    "milch", "milds", "miler", "miles", "milfs", "milia", "milko", "milks", "milky", "mille",
    "mills", "milor", "milos", "milpa", "milts", "milty", "miltz", "mimed", "mimeo", "mimer",
    "mimes", "mimic", "mimsy", "minae", "minar", "minas", "mince", "mincy", "minds", "mined",
    "miner", "mines", "minge", "mings", "mingy", "minim", "minis", "minke", "minks", "minny",
    "minor", "minos", "mints", "minty", "minus", "mired", "mires", "mirex", "mirid", "mirin",
    "mirks", "mirky", "mirly", "miros", "mirth", "mirvs", "mirza", "misch", "misdo", "miser",
    "mises", "misgo", "misos", "missa", "missy", "mists", "misty", "mitch", "miter", "mites",
    "mitis", "mitre", "mitts", "mixed", "mixen", "mixer", "mixes", "mixte", "mixup", "mizen",
    "mizzy", "mneme", "moans", "moats", "mobby", "mobes", "mobey", "mobie", "moble", "mocha",
    "mochi", "mochs", "mochy", "mocks", "modal", "model", "modem", "moder", "modes", "modge",
    "modii", "modus", "moers", "mofos", "moggy", "mogul", "mohel", "mohos", "mohrs", "mohua",
    "mohur", "moile", "moils", "moira", "moire", "moist", "moits", "mojos", "mokes", "mokis",
    "mokos", "molal", "molar", "molas", "molds", "moldy", "moled", "moles", "molla", "molls",
    "molly", "molto", "molts", "molys", "momes", "momma", "mommy", "momus", "monad", "monal",
    "monas", "monde", "mondo", "moner", "money", "mongo", "mongs", "monic", "monie", "monks",
    "monos", "monte", "month", "monty", "moobs", "mooch", "moods", "moody", "mooed", "mooks",
    "moola", "mooli", "mools", "mooly", "moong", "moons", "moony", "moops", "moors", "moory",
    "moose", "moots", "moove", "moped", "moper", "mopes", "mopey", "moppy", "mopsy", "mopus",
    "morae", "moral", "moras", "morat", "moray", "morel", "mores", "moria", "morne", "morns",
    "moron", "morph", "morra", "morro", "morse", "morts", "mosed", "moses", "mosey", "mosks",
    "mosso", "mossy", "moste", "mosts", "moted", "motel", "moten", "motes", "motet", "motey",
    "moths", "mothy", "motif", "motis", "motor", "motte", "motto", "motts", "motty", "motus",
    "motza", "mouch", "moues", "mould", "mouls", "moult", "mound", "mount", "moups", "mourn",
    "mouse", "moust", "mousy", "mouth", "moved", "mover", "moves", "movie", "mowas", "mowed",
    "mower", "mowra", "moxas", "moxie", "moyas", "moyle", "moyls", "mozed", "mozes", "mozos",
    "mpret", "mucho", "mucic", "mucid", "mucin", "mucks", "mucky", "mucor", "mucro", "mucus",
    "muddy", "mudge", "mudir", "mudra", "muffs", "mufti", "mugga", "muggs", "muggy", "muhly",
    "muids", "muils", "muirs", "muist", "mujik", "mulch", "mulct", "muled", "mules", "muley",
    "mulga", "mulie", "mulla", "mulls", "mulse", "mulsh", "mumms", "mummy", "mumps", "mumsy",
    "mumus", "munch", "munga", "munge", "mungo", "mungs", "munis", "munts", "muntu", "muons",
    "mural", "muras", "mured", "mures", "murex", "murid", "murks", "murky", "murls", "murly",
    "murra", "murre", "murri", "murrs", "murry", "murti", "murva", "musar", "musca", "mused",
    "muser", "muses", "muset", "musha", "mushy", "music", "musit", "musks", "musky", "musos",
    "musse", "mussy", "musth", "musts", "musty", "mutch", "muted", "muter", "mutes", "mutha",
    "mutis", "muton", "mutts", "muxed", "muxes", "muzak", "muzzy", "mvule", "myall", "mylar",
    "mynah", "mynas", "myoid", "myoma", "myope", "myops", "myopy", "myrrh", "mysid", "mythi",
    "myths", "mythy", "myxos", "mzees", "naams", "naans", "nabes", "nabis", "nabks", "nabla",
    "nabob", "nache", "nacho", "nacre", "nadas", "nadir", "naeve", "naevi", "naffs", "nagas",
    "naggy", "nagor", "nahal", "naiad", "naifs", "naiks", "nails", "naira", "nairu", "naive",
    "naked", "naker", "nakfa", "nalas", "naled", "nalla", "named", "namer", "names", "namma",
    "namus", "nanas", "nance", "nancy", "nandu", "nanna", "nanny", "nanos", "nanua", "napas",
    "naped", "napes", "napoo", "nappa", "nappe", "nappy", "naras", "narco", "narcs", "nards",
    "nares", "naric", "naris", "narks", "narky", "narre", "nasal", "nashi", "nasty", "natal",
    "natch", "nates", "natis", "natty", "nauch", "naunt", "naval", "navar", "navel", "naves",
    "navew", "navvy", "nawab", "nazes", "nazir", "nazis", "nduja", "neafe", "neals", "neaps",
    "nears", "neath", "neats", "nebek", "nebel", "necks", "neddy", "needs", "needy", "neeld",
    "neele", "neemb", "neems", "neeps", "neese", "neeze", "negro", "negus", "neifs", "neigh",
    "neist", "neive", "nelis", "nelly", "nemas", "nemns", "nempt", "nenes", "neons", "neper",
    "nepit", "neral", "nerds", "nerdy", "nerka", "nerks", "nerol", "nerts", "nertz", "nerve",
    "nervy", "nests", "netes", "netop", "netts", "netty", "neuks", "neume", "neums", "nevel",
    "never", "neves", "nevus", "newbs", "newed", "newel", "newer", "newie", "newly", "newsy",
    "newts", "nexts", "nexus", "ngaio", "ngana", "ngati", "ngoma", "ngwee", "nicad", "nicer",
    "niche", "nicht", "nicks", "nicol", "nidal", "nided", "nides", "nidor", "nidus", "niece",
    "niefs", "nieve", "nifes", "niffs", "niffy", "nifty", "niger", "nighs", "night", "nihil",
    "nikab", "nikah", "nikau", "nills", "nimbi", "nimbs", "nimps", "niner", "nines", "ninja",
    "ninny", "ninon", "ninth", "nipas", "nippy", "niqab", "nirls", "nirly", "nisei", "nisse",
    "nisus", "niter", "nites", "nitid", "niton", "nitre", "nitro", "nitry", "nitty", "nival",
    "nixed", "nixer", "nixes", "nixie", "nizam", "nkosi", "noahs", "nobby", "noble", "nobly",
    "nocks", "nodal", "noddy", "nodes", "nodus", "noels", "noggs", "nohow", "noils", "noily",
    "noint", "noirs", "noise", "noisy", "noles", "nolls", "nolos", "nomad", "nomas", "nomen",
    "nomes", "nomic", "nomoi", "nomos", "nonas", "nonce", "nones", "nonet", "nongs", "nonis",
    "nonny", "nonyl", "noobs", "nooit", "nooks", "nooky", "noons", "noops", "noose", "nopal",
    "noria", "noris", "norks", "norma", "norms", "north", "nosed", "noser", "noses", "nosey",
    "notal", "notch", "noted", "noter", "notes", "notum", "nould", "noule", "nouls", "nouns",
    "nouny", "noups", "novae", "novas", "novel", "novum", "noway", "nowed", "nowls", "nowts",
    "nowty", "noxal", "noxes", "noyau", "noyed", "noyes", "nubby", "nubia", "nucha", "nuddy",
    "nuder", "nudes", "nudge", "nudie", "nudzh", "nuffs", "nugae", "nuked", "nukes", "nulla",
    "nulls", "numbs", "numen", "nummy", "nunny", "nurds", "nurdy", "nurls", "nurrs", "nurse",
    "nutso", "nutsy", "nutty", "nyaff", "nyala", "nying", "nylon", "nymph", "nyssa", "oaked",
    "oaken", "oaker", "oakum", "oared", "oases", "oasis", "oasts", "oaten", "oater", "oaths",
    "oaves", "obang", "obeah", "obeli", "obese", "obeys", "obias", "obied", "obiit", "obits",
    "objet", "oboes", "obole", "oboli", "obols", "occam", "occur", "ocean", "ocher", "oches",
    "ochre", "ochry", "ocker", "ocrea", "octad", "octal", "octan", "octas", "octet", "octyl",
    "oculi", "odahs", "odals", "odder", "oddly", "odeon", "odeum", "odism", "odist", "odium",
    "odors", "odour", "odyle", "odyls", "ofays", "offal", "offed", "offer", "offie", "oflag",
    "often", "ofter", "ogams", "ogeed", "ogees", "oggin", "ogham", "ogive", "ogled", "ogler",
    "ogles", "ogmic", "ogres", "ohias", "ohing", "ohmic", "ohone", "oidia", "oiled", "oiler",
    "oinks", "oints", "ojime", "okapi", "okays", "okehs", "okras", "oktas", "olden", "older",
    "oldie", "oleic", "olein", "olent", "oleos", "oleum", "olios", "olive", "ollas", "ollav",
    "oller", "ollie", "ology", "olpae", "olpes", "omasa", "omber", "ombre", "ombus", "omega",
    "omens", "omers", "omits", "omlah", "omovs", "omrah", "oncer", "onces", "oncet", "oncus",
    "onely", "oners", "onery", "onion", "onium", "onkus", "onlay", "onned", "onset", "ontic",
    "oobit", "oohed", "oomph", "oonts", "ooped", "oorie", "ooses", "ootid", "oozed", "oozes",
    "opahs", "opals", "opens", "opepe", "opera", "opine", "oping", "opium", "oppos", "opsin",
    "opted", "opter", "optic", "orach", "oracy", "orals", "orang", "orant", "orate", "orbed",
    "orbit", "orcas", "orcin", "order", "ordos", "oread", "orfes", "organ", "orgia", "orgic",
    "orgue", "oribi", "oriel", "orixa", "orles", "orlon", "orlop", "ormer", "ornis", "orpin",
    "orris", "ortho", "orval", "orzos", "oscar", "oshac", "osier", "osmic", "osmol", "ossia",
    "ostia", "otaku", "otary", "other", "ottar", "otter", "ottos", "oubit", "oucht", "ouens",
    "ought", "ouija", "oulks", "oumas", "ounce", "oundy", "oupas", "ouped", "ouphe", "ouphs",
    "ourie", "ousel", "ousts", "outby", "outdo", "outed", "outer", "outgo", "outre", "outro",
    "outta", "ouzel", "ouzos", "ovals", "ovary", "ovate", "ovels", "ovens", "overs", "overt",
    "ovine", "ovist", "ovoid", "ovoli", "ovolo", "ovule", "owche", "owies", "owing", "owled",
    "owler", "owlet", "owned", "owner", "owres", "owrie", "owsen", "oxbow", "oxers", "oxeye",
    "oxide", "oxids", "oxies", "oxime", "oxims", "oxlip", "oxter", "oyers", "ozeki", "ozone",
    "ozzie", "paals", "paans", "pacas", "paced", "pacer", "paces", "pacey", "pacha", "packs",
    "pacos", "pacta", "pacts", "paddy", "padis", "padle", "padma", "padre", "padri", "paean",
    "paedo", "paeon", "pagan", "paged", "pager", "pages", "pagle", "pagod", "pagri", "paiks",
    "pails", "pains", "paint", "paire", "pairs", "paisa", "paise", "pakka", "palas", "palay",
    "palea", "paled", "paler", "pales", "palet", "palis", "palki", "palla", "palls", "pally",
    "palms", "palmy", "palpi", "palps", "palsa", "palsy", "pampa", "panax", "pance", "panda",
    "pands", "pandy", "paned", "panel", "panes", "panga", "pangs", "panic", "panim", "panko",
    "panne", "panni", "pansy", "panto", "pants", "panty", "paoli", "paolo", "papal", "papas",
    "papaw", "paper", "papes", "pappi", "pappy", "parae", "paras", "parch", "pardi", "pards",
    "pardy", "pared", "paren", "pareo", "parer", "pares", "pareu", "parev", "parge", "pargo",
    "paris", "parka", "parki", "parks", "parky", "parle", "parly", "parma", "parol", "parps",
    "parra", "parrs", "parry", "parse", "parti", "parts", "party", "parve", "parvo", "paseo",
    "pases", "pasha", "pashm", "paska", "paspy", "passe", "pasta", "paste", "pasts", "pasty",
    "patch", "pated", "paten", "pater", "pates", "paths", "patin", "patio", "patka", "patly",
    "patsy", "patte", "patty", "patus", "pauas", "pauls", "pause", "pavan", "paved", "paven",
    "paver", "paves", "pavid", "pavin", "pavis", "pawas", "pawaw", "pawed", "pawer", "pawks",
    "pawky", "pawls", "pawns", "paxes", "payed", "payee", "payer", "payor", "paysd", "peace",
    "peach", "peage", "peags", "peaks", "peaky", "peals", "peans", "peare", "pearl", "pears",
    "peart", "pease", "peats", "peaty", "peavy", "peaze", "pebas", "pecan", "pechs", "pecke",
    "pecks", "pecky", "pedal", "pedes", "pedis", "pedro", "peece", "peeks", "peels", "peens",
    "peeoy", "peepe", "peeps", "peers", "peery", "peeve", "peggy", "peghs", "peins", "peise",
    "peize", "pekan", "pekes", "pekin", "pekoe", "pelas", "pelau", "peles", "pelfs", "pells",
    "pelma", "pelon", "pelta", "pelts", "penal", "pence", "pends", "pendu", "pened", "penes",
    "pengo", "penie", "penis", "penks", "penna", "penne", "penni", "penny", "pents", "peons",
    "peony", "pepla", "pepos", "peppy", "pepsi", "perai", "perce", "perch", "percs", "perdu",
    "perdy", "perea", "peres", "peril", "peris", "perks", "perky", "perms", "perns", "perog",
    "perps", "perry", "perse", "perst", "perts", "perve", "pervo", "pervs", "pervy", "pesky",
    "pesos", "pesto", "pests", "pesty", "petal", "petar", "peter", "petit", "petre", "petri",
    "petti", "petto", "petty", "pewee", "pewit", "peyse", "phage", "phang", "phare", "pharm",
    "phase", "pheer", "phene", "pheon", "phese", "phial", "phish", "phizz", "phlox", "phoca",
    "phone", "phono", "phons", "phony", "photo", "phots", "phpht", "phuts", "phyla", "phyle",
    "piani", "piano", "pians", "pibal", "pical", "picas", "piccy", "picks", "picky", "picot",
    "picra", "picul", "piece", "piend", "piers", "piert", "pieta", "piets", "piety", "piezo",
    "piggy", "pight", "pigmy", "piing", "pikas", "pikau", "piked", "piker", "pikes", "pikey",
    "pikis", "pikul", "pilae", "pilaf", "pilao", "pilar", "pilau", "pilaw", "pilch", "pilea",
    "piled", "pilei", "piler", "piles", "pilis", "pills", "pilot", "pilow", "pilum", "pilus",
    "pimas", "pimps", "pinas", "pinch", "pined", "pines", "piney", "pingo", "pings", "pinko",
    "pinks", "pinky", "pinna", "pinny", "pinon", "pinot", "pinta", "pinto", "pints", "pinup",
    "pions", "piony", "pious", "pioye", "pioys", "pipal", "pipas", "piped", "piper", "pipes",
    "pipet", "pipis", "pipit", "pippy", "pipul", "pique", "pirai", "pirls", "pirns", "pirog",
    "pisco", "pises", "pisky", "pisos", "pissy", "piste", "pitas", "pitch", "piths", "pithy",
    "piton", "pitot", "pitta", "piums", "pivot", "pixel", "pixes", "pixie", "pized", "pizes",
    "pizza", "plaas", "place", "plack", "plage", "plaid", "plain", "plait", "plane", "plank",
    "plans", "plant", "plaps", "plash", "plasm", "plast", "plate", "plats", "platt", "platy",
    "playa", "plays", "plaza", "plead", "pleas", "pleat", "plebe", "plebs", "plena", "pleon",
    "plesh", "plews", "plica", "plied", "plier", "plies", "plims", "pling", "plink", "ploat",
    "plods", "plong", "plonk", "plook", "plops", "plots", "plotz", "plouk", "plows", "ploye",
    "ploys", "pluck", "plues", "pluff", "plugs", "plumb", "plume", "plump", "plums", "plumy",
    "plunk", "pluot", "plush", "pluto", "plyer", "poach", "poaka", "poake", "poboy", "pocks",
    "pocky", "podal", "poddy", "podex", "podge", "podgy", "podia", "poems", "poeps", "poesy",
    "poets", "pogey", "pogge", "pogos", "pohed", "poilu", "poind", "point", "poise", "pokal",
    "poked", "poker", "pokes", "pokey", "pokie", "polar", "poled", "poler", "poles", "poley",
    "polio", "polis", "polje", "polka", "polks", "polls", "polly", "polos", "polts", "polyp",
    "polys", "pombe", "pomes", "pommy", "pomos", "pomps", "ponce", "poncy", "ponds", "pones",
    "poney", "ponga", "pongo", "pongs", "pongy", "ponks", "ponts", "ponty", "ponzu", "pooch",
    "poods", "pooed", "poofs", "poofy", "poohs", "pooja", "pooka", "pooks", "pools", "poons",
    "poops", "poopy", "poori", "poort", "poots", "poove", "poovy", "popes", "poppa", "poppy",
    "popsy", "porae", "poral", "porch", "pored", "porer", "pores", "porge", "porgy", "porin",
    "porks", "porky", "porno", "porns", "porny", "porta", "ports", "porty", "posed", "poser",
    "poses", "posey", "posho", "posit", "posse", "posts", "potae", "potch", "poted", "potes",
    "potin", "potoo", "potsy", "potto", "potts", "potty", "pouch", "pouff", "poufs", "pouke",
    "pouks", "poule", "poulp", "poult", "pound", "poupe", "poupt", "pours", "pouts", "pouty",
    "powan", "power", "powin", "pownd", "powns", "powny", "powre", "poxed", "poxes", "poynt",
    "poyou", "poyse", "pozzy", "praam", "prads", "prahu", "prams", "prana", "prang", "prank",
    "praos", "prase", "prate", "prats", "pratt", "praty", "praus", "prawn", "prays", "predy",
    "preed", "preen", "prees", "preif", "prems", "premy", "prent", "preon", "preop", "preps",
    "presa", "prese", "press", "prest", "preve", "prexy", "preys", "prial", "price", "prick",
    "pricy", "pride", "pried", "prief", "prier", "pries", "prigs", "prill", "prima", "prime",
    "primi", "primo", "primp", "prims", "primy", "prink", "print", "prion", "prior", "prise",
    "prism", "priss", "privy", "prize", "proas", "probe", "probs", "prods", "proem", "profs",
    "progs", "proin", "proke", "prole", "proll", "promo", "proms", "prone", "prong", "pronk",
    "proof", "props", "prore", "prose", "proso", "pross", "prost", "prosy", "proto", "proud",
    "proul", "prove", "prowl", "prows", "proxy", "proyn", "prude", "prune", "prunt", "pruta",
    "pryer", "pryse", "psalm", "pseud", "pshaw", "psion", "psoae", "psoai", "psoas", "psora",
    "psych", "psyop", "pubco", "pubes", "pubic", "pubis", "pucan", "pucer", "puces", "pucka",
    "pucks", "puddy", "pudge", "pudgy", "pudic", "pudor", "pudsy", "pudus", "puers", "puffa",
    "puffs", "puffy", "puggy", "pugil", "puhas", "pujah", "pujas", "pukas", "puked", "puker",
    "pukes", "pukey", "pukka", "pukus", "pulao", "pulas", "puled", "puler", "pules", "pulik",
    "pulis", "pulka", "pulks", "pulli", "pulls", "pully", "pulmo", "pulps", "pulpy", "pulse",
    "pulus", "pumas", "pumie", "pumps", "punas", "punce", "punch", "punga", "pungs", "punji",
    "punka", "punks", "punky", "punny", "punto", "punts", "punty", "pupae", "pupal", "pupas",
    "pupil", "puppy", "pupus", "purda", "pured", "puree", "purer", "pures", "purge", "purin",
    "puris", "purls", "purpy", "purrs", "purse", "pursy", "purty", "puses", "pushy", "pusle",
    "pussy", "putid", "puton", "putti", "putto", "putts", "putty", "puzel", "pwned", "pyats",
    "pyets", "pygal", "pygmy", "pyins", "pylon", "pyned", "pynes", "pyoid", "pyots", "pyral",
    "pyran", "pyres", "pyrex", "pyric", "pyros", "pyxed", "pyxes", "pyxie", "pyxis", "pzazz",
    "qadis", "qaids", "qajaq", "qanat", "qapik", "qibla", "qophs", "qorma", "quack", "quads",
    "quaff", "quags", "quail", "quair", "quais", "quake", "quaky", "quale", "qualm", "quant",
    "quare", "quark", "quart", "quash", "quasi", "quass", "quate", "quats", "quayd", "quays",
    "qubit", "quean", "queen", "queer", "quell", "queme", "quena", "quern", "query", "quest",
    "queue", "queyn", "queys", "quich", "quick", "quids", "quiet", "quiff", "quill", "quilt",
    "quims", "quina", "quine", "quino", "quins", "quint", "quipo", "quips", "quipu", "quire",
    "quirk", "quirt", "quist", "quite", "quits", "quoad", "quods", "quoif", "quoin", "quoit",
    "quoll", "quonk", "quops", "quota", "quote", "quoth", "qursh", "quyte", "rabat", "rabbi",
    "rabic", "rabid", "rabis", "raced", "racer", "races", "rache", "racks", "racon", "radar",
    "radge", "radii", "radio", "radix", "radon", "raffs", "rafts", "ragas", "ragde", "raged",
    "ragee", "rager", "rages", "ragga", "raggs", "raggy", "ragis", "ragus", "rahed", "rahui",
    "raias", "raids", "raiks", "raile", "rails", "raine", "rains", "rainy", "raird", "raise",
    "raita", "raits", "rajah", "rajas", "rajes", "raked", "rakee", "raker", "rakes", "rakia",
    "rakis", "rakus", "rales", "rally", "ralph", "ramal", "ramee", "ramen", "ramet", "ramie",
    "ramin", "ramis", "rammy", "ramps", "ramus", "ranas", "rance", "ranch", "rands", "randy",
    "ranee", "ranga", "range", "rangi", "rangs", "rangy", "ranid", "ranis", "ranke", "ranks",
    "rants", "raped", "raper", "rapes", "raphe", "rapid", "rappe", "rared", "raree", "rarer",
    "rares", "rarks", "rased", "raser", "rases", "rasps", "raspy", "rasse", "rasta", "ratal",
    "ratan", "ratas", "ratch", "rated", "ratel", "rater", "rates", "ratha", "rathe", "raths",
    "ratio", "ratoo", "ratos", "ratty", "ratus", "rauns", "raupo", "raved", "ravel", "raven",
    "raver", "raves", "ravey", "ravin", "rawer", "rawin", "rawly", "rawns", "raxed", "raxes",
    "rayah", "rayas", "rayed", "rayle", "rayne", "rayon", "razed", "razee", "razer", "razes",
    "razoo", "razor", "reach", "react", "readd", "reads", "ready", "reais", "reaks", "realm",
    "realo", "reals", "reame", "reams", "reamy", "reans", "reaps", "rearm", "rears", "reast",
    "reata", "reate", "reave", "rebar", "rebbe", "rebec", "rebel", "rebid", "rebit", "rebop",
    "rebus", "rebut", "rebuy", "recal", "recap", "recce", "recco", "reccy", "recit", "recks",
    "recon", "recta", "recti", "recto", "recur", "recut", "redan", "redds", "reddy", "reded",
    "redes", "redia", "redid", "redip", "redly", "redon", "redos", "redox", "redry", "redub",
    "redux", "redye", "reech", "reede", "reeds", "reedy", "reefs", "reefy", "reeks", "reeky",
    "reels", "reens", "reest", "reeve", "refed", "refel", "refer", "reffo", "refis", "refit",
    "refix", "refly", "refry", "regal", "regar", "reges", "reggo", "regie", "regma", "regna",
    "regos", "regur", "rehab", "rehem", "reifs", "reify", "reign", "reiki", "reiks", "reink",
    "reins", "reird", "reist", "reive", "rejig", "rejon", "reked", "rekes", "rekey", "relax",
    "relay", "relet", "relic", "relie", "relit", "rello", "reman", "remap", "remen", "remet",
    "remex", "remit", "remix", "renal", "renay", "rends", "renew", "reney", "renga", "renig",
    "renin", "renne", "renos", "rente", "rents", "reoil", "reorg", "repay", "repeg", "repel",
    "repin", "repla", "reply", "repos", "repot", "repps", "repro", "reran", "rerig", "rerun",
    "resat", "resaw", "resay", "resee", "reses", "reset", "resew", "resid", "resin", "resit",
    "resod", "resow", "resto", "rests", "resty", "resus", "retag", "retax", "retch", "retem",
    "retia", "retie", "retox", "retro", "retry", "reuse", "revel", "revet", "revie", "revue",
    "rewan", "rewax", "rewed", "rewet", "rewin", "rewon", "rewth", "rexes", "rezes", "rheas",
    "rheme", "rheum", "rhies", "rhime", "rhine", "rhino", "rhody", "rhomb", "rhone", "rhumb",
    "rhyme", "rhyne", "rhyta", "riads", "rials", "riant", "riata", "ribas", "ribby", "ribes",
    "riced", "ricer", "rices", "ricey", "richt", "ricin", "ricks", "rider", "rides", "ridge",
    "ridgy", "ridic", "riels", "riems", "rieve", "rifer", "riffs", "rifle", "rifte", "rifts",
    "rifty", "riggs", "right", "rigid", "rigol", "rigor", "riled", "riles", "riley", "rille",
    "rills", "rimae", "rimed", "rimer", "rimes", "rimus", "rinds", "rindy", "rines", "rings",
    "rinks", "rinse", "rioja", "riots", "riped", "ripen", "riper", "ripes", "ripps", "risen",
    "riser", "rises", "rishi", "risks", "risky", "risps", "risus", "rites", "ritts", "ritzy",
    "rival", "rivas", "rived", "rivel", "riven", "river", "rives", "rivet", "riyal", "rizas",
    "roach", "roads", "roams", "roans", "roars", "roary", "roast", "roate", "robed", "robes",
    "robin", "roble", "robot", "rocks", "rocky", "roded", "rodeo", "rodes", "roger", "rogue",
    "roguy", "rohes", "roids", "roils", "roily", "roins", "roist", "rojak", "rojis", "roked",
    "roker", "rokes", "rolag", "roles", "rolfs", "rolls", "romal", "roman", "romeo", "romps",
    "ronde", "rondo", "roneo", "rones", "ronin", "ronne", "ronte", "ronts", "roods", "roofs",
    "roofy", "rooks", "rooky", "rooms", "roomy", "roons", "roops", "roopy", "roosa", "roose",
    "roost", "roots", "rooty", "roped", "roper", "ropes", "ropey", "roque", "roral", "rores",
    "roric", "rorid", "rorie", "rorts", "rorty", "rosed", "roses", "roset", "roshi", "rosin",
    "rosit", "rosti", "rosts", "rotal", "rotan", "rotas", "rotch", "roted", "rotes", "rotis",
    "rotls", "roton", "rotor", "rotos", "rotte", "rouen", "roues", "rouge", "rough", "roule",
    "rouls", "roums", "round", "roups", "roupy", "rouse", "roust", "route", "routh", "routs",
    "roved", "roven", "rover", "roves", "rowan", "rowdy", "rowed", "rowel", "rowen", "rower",
    "rowie", "rowme", "rownd", "rowth", "rowts", "royal", "royne", "royst", "rozet", "rozit",
    "ruana", "rubai", "rubby", "rubel", "rubes", "rubin", "ruble", "rubli", "rubus", "ruche",
    "rucks", "rudas", "rudds", "ruddy", "ruder", "rudes", "rudie", "rudis", "rueda", "ruers",
    "ruffe", "ruffs", "rugae", "rugal", "rugby", "ruggy", "ruing", "ruins", "rukhs", "ruled",
    "ruler", "rules", "rumal", "rumba", "rumbo", "rumen", "rumes", "rumly", "rummy", "rumor",
    "rumpo", "rumps", "rumpy", "runch", "runds", "runed", "runes", "rungs", "runic", "runny",
    "runts", "runty", "rupee", "rupia", "rural", "rurps", "rurus", "rusas", "ruses", "rushy",
    "rusks", "rusma", "russe", "rusts", "rusty", "ruths", "rutin", "rutty", "ryals", "rybat",
    "ryked", "rykes", "rymme", "rynds", "ryots", "ryper", "saags", "sabal", "sabed", "saber",
    "sabes", "sabha", "sabin", "sabir", "sable", "sabot", "sabra", "sabre", "sacks", "sacra",
    "saddo", "sades", "sadhe", "sadhu", "sadis", "sadly", "sados", "sadza", "safed", "safer",
    "safes", "sagas", "sager", "sages", "saggy", "sagos", "sagum", "saheb", "sahib", "saice",
    "saick", "saics", "saids", "saiga", "sails", "saims", "saine", "sains", "saint", "sairs",
    "saist", "saith", "sajou", "sakai", "saker", "sakes", "sakia", "sakis", "sakti", "salad",
    "salal", "salat", "salep", "sales", "salet", "salic", "salix", "salle", "sally", "salmi",
    "salol", "salon", "salop", "salpa", "salps", "salsa", "salse", "salto", "salts", "salty",
    "salue", "salut", "salve", "salvo", "saman", "samas", "samba", "sambo", "samek", "samel",
    "samen", "sames", "samey", "samfu", "sammy", "sampi", "samps", "sands", "sandy", "saned",
    "saner", "sanes", "sanga", "sangh", "sango", "sangs", "sanko", "sansa", "santo", "sants",
    "saola", "sapan", "sapid", "sapor", "sappy", "saran", "sards", "sared", "saree", "sarge",
    "sargo", "sarin", "saris", "sarks", "sarky", "sarod", "saros", "sarus", "saser", "sasin",
    "sasse", "sassy", "satai", "satay", "sated", "satem", "sates", "satin", "satis", "satyr",
    "sauba", "sauce", "sauch", "saucy", "saugh", "sauls", "sault", "sauna", "saunt", "saury",
    "saute", "sauts", "saved", "saver", "saves", "savey", "savin", "savor", "savoy", "savvy",
    "sawah", "sawed", "sawer", "saxes", "sayed", "sayer", "sayid", "sayne", "sayon", "sayst",
    "sazes", "scabs", "scads", "scaff", "scags", "scail", "scala", "scald", "scale", "scall",
    "scalp", "scaly", "scamp", "scams", "scand", "scans", "scant", "scapa", "scape", "scapi",
    "scare", "scarf", "scarp", "scars", "scart", "scary", "scath", "scats", "scatt", "scaud",
    "scaup", "scaur", "scaws", "sceat", "scena", "scend", "scene", "scent", "schav", "schmo",
    "schul", "schwa", "scion", "sclim", "scody", "scoff", "scogs", "scold", "scone", "scoog",
    "scoop", "scoot", "scopa", "scope", "scops", "score", "scorn", "scots", "scoug", "scoup",
    "scour", "scout", "scowl", "scowp", "scows", "scrab", "scrae", "scrag", "scram", "scran",
    "scrap", "scrat", "scraw", "scray", "scree", "screw", "scrim", "scrip", "scrob", "scrod",
    "scrog", "scrow", "scrub", "scrum", "scuba", "scudi", "scudo", "scuds", "scuff", "scuft",
    "scugs", "sculk", "scull", "sculp", "sculs", "scums", "scups", "scurf", "scurs", "scuse",
    "scuta", "scute", "scuts", "scuzz", "scyes", "sdayn", "sdein", "seals", "seame", "seams",
    "seamy", "seans", "seare", "sears", "sease", "seats", "seaze", "sebum", "secco", "sechs",
    "sects", "sedan", "seder", "sedes", "sedge", "sedgy", "sedum", "seeds", "seedy", "seeks",
    "seeld", "seels", "seely", "seems", "seeps", "seepy", "seers", "sefer", "segar", "segni",
    "segno", "segol", "segos", "segue", "sehri", "seifs", "seils", "seine", "seirs", "seise",
    "seism", "seity", "seiza", "seize", "sekos", "sekts", "selah", "seles", "selfs", "sella",
    "selle", "sells", "selva", "semee", "semen", "semes", "semie", "semis", "senas", "sends",
    "senes", "sengi", "senna", "senor", "sensa", "sense", "sensi", "sente", "senti", "sents",
    "senvy", "senza", "sepad", "sepal", "sepia", "sepic", "sepoy", "septa", "septs", "serac",
    "serai", "seral", "sered", "serer", "seres", "serfs", "serge", "seric", "serif", "serin",
    "serks", "seron", "serow", "serra", "serre", "serrs", "serry", "serum", "serve", "servo",
    "sesey", "sessa", "setae", "setal", "seton", "setts", "setup", "seven", "sever", "sewan",
    "sewar", "sewed", "sewel", "sewen", "sewer", "sewin", "sexed", "sexer", "sexes", "sexto",
    "sexts", "seyen", "shack", "shade", "shads", "shady", "shaft", "shags", "shahs", "shake",
    "shako", "shakt", "shaky", "shale", "shall", "shalm", "shalt", "shaly", "shama", "shame",
    "shams", "shand", "shank", "shans", "shape", "shaps", "shard", "share", "shark", "sharn",
    "sharp", "shash", "shaul", "shave", "shawl", "shawm", "shawn", "shaws", "shaya", "shays",
    "shchi", "sheaf", "sheal", "shear", "sheas", "sheds", "sheel", "sheen", "sheep", "sheer",
    "sheet", "sheik", "shelf", "shell", "shend", "shent", "sheol", "sherd", "shere", "shero",
    "shets", "sheva", "shewn", "shews", "shiai", "shied", "shiel", "shier", "shies", "shift",
    "shill", "shily", "shims", "shine", "shins", "shiny", "ships", "shire", "shirk", "shirr",
    "shirs", "shirt", "shish", "shiso", "shist", "shite", "shits", "shiur", "shiva", "shive",
    "shivs", "shlep", "shlub", "shmek", "shmoe", "shoal", "shoat", "shock", "shoed", "shoer",
    "shoes", "shogi", "shogs", "shoji", "shojo", "shola", "shone", "shook", "shool", "shoon",
    "shoos", "shoot", "shope", "shops", "shore", "shorl", "shorn", "short", "shote", "shots",
    "shott", "shout", "shove", "showd", "shown", "shows", "showy", "shoyu", "shred", "shrew",
    "shris", "shrow", "shrub", "shrug", "shtik", "shtum", "shtup", "shuck", "shule", "shuln",
    "shuls", "shuns", "shunt", "shura", "shush", "shute", "shuts", "shwas", "shyer", "shyly",
    "sials", "sibbs", "sibyl", "sices", "sicht", "sicko", "sicks", "sicky", "sidas", "sided",
    "sider", "sides", "sidha", "sidhe", "sidle", "siege", "sield", "siens", "sient", "sieth",
    "sieur", "sieve", "sifts", "sighs", "sight", "sigil", "sigla", "sigma", "signa", "signs",
    "sijos", "sikas", "siker", "sikes", "silds", "siled", "silen", "siler", "siles", "silex",
    "silks", "silky", "sills", "silly", "silos", "silts", "silty", "silva", "simar", "simas",
    "simba", "simis", "simps", "simul", "since", "sinds", "sined", "sines", "sinew", "singe",
    "sings", "sinhs", "sinks", "sinky", "sinus", "siped", "sipes", "sippy", "sired", "siree",
    "siren", "sires", "sirih", "siris", "siroc", "sirra", "sirup", "sisal", "sises", "sissy",
    "sista", "sists", "sitar", "sited", "sites", "sithe", "sitka", "situp", "situs", "siver",
    "sixer", "sixes", "sixmo", "sixte", "sixth", "sixty", "sizar", "sized", "sizel", "sizer",
    "sizes", "skags", "skail", "skald", "skank", "skart", "skate", "skats", "skatt", "skaws",
    "skean", "skear", "skeds", "skeed", "skeef", "skeen", "skeer", "skees", "skeet", "skegg",
    "skegs", "skein", "skelf", "skell", "skelm", "skelp", "skene", "skens", "skeos", "skeps",
    "skers", "skets", "skews", "skids", "skied", "skier", "skies", "skiey", "skiff", "skill",
    "skimo", "skimp", "skims", "skink", "skins", "skint", "skios", "skips", "skirl", "skirr",
    "skirt", "skite", "skits", "skive", "skivy", "sklim", "skoal", "skody", "skoff", "skogs",
    "skols", "skool", "skort", "skosh", "skran", "skrik", "skuas", "skugs", "skulk", "skull",
    "skunk", "skyed", "skyer", "skyey", "skyfs", "skyre", "skyrs", "skyte", "slabs", "slack",
    "slade", "slaes", "slags", "slaid", "slain", "slake", "slams", "slane", "slang", "slank",
    "slant", "slaps", "slart", "slash", "slate", "slats", "slaty", "slave", "slaws", "slays",
    "slebs", "sleds", "sleek", "sleep", "sleer", "sleet", "slept", "slews", "sleys", "slice",
    "slick", "slide", "slier", "slily", "slime", "slims", "slimy", "sling", "slink", "slipe",
    "slips", "slipt", "slish", "slits", "slive", "sloan", "slobs", "sloes", "slogs", "sloid",
    "slojd", "slomo", "sloom", "sloop", "sloot", "slope", "slops", "slopy", "slorm", "slosh",
    "sloth", "slots", "slove", "slows", "sloyd", "slubb", "slubs", "slued", "slues", "sluff",
    "slugs", "sluit", "slump", "slums", "slung", "slunk", "slurb", "slurp", "slurs", "sluse",
    "slush", "sluts", "slyer", "slyly", "slype", "smaak", "smack", "smaik", "small", "smalm",
    "smalt", "smarm", "smart", "smash", "smaze", "smear", "smeek", "smees", "smeik", "smeke",
    "smell", "smelt", "smerk", "smews", "smile", "smirk", "smirr", "smirs", "smite", "smith",
    "smits", "smock", "smogs", "smoke", "smoko", "smoky", "smolt", "smoor", "smoot", "smore",
    "smorg", "smote", "smout", "smowt", "smugs", "smurs", "smush", "smuts", "snabs", "snack",
    "snafu", "snags", "snail", "snake", "snaky", "snaps", "snare", "snarf", "snark", "snarl",
    "snars", "snary", "snash", "snath", "snaws", "snead", "sneak", "sneap", "snebs", "sneck",
    "sneds", "sneed", "sneer", "snees", "snell", "snibs", "snick", "snide", "snies", "sniff",
    "snift", "snigs", "snipe", "snips", "snipy", "snirt", "snits", "snobs", "snods", "snoek",
    "snoep", "snogs", "snoke", "snood", "snook", "snool", "snoop", "snoot", "snore", "snort",
    "snots", "snout", "snowk", "snows", "snowy", "snubs", "snuck", "snuff", "snugs", "snush",
    "snyes", "soaks", "soaps", "soapy", "soare", "soars", "soave", "sobas", "sober", "socas",
    "soces", "socko", "socks", "socle", "sodas", "soddy", "sodic", "sodom", "sofar", "sofas",
    "softa", "softs", "softy", "soger", "soggy", "sohur", "soils", "soily", "sojas", "sojus",
    "sokah", "soken", "sokes", "sokol", "solah", "solan", "solar", "solas", "solde", "soldi",
    "soldo", "solds", "soled", "solei", "soler", "soles", "solid", "solon", "solos", "solum",
    "solus", "solve", "soman", "somas", "sonar", "sonce", "sonde", "sones", "songs", "sonic",
    "sonly", "sonne", "sonny", "sonse", "sonsy", "sooey", "sooks", "sooky", "soole", "sools",
    "sooms", "soops", "soote", "sooth", "soots", "sooty", "sophs", "sophy", "sopor", "soppy",
    "sopra", "soral", "soras", "sorbo", "sorbs", "sorda", "sordo", "sords", "sored", "soree",
    "sorel", "sorer", "sores", "sorex", "sorgo", "sorns", "sorra", "sorry", "sorta", "sorts",
    "sorus", "soths", "sotol", "souce", "souct", "sough", "souks", "souls", "soums", "sound",
    "soups", "soupy", "sours", "souse", "south", "souts", "sowar", "sowce", "sowed", "sower",
    "sowff", "sowfs", "sowle", "sowls", "sowms", "sownd", "sowne", "sowps", "sowse", "sowth",
    "soyas", "soyle", "soyuz", "sozin", "space", "spacy", "spade", "spado", "spaed", "spaer",
    "spaes", "spags", "spahi", "spail", "spain", "spait", "spake", "spald", "spale", "spall",
    "spalt", "spams", "spane", "spang", "spank", "spans", "spard", "spare", "spark", "spars",
    "spart", "spasm", "spate", "spats", "spaul", "spawl", "spawn", "spaws", "spayd", "spays",
    "spaza", "spazz", "speak", "speal", "spean", "spear", "speat", "speck", "specs", "spect",
    "speed", "speel", "speer", "speil", "speir", "speks", "speld", "spelk", "spell", "spelt",
    "spend", "spent", "speos", "sperm", "spets", "speug", "spews", "spewy", "spial", "spica",
    "spice", "spick", "spics", "spicy", "spide", "spied", "spiel", "spier", "spies", "spiff",
    "spifs", "spike", "spiks", "spiky", "spile", "spill", "spilt", "spims", "spina", "spine",
    "spink", "spins", "spiny", "spire", "spirt", "spiry", "spite", "spits", "spitz", "spivs",
    "splat", "splay", "split", "splog", "spode", "spods", "spoil", "spoke", "spoof", "spook",
    "spool", "spoom", "spoon", "spoor", "spoot", "spore", "spork", "sport", "sposh", "spots",
    "spout", "sprad", "sprag", "sprat", "spray", "spred", "spree", "sprew", "sprig", "sprit",
    "sprod", "sprog", "sprue", "sprug", "spuds", "spued", "spuer", "spues", "spugs", "spule",
    "spume", "spumy", "spunk", "spurn", "spurs", "spurt", "sputa", "spyal", "spyre", "squab",
    "squad", "squat", "squaw", "squeg", "squib", "squid", "squit", "squiz", "stabs", "stack",
    "stade", "staff", "stage", "stags", "stagy", "staid", "staig", "stain", "stair", "stake",
    "stale", "stalk", "stall", "stamp", "stand", "stane", "stang", "stank", "staph", "staps",
    "stare", "stark", "starn", "starr", "stars", "start", "stash", "state", "stats", "staun",
    "stave", "staws", "stays", "stead", "steak", "steal", "steam", "stean", "stear", "stedd",
    "stede", "steds", "steed", "steek", "steel", "steem", "steen", "steep", "steer", "steil",
    "stein", "stela", "stele", "stell", "steme", "stems", "stend", "steno", "stens", "stent",
    "steps", "stept", "stere", "stern", "stets", "stews", "stewy", "steys", "stich", "stick",
    "stied", "sties", "stiff", "stilb", "stile", "still", "stilt", "stime", "stims", "stimy",
    "sting", "stink", "stint", "stipa", "stipe", "stire", "stirk", "stirp", "stirs", "stive",
    "stivy", "stoae", "stoai", "stoas", "stoat", "stobs", "stock", "stoep", "stogy", "stoic",
    "stoit", "stoke", "stole", "stoln", "stoma", "stomp", "stond", "stone", "stong", "stonk",
    "stonn", "stony", "stood", "stook", "stool", "stoop", "stoor", "stope", "stops", "stopt",
    "store", "stork", "storm", "story", "stoss", "stots", "stott", "stoun", "stoup", "stour",
    "stout", "stove", "stown", "stowp", "stows", "strad", "strae", "strag", "strak", "strap",
    "straw", "stray", "strep", "strew", "stria", "strig", "strim", "strip", "strop", "strow",
    "stroy", "strum", "strut", "stubs", "stuck", "stude", "studs", "study", "stuff", "stull",
    "stulm", "stumm", "stump", "stums", "stung", "stunk", "stuns", "stunt", "stupa", "stupe",
    "sture", "sturt", "styed", "styes", "style", "styli", "stylo", "styme", "stymy", "styre",
    "styte", "suave", "subah", "subas", "subby", "suber", "subha", "succi", "sucks", "sucky",
    "sucre", "sudds", "sudor", "sudsy", "suede", "suent", "suers", "suete", "suets", "suety",
    "sugan", "sugar", "sughs", "sugos", "suhur", "suids", "suing", "suint", "suite", "suits",
    "sujee", "sukhs", "sukuk", "sulci", "sulfa", "sulfo", "sulks", "sulky", "sully", "sulph",
    "sulus", "sumac", "sumis", "summa", "sumos", "sumph", "sumps", "sunis", "sunks", "sunna",
    "sunns", "sunny", "sunup", "super", "supes", "supra", "surah", "sural", "suras", "surat",
    "surds", "sured", "surer", "sures", "surfs", "surfy", "surge", "surgy", "surly", "surra",
    "sused", "suses", "sushi", "susus", "sutor", "sutra", "sutta", "swabs", "swack", "swads",
    "swage", "swags", "swail", "swain", "swale", "swaly", "swami", "swamp", "swamy", "swang",
    "swank", "swans", "swaps", "swapt", "sward", "sware", "swarf", "swarm", "swart", "swash",
    "swath", "swats", "swayl", "sways", "sweal", "swear", "sweat", "swede", "sweed", "sweel",
    "sweep", "sweer", "swees", "sweet", "sweir", "swell", "swelt", "swept", "swerf", "sweys",
    "swies", "swift", "swigs", "swile", "swill", "swims", "swine", "swing", "swink", "swipe",
    "swire", "swirl", "swish", "swiss", "swith", "swits", "swive", "swizz", "swobs", "swole",
    "swoln", "swoon", "swoop", "swops", "swopt", "sword", "swore", "sworn", "swots", "swoun",
    "swung", "sybbe", "sybil", "syboe", "sybow", "sycee", "syces", "sycon", "syens", "syker",
    "sykes", "sylis", "sylph", "sylva", "symar", "synch", "syncs", "synds", "syned", "synes",
    "synod", "synth", "syped", "sypes", "syphs", "syrah", "syren", "syrup", "sysop", "sythe",
    "syver", "taals", "taata", "tabby", "taber", "tabes", "tabid", "tabis", "tabla", "table",
    "taboo", "tabor", "tabun", "tabus", "tacan", "taces", "tacet", "tache", "tacho", "tachs",
    "tacit", "tacks", "tacky", "tacos", "tacts", "taels", "taffy", "tafia", "taggy", "tagma",
    "tahas", "tahrs", "taiga", "taigs", "taiko", "tails", "tains", "taint", "taira", "taish",
    "taits", "tajes", "takas", "taken", "taker", "takes", "takhi", "takin", "takis", "takky",
    "talak", "talaq", "talar", "talas", "talcs", "talcy", "talea", "taler", "tales", "talks",
    "talky", "talls", "tally", "talma", "talon", "talpa", "taluk", "talus", "tamal", "tamed",
    "tamer", "tames", "tamin", "tamis", "tammy", "tamps", "tanas", "tanga", "tangi", "tango",
    "tangs", "tangy", "tanhs", "tanka", "tanks", "tanky", "tanna", "tansy", "tanti", "tanto",
    "tanty", "tapas", "taped", "tapen", "taper", "tapes", "tapet", "tapir", "tapis", "tappa",
    "tapus", "taras", "tardo", "tardy", "tared", "tares", "targa", "targe", "tarns", "taroc",
    "tarok", "taros", "tarot", "tarps", "tarre", "tarry", "tarsi", "tarts", "tarty", "tasar",
    "tased", "taser", "tases", "tasks", "tassa", "tasse", "tasso", "taste", "tasty", "tatar",
    "tater", "tates", "taths", "tatie", "tatou", "tatts", "tatty", "tatus", "taube", "tauld",
    "taunt", "tauon", "taupe", "tauts", "tavah", "tavas", "taver", "tawai", "tawas", "tawed",
    "tawer", "tawie", "tawny", "tawse", "tawts", "taxed", "taxer", "taxes", "taxis", "taxol",
    "taxon", "taxor", "taxus", "tayra", "tazza", "tazze", "teach", "teade", "teads", "teaed",
    "teaks", "teals", "teams", "tears", "teary", "tease", "teats", "teaze", "techs", "techy",
    "tecta", "teddy", "teels", "teems", "teend", "teene", "teens", "teeny", "teers", "teeth",
    "teffs", "teggs", "tegua", "tegus", "tehrs", "teiid", "teils", "teind", "teins", "telae",
    "telco", "teles", "telex", "telia", "telic", "tells", "telly", "teloi", "telos", "temed",
    "temes", "tempi", "tempo", "temps", "tempt", "temse", "tench", "tends", "tendu", "tenes",
    "tenet", "tenge", "tenia", "tenne", "tenno", "tenny", "tenon", "tenor", "tense", "tenth",
    "tents", "tenty", "tenue", "tepal", "tepas", "tepee", "tepid", "tepoy", "terai", "teras",
    "terce", "terek", "teres", "terfe", "terfs", "terga", "terms", "terne", "terns", "terra",
    "terry", "terse", "terts", "tesla", "testa", "teste", "tests", "testy", "tetes", "teths",
    "tetra", "tetri", "teuch", "teugh", "tewed", "tewel", "tewit", "texas", "texes", "texts",
    "thack", "thagi", "thaim", "thale", "thali", "thana", "thane", "thang", "thank", "thans",
    "thanx", "tharm", "thars", "thaws", "thawy", "thebe", "theca", "theed", "theek", "thees",
    "theft", "thegn", "theic", "thein", "their", "thelf", "thema", "theme", "thens", "theow",
    "there", "therm", "these", "thesp", "theta", "thete", "thews", "thewy", "thick", "thief",
    "thigh", "thigs", "thilk", "thill", "thine", "thing", "think", "thins", "thiol", "third",
    "thirl", "thoft", "thole", "tholi", "thong", "thorn", "thoro", "thorp", "those", "thous",
    "thowl", "thrae", "thraw", "three", "threw", "thrid", "thrip", "throb", "throe", "throw",
    "thrum", "thuds", "thugs", "thuja", "thumb", "thump", "thunk", "thurl", "thuya", "thyme",
    "thymi", "thymy", "tians", "tiara", "tiars", "tibia", "tical", "ticca", "ticed", "tices",
    "tichy", "ticks", "ticky", "tidal", "tiddy", "tided", "tides", "tiers", "tiffs", "tifos",
    "tifts", "tiger", "tiges", "tight", "tigon", "tikas", "tikes", "tikis", "tikka", "tilak",
    "tilde", "tiled", "tiler", "tiles", "tills", "tilly", "tilth", "tilts", "timbo", "timed",
    "timer", "times", "timid", "timon", "timps", "tinas", "tinct", "tinds", "tinea", "tined",
    "tines", "tinge", "tings", "tinks", "tinny", "tints", "tinty", "tipis", "tippy", "tipsy",
    "tired", "tires", "tirls", "tiros", "tirrs", "titan", "titch", "titer", "tithe", "titis",
    "title", "titre", "titty", "titup", "tiyin", "tiyns", "tizes", "tizzy", "toads", "toady",
    "toast", "toaze", "tocks", "tocky", "tocos", "today", "todde", "toddy", "toeas", "toffs",
    "toffy", "tofts", "tofus", "togae", "togas", "toged", "toges", "togue", "tohos", "toile",
    "toils", "toing", "toise", "toits", "tokay", "toked", "token", "toker", "tokes", "tokos",
    "tolan", "tolar", "tolas", "toled", "toles", "tolls", "tolly", "tolts", "tolus", "tolyl",
    "toman", "tombs", "tomes", "tomia", "tommy", "tomos", "tonal", "tondi", "tondo", "toned",
    "toner", "tones", "toney", "tonga", "tongs", "tonic", "tonka", "tonks", "tonne", "tonus",
    "tools", "tooms", "toons", "tooth", "toots", "topaz", "toped", "topee", "topek", "toper",
    "topes", "tophe", "tophi", "tophs", "topic", "topis", "topoi", "topos", "toppy", "toque",
    "torah", "toran", "toras", "torch", "torcs", "tores", "toric", "torii", "toros", "torot",
    "torrs", "torse", "torsi", "torsk", "torso", "torta", "torte", "torts", "torus", "tosas",
    "tosed", "toses", "toshy", "tossy", "total", "toted", "totem", "toter", "totes", "totty",
    "touch", "tough", "touks", "touns", "tours", "touse", "tousy", "touts", "touze", "touzy",
    "towed", "towel", "tower", "towie", "towns", "towny", "towse", "towsy", "towts", "towze",
    "towzy", "toxic", "toxin", "toyed", "toyer", "toyon", "toyos", "tozed", "tozes", "tozie",
    "trabs", "trace", "track", "tract", "trade", "trads", "tragi", "traik", "trail", "train",
    "trait", "tramp", "trams", "trank", "tranq", "trans", "trant", "trape", "traps", "trapt",
    "trash", "trass", "trats", "tratt", "trave", "trawl", "trayf", "trays", "tread", "treat",
    "treck", "treed", "treen", "trees", "trefa", "treif", "treks", "trema", "trems", "trend",
    "tress", "trest", "trets", "trews", "treyf", "treys", "triac", "triad", "trial", "tribe",
    "trice", "trick", "tride", "tried", "trier", "tries", "triff", "trigo", "trigs", "trike",
    "trild", "trill", "trims", "trine", "trins", "triol", "trior", "trios", "tripe", "trips",
    "tripy", "trist", "trite", "troad", "troak", "troat", "trock", "trode", "trods", "trogs",
    "trois", "troke", "troll", "tromp", "trona", "tronc", "trone", "tronk", "trons", "troop",
    "trooz", "trope", "troth", "trots", "trout", "trove", "trows", "troys", "truce", "truck",
    "trued", "truer", "trues", "trugo", "trugs", "trull", "truly", "trump", "trunk", "truss",
    "trust", "truth", "tryer", "tryke", "tryma", "tryps", "tryst", "tsade", "tsadi", "tsars",
    "tsked", "tsuba", "tsubo", "tuans", "tuart", "tuath", "tubae", "tubal", "tubar", "tubas",
    "tubby", "tubed", "tuber", "tubes", "tucks", "tufas", "tuffe", "tuffs", "tufts", "tufty",
    "tugra", "tuile", "tuina", "tuism", "tuktu", "tules", "tulip", "tulle", "tulpa", "tulsi",
    "tumid", "tummy", "tumor", "tumps", "tumpy", "tunas", "tunds", "tuned", "tuner", "tunes",
    "tungs", "tunic", "tunny", "tupek", "tupik", "tuple", "tuque", "turbo", "turds", "turfs",
    "turfy", "turks", "turme", "turms", "turns", "turnt", "turps", "turrs", "tushy", "tusks",
    "tusky", "tutee", "tutor", "tutti", "tutty", "tutus", "tuxes", "tuyer", "twaes", "twain",
    "twals", "twang", "twank", "twats", "tways", "tweak", "tweed", "tweel", "tween", "tweep",
    "tweer", "tweet", "twerk", "twerp", "twice", "twier", "twigs", "twill", "twilt", "twine",
    "twink", "twins", "twiny", "twire", "twirl", "twirp", "twist", "twite", "twits", "twixt",
    "twoer", "twyer", "tyees", "tyers", "tying", "tyiyn", "tykes", "tyler", "tymps", "tynde",
    "tyned", "tynes", "typal", "typed", "types", "typey", "typic", "typos", "typps", "typto",
    "tyran", "tyred", "tyres", "tyros", "tythe", "tzars", "udals", "udder", "udons", "ugali",
    "ugged", "uhlan", "uhuru", "ukase", "ulama", "ulans", "ulcer", "ulema", "ulmin", "ulnad",
    "ulnae", "ulnar", "ulnas", "ulpan", "ultra", "ulvas", "ulyie", "ulzie", "umami", "umbel",
    "umber", "umble", "umbos", "umbra", "umbre", "umiac", "umiak", "umiaq", "ummah", "ummas",
    "ummed", "umped", "umphs", "umpie", "umpty", "umrah", "umras", "unais", "unapt", "unarm",
    "unary", "unaus", "unbag", "unban", "unbar", "unbed", "unbid", "unbox", "uncap", "unces",
    "uncia", "uncle", "uncos", "uncoy", "uncus", "uncut", "undam", "undee", "under", "undid",
    "undos", "undue", "undug", "uneth", "unfed", "unfit", "unfix", "ungag", "unget", "ungod",
    "ungot", "ungum", "unhat", "unhip", "unica", "unify", "union", "unite", "units", "unity",
    "unjam", "unked", "unket", "unkid", "unlaw", "unlay", "unled", "unlet", "unlid", "unlit",
    "unman", "unmet", "unmew", "unmix", "unpay", "unpeg", "unpen", "unpin", "unred", "unrid",
    "unrig", "unrip", "unsaw", "unsay", "unsee", "unset", "unsew", "unsex", "unsod", "untax",
    "untie", "until", "untin", "unwed", "unwet", "unwit", "unwon", "unzip", "upbow", "upbye",
    "updos", "updry", "upend", "upjet", "uplay", "upled", "uplit", "upped", "upper", "upran",
    "uprun", "upsee", "upset", "upsey", "uptak", "upter", "uptie", "uraei", "urali", "uraos",
    "urare", "urari", "urase", "urate", "urban", "urbex", "urbia", "urdee", "ureal", "ureas",
    "uredo", "ureic", "urena", "urent", "urged", "urger", "urges", "urial", "urine", "urite",
    "urman", "urnal", "urned", "urped", "ursae", "ursid", "urson", "urubu", "urvas", "usage",
    "users", "usher", "using", "usnea", "usque", "usual", "usure", "usurp", "usury", "uteri",
    "utile", "utter", "uveal", "uveas", "uvula", "vacua", "vaded", "vades", "vagal", "vague",
    "vagus", "vails", "vaire", "vairs", "vairy", "vakas", "vakil", "vales", "valet", "valid",
    "valis", "valor", "valse", "value", "valve", "vamps", "vampy", "vanda", "vaned", "vanes",
    "vangs", "vants", "vaped", "vaper", "vapes", "vapid", "vapor", "varan", "varas", "vardy",
    "varec", "vares", "varia", "varix", "varna", "varus", "varve", "vasal", "vases", "vasts",
    "vasty", "vatic", "vatus", "vauch", "vault", "vaunt", "vaute", "vauts", "vawte", "vaxes",
    "veale", "veals", "vealy", "veena", "veeps", "veers", "veery", "vegan", "vegas", "veges",
    "vegie", "vegos", "vehme", "veils", "veily", "veins", "veiny", "velar", "velds", "veldt",
    "veles", "vells", "velum", "venae", "venal", "vends", "vendu", "veney", "venge", "venin",
    "venom", "vents", "venue", "venus", "verbs", "verge", "verra", "verry", "verse", "verso",
    "verst", "verts", "vertu", "verve", "vespa", "vesta", "vests", "vetch", "vexed", "vexer",
    "vexes", "vexil", "vezir", "vials", "viand", "vibes", "vibex", "vibey", "vicar", "viced",
    "vices", "vichy", "video", "viers", "views", "viewy", "vifda", "viffs", "vigas", "vigia",
    "vigil", "vigor", "vilde", "viler", "villa", "villi", "vills", "vimen", "vinal", "vinas",
    "vinca", "vined", "viner", "vines", "vinew", "vinic", "vinos", "vints", "vinyl", "viola",
    "viold", "viols", "viper", "viral", "vired", "vireo", "vires", "virga", "virge", "virid",
    "virls", "virtu", "virus", "visas", "vised", "vises", "visie", "visit", "visne", "vison",
    "visor", "vista", "visto", "vitae", "vital", "vitas", "vitex", "vitro", "vitta", "vivas",
    "vivat", "vivda", "viver", "vives", "vivid", "vixen", "vizir", "vizor", "vleis", "vlies",
    "vlogs", "voars", "vocab", "vocal", "voces", "voddy", "vodka", "vodou", "vodun", "voema",
    "vogie", "vogue", "voice", "voids", "voila", "voile", "voips", "volae", "volar", "voled",
    "voles", "volet", "volks", "volta", "volte", "volti", "volts", "volva", "volve", "vomer",
    "vomit", "voted", "voter", "votes", "vouch", "vouge", "voulu", "vowed", "vowel", "vower",
    "voxel", "vozhd", "vraic", "vrils", "vroom", "vrous", "vrouw", "vrows", "vuggs", "vuggy",
    "vughs", "vughy", "vulgo", "vulns", "vulva", "vutty", "vying", "waacs", "wacke", "wacko",
    "wacks", "wacky", "wadds", "waddy", "waded", "wader", "wades", "wadge", "wadis", "wadts",
    "wafer", "waffs", "wafts", "waged", "wager", "wages", "wagga", "wagon", "wagyu", "wahoo",
    "waide", "waifs", "waift", "wails", "wains", "wairs", "waist", "waite", "waits", "waive",
    "wakas", "waked", "waken", "waker", "wakes", "wakfs", "waldo", "walds", "waled", "waler",
    "wales", "walie", "walis", "walks", "walla", "walls", "wally", "walty", "waltz", "wamed",
    "wames", "wamus", "wands", "waned", "wanes", "waney", "wangs", "wanks", "wanky", "wanle",
    "wanly", "wanna", "wants", "wanty", "wanze", "waqfs", "warbs", "warby", "wards", "wared",
    "wares", "warez", "warks", "warms", "warns", "warps", "warre", "warst", "warts", "warty",
    "wases", "washy", "wasms", "wasps", "waspy", "waste", "wasts", "watap", "watch", "water",
    "watts", "wauff", "waugh", "wauks", "waulk", "wauls", "waurs", "waved", "waver", "waves",
    "wavey", "wawas", "wawes", "wawls", "waxed", "waxen", "waxer", "waxes", "wayed", "wazir",
    "wazoo", "weald", "weals", "weamb", "weans", "wears", "weary", "weave", "webby", "weber",
    "wecht", "wedel", "wedge", "wedgy", "weeds", "weedy", "weeke", "weeks", "weels", "weems",
    "weens", "weeny", "weeps", "weepy", "weest", "weete", "weets", "wefte", "wefts", "weids",
    "weigh", "weils", "weird", "weirs", "weise", "weize", "wekas", "welch", "welds", "welke",
    "welks", "welkt", "wells", "welly", "welsh", "welts", "wembs", "wench", "wends", "wenge",
    "wenny", "wents", "weros", "wersh", "wests", "wetas", "wetly", "wexed", "wexes", "whack",
    "whale", "whamo", "whams", "whang", "whaps", "whare", "wharf", "whata", "whats", "whaup",
    "whaur", "wheal", "whear", "wheat", "wheel", "wheen", "wheep", "wheft", "whelk", "whelm",
    "whelp", "whens", "where", "whets", "whews", "wheys", "which", "whids", "whiff", "whift",
    "whigs", "while", "whilk", "whims", "whine", "whins", "whiny", "whios", "whips", "whipt",
    "whirl", "whirr", "whirs", "whish", "whisk", "whiss", "whist", "white", "whits", "whity",
    "whizz", "whole", "whomp", "whoof", "whoop", "whoot", "whops", "whore", "whorl", "whort",
    "whose", "whoso", "whows", "whump", "whups", "whyda", "wicca", "wicks", "wicky", "widdy",
    "widen", "wider", "wides", "widow", "width", "wield", "wiels", "wifed", "wifes", "wifey",
    "wifie", "wifty", "wigan", "wigga", "wiggy", "wight", "wikis", "wilco", "wilds", "wiled",
    "wiles", "wilga", "wilis", "wilja", "wills", "willy", "wilts", "wimps", "wimpy", "wince",
    "winch", "winds", "windy", "wined", "wines", "winey", "winge", "wings", "wingy", "winks",
    "winna", "winns", "winos", "winze", "wiped", "wiper", "wipes", "wired", "wirer", "wires",
    "wirra", "wised", "wiser", "wises", "wisha", "wisht", "wisps", "wispy", "wists", "witan",
    "witch", "wited", "wites", "withe", "withs", "withy", "witty", "wived", "wiver", "wives",
    "wizen", "wizes", "woads", "woald", "wocks", "wodge", "woful", "wojus", "woken", "woker",
    "wokka", "wolds", "wolfs", "wolly", "wolve", "woman", "wombs", "womby", "women", "womyn",
    "wonga", "wongi", "wonks", "wonky", "wonts", "woods", "woody", "wooed", "wooer", "woofs",
    "woofy", "woold", "wools", "wooly", "woons", "woops", "woopy", "woose", "woosh", "wootz",
    "woozy", "words", "wordy", "works", "world", "worms", "wormy", "worry", "worse", "worst",
    "worth", "worts", "would", "wound", "woven", "wowed", "wowee", "woxen", "wrack", "wrang",
    "wraps", "wrapt", "wrast", "wrate", "wrath", "wrawl", "wreak", "wreck", "wrens", "wrest",
    "wrick", "wried", "wrier", "wries", "wring", "wrist", "write", "writs", "wroke", "wrong",
    "wroot", "wrote", "wroth", "wrung", "wryer", "wryly", "wuddy", "wudus", "wulls", "wurst",
    "wuses", "wushu", "wussy", "wuxia", "wyled", "wyles", "wynds", "wynns", "wyted", "wytes",
    "xebec", "xenia", "xenic", "xenon", "xeric", "xerox", "xerus", "xoana", "xrays", "xylan",
    "xylem", "xylic", "xylol", "xylyl", "xysti", "xysts", "yaars", "yabas", "yabba", "yabby",
    "yacca", "yacht", "yacka", "yacks", "yaffs", "yager", "yages", "yagis", "yahoo", "yaird",
    "yakka", "yakow", "yales", "yamen", "yampy", "yamun", "yangs", "yanks", "yapok", "yapon",
    "yapps", "yappy", "yarak", "yarco", "yards", "yarer", "yarfa", "yarks", "yarns", "yarrs",
    "yarta", "yarto", "yates", "yauds", "yauld", "yaups", "yawed", "yawey", "yawls", "yawns",
    "yawny", "yawps", "ybore", "yclad", "ycled", "ycond", "ydrad", "ydred", "yeads", "yeahs",
    "yealm", "yeans", "yeard", "yearn", "years", "yeast", "yecch", "yechs", "yechy", "yedes",
    "yeeds", "yeesh", "yeggs", "yelks", "yells", "yelms", "yelps", "yelts", "yenta", "yente",
    "yerba", "yerds", "yerks", "yeses", "yesks", "yests", "yesty", "yetis", "yetts", "yeuks",
    "yeuky", "yeven", "yeves", "yewen", "yexed", "yexes", "yfere", "yield", "yiked", "yikes",
    "yills", "yince", "yipes", "yippy", "yirds", "yirks", "yirrs", "yirth", "yites", "yitie",
    "ylems", "ylike", "ylkes", "ymolt", "ympes", "yobbo", "yobby", "yocks", "yodel", "yodhs",
    "yodle", "yogas", "yogee", "yoghs", "yogic", "yogin", "yogis", "yoick", "yojan", "yoked",
    "yokel", "yoker", "yokes", "yokul", "yolks", "yolky", "yomim", "yomps", "yonic", "yonis",
    "yonks", "yoofs", "yoops", "yores", "yorks", "yorps", "youks", "young", "yourn", "yours",
    "yourt", "youse", "youth", "yowed", "yowes", "yowie", "yowls", "yowza", "yrapt", "yrent",
    "yrivd", "yrneh", "ysame", "ytost", "yuans", "yucas", "yucca", "yucch", "yucko", "yucks",
    "yucky", "yufts", "yugas", "yuked", "yukes", "yukky", "yukos", "yulan", "yules", "yummo",
    "yummy", "yumps", "yupon", "yuppy", "yurta", "yurts", "yuzus", "zabra", "zacks", "zaida",
    "zaidy", "zaire", "zakat", "zaman", "zambo", "zamia", "zanja", "zante", "zanza", "zanze",
    "zappy", "zarfs", "zaris", "zatis", "zaxes", "zayin", "zazen", "zeals", "zebec", "zebra",
    "zebub", "zebus", "zedas", "zeins", "zendo", "zerda", "zerks", "zeros", "zests", "zesty",
    "zetas", "zexes", "zezes", "zhomo", "zibet", "ziffs", "zigan", "zilas", "zilch", "zilla",
    "zills", "zimbi", "zimbs", "zinco", "zincs", "zincy", "zineb", "zines", "zings", "zingy",
    "zinke", "zinky", "zippo", "zippy", "ziram", "zitis", "zizel", "zizit", "zlote", "zloty",
    "zoaea", "zobos", "zobus", "zocco", "zoeae", "zoeal", "zoeas", "zoism", "zoist", "zombi",
    "zonae", "zonal", "zonda", "zoned", "zoner", "zones", "zonks", "zooea", "zooey", "zooid",
    "zooks", "zooms", "zoons", "zooty", "zoppa", "zoppo", "zoril", "zoris", "zorro", "zouks",
    "zowee", "zowie", "zulus", "zupan", "zupas", "zuppa", "zurfs", "zuzim", "zygal", "zygon",
    "zymes", "zymic",
];

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn answers_well_defined() {
        assert!(ANSWERS.iter().all(|&n| n < GUESSES.len()))
    }
}