1*1c9681d1Schristos /*	$NetBSD: otp_parse.c,v 1.2 2017/01/28 21:31:50 christos Exp $	*/
2f59d82ffSelric 
3f59d82ffSelric /*
4f59d82ffSelric  * Copyright (c) 1995-2000, 2005-2007 Kungliga Tekniska Högskolan
5f59d82ffSelric  * (Royal Institute of Technology, Stockholm, Sweden).
6f59d82ffSelric  * All rights reserved.
7f59d82ffSelric  *
8f59d82ffSelric  * Redistribution and use in source and binary forms, with or without
9f59d82ffSelric  * modification, are permitted provided that the following conditions
10f59d82ffSelric  * are met:
11f59d82ffSelric  *
12f59d82ffSelric  * 1. Redistributions of source code must retain the above copyright
13f59d82ffSelric  *    notice, this list of conditions and the following disclaimer.
14f59d82ffSelric  *
15f59d82ffSelric  * 2. Redistributions in binary form must reproduce the above copyright
16f59d82ffSelric  *    notice, this list of conditions and the following disclaimer in the
17f59d82ffSelric  *    documentation and/or other materials provided with the distribution.
18f59d82ffSelric  *
19f59d82ffSelric  * 3. Neither the name of the Institute nor the names of its contributors
20f59d82ffSelric  *    may be used to endorse or promote products derived from this software
21f59d82ffSelric  *    without specific prior written permission.
22f59d82ffSelric  *
23f59d82ffSelric  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24f59d82ffSelric  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25f59d82ffSelric  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26f59d82ffSelric  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27f59d82ffSelric  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28f59d82ffSelric  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29f59d82ffSelric  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30f59d82ffSelric  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31f59d82ffSelric  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32f59d82ffSelric  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33f59d82ffSelric  * SUCH DAMAGE.
34f59d82ffSelric  */
35f59d82ffSelric 
36f59d82ffSelric #ifdef HAVE_CONFIG_H
37f59d82ffSelric #include "config.h"
38*1c9681d1Schristos __RCSID("$NetBSD: otp_parse.c,v 1.2 2017/01/28 21:31:50 christos Exp $");
39f59d82ffSelric #endif
40f59d82ffSelric 
41f59d82ffSelric #include "otp_locl.h"
42f59d82ffSelric 
43f59d82ffSelric struct e {
44f59d82ffSelric   const char *s;
45f59d82ffSelric   unsigned n;
46f59d82ffSelric };
47f59d82ffSelric 
48f59d82ffSelric extern const struct e inv_std_dict[2048];
49f59d82ffSelric 
50f59d82ffSelric static int
cmp(const void * a,const void * b)51f59d82ffSelric cmp(const void *a, const void *b)
52f59d82ffSelric {
53f59d82ffSelric   const struct e *e1, *e2;
54f59d82ffSelric 
55f59d82ffSelric   e1 = (const struct e *)a;
56f59d82ffSelric   e2 = (const struct e *)b;
57f59d82ffSelric   return strcasecmp (e1->s, e2->s);
58f59d82ffSelric }
59f59d82ffSelric 
60f59d82ffSelric static int
get_stdword(const char * s,void * v)61f59d82ffSelric get_stdword (const char *s, void *v)
62f59d82ffSelric {
63f59d82ffSelric   struct e e, *r;
64f59d82ffSelric 
65f59d82ffSelric   e.s = s;
66f59d82ffSelric   e.n = -1;
67f59d82ffSelric   r = (struct e *) bsearch (&e, inv_std_dict,
68f59d82ffSelric 			    sizeof(inv_std_dict)/sizeof(*inv_std_dict),
69f59d82ffSelric 			    sizeof(*inv_std_dict), cmp);
70f59d82ffSelric   if (r)
71f59d82ffSelric     return r->n;
72f59d82ffSelric   else
73f59d82ffSelric     return -1;
74f59d82ffSelric }
75f59d82ffSelric 
76f59d82ffSelric static void
compress(OtpKey key,unsigned wn[])77f59d82ffSelric compress (OtpKey key, unsigned wn[])
78f59d82ffSelric {
79f59d82ffSelric   key[0] = wn[0] >> 3;
80f59d82ffSelric   key[1] = ((wn[0] & 0x07) << 5) | (wn[1] >> 6);
81f59d82ffSelric   key[2] = ((wn[1] & 0x3F) << 2) | (wn[2] >> 9);
82f59d82ffSelric   key[3] = ((wn[2] >> 1) & 0xFF);
83f59d82ffSelric   key[4] = ((wn[2] & 0x01) << 7) | (wn[3] >> 4);
84f59d82ffSelric   key[5] = ((wn[3] & 0x0F) << 4) | (wn[4] >> 7);
85f59d82ffSelric   key[6] = ((wn[4] & 0x7F) << 1) | (wn[5] >> 10);
86f59d82ffSelric   key[7] = ((wn[5] >> 2) & 0xFF);
87f59d82ffSelric }
88f59d82ffSelric 
89f59d82ffSelric static int
get_altword(const char * s,void * a)90f59d82ffSelric get_altword (const char *s, void *a)
91f59d82ffSelric {
92f59d82ffSelric   OtpAlgorithm *alg = (OtpAlgorithm *)a;
93f59d82ffSelric   int ret;
94f59d82ffSelric   unsigned char *res = malloc(alg->hashsize);
95f59d82ffSelric 
96f59d82ffSelric   if (res == NULL)
97f59d82ffSelric     return -1;
98f59d82ffSelric   alg->hash (s, strlen(s), res);
99f59d82ffSelric   ret = (unsigned)(res[alg->hashsize - 1]) |
100f59d82ffSelric       ((res[alg->hashsize - 2] & 0x03) << 8);
101f59d82ffSelric   free (res);
102f59d82ffSelric   return ret;
103f59d82ffSelric }
104f59d82ffSelric 
105f59d82ffSelric static int
parse_words(unsigned wn[],const char * str,int (* convert)(const char *,void *),void * arg)106f59d82ffSelric parse_words(unsigned wn[],
107f59d82ffSelric 	    const char *str,
108f59d82ffSelric 	    int (*convert)(const char *, void *),
109f59d82ffSelric 	    void *arg)
110f59d82ffSelric {
111f59d82ffSelric   const unsigned char *w, *wend;
112f59d82ffSelric   char *wcopy;
113f59d82ffSelric   int i;
114f59d82ffSelric   int tmp;
115f59d82ffSelric 
116f59d82ffSelric   w = (const unsigned char *)str;
117f59d82ffSelric   for (i = 0; i < 6; ++i) {
118f59d82ffSelric     while (isspace(*w))
119f59d82ffSelric       ++w;
120f59d82ffSelric     wend = w;
121f59d82ffSelric     while (isalpha (*wend))
122f59d82ffSelric       ++wend;
123f59d82ffSelric 
124f59d82ffSelric     tmp = wend - w;
125f59d82ffSelric     wcopy = malloc(tmp + 1);
126f59d82ffSelric     if (wcopy == NULL)
127f59d82ffSelric 	return -1;
128f59d82ffSelric     memcpy(wcopy, w, tmp);
129f59d82ffSelric     wcopy[tmp] = '\0';
130f59d82ffSelric 
131f59d82ffSelric     tmp = (*convert)(wcopy, arg);
132f59d82ffSelric     free(wcopy);
133f59d82ffSelric     w = wend;
134f59d82ffSelric     if (tmp < 0)
135f59d82ffSelric       return -1;
136f59d82ffSelric     wn[i] = tmp;
137f59d82ffSelric   }
138f59d82ffSelric   return 0;
139f59d82ffSelric }
140f59d82ffSelric 
141f59d82ffSelric static int
otp_parse_internal(OtpKey key,const char * str,OtpAlgorithm * alg,int (* convert)(const char *,void *))142f59d82ffSelric otp_parse_internal (OtpKey key, const char *str,
143f59d82ffSelric 		    OtpAlgorithm *alg,
144f59d82ffSelric 		    int (*convert)(const char *, void *))
145f59d82ffSelric {
146f59d82ffSelric   unsigned wn[6];
147f59d82ffSelric 
148f59d82ffSelric   if (parse_words (wn, str, convert, alg))
149f59d82ffSelric     return -1;
150f59d82ffSelric   compress (key, wn);
151f59d82ffSelric   if (otp_checksum (key) != (wn[5] & 0x03))
152f59d82ffSelric     return -1;
153f59d82ffSelric   return 0;
154f59d82ffSelric }
155f59d82ffSelric 
156f59d82ffSelric int
otp_parse_stddict(OtpKey key,const char * str)157f59d82ffSelric otp_parse_stddict (OtpKey key, const char *str)
158f59d82ffSelric {
159f59d82ffSelric   return otp_parse_internal (key, str, NULL, get_stdword);
160f59d82ffSelric }
161f59d82ffSelric 
162f59d82ffSelric int
otp_parse_altdict(OtpKey key,const char * str,OtpAlgorithm * alg)163f59d82ffSelric otp_parse_altdict (OtpKey key, const char *str, OtpAlgorithm *alg)
164f59d82ffSelric {
165f59d82ffSelric   return otp_parse_internal (key, str, alg, get_altword);
166f59d82ffSelric }
167f59d82ffSelric 
168f59d82ffSelric int
otp_parse_hex(OtpKey key,const char * s)169f59d82ffSelric otp_parse_hex (OtpKey key, const char *s)
170f59d82ffSelric {
171f59d82ffSelric   char buf[17], *b;
172f59d82ffSelric   int is[8];
173f59d82ffSelric   int i;
174f59d82ffSelric 
175f59d82ffSelric   b = buf;
176f59d82ffSelric   while (*s) {
177f59d82ffSelric     if (strchr ("0123456789ABCDEFabcdef", *s)) {
178f59d82ffSelric       if (b - buf >= 16)
179f59d82ffSelric 	return -1;
180f59d82ffSelric       else
181f59d82ffSelric 	*b++ = tolower((unsigned char)*s);
182f59d82ffSelric     }
183f59d82ffSelric     s++;
184f59d82ffSelric   }
185f59d82ffSelric   *b = '\0';
186f59d82ffSelric   if (sscanf (buf, "%2x%2x%2x%2x%2x%2x%2x%2x",
187f59d82ffSelric 	      &is[0], &is[1], &is[2], &is[3], &is[4],
188f59d82ffSelric 	      &is[5], &is[6], &is[7]) != 8)
189f59d82ffSelric     return -1;
190f59d82ffSelric   for (i = 0; i < OTPKEYSIZE; ++i)
191f59d82ffSelric     key[i] = is[i];
192f59d82ffSelric   return 0;
193f59d82ffSelric }
194f59d82ffSelric 
195f59d82ffSelric int
otp_parse(OtpKey key,const char * s,OtpAlgorithm * alg)196f59d82ffSelric otp_parse (OtpKey key, const char *s, OtpAlgorithm *alg)
197f59d82ffSelric {
198f59d82ffSelric   int ret;
199f59d82ffSelric   int dohex = 1;
200f59d82ffSelric 
201f59d82ffSelric   if (strncmp (s, OTP_HEXPREFIX, strlen(OTP_HEXPREFIX)) == 0)
202f59d82ffSelric     return otp_parse_hex (key, s + strlen(OTP_HEXPREFIX));
203f59d82ffSelric   if (strncmp (s, OTP_WORDPREFIX, strlen(OTP_WORDPREFIX)) == 0) {
204f59d82ffSelric     s += strlen(OTP_WORDPREFIX);
205f59d82ffSelric     dohex = 0;
206f59d82ffSelric   }
207f59d82ffSelric 
208f59d82ffSelric   ret = otp_parse_stddict (key, s);
209f59d82ffSelric   if (ret)
210f59d82ffSelric     ret = otp_parse_altdict (key, s, alg);
211f59d82ffSelric   if (ret && dohex)
212f59d82ffSelric     ret = otp_parse_hex (key, s);
213f59d82ffSelric   return ret;
214f59d82ffSelric }
215f59d82ffSelric 
216f59d82ffSelric const char *const std_dict[2048] =
217f59d82ffSelric {        "A",    "ABE",   "ACE",   "ACT",   "AD",    "ADA",   "ADD",
218f59d82ffSelric "AGO",   "AID",  "AIM",   "AIR",   "ALL",   "ALP",   "AM",    "AMY",
219f59d82ffSelric "AN",    "ANA",  "AND",   "ANN",   "ANT",   "ANY",   "APE",   "APS",
220f59d82ffSelric "APT",   "ARC",  "ARE",   "ARK",   "ARM",   "ART",   "AS",    "ASH",
221f59d82ffSelric "ASK",   "AT",   "ATE",   "AUG",   "AUK",   "AVE",   "AWE",   "AWK",
222f59d82ffSelric "AWL",   "AWN",  "AX",    "AYE",   "BAD",   "BAG",   "BAH",   "BAM",
223f59d82ffSelric "BAN",   "BAR",  "BAT",   "BAY",   "BE",    "BED",   "BEE",   "BEG",
224f59d82ffSelric "BEN",   "BET",  "BEY",   "BIB",   "BID",   "BIG",   "BIN",   "BIT",
225f59d82ffSelric "BOB",   "BOG",  "BON",   "BOO",   "BOP",   "BOW",   "BOY",   "BUB",
226f59d82ffSelric "BUD",   "BUG",  "BUM",   "BUN",   "BUS",   "BUT",   "BUY",   "BY",
227f59d82ffSelric "BYE",   "CAB",  "CAL",   "CAM",   "CAN",   "CAP",   "CAR",   "CAT",
228f59d82ffSelric "CAW",   "COD",  "COG",   "COL",   "CON",   "COO",   "COP",   "COT",
229f59d82ffSelric "COW",   "COY",  "CRY",   "CUB",   "CUE",   "CUP",   "CUR",   "CUT",
230f59d82ffSelric "DAB",   "DAD",  "DAM",   "DAN",   "DAR",   "DAY",   "DEE",   "DEL",
231f59d82ffSelric "DEN",   "DES",  "DEW",   "DID",   "DIE",   "DIG",   "DIN",   "DIP",
232f59d82ffSelric "DO",    "DOE",  "DOG",   "DON",   "DOT",   "DOW",   "DRY",   "DUB",
233f59d82ffSelric "DUD",   "DUE",  "DUG",   "DUN",   "EAR",   "EAT",   "ED",    "EEL",
234f59d82ffSelric "EGG",   "EGO",  "ELI",   "ELK",   "ELM",   "ELY",   "EM",    "END",
235f59d82ffSelric "EST",   "ETC",  "EVA",   "EVE",   "EWE",   "EYE",   "FAD",   "FAN",
236f59d82ffSelric "FAR",   "FAT",  "FAY",   "FED",   "FEE",   "FEW",   "FIB",   "FIG",
237f59d82ffSelric "FIN",   "FIR",  "FIT",   "FLO",   "FLY",   "FOE",   "FOG",   "FOR",
238f59d82ffSelric "FRY",   "FUM",  "FUN",   "FUR",   "GAB",   "GAD",   "GAG",   "GAL",
239f59d82ffSelric "GAM",   "GAP",  "GAS",   "GAY",   "GEE",   "GEL",   "GEM",   "GET",
240f59d82ffSelric "GIG",   "GIL",  "GIN",   "GO",    "GOT",   "GUM",   "GUN",   "GUS",
241f59d82ffSelric "GUT",   "GUY",  "GYM",   "GYP",   "HA",    "HAD",   "HAL",   "HAM",
242f59d82ffSelric "HAN",   "HAP",  "HAS",   "HAT",   "HAW",   "HAY",   "HE",    "HEM",
243f59d82ffSelric "HEN",   "HER",  "HEW",   "HEY",   "HI",    "HID",   "HIM",   "HIP",
244f59d82ffSelric "HIS",   "HIT",  "HO",    "HOB",   "HOC",   "HOE",   "HOG",   "HOP",
245f59d82ffSelric "HOT",   "HOW",  "HUB",   "HUE",   "HUG",   "HUH",   "HUM",   "HUT",
246f59d82ffSelric "I",     "ICY",  "IDA",   "IF",    "IKE",   "ILL",   "INK",   "INN",
247f59d82ffSelric "IO",    "ION",  "IQ",    "IRA",   "IRE",   "IRK",   "IS",    "IT",
248f59d82ffSelric "ITS",   "IVY",  "JAB",   "JAG",   "JAM",   "JAN",   "JAR",   "JAW",
249f59d82ffSelric "JAY",   "JET",  "JIG",   "JIM",   "JO",    "JOB",   "JOE",   "JOG",
250f59d82ffSelric "JOT",   "JOY",  "JUG",   "JUT",   "KAY",   "KEG",   "KEN",   "KEY",
251f59d82ffSelric "KID",   "KIM",  "KIN",   "KIT",   "LA",    "LAB",   "LAC",   "LAD",
252f59d82ffSelric "LAG",   "LAM",  "LAP",   "LAW",   "LAY",   "LEA",   "LED",   "LEE",
253f59d82ffSelric "LEG",   "LEN",  "LEO",   "LET",   "LEW",   "LID",   "LIE",   "LIN",
254f59d82ffSelric "LIP",   "LIT",  "LO",    "LOB",   "LOG",   "LOP",   "LOS",   "LOT",
255f59d82ffSelric "LOU",   "LOW",  "LOY",   "LUG",   "LYE",   "MA",    "MAC",   "MAD",
256f59d82ffSelric "MAE",   "MAN",  "MAO",   "MAP",   "MAT",   "MAW",   "MAY",   "ME",
257f59d82ffSelric "MEG",   "MEL",  "MEN",   "MET",   "MEW",   "MID",   "MIN",   "MIT",
258f59d82ffSelric "MOB",   "MOD",  "MOE",   "MOO",   "MOP",   "MOS",   "MOT",   "MOW",
259f59d82ffSelric "MUD",   "MUG",  "MUM",   "MY",    "NAB",   "NAG",   "NAN",   "NAP",
260f59d82ffSelric "NAT",   "NAY",  "NE",    "NED",   "NEE",   "NET",   "NEW",   "NIB",
261f59d82ffSelric "NIL",   "NIP",  "NIT",   "NO",    "NOB",   "NOD",   "NON",   "NOR",
262f59d82ffSelric "NOT",   "NOV",  "NOW",   "NU",    "NUN",   "NUT",   "O",     "OAF",
263f59d82ffSelric "OAK",   "OAR",  "OAT",   "ODD",   "ODE",   "OF",    "OFF",   "OFT",
264f59d82ffSelric "OH",    "OIL",  "OK",    "OLD",   "ON",    "ONE",   "OR",    "ORB",
265f59d82ffSelric "ORE",   "ORR",  "OS",    "OTT",   "OUR",   "OUT",   "OVA",   "OW",
266f59d82ffSelric "OWE",   "OWL",  "OWN",   "OX",    "PA",    "PAD",   "PAL",   "PAM",
267f59d82ffSelric "PAN",   "PAP",  "PAR",   "PAT",   "PAW",   "PAY",   "PEA",   "PEG",
268f59d82ffSelric "PEN",   "PEP",  "PER",   "PET",   "PEW",   "PHI",   "PI",    "PIE",
269f59d82ffSelric "PIN",   "PIT",  "PLY",   "PO",    "POD",   "POE",   "POP",   "POT",
270f59d82ffSelric "POW",   "PRO",  "PRY",   "PUB",   "PUG",   "PUN",   "PUP",   "PUT",
271f59d82ffSelric "QUO",   "RAG",  "RAM",   "RAN",   "RAP",   "RAT",   "RAW",   "RAY",
272f59d82ffSelric "REB",   "RED",  "REP",   "RET",   "RIB",   "RID",   "RIG",   "RIM",
273f59d82ffSelric "RIO",   "RIP",  "ROB",   "ROD",   "ROE",   "RON",   "ROT",   "ROW",
274f59d82ffSelric "ROY",   "RUB",  "RUE",   "RUG",   "RUM",   "RUN",   "RYE",   "SAC",
275f59d82ffSelric "SAD",   "SAG",  "SAL",   "SAM",   "SAN",   "SAP",   "SAT",   "SAW",
276f59d82ffSelric "SAY",   "SEA",  "SEC",   "SEE",   "SEN",   "SET",   "SEW",   "SHE",
277f59d82ffSelric "SHY",   "SIN",  "SIP",   "SIR",   "SIS",   "SIT",   "SKI",   "SKY",
278f59d82ffSelric "SLY",   "SO",   "SOB",   "SOD",   "SON",   "SOP",   "SOW",   "SOY",
279f59d82ffSelric "SPA",   "SPY",  "SUB",   "SUD",   "SUE",   "SUM",   "SUN",   "SUP",
280f59d82ffSelric "TAB",   "TAD",  "TAG",   "TAN",   "TAP",   "TAR",   "TEA",   "TED",
281f59d82ffSelric "TEE",   "TEN",  "THE",   "THY",   "TIC",   "TIE",   "TIM",   "TIN",
282f59d82ffSelric "TIP",   "TO",   "TOE",   "TOG",   "TOM",   "TON",   "TOO",   "TOP",
283f59d82ffSelric "TOW",   "TOY",  "TRY",   "TUB",   "TUG",   "TUM",   "TUN",   "TWO",
284f59d82ffSelric "UN",    "UP",   "US",    "USE",   "VAN",   "VAT",   "VET",   "VIE",
285f59d82ffSelric "WAD",   "WAG",  "WAR",   "WAS",   "WAY",   "WE",    "WEB",   "WED",
286f59d82ffSelric "WEE",   "WET",  "WHO",   "WHY",   "WIN",   "WIT",   "WOK",   "WON",
287f59d82ffSelric "WOO",   "WOW",  "WRY",   "WU",    "YAM",   "YAP",   "YAW",   "YE",
288f59d82ffSelric "YEA",   "YES",  "YET",   "YOU",   "ABED",  "ABEL",  "ABET",  "ABLE",
289f59d82ffSelric "ABUT",  "ACHE",  "ACID", "ACME",  "ACRE",  "ACTA",  "ACTS",  "ADAM",
290f59d82ffSelric "ADDS",  "ADEN",  "AFAR", "AFRO",  "AGEE",  "AHEM",  "AHOY",  "AIDA",
291f59d82ffSelric "AIDE",  "AIDS",  "AIRY", "AJAR",  "AKIN",  "ALAN",  "ALEC",  "ALGA",
292f59d82ffSelric "ALIA",  "ALLY",  "ALMA", "ALOE",  "ALSO",  "ALTO",  "ALUM",  "ALVA",
293f59d82ffSelric "AMEN",  "AMES",  "AMID", "AMMO",  "AMOK",  "AMOS",  "AMRA",  "ANDY",
294f59d82ffSelric "ANEW",  "ANNA",  "ANNE", "ANTE",  "ANTI",  "AQUA",  "ARAB",  "ARCH",
295f59d82ffSelric "AREA",  "ARGO",  "ARID", "ARMY",  "ARTS",  "ARTY",  "ASIA",  "ASKS",
296f59d82ffSelric "ATOM",  "AUNT",  "AURA", "AUTO",  "AVER",  "AVID",  "AVIS",  "AVON",
297f59d82ffSelric "AVOW",  "AWAY",  "AWRY", "BABE",  "BABY",  "BACH",  "BACK",  "BADE",
298f59d82ffSelric "BAIL",  "BAIT",  "BAKE", "BALD",  "BALE",  "BALI",  "BALK",  "BALL",
299f59d82ffSelric "BALM",  "BAND",  "BANE", "BANG",  "BANK",  "BARB",  "BARD",  "BARE",
300f59d82ffSelric "BARK",  "BARN",  "BARR", "BASE",  "BASH",  "BASK",  "BASS",  "BATE",
301f59d82ffSelric "BATH",  "BAWD",  "BAWL", "BEAD",  "BEAK",  "BEAM",  "BEAN",  "BEAR",
302f59d82ffSelric "BEAT",  "BEAU",  "BECK", "BEEF",  "BEEN",  "BEER",  "BEET",  "BELA",
303f59d82ffSelric "BELL",  "BELT",  "BEND", "BENT",  "BERG",  "BERN",  "BERT",  "BESS",
304f59d82ffSelric "BEST",  "BETA",  "BETH", "BHOY",  "BIAS",  "BIDE",  "BIEN",  "BILE",
305f59d82ffSelric "BILK",  "BILL",  "BIND", "BING",  "BIRD",  "BITE",  "BITS",  "BLAB",
306f59d82ffSelric "BLAT",  "BLED",  "BLEW", "BLOB",  "BLOC",  "BLOT",  "BLOW",  "BLUE",
307f59d82ffSelric "BLUM",  "BLUR",  "BOAR", "BOAT",  "BOCA",  "BOCK",  "BODE",  "BODY",
308f59d82ffSelric "BOGY",  "BOHR",  "BOIL", "BOLD",  "BOLO",  "BOLT",  "BOMB",  "BONA",
309f59d82ffSelric "BOND",  "BONE",  "BONG", "BONN",  "BONY",  "BOOK",  "BOOM",  "BOON",
310f59d82ffSelric "BOOT",  "BORE",  "BORG", "BORN",  "BOSE",  "BOSS",  "BOTH",  "BOUT",
311f59d82ffSelric "BOWL",  "BOYD",  "BRAD", "BRAE",  "BRAG",  "BRAN",  "BRAY",  "BRED",
312f59d82ffSelric "BREW",  "BRIG",  "BRIM", "BROW",  "BUCK",  "BUDD",  "BUFF",  "BULB",
313f59d82ffSelric "BULK",  "BULL",  "BUNK", "BUNT",  "BUOY",  "BURG",  "BURL",  "BURN",
314f59d82ffSelric "BURR",  "BURT",  "BURY", "BUSH",  "BUSS",  "BUST",  "BUSY",  "BYTE",
315f59d82ffSelric "CADY",  "CAFE",  "CAGE", "CAIN",  "CAKE",  "CALF",  "CALL",  "CALM",
316f59d82ffSelric "CAME",  "CANE",  "CANT", "CARD",  "CARE",  "CARL",  "CARR",  "CART",
317f59d82ffSelric "CASE",  "CASH",  "CASK", "CAST",  "CAVE",  "CEIL",  "CELL",  "CENT",
318f59d82ffSelric "CERN",  "CHAD",  "CHAR", "CHAT",  "CHAW",  "CHEF",  "CHEN",  "CHEW",
319f59d82ffSelric "CHIC",  "CHIN",  "CHOU", "CHOW",  "CHUB",  "CHUG",  "CHUM",  "CITE",
320f59d82ffSelric "CITY",  "CLAD",  "CLAM", "CLAN",  "CLAW",  "CLAY",  "CLOD",  "CLOG",
321f59d82ffSelric "CLOT",  "CLUB",  "CLUE", "COAL",  "COAT",  "COCA",  "COCK",  "COCO",
322f59d82ffSelric "CODA",  "CODE",  "CODY", "COED",  "COIL",  "COIN",  "COKE",  "COLA",
323f59d82ffSelric "COLD",  "COLT",  "COMA", "COMB",  "COME",  "COOK",  "COOL",  "COON",
324f59d82ffSelric "COOT",  "CORD",  "CORE", "CORK",  "CORN",  "COST",  "COVE",  "COWL",
325f59d82ffSelric "CRAB",  "CRAG",  "CRAM", "CRAY",  "CREW",  "CRIB",  "CROW",  "CRUD",
326f59d82ffSelric "CUBA",  "CUBE",  "CUFF", "CULL",  "CULT",  "CUNY",  "CURB",  "CURD",
327f59d82ffSelric "CURE",  "CURL",  "CURT", "CUTS",  "DADE",  "DALE",  "DAME",  "DANA",
328f59d82ffSelric "DANE",  "DANG",  "DANK", "DARE",  "DARK",  "DARN",  "DART",  "DASH",
329f59d82ffSelric "DATA",  "DATE",  "DAVE", "DAVY",  "DAWN",  "DAYS",  "DEAD",  "DEAF",
330f59d82ffSelric "DEAL",  "DEAN",  "DEAR", "DEBT",  "DECK",  "DEED",  "DEEM",  "DEER",
331f59d82ffSelric "DEFT",  "DEFY",  "DELL", "DENT",  "DENY",  "DESK",  "DIAL",  "DICE",
332f59d82ffSelric "DIED",  "DIET",  "DIME", "DINE",  "DING",  "DINT",  "DIRE",  "DIRT",
333f59d82ffSelric "DISC",  "DISH",  "DISK", "DIVE",  "DOCK",  "DOES",  "DOLE",  "DOLL",
334f59d82ffSelric "DOLT",  "DOME",  "DONE", "DOOM",  "DOOR",  "DORA",  "DOSE",  "DOTE",
335f59d82ffSelric "DOUG",  "DOUR",  "DOVE", "DOWN",  "DRAB",  "DRAG",  "DRAM",  "DRAW",
336f59d82ffSelric "DREW",  "DRUB",  "DRUG", "DRUM",  "DUAL",  "DUCK",  "DUCT",  "DUEL",
337f59d82ffSelric "DUET",  "DUKE",  "DULL", "DUMB",  "DUNE",  "DUNK",  "DUSK",  "DUST",
338f59d82ffSelric "DUTY",  "EACH",  "EARL", "EARN",  "EASE",  "EAST",  "EASY",  "EBEN",
339f59d82ffSelric "ECHO",  "EDDY",  "EDEN", "EDGE",  "EDGY",  "EDIT",  "EDNA",  "EGAN",
340f59d82ffSelric "ELAN",  "ELBA",  "ELLA", "ELSE",  "EMIL",  "EMIT",  "EMMA",  "ENDS",
341f59d82ffSelric "ERIC",  "EROS",  "EVEN", "EVER",  "EVIL",  "EYED",  "FACE",  "FACT",
342f59d82ffSelric "FADE",  "FAIL",  "FAIN", "FAIR",  "FAKE",  "FALL",  "FAME",  "FANG",
343f59d82ffSelric "FARM",  "FAST",  "FATE", "FAWN",  "FEAR",  "FEAT",  "FEED",  "FEEL",
344f59d82ffSelric "FEET",  "FELL",  "FELT", "FEND",  "FERN",  "FEST",  "FEUD",  "FIEF",
345f59d82ffSelric "FIGS",  "FILE",  "FILL", "FILM",  "FIND",  "FINE",  "FINK",  "FIRE",
346f59d82ffSelric "FIRM",  "FISH",  "FISK", "FIST",  "FITS",  "FIVE",  "FLAG",  "FLAK",
347f59d82ffSelric "FLAM",  "FLAT",  "FLAW", "FLEA",  "FLED",  "FLEW",  "FLIT",  "FLOC",
348f59d82ffSelric "FLOG",  "FLOW",  "FLUB", "FLUE",  "FOAL",  "FOAM",  "FOGY",  "FOIL",
349f59d82ffSelric "FOLD",  "FOLK",  "FOND", "FONT",  "FOOD",  "FOOL",  "FOOT",  "FORD",
350f59d82ffSelric "FORE",  "FORK",  "FORM", "FORT",  "FOSS",  "FOUL",  "FOUR",  "FOWL",
351f59d82ffSelric "FRAU",  "FRAY",  "FRED", "FREE",  "FRET",  "FREY",  "FROG",  "FROM",
352f59d82ffSelric "FUEL",  "FULL",  "FUME", "FUND",  "FUNK",  "FURY",  "FUSE",  "FUSS",
353f59d82ffSelric "GAFF",  "GAGE",  "GAIL", "GAIN",  "GAIT",  "GALA",  "GALE",  "GALL",
354f59d82ffSelric "GALT",  "GAME",  "GANG", "GARB",  "GARY",  "GASH",  "GATE",  "GAUL",
355f59d82ffSelric "GAUR",  "GAVE",  "GAWK", "GEAR",  "GELD",  "GENE",  "GENT",  "GERM",
356f59d82ffSelric "GETS",  "GIBE",  "GIFT", "GILD",  "GILL",  "GILT",  "GINA",  "GIRD",
357f59d82ffSelric "GIRL",  "GIST",  "GIVE", "GLAD",  "GLEE",  "GLEN",  "GLIB",  "GLOB",
358f59d82ffSelric "GLOM",  "GLOW",  "GLUE", "GLUM",  "GLUT",  "GOAD",  "GOAL",  "GOAT",
359f59d82ffSelric "GOER",  "GOES",  "GOLD", "GOLF",  "GONE",  "GONG",  "GOOD",  "GOOF",
360f59d82ffSelric "GORE",  "GORY",  "GOSH", "GOUT",  "GOWN",  "GRAB",  "GRAD",  "GRAY",
361f59d82ffSelric "GREG",  "GREW",  "GREY", "GRID",  "GRIM",  "GRIN",  "GRIT",  "GROW",
362f59d82ffSelric "GRUB",  "GULF",  "GULL", "GUNK",  "GURU",  "GUSH",  "GUST",  "GWEN",
363f59d82ffSelric "GWYN",  "HAAG",  "HAAS", "HACK",  "HAIL",  "HAIR",  "HALE",  "HALF",
364f59d82ffSelric "HALL",  "HALO",  "HALT", "HAND",  "HANG",  "HANK",  "HANS",  "HARD",
365f59d82ffSelric "HARK",  "HARM",  "HART", "HASH",  "HAST",  "HATE",  "HATH",  "HAUL",
366f59d82ffSelric "HAVE",  "HAWK",  "HAYS", "HEAD",  "HEAL",  "HEAR",  "HEAT",  "HEBE",
367f59d82ffSelric "HECK",  "HEED",  "HEEL", "HEFT",  "HELD",  "HELL",  "HELM",  "HERB",
368f59d82ffSelric "HERD",  "HERE",  "HERO", "HERS",  "HESS",  "HEWN",  "HICK",  "HIDE",
369f59d82ffSelric "HIGH",  "HIKE",  "HILL", "HILT",  "HIND",  "HINT",  "HIRE",  "HISS",
370f59d82ffSelric "HIVE",  "HOBO",  "HOCK", "HOFF",  "HOLD",  "HOLE",  "HOLM",  "HOLT",
371f59d82ffSelric "HOME",  "HONE",  "HONK", "HOOD",  "HOOF",  "HOOK",  "HOOT",  "HORN",
372f59d82ffSelric "HOSE",  "HOST",  "HOUR", "HOVE",  "HOWE",  "HOWL",  "HOYT",  "HUCK",
373f59d82ffSelric "HUED",  "HUFF",  "HUGE", "HUGH",  "HUGO",  "HULK",  "HULL",  "HUNK",
374f59d82ffSelric "HUNT",  "HURD",  "HURL", "HURT",  "HUSH",  "HYDE",  "HYMN",  "IBIS",
375f59d82ffSelric "ICON",  "IDEA",  "IDLE", "IFFY",  "INCA",  "INCH",  "INTO",  "IONS",
376f59d82ffSelric "IOTA",  "IOWA",  "IRIS", "IRMA",  "IRON",  "ISLE",  "ITCH",  "ITEM",
377f59d82ffSelric "IVAN",  "JACK",  "JADE", "JAIL",  "JAKE",  "JANE",  "JAVA",  "JEAN",
378f59d82ffSelric "JEFF",  "JERK",  "JESS", "JEST",  "JIBE",  "JILL",  "JILT",  "JIVE",
379f59d82ffSelric "JOAN",  "JOBS",  "JOCK", "JOEL",  "JOEY",  "JOHN",  "JOIN",  "JOKE",
380f59d82ffSelric "JOLT",  "JOVE",  "JUDD", "JUDE",  "JUDO",  "JUDY",  "JUJU",  "JUKE",
381f59d82ffSelric "JULY",  "JUNE",  "JUNK", "JUNO",  "JURY",  "JUST",  "JUTE",  "KAHN",
382f59d82ffSelric "KALE",  "KANE",  "KANT", "KARL",  "KATE",  "KEEL",  "KEEN",  "KENO",
383f59d82ffSelric "KENT",  "KERN",  "KERR", "KEYS",  "KICK",  "KILL",  "KIND",  "KING",
384f59d82ffSelric "KIRK",  "KISS",  "KITE", "KLAN",  "KNEE",  "KNEW",  "KNIT",  "KNOB",
385f59d82ffSelric "KNOT",  "KNOW",  "KOCH", "KONG",  "KUDO",  "KURD",  "KURT",  "KYLE",
386f59d82ffSelric "LACE",  "LACK",  "LACY", "LADY",  "LAID",  "LAIN",  "LAIR",  "LAKE",
387f59d82ffSelric "LAMB",  "LAME",  "LAND", "LANE",  "LANG",  "LARD",  "LARK",  "LASS",
388f59d82ffSelric "LAST",  "LATE",  "LAUD", "LAVA",  "LAWN",  "LAWS",  "LAYS",  "LEAD",
389f59d82ffSelric "LEAF",  "LEAK",  "LEAN", "LEAR",  "LEEK",  "LEER",  "LEFT",  "LEND",
390f59d82ffSelric "LENS",  "LENT",  "LEON", "LESK",  "LESS",  "LEST",  "LETS",  "LIAR",
391f59d82ffSelric "LICE",  "LICK",  "LIED", "LIEN",  "LIES",  "LIEU",  "LIFE",  "LIFT",
392f59d82ffSelric "LIKE",  "LILA",  "LILT", "LILY",  "LIMA",  "LIMB",  "LIME",  "LIND",
393f59d82ffSelric "LINE",  "LINK",  "LINT", "LION",  "LISA",  "LIST",  "LIVE",  "LOAD",
394f59d82ffSelric "LOAF",  "LOAM",  "LOAN", "LOCK",  "LOFT",  "LOGE",  "LOIS",  "LOLA",
395f59d82ffSelric "LONE",  "LONG",  "LOOK", "LOON",  "LOOT",  "LORD",  "LORE",  "LOSE",
396f59d82ffSelric "LOSS",  "LOST",  "LOUD", "LOVE",  "LOWE",  "LUCK",  "LUCY",  "LUGE",
397f59d82ffSelric "LUKE",  "LULU",  "LUND", "LUNG",  "LURA",  "LURE",  "LURK",  "LUSH",
398f59d82ffSelric "LUST",  "LYLE",  "LYNN", "LYON",  "LYRA",  "MACE",  "MADE",  "MAGI",
399f59d82ffSelric "MAID",  "MAIL",  "MAIN", "MAKE",  "MALE",  "MALI",  "MALL",  "MALT",
400f59d82ffSelric "MANA",  "MANN",  "MANY", "MARC",  "MARE",  "MARK",  "MARS",  "MART",
401f59d82ffSelric "MARY",  "MASH",  "MASK", "MASS",  "MAST",  "MATE",  "MATH",  "MAUL",
402f59d82ffSelric "MAYO",  "MEAD",  "MEAL", "MEAN",  "MEAT",  "MEEK",  "MEET",  "MELD",
403f59d82ffSelric "MELT",  "MEMO",  "MEND", "MENU",  "MERT",  "MESH",  "MESS",  "MICE",
404f59d82ffSelric "MIKE",  "MILD",  "MILE", "MILK",  "MILL",  "MILT",  "MIMI",  "MIND",
405f59d82ffSelric "MINE",  "MINI",  "MINK", "MINT",  "MIRE",  "MISS",  "MIST",  "MITE",
406f59d82ffSelric "MITT",  "MOAN",  "MOAT", "MOCK",  "MODE",  "MOLD",  "MOLE",  "MOLL",
407f59d82ffSelric "MOLT",  "MONA",  "MONK", "MONT",  "MOOD",  "MOON",  "MOOR",  "MOOT",
408f59d82ffSelric "MORE",  "MORN",  "MORT", "MOSS",  "MOST",  "MOTH",  "MOVE",  "MUCH",
409f59d82ffSelric "MUCK",  "MUDD",  "MUFF", "MULE",  "MULL",  "MURK",  "MUSH",  "MUST",
410f59d82ffSelric "MUTE",  "MUTT",  "MYRA", "MYTH",  "NAGY",  "NAIL",  "NAIR",  "NAME",
411f59d82ffSelric "NARY",  "NASH",  "NAVE", "NAVY",  "NEAL",  "NEAR",  "NEAT",  "NECK",
412f59d82ffSelric "NEED",  "NEIL",  "NELL", "NEON",  "NERO",  "NESS",  "NEST",  "NEWS",
413f59d82ffSelric "NEWT",  "NIBS",  "NICE", "NICK",  "NILE",  "NINA",  "NINE",  "NOAH",
414f59d82ffSelric "NODE",  "NOEL",  "NOLL", "NONE",  "NOOK",  "NOON",  "NORM",  "NOSE",
415f59d82ffSelric "NOTE",  "NOUN",  "NOVA", "NUDE",  "NULL",  "NUMB",  "OATH",  "OBEY",
416f59d82ffSelric "OBOE",  "ODIN",  "OHIO", "OILY",  "OINT",  "OKAY",  "OLAF",  "OLDY",
417f59d82ffSelric "OLGA",  "OLIN",  "OMAN", "OMEN",  "OMIT",  "ONCE",  "ONES",  "ONLY",
418f59d82ffSelric "ONTO",  "ONUS",  "ORAL", "ORGY",  "OSLO",  "OTIS",  "OTTO",  "OUCH",
419f59d82ffSelric "OUST",  "OUTS",  "OVAL", "OVEN",  "OVER",  "OWLY",  "OWNS",  "QUAD",
420f59d82ffSelric "QUIT",  "QUOD",  "RACE", "RACK",  "RACY",  "RAFT",  "RAGE",  "RAID",
421f59d82ffSelric "RAIL",  "RAIN",  "RAKE", "RANK",  "RANT",  "RARE",  "RASH",  "RATE",
422f59d82ffSelric "RAVE",  "RAYS",  "READ", "REAL",  "REAM",  "REAR",  "RECK",  "REED",
423f59d82ffSelric "REEF",  "REEK",  "REEL", "REID",  "REIN",  "RENA",  "REND",  "RENT",
424f59d82ffSelric "REST",  "RICE",  "RICH", "RICK",  "RIDE",  "RIFT",  "RILL",  "RIME",
425f59d82ffSelric "RING",  "RINK",  "RISE", "RISK",  "RITE",  "ROAD",  "ROAM",  "ROAR",
426f59d82ffSelric "ROBE",  "ROCK",  "RODE", "ROIL",  "ROLL",  "ROME",  "ROOD",  "ROOF",
427f59d82ffSelric "ROOK",  "ROOM",  "ROOT", "ROSA",  "ROSE",  "ROSS",  "ROSY",  "ROTH",
428f59d82ffSelric "ROUT",  "ROVE",  "ROWE", "ROWS",  "RUBE",  "RUBY",  "RUDE",  "RUDY",
429f59d82ffSelric "RUIN",  "RULE",  "RUNG", "RUNS",  "RUNT",  "RUSE",  "RUSH",  "RUSK",
430f59d82ffSelric "RUSS",  "RUST",  "RUTH", "SACK",  "SAFE",  "SAGE",  "SAID",  "SAIL",
431f59d82ffSelric "SALE",  "SALK",  "SALT", "SAME",  "SAND",  "SANE",  "SANG",  "SANK",
432f59d82ffSelric "SARA",  "SAUL",  "SAVE", "SAYS",  "SCAN",  "SCAR",  "SCAT",  "SCOT",
433f59d82ffSelric "SEAL",  "SEAM",  "SEAR", "SEAT",  "SEED",  "SEEK",  "SEEM",  "SEEN",
434f59d82ffSelric "SEES",  "SELF",  "SELL", "SEND",  "SENT",  "SETS",  "SEWN",  "SHAG",
435f59d82ffSelric "SHAM",  "SHAW",  "SHAY", "SHED",  "SHIM",  "SHIN",  "SHOD",  "SHOE",
436f59d82ffSelric "SHOT",  "SHOW",  "SHUN", "SHUT",  "SICK",  "SIDE",  "SIFT",  "SIGH",
437f59d82ffSelric "SIGN",  "SILK",  "SILL", "SILO",  "SILT",  "SINE",  "SING",  "SINK",
438f59d82ffSelric "SIRE",  "SITE",  "SITS", "SITU",  "SKAT",  "SKEW",  "SKID",  "SKIM",
439f59d82ffSelric "SKIN",  "SKIT",  "SLAB", "SLAM",  "SLAT",  "SLAY",  "SLED",  "SLEW",
440f59d82ffSelric "SLID",  "SLIM",  "SLIT", "SLOB",  "SLOG",  "SLOT",  "SLOW",  "SLUG",
441f59d82ffSelric "SLUM",  "SLUR",  "SMOG", "SMUG",  "SNAG",  "SNOB",  "SNOW",  "SNUB",
442f59d82ffSelric "SNUG",  "SOAK",  "SOAR", "SOCK",  "SODA",  "SOFA",  "SOFT",  "SOIL",
443f59d82ffSelric "SOLD",  "SOME",  "SONG", "SOON",  "SOOT",  "SORE",  "SORT",  "SOUL",
444f59d82ffSelric "SOUR",  "SOWN",  "STAB", "STAG",  "STAN",  "STAR",  "STAY",  "STEM",
445f59d82ffSelric "STEW",  "STIR",  "STOW", "STUB",  "STUN",  "SUCH",  "SUDS",  "SUIT",
446f59d82ffSelric "SULK",  "SUMS",  "SUNG", "SUNK",  "SURE",  "SURF",  "SWAB",  "SWAG",
447f59d82ffSelric "SWAM",  "SWAN",  "SWAT", "SWAY",  "SWIM",  "SWUM",  "TACK",  "TACT",
448f59d82ffSelric "TAIL",  "TAKE",  "TALE", "TALK",  "TALL",  "TANK",  "TASK",  "TATE",
449f59d82ffSelric "TAUT",  "TEAL",  "TEAM", "TEAR",  "TECH",  "TEEM",  "TEEN",  "TEET",
450f59d82ffSelric "TELL",  "TEND",  "TENT", "TERM",  "TERN",  "TESS",  "TEST",  "THAN",
451f59d82ffSelric "THAT",  "THEE",  "THEM", "THEN",  "THEY",  "THIN",  "THIS",  "THUD",
452f59d82ffSelric "THUG",  "TICK",  "TIDE", "TIDY",  "TIED",  "TIER",  "TILE",  "TILL",
453f59d82ffSelric "TILT",  "TIME",  "TINA", "TINE",  "TINT",  "TINY",  "TIRE",  "TOAD",
454f59d82ffSelric "TOGO",  "TOIL",  "TOLD", "TOLL",  "TONE",  "TONG",  "TONY",  "TOOK",
455f59d82ffSelric "TOOL",  "TOOT",  "TORE", "TORN",  "TOTE",  "TOUR",  "TOUT",  "TOWN",
456f59d82ffSelric "TRAG",  "TRAM",  "TRAY", "TREE",  "TREK",  "TRIG",  "TRIM",  "TRIO",
457f59d82ffSelric "TROD",  "TROT",  "TROY", "TRUE",  "TUBA",  "TUBE",  "TUCK",  "TUFT",
458f59d82ffSelric "TUNA",  "TUNE",  "TUNG", "TURF",  "TURN",  "TUSK",  "TWIG",  "TWIN",
459f59d82ffSelric "TWIT",  "ULAN",  "UNIT", "URGE",  "USED",  "USER",  "USES",  "UTAH",
460f59d82ffSelric "VAIL",  "VAIN",  "VALE", "VARY",  "VASE",  "VAST",  "VEAL",  "VEDA",
461f59d82ffSelric "VEIL",  "VEIN",  "VEND", "VENT",  "VERB",  "VERY",  "VETO",  "VICE",
462f59d82ffSelric "VIEW",  "VINE",  "VISE", "VOID",  "VOLT",  "VOTE",  "WACK",  "WADE",
463f59d82ffSelric "WAGE",  "WAIL",  "WAIT", "WAKE",  "WALE",  "WALK",  "WALL",  "WALT",
464f59d82ffSelric "WAND",  "WANE",  "WANG", "WANT",  "WARD",  "WARM",  "WARN",  "WART",
465f59d82ffSelric "WASH",  "WAST",  "WATS", "WATT",  "WAVE",  "WAVY",  "WAYS",  "WEAK",
466f59d82ffSelric "WEAL",  "WEAN",  "WEAR", "WEED",  "WEEK",  "WEIR",  "WELD",  "WELL",
467f59d82ffSelric "WELT",  "WENT",  "WERE", "WERT",  "WEST",  "WHAM",  "WHAT",  "WHEE",
468f59d82ffSelric "WHEN",  "WHET",  "WHOA", "WHOM",  "WICK",  "WIFE",  "WILD",  "WILL",
469f59d82ffSelric "WIND",  "WINE",  "WING", "WINK",  "WINO",  "WIRE",  "WISE",  "WISH",
470f59d82ffSelric "WITH",  "WOLF",  "WONT", "WOOD",  "WOOL",  "WORD",  "WORE",  "WORK",
471f59d82ffSelric "WORM",  "WORN",  "WOVE", "WRIT",  "WYNN",  "YALE",  "YANG",  "YANK",
472f59d82ffSelric "YARD",  "YARN",  "YAWL", "YAWN",  "YEAH",  "YEAR",  "YELL",  "YOGA",
473f59d82ffSelric "YOKE"                         };
474f59d82ffSelric 
475f59d82ffSelric const struct e inv_std_dict[2048] = {
476f59d82ffSelric {"A", 0},
477f59d82ffSelric {"ABE", 1},
478f59d82ffSelric {"ABED", 571},
479f59d82ffSelric {"ABEL", 572},
480f59d82ffSelric {"ABET", 573},
481f59d82ffSelric {"ABLE", 574},
482f59d82ffSelric {"ABUT", 575},
483f59d82ffSelric {"ACE", 2},
484f59d82ffSelric {"ACHE", 576},
485f59d82ffSelric {"ACID", 577},
486f59d82ffSelric {"ACME", 578},
487f59d82ffSelric {"ACRE", 579},
488f59d82ffSelric {"ACT", 3},
489f59d82ffSelric {"ACTA", 580},
490f59d82ffSelric {"ACTS", 581},
491f59d82ffSelric {"AD", 4},
492f59d82ffSelric {"ADA", 5},
493f59d82ffSelric {"ADAM", 582},
494f59d82ffSelric {"ADD", 6},
495f59d82ffSelric {"ADDS", 583},
496f59d82ffSelric {"ADEN", 584},
497f59d82ffSelric {"AFAR", 585},
498f59d82ffSelric {"AFRO", 586},
499f59d82ffSelric {"AGEE", 587},
500f59d82ffSelric {"AGO", 7},
501f59d82ffSelric {"AHEM", 588},
502f59d82ffSelric {"AHOY", 589},
503f59d82ffSelric {"AID", 8},
504f59d82ffSelric {"AIDA", 590},
505f59d82ffSelric {"AIDE", 591},
506f59d82ffSelric {"AIDS", 592},
507f59d82ffSelric {"AIM", 9},
508f59d82ffSelric {"AIR", 10},
509f59d82ffSelric {"AIRY", 593},
510f59d82ffSelric {"AJAR", 594},
511f59d82ffSelric {"AKIN", 595},
512f59d82ffSelric {"ALAN", 596},
513f59d82ffSelric {"ALEC", 597},
514f59d82ffSelric {"ALGA", 598},
515f59d82ffSelric {"ALIA", 599},
516f59d82ffSelric {"ALL", 11},
517f59d82ffSelric {"ALLY", 600},
518f59d82ffSelric {"ALMA", 601},
519f59d82ffSelric {"ALOE", 602},
520f59d82ffSelric {"ALP", 12},
521f59d82ffSelric {"ALSO", 603},
522f59d82ffSelric {"ALTO", 604},
523f59d82ffSelric {"ALUM", 605},
524f59d82ffSelric {"ALVA", 606},
525f59d82ffSelric {"AM", 13},
526f59d82ffSelric {"AMEN", 607},
527f59d82ffSelric {"AMES", 608},
528f59d82ffSelric {"AMID", 609},
529f59d82ffSelric {"AMMO", 610},
530f59d82ffSelric {"AMOK", 611},
531f59d82ffSelric {"AMOS", 612},
532f59d82ffSelric {"AMRA", 613},
533f59d82ffSelric {"AMY", 14},
534f59d82ffSelric {"AN", 15},
535f59d82ffSelric {"ANA", 16},
536f59d82ffSelric {"AND", 17},
537f59d82ffSelric {"ANDY", 614},
538f59d82ffSelric {"ANEW", 615},
539f59d82ffSelric {"ANN", 18},
540f59d82ffSelric {"ANNA", 616},
541f59d82ffSelric {"ANNE", 617},
542f59d82ffSelric {"ANT", 19},
543f59d82ffSelric {"ANTE", 618},
544f59d82ffSelric {"ANTI", 619},
545f59d82ffSelric {"ANY", 20},
546f59d82ffSelric {"APE", 21},
547f59d82ffSelric {"APS", 22},
548f59d82ffSelric {"APT", 23},
549f59d82ffSelric {"AQUA", 620},
550f59d82ffSelric {"ARAB", 621},
551f59d82ffSelric {"ARC", 24},
552f59d82ffSelric {"ARCH", 622},
553f59d82ffSelric {"ARE", 25},
554f59d82ffSelric {"AREA", 623},
555f59d82ffSelric {"ARGO", 624},
556f59d82ffSelric {"ARID", 625},
557f59d82ffSelric {"ARK", 26},
558f59d82ffSelric {"ARM", 27},
559f59d82ffSelric {"ARMY", 626},
560f59d82ffSelric {"ART", 28},
561f59d82ffSelric {"ARTS", 627},
562f59d82ffSelric {"ARTY", 628},
563f59d82ffSelric {"AS", 29},
564f59d82ffSelric {"ASH", 30},
565f59d82ffSelric {"ASIA", 629},
566f59d82ffSelric {"ASK", 31},
567f59d82ffSelric {"ASKS", 630},
568f59d82ffSelric {"AT", 32},
569f59d82ffSelric {"ATE", 33},
570f59d82ffSelric {"ATOM", 631},
571f59d82ffSelric {"AUG", 34},
572f59d82ffSelric {"AUK", 35},
573f59d82ffSelric {"AUNT", 632},
574f59d82ffSelric {"AURA", 633},
575f59d82ffSelric {"AUTO", 634},
576f59d82ffSelric {"AVE", 36},
577f59d82ffSelric {"AVER", 635},
578f59d82ffSelric {"AVID", 636},
579f59d82ffSelric {"AVIS", 637},
580f59d82ffSelric {"AVON", 638},
581f59d82ffSelric {"AVOW", 639},
582f59d82ffSelric {"AWAY", 640},
583f59d82ffSelric {"AWE", 37},
584f59d82ffSelric {"AWK", 38},
585f59d82ffSelric {"AWL", 39},
586f59d82ffSelric {"AWN", 40},
587f59d82ffSelric {"AWRY", 641},
588f59d82ffSelric {"AX", 41},
589f59d82ffSelric {"AYE", 42},
590f59d82ffSelric {"BABE", 642},
591f59d82ffSelric {"BABY", 643},
592f59d82ffSelric {"BACH", 644},
593f59d82ffSelric {"BACK", 645},
594f59d82ffSelric {"BAD", 43},
595f59d82ffSelric {"BADE", 646},
596f59d82ffSelric {"BAG", 44},
597f59d82ffSelric {"BAH", 45},
598f59d82ffSelric {"BAIL", 647},
599f59d82ffSelric {"BAIT", 648},
600f59d82ffSelric {"BAKE", 649},
601f59d82ffSelric {"BALD", 650},
602f59d82ffSelric {"BALE", 651},
603f59d82ffSelric {"BALI", 652},
604f59d82ffSelric {"BALK", 653},
605f59d82ffSelric {"BALL", 654},
606f59d82ffSelric {"BALM", 655},
607f59d82ffSelric {"BAM", 46},
608f59d82ffSelric {"BAN", 47},
609f59d82ffSelric {"BAND", 656},
610f59d82ffSelric {"BANE", 657},
611f59d82ffSelric {"BANG", 658},
612f59d82ffSelric {"BANK", 659},
613f59d82ffSelric {"BAR", 48},
614f59d82ffSelric {"BARB", 660},
615f59d82ffSelric {"BARD", 661},
616f59d82ffSelric {"BARE", 662},
617f59d82ffSelric {"BARK", 663},
618f59d82ffSelric {"BARN", 664},
619f59d82ffSelric {"BARR", 665},
620f59d82ffSelric {"BASE", 666},
621f59d82ffSelric {"BASH", 667},
622f59d82ffSelric {"BASK", 668},
623f59d82ffSelric {"BASS", 669},
624f59d82ffSelric {"BAT", 49},
625f59d82ffSelric {"BATE", 670},
626f59d82ffSelric {"BATH", 671},
627f59d82ffSelric {"BAWD", 672},
628f59d82ffSelric {"BAWL", 673},
629f59d82ffSelric {"BAY", 50},
630f59d82ffSelric {"BE", 51},
631f59d82ffSelric {"BEAD", 674},
632f59d82ffSelric {"BEAK", 675},
633f59d82ffSelric {"BEAM", 676},
634f59d82ffSelric {"BEAN", 677},
635f59d82ffSelric {"BEAR", 678},
636f59d82ffSelric {"BEAT", 679},
637f59d82ffSelric {"BEAU", 680},
638f59d82ffSelric {"BECK", 681},
639f59d82ffSelric {"BED", 52},
640f59d82ffSelric {"BEE", 53},
641f59d82ffSelric {"BEEF", 682},
642f59d82ffSelric {"BEEN", 683},
643f59d82ffSelric {"BEER", 684},
644f59d82ffSelric {"BEET", 685},
645f59d82ffSelric {"BEG", 54},
646f59d82ffSelric {"BELA", 686},
647f59d82ffSelric {"BELL", 687},
648f59d82ffSelric {"BELT", 688},
649f59d82ffSelric {"BEN", 55},
650f59d82ffSelric {"BEND", 689},
651f59d82ffSelric {"BENT", 690},
652f59d82ffSelric {"BERG", 691},
653f59d82ffSelric {"BERN", 692},
654f59d82ffSelric {"BERT", 693},
655f59d82ffSelric {"BESS", 694},
656f59d82ffSelric {"BEST", 695},
657f59d82ffSelric {"BET", 56},
658f59d82ffSelric {"BETA", 696},
659f59d82ffSelric {"BETH", 697},
660f59d82ffSelric {"BEY", 57},
661f59d82ffSelric {"BHOY", 698},
662f59d82ffSelric {"BIAS", 699},
663f59d82ffSelric {"BIB", 58},
664f59d82ffSelric {"BID", 59},
665f59d82ffSelric {"BIDE", 700},
666f59d82ffSelric {"BIEN", 701},
667f59d82ffSelric {"BIG", 60},
668f59d82ffSelric {"BILE", 702},
669f59d82ffSelric {"BILK", 703},
670f59d82ffSelric {"BILL", 704},
671f59d82ffSelric {"BIN", 61},
672f59d82ffSelric {"BIND", 705},
673f59d82ffSelric {"BING", 706},
674f59d82ffSelric {"BIRD", 707},
675f59d82ffSelric {"BIT", 62},
676f59d82ffSelric {"BITE", 708},
677f59d82ffSelric {"BITS", 709},
678f59d82ffSelric {"BLAB", 710},
679f59d82ffSelric {"BLAT", 711},
680f59d82ffSelric {"BLED", 712},
681f59d82ffSelric {"BLEW", 713},
682f59d82ffSelric {"BLOB", 714},
683f59d82ffSelric {"BLOC", 715},
684f59d82ffSelric {"BLOT", 716},
685f59d82ffSelric {"BLOW", 717},
686f59d82ffSelric {"BLUE", 718},
687f59d82ffSelric {"BLUM", 719},
688f59d82ffSelric {"BLUR", 720},
689f59d82ffSelric {"BOAR", 721},
690f59d82ffSelric {"BOAT", 722},
691f59d82ffSelric {"BOB", 63},
692f59d82ffSelric {"BOCA", 723},
693f59d82ffSelric {"BOCK", 724},
694f59d82ffSelric {"BODE", 725},
695f59d82ffSelric {"BODY", 726},
696f59d82ffSelric {"BOG", 64},
697f59d82ffSelric {"BOGY", 727},
698f59d82ffSelric {"BOHR", 728},
699f59d82ffSelric {"BOIL", 729},
700f59d82ffSelric {"BOLD", 730},
701f59d82ffSelric {"BOLO", 731},
702f59d82ffSelric {"BOLT", 732},
703f59d82ffSelric {"BOMB", 733},
704f59d82ffSelric {"BON", 65},
705f59d82ffSelric {"BONA", 734},
706f59d82ffSelric {"BOND", 735},
707f59d82ffSelric {"BONE", 736},
708f59d82ffSelric {"BONG", 737},
709f59d82ffSelric {"BONN", 738},
710f59d82ffSelric {"BONY", 739},
711f59d82ffSelric {"BOO", 66},
712f59d82ffSelric {"BOOK", 740},
713f59d82ffSelric {"BOOM", 741},
714f59d82ffSelric {"BOON", 742},
715f59d82ffSelric {"BOOT", 743},
716f59d82ffSelric {"BOP", 67},
717f59d82ffSelric {"BORE", 744},
718f59d82ffSelric {"BORG", 745},
719f59d82ffSelric {"BORN", 746},
720f59d82ffSelric {"BOSE", 747},
721f59d82ffSelric {"BOSS", 748},
722f59d82ffSelric {"BOTH", 749},
723f59d82ffSelric {"BOUT", 750},
724f59d82ffSelric {"BOW", 68},
725f59d82ffSelric {"BOWL", 751},
726f59d82ffSelric {"BOY", 69},
727f59d82ffSelric {"BOYD", 752},
728f59d82ffSelric {"BRAD", 753},
729f59d82ffSelric {"BRAE", 754},
730f59d82ffSelric {"BRAG", 755},
731f59d82ffSelric {"BRAN", 756},
732f59d82ffSelric {"BRAY", 757},
733f59d82ffSelric {"BRED", 758},
734f59d82ffSelric {"BREW", 759},
735f59d82ffSelric {"BRIG", 760},
736f59d82ffSelric {"BRIM", 761},
737f59d82ffSelric {"BROW", 762},
738f59d82ffSelric {"BUB", 70},
739f59d82ffSelric {"BUCK", 763},
740f59d82ffSelric {"BUD", 71},
741f59d82ffSelric {"BUDD", 764},
742f59d82ffSelric {"BUFF", 765},
743f59d82ffSelric {"BUG", 72},
744f59d82ffSelric {"BULB", 766},
745f59d82ffSelric {"BULK", 767},
746f59d82ffSelric {"BULL", 768},
747f59d82ffSelric {"BUM", 73},
748f59d82ffSelric {"BUN", 74},
749f59d82ffSelric {"BUNK", 769},
750f59d82ffSelric {"BUNT", 770},
751f59d82ffSelric {"BUOY", 771},
752f59d82ffSelric {"BURG", 772},
753f59d82ffSelric {"BURL", 773},
754f59d82ffSelric {"BURN", 774},
755f59d82ffSelric {"BURR", 775},
756f59d82ffSelric {"BURT", 776},
757f59d82ffSelric {"BURY", 777},
758f59d82ffSelric {"BUS", 75},
759f59d82ffSelric {"BUSH", 778},
760f59d82ffSelric {"BUSS", 779},
761f59d82ffSelric {"BUST", 780},
762f59d82ffSelric {"BUSY", 781},
763f59d82ffSelric {"BUT", 76},
764f59d82ffSelric {"BUY", 77},
765f59d82ffSelric {"BY", 78},
766f59d82ffSelric {"BYE", 79},
767f59d82ffSelric {"BYTE", 782},
768f59d82ffSelric {"CAB", 80},
769f59d82ffSelric {"CADY", 783},
770f59d82ffSelric {"CAFE", 784},
771f59d82ffSelric {"CAGE", 785},
772f59d82ffSelric {"CAIN", 786},
773f59d82ffSelric {"CAKE", 787},
774f59d82ffSelric {"CAL", 81},
775f59d82ffSelric {"CALF", 788},
776f59d82ffSelric {"CALL", 789},
777f59d82ffSelric {"CALM", 790},
778f59d82ffSelric {"CAM", 82},
779f59d82ffSelric {"CAME", 791},
780f59d82ffSelric {"CAN", 83},
781f59d82ffSelric {"CANE", 792},
782f59d82ffSelric {"CANT", 793},
783f59d82ffSelric {"CAP", 84},
784f59d82ffSelric {"CAR", 85},
785f59d82ffSelric {"CARD", 794},
786f59d82ffSelric {"CARE", 795},
787f59d82ffSelric {"CARL", 796},
788f59d82ffSelric {"CARR", 797},
789f59d82ffSelric {"CART", 798},
790f59d82ffSelric {"CASE", 799},
791f59d82ffSelric {"CASH", 800},
792f59d82ffSelric {"CASK", 801},
793f59d82ffSelric {"CAST", 802},
794f59d82ffSelric {"CAT", 86},
795f59d82ffSelric {"CAVE", 803},
796f59d82ffSelric {"CAW", 87},
797f59d82ffSelric {"CEIL", 804},
798f59d82ffSelric {"CELL", 805},
799f59d82ffSelric {"CENT", 806},
800f59d82ffSelric {"CERN", 807},
801f59d82ffSelric {"CHAD", 808},
802f59d82ffSelric {"CHAR", 809},
803f59d82ffSelric {"CHAT", 810},
804f59d82ffSelric {"CHAW", 811},
805f59d82ffSelric {"CHEF", 812},
806f59d82ffSelric {"CHEN", 813},
807f59d82ffSelric {"CHEW", 814},
808f59d82ffSelric {"CHIC", 815},
809f59d82ffSelric {"CHIN", 816},
810f59d82ffSelric {"CHOU", 817},
811f59d82ffSelric {"CHOW", 818},
812f59d82ffSelric {"CHUB", 819},
813f59d82ffSelric {"CHUG", 820},
814f59d82ffSelric {"CHUM", 821},
815f59d82ffSelric {"CITE", 822},
816f59d82ffSelric {"CITY", 823},
817f59d82ffSelric {"CLAD", 824},
818f59d82ffSelric {"CLAM", 825},
819f59d82ffSelric {"CLAN", 826},
820f59d82ffSelric {"CLAW", 827},
821f59d82ffSelric {"CLAY", 828},
822f59d82ffSelric {"CLOD", 829},
823f59d82ffSelric {"CLOG", 830},
824f59d82ffSelric {"CLOT", 831},
825f59d82ffSelric {"CLUB", 832},
826f59d82ffSelric {"CLUE", 833},
827f59d82ffSelric {"COAL", 834},
828f59d82ffSelric {"COAT", 835},
829f59d82ffSelric {"COCA", 836},
830f59d82ffSelric {"COCK", 837},
831f59d82ffSelric {"COCO", 838},
832f59d82ffSelric {"COD", 88},
833f59d82ffSelric {"CODA", 839},
834f59d82ffSelric {"CODE", 840},
835f59d82ffSelric {"CODY", 841},
836f59d82ffSelric {"COED", 842},
837f59d82ffSelric {"COG", 89},
838f59d82ffSelric {"COIL", 843},
839f59d82ffSelric {"COIN", 844},
840f59d82ffSelric {"COKE", 845},
841f59d82ffSelric {"COL", 90},
842f59d82ffSelric {"COLA", 846},
843f59d82ffSelric {"COLD", 847},
844f59d82ffSelric {"COLT", 848},
845f59d82ffSelric {"COMA", 849},
846f59d82ffSelric {"COMB", 850},
847f59d82ffSelric {"COME", 851},
848f59d82ffSelric {"CON", 91},
849f59d82ffSelric {"COO", 92},
850f59d82ffSelric {"COOK", 852},
851f59d82ffSelric {"COOL", 853},
852f59d82ffSelric {"COON", 854},
853f59d82ffSelric {"COOT", 855},
854f59d82ffSelric {"COP", 93},
855f59d82ffSelric {"CORD", 856},
856f59d82ffSelric {"CORE", 857},
857f59d82ffSelric {"CORK", 858},
858f59d82ffSelric {"CORN", 859},
859f59d82ffSelric {"COST", 860},
860f59d82ffSelric {"COT", 94},
861f59d82ffSelric {"COVE", 861},
862f59d82ffSelric {"COW", 95},
863f59d82ffSelric {"COWL", 862},
864f59d82ffSelric {"COY", 96},
865f59d82ffSelric {"CRAB", 863},
866f59d82ffSelric {"CRAG", 864},
867f59d82ffSelric {"CRAM", 865},
868f59d82ffSelric {"CRAY", 866},
869f59d82ffSelric {"CREW", 867},
870f59d82ffSelric {"CRIB", 868},
871f59d82ffSelric {"CROW", 869},
872f59d82ffSelric {"CRUD", 870},
873f59d82ffSelric {"CRY", 97},
874f59d82ffSelric {"CUB", 98},
875f59d82ffSelric {"CUBA", 871},
876f59d82ffSelric {"CUBE", 872},
877f59d82ffSelric {"CUE", 99},
878f59d82ffSelric {"CUFF", 873},
879f59d82ffSelric {"CULL", 874},
880f59d82ffSelric {"CULT", 875},
881f59d82ffSelric {"CUNY", 876},
882f59d82ffSelric {"CUP", 100},
883f59d82ffSelric {"CUR", 101},
884f59d82ffSelric {"CURB", 877},
885f59d82ffSelric {"CURD", 878},
886f59d82ffSelric {"CURE", 879},
887f59d82ffSelric {"CURL", 880},
888f59d82ffSelric {"CURT", 881},
889f59d82ffSelric {"CUT", 102},
890f59d82ffSelric {"CUTS", 882},
891f59d82ffSelric {"DAB", 103},
892f59d82ffSelric {"DAD", 104},
893f59d82ffSelric {"DADE", 883},
894f59d82ffSelric {"DALE", 884},
895f59d82ffSelric {"DAM", 105},
896f59d82ffSelric {"DAME", 885},
897f59d82ffSelric {"DAN", 106},
898f59d82ffSelric {"DANA", 886},
899f59d82ffSelric {"DANE", 887},
900f59d82ffSelric {"DANG", 888},
901f59d82ffSelric {"DANK", 889},
902f59d82ffSelric {"DAR", 107},
903f59d82ffSelric {"DARE", 890},
904f59d82ffSelric {"DARK", 891},
905f59d82ffSelric {"DARN", 892},
906f59d82ffSelric {"DART", 893},
907f59d82ffSelric {"DASH", 894},
908f59d82ffSelric {"DATA", 895},
909f59d82ffSelric {"DATE", 896},
910f59d82ffSelric {"DAVE", 897},
911f59d82ffSelric {"DAVY", 898},
912f59d82ffSelric {"DAWN", 899},
913f59d82ffSelric {"DAY", 108},
914f59d82ffSelric {"DAYS", 900},
915f59d82ffSelric {"DEAD", 901},
916f59d82ffSelric {"DEAF", 902},
917f59d82ffSelric {"DEAL", 903},
918f59d82ffSelric {"DEAN", 904},
919f59d82ffSelric {"DEAR", 905},
920f59d82ffSelric {"DEBT", 906},
921f59d82ffSelric {"DECK", 907},
922f59d82ffSelric {"DEE", 109},
923f59d82ffSelric {"DEED", 908},
924f59d82ffSelric {"DEEM", 909},
925f59d82ffSelric {"DEER", 910},
926f59d82ffSelric {"DEFT", 911},
927f59d82ffSelric {"DEFY", 912},
928f59d82ffSelric {"DEL", 110},
929f59d82ffSelric {"DELL", 913},
930f59d82ffSelric {"DEN", 111},
931f59d82ffSelric {"DENT", 914},
932f59d82ffSelric {"DENY", 915},
933f59d82ffSelric {"DES", 112},
934f59d82ffSelric {"DESK", 916},
935f59d82ffSelric {"DEW", 113},
936f59d82ffSelric {"DIAL", 917},
937f59d82ffSelric {"DICE", 918},
938f59d82ffSelric {"DID", 114},
939f59d82ffSelric {"DIE", 115},
940f59d82ffSelric {"DIED", 919},
941f59d82ffSelric {"DIET", 920},
942f59d82ffSelric {"DIG", 116},
943f59d82ffSelric {"DIME", 921},
944f59d82ffSelric {"DIN", 117},
945f59d82ffSelric {"DINE", 922},
946f59d82ffSelric {"DING", 923},
947f59d82ffSelric {"DINT", 924},
948f59d82ffSelric {"DIP", 118},
949f59d82ffSelric {"DIRE", 925},
950f59d82ffSelric {"DIRT", 926},
951f59d82ffSelric {"DISC", 927},
952f59d82ffSelric {"DISH", 928},
953f59d82ffSelric {"DISK", 929},
954f59d82ffSelric {"DIVE", 930},
955f59d82ffSelric {"DO", 119},
956f59d82ffSelric {"DOCK", 931},
957f59d82ffSelric {"DOE", 120},
958f59d82ffSelric {"DOES", 932},
959f59d82ffSelric {"DOG", 121},
960f59d82ffSelric {"DOLE", 933},
961f59d82ffSelric {"DOLL", 934},
962f59d82ffSelric {"DOLT", 935},
963f59d82ffSelric {"DOME", 936},
964f59d82ffSelric {"DON", 122},
965f59d82ffSelric {"DONE", 937},
966f59d82ffSelric {"DOOM", 938},
967f59d82ffSelric {"DOOR", 939},
968f59d82ffSelric {"DORA", 940},
969f59d82ffSelric {"DOSE", 941},
970f59d82ffSelric {"DOT", 123},
971f59d82ffSelric {"DOTE", 942},
972f59d82ffSelric {"DOUG", 943},
973f59d82ffSelric {"DOUR", 944},
974f59d82ffSelric {"DOVE", 945},
975f59d82ffSelric {"DOW", 124},
976f59d82ffSelric {"DOWN", 946},
977f59d82ffSelric {"DRAB", 947},
978f59d82ffSelric {"DRAG", 948},
979f59d82ffSelric {"DRAM", 949},
980f59d82ffSelric {"DRAW", 950},
981f59d82ffSelric {"DREW", 951},
982f59d82ffSelric {"DRUB", 952},
983f59d82ffSelric {"DRUG", 953},
984f59d82ffSelric {"DRUM", 954},
985f59d82ffSelric {"DRY", 125},
986f59d82ffSelric {"DUAL", 955},
987f59d82ffSelric {"DUB", 126},
988f59d82ffSelric {"DUCK", 956},
989f59d82ffSelric {"DUCT", 957},
990f59d82ffSelric {"DUD", 127},
991f59d82ffSelric {"DUE", 128},
992f59d82ffSelric {"DUEL", 958},
993f59d82ffSelric {"DUET", 959},
994f59d82ffSelric {"DUG", 129},
995f59d82ffSelric {"DUKE", 960},
996f59d82ffSelric {"DULL", 961},
997f59d82ffSelric {"DUMB", 962},
998f59d82ffSelric {"DUN", 130},
999f59d82ffSelric {"DUNE", 963},
1000f59d82ffSelric {"DUNK", 964},
1001f59d82ffSelric {"DUSK", 965},
1002f59d82ffSelric {"DUST", 966},
1003f59d82ffSelric {"DUTY", 967},
1004f59d82ffSelric {"EACH", 968},
1005f59d82ffSelric {"EAR", 131},
1006f59d82ffSelric {"EARL", 969},
1007f59d82ffSelric {"EARN", 970},
1008f59d82ffSelric {"EASE", 971},
1009f59d82ffSelric {"EAST", 972},
1010f59d82ffSelric {"EASY", 973},
1011f59d82ffSelric {"EAT", 132},
1012f59d82ffSelric {"EBEN", 974},
1013f59d82ffSelric {"ECHO", 975},
1014f59d82ffSelric {"ED", 133},
1015f59d82ffSelric {"EDDY", 976},
1016f59d82ffSelric {"EDEN", 977},
1017f59d82ffSelric {"EDGE", 978},
1018f59d82ffSelric {"EDGY", 979},
1019f59d82ffSelric {"EDIT", 980},
1020f59d82ffSelric {"EDNA", 981},
1021f59d82ffSelric {"EEL", 134},
1022f59d82ffSelric {"EGAN", 982},
1023f59d82ffSelric {"EGG", 135},
1024f59d82ffSelric {"EGO", 136},
1025f59d82ffSelric {"ELAN", 983},
1026f59d82ffSelric {"ELBA", 984},
1027f59d82ffSelric {"ELI", 137},
1028f59d82ffSelric {"ELK", 138},
1029f59d82ffSelric {"ELLA", 985},
1030f59d82ffSelric {"ELM", 139},
1031f59d82ffSelric {"ELSE", 986},
1032f59d82ffSelric {"ELY", 140},
1033f59d82ffSelric {"EM", 141},
1034f59d82ffSelric {"EMIL", 987},
1035f59d82ffSelric {"EMIT", 988},
1036f59d82ffSelric {"EMMA", 989},
1037f59d82ffSelric {"END", 142},
1038f59d82ffSelric {"ENDS", 990},
1039f59d82ffSelric {"ERIC", 991},
1040f59d82ffSelric {"EROS", 992},
1041f59d82ffSelric {"EST", 143},
1042f59d82ffSelric {"ETC", 144},
1043f59d82ffSelric {"EVA", 145},
1044f59d82ffSelric {"EVE", 146},
1045f59d82ffSelric {"EVEN", 993},
1046f59d82ffSelric {"EVER", 994},
1047f59d82ffSelric {"EVIL", 995},
1048f59d82ffSelric {"EWE", 147},
1049f59d82ffSelric {"EYE", 148},
1050f59d82ffSelric {"EYED", 996},
1051f59d82ffSelric {"FACE", 997},
1052f59d82ffSelric {"FACT", 998},
1053f59d82ffSelric {"FAD", 149},
1054f59d82ffSelric {"FADE", 999},
1055f59d82ffSelric {"FAIL", 1000},
1056f59d82ffSelric {"FAIN", 1001},
1057f59d82ffSelric {"FAIR", 1002},
1058f59d82ffSelric {"FAKE", 1003},
1059f59d82ffSelric {"FALL", 1004},
1060f59d82ffSelric {"FAME", 1005},
1061f59d82ffSelric {"FAN", 150},
1062f59d82ffSelric {"FANG", 1006},
1063f59d82ffSelric {"FAR", 151},
1064f59d82ffSelric {"FARM", 1007},
1065f59d82ffSelric {"FAST", 1008},
1066f59d82ffSelric {"FAT", 152},
1067f59d82ffSelric {"FATE", 1009},
1068f59d82ffSelric {"FAWN", 1010},
1069f59d82ffSelric {"FAY", 153},
1070f59d82ffSelric {"FEAR", 1011},
1071f59d82ffSelric {"FEAT", 1012},
1072f59d82ffSelric {"FED", 154},
1073f59d82ffSelric {"FEE", 155},
1074f59d82ffSelric {"FEED", 1013},
1075f59d82ffSelric {"FEEL", 1014},
1076f59d82ffSelric {"FEET", 1015},
1077f59d82ffSelric {"FELL", 1016},
1078f59d82ffSelric {"FELT", 1017},
1079f59d82ffSelric {"FEND", 1018},
1080f59d82ffSelric {"FERN", 1019},
1081f59d82ffSelric {"FEST", 1020},
1082f59d82ffSelric {"FEUD", 1021},
1083f59d82ffSelric {"FEW", 156},
1084f59d82ffSelric {"FIB", 157},
1085f59d82ffSelric {"FIEF", 1022},
1086f59d82ffSelric {"FIG", 158},
1087f59d82ffSelric {"FIGS", 1023},
1088f59d82ffSelric {"FILE", 1024},
1089f59d82ffSelric {"FILL", 1025},
1090f59d82ffSelric {"FILM", 1026},
1091f59d82ffSelric {"FIN", 159},
1092f59d82ffSelric {"FIND", 1027},
1093f59d82ffSelric {"FINE", 1028},
1094f59d82ffSelric {"FINK", 1029},
1095f59d82ffSelric {"FIR", 160},
1096f59d82ffSelric {"FIRE", 1030},
1097f59d82ffSelric {"FIRM", 1031},
1098f59d82ffSelric {"FISH", 1032},
1099f59d82ffSelric {"FISK", 1033},
1100f59d82ffSelric {"FIST", 1034},
1101f59d82ffSelric {"FIT", 161},
1102f59d82ffSelric {"FITS", 1035},
1103f59d82ffSelric {"FIVE", 1036},
1104f59d82ffSelric {"FLAG", 1037},
1105f59d82ffSelric {"FLAK", 1038},
1106f59d82ffSelric {"FLAM", 1039},
1107f59d82ffSelric {"FLAT", 1040},
1108f59d82ffSelric {"FLAW", 1041},
1109f59d82ffSelric {"FLEA", 1042},
1110f59d82ffSelric {"FLED", 1043},
1111f59d82ffSelric {"FLEW", 1044},
1112f59d82ffSelric {"FLIT", 1045},
1113f59d82ffSelric {"FLO", 162},
1114f59d82ffSelric {"FLOC", 1046},
1115f59d82ffSelric {"FLOG", 1047},
1116f59d82ffSelric {"FLOW", 1048},
1117f59d82ffSelric {"FLUB", 1049},
1118f59d82ffSelric {"FLUE", 1050},
1119f59d82ffSelric {"FLY", 163},
1120f59d82ffSelric {"FOAL", 1051},
1121f59d82ffSelric {"FOAM", 1052},
1122f59d82ffSelric {"FOE", 164},
1123f59d82ffSelric {"FOG", 165},
1124f59d82ffSelric {"FOGY", 1053},
1125f59d82ffSelric {"FOIL", 1054},
1126f59d82ffSelric {"FOLD", 1055},
1127f59d82ffSelric {"FOLK", 1056},
1128f59d82ffSelric {"FOND", 1057},
1129f59d82ffSelric {"FONT", 1058},
1130f59d82ffSelric {"FOOD", 1059},
1131f59d82ffSelric {"FOOL", 1060},
1132f59d82ffSelric {"FOOT", 1061},
1133f59d82ffSelric {"FOR", 166},
1134f59d82ffSelric {"FORD", 1062},
1135f59d82ffSelric {"FORE", 1063},
1136f59d82ffSelric {"FORK", 1064},
1137f59d82ffSelric {"FORM", 1065},
1138f59d82ffSelric {"FORT", 1066},
1139f59d82ffSelric {"FOSS", 1067},
1140f59d82ffSelric {"FOUL", 1068},
1141f59d82ffSelric {"FOUR", 1069},
1142f59d82ffSelric {"FOWL", 1070},
1143f59d82ffSelric {"FRAU", 1071},
1144f59d82ffSelric {"FRAY", 1072},
1145f59d82ffSelric {"FRED", 1073},
1146f59d82ffSelric {"FREE", 1074},
1147f59d82ffSelric {"FRET", 1075},
1148f59d82ffSelric {"FREY", 1076},
1149f59d82ffSelric {"FROG", 1077},
1150f59d82ffSelric {"FROM", 1078},
1151f59d82ffSelric {"FRY", 167},
1152f59d82ffSelric {"FUEL", 1079},
1153f59d82ffSelric {"FULL", 1080},
1154f59d82ffSelric {"FUM", 168},
1155f59d82ffSelric {"FUME", 1081},
1156f59d82ffSelric {"FUN", 169},
1157f59d82ffSelric {"FUND", 1082},
1158f59d82ffSelric {"FUNK", 1083},
1159f59d82ffSelric {"FUR", 170},
1160f59d82ffSelric {"FURY", 1084},
1161f59d82ffSelric {"FUSE", 1085},
1162f59d82ffSelric {"FUSS", 1086},
1163f59d82ffSelric {"GAB", 171},
1164f59d82ffSelric {"GAD", 172},
1165f59d82ffSelric {"GAFF", 1087},
1166f59d82ffSelric {"GAG", 173},
1167f59d82ffSelric {"GAGE", 1088},
1168f59d82ffSelric {"GAIL", 1089},
1169f59d82ffSelric {"GAIN", 1090},
1170f59d82ffSelric {"GAIT", 1091},
1171f59d82ffSelric {"GAL", 174},
1172f59d82ffSelric {"GALA", 1092},
1173f59d82ffSelric {"GALE", 1093},
1174f59d82ffSelric {"GALL", 1094},
1175f59d82ffSelric {"GALT", 1095},
1176f59d82ffSelric {"GAM", 175},
1177f59d82ffSelric {"GAME", 1096},
1178f59d82ffSelric {"GANG", 1097},
1179f59d82ffSelric {"GAP", 176},
1180f59d82ffSelric {"GARB", 1098},
1181f59d82ffSelric {"GARY", 1099},
1182f59d82ffSelric {"GAS", 177},
1183f59d82ffSelric {"GASH", 1100},
1184f59d82ffSelric {"GATE", 1101},
1185f59d82ffSelric {"GAUL", 1102},
1186f59d82ffSelric {"GAUR", 1103},
1187f59d82ffSelric {"GAVE", 1104},
1188f59d82ffSelric {"GAWK", 1105},
1189f59d82ffSelric {"GAY", 178},
1190f59d82ffSelric {"GEAR", 1106},
1191f59d82ffSelric {"GEE", 179},
1192f59d82ffSelric {"GEL", 180},
1193f59d82ffSelric {"GELD", 1107},
1194f59d82ffSelric {"GEM", 181},
1195f59d82ffSelric {"GENE", 1108},
1196f59d82ffSelric {"GENT", 1109},
1197f59d82ffSelric {"GERM", 1110},
1198f59d82ffSelric {"GET", 182},
1199f59d82ffSelric {"GETS", 1111},
1200f59d82ffSelric {"GIBE", 1112},
1201f59d82ffSelric {"GIFT", 1113},
1202f59d82ffSelric {"GIG", 183},
1203f59d82ffSelric {"GIL", 184},
1204f59d82ffSelric {"GILD", 1114},
1205f59d82ffSelric {"GILL", 1115},
1206f59d82ffSelric {"GILT", 1116},
1207f59d82ffSelric {"GIN", 185},
1208f59d82ffSelric {"GINA", 1117},
1209f59d82ffSelric {"GIRD", 1118},
1210f59d82ffSelric {"GIRL", 1119},
1211f59d82ffSelric {"GIST", 1120},
1212f59d82ffSelric {"GIVE", 1121},
1213f59d82ffSelric {"GLAD", 1122},
1214f59d82ffSelric {"GLEE", 1123},
1215f59d82ffSelric {"GLEN", 1124},
1216f59d82ffSelric {"GLIB", 1125},
1217f59d82ffSelric {"GLOB", 1126},
1218f59d82ffSelric {"GLOM", 1127},
1219f59d82ffSelric {"GLOW", 1128},
1220f59d82ffSelric {"GLUE", 1129},
1221f59d82ffSelric {"GLUM", 1130},
1222f59d82ffSelric {"GLUT", 1131},
1223f59d82ffSelric {"GO", 186},
1224f59d82ffSelric {"GOAD", 1132},
1225f59d82ffSelric {"GOAL", 1133},
1226f59d82ffSelric {"GOAT", 1134},
1227f59d82ffSelric {"GOER", 1135},
1228f59d82ffSelric {"GOES", 1136},
1229f59d82ffSelric {"GOLD", 1137},
1230f59d82ffSelric {"GOLF", 1138},
1231f59d82ffSelric {"GONE", 1139},
1232f59d82ffSelric {"GONG", 1140},
1233f59d82ffSelric {"GOOD", 1141},
1234f59d82ffSelric {"GOOF", 1142},
1235f59d82ffSelric {"GORE", 1143},
1236f59d82ffSelric {"GORY", 1144},
1237f59d82ffSelric {"GOSH", 1145},
1238f59d82ffSelric {"GOT", 187},
1239f59d82ffSelric {"GOUT", 1146},
1240f59d82ffSelric {"GOWN", 1147},
1241f59d82ffSelric {"GRAB", 1148},
1242f59d82ffSelric {"GRAD", 1149},
1243f59d82ffSelric {"GRAY", 1150},
1244f59d82ffSelric {"GREG", 1151},
1245f59d82ffSelric {"GREW", 1152},
1246f59d82ffSelric {"GREY", 1153},
1247f59d82ffSelric {"GRID", 1154},
1248f59d82ffSelric {"GRIM", 1155},
1249f59d82ffSelric {"GRIN", 1156},
1250f59d82ffSelric {"GRIT", 1157},
1251f59d82ffSelric {"GROW", 1158},
1252f59d82ffSelric {"GRUB", 1159},
1253f59d82ffSelric {"GULF", 1160},
1254f59d82ffSelric {"GULL", 1161},
1255f59d82ffSelric {"GUM", 188},
1256f59d82ffSelric {"GUN", 189},
1257f59d82ffSelric {"GUNK", 1162},
1258f59d82ffSelric {"GURU", 1163},
1259f59d82ffSelric {"GUS", 190},
1260f59d82ffSelric {"GUSH", 1164},
1261f59d82ffSelric {"GUST", 1165},
1262f59d82ffSelric {"GUT", 191},
1263f59d82ffSelric {"GUY", 192},
1264f59d82ffSelric {"GWEN", 1166},
1265f59d82ffSelric {"GWYN", 1167},
1266f59d82ffSelric {"GYM", 193},
1267f59d82ffSelric {"GYP", 194},
1268f59d82ffSelric {"HA", 195},
1269f59d82ffSelric {"HAAG", 1168},
1270f59d82ffSelric {"HAAS", 1169},
1271f59d82ffSelric {"HACK", 1170},
1272f59d82ffSelric {"HAD", 196},
1273f59d82ffSelric {"HAIL", 1171},
1274f59d82ffSelric {"HAIR", 1172},
1275f59d82ffSelric {"HAL", 197},
1276f59d82ffSelric {"HALE", 1173},
1277f59d82ffSelric {"HALF", 1174},
1278f59d82ffSelric {"HALL", 1175},
1279f59d82ffSelric {"HALO", 1176},
1280f59d82ffSelric {"HALT", 1177},
1281f59d82ffSelric {"HAM", 198},
1282f59d82ffSelric {"HAN", 199},
1283f59d82ffSelric {"HAND", 1178},
1284f59d82ffSelric {"HANG", 1179},
1285f59d82ffSelric {"HANK", 1180},
1286f59d82ffSelric {"HANS", 1181},
1287f59d82ffSelric {"HAP", 200},
1288f59d82ffSelric {"HARD", 1182},
1289f59d82ffSelric {"HARK", 1183},
1290f59d82ffSelric {"HARM", 1184},
1291f59d82ffSelric {"HART", 1185},
1292f59d82ffSelric {"HAS", 201},
1293f59d82ffSelric {"HASH", 1186},
1294f59d82ffSelric {"HAST", 1187},
1295f59d82ffSelric {"HAT", 202},
1296f59d82ffSelric {"HATE", 1188},
1297f59d82ffSelric {"HATH", 1189},
1298f59d82ffSelric {"HAUL", 1190},
1299f59d82ffSelric {"HAVE", 1191},
1300f59d82ffSelric {"HAW", 203},
1301f59d82ffSelric {"HAWK", 1192},
1302f59d82ffSelric {"HAY", 204},
1303f59d82ffSelric {"HAYS", 1193},
1304f59d82ffSelric {"HE", 205},
1305f59d82ffSelric {"HEAD", 1194},
1306f59d82ffSelric {"HEAL", 1195},
1307f59d82ffSelric {"HEAR", 1196},
1308f59d82ffSelric {"HEAT", 1197},
1309f59d82ffSelric {"HEBE", 1198},
1310f59d82ffSelric {"HECK", 1199},
1311f59d82ffSelric {"HEED", 1200},
1312f59d82ffSelric {"HEEL", 1201},
1313f59d82ffSelric {"HEFT", 1202},
1314f59d82ffSelric {"HELD", 1203},
1315f59d82ffSelric {"HELL", 1204},
1316f59d82ffSelric {"HELM", 1205},
1317f59d82ffSelric {"HEM", 206},
1318f59d82ffSelric {"HEN", 207},
1319f59d82ffSelric {"HER", 208},
1320f59d82ffSelric {"HERB", 1206},
1321f59d82ffSelric {"HERD", 1207},
1322f59d82ffSelric {"HERE", 1208},
1323f59d82ffSelric {"HERO", 1209},
1324f59d82ffSelric {"HERS", 1210},
1325f59d82ffSelric {"HESS", 1211},
1326f59d82ffSelric {"HEW", 209},
1327f59d82ffSelric {"HEWN", 1212},
1328f59d82ffSelric {"HEY", 210},
1329f59d82ffSelric {"HI", 211},
1330f59d82ffSelric {"HICK", 1213},
1331f59d82ffSelric {"HID", 212},
1332f59d82ffSelric {"HIDE", 1214},
1333f59d82ffSelric {"HIGH", 1215},
1334f59d82ffSelric {"HIKE", 1216},
1335f59d82ffSelric {"HILL", 1217},
1336f59d82ffSelric {"HILT", 1218},
1337f59d82ffSelric {"HIM", 213},
1338f59d82ffSelric {"HIND", 1219},
1339f59d82ffSelric {"HINT", 1220},
1340f59d82ffSelric {"HIP", 214},
1341f59d82ffSelric {"HIRE", 1221},
1342f59d82ffSelric {"HIS", 215},
1343f59d82ffSelric {"HISS", 1222},
1344f59d82ffSelric {"HIT", 216},
1345f59d82ffSelric {"HIVE", 1223},
1346f59d82ffSelric {"HO", 217},
1347f59d82ffSelric {"HOB", 218},
1348f59d82ffSelric {"HOBO", 1224},
1349f59d82ffSelric {"HOC", 219},
1350f59d82ffSelric {"HOCK", 1225},
1351f59d82ffSelric {"HOE", 220},
1352f59d82ffSelric {"HOFF", 1226},
1353f59d82ffSelric {"HOG", 221},
1354f59d82ffSelric {"HOLD", 1227},
1355f59d82ffSelric {"HOLE", 1228},
1356f59d82ffSelric {"HOLM", 1229},
1357f59d82ffSelric {"HOLT", 1230},
1358f59d82ffSelric {"HOME", 1231},
1359f59d82ffSelric {"HONE", 1232},
1360f59d82ffSelric {"HONK", 1233},
1361f59d82ffSelric {"HOOD", 1234},
1362f59d82ffSelric {"HOOF", 1235},
1363f59d82ffSelric {"HOOK", 1236},
1364f59d82ffSelric {"HOOT", 1237},
1365f59d82ffSelric {"HOP", 222},
1366f59d82ffSelric {"HORN", 1238},
1367f59d82ffSelric {"HOSE", 1239},
1368f59d82ffSelric {"HOST", 1240},
1369f59d82ffSelric {"HOT", 223},
1370f59d82ffSelric {"HOUR", 1241},
1371f59d82ffSelric {"HOVE", 1242},
1372f59d82ffSelric {"HOW", 224},
1373f59d82ffSelric {"HOWE", 1243},
1374f59d82ffSelric {"HOWL", 1244},
1375f59d82ffSelric {"HOYT", 1245},
1376f59d82ffSelric {"HUB", 225},
1377f59d82ffSelric {"HUCK", 1246},
1378f59d82ffSelric {"HUE", 226},
1379f59d82ffSelric {"HUED", 1247},
1380f59d82ffSelric {"HUFF", 1248},
1381f59d82ffSelric {"HUG", 227},
1382f59d82ffSelric {"HUGE", 1249},
1383f59d82ffSelric {"HUGH", 1250},
1384f59d82ffSelric {"HUGO", 1251},
1385f59d82ffSelric {"HUH", 228},
1386f59d82ffSelric {"HULK", 1252},
1387f59d82ffSelric {"HULL", 1253},
1388f59d82ffSelric {"HUM", 229},
1389f59d82ffSelric {"HUNK", 1254},
1390f59d82ffSelric {"HUNT", 1255},
1391f59d82ffSelric {"HURD", 1256},
1392f59d82ffSelric {"HURL", 1257},
1393f59d82ffSelric {"HURT", 1258},
1394f59d82ffSelric {"HUSH", 1259},
1395f59d82ffSelric {"HUT", 230},
1396f59d82ffSelric {"HYDE", 1260},
1397f59d82ffSelric {"HYMN", 1261},
1398f59d82ffSelric {"I", 231},
1399f59d82ffSelric {"IBIS", 1262},
1400f59d82ffSelric {"ICON", 1263},
1401f59d82ffSelric {"ICY", 232},
1402f59d82ffSelric {"IDA", 233},
1403f59d82ffSelric {"IDEA", 1264},
1404f59d82ffSelric {"IDLE", 1265},
1405f59d82ffSelric {"IF", 234},
1406f59d82ffSelric {"IFFY", 1266},
1407f59d82ffSelric {"IKE", 235},
1408f59d82ffSelric {"ILL", 236},
1409f59d82ffSelric {"INCA", 1267},
1410f59d82ffSelric {"INCH", 1268},
1411f59d82ffSelric {"INK", 237},
1412f59d82ffSelric {"INN", 238},
1413f59d82ffSelric {"INTO", 1269},
1414f59d82ffSelric {"IO", 239},
1415f59d82ffSelric {"ION", 240},
1416f59d82ffSelric {"IONS", 1270},
1417f59d82ffSelric {"IOTA", 1271},
1418f59d82ffSelric {"IOWA", 1272},
1419f59d82ffSelric {"IQ", 241},
1420f59d82ffSelric {"IRA", 242},
1421f59d82ffSelric {"IRE", 243},
1422f59d82ffSelric {"IRIS", 1273},
1423f59d82ffSelric {"IRK", 244},
1424f59d82ffSelric {"IRMA", 1274},
1425f59d82ffSelric {"IRON", 1275},
1426f59d82ffSelric {"IS", 245},
1427f59d82ffSelric {"ISLE", 1276},
1428f59d82ffSelric {"IT", 246},
1429f59d82ffSelric {"ITCH", 1277},
1430f59d82ffSelric {"ITEM", 1278},
1431f59d82ffSelric {"ITS", 247},
1432f59d82ffSelric {"IVAN", 1279},
1433f59d82ffSelric {"IVY", 248},
1434f59d82ffSelric {"JAB", 249},
1435f59d82ffSelric {"JACK", 1280},
1436f59d82ffSelric {"JADE", 1281},
1437f59d82ffSelric {"JAG", 250},
1438f59d82ffSelric {"JAIL", 1282},
1439f59d82ffSelric {"JAKE", 1283},
1440f59d82ffSelric {"JAM", 251},
1441f59d82ffSelric {"JAN", 252},
1442f59d82ffSelric {"JANE", 1284},
1443f59d82ffSelric {"JAR", 253},
1444f59d82ffSelric {"JAVA", 1285},
1445f59d82ffSelric {"JAW", 254},
1446f59d82ffSelric {"JAY", 255},
1447f59d82ffSelric {"JEAN", 1286},
1448f59d82ffSelric {"JEFF", 1287},
1449f59d82ffSelric {"JERK", 1288},
1450f59d82ffSelric {"JESS", 1289},
1451f59d82ffSelric {"JEST", 1290},
1452f59d82ffSelric {"JET", 256},
1453f59d82ffSelric {"JIBE", 1291},
1454f59d82ffSelric {"JIG", 257},
1455f59d82ffSelric {"JILL", 1292},
1456f59d82ffSelric {"JILT", 1293},
1457f59d82ffSelric {"JIM", 258},
1458f59d82ffSelric {"JIVE", 1294},
1459f59d82ffSelric {"JO", 259},
1460f59d82ffSelric {"JOAN", 1295},
1461f59d82ffSelric {"JOB", 260},
1462f59d82ffSelric {"JOBS", 1296},
1463f59d82ffSelric {"JOCK", 1297},
1464f59d82ffSelric {"JOE", 261},
1465f59d82ffSelric {"JOEL", 1298},
1466f59d82ffSelric {"JOEY", 1299},
1467f59d82ffSelric {"JOG", 262},
1468f59d82ffSelric {"JOHN", 1300},
1469f59d82ffSelric {"JOIN", 1301},
1470f59d82ffSelric {"JOKE", 1302},
1471f59d82ffSelric {"JOLT", 1303},
1472f59d82ffSelric {"JOT", 263},
1473f59d82ffSelric {"JOVE", 1304},
1474f59d82ffSelric {"JOY", 264},
1475f59d82ffSelric {"JUDD", 1305},
1476f59d82ffSelric {"JUDE", 1306},
1477f59d82ffSelric {"JUDO", 1307},
1478f59d82ffSelric {"JUDY", 1308},
1479f59d82ffSelric {"JUG", 265},
1480f59d82ffSelric {"JUJU", 1309},
1481f59d82ffSelric {"JUKE", 1310},
1482f59d82ffSelric {"JULY", 1311},
1483f59d82ffSelric {"JUNE", 1312},
1484f59d82ffSelric {"JUNK", 1313},
1485f59d82ffSelric {"JUNO", 1314},
1486f59d82ffSelric {"JURY", 1315},
1487f59d82ffSelric {"JUST", 1316},
1488f59d82ffSelric {"JUT", 266},
1489f59d82ffSelric {"JUTE", 1317},
1490f59d82ffSelric {"KAHN", 1318},
1491f59d82ffSelric {"KALE", 1319},
1492f59d82ffSelric {"KANE", 1320},
1493f59d82ffSelric {"KANT", 1321},
1494f59d82ffSelric {"KARL", 1322},
1495f59d82ffSelric {"KATE", 1323},
1496f59d82ffSelric {"KAY", 267},
1497f59d82ffSelric {"KEEL", 1324},
1498f59d82ffSelric {"KEEN", 1325},
1499f59d82ffSelric {"KEG", 268},
1500f59d82ffSelric {"KEN", 269},
1501f59d82ffSelric {"KENO", 1326},
1502f59d82ffSelric {"KENT", 1327},
1503f59d82ffSelric {"KERN", 1328},
1504f59d82ffSelric {"KERR", 1329},
1505f59d82ffSelric {"KEY", 270},
1506f59d82ffSelric {"KEYS", 1330},
1507f59d82ffSelric {"KICK", 1331},
1508f59d82ffSelric {"KID", 271},
1509f59d82ffSelric {"KILL", 1332},
1510f59d82ffSelric {"KIM", 272},
1511f59d82ffSelric {"KIN", 273},
1512f59d82ffSelric {"KIND", 1333},
1513f59d82ffSelric {"KING", 1334},
1514f59d82ffSelric {"KIRK", 1335},
1515f59d82ffSelric {"KISS", 1336},
1516f59d82ffSelric {"KIT", 274},
1517f59d82ffSelric {"KITE", 1337},
1518f59d82ffSelric {"KLAN", 1338},
1519f59d82ffSelric {"KNEE", 1339},
1520f59d82ffSelric {"KNEW", 1340},
1521f59d82ffSelric {"KNIT", 1341},
1522f59d82ffSelric {"KNOB", 1342},
1523f59d82ffSelric {"KNOT", 1343},
1524f59d82ffSelric {"KNOW", 1344},
1525f59d82ffSelric {"KOCH", 1345},
1526f59d82ffSelric {"KONG", 1346},
1527f59d82ffSelric {"KUDO", 1347},
1528f59d82ffSelric {"KURD", 1348},
1529f59d82ffSelric {"KURT", 1349},
1530f59d82ffSelric {"KYLE", 1350},
1531f59d82ffSelric {"LA", 275},
1532f59d82ffSelric {"LAB", 276},
1533f59d82ffSelric {"LAC", 277},
1534f59d82ffSelric {"LACE", 1351},
1535f59d82ffSelric {"LACK", 1352},
1536f59d82ffSelric {"LACY", 1353},
1537f59d82ffSelric {"LAD", 278},
1538f59d82ffSelric {"LADY", 1354},
1539f59d82ffSelric {"LAG", 279},
1540f59d82ffSelric {"LAID", 1355},
1541f59d82ffSelric {"LAIN", 1356},
1542f59d82ffSelric {"LAIR", 1357},
1543f59d82ffSelric {"LAKE", 1358},
1544f59d82ffSelric {"LAM", 280},
1545f59d82ffSelric {"LAMB", 1359},
1546f59d82ffSelric {"LAME", 1360},
1547f59d82ffSelric {"LAND", 1361},
1548f59d82ffSelric {"LANE", 1362},
1549f59d82ffSelric {"LANG", 1363},
1550f59d82ffSelric {"LAP", 281},
1551f59d82ffSelric {"LARD", 1364},
1552f59d82ffSelric {"LARK", 1365},
1553f59d82ffSelric {"LASS", 1366},
1554f59d82ffSelric {"LAST", 1367},
1555f59d82ffSelric {"LATE", 1368},
1556f59d82ffSelric {"LAUD", 1369},
1557f59d82ffSelric {"LAVA", 1370},
1558f59d82ffSelric {"LAW", 282},
1559f59d82ffSelric {"LAWN", 1371},
1560f59d82ffSelric {"LAWS", 1372},
1561f59d82ffSelric {"LAY", 283},
1562f59d82ffSelric {"LAYS", 1373},
1563f59d82ffSelric {"LEA", 284},
1564f59d82ffSelric {"LEAD", 1374},
1565f59d82ffSelric {"LEAF", 1375},
1566f59d82ffSelric {"LEAK", 1376},
1567f59d82ffSelric {"LEAN", 1377},
1568f59d82ffSelric {"LEAR", 1378},
1569f59d82ffSelric {"LED", 285},
1570f59d82ffSelric {"LEE", 286},
1571f59d82ffSelric {"LEEK", 1379},
1572f59d82ffSelric {"LEER", 1380},
1573f59d82ffSelric {"LEFT", 1381},
1574f59d82ffSelric {"LEG", 287},
1575f59d82ffSelric {"LEN", 288},
1576f59d82ffSelric {"LEND", 1382},
1577f59d82ffSelric {"LENS", 1383},
1578f59d82ffSelric {"LENT", 1384},
1579f59d82ffSelric {"LEO", 289},
1580f59d82ffSelric {"LEON", 1385},
1581f59d82ffSelric {"LESK", 1386},
1582f59d82ffSelric {"LESS", 1387},
1583f59d82ffSelric {"LEST", 1388},
1584f59d82ffSelric {"LET", 290},
1585f59d82ffSelric {"LETS", 1389},
1586f59d82ffSelric {"LEW", 291},
1587f59d82ffSelric {"LIAR", 1390},
1588f59d82ffSelric {"LICE", 1391},
1589f59d82ffSelric {"LICK", 1392},
1590f59d82ffSelric {"LID", 292},
1591f59d82ffSelric {"LIE", 293},
1592f59d82ffSelric {"LIED", 1393},
1593f59d82ffSelric {"LIEN", 1394},
1594f59d82ffSelric {"LIES", 1395},
1595f59d82ffSelric {"LIEU", 1396},
1596f59d82ffSelric {"LIFE", 1397},
1597f59d82ffSelric {"LIFT", 1398},
1598f59d82ffSelric {"LIKE", 1399},
1599f59d82ffSelric {"LILA", 1400},
1600f59d82ffSelric {"LILT", 1401},
1601f59d82ffSelric {"LILY", 1402},
1602f59d82ffSelric {"LIMA", 1403},
1603f59d82ffSelric {"LIMB", 1404},
1604f59d82ffSelric {"LIME", 1405},
1605f59d82ffSelric {"LIN", 294},
1606f59d82ffSelric {"LIND", 1406},
1607f59d82ffSelric {"LINE", 1407},
1608f59d82ffSelric {"LINK", 1408},
1609f59d82ffSelric {"LINT", 1409},
1610f59d82ffSelric {"LION", 1410},
1611f59d82ffSelric {"LIP", 295},
1612f59d82ffSelric {"LISA", 1411},
1613f59d82ffSelric {"LIST", 1412},
1614f59d82ffSelric {"LIT", 296},
1615f59d82ffSelric {"LIVE", 1413},
1616f59d82ffSelric {"LO", 297},
1617f59d82ffSelric {"LOAD", 1414},
1618f59d82ffSelric {"LOAF", 1415},
1619f59d82ffSelric {"LOAM", 1416},
1620f59d82ffSelric {"LOAN", 1417},
1621f59d82ffSelric {"LOB", 298},
1622f59d82ffSelric {"LOCK", 1418},
1623f59d82ffSelric {"LOFT", 1419},
1624f59d82ffSelric {"LOG", 299},
1625f59d82ffSelric {"LOGE", 1420},
1626f59d82ffSelric {"LOIS", 1421},
1627f59d82ffSelric {"LOLA", 1422},
1628f59d82ffSelric {"LONE", 1423},
1629f59d82ffSelric {"LONG", 1424},
1630f59d82ffSelric {"LOOK", 1425},
1631f59d82ffSelric {"LOON", 1426},
1632f59d82ffSelric {"LOOT", 1427},
1633f59d82ffSelric {"LOP", 300},
1634f59d82ffSelric {"LORD", 1428},
1635f59d82ffSelric {"LORE", 1429},
1636f59d82ffSelric {"LOS", 301},
1637f59d82ffSelric {"LOSE", 1430},
1638f59d82ffSelric {"LOSS", 1431},
1639f59d82ffSelric {"LOST", 1432},
1640f59d82ffSelric {"LOT", 302},
1641f59d82ffSelric {"LOU", 303},
1642f59d82ffSelric {"LOUD", 1433},
1643f59d82ffSelric {"LOVE", 1434},
1644f59d82ffSelric {"LOW", 304},
1645f59d82ffSelric {"LOWE", 1435},
1646f59d82ffSelric {"LOY", 305},
1647f59d82ffSelric {"LUCK", 1436},
1648f59d82ffSelric {"LUCY", 1437},
1649f59d82ffSelric {"LUG", 306},
1650f59d82ffSelric {"LUGE", 1438},
1651f59d82ffSelric {"LUKE", 1439},
1652f59d82ffSelric {"LULU", 1440},
1653f59d82ffSelric {"LUND", 1441},
1654f59d82ffSelric {"LUNG", 1442},
1655f59d82ffSelric {"LURA", 1443},
1656f59d82ffSelric {"LURE", 1444},
1657f59d82ffSelric {"LURK", 1445},
1658f59d82ffSelric {"LUSH", 1446},
1659f59d82ffSelric {"LUST", 1447},
1660f59d82ffSelric {"LYE", 307},
1661f59d82ffSelric {"LYLE", 1448},
1662f59d82ffSelric {"LYNN", 1449},
1663f59d82ffSelric {"LYON", 1450},
1664f59d82ffSelric {"LYRA", 1451},
1665f59d82ffSelric {"MA", 308},
1666f59d82ffSelric {"MAC", 309},
1667f59d82ffSelric {"MACE", 1452},
1668f59d82ffSelric {"MAD", 310},
1669f59d82ffSelric {"MADE", 1453},
1670f59d82ffSelric {"MAE", 311},
1671f59d82ffSelric {"MAGI", 1454},
1672f59d82ffSelric {"MAID", 1455},
1673f59d82ffSelric {"MAIL", 1456},
1674f59d82ffSelric {"MAIN", 1457},
1675f59d82ffSelric {"MAKE", 1458},
1676f59d82ffSelric {"MALE", 1459},
1677f59d82ffSelric {"MALI", 1460},
1678f59d82ffSelric {"MALL", 1461},
1679f59d82ffSelric {"MALT", 1462},
1680f59d82ffSelric {"MAN", 312},
1681f59d82ffSelric {"MANA", 1463},
1682f59d82ffSelric {"MANN", 1464},
1683f59d82ffSelric {"MANY", 1465},
1684f59d82ffSelric {"MAO", 313},
1685f59d82ffSelric {"MAP", 314},
1686f59d82ffSelric {"MARC", 1466},
1687f59d82ffSelric {"MARE", 1467},
1688f59d82ffSelric {"MARK", 1468},
1689f59d82ffSelric {"MARS", 1469},
1690f59d82ffSelric {"MART", 1470},
1691f59d82ffSelric {"MARY", 1471},
1692f59d82ffSelric {"MASH", 1472},
1693f59d82ffSelric {"MASK", 1473},
1694f59d82ffSelric {"MASS", 1474},
1695f59d82ffSelric {"MAST", 1475},
1696f59d82ffSelric {"MAT", 315},
1697f59d82ffSelric {"MATE", 1476},
1698f59d82ffSelric {"MATH", 1477},
1699f59d82ffSelric {"MAUL", 1478},
1700f59d82ffSelric {"MAW", 316},
1701f59d82ffSelric {"MAY", 317},
1702f59d82ffSelric {"MAYO", 1479},
1703f59d82ffSelric {"ME", 318},
1704f59d82ffSelric {"MEAD", 1480},
1705f59d82ffSelric {"MEAL", 1481},
1706f59d82ffSelric {"MEAN", 1482},
1707f59d82ffSelric {"MEAT", 1483},
1708f59d82ffSelric {"MEEK", 1484},
1709f59d82ffSelric {"MEET", 1485},
1710f59d82ffSelric {"MEG", 319},
1711f59d82ffSelric {"MEL", 320},
1712f59d82ffSelric {"MELD", 1486},
1713f59d82ffSelric {"MELT", 1487},
1714f59d82ffSelric {"MEMO", 1488},
1715f59d82ffSelric {"MEN", 321},
1716f59d82ffSelric {"MEND", 1489},
1717f59d82ffSelric {"MENU", 1490},
1718f59d82ffSelric {"MERT", 1491},
1719f59d82ffSelric {"MESH", 1492},
1720f59d82ffSelric {"MESS", 1493},
1721f59d82ffSelric {"MET", 322},
1722f59d82ffSelric {"MEW", 323},
1723f59d82ffSelric {"MICE", 1494},
1724f59d82ffSelric {"MID", 324},
1725f59d82ffSelric {"MIKE", 1495},
1726f59d82ffSelric {"MILD", 1496},
1727f59d82ffSelric {"MILE", 1497},
1728f59d82ffSelric {"MILK", 1498},
1729f59d82ffSelric {"MILL", 1499},
1730f59d82ffSelric {"MILT", 1500},
1731f59d82ffSelric {"MIMI", 1501},
1732f59d82ffSelric {"MIN", 325},
1733f59d82ffSelric {"MIND", 1502},
1734f59d82ffSelric {"MINE", 1503},
1735f59d82ffSelric {"MINI", 1504},
1736f59d82ffSelric {"MINK", 1505},
1737f59d82ffSelric {"MINT", 1506},
1738f59d82ffSelric {"MIRE", 1507},
1739f59d82ffSelric {"MISS", 1508},
1740f59d82ffSelric {"MIST", 1509},
1741f59d82ffSelric {"MIT", 326},
1742f59d82ffSelric {"MITE", 1510},
1743f59d82ffSelric {"MITT", 1511},
1744f59d82ffSelric {"MOAN", 1512},
1745f59d82ffSelric {"MOAT", 1513},
1746f59d82ffSelric {"MOB", 327},
1747f59d82ffSelric {"MOCK", 1514},
1748f59d82ffSelric {"MOD", 328},
1749f59d82ffSelric {"MODE", 1515},
1750f59d82ffSelric {"MOE", 329},
1751f59d82ffSelric {"MOLD", 1516},
1752f59d82ffSelric {"MOLE", 1517},
1753f59d82ffSelric {"MOLL", 1518},
1754f59d82ffSelric {"MOLT", 1519},
1755f59d82ffSelric {"MONA", 1520},
1756f59d82ffSelric {"MONK", 1521},
1757f59d82ffSelric {"MONT", 1522},
1758f59d82ffSelric {"MOO", 330},
1759f59d82ffSelric {"MOOD", 1523},
1760f59d82ffSelric {"MOON", 1524},
1761f59d82ffSelric {"MOOR", 1525},
1762f59d82ffSelric {"MOOT", 1526},
1763f59d82ffSelric {"MOP", 331},
1764f59d82ffSelric {"MORE", 1527},
1765f59d82ffSelric {"MORN", 1528},
1766f59d82ffSelric {"MORT", 1529},
1767f59d82ffSelric {"MOS", 332},
1768f59d82ffSelric {"MOSS", 1530},
1769f59d82ffSelric {"MOST", 1531},
1770f59d82ffSelric {"MOT", 333},
1771f59d82ffSelric {"MOTH", 1532},
1772f59d82ffSelric {"MOVE", 1533},
1773f59d82ffSelric {"MOW", 334},
1774f59d82ffSelric {"MUCH", 1534},
1775f59d82ffSelric {"MUCK", 1535},
1776f59d82ffSelric {"MUD", 335},
1777f59d82ffSelric {"MUDD", 1536},
1778f59d82ffSelric {"MUFF", 1537},
1779f59d82ffSelric {"MUG", 336},
1780f59d82ffSelric {"MULE", 1538},
1781f59d82ffSelric {"MULL", 1539},
1782f59d82ffSelric {"MUM", 337},
1783f59d82ffSelric {"MURK", 1540},
1784f59d82ffSelric {"MUSH", 1541},
1785f59d82ffSelric {"MUST", 1542},
1786f59d82ffSelric {"MUTE", 1543},
1787f59d82ffSelric {"MUTT", 1544},
1788f59d82ffSelric {"MY", 338},
1789f59d82ffSelric {"MYRA", 1545},
1790f59d82ffSelric {"MYTH", 1546},
1791f59d82ffSelric {"NAB", 339},
1792f59d82ffSelric {"NAG", 340},
1793f59d82ffSelric {"NAGY", 1547},
1794f59d82ffSelric {"NAIL", 1548},
1795f59d82ffSelric {"NAIR", 1549},
1796f59d82ffSelric {"NAME", 1550},
1797f59d82ffSelric {"NAN", 341},
1798f59d82ffSelric {"NAP", 342},
1799f59d82ffSelric {"NARY", 1551},
1800f59d82ffSelric {"NASH", 1552},
1801f59d82ffSelric {"NAT", 343},
1802f59d82ffSelric {"NAVE", 1553},
1803f59d82ffSelric {"NAVY", 1554},
1804f59d82ffSelric {"NAY", 344},
1805f59d82ffSelric {"NE", 345},
1806f59d82ffSelric {"NEAL", 1555},
1807f59d82ffSelric {"NEAR", 1556},
1808f59d82ffSelric {"NEAT", 1557},
1809f59d82ffSelric {"NECK", 1558},
1810f59d82ffSelric {"NED", 346},
1811f59d82ffSelric {"NEE", 347},
1812f59d82ffSelric {"NEED", 1559},
1813f59d82ffSelric {"NEIL", 1560},
1814f59d82ffSelric {"NELL", 1561},
1815f59d82ffSelric {"NEON", 1562},
1816f59d82ffSelric {"NERO", 1563},
1817f59d82ffSelric {"NESS", 1564},
1818f59d82ffSelric {"NEST", 1565},
1819f59d82ffSelric {"NET", 348},
1820f59d82ffSelric {"NEW", 349},
1821f59d82ffSelric {"NEWS", 1566},
1822f59d82ffSelric {"NEWT", 1567},
1823f59d82ffSelric {"NIB", 350},
1824f59d82ffSelric {"NIBS", 1568},
1825f59d82ffSelric {"NICE", 1569},
1826f59d82ffSelric {"NICK", 1570},
1827f59d82ffSelric {"NIL", 351},
1828f59d82ffSelric {"NILE", 1571},
1829f59d82ffSelric {"NINA", 1572},
1830f59d82ffSelric {"NINE", 1573},
1831f59d82ffSelric {"NIP", 352},
1832f59d82ffSelric {"NIT", 353},
1833f59d82ffSelric {"NO", 354},
1834f59d82ffSelric {"NOAH", 1574},
1835f59d82ffSelric {"NOB", 355},
1836f59d82ffSelric {"NOD", 356},
1837f59d82ffSelric {"NODE", 1575},
1838f59d82ffSelric {"NOEL", 1576},
1839f59d82ffSelric {"NOLL", 1577},
1840f59d82ffSelric {"NON", 357},
1841f59d82ffSelric {"NONE", 1578},
1842f59d82ffSelric {"NOOK", 1579},
1843f59d82ffSelric {"NOON", 1580},
1844f59d82ffSelric {"NOR", 358},
1845f59d82ffSelric {"NORM", 1581},
1846f59d82ffSelric {"NOSE", 1582},
1847f59d82ffSelric {"NOT", 359},
1848f59d82ffSelric {"NOTE", 1583},
1849f59d82ffSelric {"NOUN", 1584},
1850f59d82ffSelric {"NOV", 360},
1851f59d82ffSelric {"NOVA", 1585},
1852f59d82ffSelric {"NOW", 361},
1853f59d82ffSelric {"NU", 362},
1854f59d82ffSelric {"NUDE", 1586},
1855f59d82ffSelric {"NULL", 1587},
1856f59d82ffSelric {"NUMB", 1588},
1857f59d82ffSelric {"NUN", 363},
1858f59d82ffSelric {"NUT", 364},
1859f59d82ffSelric {"O", 365},
1860f59d82ffSelric {"OAF", 366},
1861f59d82ffSelric {"OAK", 367},
1862f59d82ffSelric {"OAR", 368},
1863f59d82ffSelric {"OAT", 369},
1864f59d82ffSelric {"OATH", 1589},
1865f59d82ffSelric {"OBEY", 1590},
1866f59d82ffSelric {"OBOE", 1591},
1867f59d82ffSelric {"ODD", 370},
1868f59d82ffSelric {"ODE", 371},
1869f59d82ffSelric {"ODIN", 1592},
1870f59d82ffSelric {"OF", 372},
1871f59d82ffSelric {"OFF", 373},
1872f59d82ffSelric {"OFT", 374},
1873f59d82ffSelric {"OH", 375},
1874f59d82ffSelric {"OHIO", 1593},
1875f59d82ffSelric {"OIL", 376},
1876f59d82ffSelric {"OILY", 1594},
1877f59d82ffSelric {"OINT", 1595},
1878f59d82ffSelric {"OK", 377},
1879f59d82ffSelric {"OKAY", 1596},
1880f59d82ffSelric {"OLAF", 1597},
1881f59d82ffSelric {"OLD", 378},
1882f59d82ffSelric {"OLDY", 1598},
1883f59d82ffSelric {"OLGA", 1599},
1884f59d82ffSelric {"OLIN", 1600},
1885f59d82ffSelric {"OMAN", 1601},
1886f59d82ffSelric {"OMEN", 1602},
1887f59d82ffSelric {"OMIT", 1603},
1888f59d82ffSelric {"ON", 379},
1889f59d82ffSelric {"ONCE", 1604},
1890f59d82ffSelric {"ONE", 380},
1891f59d82ffSelric {"ONES", 1605},
1892f59d82ffSelric {"ONLY", 1606},
1893f59d82ffSelric {"ONTO", 1607},
1894f59d82ffSelric {"ONUS", 1608},
1895f59d82ffSelric {"OR", 381},
1896f59d82ffSelric {"ORAL", 1609},
1897f59d82ffSelric {"ORB", 382},
1898f59d82ffSelric {"ORE", 383},
1899f59d82ffSelric {"ORGY", 1610},
1900f59d82ffSelric {"ORR", 384},
1901f59d82ffSelric {"OS", 385},
1902f59d82ffSelric {"OSLO", 1611},
1903f59d82ffSelric {"OTIS", 1612},
1904f59d82ffSelric {"OTT", 386},
1905f59d82ffSelric {"OTTO", 1613},
1906f59d82ffSelric {"OUCH", 1614},
1907f59d82ffSelric {"OUR", 387},
1908f59d82ffSelric {"OUST", 1615},
1909f59d82ffSelric {"OUT", 388},
1910f59d82ffSelric {"OUTS", 1616},
1911f59d82ffSelric {"OVA", 389},
1912f59d82ffSelric {"OVAL", 1617},
1913f59d82ffSelric {"OVEN", 1618},
1914f59d82ffSelric {"OVER", 1619},
1915f59d82ffSelric {"OW", 390},
1916f59d82ffSelric {"OWE", 391},
1917f59d82ffSelric {"OWL", 392},
1918f59d82ffSelric {"OWLY", 1620},
1919f59d82ffSelric {"OWN", 393},
1920f59d82ffSelric {"OWNS", 1621},
1921f59d82ffSelric {"OX", 394},
1922f59d82ffSelric {"PA", 395},
1923f59d82ffSelric {"PAD", 396},
1924f59d82ffSelric {"PAL", 397},
1925f59d82ffSelric {"PAM", 398},
1926f59d82ffSelric {"PAN", 399},
1927f59d82ffSelric {"PAP", 400},
1928f59d82ffSelric {"PAR", 401},
1929f59d82ffSelric {"PAT", 402},
1930f59d82ffSelric {"PAW", 403},
1931f59d82ffSelric {"PAY", 404},
1932f59d82ffSelric {"PEA", 405},
1933f59d82ffSelric {"PEG", 406},
1934f59d82ffSelric {"PEN", 407},
1935f59d82ffSelric {"PEP", 408},
1936f59d82ffSelric {"PER", 409},
1937f59d82ffSelric {"PET", 410},
1938f59d82ffSelric {"PEW", 411},
1939f59d82ffSelric {"PHI", 412},
1940f59d82ffSelric {"PI", 413},
1941f59d82ffSelric {"PIE", 414},
1942f59d82ffSelric {"PIN", 415},
1943f59d82ffSelric {"PIT", 416},
1944f59d82ffSelric {"PLY", 417},
1945f59d82ffSelric {"PO", 418},
1946f59d82ffSelric {"POD", 419},
1947f59d82ffSelric {"POE", 420},
1948f59d82ffSelric {"POP", 421},
1949f59d82ffSelric {"POT", 422},
1950f59d82ffSelric {"POW", 423},
1951f59d82ffSelric {"PRO", 424},
1952f59d82ffSelric {"PRY", 425},
1953f59d82ffSelric {"PUB", 426},
1954f59d82ffSelric {"PUG", 427},
1955f59d82ffSelric {"PUN", 428},
1956f59d82ffSelric {"PUP", 429},
1957f59d82ffSelric {"PUT", 430},
1958f59d82ffSelric {"QUAD", 1622},
1959f59d82ffSelric {"QUIT", 1623},
1960f59d82ffSelric {"QUO", 431},
1961f59d82ffSelric {"QUOD", 1624},
1962f59d82ffSelric {"RACE", 1625},
1963f59d82ffSelric {"RACK", 1626},
1964f59d82ffSelric {"RACY", 1627},
1965f59d82ffSelric {"RAFT", 1628},
1966f59d82ffSelric {"RAG", 432},
1967f59d82ffSelric {"RAGE", 1629},
1968f59d82ffSelric {"RAID", 1630},
1969f59d82ffSelric {"RAIL", 1631},
1970f59d82ffSelric {"RAIN", 1632},
1971f59d82ffSelric {"RAKE", 1633},
1972f59d82ffSelric {"RAM", 433},
1973f59d82ffSelric {"RAN", 434},
1974f59d82ffSelric {"RANK", 1634},
1975f59d82ffSelric {"RANT", 1635},
1976f59d82ffSelric {"RAP", 435},
1977f59d82ffSelric {"RARE", 1636},
1978f59d82ffSelric {"RASH", 1637},
1979f59d82ffSelric {"RAT", 436},
1980f59d82ffSelric {"RATE", 1638},
1981f59d82ffSelric {"RAVE", 1639},
1982f59d82ffSelric {"RAW", 437},
1983f59d82ffSelric {"RAY", 438},
1984f59d82ffSelric {"RAYS", 1640},
1985f59d82ffSelric {"READ", 1641},
1986f59d82ffSelric {"REAL", 1642},
1987f59d82ffSelric {"REAM", 1643},
1988f59d82ffSelric {"REAR", 1644},
1989f59d82ffSelric {"REB", 439},
1990f59d82ffSelric {"RECK", 1645},
1991f59d82ffSelric {"RED", 440},
1992f59d82ffSelric {"REED", 1646},
1993f59d82ffSelric {"REEF", 1647},
1994f59d82ffSelric {"REEK", 1648},
1995f59d82ffSelric {"REEL", 1649},
1996f59d82ffSelric {"REID", 1650},
1997f59d82ffSelric {"REIN", 1651},
1998f59d82ffSelric {"RENA", 1652},
1999f59d82ffSelric {"REND", 1653},
2000f59d82ffSelric {"RENT", 1654},
2001f59d82ffSelric {"REP", 441},
2002f59d82ffSelric {"REST", 1655},
2003f59d82ffSelric {"RET", 442},
2004f59d82ffSelric {"RIB", 443},
2005f59d82ffSelric {"RICE", 1656},
2006f59d82ffSelric {"RICH", 1657},
2007f59d82ffSelric {"RICK", 1658},
2008f59d82ffSelric {"RID", 444},
2009f59d82ffSelric {"RIDE", 1659},
2010f59d82ffSelric {"RIFT", 1660},
2011f59d82ffSelric {"RIG", 445},
2012f59d82ffSelric {"RILL", 1661},
2013f59d82ffSelric {"RIM", 446},
2014f59d82ffSelric {"RIME", 1662},
2015f59d82ffSelric {"RING", 1663},
2016f59d82ffSelric {"RINK", 1664},
2017f59d82ffSelric {"RIO", 447},
2018f59d82ffSelric {"RIP", 448},
2019f59d82ffSelric {"RISE", 1665},
2020f59d82ffSelric {"RISK", 1666},
2021f59d82ffSelric {"RITE", 1667},
2022f59d82ffSelric {"ROAD", 1668},
2023f59d82ffSelric {"ROAM", 1669},
2024f59d82ffSelric {"ROAR", 1670},
2025f59d82ffSelric {"ROB", 449},
2026f59d82ffSelric {"ROBE", 1671},
2027f59d82ffSelric {"ROCK", 1672},
2028f59d82ffSelric {"ROD", 450},
2029f59d82ffSelric {"RODE", 1673},
2030f59d82ffSelric {"ROE", 451},
2031f59d82ffSelric {"ROIL", 1674},
2032f59d82ffSelric {"ROLL", 1675},
2033f59d82ffSelric {"ROME", 1676},
2034f59d82ffSelric {"RON", 452},
2035f59d82ffSelric {"ROOD", 1677},
2036f59d82ffSelric {"ROOF", 1678},
2037f59d82ffSelric {"ROOK", 1679},
2038f59d82ffSelric {"ROOM", 1680},
2039f59d82ffSelric {"ROOT", 1681},
2040f59d82ffSelric {"ROSA", 1682},
2041f59d82ffSelric {"ROSE", 1683},
2042f59d82ffSelric {"ROSS", 1684},
2043f59d82ffSelric {"ROSY", 1685},
2044f59d82ffSelric {"ROT", 453},
2045f59d82ffSelric {"ROTH", 1686},
2046f59d82ffSelric {"ROUT", 1687},
2047f59d82ffSelric {"ROVE", 1688},
2048f59d82ffSelric {"ROW", 454},
2049f59d82ffSelric {"ROWE", 1689},
2050f59d82ffSelric {"ROWS", 1690},
2051f59d82ffSelric {"ROY", 455},
2052f59d82ffSelric {"RUB", 456},
2053f59d82ffSelric {"RUBE", 1691},
2054f59d82ffSelric {"RUBY", 1692},
2055f59d82ffSelric {"RUDE", 1693},
2056f59d82ffSelric {"RUDY", 1694},
2057f59d82ffSelric {"RUE", 457},
2058f59d82ffSelric {"RUG", 458},
2059f59d82ffSelric {"RUIN", 1695},
2060f59d82ffSelric {"RULE", 1696},
2061f59d82ffSelric {"RUM", 459},
2062f59d82ffSelric {"RUN", 460},
2063f59d82ffSelric {"RUNG", 1697},
2064f59d82ffSelric {"RUNS", 1698},
2065f59d82ffSelric {"RUNT", 1699},
2066f59d82ffSelric {"RUSE", 1700},
2067f59d82ffSelric {"RUSH", 1701},
2068f59d82ffSelric {"RUSK", 1702},
2069f59d82ffSelric {"RUSS", 1703},
2070f59d82ffSelric {"RUST", 1704},
2071f59d82ffSelric {"RUTH", 1705},
2072f59d82ffSelric {"RYE", 461},
2073f59d82ffSelric {"SAC", 462},
2074f59d82ffSelric {"SACK", 1706},
2075f59d82ffSelric {"SAD", 463},
2076f59d82ffSelric {"SAFE", 1707},
2077f59d82ffSelric {"SAG", 464},
2078f59d82ffSelric {"SAGE", 1708},
2079f59d82ffSelric {"SAID", 1709},
2080f59d82ffSelric {"SAIL", 1710},
2081f59d82ffSelric {"SAL", 465},
2082f59d82ffSelric {"SALE", 1711},
2083f59d82ffSelric {"SALK", 1712},
2084f59d82ffSelric {"SALT", 1713},
2085f59d82ffSelric {"SAM", 466},
2086f59d82ffSelric {"SAME", 1714},
2087f59d82ffSelric {"SAN", 467},
2088f59d82ffSelric {"SAND", 1715},
2089f59d82ffSelric {"SANE", 1716},
2090f59d82ffSelric {"SANG", 1717},
2091f59d82ffSelric {"SANK", 1718},
2092f59d82ffSelric {"SAP", 468},
2093f59d82ffSelric {"SARA", 1719},
2094f59d82ffSelric {"SAT", 469},
2095f59d82ffSelric {"SAUL", 1720},
2096f59d82ffSelric {"SAVE", 1721},
2097f59d82ffSelric {"SAW", 470},
2098f59d82ffSelric {"SAY", 471},
2099f59d82ffSelric {"SAYS", 1722},
2100f59d82ffSelric {"SCAN", 1723},
2101f59d82ffSelric {"SCAR", 1724},
2102f59d82ffSelric {"SCAT", 1725},
2103f59d82ffSelric {"SCOT", 1726},
2104f59d82ffSelric {"SEA", 472},
2105f59d82ffSelric {"SEAL", 1727},
2106f59d82ffSelric {"SEAM", 1728},
2107f59d82ffSelric {"SEAR", 1729},
2108f59d82ffSelric {"SEAT", 1730},
2109f59d82ffSelric {"SEC", 473},
2110f59d82ffSelric {"SEE", 474},
2111f59d82ffSelric {"SEED", 1731},
2112f59d82ffSelric {"SEEK", 1732},
2113f59d82ffSelric {"SEEM", 1733},
2114f59d82ffSelric {"SEEN", 1734},
2115f59d82ffSelric {"SEES", 1735},
2116f59d82ffSelric {"SELF", 1736},
2117f59d82ffSelric {"SELL", 1737},
2118f59d82ffSelric {"SEN", 475},
2119f59d82ffSelric {"SEND", 1738},
2120f59d82ffSelric {"SENT", 1739},
2121f59d82ffSelric {"SET", 476},
2122f59d82ffSelric {"SETS", 1740},
2123f59d82ffSelric {"SEW", 477},
2124f59d82ffSelric {"SEWN", 1741},
2125f59d82ffSelric {"SHAG", 1742},
2126f59d82ffSelric {"SHAM", 1743},
2127f59d82ffSelric {"SHAW", 1744},
2128f59d82ffSelric {"SHAY", 1745},
2129f59d82ffSelric {"SHE", 478},
2130f59d82ffSelric {"SHED", 1746},
2131f59d82ffSelric {"SHIM", 1747},
2132f59d82ffSelric {"SHIN", 1748},
2133f59d82ffSelric {"SHOD", 1749},
2134f59d82ffSelric {"SHOE", 1750},
2135f59d82ffSelric {"SHOT", 1751},
2136f59d82ffSelric {"SHOW", 1752},
2137f59d82ffSelric {"SHUN", 1753},
2138f59d82ffSelric {"SHUT", 1754},
2139f59d82ffSelric {"SHY", 479},
2140f59d82ffSelric {"SICK", 1755},
2141f59d82ffSelric {"SIDE", 1756},
2142f59d82ffSelric {"SIFT", 1757},
2143f59d82ffSelric {"SIGH", 1758},
2144f59d82ffSelric {"SIGN", 1759},
2145f59d82ffSelric {"SILK", 1760},
2146f59d82ffSelric {"SILL", 1761},
2147f59d82ffSelric {"SILO", 1762},
2148f59d82ffSelric {"SILT", 1763},
2149f59d82ffSelric {"SIN", 480},
2150f59d82ffSelric {"SINE", 1764},
2151f59d82ffSelric {"SING", 1765},
2152f59d82ffSelric {"SINK", 1766},
2153f59d82ffSelric {"SIP", 481},
2154f59d82ffSelric {"SIR", 482},
2155f59d82ffSelric {"SIRE", 1767},
2156f59d82ffSelric {"SIS", 483},
2157f59d82ffSelric {"SIT", 484},
2158f59d82ffSelric {"SITE", 1768},
2159f59d82ffSelric {"SITS", 1769},
2160f59d82ffSelric {"SITU", 1770},
2161f59d82ffSelric {"SKAT", 1771},
2162f59d82ffSelric {"SKEW", 1772},
2163f59d82ffSelric {"SKI", 485},
2164f59d82ffSelric {"SKID", 1773},
2165f59d82ffSelric {"SKIM", 1774},
2166f59d82ffSelric {"SKIN", 1775},
2167f59d82ffSelric {"SKIT", 1776},
2168f59d82ffSelric {"SKY", 486},
2169f59d82ffSelric {"SLAB", 1777},
2170f59d82ffSelric {"SLAM", 1778},
2171f59d82ffSelric {"SLAT", 1779},
2172f59d82ffSelric {"SLAY", 1780},
2173f59d82ffSelric {"SLED", 1781},
2174f59d82ffSelric {"SLEW", 1782},
2175f59d82ffSelric {"SLID", 1783},
2176f59d82ffSelric {"SLIM", 1784},
2177f59d82ffSelric {"SLIT", 1785},
2178f59d82ffSelric {"SLOB", 1786},
2179f59d82ffSelric {"SLOG", 1787},
2180f59d82ffSelric {"SLOT", 1788},
2181f59d82ffSelric {"SLOW", 1789},
2182f59d82ffSelric {"SLUG", 1790},
2183f59d82ffSelric {"SLUM", 1791},
2184f59d82ffSelric {"SLUR", 1792},
2185f59d82ffSelric {"SLY", 487},
2186f59d82ffSelric {"SMOG", 1793},
2187f59d82ffSelric {"SMUG", 1794},
2188f59d82ffSelric {"SNAG", 1795},
2189f59d82ffSelric {"SNOB", 1796},
2190f59d82ffSelric {"SNOW", 1797},
2191f59d82ffSelric {"SNUB", 1798},
2192f59d82ffSelric {"SNUG", 1799},
2193f59d82ffSelric {"SO", 488},
2194f59d82ffSelric {"SOAK", 1800},
2195f59d82ffSelric {"SOAR", 1801},
2196f59d82ffSelric {"SOB", 489},
2197f59d82ffSelric {"SOCK", 1802},
2198f59d82ffSelric {"SOD", 490},
2199f59d82ffSelric {"SODA", 1803},
2200f59d82ffSelric {"SOFA", 1804},
2201f59d82ffSelric {"SOFT", 1805},
2202f59d82ffSelric {"SOIL", 1806},
2203f59d82ffSelric {"SOLD", 1807},
2204f59d82ffSelric {"SOME", 1808},
2205f59d82ffSelric {"SON", 491},
2206f59d82ffSelric {"SONG", 1809},
2207f59d82ffSelric {"SOON", 1810},
2208f59d82ffSelric {"SOOT", 1811},
2209f59d82ffSelric {"SOP", 492},
2210f59d82ffSelric {"SORE", 1812},
2211f59d82ffSelric {"SORT", 1813},
2212f59d82ffSelric {"SOUL", 1814},
2213f59d82ffSelric {"SOUR", 1815},
2214f59d82ffSelric {"SOW", 493},
2215f59d82ffSelric {"SOWN", 1816},
2216f59d82ffSelric {"SOY", 494},
2217f59d82ffSelric {"SPA", 495},
2218f59d82ffSelric {"SPY", 496},
2219f59d82ffSelric {"STAB", 1817},
2220f59d82ffSelric {"STAG", 1818},
2221f59d82ffSelric {"STAN", 1819},
2222f59d82ffSelric {"STAR", 1820},
2223f59d82ffSelric {"STAY", 1821},
2224f59d82ffSelric {"STEM", 1822},
2225f59d82ffSelric {"STEW", 1823},
2226f59d82ffSelric {"STIR", 1824},
2227f59d82ffSelric {"STOW", 1825},
2228f59d82ffSelric {"STUB", 1826},
2229f59d82ffSelric {"STUN", 1827},
2230f59d82ffSelric {"SUB", 497},
2231f59d82ffSelric {"SUCH", 1828},
2232f59d82ffSelric {"SUD", 498},
2233f59d82ffSelric {"SUDS", 1829},
2234f59d82ffSelric {"SUE", 499},
2235f59d82ffSelric {"SUIT", 1830},
2236f59d82ffSelric {"SULK", 1831},
2237f59d82ffSelric {"SUM", 500},
2238f59d82ffSelric {"SUMS", 1832},
2239f59d82ffSelric {"SUN", 501},
2240f59d82ffSelric {"SUNG", 1833},
2241f59d82ffSelric {"SUNK", 1834},
2242f59d82ffSelric {"SUP", 502},
2243f59d82ffSelric {"SURE", 1835},
2244f59d82ffSelric {"SURF", 1836},
2245f59d82ffSelric {"SWAB", 1837},
2246f59d82ffSelric {"SWAG", 1838},
2247f59d82ffSelric {"SWAM", 1839},
2248f59d82ffSelric {"SWAN", 1840},
2249f59d82ffSelric {"SWAT", 1841},
2250f59d82ffSelric {"SWAY", 1842},
2251f59d82ffSelric {"SWIM", 1843},
2252f59d82ffSelric {"SWUM", 1844},
2253f59d82ffSelric {"TAB", 503},
2254f59d82ffSelric {"TACK", 1845},
2255f59d82ffSelric {"TACT", 1846},
2256f59d82ffSelric {"TAD", 504},
2257f59d82ffSelric {"TAG", 505},
2258f59d82ffSelric {"TAIL", 1847},
2259f59d82ffSelric {"TAKE", 1848},
2260f59d82ffSelric {"TALE", 1849},
2261f59d82ffSelric {"TALK", 1850},
2262f59d82ffSelric {"TALL", 1851},
2263f59d82ffSelric {"TAN", 506},
2264f59d82ffSelric {"TANK", 1852},
2265f59d82ffSelric {"TAP", 507},
2266f59d82ffSelric {"TAR", 508},
2267f59d82ffSelric {"TASK", 1853},
2268f59d82ffSelric {"TATE", 1854},
2269f59d82ffSelric {"TAUT", 1855},
2270f59d82ffSelric {"TEA", 509},
2271f59d82ffSelric {"TEAL", 1856},
2272f59d82ffSelric {"TEAM", 1857},
2273f59d82ffSelric {"TEAR", 1858},
2274f59d82ffSelric {"TECH", 1859},
2275f59d82ffSelric {"TED", 510},
2276f59d82ffSelric {"TEE", 511},
2277f59d82ffSelric {"TEEM", 1860},
2278f59d82ffSelric {"TEEN", 1861},
2279f59d82ffSelric {"TEET", 1862},
2280f59d82ffSelric {"TELL", 1863},
2281f59d82ffSelric {"TEN", 512},
2282f59d82ffSelric {"TEND", 1864},
2283f59d82ffSelric {"TENT", 1865},
2284f59d82ffSelric {"TERM", 1866},
2285f59d82ffSelric {"TERN", 1867},
2286f59d82ffSelric {"TESS", 1868},
2287f59d82ffSelric {"TEST", 1869},
2288f59d82ffSelric {"THAN", 1870},
2289f59d82ffSelric {"THAT", 1871},
2290f59d82ffSelric {"THE", 513},
2291f59d82ffSelric {"THEE", 1872},
2292f59d82ffSelric {"THEM", 1873},
2293f59d82ffSelric {"THEN", 1874},
2294f59d82ffSelric {"THEY", 1875},
2295f59d82ffSelric {"THIN", 1876},
2296f59d82ffSelric {"THIS", 1877},
2297f59d82ffSelric {"THUD", 1878},
2298f59d82ffSelric {"THUG", 1879},
2299f59d82ffSelric {"THY", 514},
2300f59d82ffSelric {"TIC", 515},
2301f59d82ffSelric {"TICK", 1880},
2302f59d82ffSelric {"TIDE", 1881},
2303f59d82ffSelric {"TIDY", 1882},
2304f59d82ffSelric {"TIE", 516},
2305f59d82ffSelric {"TIED", 1883},
2306f59d82ffSelric {"TIER", 1884},
2307f59d82ffSelric {"TILE", 1885},
2308f59d82ffSelric {"TILL", 1886},
2309f59d82ffSelric {"TILT", 1887},
2310f59d82ffSelric {"TIM", 517},
2311f59d82ffSelric {"TIME", 1888},
2312f59d82ffSelric {"TIN", 518},
2313f59d82ffSelric {"TINA", 1889},
2314f59d82ffSelric {"TINE", 1890},
2315f59d82ffSelric {"TINT", 1891},
2316f59d82ffSelric {"TINY", 1892},
2317f59d82ffSelric {"TIP", 519},
2318f59d82ffSelric {"TIRE", 1893},
2319f59d82ffSelric {"TO", 520},
2320f59d82ffSelric {"TOAD", 1894},
2321f59d82ffSelric {"TOE", 521},
2322f59d82ffSelric {"TOG", 522},
2323f59d82ffSelric {"TOGO", 1895},
2324f59d82ffSelric {"TOIL", 1896},
2325f59d82ffSelric {"TOLD", 1897},
2326f59d82ffSelric {"TOLL", 1898},
2327f59d82ffSelric {"TOM", 523},
2328f59d82ffSelric {"TON", 524},
2329f59d82ffSelric {"TONE", 1899},
2330f59d82ffSelric {"TONG", 1900},
2331f59d82ffSelric {"TONY", 1901},
2332f59d82ffSelric {"TOO", 525},
2333f59d82ffSelric {"TOOK", 1902},
2334f59d82ffSelric {"TOOL", 1903},
2335f59d82ffSelric {"TOOT", 1904},
2336f59d82ffSelric {"TOP", 526},
2337f59d82ffSelric {"TORE", 1905},
2338f59d82ffSelric {"TORN", 1906},
2339f59d82ffSelric {"TOTE", 1907},
2340f59d82ffSelric {"TOUR", 1908},
2341f59d82ffSelric {"TOUT", 1909},
2342f59d82ffSelric {"TOW", 527},
2343f59d82ffSelric {"TOWN", 1910},
2344f59d82ffSelric {"TOY", 528},
2345f59d82ffSelric {"TRAG", 1911},
2346f59d82ffSelric {"TRAM", 1912},
2347f59d82ffSelric {"TRAY", 1913},
2348f59d82ffSelric {"TREE", 1914},
2349f59d82ffSelric {"TREK", 1915},
2350f59d82ffSelric {"TRIG", 1916},
2351f59d82ffSelric {"TRIM", 1917},
2352f59d82ffSelric {"TRIO", 1918},
2353f59d82ffSelric {"TROD", 1919},
2354f59d82ffSelric {"TROT", 1920},
2355f59d82ffSelric {"TROY", 1921},
2356f59d82ffSelric {"TRUE", 1922},
2357f59d82ffSelric {"TRY", 529},
2358f59d82ffSelric {"TUB", 530},
2359f59d82ffSelric {"TUBA", 1923},
2360f59d82ffSelric {"TUBE", 1924},
2361f59d82ffSelric {"TUCK", 1925},
2362f59d82ffSelric {"TUFT", 1926},
2363f59d82ffSelric {"TUG", 531},
2364f59d82ffSelric {"TUM", 532},
2365f59d82ffSelric {"TUN", 533},
2366f59d82ffSelric {"TUNA", 1927},
2367f59d82ffSelric {"TUNE", 1928},
2368f59d82ffSelric {"TUNG", 1929},
2369f59d82ffSelric {"TURF", 1930},
2370f59d82ffSelric {"TURN", 1931},
2371f59d82ffSelric {"TUSK", 1932},
2372f59d82ffSelric {"TWIG", 1933},
2373f59d82ffSelric {"TWIN", 1934},
2374f59d82ffSelric {"TWIT", 1935},
2375f59d82ffSelric {"TWO", 534},
2376f59d82ffSelric {"ULAN", 1936},
2377f59d82ffSelric {"UN", 535},
2378f59d82ffSelric {"UNIT", 1937},
2379f59d82ffSelric {"UP", 536},
2380f59d82ffSelric {"URGE", 1938},
2381f59d82ffSelric {"US", 537},
2382f59d82ffSelric {"USE", 538},
2383f59d82ffSelric {"USED", 1939},
2384f59d82ffSelric {"USER", 1940},
2385f59d82ffSelric {"USES", 1941},
2386f59d82ffSelric {"UTAH", 1942},
2387f59d82ffSelric {"VAIL", 1943},
2388f59d82ffSelric {"VAIN", 1944},
2389f59d82ffSelric {"VALE", 1945},
2390f59d82ffSelric {"VAN", 539},
2391f59d82ffSelric {"VARY", 1946},
2392f59d82ffSelric {"VASE", 1947},
2393f59d82ffSelric {"VAST", 1948},
2394f59d82ffSelric {"VAT", 540},
2395f59d82ffSelric {"VEAL", 1949},
2396f59d82ffSelric {"VEDA", 1950},
2397f59d82ffSelric {"VEIL", 1951},
2398f59d82ffSelric {"VEIN", 1952},
2399f59d82ffSelric {"VEND", 1953},
2400f59d82ffSelric {"VENT", 1954},
2401f59d82ffSelric {"VERB", 1955},
2402f59d82ffSelric {"VERY", 1956},
2403f59d82ffSelric {"VET", 541},
2404f59d82ffSelric {"VETO", 1957},
2405f59d82ffSelric {"VICE", 1958},
2406f59d82ffSelric {"VIE", 542},
2407f59d82ffSelric {"VIEW", 1959},
2408f59d82ffSelric {"VINE", 1960},
2409f59d82ffSelric {"VISE", 1961},
2410f59d82ffSelric {"VOID", 1962},
2411f59d82ffSelric {"VOLT", 1963},
2412f59d82ffSelric {"VOTE", 1964},
2413f59d82ffSelric {"WACK", 1965},
2414f59d82ffSelric {"WAD", 543},
2415f59d82ffSelric {"WADE", 1966},
2416f59d82ffSelric {"WAG", 544},
2417f59d82ffSelric {"WAGE", 1967},
2418f59d82ffSelric {"WAIL", 1968},
2419f59d82ffSelric {"WAIT", 1969},
2420f59d82ffSelric {"WAKE", 1970},
2421f59d82ffSelric {"WALE", 1971},
2422f59d82ffSelric {"WALK", 1972},
2423f59d82ffSelric {"WALL", 1973},
2424f59d82ffSelric {"WALT", 1974},
2425f59d82ffSelric {"WAND", 1975},
2426f59d82ffSelric {"WANE", 1976},
2427f59d82ffSelric {"WANG", 1977},
2428f59d82ffSelric {"WANT", 1978},
2429f59d82ffSelric {"WAR", 545},
2430f59d82ffSelric {"WARD", 1979},
2431f59d82ffSelric {"WARM", 1980},
2432f59d82ffSelric {"WARN", 1981},
2433f59d82ffSelric {"WART", 1982},
2434f59d82ffSelric {"WAS", 546},
2435f59d82ffSelric {"WASH", 1983},
2436f59d82ffSelric {"WAST", 1984},
2437f59d82ffSelric {"WATS", 1985},
2438f59d82ffSelric {"WATT", 1986},
2439f59d82ffSelric {"WAVE", 1987},
2440f59d82ffSelric {"WAVY", 1988},
2441f59d82ffSelric {"WAY", 547},
2442f59d82ffSelric {"WAYS", 1989},
2443f59d82ffSelric {"WE", 548},
2444f59d82ffSelric {"WEAK", 1990},
2445f59d82ffSelric {"WEAL", 1991},
2446f59d82ffSelric {"WEAN", 1992},
2447f59d82ffSelric {"WEAR", 1993},
2448f59d82ffSelric {"WEB", 549},
2449f59d82ffSelric {"WED", 550},
2450f59d82ffSelric {"WEE", 551},
2451f59d82ffSelric {"WEED", 1994},
2452f59d82ffSelric {"WEEK", 1995},
2453f59d82ffSelric {"WEIR", 1996},
2454f59d82ffSelric {"WELD", 1997},
2455f59d82ffSelric {"WELL", 1998},
2456f59d82ffSelric {"WELT", 1999},
2457f59d82ffSelric {"WENT", 2000},
2458f59d82ffSelric {"WERE", 2001},
2459f59d82ffSelric {"WERT", 2002},
2460f59d82ffSelric {"WEST", 2003},
2461f59d82ffSelric {"WET", 552},
2462f59d82ffSelric {"WHAM", 2004},
2463f59d82ffSelric {"WHAT", 2005},
2464f59d82ffSelric {"WHEE", 2006},
2465f59d82ffSelric {"WHEN", 2007},
2466f59d82ffSelric {"WHET", 2008},
2467f59d82ffSelric {"WHO", 553},
2468f59d82ffSelric {"WHOA", 2009},
2469f59d82ffSelric {"WHOM", 2010},
2470f59d82ffSelric {"WHY", 554},
2471f59d82ffSelric {"WICK", 2011},
2472f59d82ffSelric {"WIFE", 2012},
2473f59d82ffSelric {"WILD", 2013},
2474f59d82ffSelric {"WILL", 2014},
2475f59d82ffSelric {"WIN", 555},
2476f59d82ffSelric {"WIND", 2015},
2477f59d82ffSelric {"WINE", 2016},
2478f59d82ffSelric {"WING", 2017},
2479f59d82ffSelric {"WINK", 2018},
2480f59d82ffSelric {"WINO", 2019},
2481f59d82ffSelric {"WIRE", 2020},
2482f59d82ffSelric {"WISE", 2021},
2483f59d82ffSelric {"WISH", 2022},
2484f59d82ffSelric {"WIT", 556},
2485f59d82ffSelric {"WITH", 2023},
2486f59d82ffSelric {"WOK", 557},
2487f59d82ffSelric {"WOLF", 2024},
2488f59d82ffSelric {"WON", 558},
2489f59d82ffSelric {"WONT", 2025},
2490f59d82ffSelric {"WOO", 559},
2491f59d82ffSelric {"WOOD", 2026},
2492f59d82ffSelric {"WOOL", 2027},
2493f59d82ffSelric {"WORD", 2028},
2494f59d82ffSelric {"WORE", 2029},
2495f59d82ffSelric {"WORK", 2030},
2496f59d82ffSelric {"WORM", 2031},
2497f59d82ffSelric {"WORN", 2032},
2498f59d82ffSelric {"WOVE", 2033},
2499f59d82ffSelric {"WOW", 560},
2500f59d82ffSelric {"WRIT", 2034},
2501f59d82ffSelric {"WRY", 561},
2502f59d82ffSelric {"WU", 562},
2503f59d82ffSelric {"WYNN", 2035},
2504f59d82ffSelric {"YALE", 2036},
2505f59d82ffSelric {"YAM", 563},
2506f59d82ffSelric {"YANG", 2037},
2507f59d82ffSelric {"YANK", 2038},
2508f59d82ffSelric {"YAP", 564},
2509f59d82ffSelric {"YARD", 2039},
2510f59d82ffSelric {"YARN", 2040},
2511f59d82ffSelric {"YAW", 565},
2512f59d82ffSelric {"YAWL", 2041},
2513f59d82ffSelric {"YAWN", 2042},
2514f59d82ffSelric {"YE", 566},
2515f59d82ffSelric {"YEA", 567},
2516f59d82ffSelric {"YEAH", 2043},
2517f59d82ffSelric {"YEAR", 2044},
2518f59d82ffSelric {"YELL", 2045},
2519f59d82ffSelric {"YES", 568},
2520f59d82ffSelric {"YET", 569},
2521f59d82ffSelric {"YOGA", 2046},
2522f59d82ffSelric {"YOKE", 2047},
2523f59d82ffSelric {"YOU", 570}
2524f59d82ffSelric };
2525