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