pwqgen.rb 0.0.6 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -10
- data/ChangeLog +9 -0
- data/bin/pwqgen.rb +8 -27
- data/features/password_generation.feature +3 -3
- data/lib/pwqgen/pwqgen.rb +2 -3
- data/lib/pwqgen/version.rb +1 -1
- data/lib/pwqgen/wordlist.rb +6417 -2754
- data/spec/lib/pwqgen_spec.rb +32 -26
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e0584782da06c5d41bb6834184bb516ee86f6b5
|
4
|
+
data.tar.gz: af42267f7a2c4785f40d15bd36186e04505386a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cd74e35d2f8b11be5912e4cf2f7e678f2a6601b913e37db2e0dc3ab9afb0bdfc36afbf606c8812f6fbf7590403c20174c9277cfac4d220d19e6215c3f88296b3
|
7
|
+
data.tar.gz: db4f3dade23e1fe808fa36d0ed95d178d3dfd48a9226a013a746fac028b948148ccf9b2a022956524a61b302c46b8c3c98d0cb4f4ee31dd738a9e03b41c3747d
|
data/.travis.yml
CHANGED
data/ChangeLog
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
= 0.1.0 / 2017-01-28
|
2
|
+
* Removed support for ruby-1.8.
|
3
|
+
* Removed support for ruby-1.9.
|
4
|
+
* Adoped EFF's wordlist (6^5 words). No more profanities.
|
5
|
+
|
6
|
+
= 0.0.6 / 2016-09-08
|
7
|
+
* Allow for custom separators.
|
8
|
+
* Replaced SecureRandom with sysrandom.
|
9
|
+
|
1
10
|
= 0.0.5 / 2013-05-01
|
2
11
|
|
3
12
|
* Minor CLI help formatting improvements.
|
data/bin/pwqgen.rb
CHANGED
@@ -10,45 +10,26 @@ doc = <<DOCOPT
|
|
10
10
|
Generate a random pronouncable passphrase.
|
11
11
|
|
12
12
|
Usage:
|
13
|
-
#{filename} [
|
13
|
+
#{filename} [LENGTH]
|
14
14
|
#{filename} [-h | --help]
|
15
15
|
#{filename} [-v | --version]
|
16
16
|
|
17
17
|
Arguments:
|
18
|
-
LENGTH Number of words in the passphrase [default: 3]
|
19
|
-
COLS Number of columns to output.
|
18
|
+
LENGTH Number of words in the passphrase. [default: 3]
|
20
19
|
|
21
20
|
Options:
|
22
|
-
-
|
23
|
-
-
|
24
|
-
-v, --version show version and exit
|
21
|
+
-h, --help show this help message and exit
|
22
|
+
-v, --version show version and exit
|
25
23
|
|
26
24
|
DOCOPT
|
27
25
|
|
28
26
|
begin
|
29
27
|
options = Docopt::docopt(doc, :version => Pwqgen::VERSION)
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
opts = options["LENGTH"].to_i
|
34
|
-
end
|
35
|
-
if options["--columns"].nil?
|
36
|
-
if opts
|
37
|
-
puts Pwqgen.generate(opts)
|
38
|
-
else
|
39
|
-
puts Pwqgen.generate
|
40
|
-
end
|
28
|
+
|
29
|
+
if ARGV.length > 0 && ARGV[0].to_s.match(/\A[+-]?\d+?(\.\d+)?\Z/) then
|
30
|
+
puts Pwqgen.generate(ARGV[0].to_i)
|
41
31
|
else
|
42
|
-
|
43
|
-
for j in 1..(options["--columns"][0].to_i)
|
44
|
-
if opts
|
45
|
-
print Pwqgen.generate(opts) + "\t"
|
46
|
-
else
|
47
|
-
print Pwqgen.generate + "\t"
|
48
|
-
end
|
49
|
-
end
|
50
|
-
puts ""
|
51
|
-
end
|
32
|
+
puts Pwqgen.generate
|
52
33
|
end
|
53
34
|
rescue Docopt::Exit => e
|
54
35
|
puts e.message
|
@@ -8,14 +8,14 @@ Feature: Password Generation
|
|
8
8
|
|
9
9
|
Scenario: Generate a random password of default length
|
10
10
|
When I run `pwqgen.rb`
|
11
|
-
Then the output should match /^[A-Za-z]{3,
|
11
|
+
Then the output should match /^[A-Za-z]{3,9}([-_!$&*+=23456789][A-Za-z]{3,9}){2}$/
|
12
12
|
|
13
13
|
Scenario: Generate a random password of length 2
|
14
14
|
When I run `pwqgen.rb 2`
|
15
|
-
Then the output should match /^[A-Za-z]{3,
|
15
|
+
Then the output should match /^[A-Za-z]{3,9}([-_!$&*+=23456789][A-Za-z]{3,9}){1}$/
|
16
16
|
|
17
17
|
Scenario: Generate a random password of length 5
|
18
18
|
When I run `pwqgen.rb 5`
|
19
|
-
Then the output should match /^[A-Za-z]{3,
|
19
|
+
Then the output should match /^[A-Za-z]{3,9}([-_!$&*+=23456789][A-Za-z]{3,9}){4}$/
|
20
20
|
|
21
21
|
|
data/lib/pwqgen/pwqgen.rb
CHANGED
@@ -42,10 +42,9 @@ module Pwqgen
|
|
42
42
|
end
|
43
43
|
|
44
44
|
class Generator
|
45
|
-
def initialize(
|
46
|
-
opts[:separators] ||= "-_!$&*+=23456789"
|
45
|
+
def initialize(separators = "-_!$&*+=23456789")
|
47
46
|
@@wordlist_size = @@wordlist.length
|
48
|
-
@@separators =
|
47
|
+
@@separators = separators.split(//)
|
49
48
|
@@separators_size = @@separators.length
|
50
49
|
@rand = SecureRandom
|
51
50
|
end
|
data/lib/pwqgen/version.rb
CHANGED
data/lib/pwqgen/wordlist.rb
CHANGED
@@ -1,4160 +1,7823 @@
|
|
1
|
-
# Private:
|
2
|
-
#
|
1
|
+
# Private: Stolen from EFF's 7,776 wordlist.
|
2
|
+
# https://www.eff.org/deeplinks/2016/07/new-wordlists-random-passphrases
|
3
3
|
#
|
4
|
-
#
|
5
|
-
#
|
6
|
-
#
|
7
|
-
#
|
4
|
+
# Our first new list matches the original Diceware list in size (7,776 words
|
5
|
+
# (65)), offering equivalent security for each word you choose. However, we
|
6
|
+
# have fixed the above problems, resulting in a list that is hopefully easy to
|
7
|
+
# type and remember.
|
8
8
|
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
#
|
16
|
-
#
|
9
|
+
# We based our list off of data collected by Ghent University's Center for
|
10
|
+
# Reading Research. The Ghent team has long studied word recognition; you can
|
11
|
+
# participate yourself in their online quiz to measure your English
|
12
|
+
# vocabulary. This list gives us a good idea of which words are most likely to
|
13
|
+
# be familiar to English speakers and eliminates most of the unusual words in
|
14
|
+
# the original Diceware list. This data also includes "concreteness" ratings
|
15
|
+
# for each words, from very concrete words (such as screwdriver) to very
|
16
|
+
# abstract words (such as love).
|
17
17
|
#
|
18
|
-
#
|
19
|
-
#
|
18
|
+
# We took all words between 3 and 9 characters from the list, prioritizing the
|
19
|
+
# most recognized words and then the most concrete words. We manually checked
|
20
|
+
# and attempted to remove as many profane, insulting, sensitive, or
|
21
|
+
# emotionally-charged words as possible, and also filtered based on several
|
22
|
+
# public lists of vulgar English words (for example this one published by Luis
|
23
|
+
# von Ahn). We further removed words which are difficult to spell as well as
|
24
|
+
# homophones (which might be confused during recall). We also ensured that no
|
25
|
+
# word is an exact prefix of any other word.
|
20
26
|
#
|
21
|
-
#
|
27
|
+
# The result is our own list of 7,776 words [.txt] suitable for use in dice-
|
28
|
+
# generated passphrases. The words in our list are longer (7.0 characters) on
|
29
|
+
# average, than Reinhold's Diceware list (4.3 characters). This is a result of
|
30
|
+
# banning words under 3 characters as well as prioritizing familiar words over
|
31
|
+
# short but unusual words.
|
22
32
|
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
28
|
-
#
|
29
|
-
#
|
30
|
-
#
|
31
|
-
# currently available via the Wayback Machine:
|
32
|
-
#
|
33
|
-
# http://web.archive.org/web/%2a/http://www.tecapro.com/free/makepass.lst
|
34
|
-
#
|
35
|
-
# Even though the original description of the list stated that "each word
|
36
|
-
# must contain between 3 and 6 characters", there were two 7-character words:
|
37
|
-
# "England" and "Germany". For use in passwdqc, these have been replaced
|
38
|
-
# with "erase" and "gag".
|
39
|
-
#
|
40
|
-
# The code in passwdqc_check.c and passwdqc_random.c makes the following
|
41
|
-
# assumptions about this list:
|
42
|
-
#
|
43
|
-
# - there are exactly 4096 words;
|
44
|
-
# - the words are of up to 6 characters long;
|
45
|
-
# - although some words may contain capital letters, no two words differ by
|
46
|
-
# the case of characters alone (e.g., converting the list to all-lowercase
|
47
|
-
# would yield a list of 4096 unique words);
|
48
|
-
# - the words contain alphabetical characters only;
|
49
|
-
# - if an entire word on this list matches the initial substring of other
|
50
|
-
# word(s) on the list, it is placed immediately before those words (e.g.,
|
51
|
-
# "bake", "baker", "bakery").
|
52
|
-
#
|
53
|
-
# Additionally, the default minimum passphrase length of 11 characters
|
54
|
-
# specified in passwdqc_parse.c has been chosen such that a passphrase
|
55
|
-
# consisting of any three words from this list with two separator
|
56
|
-
# characters will pass the minimum length check. In other words, this
|
57
|
-
# default assumes that no word is shorter than 3 characters.
|
33
|
+
# Note that the security of a passphrase generated using either list is
|
34
|
+
# identical; the differences are in usability, including memorability, not in
|
35
|
+
# security. For most uses, we recommend a generating a six-word passphrase
|
36
|
+
# with this list, for a strength of 77 bits of entropy. ("Bits of entropy" is
|
37
|
+
# a common measure for the strength of a password or passphrase. Adding one
|
38
|
+
# bit of entropy doubles the number of guesses required, which makes it twice
|
39
|
+
# as difficult to brute force.) Each additional word will strengthen the
|
40
|
+
# passphrase by about 12.9 bits.
|
58
41
|
#
|
59
42
|
module Pwqgen
|
60
|
-
|
61
|
-
|
62
|
-
"
|
63
|
-
"
|
64
|
-
"
|
65
|
-
"Alice",
|
66
|
-
"Allah",
|
67
|
-
"Amazon",
|
68
|
-
"Andrew",
|
69
|
-
"Anglo",
|
70
|
-
"Angola",
|
71
|
-
"Antony",
|
72
|
-
"April",
|
73
|
-
"Arab",
|
74
|
-
"Arctic",
|
75
|
-
"Athens",
|
76
|
-
"Austin",
|
77
|
-
"Bach",
|
78
|
-
"Baltic",
|
79
|
-
"Basque",
|
80
|
-
"Berlin",
|
81
|
-
"Bible",
|
82
|
-
"Bombay",
|
83
|
-
"Bonn",
|
84
|
-
"Boston",
|
85
|
-
"Brazil",
|
86
|
-
"Briton",
|
87
|
-
"Buddha",
|
88
|
-
"Burma",
|
89
|
-
"Caesar",
|
90
|
-
"Cairo",
|
91
|
-
"Canada",
|
92
|
-
"Carl",
|
93
|
-
"Carol",
|
94
|
-
"Celtic",
|
95
|
-
"Chile",
|
96
|
-
"China",
|
97
|
-
"Christ",
|
98
|
-
"Congo",
|
99
|
-
"Cuba",
|
100
|
-
"Cyprus",
|
101
|
-
"Czech",
|
102
|
-
"Dallas",
|
103
|
-
"Danish",
|
104
|
-
"Darwin",
|
105
|
-
"David",
|
106
|
-
"Delhi",
|
107
|
-
"Derby",
|
108
|
-
"Diana",
|
109
|
-
"Dublin",
|
110
|
-
"Dutch",
|
111
|
-
"East",
|
112
|
-
"Eden",
|
113
|
-
"Edward",
|
114
|
-
"Eric",
|
115
|
-
"Essex",
|
116
|
-
"Europe",
|
117
|
-
"Eve",
|
118
|
-
"Exodus",
|
119
|
-
"France",
|
120
|
-
"French",
|
121
|
-
"Friday",
|
122
|
-
"Gandhi",
|
123
|
-
"Gaul",
|
124
|
-
"Gemini",
|
125
|
-
"Geneva",
|
126
|
-
"George",
|
127
|
-
"German",
|
128
|
-
"Gloria",
|
129
|
-
"God",
|
130
|
-
"Gothic",
|
131
|
-
"Greece",
|
132
|
-
"Greek",
|
133
|
-
"Hague",
|
134
|
-
"Haiti",
|
135
|
-
"Hanoi",
|
136
|
-
"Harry",
|
137
|
-
"Havana",
|
138
|
-
"Hawaii",
|
139
|
-
"Hebrew",
|
140
|
-
"Henry",
|
141
|
-
"Hermes",
|
142
|
-
"Hindu",
|
143
|
-
"Hitler",
|
144
|
-
"Idaho",
|
145
|
-
"Inca",
|
146
|
-
"India",
|
147
|
-
"Indian",
|
148
|
-
"Iowa",
|
149
|
-
"Iran",
|
150
|
-
"Iraq",
|
151
|
-
"Irish",
|
152
|
-
"Isaac",
|
153
|
-
"Isabel",
|
154
|
-
"Islam",
|
155
|
-
"Israel",
|
156
|
-
"Italy",
|
157
|
-
"Ivan",
|
158
|
-
"Jack",
|
159
|
-
"Jacob",
|
160
|
-
"James",
|
161
|
-
"Japan",
|
162
|
-
"Java",
|
163
|
-
"Jersey",
|
164
|
-
"Jesus",
|
165
|
-
"Jewish",
|
166
|
-
"Jim",
|
167
|
-
"John",
|
168
|
-
"Jordan",
|
169
|
-
"Joseph",
|
170
|
-
"Judas",
|
171
|
-
"Judy",
|
172
|
-
"July",
|
173
|
-
"June",
|
174
|
-
"Kansas",
|
175
|
-
"Karl",
|
176
|
-
"Kenya",
|
177
|
-
"Koran",
|
178
|
-
"Korea",
|
179
|
-
"Kuwait",
|
180
|
-
"Laos",
|
181
|
-
"Latin",
|
182
|
-
"Leo",
|
183
|
-
"Libya",
|
184
|
-
"Lima",
|
185
|
-
"Lisbon",
|
186
|
-
"Liz",
|
187
|
-
"London",
|
188
|
-
"Louvre",
|
189
|
-
"Lucy",
|
190
|
-
"Luther",
|
191
|
-
"Madame",
|
192
|
-
"Madrid",
|
193
|
-
"Malta",
|
194
|
-
"Maria",
|
195
|
-
"Mars",
|
196
|
-
"Mary",
|
197
|
-
"Maya",
|
198
|
-
"Mecca",
|
199
|
-
"Mexico",
|
200
|
-
"Miami",
|
201
|
-
"Mickey",
|
202
|
-
"Milan",
|
203
|
-
"Monaco",
|
204
|
-
"Monday",
|
205
|
-
"Moscow",
|
206
|
-
"Moses",
|
207
|
-
"Moslem",
|
208
|
-
"Mrs",
|
209
|
-
"Munich",
|
210
|
-
"Muslim",
|
211
|
-
"Naples",
|
212
|
-
"Nazi",
|
213
|
-
"Nepal",
|
214
|
-
"Newark",
|
215
|
-
"Nile",
|
216
|
-
"Nobel",
|
217
|
-
"North",
|
218
|
-
"Norway",
|
219
|
-
"Ohio",
|
220
|
-
"Oscar",
|
221
|
-
"Oslo",
|
222
|
-
"Oxford",
|
223
|
-
"Panama",
|
224
|
-
"Paris",
|
225
|
-
"Pascal",
|
226
|
-
"Paul",
|
227
|
-
"Peking",
|
228
|
-
"Peru",
|
229
|
-
"Peter",
|
230
|
-
"Philip",
|
231
|
-
"Poland",
|
232
|
-
"Polish",
|
233
|
-
"Prague",
|
234
|
-
"Quebec",
|
235
|
-
"Rex",
|
236
|
-
"Rhine",
|
237
|
-
"Ritz",
|
238
|
-
"Robert",
|
239
|
-
"Roman",
|
240
|
-
"Rome",
|
241
|
-
"Rosa",
|
242
|
-
"Russia",
|
243
|
-
"Sahara",
|
244
|
-
"Sam",
|
245
|
-
"Saturn",
|
246
|
-
"Saudi",
|
247
|
-
"Saxon",
|
248
|
-
"Scot",
|
249
|
-
"Seoul",
|
250
|
-
"Somali",
|
251
|
-
"Sony",
|
252
|
-
"Soviet",
|
253
|
-
"Spain",
|
254
|
-
"Stalin",
|
255
|
-
"Sudan",
|
256
|
-
"Suez",
|
257
|
-
"Sunday",
|
258
|
-
"Sweden",
|
259
|
-
"Swiss",
|
260
|
-
"Sydney",
|
261
|
-
"Syria",
|
262
|
-
"Taiwan",
|
263
|
-
"Tarzan",
|
264
|
-
"Taurus",
|
265
|
-
"Tehran",
|
266
|
-
"Teresa",
|
267
|
-
"Texas",
|
268
|
-
"Thomas",
|
269
|
-
"Tibet",
|
270
|
-
"Tokyo",
|
271
|
-
"Tom",
|
272
|
-
"Turk",
|
273
|
-
"Turkey",
|
274
|
-
"Uganda",
|
275
|
-
"Venice",
|
276
|
-
"Venus",
|
277
|
-
"Vienna",
|
278
|
-
"Viking",
|
279
|
-
"Virgo",
|
280
|
-
"Warsaw",
|
281
|
-
"West",
|
282
|
-
"Yale",
|
283
|
-
"Yemen",
|
284
|
-
"York",
|
285
|
-
"Zaire",
|
286
|
-
"Zurich",
|
287
|
-
"aback",
|
288
|
-
"abbey",
|
289
|
-
"abbot",
|
43
|
+
class Generator
|
44
|
+
@@wordlist = [
|
45
|
+
"abacus",
|
46
|
+
"abdomen",
|
47
|
+
"abdominal",
|
290
48
|
"abide",
|
49
|
+
"abiding",
|
50
|
+
"ability",
|
291
51
|
"ablaze",
|
292
52
|
"able",
|
293
|
-
"
|
294
|
-
"
|
295
|
-
"
|
296
|
-
"
|
297
|
-
"
|
298
|
-
"above",
|
53
|
+
"abnormal",
|
54
|
+
"abrasion",
|
55
|
+
"abrasive",
|
56
|
+
"abreast",
|
57
|
+
"abridge",
|
299
58
|
"abroad",
|
300
|
-
"
|
301
|
-
"
|
302
|
-
"
|
59
|
+
"abruptly",
|
60
|
+
"absence",
|
61
|
+
"absentee",
|
62
|
+
"absently",
|
63
|
+
"absinthe",
|
64
|
+
"absolute",
|
65
|
+
"absolve",
|
66
|
+
"abstain",
|
67
|
+
"abstract",
|
303
68
|
"absurd",
|
304
|
-
"abuse",
|
305
69
|
"accent",
|
306
|
-
"
|
307
|
-
"
|
308
|
-
"
|
309
|
-
"
|
310
|
-
"
|
311
|
-
"
|
70
|
+
"acclaim",
|
71
|
+
"acclimate",
|
72
|
+
"accompany",
|
73
|
+
"account",
|
74
|
+
"accuracy",
|
75
|
+
"accurate",
|
76
|
+
"accustom",
|
77
|
+
"acetone",
|
78
|
+
"achiness",
|
312
79
|
"aching",
|
313
80
|
"acid",
|
314
|
-
"acidic",
|
315
81
|
"acorn",
|
82
|
+
"acquaint",
|
83
|
+
"acquire",
|
316
84
|
"acre",
|
317
|
-
"
|
318
|
-
"
|
85
|
+
"acrobat",
|
86
|
+
"acronym",
|
87
|
+
"acting",
|
319
88
|
"action",
|
89
|
+
"activate",
|
90
|
+
"activator",
|
320
91
|
"active",
|
321
|
-
"
|
322
|
-
"
|
323
|
-
"
|
324
|
-
"
|
325
|
-
"
|
326
|
-
"
|
327
|
-
"
|
328
|
-
"
|
329
|
-
"
|
330
|
-
"
|
331
|
-
"
|
332
|
-
"admit",
|
333
|
-
"adobe",
|
334
|
-
"adopt",
|
335
|
-
"adrift",
|
336
|
-
"adult",
|
337
|
-
"adverb",
|
338
|
-
"advert",
|
339
|
-
"aerial",
|
92
|
+
"activism",
|
93
|
+
"activist",
|
94
|
+
"activity",
|
95
|
+
"actress",
|
96
|
+
"acts",
|
97
|
+
"acutely",
|
98
|
+
"acuteness",
|
99
|
+
"aeration",
|
100
|
+
"aerobics",
|
101
|
+
"aerosol",
|
102
|
+
"aerospace",
|
340
103
|
"afar",
|
341
104
|
"affair",
|
342
|
-
"
|
105
|
+
"affected",
|
106
|
+
"affecting",
|
107
|
+
"affection",
|
108
|
+
"affidavit",
|
109
|
+
"affiliate",
|
110
|
+
"affirm",
|
111
|
+
"affix",
|
112
|
+
"afflicted",
|
113
|
+
"affluent",
|
343
114
|
"afford",
|
344
|
-
"
|
115
|
+
"affront",
|
116
|
+
"aflame",
|
345
117
|
"afloat",
|
118
|
+
"aflutter",
|
119
|
+
"afoot",
|
346
120
|
"afraid",
|
347
|
-
"
|
348
|
-
"
|
349
|
-
"
|
350
|
-
"
|
121
|
+
"afterglow",
|
122
|
+
"afterlife",
|
123
|
+
"aftermath",
|
124
|
+
"aftermost",
|
125
|
+
"afternoon",
|
126
|
+
"aged",
|
127
|
+
"ageless",
|
351
128
|
"agency",
|
352
129
|
"agenda",
|
353
130
|
"agent",
|
131
|
+
"aggregate",
|
354
132
|
"aghast",
|
355
133
|
"agile",
|
356
|
-
"
|
134
|
+
"agility",
|
135
|
+
"aging",
|
136
|
+
"agnostic",
|
137
|
+
"agonize",
|
138
|
+
"agonizing",
|
357
139
|
"agony",
|
358
|
-
"
|
140
|
+
"agreeable",
|
141
|
+
"agreeably",
|
359
142
|
"agreed",
|
143
|
+
"agreeing",
|
144
|
+
"agreement",
|
145
|
+
"aground",
|
360
146
|
"ahead",
|
361
|
-
"
|
147
|
+
"ahoy",
|
362
148
|
"aide",
|
149
|
+
"aids",
|
363
150
|
"aim",
|
364
|
-
"
|
365
|
-
"
|
366
|
-
"airy",
|
367
|
-
"akin",
|
151
|
+
"ajar",
|
152
|
+
"alabaster",
|
368
153
|
"alarm",
|
369
|
-
"
|
154
|
+
"albatross",
|
370
155
|
"album",
|
371
|
-
"
|
156
|
+
"alfalfa",
|
157
|
+
"algebra",
|
158
|
+
"algorithm",
|
159
|
+
"alias",
|
372
160
|
"alibi",
|
373
|
-
"
|
374
|
-
"
|
375
|
-
"
|
161
|
+
"alienable",
|
162
|
+
"alienate",
|
163
|
+
"aliens",
|
376
164
|
"alike",
|
377
165
|
"alive",
|
378
|
-
"
|
379
|
-
"
|
380
|
-
"
|
381
|
-
"
|
382
|
-
"allow",
|
383
|
-
"alloy",
|
384
|
-
"ally",
|
385
|
-
"almond",
|
166
|
+
"alkaline",
|
167
|
+
"alkalize",
|
168
|
+
"almanac",
|
169
|
+
"almighty",
|
386
170
|
"almost",
|
171
|
+
"aloe",
|
387
172
|
"aloft",
|
173
|
+
"aloha",
|
388
174
|
"alone",
|
389
|
-
"
|
175
|
+
"alongside",
|
390
176
|
"aloof",
|
391
|
-
"
|
392
|
-
"
|
393
|
-
"
|
394
|
-
"
|
395
|
-
"
|
396
|
-
"
|
177
|
+
"alphabet",
|
178
|
+
"alright",
|
179
|
+
"although",
|
180
|
+
"altitude",
|
181
|
+
"alto",
|
182
|
+
"aluminum",
|
183
|
+
"alumni",
|
397
184
|
"always",
|
185
|
+
"amaretto",
|
398
186
|
"amaze",
|
187
|
+
"amazingly",
|
399
188
|
"amber",
|
189
|
+
"ambiance",
|
190
|
+
"ambiguity",
|
191
|
+
"ambiguous",
|
192
|
+
"ambition",
|
193
|
+
"ambitious",
|
194
|
+
"ambulance",
|
400
195
|
"ambush",
|
401
|
-
"
|
402
|
-
"
|
196
|
+
"amendable",
|
197
|
+
"amendment",
|
198
|
+
"amends",
|
199
|
+
"amenity",
|
200
|
+
"amiable",
|
201
|
+
"amicably",
|
403
202
|
"amid",
|
404
|
-
"
|
203
|
+
"amigo",
|
204
|
+
"amino",
|
405
205
|
"amiss",
|
206
|
+
"ammonia",
|
207
|
+
"ammonium",
|
208
|
+
"amnesty",
|
209
|
+
"amniotic",
|
406
210
|
"among",
|
407
211
|
"amount",
|
212
|
+
"amperage",
|
408
213
|
"ample",
|
409
|
-
"
|
214
|
+
"amplifier",
|
215
|
+
"amplify",
|
216
|
+
"amply",
|
217
|
+
"amuck",
|
218
|
+
"amulet",
|
219
|
+
"amusable",
|
220
|
+
"amused",
|
221
|
+
"amusement",
|
222
|
+
"amuser",
|
223
|
+
"amusing",
|
224
|
+
"anaconda",
|
225
|
+
"anaerobic",
|
226
|
+
"anagram",
|
227
|
+
"anatomist",
|
228
|
+
"anatomy",
|
410
229
|
"anchor",
|
411
|
-
"
|
230
|
+
"anchovy",
|
231
|
+
"ancient",
|
232
|
+
"android",
|
233
|
+
"anemia",
|
234
|
+
"anemic",
|
235
|
+
"aneurism",
|
412
236
|
"anew",
|
413
|
-
"
|
237
|
+
"angelfish",
|
238
|
+
"angelic",
|
414
239
|
"anger",
|
415
|
-
"
|
416
|
-
"
|
240
|
+
"angled",
|
241
|
+
"angler",
|
242
|
+
"angles",
|
243
|
+
"angling",
|
244
|
+
"angrily",
|
245
|
+
"angriness",
|
246
|
+
"anguished",
|
247
|
+
"angular",
|
417
248
|
"animal",
|
249
|
+
"animate",
|
250
|
+
"animating",
|
251
|
+
"animation",
|
252
|
+
"animator",
|
253
|
+
"anime",
|
254
|
+
"animosity",
|
418
255
|
"ankle",
|
419
|
-
"
|
420
|
-
"
|
421
|
-
"
|
256
|
+
"annex",
|
257
|
+
"annotate",
|
258
|
+
"announcer",
|
259
|
+
"annoying",
|
260
|
+
"annually",
|
261
|
+
"annuity",
|
262
|
+
"anointer",
|
263
|
+
"another",
|
264
|
+
"answering",
|
265
|
+
"antacid",
|
266
|
+
"antarctic",
|
267
|
+
"anteater",
|
268
|
+
"antelope",
|
269
|
+
"antennae",
|
422
270
|
"anthem",
|
423
|
-
"
|
424
|
-
"
|
271
|
+
"anthill",
|
272
|
+
"anthology",
|
273
|
+
"antibody",
|
274
|
+
"antics",
|
275
|
+
"antidote",
|
276
|
+
"antihero",
|
277
|
+
"antiquely",
|
278
|
+
"antiques",
|
279
|
+
"antiquity",
|
280
|
+
"antirust",
|
281
|
+
"antitoxic",
|
282
|
+
"antitrust",
|
283
|
+
"antiviral",
|
284
|
+
"antivirus",
|
285
|
+
"antler",
|
286
|
+
"antonym",
|
287
|
+
"antsy",
|
288
|
+
"anvil",
|
289
|
+
"anybody",
|
425
290
|
"anyhow",
|
291
|
+
"anymore",
|
292
|
+
"anyone",
|
293
|
+
"anyplace",
|
294
|
+
"anything",
|
295
|
+
"anytime",
|
426
296
|
"anyway",
|
427
|
-
"
|
428
|
-
"
|
429
|
-
"
|
430
|
-
"
|
431
|
-
"
|
297
|
+
"anywhere",
|
298
|
+
"aorta",
|
299
|
+
"apache",
|
300
|
+
"apostle",
|
301
|
+
"appealing",
|
432
302
|
"appear",
|
303
|
+
"appease",
|
304
|
+
"appeasing",
|
305
|
+
"appendage",
|
306
|
+
"appendix",
|
307
|
+
"appetite",
|
308
|
+
"appetizer",
|
309
|
+
"applaud",
|
310
|
+
"applause",
|
433
311
|
"apple",
|
312
|
+
"appliance",
|
313
|
+
"applicant",
|
314
|
+
"applied",
|
434
315
|
"apply",
|
316
|
+
"appointee",
|
317
|
+
"appraisal",
|
318
|
+
"appraiser",
|
319
|
+
"apprehend",
|
320
|
+
"approach",
|
321
|
+
"approval",
|
322
|
+
"approve",
|
323
|
+
"apricot",
|
324
|
+
"april",
|
435
325
|
"apron",
|
436
|
-
"
|
437
|
-
"
|
438
|
-
"
|
439
|
-
"
|
440
|
-
"
|
326
|
+
"aptitude",
|
327
|
+
"aptly",
|
328
|
+
"aqua",
|
329
|
+
"aqueduct",
|
330
|
+
"arbitrary",
|
331
|
+
"arbitrate",
|
332
|
+
"ardently",
|
441
333
|
"area",
|
334
|
+
"arena",
|
335
|
+
"arguable",
|
336
|
+
"arguably",
|
442
337
|
"argue",
|
443
|
-
"arid",
|
444
338
|
"arise",
|
445
|
-
"
|
339
|
+
"armadillo",
|
340
|
+
"armband",
|
341
|
+
"armchair",
|
342
|
+
"armed",
|
446
343
|
"armful",
|
447
|
-
"
|
344
|
+
"armhole",
|
345
|
+
"arming",
|
346
|
+
"armless",
|
347
|
+
"armoire",
|
348
|
+
"armored",
|
349
|
+
"armory",
|
350
|
+
"armrest",
|
448
351
|
"army",
|
449
352
|
"aroma",
|
353
|
+
"arose",
|
450
354
|
"around",
|
451
|
-
"
|
355
|
+
"arousal",
|
356
|
+
"arrange",
|
452
357
|
"array",
|
453
358
|
"arrest",
|
359
|
+
"arrival",
|
454
360
|
"arrive",
|
455
|
-
"
|
361
|
+
"arrogance",
|
362
|
+
"arrogant",
|
456
363
|
"arson",
|
457
364
|
"art",
|
458
|
-
"
|
459
|
-
"
|
460
|
-
"artist",
|
365
|
+
"ascend",
|
366
|
+
"ascension",
|
461
367
|
"ascent",
|
368
|
+
"ascertain",
|
369
|
+
"ashamed",
|
462
370
|
"ashen",
|
463
|
-
"
|
371
|
+
"ashes",
|
372
|
+
"ashy",
|
464
373
|
"aside",
|
465
|
-
"
|
374
|
+
"askew",
|
466
375
|
"asleep",
|
376
|
+
"asparagus",
|
467
377
|
"aspect",
|
468
|
-
"
|
469
|
-
"
|
470
|
-
"
|
471
|
-
"
|
472
|
-
"
|
473
|
-
"
|
474
|
-
"
|
475
|
-
"
|
476
|
-
"
|
477
|
-
"asthma",
|
378
|
+
"aspirate",
|
379
|
+
"aspire",
|
380
|
+
"aspirin",
|
381
|
+
"astonish",
|
382
|
+
"astound",
|
383
|
+
"astride",
|
384
|
+
"astrology",
|
385
|
+
"astronaut",
|
386
|
+
"astronomy",
|
478
387
|
"astute",
|
479
|
-
"
|
480
|
-
"ate",
|
388
|
+
"atlantic",
|
481
389
|
"atlas",
|
482
390
|
"atom",
|
483
|
-
"
|
391
|
+
"atonable",
|
392
|
+
"atop",
|
393
|
+
"atrium",
|
394
|
+
"atrocious",
|
395
|
+
"atrophy",
|
484
396
|
"attach",
|
485
|
-
"attack",
|
486
397
|
"attain",
|
487
|
-
"
|
398
|
+
"attempt",
|
399
|
+
"attendant",
|
400
|
+
"attendee",
|
401
|
+
"attention",
|
402
|
+
"attentive",
|
403
|
+
"attest",
|
488
404
|
"attic",
|
489
|
-
"
|
405
|
+
"attire",
|
406
|
+
"attitude",
|
407
|
+
"attractor",
|
408
|
+
"attribute",
|
409
|
+
"atypical",
|
410
|
+
"auction",
|
411
|
+
"audacious",
|
412
|
+
"audacity",
|
413
|
+
"audible",
|
414
|
+
"audibly",
|
415
|
+
"audience",
|
490
416
|
"audio",
|
491
|
-
"
|
417
|
+
"audition",
|
418
|
+
"augmented",
|
492
419
|
"august",
|
493
|
-
"
|
494
|
-
"auntie",
|
495
|
-
"aura",
|
420
|
+
"authentic",
|
496
421
|
"author",
|
497
|
-
"
|
498
|
-
"
|
499
|
-
"
|
422
|
+
"autism",
|
423
|
+
"autistic",
|
424
|
+
"autograph",
|
425
|
+
"automaker",
|
426
|
+
"automated",
|
427
|
+
"automatic",
|
428
|
+
"autopilot",
|
429
|
+
"available",
|
430
|
+
"avalanche",
|
431
|
+
"avatar",
|
500
432
|
"avenge",
|
433
|
+
"avenging",
|
501
434
|
"avenue",
|
435
|
+
"average",
|
436
|
+
"aversion",
|
502
437
|
"avert",
|
438
|
+
"aviation",
|
439
|
+
"aviator",
|
503
440
|
"avid",
|
504
441
|
"avoid",
|
505
442
|
"await",
|
506
|
-
"awake",
|
507
443
|
"awaken",
|
508
444
|
"award",
|
509
445
|
"aware",
|
510
|
-
"awash",
|
511
|
-
"away",
|
512
|
-
"awful",
|
513
446
|
"awhile",
|
514
|
-
"
|
515
|
-
"
|
447
|
+
"awkward",
|
448
|
+
"awning",
|
449
|
+
"awoke",
|
450
|
+
"awry",
|
516
451
|
"axis",
|
517
|
-
"
|
518
|
-
"
|
519
|
-
"
|
520
|
-
"
|
521
|
-
"
|
452
|
+
"babble",
|
453
|
+
"babbling",
|
454
|
+
"babied",
|
455
|
+
"baboon",
|
456
|
+
"backache",
|
457
|
+
"backboard",
|
458
|
+
"backboned",
|
459
|
+
"backdrop",
|
460
|
+
"backed",
|
461
|
+
"backer",
|
462
|
+
"backfield",
|
463
|
+
"backfire",
|
464
|
+
"backhand",
|
465
|
+
"backing",
|
466
|
+
"backlands",
|
467
|
+
"backlash",
|
468
|
+
"backless",
|
469
|
+
"backlight",
|
470
|
+
"backlit",
|
471
|
+
"backlog",
|
472
|
+
"backpack",
|
473
|
+
"backpedal",
|
474
|
+
"backrest",
|
475
|
+
"backroom",
|
476
|
+
"backshift",
|
477
|
+
"backside",
|
478
|
+
"backslid",
|
479
|
+
"backspace",
|
480
|
+
"backspin",
|
481
|
+
"backstab",
|
482
|
+
"backstage",
|
483
|
+
"backtalk",
|
484
|
+
"backtrack",
|
522
485
|
"backup",
|
486
|
+
"backward",
|
487
|
+
"backwash",
|
488
|
+
"backwater",
|
489
|
+
"backyard",
|
523
490
|
"bacon",
|
524
|
-
"
|
491
|
+
"bacteria",
|
492
|
+
"bacterium",
|
493
|
+
"badass",
|
525
494
|
"badge",
|
495
|
+
"badland",
|
526
496
|
"badly",
|
527
|
-
"
|
497
|
+
"badness",
|
498
|
+
"baffle",
|
499
|
+
"baffling",
|
500
|
+
"bagel",
|
501
|
+
"bagful",
|
502
|
+
"baggage",
|
503
|
+
"bagged",
|
504
|
+
"baggie",
|
505
|
+
"bagginess",
|
506
|
+
"bagging",
|
528
507
|
"baggy",
|
529
|
-
"
|
530
|
-
"
|
531
|
-
"
|
532
|
-
"baker",
|
508
|
+
"bagpipe",
|
509
|
+
"baguette",
|
510
|
+
"baked",
|
533
511
|
"bakery",
|
534
|
-
"
|
535
|
-
"
|
536
|
-
"
|
537
|
-
"
|
538
|
-
"
|
512
|
+
"bakeshop",
|
513
|
+
"baking",
|
514
|
+
"balance",
|
515
|
+
"balancing",
|
516
|
+
"balcony",
|
517
|
+
"balmy",
|
518
|
+
"balsamic",
|
539
519
|
"bamboo",
|
540
|
-
"ban",
|
541
|
-
"banal",
|
542
520
|
"banana",
|
543
|
-
"
|
544
|
-
"
|
545
|
-
"
|
546
|
-
"
|
521
|
+
"banish",
|
522
|
+
"banister",
|
523
|
+
"banjo",
|
524
|
+
"bankable",
|
525
|
+
"bankbook",
|
526
|
+
"banked",
|
527
|
+
"banker",
|
528
|
+
"banking",
|
529
|
+
"banknote",
|
530
|
+
"bankroll",
|
531
|
+
"banner",
|
532
|
+
"bannister",
|
533
|
+
"banshee",
|
534
|
+
"banter",
|
535
|
+
"barbecue",
|
536
|
+
"barbed",
|
537
|
+
"barbell",
|
547
538
|
"barber",
|
548
|
-
"
|
549
|
-
"barely",
|
539
|
+
"barcode",
|
550
540
|
"barge",
|
551
|
-
"
|
541
|
+
"bargraph",
|
542
|
+
"barista",
|
543
|
+
"baritone",
|
552
544
|
"barley",
|
545
|
+
"barmaid",
|
546
|
+
"barman",
|
553
547
|
"barn",
|
554
|
-
"
|
548
|
+
"barometer",
|
549
|
+
"barrack",
|
550
|
+
"barracuda",
|
555
551
|
"barrel",
|
556
|
-
"
|
557
|
-
"
|
558
|
-
"
|
559
|
-
"
|
552
|
+
"barrette",
|
553
|
+
"barricade",
|
554
|
+
"barrier",
|
555
|
+
"barstool",
|
556
|
+
"bartender",
|
557
|
+
"barterer",
|
558
|
+
"bash",
|
559
|
+
"basically",
|
560
|
+
"basics",
|
560
561
|
"basil",
|
561
562
|
"basin",
|
562
563
|
"basis",
|
563
564
|
"basket",
|
564
|
-
"
|
565
|
-
"bat",
|
565
|
+
"batboy",
|
566
566
|
"batch",
|
567
567
|
"bath",
|
568
568
|
"baton",
|
569
|
+
"bats",
|
570
|
+
"battalion",
|
571
|
+
"battered",
|
572
|
+
"battering",
|
573
|
+
"battery",
|
574
|
+
"batting",
|
569
575
|
"battle",
|
570
|
-
"
|
571
|
-
"
|
572
|
-
"
|
573
|
-
"
|
574
|
-
"beam",
|
575
|
-
"bean",
|
576
|
-
"bear",
|
577
|
-
"beard",
|
578
|
-
"beast",
|
579
|
-
"beat",
|
580
|
-
"beauty",
|
581
|
-
"become",
|
582
|
-
"bed",
|
583
|
-
"beech",
|
584
|
-
"beef",
|
585
|
-
"beefy",
|
586
|
-
"beep",
|
587
|
-
"beer",
|
588
|
-
"beet",
|
589
|
-
"beetle",
|
590
|
-
"before",
|
591
|
-
"beggar",
|
592
|
-
"begin",
|
593
|
-
"behalf",
|
594
|
-
"behave",
|
595
|
-
"behind",
|
596
|
-
"beige",
|
597
|
-
"being",
|
598
|
-
"belief",
|
599
|
-
"bell",
|
600
|
-
"belly",
|
601
|
-
"belong",
|
602
|
-
"below",
|
603
|
-
"belt",
|
604
|
-
"bench",
|
605
|
-
"bend",
|
606
|
-
"benign",
|
607
|
-
"bent",
|
608
|
-
"berry",
|
609
|
-
"berth",
|
610
|
-
"beset",
|
611
|
-
"beside",
|
612
|
-
"best",
|
613
|
-
"bestow",
|
614
|
-
"bet",
|
615
|
-
"beta",
|
616
|
-
"betray",
|
617
|
-
"better",
|
618
|
-
"beware",
|
619
|
-
"beyond",
|
620
|
-
"bias",
|
621
|
-
"biceps",
|
622
|
-
"bicker",
|
623
|
-
"bid",
|
624
|
-
"big",
|
625
|
-
"bigger",
|
626
|
-
"bike",
|
627
|
-
"bile",
|
628
|
-
"bill",
|
629
|
-
"binary",
|
630
|
-
"bind",
|
631
|
-
"biopsy",
|
632
|
-
"birch",
|
633
|
-
"bird",
|
634
|
-
"birdie",
|
635
|
-
"birth",
|
636
|
-
"bishop",
|
637
|
-
"bit",
|
638
|
-
"bitch",
|
639
|
-
"bite",
|
640
|
-
"bitter",
|
641
|
-
"black",
|
576
|
+
"bauble",
|
577
|
+
"bazooka",
|
578
|
+
"blabber",
|
579
|
+
"bladder",
|
642
580
|
"blade",
|
581
|
+
"blah",
|
643
582
|
"blame",
|
644
|
-
"
|
583
|
+
"blaming",
|
584
|
+
"blanching",
|
585
|
+
"blandness",
|
586
|
+
"blank",
|
587
|
+
"blaspheme",
|
588
|
+
"blasphemy",
|
645
589
|
"blast",
|
646
|
-
"
|
590
|
+
"blatancy",
|
591
|
+
"blatantly",
|
592
|
+
"blazer",
|
593
|
+
"blazing",
|
594
|
+
"bleach",
|
647
595
|
"bleak",
|
596
|
+
"bleep",
|
597
|
+
"blemish",
|
648
598
|
"blend",
|
649
599
|
"bless",
|
650
|
-
"
|
651
|
-
"
|
652
|
-
"
|
600
|
+
"blighted",
|
601
|
+
"blimp",
|
602
|
+
"bling",
|
603
|
+
"blinked",
|
604
|
+
"blinker",
|
605
|
+
"blinking",
|
606
|
+
"blinks",
|
653
607
|
"blip",
|
654
|
-
"
|
608
|
+
"blissful",
|
655
609
|
"blitz",
|
656
|
-
"
|
657
|
-
"
|
658
|
-
"
|
659
|
-
"
|
660
|
-
"
|
610
|
+
"blizzard",
|
611
|
+
"bloated",
|
612
|
+
"bloating",
|
613
|
+
"blob",
|
614
|
+
"blog",
|
615
|
+
"bloomers",
|
616
|
+
"blooming",
|
617
|
+
"blooper",
|
661
618
|
"blot",
|
662
619
|
"blouse",
|
663
|
-
"
|
664
|
-
"blue",
|
620
|
+
"blubber",
|
665
621
|
"bluff",
|
622
|
+
"bluish",
|
623
|
+
"blunderer",
|
666
624
|
"blunt",
|
667
|
-
"
|
625
|
+
"blurb",
|
626
|
+
"blurred",
|
627
|
+
"blurry",
|
628
|
+
"blurt",
|
668
629
|
"blush",
|
669
|
-
"
|
670
|
-
"
|
671
|
-
"
|
630
|
+
"blustery",
|
631
|
+
"boaster",
|
632
|
+
"boastful",
|
633
|
+
"boasting",
|
672
634
|
"boat",
|
673
|
-
"
|
635
|
+
"bobbed",
|
636
|
+
"bobbing",
|
637
|
+
"bobble",
|
638
|
+
"bobcat",
|
639
|
+
"bobsled",
|
640
|
+
"bobtail",
|
641
|
+
"bodacious",
|
674
642
|
"body",
|
643
|
+
"bogged",
|
644
|
+
"boggle",
|
675
645
|
"bogus",
|
676
646
|
"boil",
|
677
|
-
"
|
647
|
+
"bok",
|
648
|
+
"bolster",
|
678
649
|
"bolt",
|
679
|
-
"
|
680
|
-
"
|
681
|
-
"
|
650
|
+
"bonanza",
|
651
|
+
"bonded",
|
652
|
+
"bonding",
|
653
|
+
"bondless",
|
654
|
+
"boned",
|
655
|
+
"bonehead",
|
656
|
+
"boneless",
|
657
|
+
"bonelike",
|
658
|
+
"boney",
|
659
|
+
"bonfire",
|
682
660
|
"bonnet",
|
661
|
+
"bonsai",
|
683
662
|
"bonus",
|
684
663
|
"bony",
|
664
|
+
"boogeyman",
|
665
|
+
"boogieman",
|
685
666
|
"book",
|
686
|
-
"
|
687
|
-
"
|
688
|
-
"boot",
|
667
|
+
"boondocks",
|
668
|
+
"booted",
|
689
669
|
"booth",
|
690
|
-
"
|
691
|
-
"
|
692
|
-
"
|
693
|
-
"
|
694
|
-
"
|
670
|
+
"bootie",
|
671
|
+
"booting",
|
672
|
+
"bootlace",
|
673
|
+
"bootleg",
|
674
|
+
"boots",
|
675
|
+
"boozy",
|
676
|
+
"borax",
|
677
|
+
"boring",
|
678
|
+
"borough",
|
679
|
+
"borrower",
|
680
|
+
"borrowing",
|
695
681
|
"boss",
|
682
|
+
"botanical",
|
683
|
+
"botanist",
|
684
|
+
"botany",
|
685
|
+
"botch",
|
696
686
|
"both",
|
697
|
-
"bother",
|
698
687
|
"bottle",
|
688
|
+
"bottling",
|
699
689
|
"bottom",
|
700
|
-
"bought",
|
701
690
|
"bounce",
|
702
|
-
"
|
703
|
-
"
|
704
|
-
"
|
691
|
+
"bouncing",
|
692
|
+
"bouncy",
|
693
|
+
"bounding",
|
694
|
+
"boundless",
|
695
|
+
"bountiful",
|
705
696
|
"bovine",
|
706
|
-
"
|
707
|
-
"
|
708
|
-
"
|
709
|
-
"
|
710
|
-
"
|
711
|
-
"boyish",
|
712
|
-
"brace",
|
713
|
-
"brain",
|
714
|
-
"brainy",
|
715
|
-
"brake",
|
716
|
-
"bran",
|
717
|
-
"branch",
|
718
|
-
"brand",
|
719
|
-
"brandy",
|
720
|
-
"brass",
|
721
|
-
"brave",
|
722
|
-
"bravo",
|
697
|
+
"boxcar",
|
698
|
+
"boxer",
|
699
|
+
"boxing",
|
700
|
+
"boxlike",
|
701
|
+
"boxy",
|
723
702
|
"breach",
|
724
|
-
"bread",
|
725
|
-
"break",
|
726
|
-
"breast",
|
727
703
|
"breath",
|
728
|
-
"
|
729
|
-
"
|
704
|
+
"breeches",
|
705
|
+
"breeching",
|
706
|
+
"breeder",
|
707
|
+
"breeding",
|
730
708
|
"breeze",
|
731
|
-
"
|
709
|
+
"breezy",
|
710
|
+
"brethren",
|
711
|
+
"brewery",
|
712
|
+
"brewing",
|
713
|
+
"briar",
|
714
|
+
"bribe",
|
732
715
|
"brick",
|
733
716
|
"bride",
|
734
|
-
"
|
735
|
-
"
|
717
|
+
"bridged",
|
718
|
+
"brigade",
|
736
719
|
"bright",
|
720
|
+
"brilliant",
|
737
721
|
"brim",
|
738
|
-
"brine",
|
739
722
|
"bring",
|
740
723
|
"brink",
|
741
|
-
"
|
742
|
-
"
|
743
|
-
"
|
724
|
+
"brisket",
|
725
|
+
"briskly",
|
726
|
+
"briskness",
|
727
|
+
"bristle",
|
728
|
+
"brittle",
|
729
|
+
"broadband",
|
730
|
+
"broadcast",
|
731
|
+
"broaden",
|
732
|
+
"broadly",
|
733
|
+
"broadness",
|
734
|
+
"broadside",
|
735
|
+
"broadways",
|
736
|
+
"broiler",
|
737
|
+
"broiling",
|
744
738
|
"broken",
|
739
|
+
"broker",
|
740
|
+
"bronchial",
|
741
|
+
"bronco",
|
745
742
|
"bronze",
|
743
|
+
"bronzing",
|
746
744
|
"brook",
|
747
745
|
"broom",
|
748
|
-
"
|
749
|
-
"
|
746
|
+
"brought",
|
747
|
+
"browbeat",
|
748
|
+
"brownnose",
|
749
|
+
"browse",
|
750
|
+
"browsing",
|
751
|
+
"bruising",
|
752
|
+
"brunch",
|
753
|
+
"brunette",
|
754
|
+
"brunt",
|
750
755
|
"brush",
|
751
|
-
"
|
756
|
+
"brussels",
|
752
757
|
"brute",
|
758
|
+
"brutishly",
|
753
759
|
"bubble",
|
754
|
-
"
|
760
|
+
"bubbling",
|
761
|
+
"bubbly",
|
762
|
+
"buccaneer",
|
763
|
+
"bucked",
|
755
764
|
"bucket",
|
756
765
|
"buckle",
|
766
|
+
"buckshot",
|
767
|
+
"buckskin",
|
768
|
+
"bucktooth",
|
769
|
+
"buckwheat",
|
770
|
+
"buddhism",
|
771
|
+
"buddhist",
|
772
|
+
"budding",
|
773
|
+
"buddy",
|
757
774
|
"budget",
|
758
|
-
"
|
775
|
+
"buffalo",
|
776
|
+
"buffed",
|
777
|
+
"buffer",
|
778
|
+
"buffing",
|
779
|
+
"buffoon",
|
759
780
|
"buggy",
|
760
|
-
"build",
|
761
781
|
"bulb",
|
762
782
|
"bulge",
|
783
|
+
"bulginess",
|
784
|
+
"bulgur",
|
763
785
|
"bulk",
|
764
|
-
"
|
765
|
-
"
|
766
|
-
"
|
786
|
+
"bulldog",
|
787
|
+
"bulldozer",
|
788
|
+
"bullfight",
|
789
|
+
"bullfrog",
|
790
|
+
"bullhorn",
|
791
|
+
"bullion",
|
792
|
+
"bullish",
|
793
|
+
"bullpen",
|
794
|
+
"bullring",
|
795
|
+
"bullseye",
|
796
|
+
"bullwhip",
|
767
797
|
"bully",
|
768
|
-
"bump",
|
769
|
-
"bumpy",
|
770
798
|
"bunch",
|
771
799
|
"bundle",
|
772
|
-
"
|
800
|
+
"bungee",
|
801
|
+
"bunion",
|
802
|
+
"bunkbed",
|
803
|
+
"bunkhouse",
|
804
|
+
"bunkmate",
|
773
805
|
"bunny",
|
774
|
-
"
|
775
|
-
"
|
776
|
-
"burial",
|
777
|
-
"buried",
|
778
|
-
"burly",
|
779
|
-
"burn",
|
780
|
-
"burnt",
|
781
|
-
"burrow",
|
782
|
-
"burst",
|
783
|
-
"bury",
|
784
|
-
"bus",
|
806
|
+
"bunt",
|
807
|
+
"busboy",
|
785
808
|
"bush",
|
809
|
+
"busily",
|
810
|
+
"busload",
|
786
811
|
"bust",
|
787
|
-
"
|
788
|
-
"busy",
|
789
|
-
"but",
|
790
|
-
"butler",
|
791
|
-
"butt",
|
792
|
-
"butter",
|
793
|
-
"button",
|
794
|
-
"buy",
|
795
|
-
"buyer",
|
812
|
+
"busybody",
|
796
813
|
"buzz",
|
797
|
-
"
|
798
|
-
"
|
799
|
-
"
|
800
|
-
"
|
814
|
+
"cabana",
|
815
|
+
"cabbage",
|
816
|
+
"cabbie",
|
817
|
+
"cabdriver",
|
801
818
|
"cable",
|
819
|
+
"caboose",
|
802
820
|
"cache",
|
821
|
+
"cackle",
|
822
|
+
"cacti",
|
803
823
|
"cactus",
|
824
|
+
"caddie",
|
825
|
+
"caddy",
|
826
|
+
"cadet",
|
827
|
+
"cadillac",
|
828
|
+
"cadmium",
|
804
829
|
"cage",
|
830
|
+
"cahoots",
|
805
831
|
"cake",
|
806
|
-
"
|
807
|
-
"
|
808
|
-
"
|
832
|
+
"calamari",
|
833
|
+
"calamity",
|
834
|
+
"calcium",
|
835
|
+
"calculate",
|
836
|
+
"calculus",
|
837
|
+
"caliber",
|
838
|
+
"calibrate",
|
809
839
|
"calm",
|
810
|
-
"
|
811
|
-
"
|
812
|
-
"
|
840
|
+
"caloric",
|
841
|
+
"calorie",
|
842
|
+
"calzone",
|
843
|
+
"camcorder",
|
844
|
+
"cameo",
|
813
845
|
"camera",
|
814
|
-
"
|
846
|
+
"camisole",
|
847
|
+
"camper",
|
848
|
+
"campfire",
|
849
|
+
"camping",
|
850
|
+
"campsite",
|
815
851
|
"campus",
|
816
|
-
"can",
|
817
852
|
"canal",
|
818
853
|
"canary",
|
819
854
|
"cancel",
|
820
|
-
"
|
821
|
-
"candid",
|
855
|
+
"candied",
|
822
856
|
"candle",
|
823
857
|
"candy",
|
824
858
|
"cane",
|
825
859
|
"canine",
|
826
|
-
"
|
860
|
+
"canister",
|
861
|
+
"cannabis",
|
862
|
+
"canned",
|
863
|
+
"canning",
|
864
|
+
"cannon",
|
865
|
+
"cannot",
|
866
|
+
"canola",
|
867
|
+
"canon",
|
868
|
+
"canopener",
|
827
869
|
"canopy",
|
828
|
-
"
|
870
|
+
"canteen",
|
829
871
|
"canyon",
|
830
|
-
"
|
872
|
+
"capable",
|
873
|
+
"capably",
|
874
|
+
"capacity",
|
831
875
|
"cape",
|
832
|
-
"
|
876
|
+
"capillary",
|
877
|
+
"capital",
|
878
|
+
"capitol",
|
879
|
+
"capped",
|
880
|
+
"capricorn",
|
881
|
+
"capsize",
|
882
|
+
"capsule",
|
883
|
+
"caption",
|
884
|
+
"captivate",
|
885
|
+
"captive",
|
886
|
+
"captivity",
|
887
|
+
"capture",
|
888
|
+
"caramel",
|
889
|
+
"carat",
|
890
|
+
"caravan",
|
833
891
|
"carbon",
|
834
|
-
"
|
835
|
-
"
|
836
|
-
"
|
892
|
+
"cardboard",
|
893
|
+
"carded",
|
894
|
+
"cardiac",
|
895
|
+
"cardigan",
|
896
|
+
"cardinal",
|
897
|
+
"cardstock",
|
898
|
+
"carefully",
|
899
|
+
"caregiver",
|
900
|
+
"careless",
|
837
901
|
"caress",
|
902
|
+
"caretaker",
|
838
903
|
"cargo",
|
839
|
-
"
|
840
|
-
"
|
841
|
-
"
|
904
|
+
"caring",
|
905
|
+
"carless",
|
906
|
+
"carload",
|
907
|
+
"carmaker",
|
908
|
+
"carnage",
|
909
|
+
"carnation",
|
910
|
+
"carnival",
|
911
|
+
"carnivore",
|
912
|
+
"carol",
|
913
|
+
"carpenter",
|
914
|
+
"carpentry",
|
915
|
+
"carpool",
|
916
|
+
"carport",
|
917
|
+
"carried",
|
842
918
|
"carrot",
|
919
|
+
"carrousel",
|
843
920
|
"carry",
|
844
|
-
"cart",
|
845
921
|
"cartel",
|
922
|
+
"cartload",
|
923
|
+
"carton",
|
924
|
+
"cartoon",
|
925
|
+
"cartridge",
|
926
|
+
"cartwheel",
|
927
|
+
"carve",
|
928
|
+
"carving",
|
929
|
+
"carwash",
|
930
|
+
"cascade",
|
846
931
|
"case",
|
847
932
|
"cash",
|
848
|
-
"
|
849
|
-
"
|
850
|
-
"
|
851
|
-
"
|
852
|
-
"
|
853
|
-
"
|
854
|
-
"
|
933
|
+
"casing",
|
934
|
+
"casino",
|
935
|
+
"casket",
|
936
|
+
"cassette",
|
937
|
+
"casually",
|
938
|
+
"casualty",
|
939
|
+
"catacomb",
|
940
|
+
"catalog",
|
941
|
+
"catalyst",
|
942
|
+
"catalyze",
|
943
|
+
"catapult",
|
944
|
+
"cataract",
|
945
|
+
"catatonic",
|
946
|
+
"catcall",
|
947
|
+
"catchable",
|
948
|
+
"catcher",
|
949
|
+
"catching",
|
950
|
+
"catchy",
|
951
|
+
"caterer",
|
952
|
+
"catering",
|
953
|
+
"catfight",
|
954
|
+
"catfish",
|
955
|
+
"cathedral",
|
956
|
+
"cathouse",
|
957
|
+
"catlike",
|
958
|
+
"catnap",
|
959
|
+
"catnip",
|
960
|
+
"catsup",
|
961
|
+
"cattail",
|
962
|
+
"cattishly",
|
855
963
|
"cattle",
|
856
|
-
"
|
964
|
+
"catty",
|
965
|
+
"catwalk",
|
966
|
+
"caucasian",
|
967
|
+
"caucus",
|
857
968
|
"causal",
|
969
|
+
"causation",
|
858
970
|
"cause",
|
859
|
-
"
|
860
|
-
"
|
971
|
+
"causing",
|
972
|
+
"cauterize",
|
973
|
+
"caution",
|
974
|
+
"cautious",
|
975
|
+
"cavalier",
|
976
|
+
"cavalry",
|
977
|
+
"caviar",
|
978
|
+
"cavity",
|
979
|
+
"cedar",
|
861
980
|
"celery",
|
862
|
-
"
|
863
|
-
"
|
981
|
+
"celestial",
|
982
|
+
"celibacy",
|
983
|
+
"celibate",
|
984
|
+
"celtic",
|
864
985
|
"cement",
|
865
|
-
"censor",
|
866
986
|
"census",
|
867
|
-
"
|
868
|
-
"
|
987
|
+
"ceramics",
|
988
|
+
"ceremony",
|
989
|
+
"certainly",
|
990
|
+
"certainty",
|
991
|
+
"certified",
|
992
|
+
"certify",
|
993
|
+
"cesarean",
|
994
|
+
"cesspool",
|
995
|
+
"chafe",
|
996
|
+
"chaffing",
|
869
997
|
"chain",
|
870
998
|
"chair",
|
871
|
-
"
|
872
|
-
"
|
873
|
-
"
|
999
|
+
"chalice",
|
1000
|
+
"challenge",
|
1001
|
+
"chamber",
|
1002
|
+
"chamomile",
|
1003
|
+
"champion",
|
874
1004
|
"chance",
|
875
1005
|
"change",
|
1006
|
+
"channel",
|
876
1007
|
"chant",
|
877
1008
|
"chaos",
|
878
|
-
"
|
879
|
-
"
|
880
|
-
"
|
1009
|
+
"chaperone",
|
1010
|
+
"chaplain",
|
1011
|
+
"chapped",
|
1012
|
+
"chaps",
|
1013
|
+
"chapter",
|
1014
|
+
"character",
|
1015
|
+
"charbroil",
|
1016
|
+
"charcoal",
|
1017
|
+
"charger",
|
1018
|
+
"charging",
|
1019
|
+
"chariot",
|
1020
|
+
"charity",
|
881
1021
|
"charm",
|
882
|
-
"
|
1022
|
+
"charred",
|
1023
|
+
"charter",
|
1024
|
+
"charting",
|
883
1025
|
"chase",
|
884
|
-
"
|
885
|
-
"
|
886
|
-
"
|
887
|
-
"
|
1026
|
+
"chasing",
|
1027
|
+
"chaste",
|
1028
|
+
"chastise",
|
1029
|
+
"chastity",
|
1030
|
+
"chatroom",
|
1031
|
+
"chatter",
|
1032
|
+
"chatting",
|
1033
|
+
"chatty",
|
1034
|
+
"cheating",
|
1035
|
+
"cheddar",
|
888
1036
|
"cheek",
|
889
|
-
"cheeky",
|
890
1037
|
"cheer",
|
891
|
-
"cheery",
|
892
1038
|
"cheese",
|
1039
|
+
"cheesy",
|
893
1040
|
"chef",
|
894
|
-
"
|
1041
|
+
"chemicals",
|
1042
|
+
"chemist",
|
1043
|
+
"chemo",
|
1044
|
+
"cherisher",
|
1045
|
+
"cherub",
|
895
1046
|
"chess",
|
896
1047
|
"chest",
|
897
|
-
"
|
898
|
-
"
|
899
|
-
"
|
1048
|
+
"chevron",
|
1049
|
+
"chevy",
|
1050
|
+
"chewable",
|
1051
|
+
"chewer",
|
1052
|
+
"chewing",
|
1053
|
+
"chewy",
|
900
1054
|
"chief",
|
901
|
-
"
|
1055
|
+
"chihuahua",
|
1056
|
+
"childcare",
|
1057
|
+
"childhood",
|
1058
|
+
"childish",
|
1059
|
+
"childless",
|
1060
|
+
"childlike",
|
1061
|
+
"chili",
|
902
1062
|
"chill",
|
903
|
-
"
|
904
|
-
"chin",
|
1063
|
+
"chimp",
|
905
1064
|
"chip",
|
1065
|
+
"chirping",
|
1066
|
+
"chirpy",
|
1067
|
+
"chitchat",
|
1068
|
+
"chivalry",
|
1069
|
+
"chive",
|
1070
|
+
"chloride",
|
1071
|
+
"chlorine",
|
906
1072
|
"choice",
|
907
|
-
"
|
908
|
-
"
|
1073
|
+
"chokehold",
|
1074
|
+
"choking",
|
1075
|
+
"chomp",
|
1076
|
+
"chooser",
|
1077
|
+
"choosing",
|
1078
|
+
"choosy",
|
909
1079
|
"chop",
|
910
|
-
"choppy",
|
911
|
-
"chord",
|
912
|
-
"chorus",
|
913
|
-
"chose",
|
914
1080
|
"chosen",
|
1081
|
+
"chowder",
|
1082
|
+
"chowtime",
|
915
1083
|
"chrome",
|
1084
|
+
"chubby",
|
1085
|
+
"chuck",
|
1086
|
+
"chug",
|
1087
|
+
"chummy",
|
1088
|
+
"chump",
|
916
1089
|
"chunk",
|
917
|
-
"
|
918
|
-
"
|
1090
|
+
"churn",
|
1091
|
+
"chute",
|
919
1092
|
"cider",
|
920
|
-
"
|
1093
|
+
"cilantro",
|
1094
|
+
"cinch",
|
921
1095
|
"cinema",
|
922
|
-
"
|
1096
|
+
"cinnamon",
|
923
1097
|
"circle",
|
1098
|
+
"circling",
|
1099
|
+
"circular",
|
1100
|
+
"circulate",
|
924
1101
|
"circus",
|
925
|
-
"
|
1102
|
+
"citable",
|
1103
|
+
"citadel",
|
1104
|
+
"citation",
|
1105
|
+
"citizen",
|
1106
|
+
"citric",
|
1107
|
+
"citrus",
|
926
1108
|
"city",
|
927
1109
|
"civic",
|
928
1110
|
"civil",
|
929
1111
|
"clad",
|
930
1112
|
"claim",
|
1113
|
+
"clambake",
|
931
1114
|
"clammy",
|
932
|
-
"
|
933
|
-
"
|
1115
|
+
"clamor",
|
1116
|
+
"clamp",
|
1117
|
+
"clamshell",
|
1118
|
+
"clang",
|
1119
|
+
"clanking",
|
1120
|
+
"clapped",
|
1121
|
+
"clapper",
|
1122
|
+
"clapping",
|
1123
|
+
"clarify",
|
1124
|
+
"clarinet",
|
1125
|
+
"clarity",
|
934
1126
|
"clash",
|
935
1127
|
"clasp",
|
936
1128
|
"class",
|
1129
|
+
"clatter",
|
937
1130
|
"clause",
|
1131
|
+
"clavicle",
|
938
1132
|
"claw",
|
939
1133
|
"clay",
|
940
1134
|
"clean",
|
941
1135
|
"clear",
|
942
|
-
"
|
1136
|
+
"cleat",
|
1137
|
+
"cleaver",
|
1138
|
+
"cleft",
|
1139
|
+
"clench",
|
1140
|
+
"clergyman",
|
1141
|
+
"clerical",
|
943
1142
|
"clerk",
|
944
1143
|
"clever",
|
945
|
-
"
|
1144
|
+
"clicker",
|
946
1145
|
"client",
|
947
|
-
"
|
948
|
-
"
|
949
|
-
"climb",
|
950
|
-
"clinch",
|
1146
|
+
"climate",
|
1147
|
+
"climatic",
|
951
1148
|
"cling",
|
952
1149
|
"clinic",
|
1150
|
+
"clinking",
|
953
1151
|
"clip",
|
1152
|
+
"clique",
|
954
1153
|
"cloak",
|
1154
|
+
"clobber",
|
955
1155
|
"clock",
|
956
1156
|
"clone",
|
957
|
-
"
|
958
|
-
"
|
959
|
-
"
|
960
|
-
"
|
1157
|
+
"cloning",
|
1158
|
+
"closable",
|
1159
|
+
"closure",
|
1160
|
+
"clothes",
|
1161
|
+
"clothing",
|
961
1162
|
"cloud",
|
962
|
-
"
|
963
|
-
"
|
964
|
-
"
|
965
|
-
"
|
966
|
-
"
|
1163
|
+
"clover",
|
1164
|
+
"clubbed",
|
1165
|
+
"clubbing",
|
1166
|
+
"clubhouse",
|
1167
|
+
"clump",
|
1168
|
+
"clumsily",
|
967
1169
|
"clumsy",
|
968
|
-
"
|
1170
|
+
"clunky",
|
1171
|
+
"clustered",
|
969
1172
|
"clutch",
|
1173
|
+
"clutter",
|
970
1174
|
"coach",
|
971
|
-
"
|
972
|
-
"
|
973
|
-
"
|
1175
|
+
"coagulant",
|
1176
|
+
"coastal",
|
1177
|
+
"coaster",
|
1178
|
+
"coasting",
|
1179
|
+
"coastland",
|
1180
|
+
"coastline",
|
974
1181
|
"coat",
|
975
|
-
"
|
1182
|
+
"coauthor",
|
976
1183
|
"cobalt",
|
977
|
-
"
|
978
|
-
"
|
979
|
-
"cock",
|
1184
|
+
"cobbler",
|
1185
|
+
"cobweb",
|
980
1186
|
"cocoa",
|
981
|
-
"
|
1187
|
+
"coconut",
|
1188
|
+
"cod",
|
1189
|
+
"coeditor",
|
1190
|
+
"coerce",
|
1191
|
+
"coexist",
|
982
1192
|
"coffee",
|
983
|
-
"
|
984
|
-
"
|
1193
|
+
"cofounder",
|
1194
|
+
"cognition",
|
1195
|
+
"cognitive",
|
1196
|
+
"cogwheel",
|
1197
|
+
"coherence",
|
1198
|
+
"coherent",
|
1199
|
+
"cohesive",
|
985
1200
|
"coil",
|
986
|
-
"coin",
|
987
1201
|
"coke",
|
1202
|
+
"cola",
|
988
1203
|
"cold",
|
1204
|
+
"coleslaw",
|
1205
|
+
"coliseum",
|
1206
|
+
"collage",
|
1207
|
+
"collapse",
|
989
1208
|
"collar",
|
990
|
-
"
|
1209
|
+
"collected",
|
1210
|
+
"collector",
|
1211
|
+
"collide",
|
1212
|
+
"collie",
|
1213
|
+
"collision",
|
1214
|
+
"colonial",
|
1215
|
+
"colonist",
|
1216
|
+
"colonize",
|
991
1217
|
"colony",
|
1218
|
+
"colossal",
|
992
1219
|
"colt",
|
993
|
-
"
|
994
|
-
"comb",
|
995
|
-
"combat",
|
1220
|
+
"coma",
|
996
1221
|
"come",
|
997
|
-
"
|
1222
|
+
"comfort",
|
1223
|
+
"comfy",
|
998
1224
|
"comic",
|
999
|
-
"
|
1225
|
+
"coming",
|
1226
|
+
"comma",
|
1227
|
+
"commence",
|
1228
|
+
"commend",
|
1229
|
+
"comment",
|
1230
|
+
"commerce",
|
1231
|
+
"commode",
|
1232
|
+
"commodity",
|
1233
|
+
"commodore",
|
1000
1234
|
"common",
|
1235
|
+
"commotion",
|
1236
|
+
"commute",
|
1237
|
+
"commuting",
|
1238
|
+
"compacted",
|
1239
|
+
"compacter",
|
1240
|
+
"compactly",
|
1241
|
+
"compactor",
|
1242
|
+
"companion",
|
1243
|
+
"company",
|
1244
|
+
"compare",
|
1001
1245
|
"compel",
|
1246
|
+
"compile",
|
1002
1247
|
"comply",
|
1248
|
+
"component",
|
1249
|
+
"composed",
|
1250
|
+
"composer",
|
1251
|
+
"composite",
|
1252
|
+
"compost",
|
1253
|
+
"composure",
|
1254
|
+
"compound",
|
1255
|
+
"compress",
|
1256
|
+
"comprised",
|
1257
|
+
"computer",
|
1258
|
+
"computing",
|
1259
|
+
"comrade",
|
1260
|
+
"concave",
|
1261
|
+
"conceal",
|
1262
|
+
"conceded",
|
1263
|
+
"concept",
|
1264
|
+
"concerned",
|
1265
|
+
"concert",
|
1266
|
+
"conch",
|
1267
|
+
"concierge",
|
1268
|
+
"concise",
|
1269
|
+
"conclude",
|
1270
|
+
"concrete",
|
1003
1271
|
"concur",
|
1272
|
+
"condense",
|
1273
|
+
"condiment",
|
1274
|
+
"condition",
|
1275
|
+
"condone",
|
1276
|
+
"conducive",
|
1277
|
+
"conductor",
|
1278
|
+
"conduit",
|
1004
1279
|
"cone",
|
1005
|
-
"
|
1006
|
-
"
|
1007
|
-
"
|
1008
|
-
"
|
1009
|
-
"
|
1010
|
-
"
|
1011
|
-
"
|
1280
|
+
"confess",
|
1281
|
+
"confetti",
|
1282
|
+
"confidant",
|
1283
|
+
"confident",
|
1284
|
+
"confider",
|
1285
|
+
"confiding",
|
1286
|
+
"configure",
|
1287
|
+
"confined",
|
1288
|
+
"confining",
|
1289
|
+
"confirm",
|
1290
|
+
"conflict",
|
1291
|
+
"conform",
|
1292
|
+
"confound",
|
1293
|
+
"confront",
|
1294
|
+
"confused",
|
1295
|
+
"confusing",
|
1296
|
+
"confusion",
|
1297
|
+
"congenial",
|
1298
|
+
"congested",
|
1299
|
+
"congrats",
|
1300
|
+
"congress",
|
1301
|
+
"conical",
|
1302
|
+
"conjoined",
|
1303
|
+
"conjure",
|
1304
|
+
"conjuror",
|
1305
|
+
"connected",
|
1306
|
+
"connector",
|
1307
|
+
"consensus",
|
1308
|
+
"consent",
|
1309
|
+
"console",
|
1310
|
+
"consoling",
|
1311
|
+
"consonant",
|
1312
|
+
"constable",
|
1313
|
+
"constant",
|
1314
|
+
"constrain",
|
1315
|
+
"constrict",
|
1316
|
+
"construct",
|
1317
|
+
"consult",
|
1318
|
+
"consumer",
|
1319
|
+
"consuming",
|
1320
|
+
"contact",
|
1321
|
+
"container",
|
1322
|
+
"contempt",
|
1323
|
+
"contend",
|
1324
|
+
"contented",
|
1325
|
+
"contently",
|
1326
|
+
"contents",
|
1327
|
+
"contest",
|
1328
|
+
"context",
|
1329
|
+
"contort",
|
1330
|
+
"contour",
|
1331
|
+
"contrite",
|
1332
|
+
"control",
|
1333
|
+
"contusion",
|
1334
|
+
"convene",
|
1335
|
+
"convent",
|
1336
|
+
"copartner",
|
1012
1337
|
"cope",
|
1338
|
+
"copied",
|
1339
|
+
"copier",
|
1340
|
+
"copilot",
|
1341
|
+
"coping",
|
1342
|
+
"copious",
|
1013
1343
|
"copper",
|
1014
1344
|
"copy",
|
1015
1345
|
"coral",
|
1016
|
-
"cord",
|
1017
|
-
"core",
|
1018
1346
|
"cork",
|
1019
|
-
"
|
1347
|
+
"cornball",
|
1348
|
+
"cornbread",
|
1349
|
+
"corncob",
|
1350
|
+
"cornea",
|
1351
|
+
"corned",
|
1020
1352
|
"corner",
|
1021
|
-
"
|
1022
|
-
"
|
1023
|
-
"
|
1353
|
+
"cornfield",
|
1354
|
+
"cornflake",
|
1355
|
+
"cornhusk",
|
1356
|
+
"cornmeal",
|
1357
|
+
"cornstalk",
|
1358
|
+
"corny",
|
1359
|
+
"coronary",
|
1360
|
+
"coroner",
|
1361
|
+
"corporal",
|
1362
|
+
"corporate",
|
1363
|
+
"corral",
|
1364
|
+
"correct",
|
1365
|
+
"corridor",
|
1366
|
+
"corrode",
|
1367
|
+
"corroding",
|
1368
|
+
"corrosive",
|
1369
|
+
"corsage",
|
1370
|
+
"corset",
|
1024
1371
|
"cortex",
|
1372
|
+
"cosigner",
|
1373
|
+
"cosmetics",
|
1025
1374
|
"cosmic",
|
1026
1375
|
"cosmos",
|
1376
|
+
"cosponsor",
|
1027
1377
|
"cost",
|
1028
|
-
"
|
1029
|
-
"cosy",
|
1378
|
+
"cottage",
|
1030
1379
|
"cotton",
|
1031
1380
|
"couch",
|
1032
1381
|
"cough",
|
1033
1382
|
"could",
|
1034
|
-
"
|
1383
|
+
"countable",
|
1384
|
+
"countdown",
|
1385
|
+
"counting",
|
1386
|
+
"countless",
|
1387
|
+
"country",
|
1035
1388
|
"county",
|
1036
|
-
"
|
1037
|
-
"
|
1038
|
-
"coupon",
|
1039
|
-
"course",
|
1040
|
-
"court",
|
1041
|
-
"cousin",
|
1042
|
-
"cove",
|
1389
|
+
"courier",
|
1390
|
+
"covenant",
|
1043
1391
|
"cover",
|
1044
|
-
"
|
1045
|
-
"
|
1046
|
-
"
|
1047
|
-
"
|
1048
|
-
"
|
1049
|
-
"
|
1392
|
+
"coveted",
|
1393
|
+
"coveting",
|
1394
|
+
"coyness",
|
1395
|
+
"cozily",
|
1396
|
+
"coziness",
|
1397
|
+
"cozy",
|
1398
|
+
"crabbing",
|
1399
|
+
"crabgrass",
|
1400
|
+
"crablike",
|
1401
|
+
"crabmeat",
|
1050
1402
|
"cradle",
|
1051
|
-
"
|
1403
|
+
"cradling",
|
1404
|
+
"crafter",
|
1405
|
+
"craftily",
|
1406
|
+
"craftsman",
|
1407
|
+
"craftwork",
|
1052
1408
|
"crafty",
|
1053
|
-
"
|
1409
|
+
"cramp",
|
1410
|
+
"cranberry",
|
1054
1411
|
"crane",
|
1055
|
-
"
|
1056
|
-
"
|
1412
|
+
"cranial",
|
1413
|
+
"cranium",
|
1414
|
+
"crank",
|
1057
1415
|
"crate",
|
1058
|
-
"
|
1059
|
-
"
|
1416
|
+
"crave",
|
1417
|
+
"craving",
|
1418
|
+
"crawfish",
|
1419
|
+
"crawlers",
|
1420
|
+
"crawling",
|
1421
|
+
"crayfish",
|
1422
|
+
"crayon",
|
1423
|
+
"crazed",
|
1424
|
+
"crazily",
|
1425
|
+
"craziness",
|
1060
1426
|
"crazy",
|
1061
|
-
"
|
1062
|
-
"
|
1063
|
-
"
|
1427
|
+
"creamed",
|
1428
|
+
"creamer",
|
1429
|
+
"creamlike",
|
1430
|
+
"crease",
|
1431
|
+
"creasing",
|
1432
|
+
"creatable",
|
1064
1433
|
"create",
|
1434
|
+
"creation",
|
1435
|
+
"creative",
|
1436
|
+
"creature",
|
1437
|
+
"credible",
|
1438
|
+
"credibly",
|
1065
1439
|
"credit",
|
1066
1440
|
"creed",
|
1067
|
-
"
|
1068
|
-
"
|
1069
|
-
"
|
1441
|
+
"creme",
|
1442
|
+
"creole",
|
1443
|
+
"crepe",
|
1070
1444
|
"crept",
|
1071
|
-
"
|
1072
|
-
"
|
1445
|
+
"crescent",
|
1446
|
+
"crested",
|
1447
|
+
"cresting",
|
1448
|
+
"crestless",
|
1449
|
+
"crevice",
|
1450
|
+
"crewless",
|
1451
|
+
"crewman",
|
1452
|
+
"crewmate",
|
1453
|
+
"crib",
|
1454
|
+
"cricket",
|
1073
1455
|
"cried",
|
1074
|
-
"
|
1075
|
-
"
|
1076
|
-
"
|
1077
|
-
"
|
1078
|
-
"
|
1456
|
+
"crier",
|
1457
|
+
"crimp",
|
1458
|
+
"crimson",
|
1459
|
+
"cringe",
|
1460
|
+
"cringing",
|
1461
|
+
"crinkle",
|
1462
|
+
"crinkly",
|
1463
|
+
"crisped",
|
1464
|
+
"crisping",
|
1465
|
+
"crisply",
|
1466
|
+
"crispness",
|
1467
|
+
"crispy",
|
1468
|
+
"criteria",
|
1469
|
+
"critter",
|
1470
|
+
"croak",
|
1471
|
+
"crock",
|
1079
1472
|
"crook",
|
1473
|
+
"croon",
|
1080
1474
|
"crop",
|
1081
1475
|
"cross",
|
1082
|
-
"
|
1476
|
+
"crouch",
|
1477
|
+
"crouton",
|
1478
|
+
"crowbar",
|
1083
1479
|
"crowd",
|
1084
1480
|
"crown",
|
1085
|
-
"
|
1086
|
-
"
|
1087
|
-
"
|
1088
|
-
"
|
1089
|
-
"
|
1481
|
+
"crucial",
|
1482
|
+
"crudely",
|
1483
|
+
"crudeness",
|
1484
|
+
"cruelly",
|
1485
|
+
"cruelness",
|
1486
|
+
"cruelty",
|
1487
|
+
"crumb",
|
1488
|
+
"crummiest",
|
1489
|
+
"crummy",
|
1490
|
+
"crumpet",
|
1491
|
+
"crumpled",
|
1492
|
+
"cruncher",
|
1493
|
+
"crunching",
|
1494
|
+
"crunchy",
|
1495
|
+
"crusader",
|
1496
|
+
"crushable",
|
1497
|
+
"crushed",
|
1498
|
+
"crusher",
|
1499
|
+
"crushing",
|
1090
1500
|
"crust",
|
1091
1501
|
"crux",
|
1092
|
-
"
|
1093
|
-
"
|
1502
|
+
"crying",
|
1503
|
+
"cryptic",
|
1504
|
+
"crystal",
|
1505
|
+
"cubbyhole",
|
1094
1506
|
"cube",
|
1095
|
-
"
|
1096
|
-
"
|
1097
|
-
"
|
1098
|
-
"
|
1099
|
-
"
|
1100
|
-
"
|
1507
|
+
"cubical",
|
1508
|
+
"cubicle",
|
1509
|
+
"cucumber",
|
1510
|
+
"cuddle",
|
1511
|
+
"cuddly",
|
1512
|
+
"cufflink",
|
1513
|
+
"culinary",
|
1514
|
+
"culminate",
|
1515
|
+
"culpable",
|
1516
|
+
"culprit",
|
1517
|
+
"cultivate",
|
1518
|
+
"cultural",
|
1519
|
+
"culture",
|
1520
|
+
"cupbearer",
|
1521
|
+
"cupcake",
|
1522
|
+
"cupid",
|
1523
|
+
"cupped",
|
1524
|
+
"cupping",
|
1525
|
+
"curable",
|
1526
|
+
"curator",
|
1527
|
+
"curdle",
|
1101
1528
|
"cure",
|
1102
1529
|
"curfew",
|
1103
|
-
"
|
1530
|
+
"curing",
|
1531
|
+
"curled",
|
1532
|
+
"curler",
|
1533
|
+
"curliness",
|
1534
|
+
"curling",
|
1535
|
+
"curly",
|
1104
1536
|
"curry",
|
1105
1537
|
"curse",
|
1538
|
+
"cursive",
|
1106
1539
|
"cursor",
|
1540
|
+
"curtain",
|
1541
|
+
"curtly",
|
1542
|
+
"curtsy",
|
1543
|
+
"curvature",
|
1107
1544
|
"curve",
|
1108
|
-
"
|
1545
|
+
"curvy",
|
1546
|
+
"cushy",
|
1547
|
+
"cusp",
|
1548
|
+
"cussed",
|
1549
|
+
"custard",
|
1550
|
+
"custodian",
|
1551
|
+
"custody",
|
1552
|
+
"customary",
|
1553
|
+
"customer",
|
1554
|
+
"customize",
|
1555
|
+
"customs",
|
1109
1556
|
"cut",
|
1110
|
-
"cute",
|
1111
1557
|
"cycle",
|
1112
1558
|
"cyclic",
|
1113
|
-
"
|
1559
|
+
"cycling",
|
1560
|
+
"cyclist",
|
1561
|
+
"cylinder",
|
1562
|
+
"cymbal",
|
1563
|
+
"cytoplasm",
|
1564
|
+
"cytoplast",
|
1565
|
+
"dab",
|
1114
1566
|
"dad",
|
1115
|
-
"
|
1567
|
+
"daffodil",
|
1116
1568
|
"dagger",
|
1117
1569
|
"daily",
|