@leocuvee/turtlecoin-utils 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +27 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/inspectionProfiles/Project_Default.xml +7 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/turtlecoin-utils.iml +12 -0
- package/.idea/vcs.xml +6 -0
- package/.travis.yml +11 -0
- package/CONTRIBUTING.md +3 -0
- package/LICENSE +674 -0
- package/README.md +203 -0
- package/config.json +7 -0
- package/docs/.nojekyll +0 -0
- package/docs/CNAME +1 -0
- package/docs/assets/css/main.css +2321 -0
- package/docs/assets/images/icons.png +0 -0
- package/docs/assets/images/icons@2x.png +0 -0
- package/docs/assets/images/widgets.png +0 -0
- package/docs/assets/images/widgets@2x.png +0 -0
- package/docs/assets/js/main.js +1 -0
- package/docs/assets/js/search.js +3 -0
- package/docs/classes/address.html +964 -0
- package/docs/classes/addressprefix.html +431 -0
- package/docs/classes/block.html +965 -0
- package/docs/classes/blocktemplate.html +695 -0
- package/docs/classes/cryptonote.html +1137 -0
- package/docs/classes/ed25519.keypair.html +400 -0
- package/docs/classes/ed25519.keys.html +373 -0
- package/docs/classes/extranoncetag.extranoncedata.html +454 -0
- package/docs/classes/extranoncetag.extranoncepaymentid.html +453 -0
- package/docs/classes/extranoncetag.iextranonce.html +347 -0
- package/docs/classes/extratag.extramergedmining.html +494 -0
- package/docs/classes/extratag.extranonce.html +530 -0
- package/docs/classes/extratag.extrapadding.html +456 -0
- package/docs/classes/extratag.extrapublickey.html +460 -0
- package/docs/classes/extratag.iextratag.html +355 -0
- package/docs/classes/levinpacket.html +674 -0
- package/docs/classes/levinpayloads.handshake.html +731 -0
- package/docs/classes/levinpayloads.ilevinpayload.html +318 -0
- package/docs/classes/levinpayloads.liteblock.html +494 -0
- package/docs/classes/levinpayloads.missingtransactions.html +494 -0
- package/docs/classes/levinpayloads.newblock.html +540 -0
- package/docs/classes/levinpayloads.newtransactions.html +402 -0
- package/docs/classes/levinpayloads.peerentry.html +610 -0
- package/docs/classes/levinpayloads.ping.html +450 -0
- package/docs/classes/levinpayloads.rawblock.html +344 -0
- package/docs/classes/levinpayloads.requestchain.html +402 -0
- package/docs/classes/levinpayloads.requestgetobjects.html +448 -0
- package/docs/classes/levinpayloads.requesttxpool.html +402 -0
- package/docs/classes/levinpayloads.responsechain.html +494 -0
- package/docs/classes/levinpayloads.responsegetobjects.html +540 -0
- package/docs/classes/levinpayloads.timedsync.html +540 -0
- package/docs/classes/multisig.html +930 -0
- package/docs/classes/multisigmessage.html +694 -0
- package/docs/classes/parentblock.html +347 -0
- package/docs/classes/transaction.html +925 -0
- package/docs/classes/transactioninputs.coinbaseinput.html +390 -0
- package/docs/classes/transactioninputs.itransactioninput.html +321 -0
- package/docs/classes/transactioninputs.keyinput.html +459 -0
- package/docs/classes/transactionoutputs.itransactionoutput.html +317 -0
- package/docs/classes/transactionoutputs.keyoutput.html +422 -0
- package/docs/enums/extranoncetag.noncetagtype.html +246 -0
- package/docs/enums/extratag.extratagtype.html +280 -0
- package/docs/enums/levinprotocol.commandtype.html +391 -0
- package/docs/enums/transactioninputs.inputtype.html +246 -0
- package/docs/enums/transactionoutputs.outputtype.html +229 -0
- package/docs/globals.html +238 -0
- package/docs/index.html +271 -0
- package/docs/interfaces/interfaces.config.html +590 -0
- package/docs/interfaces/interfaces.daemonblocktemplateresponse.html +323 -0
- package/docs/interfaces/interfaces.generatedinput.html +304 -0
- package/docs/interfaces/interfaces.generatedoutput.html +285 -0
- package/docs/interfaces/interfaces.inputkeys.html +304 -0
- package/docs/interfaces/interfaces.ipreparedtransaction.html +268 -0
- package/docs/interfaces/interfaces.output.html +399 -0
- package/docs/interfaces/interfaces.preparedringsignature.html +377 -0
- package/docs/interfaces/interfaces.preparedtransaction.html +329 -0
- package/docs/interfaces/interfaces.randomoutput.html +285 -0
- package/docs/interfaces/interfaces.transactionrecipient.html +285 -0
- package/docs/interfaces/multisiginterfaces.partialkeyimage.html +277 -0
- package/docs/interfaces/multisiginterfaces.partialsigningkey.html +277 -0
- package/docs/modules/ed25519.html +195 -0
- package/docs/modules/extranoncetag.html +208 -0
- package/docs/modules/extratag.html +216 -0
- package/docs/modules/interfaces.html +231 -0
- package/docs/modules/levinpayloads.html +247 -0
- package/docs/modules/levinprotocol.html +191 -0
- package/docs/modules/multisiginterfaces.html +195 -0
- package/docs/modules/transactioninputs.html +208 -0
- package/docs/modules/transactionoutputs.html +204 -0
- package/index.d.ts +417 -0
- package/index.js +1508 -0
- package/lib/base58.js +220 -0
- package/lib/biginteger.js +1591 -0
- package/lib/blocktemplate.js +408 -0
- package/lib/crypto.js +19698 -0
- package/lib/mnemonic.js +1204 -0
- package/lib/nacl-fast-cn.js +608 -0
- package/lib/ringsigs.js +24262 -0
- package/lib/sha3.js +477 -0
- package/package.json +58 -0
- package/src/Address.ts +433 -0
- package/src/AddressPrefix.ts +117 -0
- package/src/Block.ts +556 -0
- package/src/BlockTemplate.ts +289 -0
- package/src/Common.ts +105 -0
- package/src/Config.ts +66 -0
- package/src/CryptoNote.ts +1072 -0
- package/src/LevinPacket.ts +366 -0
- package/src/Multisig.ts +600 -0
- package/src/MultisigMessage.ts +374 -0
- package/src/ParentBlock.ts +39 -0
- package/src/Transaction.ts +628 -0
- package/src/Types/ED25519.ts +187 -0
- package/src/Types/IExtraNonce.ts +225 -0
- package/src/Types/IExtraTag.ts +507 -0
- package/src/Types/ITransaction.ts +230 -0
- package/src/Types/ITransactionInput.ts +190 -0
- package/src/Types/ITransactionOutput.ts +108 -0
- package/src/Types/LevinPayloads.ts +1576 -0
- package/src/Types/MultisigInterfaces.ts +65 -0
- package/src/Types/PortableStorage.ts +289 -0
- package/src/Types.ts +36 -0
- package/src/index.ts +36 -0
- package/test/template.json +6 -0
- package/test/test.js +1457 -0
- package/tests/blocktemplate.json +6 -0
- package/tests/tests.js +215 -0
- package/tsconfig.json +15 -0
- package/tslint.json +36 -0
- package/typedoc.json +10 -0
- package/webpack.config.js +15 -0
package/lib/mnemonic.js
ADDED
|
@@ -0,0 +1,1204 @@
|
|
|
1
|
+
// Copyright by Undiclosed Author(s) of Unknown Origin
|
|
2
|
+
// Copyright (c) 2018, The TurtleCoin Developers
|
|
3
|
+
//
|
|
4
|
+
// Please see the included LICENSE file for more information.
|
|
5
|
+
|
|
6
|
+
'use strict'
|
|
7
|
+
|
|
8
|
+
const crc = require('crc')
|
|
9
|
+
|
|
10
|
+
const GetRandomValues = require('get-random-values')
|
|
11
|
+
|
|
12
|
+
var defaultWordset = 'english'
|
|
13
|
+
|
|
14
|
+
function getChecksumIndex (words, prefixLength) {
|
|
15
|
+
var trimmerWords = ''
|
|
16
|
+
for (var i = 0; i < words.length; i++) {
|
|
17
|
+
trimmerWords += words[i].slice(0, prefixLength)
|
|
18
|
+
}
|
|
19
|
+
var checksum = crc.crc32(trimmerWords)
|
|
20
|
+
var index = checksum % words.length
|
|
21
|
+
return index
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
function encode (str, wordsetName) {
|
|
25
|
+
'use strict'
|
|
26
|
+
wordsetName = wordsetName || defaultWordset
|
|
27
|
+
var wordset = words[wordsetName]
|
|
28
|
+
var out = []
|
|
29
|
+
var n = wordset.words.length
|
|
30
|
+
for (var j = 0; j < str.length; j += 8) {
|
|
31
|
+
str = str.slice(0, j) + swapEndian4byte(str.slice(j, j + 8)) + str.slice(j + 8)
|
|
32
|
+
}
|
|
33
|
+
for (var i = 0; i < str.length; i += 8) {
|
|
34
|
+
var x = parseInt(str.substr(i, 8), 16)
|
|
35
|
+
var w1 = (x % n)
|
|
36
|
+
var w2 = (Math.floor(x / n) + w1) % n
|
|
37
|
+
var w3 = (Math.floor(Math.floor(x / n) / n) + w2) % n
|
|
38
|
+
out = out.concat([wordset.words[w1], wordset.words[w2], wordset.words[w3]])
|
|
39
|
+
}
|
|
40
|
+
if (wordset.prefixLength > 0) {
|
|
41
|
+
out.push(out[getChecksumIndex(out, wordset.prefixLength)])
|
|
42
|
+
}
|
|
43
|
+
return out.join(' ')
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function swapEndian4byte (str) {
|
|
47
|
+
'use strict'
|
|
48
|
+
if (str.length !== 8) throw new Error('Invalid input length: ' + str.length)
|
|
49
|
+
return str.slice(6, 8) + str.slice(4, 6) + str.slice(2, 4) + str.slice(0, 2)
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
function decode (str, wordsetName) {
|
|
53
|
+
'use strict'
|
|
54
|
+
wordsetName = wordsetName || defaultWordset
|
|
55
|
+
var wordset = words[wordsetName]
|
|
56
|
+
var out = ''
|
|
57
|
+
var n = wordset.words.length
|
|
58
|
+
var wlist = str.toLowerCase().split(' ')
|
|
59
|
+
var checksumWord = ''
|
|
60
|
+
if (wlist.length < 12) throw new Error("You've entered too few words, please try again")
|
|
61
|
+
if ((wordset.prefixLength === 0 && (wlist.length % 3 !== 0)) ||
|
|
62
|
+
(wordset.prefixLength > 0 && (wlist.length % 3 === 2))) throw new Error("You've entered too few words, please try again")
|
|
63
|
+
if (wordset.prefixLength > 0 && (wlist.length % 3 === 0)) throw new Error('You seem to be missing the last word in your private key, please try again')
|
|
64
|
+
if (wordset.prefixLength > 0) {
|
|
65
|
+
// Pop checksum from mnemonic
|
|
66
|
+
checksumWord = wlist.pop()
|
|
67
|
+
}
|
|
68
|
+
// Decode mnemonic
|
|
69
|
+
for (var i = 0; i < wlist.length; i += 3) {
|
|
70
|
+
var w1, w2, w3
|
|
71
|
+
if (wordset.prefixLength === 0) {
|
|
72
|
+
w1 = wordset.words.indexOf(wlist[i])
|
|
73
|
+
w2 = wordset.words.indexOf(wlist[i + 1])
|
|
74
|
+
w3 = wordset.words.indexOf(wlist[i + 2])
|
|
75
|
+
} else {
|
|
76
|
+
w1 = wordset.trunc_words.indexOf(wlist[i].slice(0, wordset.prefixLength))
|
|
77
|
+
w2 = wordset.trunc_words.indexOf(wlist[i + 1].slice(0, wordset.prefixLength))
|
|
78
|
+
w3 = wordset.trunc_words.indexOf(wlist[i + 2].slice(0, wordset.prefixLength))
|
|
79
|
+
}
|
|
80
|
+
if (w1 === -1 || w2 === -1 || w3 === -1) {
|
|
81
|
+
throw new Error('invalid word in mnemonic')
|
|
82
|
+
}
|
|
83
|
+
var x = w1 + n * (((n - w1) + w2) % n) + n * n * (((n - w2) + w3) % n)
|
|
84
|
+
if (x % n !== w1) throw new Error('Something went wrong when decoding your private key, please try again')
|
|
85
|
+
out += swapEndian4byte(('0000000' + x.toString(16)).slice(-8))
|
|
86
|
+
}
|
|
87
|
+
// Verify checksum
|
|
88
|
+
if (wordset.prefixLength > 0) {
|
|
89
|
+
var index = getChecksumIndex(wlist, wordset.prefixLength)
|
|
90
|
+
var expectedChecksumWord = wlist[index]
|
|
91
|
+
if (expectedChecksumWord.slice(0, wordset.prefixLength) !== checksumWord.slice(0, wordset.prefixLength)) {
|
|
92
|
+
throw new Error('Your private key could not be verified, please try again')
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
return out
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
function random (bits) {
|
|
99
|
+
'use strict'
|
|
100
|
+
if (bits % 32 !== 0) throw new Error('Something weird went wrong: Invalid number of bits - ' + bits)
|
|
101
|
+
var array = new Uint8Array(bits / 8)
|
|
102
|
+
|
|
103
|
+
var i = 0
|
|
104
|
+
|
|
105
|
+
function arrIsZero () {
|
|
106
|
+
for (var j = 0; j < bits / 8; ++j) {
|
|
107
|
+
if (array[j] !== 0) return false
|
|
108
|
+
}
|
|
109
|
+
return true
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
do {
|
|
113
|
+
GetRandomValues(array)
|
|
114
|
+
|
|
115
|
+
++i
|
|
116
|
+
} while (i < 5 && arrIsZero())
|
|
117
|
+
if (arrIsZero()) {
|
|
118
|
+
throw new Error('Something went wrong and we could not securely generate random data for your account')
|
|
119
|
+
}
|
|
120
|
+
// Convert to hex
|
|
121
|
+
var out = ''
|
|
122
|
+
for (var j = 0; j < bits / 8; ++j) {
|
|
123
|
+
out += ('0000000' + array[j].toString(16)).slice(-8)
|
|
124
|
+
}
|
|
125
|
+
return out
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
var words = {
|
|
129
|
+
'electrum': {
|
|
130
|
+
prefixLength: 0,
|
|
131
|
+
words: [
|
|
132
|
+
'like', 'just', 'love', 'know', 'never', 'want', 'time', 'out', 'there',
|
|
133
|
+
'make', 'look', 'eye', 'down', 'only', 'think', 'heart', 'back', 'then',
|
|
134
|
+
'into', 'about', 'more', 'away', 'still', 'them', 'take', 'thing', 'even',
|
|
135
|
+
'through', 'long', 'always', 'world', 'too', 'friend', 'tell', 'try',
|
|
136
|
+
'hand', 'thought', 'over', 'here', 'other', 'need', 'smile', 'again',
|
|
137
|
+
'much', 'cry', 'been', 'night', 'ever', 'little', 'said', 'end', 'some',
|
|
138
|
+
'those', 'around', 'mind', 'people', 'girl', 'leave', 'dream', 'left',
|
|
139
|
+
'turn', 'myself', 'give', 'nothing', 'really', 'off', 'before',
|
|
140
|
+
'something', 'find', 'walk', 'wish', 'good', 'once', 'place', 'ask',
|
|
141
|
+
'stop', 'keep', 'watch', 'seem', 'everything', 'wait', 'got', 'yet',
|
|
142
|
+
'made', 'remember', 'start', 'alone', 'run', 'hope', 'maybe', 'believe',
|
|
143
|
+
'body', 'hate', 'after', 'close', 'talk', 'stand', 'own', 'each', 'hurt',
|
|
144
|
+
'help', 'home', 'god', 'soul', 'new', 'many', 'two', 'inside', 'should',
|
|
145
|
+
'true', 'first', 'fear', 'mean', 'better', 'play', 'another', 'gone',
|
|
146
|
+
'change', 'use', 'wonder', 'someone', 'hair', 'cold', 'open', 'best',
|
|
147
|
+
'any', 'behind', 'happen', 'water', 'dark', 'laugh', 'stay', 'forever',
|
|
148
|
+
'name', 'work', 'show', 'sky', 'break', 'came', 'deep', 'door', 'put',
|
|
149
|
+
'black', 'together', 'upon', 'happy', 'such', 'great', 'white', 'matter',
|
|
150
|
+
'fill', 'past', 'please', 'burn', 'cause', 'enough', 'touch', 'moment',
|
|
151
|
+
'soon', 'voice', 'scream', 'anything', 'stare', 'sound', 'red', 'everyone',
|
|
152
|
+
'hide', 'kiss', 'truth', 'death', 'beautiful', 'mine', 'blood', 'broken',
|
|
153
|
+
'very', 'pass', 'next', 'forget', 'tree', 'wrong', 'air', 'mother',
|
|
154
|
+
'understand', 'lip', 'hit', 'wall', 'memory', 'sleep', 'free', 'high',
|
|
155
|
+
'realize', 'school', 'might', 'skin', 'sweet', 'perfect', 'blue', 'kill',
|
|
156
|
+
'breath', 'dance', 'against', 'fly', 'between', 'grow', 'strong', 'under',
|
|
157
|
+
'listen', 'bring', 'sometimes', 'speak', 'pull', 'person', 'become',
|
|
158
|
+
'family', 'begin', 'ground', 'real', 'small', 'father', 'sure', 'feet',
|
|
159
|
+
'rest', 'young', 'finally', 'land', 'across', 'today', 'different', 'guy',
|
|
160
|
+
'line', 'fire', 'reason', 'reach', 'second', 'slowly', 'write', 'eat',
|
|
161
|
+
'smell', 'mouth', 'step', 'learn', 'three', 'floor', 'promise', 'breathe',
|
|
162
|
+
'darkness', 'push', 'earth', 'guess', 'save', 'song', 'above', 'along',
|
|
163
|
+
'both', 'color', 'house', 'almost', 'sorry', 'anymore', 'brother', 'okay',
|
|
164
|
+
'dear', 'game', 'fade', 'already', 'apart', 'warm', 'beauty', 'heard',
|
|
165
|
+
'notice', 'question', 'shine', 'began', 'piece', 'whole', 'shadow',
|
|
166
|
+
'secret', 'street', 'within', 'finger', 'point', 'morning', 'whisper',
|
|
167
|
+
'child', 'moon', 'green', 'story', 'glass', 'kid', 'silence', 'since',
|
|
168
|
+
'soft', 'yourself', 'empty', 'shall', 'angel', 'answer', 'baby', 'bright',
|
|
169
|
+
'dad', 'path', 'worry', 'hour', 'drop', 'follow', 'power', 'war', 'half',
|
|
170
|
+
'flow', 'heaven', 'act', 'chance', 'fact', 'least', 'tired', 'children',
|
|
171
|
+
'near', 'quite', 'afraid', 'rise', 'sea', 'taste', 'window', 'cover',
|
|
172
|
+
'nice', 'trust', 'lot', 'sad', 'cool', 'force', 'peace', 'return', 'blind',
|
|
173
|
+
'easy', 'ready', 'roll', 'rose', 'drive', 'held', 'music', 'beneath',
|
|
174
|
+
'hang', 'mom', 'paint', 'emotion', 'quiet', 'clear', 'cloud', 'few',
|
|
175
|
+
'pretty', 'bird', 'outside', 'paper', 'picture', 'front', 'rock', 'simple',
|
|
176
|
+
'anyone', 'meant', 'reality', 'road', 'sense', 'waste', 'bit', 'leaf',
|
|
177
|
+
'thank', 'happiness', 'meet', 'men', 'smoke', 'truly', 'decide', 'self',
|
|
178
|
+
'age', 'book', 'form', 'alive', 'carry', 'escape', 'damn', 'instead',
|
|
179
|
+
'able', 'ice', 'minute', 'throw', 'catch', 'leg', 'ring', 'course',
|
|
180
|
+
'goodbye', 'lead', 'poem', 'sick', 'corner', 'desire', 'known', 'problem',
|
|
181
|
+
'remind', 'shoulder', 'suppose', 'toward', 'wave', 'drink', 'jump',
|
|
182
|
+
'woman', 'pretend', 'sister', 'week', 'human', 'joy', 'crack', 'grey',
|
|
183
|
+
'pray', 'surprise', 'dry', 'knee', 'less', 'search', 'bleed', 'caught',
|
|
184
|
+
'clean', 'embrace', 'future', 'king', 'son', 'sorrow', 'chest', 'hug',
|
|
185
|
+
'remain', 'sat', 'worth', 'blow', 'daddy', 'final', 'parent', 'tight',
|
|
186
|
+
'also', 'create', 'lonely', 'safe', 'cross', 'dress', 'evil', 'silent',
|
|
187
|
+
'bone', 'fate', 'perhaps', 'anger', 'class', 'scar', 'snow', 'tiny',
|
|
188
|
+
'tonight', 'continue', 'control', 'dog', 'edge', 'mirror', 'month',
|
|
189
|
+
'suddenly', 'comfort', 'given', 'loud', 'quickly', 'gaze', 'plan', 'rush',
|
|
190
|
+
'stone', 'town', 'battle', 'ignore', 'spirit', 'stood', 'stupid', 'yours',
|
|
191
|
+
'brown', 'build', 'dust', 'hey', 'kept', 'pay', 'phone', 'twist',
|
|
192
|
+
'although', 'ball', 'beyond', 'hidden', 'nose', 'taken', 'fail', 'float',
|
|
193
|
+
'pure', 'somehow', 'wash', 'wrap', 'angry', 'cheek', 'creature',
|
|
194
|
+
'forgotten', 'heat', 'rip', 'single', 'space', 'special', 'weak',
|
|
195
|
+
'whatever', 'yell', 'anyway', 'blame', 'job', 'choose', 'country', 'curse',
|
|
196
|
+
'drift', 'echo', 'figure', 'grew', 'laughter', 'neck', 'suffer', 'worse',
|
|
197
|
+
'yeah', 'disappear', 'foot', 'forward', 'knife', 'mess', 'somewhere',
|
|
198
|
+
'stomach', 'storm', 'beg', 'idea', 'lift', 'offer', 'breeze', 'field',
|
|
199
|
+
'five', 'often', 'simply', 'stuck', 'win', 'allow', 'confuse', 'enjoy',
|
|
200
|
+
'except', 'flower', 'seek', 'strength', 'calm', 'grin', 'gun', 'heavy',
|
|
201
|
+
'hill', 'large', 'ocean', 'shoe', 'sigh', 'straight', 'summer', 'tongue',
|
|
202
|
+
'accept', 'crazy', 'everyday', 'exist', 'grass', 'mistake', 'sent', 'shut',
|
|
203
|
+
'surround', 'table', 'ache', 'brain', 'destroy', 'heal', 'nature', 'shout',
|
|
204
|
+
'sign', 'stain', 'choice', 'doubt', 'glance', 'glow', 'mountain', 'queen',
|
|
205
|
+
'stranger', 'throat', 'tomorrow', 'city', 'either', 'fish', 'flame',
|
|
206
|
+
'rather', 'shape', 'spin', 'spread', 'ash', 'distance', 'finish', 'image',
|
|
207
|
+
'imagine', 'important', 'nobody', 'shatter', 'warmth', 'became', 'feed',
|
|
208
|
+
'flesh', 'funny', 'lust', 'shirt', 'trouble', 'yellow', 'attention',
|
|
209
|
+
'bare', 'bite', 'money', 'protect', 'amaze', 'appear', 'born', 'choke',
|
|
210
|
+
'completely', 'daughter', 'fresh', 'friendship', 'gentle', 'probably',
|
|
211
|
+
'six', 'deserve', 'expect', 'grab', 'middle', 'nightmare', 'river',
|
|
212
|
+
'thousand', 'weight', 'worst', 'wound', 'barely', 'bottle', 'cream',
|
|
213
|
+
'regret', 'relationship', 'stick', 'test', 'crush', 'endless', 'fault',
|
|
214
|
+
'itself', 'rule', 'spill', 'art', 'circle', 'join', 'kick', 'mask',
|
|
215
|
+
'master', 'passion', 'quick', 'raise', 'smooth', 'unless', 'wander',
|
|
216
|
+
'actually', 'broke', 'chair', 'deal', 'favorite', 'gift', 'note', 'number',
|
|
217
|
+
'sweat', 'box', 'chill', 'clothes', 'lady', 'mark', 'park', 'poor',
|
|
218
|
+
'sadness', 'tie', 'animal', 'belong', 'brush', 'consume', 'dawn', 'forest',
|
|
219
|
+
'innocent', 'pen', 'pride', 'stream', 'thick', 'clay', 'complete', 'count',
|
|
220
|
+
'draw', 'faith', 'press', 'silver', 'struggle', 'surface', 'taught',
|
|
221
|
+
'teach', 'wet', 'bless', 'chase', 'climb', 'enter', 'letter', 'melt',
|
|
222
|
+
'metal', 'movie', 'stretch', 'swing', 'vision', 'wife', 'beside', 'crash',
|
|
223
|
+
'forgot', 'guide', 'haunt', 'joke', 'knock', 'plant', 'pour', 'prove',
|
|
224
|
+
'reveal', 'steal', 'stuff', 'trip', 'wood', 'wrist', 'bother', 'bottom',
|
|
225
|
+
'crawl', 'crowd', 'fix', 'forgive', 'frown', 'grace', 'loose', 'lucky',
|
|
226
|
+
'party', 'release', 'surely', 'survive', 'teacher', 'gently', 'grip',
|
|
227
|
+
'speed', 'suicide', 'travel', 'treat', 'vein', 'written', 'cage', 'chain',
|
|
228
|
+
'conversation', 'date', 'enemy', 'however', 'interest', 'million', 'page',
|
|
229
|
+
'pink', 'proud', 'sway', 'themselves', 'winter', 'church', 'cruel', 'cup',
|
|
230
|
+
'demon', 'experience', 'freedom', 'pair', 'pop', 'purpose', 'respect',
|
|
231
|
+
'shoot', 'softly', 'state', 'strange', 'bar', 'birth', 'curl', 'dirt',
|
|
232
|
+
'excuse', 'lord', 'lovely', 'monster', 'order', 'pack', 'pants', 'pool',
|
|
233
|
+
'scene', 'seven', 'shame', 'slide', 'ugly', 'among', 'blade', 'blonde',
|
|
234
|
+
'closet', 'creek', 'deny', 'drug', 'eternity', 'gain', 'grade', 'handle',
|
|
235
|
+
'key', 'linger', 'pale', 'prepare', 'swallow', 'swim', 'tremble', 'wheel',
|
|
236
|
+
'won', 'cast', 'cigarette', 'claim', 'college', 'direction', 'dirty',
|
|
237
|
+
'gather', 'ghost', 'hundred', 'loss', 'lung', 'orange', 'present', 'swear',
|
|
238
|
+
'swirl', 'twice', 'wild', 'bitter', 'blanket', 'doctor', 'everywhere',
|
|
239
|
+
'flash', 'grown', 'knowledge', 'numb', 'pressure', 'radio', 'repeat',
|
|
240
|
+
'ruin', 'spend', 'unknown', 'buy', 'clock', 'devil', 'early', 'false',
|
|
241
|
+
'fantasy', 'pound', 'precious', 'refuse', 'sheet', 'teeth', 'welcome',
|
|
242
|
+
'add', 'ahead', 'block', 'bury', 'caress', 'content', 'depth', 'despite',
|
|
243
|
+
'distant', 'marry', 'purple', 'threw', 'whenever', 'bomb', 'dull',
|
|
244
|
+
'easily', 'grasp', 'hospital', 'innocence', 'normal', 'receive', 'reply',
|
|
245
|
+
'rhyme', 'shade', 'someday', 'sword', 'toe', 'visit', 'asleep', 'bought',
|
|
246
|
+
'center', 'consider', 'flat', 'hero', 'history', 'ink', 'insane', 'muscle',
|
|
247
|
+
'mystery', 'pocket', 'reflection', 'shove', 'silently', 'smart', 'soldier',
|
|
248
|
+
'spot', 'stress', 'train', 'type', 'view', 'whether', 'bus', 'energy',
|
|
249
|
+
'explain', 'holy', 'hunger', 'inch', 'magic', 'mix', 'noise', 'nowhere',
|
|
250
|
+
'prayer', 'presence', 'shock', 'snap', 'spider', 'study', 'thunder',
|
|
251
|
+
'trail', 'admit', 'agree', 'bag', 'bang', 'bound', 'butterfly', 'cute',
|
|
252
|
+
'exactly', 'explode', 'familiar', 'fold', 'further', 'pierce', 'reflect',
|
|
253
|
+
'scent', 'selfish', 'sharp', 'sink', 'spring', 'stumble', 'universe',
|
|
254
|
+
'weep', 'women', 'wonderful', 'action', 'ancient', 'attempt', 'avoid',
|
|
255
|
+
'birthday', 'branch', 'chocolate', 'core', 'depress', 'drunk',
|
|
256
|
+
'especially', 'focus', 'fruit', 'honest', 'match', 'palm', 'perfectly',
|
|
257
|
+
'pillow', 'pity', 'poison', 'roar', 'shift', 'slightly', 'thump', 'truck',
|
|
258
|
+
'tune', 'twenty', 'unable', 'wipe', 'wrote', 'coat', 'constant', 'dinner',
|
|
259
|
+
'drove', 'egg', 'eternal', 'flight', 'flood', 'frame', 'freak', 'gasp',
|
|
260
|
+
'glad', 'hollow', 'motion', 'peer', 'plastic', 'root', 'screen', 'season',
|
|
261
|
+
'sting', 'strike', 'team', 'unlike', 'victim', 'volume', 'warn', 'weird',
|
|
262
|
+
'attack', 'await', 'awake', 'built', 'charm', 'crave', 'despair', 'fought',
|
|
263
|
+
'grant', 'grief', 'horse', 'limit', 'message', 'ripple', 'sanity',
|
|
264
|
+
'scatter', 'serve', 'split', 'string', 'trick', 'annoy', 'blur', 'boat',
|
|
265
|
+
'brave', 'clearly', 'cling', 'connect', 'fist', 'forth', 'imagination',
|
|
266
|
+
'iron', 'jock', 'judge', 'lesson', 'milk', 'misery', 'nail', 'naked',
|
|
267
|
+
'ourselves', 'poet', 'possible', 'princess', 'sail', 'size', 'snake',
|
|
268
|
+
'society', 'stroke', 'torture', 'toss', 'trace', 'wise', 'bloom', 'bullet',
|
|
269
|
+
'cell', 'check', 'cost', 'darling', 'during', 'footstep', 'fragile',
|
|
270
|
+
'hallway', 'hardly', 'horizon', 'invisible', 'journey', 'midnight', 'mud',
|
|
271
|
+
'nod', 'pause', 'relax', 'shiver', 'sudden', 'value', 'youth', 'abuse',
|
|
272
|
+
'admire', 'blink', 'breast', 'bruise', 'constantly', 'couple', 'creep',
|
|
273
|
+
'curve', 'difference', 'dumb', 'emptiness', 'gotta', 'honor', 'plain',
|
|
274
|
+
'planet', 'recall', 'rub', 'ship', 'slam', 'soar', 'somebody', 'tightly',
|
|
275
|
+
'weather', 'adore', 'approach', 'bond', 'bread', 'burst', 'candle',
|
|
276
|
+
'coffee', 'cousin', 'crime', 'desert', 'flutter', 'frozen', 'grand',
|
|
277
|
+
'heel', 'hello', 'language', 'level', 'movement', 'pleasure', 'powerful',
|
|
278
|
+
'random', 'rhythm', 'settle', 'silly', 'slap', 'sort', 'spoken', 'steel',
|
|
279
|
+
'threaten', 'tumble', 'upset', 'aside', 'awkward', 'bee', 'blank', 'board',
|
|
280
|
+
'button', 'card', 'carefully', 'complain', 'crap', 'deeply', 'discover',
|
|
281
|
+
'drag', 'dread', 'effort', 'entire', 'fairy', 'giant', 'gotten', 'greet',
|
|
282
|
+
'illusion', 'jeans', 'leap', 'liquid', 'march', 'mend', 'nervous', 'nine',
|
|
283
|
+
'replace', 'rope', 'spine', 'stole', 'terror', 'accident', 'apple',
|
|
284
|
+
'balance', 'boom', 'childhood', 'collect', 'demand', 'depression',
|
|
285
|
+
'eventually', 'faint', 'glare', 'goal', 'group', 'honey', 'kitchen',
|
|
286
|
+
'laid', 'limb', 'machine', 'mere', 'mold', 'murder', 'nerve', 'painful',
|
|
287
|
+
'poetry', 'prince', 'rabbit', 'shelter', 'shore', 'shower', 'soothe',
|
|
288
|
+
'stair', 'steady', 'sunlight', 'tangle', 'tease', 'treasure', 'uncle',
|
|
289
|
+
'begun', 'bliss', 'canvas', 'cheer', 'claw', 'clutch', 'commit', 'crimson',
|
|
290
|
+
'crystal', 'delight', 'doll', 'existence', 'express', 'fog', 'football',
|
|
291
|
+
'gay', 'goose', 'guard', 'hatred', 'illuminate', 'mass', 'math', 'mourn',
|
|
292
|
+
'rich', 'rough', 'skip', 'stir', 'student', 'style', 'support', 'thorn',
|
|
293
|
+
'tough', 'yard', 'yearn', 'yesterday', 'advice', 'appreciate', 'autumn',
|
|
294
|
+
'bank', 'beam', 'bowl', 'capture', 'carve', 'collapse', 'confusion',
|
|
295
|
+
'creation', 'dove', 'feather', 'girlfriend', 'glory', 'government',
|
|
296
|
+
'harsh', 'hop', 'inner', 'loser', 'moonlight', 'neighbor', 'neither',
|
|
297
|
+
'peach', 'pig', 'praise', 'screw', 'shield', 'shimmer', 'sneak', 'stab',
|
|
298
|
+
'subject', 'throughout', 'thrown', 'tower', 'twirl', 'wow', 'army',
|
|
299
|
+
'arrive', 'bathroom', 'bump', 'cease', 'cookie', 'couch', 'courage', 'dim',
|
|
300
|
+
'guilt', 'howl', 'hum', 'husband', 'insult', 'led', 'lunch', 'mock',
|
|
301
|
+
'mostly', 'natural', 'nearly', 'needle', 'nerd', 'peaceful', 'perfection',
|
|
302
|
+
'pile', 'price', 'remove', 'roam', 'sanctuary', 'serious', 'shiny',
|
|
303
|
+
'shook', 'sob', 'stolen', 'tap', 'vain', 'void', 'warrior', 'wrinkle',
|
|
304
|
+
'affection', 'apologize', 'blossom', 'bounce', 'bridge', 'cheap',
|
|
305
|
+
'crumble', 'decision', 'descend', 'desperately', 'dig', 'dot', 'flip',
|
|
306
|
+
'frighten', 'heartbeat', 'huge', 'lazy', 'lick', 'odd', 'opinion',
|
|
307
|
+
'process', 'puzzle', 'quietly', 'retreat', 'score', 'sentence', 'separate',
|
|
308
|
+
'situation', 'skill', 'soak', 'square', 'stray', 'taint', 'task', 'tide',
|
|
309
|
+
'underneath', 'veil', 'whistle', 'anywhere', 'bedroom', 'bid', 'bloody',
|
|
310
|
+
'burden', 'careful', 'compare', 'concern', 'curtain', 'decay', 'defeat',
|
|
311
|
+
'describe', 'double', 'dreamer', 'driver', 'dwell', 'evening', 'flare',
|
|
312
|
+
'flicker', 'grandma', 'guitar', 'harm', 'horrible', 'hungry', 'indeed',
|
|
313
|
+
'lace', 'melody', 'monkey', 'nation', 'object', 'obviously', 'rainbow',
|
|
314
|
+
'salt', 'scratch', 'shown', 'shy', 'stage', 'stun', 'third', 'tickle',
|
|
315
|
+
'useless', 'weakness', 'worship', 'worthless', 'afternoon', 'beard',
|
|
316
|
+
'boyfriend', 'bubble', 'busy', 'certain', 'chin', 'concrete', 'desk',
|
|
317
|
+
'diamond', 'doom', 'drawn', 'due', 'felicity', 'freeze', 'frost', 'garden',
|
|
318
|
+
'glide', 'harmony', 'hopefully', 'hunt', 'jealous', 'lightning', 'mama',
|
|
319
|
+
'mercy', 'peel', 'physical', 'position', 'pulse', 'punch', 'quit', 'rant',
|
|
320
|
+
'respond', 'salty', 'sane', 'satisfy', 'savior', 'sheep', 'slept',
|
|
321
|
+
'social', 'sport', 'tuck', 'utter', 'valley', 'wolf', 'aim', 'alas',
|
|
322
|
+
'alter', 'arrow', 'awaken', 'beaten', 'belief', 'brand', 'ceiling',
|
|
323
|
+
'cheese', 'clue', 'confidence', 'connection', 'daily', 'disguise', 'eager',
|
|
324
|
+
'erase', 'essence', 'everytime', 'expression', 'fan', 'flag', 'flirt',
|
|
325
|
+
'foul', 'fur', 'giggle', 'glorious', 'ignorance', 'law', 'lifeless',
|
|
326
|
+
'measure', 'mighty', 'muse', 'north', 'opposite', 'paradise', 'patience',
|
|
327
|
+
'patient', 'pencil', 'petal', 'plate', 'ponder', 'possibly', 'practice',
|
|
328
|
+
'slice', 'spell', 'stock', 'strife', 'strip', 'suffocate', 'suit',
|
|
329
|
+
'tender', 'tool', 'trade', 'velvet', 'verse', 'waist', 'witch', 'aunt',
|
|
330
|
+
'bench', 'bold', 'cap', 'certainly', 'click', 'companion', 'creator',
|
|
331
|
+
'dart', 'delicate', 'determine', 'dish', 'dragon', 'drama', 'drum', 'dude',
|
|
332
|
+
'everybody', 'feast', 'forehead', 'former', 'fright', 'fully', 'gas',
|
|
333
|
+
'hook', 'hurl', 'invite', 'juice', 'manage', 'moral', 'possess', 'raw',
|
|
334
|
+
'rebel', 'royal', 'scale', 'scary', 'several', 'slight', 'stubborn',
|
|
335
|
+
'swell', 'talent', 'tea', 'terrible', 'thread', 'torment', 'trickle',
|
|
336
|
+
'usually', 'vast', 'violence', 'weave', 'acid', 'agony', 'ashamed', 'awe',
|
|
337
|
+
'belly', 'blend', 'blush', 'character', 'cheat', 'common', 'company',
|
|
338
|
+
'coward', 'creak', 'danger', 'deadly', 'defense', 'define', 'depend',
|
|
339
|
+
'desperate', 'destination', 'dew', 'duck', 'dusty', 'embarrass', 'engine',
|
|
340
|
+
'example', 'explore', 'foe', 'freely', 'frustrate', 'generation', 'glove',
|
|
341
|
+
'guilty', 'health', 'hurry', 'idiot', 'impossible', 'inhale', 'jaw',
|
|
342
|
+
'kingdom', 'mention', 'mist', 'moan', 'mumble', 'mutter', 'observe', 'ode',
|
|
343
|
+
'pathetic', 'pattern', 'pie', 'prefer', 'puff', 'rape', 'rare', 'revenge',
|
|
344
|
+
'rude', 'scrape', 'spiral', 'squeeze', 'strain', 'sunset', 'suspend',
|
|
345
|
+
'sympathy', 'thigh', 'throne', 'total', 'unseen', 'weapon', 'weary'
|
|
346
|
+
]
|
|
347
|
+
},
|
|
348
|
+
'english': {
|
|
349
|
+
prefixLength: 3,
|
|
350
|
+
words: [
|
|
351
|
+
'abbey', 'abducts', 'ability', 'ablaze', 'abnormal', 'abort', 'abrasive', 'absorb',
|
|
352
|
+
'abyss', 'academy', 'aces', 'aching', 'acidic', 'acoustic', 'acquire', 'across',
|
|
353
|
+
'actress', 'acumen', 'adapt', 'addicted', 'adept', 'adhesive', 'adjust', 'adopt',
|
|
354
|
+
'adrenalin', 'adult', 'adventure', 'aerial', 'afar', 'affair', 'afield', 'afloat',
|
|
355
|
+
'afoot', 'afraid', 'after', 'against', 'agenda', 'aggravate', 'agile', 'aglow',
|
|
356
|
+
'agnostic', 'agony', 'agreed', 'ahead', 'aided', 'ailments', 'aimless', 'airport',
|
|
357
|
+
'aisle', 'ajar', 'akin', 'alarms', 'album', 'alchemy', 'alerts', 'algebra',
|
|
358
|
+
'alkaline', 'alley', 'almost', 'aloof', 'alpine', 'already', 'also', 'altitude',
|
|
359
|
+
'alumni', 'always', 'amaze', 'ambush', 'amended', 'amidst', 'ammo', 'amnesty',
|
|
360
|
+
'among', 'amply', 'amused', 'anchor', 'android', 'anecdote', 'angled', 'ankle',
|
|
361
|
+
'annoyed', 'answers', 'antics', 'anvil', 'anxiety', 'anybody', 'apart', 'apex',
|
|
362
|
+
'aphid', 'aplomb', 'apology', 'apply', 'apricot', 'aptitude', 'aquarium', 'arbitrary',
|
|
363
|
+
'archer', 'ardent', 'arena', 'argue', 'arises', 'army', 'around', 'arrow',
|
|
364
|
+
'arsenic', 'artistic', 'ascend', 'ashtray', 'aside', 'asked', 'asleep', 'aspire',
|
|
365
|
+
'assorted', 'asylum', 'athlete', 'atlas', 'atom', 'atrium', 'attire', 'auburn',
|
|
366
|
+
'auctions', 'audio', 'august', 'aunt', 'austere', 'autumn', 'avatar', 'avidly',
|
|
367
|
+
'avoid', 'awakened', 'awesome', 'awful', 'awkward', 'awning', 'awoken', 'axes',
|
|
368
|
+
'axis', 'axle', 'aztec', 'azure', 'baby', 'bacon', 'badge', 'baffles',
|
|
369
|
+
'bagpipe', 'bailed', 'bakery', 'balding', 'bamboo', 'banjo', 'baptism', 'basin',
|
|
370
|
+
'batch', 'bawled', 'bays', 'because', 'beer', 'befit', 'begun', 'behind',
|
|
371
|
+
'being', 'below', 'bemused', 'benches', 'berries', 'bested', 'betting', 'bevel',
|
|
372
|
+
'beware', 'beyond', 'bias', 'bicycle', 'bids', 'bifocals', 'biggest', 'bikini',
|
|
373
|
+
'bimonthly', 'binocular', 'biology', 'biplane', 'birth', 'biscuit', 'bite', 'biweekly',
|
|
374
|
+
'blender', 'blip', 'bluntly', 'boat', 'bobsled', 'bodies', 'bogeys', 'boil',
|
|
375
|
+
'boldly', 'bomb', 'border', 'boss', 'both', 'bounced', 'bovine', 'bowling',
|
|
376
|
+
'boxes', 'boyfriend', 'broken', 'brunt', 'bubble', 'buckets', 'budget', 'buffet',
|
|
377
|
+
'bugs', 'building', 'bulb', 'bumper', 'bunch', 'business', 'butter', 'buying',
|
|
378
|
+
'buzzer', 'bygones', 'byline', 'bypass', 'cabin', 'cactus', 'cadets', 'cafe',
|
|
379
|
+
'cage', 'cajun', 'cake', 'calamity', 'camp', 'candy', 'casket', 'catch',
|
|
380
|
+
'cause', 'cavernous', 'cease', 'cedar', 'ceiling', 'cell', 'cement', 'cent',
|
|
381
|
+
'certain', 'chlorine', 'chrome', 'cider', 'cigar', 'cinema', 'circle', 'cistern',
|
|
382
|
+
'citadel', 'civilian', 'claim', 'click', 'clue', 'coal', 'cobra', 'cocoa',
|
|
383
|
+
'code', 'coexist', 'coffee', 'cogs', 'cohesive', 'coils', 'colony', 'comb',
|
|
384
|
+
'cool', 'copy', 'corrode', 'costume', 'cottage', 'cousin', 'cowl', 'criminal',
|
|
385
|
+
'cube', 'cucumber', 'cuddled', 'cuffs', 'cuisine', 'cunning', 'cupcake', 'custom',
|
|
386
|
+
'cycling', 'cylinder', 'cynical', 'dabbing', 'dads', 'daft', 'dagger', 'daily',
|
|
387
|
+
'damp', 'dangerous', 'dapper', 'darted', 'dash', 'dating', 'dauntless', 'dawn',
|
|
388
|
+
'daytime', 'dazed', 'debut', 'decay', 'dedicated', 'deepest', 'deftly', 'degrees',
|
|
389
|
+
'dehydrate', 'deity', 'dejected', 'delayed', 'demonstrate', 'dented', 'deodorant', 'depth',
|
|
390
|
+
'desk', 'devoid', 'dewdrop', 'dexterity', 'dialect', 'dice', 'diet', 'different',
|
|
391
|
+
'digit', 'dilute', 'dime', 'dinner', 'diode', 'diplomat', 'directed', 'distance',
|
|
392
|
+
'ditch', 'divers', 'dizzy', 'doctor', 'dodge', 'does', 'dogs', 'doing',
|
|
393
|
+
'dolphin', 'domestic', 'donuts', 'doorway', 'dormant', 'dosage', 'dotted', 'double',
|
|
394
|
+
'dove', 'down', 'dozen', 'dreams', 'drinks', 'drowning', 'drunk', 'drying',
|
|
395
|
+
'dual', 'dubbed', 'duckling', 'dude', 'duets', 'duke', 'dullness', 'dummy',
|
|
396
|
+
'dunes', 'duplex', 'duration', 'dusted', 'duties', 'dwarf', 'dwelt', 'dwindling',
|
|
397
|
+
'dying', 'dynamite', 'dyslexic', 'each', 'eagle', 'earth', 'easy', 'eating',
|
|
398
|
+
'eavesdrop', 'eccentric', 'echo', 'eclipse', 'economics', 'ecstatic', 'eden', 'edgy',
|
|
399
|
+
'edited', 'educated', 'eels', 'efficient', 'eggs', 'egotistic', 'eight', 'either',
|
|
400
|
+
'eject', 'elapse', 'elbow', 'eldest', 'eleven', 'elite', 'elope', 'else',
|
|
401
|
+
'eluded', 'emails', 'ember', 'emerge', 'emit', 'emotion', 'empty', 'emulate',
|
|
402
|
+
'energy', 'enforce', 'enhanced', 'enigma', 'enjoy', 'enlist', 'enmity', 'enough',
|
|
403
|
+
'enraged', 'ensign', 'entrance', 'envy', 'epoxy', 'equip', 'erase', 'erected',
|
|
404
|
+
'erosion', 'error', 'eskimos', 'espionage', 'essential', 'estate', 'etched', 'eternal',
|
|
405
|
+
'ethics', 'etiquette', 'evaluate', 'evenings', 'evicted', 'evolved', 'examine', 'excess',
|
|
406
|
+
'exhale', 'exit', 'exotic', 'exquisite', 'extra', 'exult', 'fabrics', 'factual',
|
|
407
|
+
'fading', 'fainted', 'faked', 'fall', 'family', 'fancy', 'farming', 'fatal',
|
|
408
|
+
'faulty', 'fawns', 'faxed', 'fazed', 'feast', 'february', 'federal', 'feel',
|
|
409
|
+
'feline', 'females', 'fences', 'ferry', 'festival', 'fetches', 'fever', 'fewest',
|
|
410
|
+
'fiat', 'fibula', 'fictional', 'fidget', 'fierce', 'fifteen', 'fight', 'films',
|
|
411
|
+
'firm', 'fishing', 'fitting', 'five', 'fixate', 'fizzle', 'fleet', 'flippant',
|
|
412
|
+
'flying', 'foamy', 'focus', 'foes', 'foggy', 'foiled', 'folding', 'fonts',
|
|
413
|
+
'foolish', 'fossil', 'fountain', 'fowls', 'foxes', 'foyer', 'framed', 'friendly',
|
|
414
|
+
'frown', 'fruit', 'frying', 'fudge', 'fuel', 'fugitive', 'fully', 'fuming',
|
|
415
|
+
'fungal', 'furnished', 'fuselage', 'future', 'fuzzy', 'gables', 'gadget', 'gags',
|
|
416
|
+
'gained', 'galaxy', 'gambit', 'gang', 'gasp', 'gather', 'gauze', 'gave',
|
|
417
|
+
'gawk', 'gaze', 'gearbox', 'gecko', 'geek', 'gels', 'gemstone', 'general',
|
|
418
|
+
'geometry', 'germs', 'gesture', 'getting', 'geyser', 'ghetto', 'ghost', 'giant',
|
|
419
|
+
'giddy', 'gifts', 'gigantic', 'gills', 'gimmick', 'ginger', 'girth', 'giving',
|
|
420
|
+
'glass', 'gleeful', 'glide', 'gnaw', 'gnome', 'goat', 'goblet', 'godfather',
|
|
421
|
+
'goes', 'goggles', 'going', 'goldfish', 'gone', 'goodbye', 'gopher', 'gorilla',
|
|
422
|
+
'gossip', 'gotten', 'gourmet', 'governing', 'gown', 'greater', 'grunt', 'guarded',
|
|
423
|
+
'guest', 'guide', 'gulp', 'gumball', 'guru', 'gusts', 'gutter', 'guys',
|
|
424
|
+
'gymnast', 'gypsy', 'gyrate', 'habitat', 'hacksaw', 'haggled', 'hairy', 'hamburger',
|
|
425
|
+
'happens', 'hashing', 'hatchet', 'haunted', 'having', 'hawk', 'haystack', 'hazard',
|
|
426
|
+
'hectare', 'hedgehog', 'heels', 'hefty', 'height', 'hemlock', 'hence', 'heron',
|
|
427
|
+
'hesitate', 'hexagon', 'hickory', 'hiding', 'highway', 'hijack', 'hiker', 'hills',
|
|
428
|
+
'himself', 'hinder', 'hippo', 'hire', 'history', 'hitched', 'hive', 'hoax',
|
|
429
|
+
'hobby', 'hockey', 'hoisting', 'hold', 'honked', 'hookup', 'hope', 'hornet',
|
|
430
|
+
'hospital', 'hotel', 'hounded', 'hover', 'howls', 'hubcaps', 'huddle', 'huge',
|
|
431
|
+
'hull', 'humid', 'hunter', 'hurried', 'husband', 'huts', 'hybrid', 'hydrogen',
|
|
432
|
+
'hyper', 'iceberg', 'icing', 'icon', 'identity', 'idiom', 'idled', 'idols',
|
|
433
|
+
'igloo', 'ignore', 'iguana', 'illness', 'imagine', 'imbalance', 'imitate', 'impel',
|
|
434
|
+
'inactive', 'inbound', 'incur', 'industrial', 'inexact', 'inflamed', 'ingested', 'initiate',
|
|
435
|
+
'injury', 'inkling', 'inline', 'inmate', 'innocent', 'inorganic', 'input', 'inquest',
|
|
436
|
+
'inroads', 'insult', 'intended', 'inundate', 'invoke', 'inwardly', 'ionic', 'irate',
|
|
437
|
+
'iris', 'irony', 'irritate', 'island', 'isolated', 'issued', 'italics', 'itches',
|
|
438
|
+
'items', 'itinerary', 'itself', 'ivory', 'jabbed', 'jackets', 'jaded', 'jagged',
|
|
439
|
+
'jailed', 'jamming', 'january', 'jargon', 'jaunt', 'javelin', 'jaws', 'jazz',
|
|
440
|
+
'jeans', 'jeers', 'jellyfish', 'jeopardy', 'jerseys', 'jester', 'jetting', 'jewels',
|
|
441
|
+
'jigsaw', 'jingle', 'jittery', 'jive', 'jobs', 'jockey', 'jogger', 'joining',
|
|
442
|
+
'joking', 'jolted', 'jostle', 'journal', 'joyous', 'jubilee', 'judge', 'juggled',
|
|
443
|
+
'juicy', 'jukebox', 'july', 'jump', 'junk', 'jury', 'justice', 'juvenile',
|
|
444
|
+
'kangaroo', 'karate', 'keep', 'kennel', 'kept', 'kernels', 'kettle', 'keyboard',
|
|
445
|
+
'kickoff', 'kidneys', 'king', 'kiosk', 'kisses', 'kitchens', 'kiwi', 'knapsack',
|
|
446
|
+
'knee', 'knife', 'knowledge', 'knuckle', 'koala', 'laboratory', 'ladder', 'lagoon',
|
|
447
|
+
'lair', 'lakes', 'lamb', 'language', 'laptop', 'large', 'last', 'later',
|
|
448
|
+
'launching', 'lava', 'lawsuit', 'layout', 'lazy', 'lectures', 'ledge', 'leech',
|
|
449
|
+
'left', 'legion', 'leisure', 'lemon', 'lending', 'leopard', 'lesson', 'lettuce',
|
|
450
|
+
'lexicon', 'liar', 'library', 'licks', 'lids', 'lied', 'lifestyle', 'light',
|
|
451
|
+
'likewise', 'lilac', 'limits', 'linen', 'lion', 'lipstick', 'liquid', 'listen',
|
|
452
|
+
'lively', 'loaded', 'lobster', 'locker', 'lodge', 'lofty', 'logic', 'loincloth',
|
|
453
|
+
'long', 'looking', 'lopped', 'lordship', 'losing', 'lottery', 'loudly', 'love',
|
|
454
|
+
'lower', 'loyal', 'lucky', 'luggage', 'lukewarm', 'lullaby', 'lumber', 'lunar',
|
|
455
|
+
'lurk', 'lush', 'luxury', 'lymph', 'lynx', 'lyrics', 'macro', 'madness',
|
|
456
|
+
'magically', 'mailed', 'major', 'makeup', 'malady', 'mammal', 'maps', 'masterful',
|
|
457
|
+
'match', 'maul', 'maverick', 'maximum', 'mayor', 'maze', 'meant', 'mechanic',
|
|
458
|
+
'medicate', 'meeting', 'megabyte', 'melting', 'memoir', 'menu', 'merger', 'mesh',
|
|
459
|
+
'metro', 'mews', 'mice', 'midst', 'mighty', 'mime', 'mirror', 'misery',
|
|
460
|
+
'mittens', 'mixture', 'moat', 'mobile', 'mocked', 'mohawk', 'moisture', 'molten',
|
|
461
|
+
'moment', 'money', 'moon', 'mops', 'morsel', 'mostly', 'motherly', 'mouth',
|
|
462
|
+
'movement', 'mowing', 'much', 'muddy', 'muffin', 'mugged', 'mullet', 'mumble',
|
|
463
|
+
'mundane', 'muppet', 'mural', 'musical', 'muzzle', 'myriad', 'mystery', 'myth',
|
|
464
|
+
'nabbing', 'nagged', 'nail', 'names', 'nanny', 'napkin', 'narrate', 'nasty',
|
|
465
|
+
'natural', 'nautical', 'navy', 'nearby', 'necklace', 'needed', 'negative', 'neither',
|
|
466
|
+
'neon', 'nephew', 'nerves', 'nestle', 'network', 'neutral', 'never', 'newt',
|
|
467
|
+
'nexus', 'nibs', 'niche', 'niece', 'nifty', 'nightly', 'nimbly', 'nineteen',
|
|
468
|
+
'nirvana', 'nitrogen', 'nobody', 'nocturnal', 'nodes', 'noises', 'nomad', 'noodles',
|
|
469
|
+
'northern', 'nostril', 'noted', 'nouns', 'novelty', 'nowhere', 'nozzle', 'nuance',
|
|
470
|
+
'nucleus', 'nudged', 'nugget', 'nuisance', 'null', 'number', 'nuns', 'nurse',
|
|
471
|
+
'nutshell', 'nylon', 'oaks', 'oars', 'oasis', 'oatmeal', 'obedient', 'object',
|
|
472
|
+
'obliged', 'obnoxious', 'observant', 'obtains', 'obvious', 'occur', 'ocean', 'october',
|
|
473
|
+
'odds', 'odometer', 'offend', 'often', 'oilfield', 'ointment', 'okay', 'older',
|
|
474
|
+
'olive', 'olympics', 'omega', 'omission', 'omnibus', 'onboard', 'oncoming', 'oneself',
|
|
475
|
+
'ongoing', 'onion', 'online', 'onslaught', 'onto', 'onward', 'oozed', 'opacity',
|
|
476
|
+
'opened', 'opposite', 'optical', 'opus', 'orange', 'orbit', 'orchid', 'orders',
|
|
477
|
+
'organs', 'origin', 'ornament', 'orphans', 'oscar', 'ostrich', 'otherwise', 'otter',
|
|
478
|
+
'ouch', 'ought', 'ounce', 'ourselves', 'oust', 'outbreak', 'oval', 'oven',
|
|
479
|
+
'owed', 'owls', 'owner', 'oxidant', 'oxygen', 'oyster', 'ozone', 'pact',
|
|
480
|
+
'paddles', 'pager', 'pairing', 'palace', 'pamphlet', 'pancakes', 'paper', 'paradise',
|
|
481
|
+
'pastry', 'patio', 'pause', 'pavements', 'pawnshop', 'payment', 'peaches', 'pebbles',
|
|
482
|
+
'peculiar', 'pedantic', 'peeled', 'pegs', 'pelican', 'pencil', 'people', 'pepper',
|
|
483
|
+
'perfect', 'pests', 'petals', 'phase', 'pheasants', 'phone', 'phrases', 'physics',
|
|
484
|
+
'piano', 'picked', 'pierce', 'pigment', 'piloted', 'pimple', 'pinched', 'pioneer',
|
|
485
|
+
'pipeline', 'pirate', 'pistons', 'pitched', 'pivot', 'pixels', 'pizza', 'playful',
|
|
486
|
+
'pledge', 'pliers', 'plotting', 'plus', 'plywood', 'poaching', 'pockets', 'podcast',
|
|
487
|
+
'poetry', 'point', 'poker', 'polar', 'ponies', 'pool', 'popular', 'portents',
|
|
488
|
+
'possible', 'potato', 'pouch', 'poverty', 'powder', 'pram', 'present', 'pride',
|
|
489
|
+
'problems', 'pruned', 'prying', 'psychic', 'public', 'puck', 'puddle', 'puffin',
|
|
490
|
+
'pulp', 'pumpkins', 'punch', 'puppy', 'purged', 'push', 'putty', 'puzzled',
|
|
491
|
+
'pylons', 'pyramid', 'python', 'queen', 'quick', 'quote', 'rabbits', 'racetrack',
|
|
492
|
+
'radar', 'rafts', 'rage', 'railway', 'raking', 'rally', 'ramped', 'randomly',
|
|
493
|
+
'rapid', 'rarest', 'rash', 'rated', 'ravine', 'rays', 'razor', 'react',
|
|
494
|
+
'rebel', 'recipe', 'reduce', 'reef', 'refer', 'regular', 'reheat', 'reinvest',
|
|
495
|
+
'rejoices', 'rekindle', 'relic', 'remedy', 'renting', 'reorder', 'repent', 'request',
|
|
496
|
+
'reruns', 'rest', 'return', 'reunion', 'revamp', 'rewind', 'rhino', 'rhythm',
|
|
497
|
+
'ribbon', 'richly', 'ridges', 'rift', 'rigid', 'rims', 'ringing', 'riots',
|
|
498
|
+
'ripped', 'rising', 'ritual', 'river', 'roared', 'robot', 'rockets', 'rodent',
|
|
499
|
+
'rogue', 'roles', 'romance', 'roomy', 'roped', 'roster', 'rotate', 'rounded',
|
|
500
|
+
'rover', 'rowboat', 'royal', 'ruby', 'rudely', 'ruffled', 'rugged', 'ruined',
|
|
501
|
+
'ruling', 'rumble', 'runway', 'rural', 'rustled', 'ruthless', 'sabotage', 'sack',
|
|
502
|
+
'sadness', 'safety', 'saga', 'sailor', 'sake', 'salads', 'sample', 'sanity',
|
|
503
|
+
'sapling', 'sarcasm', 'sash', 'satin', 'saucepan', 'saved', 'sawmill', 'saxophone',
|
|
504
|
+
'sayings', 'scamper', 'scenic', 'school', 'science', 'scoop', 'scrub', 'scuba',
|
|
505
|
+
'seasons', 'second', 'sedan', 'seeded', 'segments', 'seismic', 'selfish', 'semifinal',
|
|
506
|
+
'sensible', 'september', 'sequence', 'serving', 'session', 'setup', 'seventh', 'sewage',
|
|
507
|
+
'shackles', 'shelter', 'shipped', 'shocking', 'shrugged', 'shuffled', 'shyness', 'siblings',
|
|
508
|
+
'sickness', 'sidekick', 'sieve', 'sifting', 'sighting', 'silk', 'simplest', 'sincerely',
|
|
509
|
+
'sipped', 'siren', 'situated', 'sixteen', 'sizes', 'skater', 'skew', 'skirting',
|
|
510
|
+
'skulls', 'skydive', 'slackens', 'sleepless', 'slid', 'slower', 'slug', 'smash',
|
|
511
|
+
'smelting', 'smidgen', 'smog', 'smuggled', 'snake', 'sneeze', 'sniff', 'snout',
|
|
512
|
+
'snug', 'soapy', 'sober', 'soccer', 'soda', 'software', 'soggy', 'soil',
|
|
513
|
+
'solved', 'somewhere', 'sonic', 'soothe', 'soprano', 'sorry', 'southern', 'sovereign',
|
|
514
|
+
'sowed', 'soya', 'space', 'speedy', 'sphere', 'spiders', 'splendid', 'spout',
|
|
515
|
+
'sprig', 'spud', 'spying', 'square', 'stacking', 'stellar', 'stick', 'stockpile',
|
|
516
|
+
'strained', 'stunning', 'stylishly', 'subtly', 'succeed', 'suddenly', 'suede', 'suffice',
|
|
517
|
+
'sugar', 'suitcase', 'sulking', 'summon', 'sunken', 'superior', 'surfer', 'sushi',
|
|
518
|
+
'suture', 'swagger', 'swept', 'swiftly', 'sword', 'swung', 'syllabus', 'symptoms',
|
|
519
|
+
'syndrome', 'syringe', 'system', 'taboo', 'tacit', 'tadpoles', 'tagged', 'tail',
|
|
520
|
+
'taken', 'talent', 'tamper', 'tanks', 'tapestry', 'tarnished', 'tasked', 'tattoo',
|
|
521
|
+
'taunts', 'tavern', 'tawny', 'taxi', 'teardrop', 'technical', 'tedious', 'teeming',
|
|
522
|
+
'tell', 'template', 'tender', 'tepid', 'tequila', 'terminal', 'testing', 'tether',
|
|
523
|
+
'textbook', 'thaw', 'theatrics', 'thirsty', 'thorn', 'threaten', 'thumbs', 'thwart',
|
|
524
|
+
'ticket', 'tidy', 'tiers', 'tiger', 'tilt', 'timber', 'tinted', 'tipsy',
|
|
525
|
+
'tirade', 'tissue', 'titans', 'toaster', 'tobacco', 'today', 'toenail', 'toffee',
|
|
526
|
+
'together', 'toilet', 'token', 'tolerant', 'tomorrow', 'tonic', 'toolbox', 'topic',
|
|
527
|
+
'torch', 'tossed', 'total', 'touchy', 'towel', 'toxic', 'toyed', 'trash',
|
|
528
|
+
'trendy', 'tribal', 'trolling', 'truth', 'trying', 'tsunami', 'tubes', 'tucks',
|
|
529
|
+
'tudor', 'tuesday', 'tufts', 'tugs', 'tuition', 'tulips', 'tumbling', 'tunnel',
|
|
530
|
+
'turnip', 'tusks', 'tutor', 'tuxedo', 'twang', 'tweezers', 'twice', 'twofold',
|
|
531
|
+
'tycoon', 'typist', 'tyrant', 'ugly', 'ulcers', 'ultimate', 'umbrella', 'umpire',
|
|
532
|
+
'unafraid', 'unbending', 'uncle', 'under', 'uneven', 'unfit', 'ungainly', 'unhappy',
|
|
533
|
+
'union', 'unjustly', 'unknown', 'unlikely', 'unmask', 'unnoticed', 'unopened', 'unplugs',
|
|
534
|
+
'unquoted', 'unrest', 'unsafe', 'until', 'unusual', 'unveil', 'unwind', 'unzip',
|
|
535
|
+
'upbeat', 'upcoming', 'update', 'upgrade', 'uphill', 'upkeep', 'upload', 'upon',
|
|
536
|
+
'upper', 'upright', 'upstairs', 'uptight', 'upwards', 'urban', 'urchins', 'urgent',
|
|
537
|
+
'usage', 'useful', 'usher', 'using', 'usual', 'utensils', 'utility', 'utmost',
|
|
538
|
+
'utopia', 'uttered', 'vacation', 'vague', 'vain', 'value', 'vampire', 'vane',
|
|
539
|
+
'vapidly', 'vary', 'vastness', 'vats', 'vaults', 'vector', 'veered', 'vegan',
|
|
540
|
+
'vehicle', 'vein', 'velvet', 'venomous', 'verification', 'vessel', 'veteran', 'vexed',
|
|
541
|
+
'vials', 'vibrate', 'victim', 'video', 'viewpoint', 'vigilant', 'viking', 'village',
|
|
542
|
+
'vinegar', 'violin', 'vipers', 'virtual', 'visited', 'vitals', 'vivid', 'vixen',
|
|
543
|
+
'vocal', 'vogue', 'voice', 'volcano', 'vortex', 'voted', 'voucher', 'vowels',
|
|
544
|
+
'voyage', 'vulture', 'wade', 'waffle', 'wagtail', 'waist', 'waking', 'wallets',
|
|
545
|
+
'wanted', 'warped', 'washing', 'water', 'waveform', 'waxing', 'wayside', 'weavers',
|
|
546
|
+
'website', 'wedge', 'weekday', 'weird', 'welders', 'went', 'wept', 'were',
|
|
547
|
+
'western', 'wetsuit', 'whale', 'when', 'whipped', 'whole', 'wickets', 'width',
|
|
548
|
+
'wield', 'wife', 'wiggle', 'wildly', 'winter', 'wipeout', 'wiring', 'wise',
|
|
549
|
+
'withdrawn', 'wives', 'wizard', 'wobbly', 'woes', 'woken', 'wolf', 'womanly',
|
|
550
|
+
'wonders', 'woozy', 'worry', 'wounded', 'woven', 'wrap', 'wrist', 'wrong',
|
|
551
|
+
'yacht', 'yahoo', 'yanks', 'yard', 'yawning', 'yearbook', 'yellow', 'yesterday',
|
|
552
|
+
'yeti', 'yields', 'yodel', 'yoga', 'younger', 'yoyo', 'zapped', 'zeal',
|
|
553
|
+
'zebra', 'zero', 'zesty', 'zigzags', 'zinger', 'zippers', 'zodiac', 'zombie',
|
|
554
|
+
'zones', 'zoom'
|
|
555
|
+
]
|
|
556
|
+
},
|
|
557
|
+
'spanish': {
|
|
558
|
+
prefixLength: 4,
|
|
559
|
+
words: [
|
|
560
|
+
'ábaco', 'abdomen', 'abeja', 'abierto', 'abogado', 'abono', 'aborto', 'abrazo',
|
|
561
|
+
'abrir', 'abuelo', 'abuso', 'acabar', 'academia', 'acceso', 'acción', 'aceite',
|
|
562
|
+
'acelga', 'acento', 'aceptar', 'ácido', 'aclarar', 'acné', 'acoger', 'acoso',
|
|
563
|
+
'activo', 'acto', 'actriz', 'actuar', 'acudir', 'acuerdo', 'acusar', 'adicto',
|
|
564
|
+
'admitir', 'adoptar', 'adorno', 'aduana', 'adulto', 'aéreo', 'afectar', 'afición',
|
|
565
|
+
'afinar', 'afirmar', 'ágil', 'agitar', 'agonía', 'agosto', 'agotar', 'agregar',
|
|
566
|
+
'agrio', 'agua', 'agudo', 'águila', 'aguja', 'ahogo', 'ahorro', 'aire',
|
|
567
|
+
'aislar', 'ajedrez', 'ajeno', 'ajuste', 'alacrán', 'alambre', 'alarma', 'alba',
|
|
568
|
+
'álbum', 'alcalde', 'aldea', 'alegre', 'alejar', 'alerta', 'aleta', 'alfiler',
|
|
569
|
+
'alga', 'algodón', 'aliado', 'aliento', 'alivio', 'alma', 'almeja', 'almíbar',
|
|
570
|
+
'altar', 'alteza', 'altivo', 'alto', 'altura', 'alumno', 'alzar', 'amable',
|
|
571
|
+
'amante', 'amapola', 'amargo', 'amasar', 'ámbar', 'ámbito', 'ameno', 'amigo',
|
|
572
|
+
'amistad', 'amor', 'amparo', 'amplio', 'ancho', 'anciano', 'ancla', 'andar',
|
|
573
|
+
'andén', 'anemia', 'ángulo', 'anillo', 'ánimo', 'anís', 'anotar', 'antena',
|
|
574
|
+
'antiguo', 'antojo', 'anual', 'anular', 'anuncio', 'añadir', 'añejo', 'año',
|
|
575
|
+
'apagar', 'aparato', 'apetito', 'apio', 'aplicar', 'apodo', 'aporte', 'apoyo',
|
|
576
|
+
'aprender', 'aprobar', 'apuesta', 'apuro', 'arado', 'araña', 'arar', 'árbitro',
|
|
577
|
+
'árbol', 'arbusto', 'archivo', 'arco', 'arder', 'ardilla', 'arduo', 'área',
|
|
578
|
+
'árido', 'aries', 'armonía', 'arnés', 'aroma', 'arpa', 'arpón', 'arreglo',
|
|
579
|
+
'arroz', 'arruga', 'arte', 'artista', 'asa', 'asado', 'asalto', 'ascenso',
|
|
580
|
+
'asegurar', 'aseo', 'asesor', 'asiento', 'asilo', 'asistir', 'asno', 'asombro',
|
|
581
|
+
'áspero', 'astilla', 'astro', 'astuto', 'asumir', 'asunto', 'atajo', 'ataque',
|
|
582
|
+
'atar', 'atento', 'ateo', 'ático', 'atleta', 'átomo', 'atraer', 'atroz',
|
|
583
|
+
'atún', 'audaz', 'audio', 'auge', 'aula', 'aumento', 'ausente', 'autor',
|
|
584
|
+
'aval', 'avance', 'avaro', 'ave', 'avellana', 'avena', 'avestruz', 'avión',
|
|
585
|
+
'aviso', 'ayer', 'ayuda', 'ayuno', 'azafrán', 'azar', 'azote', 'azúcar',
|
|
586
|
+
'azufre', 'azul', 'baba', 'babor', 'bache', 'bahía', 'baile', 'bajar',
|
|
587
|
+
'balanza', 'balcón', 'balde', 'bambú', 'banco', 'banda', 'baño', 'barba',
|
|
588
|
+
'barco', 'barniz', 'barro', 'báscula', 'bastón', 'basura', 'batalla', 'batería',
|
|
589
|
+
'batir', 'batuta', 'baúl', 'bazar', 'bebé', 'bebida', 'bello', 'besar',
|
|
590
|
+
'beso', 'bestia', 'bicho', 'bien', 'bingo', 'blanco', 'bloque', 'blusa',
|
|
591
|
+
'boa', 'bobina', 'bobo', 'boca', 'bocina', 'boda', 'bodega', 'boina',
|
|
592
|
+
'bola', 'bolero', 'bolsa', 'bomba', 'bondad', 'bonito', 'bono', 'bonsái',
|
|
593
|
+
'borde', 'borrar', 'bosque', 'bote', 'botín', 'bóveda', 'bozal', 'bravo',
|
|
594
|
+
'brazo', 'brecha', 'breve', 'brillo', 'brinco', 'brisa', 'broca', 'broma',
|
|
595
|
+
'bronce', 'brote', 'bruja', 'brusco', 'bruto', 'buceo', 'bucle', 'bueno',
|
|
596
|
+
'buey', 'bufanda', 'bufón', 'búho', 'buitre', 'bulto', 'burbuja', 'burla',
|
|
597
|
+
'burro', 'buscar', 'butaca', 'buzón', 'caballo', 'cabeza', 'cabina', 'cabra',
|
|
598
|
+
'cacao', 'cadáver', 'cadena', 'caer', 'café', 'caída', 'caimán', 'caja',
|
|
599
|
+
'cajón', 'cal', 'calamar', 'calcio', 'caldo', 'calidad', 'calle', 'calma',
|
|
600
|
+
'calor', 'calvo', 'cama', 'cambio', 'camello', 'camino', 'campo', 'cáncer',
|
|
601
|
+
'candil', 'canela', 'canguro', 'canica', 'canto', 'caña', 'cañón', 'caoba',
|
|
602
|
+
'caos', 'capaz', 'capitán', 'capote', 'captar', 'capucha', 'cara', 'carbón',
|
|
603
|
+
'cárcel', 'careta', 'carga', 'cariño', 'carne', 'carpeta', 'carro', 'carta',
|
|
604
|
+
'casa', 'casco', 'casero', 'caspa', 'castor', 'catorce', 'catre', 'caudal',
|
|
605
|
+
'causa', 'cazo', 'cebolla', 'ceder', 'cedro', 'celda', 'célebre', 'celoso',
|
|
606
|
+
'célula', 'cemento', 'ceniza', 'centro', 'cerca', 'cerdo', 'cereza', 'cero',
|
|
607
|
+
'cerrar', 'certeza', 'césped', 'cetro', 'chacal', 'chaleco', 'champú', 'chancla',
|
|
608
|
+
'chapa', 'charla', 'chico', 'chiste', 'chivo', 'choque', 'choza', 'chuleta',
|
|
609
|
+
'chupar', 'ciclón', 'ciego', 'cielo', 'cien', 'cierto', 'cifra', 'cigarro',
|
|
610
|
+
'cima', 'cinco', 'cine', 'cinta', 'ciprés', 'circo', 'ciruela', 'cisne',
|
|
611
|
+
'cita', 'ciudad', 'clamor', 'clan', 'claro', 'clase', 'clave', 'cliente',
|
|
612
|
+
'clima', 'clínica', 'cobre', 'cocción', 'cochino', 'cocina', 'coco', 'código',
|
|
613
|
+
'codo', 'cofre', 'coger', 'cohete', 'cojín', 'cojo', 'cola', 'colcha',
|
|
614
|
+
'colegio', 'colgar', 'colina', 'collar', 'colmo', 'columna', 'combate', 'comer',
|
|
615
|
+
'comida', 'cómodo', 'compra', 'conde', 'conejo', 'conga', 'conocer', 'consejo',
|
|
616
|
+
'contar', 'copa', 'copia', 'corazón', 'corbata', 'corcho', 'cordón', 'corona',
|
|
617
|
+
'correr', 'coser', 'cosmos', 'costa', 'cráneo', 'cráter', 'crear', 'crecer',
|
|
618
|
+
'creído', 'crema', 'cría', 'crimen', 'cripta', 'crisis', 'cromo', 'crónica',
|
|
619
|
+
'croqueta', 'crudo', 'cruz', 'cuadro', 'cuarto', 'cuatro', 'cubo', 'cubrir',
|
|
620
|
+
'cuchara', 'cuello', 'cuento', 'cuerda', 'cuesta', 'cueva', 'cuidar', 'culebra',
|
|
621
|
+
'culpa', 'culto', 'cumbre', 'cumplir', 'cuna', 'cuneta', 'cuota', 'cupón',
|
|
622
|
+
'cúpula', 'curar', 'curioso', 'curso', 'curva', 'cutis', 'dama', 'danza',
|
|
623
|
+
'dar', 'dardo', 'dátil', 'deber', 'débil', 'década', 'decir', 'dedo',
|
|
624
|
+
'defensa', 'definir', 'dejar', 'delfín', 'delgado', 'delito', 'demora', 'denso',
|
|
625
|
+
'dental', 'deporte', 'derecho', 'derrota', 'desayuno', 'deseo', 'desfile', 'desnudo',
|
|
626
|
+
'destino', 'desvío', 'detalle', 'detener', 'deuda', 'día', 'diablo', 'diadema',
|
|
627
|
+
'diamante', 'diana', 'diario', 'dibujo', 'dictar', 'diente', 'dieta', 'diez',
|
|
628
|
+
'difícil', 'digno', 'dilema', 'diluir', 'dinero', 'directo', 'dirigir', 'disco',
|
|
629
|
+
'diseño', 'disfraz', 'diva', 'divino', 'doble', 'doce', 'dolor', 'domingo',
|
|
630
|
+
'don', 'donar', 'dorado', 'dormir', 'dorso', 'dos', 'dosis', 'dragón',
|
|
631
|
+
'droga', 'ducha', 'duda', 'duelo', 'dueño', 'dulce', 'dúo', 'duque',
|
|
632
|
+
'durar', 'dureza', 'duro', 'ébano', 'ebrio', 'echar', 'eco', 'ecuador',
|
|
633
|
+
'edad', 'edición', 'edificio', 'editor', 'educar', 'efecto', 'eficaz', 'eje',
|
|
634
|
+
'ejemplo', 'elefante', 'elegir', 'elemento', 'elevar', 'elipse', 'élite', 'elixir',
|
|
635
|
+
'elogio', 'eludir', 'embudo', 'emitir', 'emoción', 'empate', 'empeño', 'empleo',
|
|
636
|
+
'empresa', 'enano', 'encargo', 'enchufe', 'encía', 'enemigo', 'enero', 'enfado',
|
|
637
|
+
'enfermo', 'engaño', 'enigma', 'enlace', 'enorme', 'enredo', 'ensayo', 'enseñar',
|
|
638
|
+
'entero', 'entrar', 'envase', 'envío', 'época', 'equipo', 'erizo', 'escala',
|
|
639
|
+
'escena', 'escolar', 'escribir', 'escudo', 'esencia', 'esfera', 'esfuerzo', 'espada',
|
|
640
|
+
'espejo', 'espía', 'esposa', 'espuma', 'esquí', 'estar', 'este', 'estilo',
|
|
641
|
+
'estufa', 'etapa', 'eterno', 'ética', 'etnia', 'evadir', 'evaluar', 'evento',
|
|
642
|
+
'evitar', 'exacto', 'examen', 'exceso', 'excusa', 'exento', 'exigir', 'exilio',
|
|
643
|
+
'existir', 'éxito', 'experto', 'explicar', 'exponer', 'extremo', 'fábrica', 'fábula',
|
|
644
|
+
'fachada', 'fácil', 'factor', 'faena', 'faja', 'falda', 'fallo', 'falso',
|
|
645
|
+
'faltar', 'fama', 'familia', 'famoso', 'faraón', 'farmacia', 'farol', 'farsa',
|
|
646
|
+
'fase', 'fatiga', 'fauna', 'favor', 'fax', 'febrero', 'fecha', 'feliz',
|
|
647
|
+
'feo', 'feria', 'feroz', 'fértil', 'fervor', 'festín', 'fiable', 'fianza',
|
|
648
|
+
'fiar', 'fibra', 'ficción', 'ficha', 'fideo', 'fiebre', 'fiel', 'fiera',
|
|
649
|
+
'fiesta', 'figura', 'fijar', 'fijo', 'fila', 'filete', 'filial', 'filtro',
|
|
650
|
+
'fin', 'finca', 'fingir', 'finito', 'firma', 'flaco', 'flauta', 'flecha',
|
|
651
|
+
'flor', 'flota', 'fluir', 'flujo', 'flúor', 'fobia', 'foca', 'fogata',
|
|
652
|
+
'fogón', 'folio', 'folleto', 'fondo', 'forma', 'forro', 'fortuna', 'forzar',
|
|
653
|
+
'fosa', 'foto', 'fracaso', 'frágil', 'franja', 'frase', 'fraude', 'freír',
|
|
654
|
+
'freno', 'fresa', 'frío', 'frito', 'fruta', 'fuego', 'fuente', 'fuerza',
|
|
655
|
+
'fuga', 'fumar', 'función', 'funda', 'furgón', 'furia', 'fusil', 'fútbol',
|
|
656
|
+
'futuro', 'gacela', 'gafas', 'gaita', 'gajo', 'gala', 'galería', 'gallo',
|
|
657
|
+
'gamba', 'ganar', 'gancho', 'ganga', 'ganso', 'garaje', 'garza', 'gasolina',
|
|
658
|
+
'gastar', 'gato', 'gavilán', 'gemelo', 'gemir', 'gen', 'género', 'genio',
|
|
659
|
+
'gente', 'geranio', 'gerente', 'germen', 'gesto', 'gigante', 'gimnasio', 'girar',
|
|
660
|
+
'giro', 'glaciar', 'globo', 'gloria', 'gol', 'golfo', 'goloso', 'golpe',
|
|
661
|
+
'goma', 'gordo', 'gorila', 'gorra', 'gota', 'goteo', 'gozar', 'grada',
|
|
662
|
+
'gráfico', 'grano', 'grasa', 'gratis', 'grave', 'grieta', 'grillo', 'gripe',
|
|
663
|
+
'gris', 'grito', 'grosor', 'grúa', 'grueso', 'grumo', 'grupo', 'guante',
|
|
664
|
+
'guapo', 'guardia', 'guerra', 'guía', 'guiño', 'guion', 'guiso', 'guitarra',
|
|
665
|
+
'gusano', 'gustar', 'haber', 'hábil', 'hablar', 'hacer', 'hacha', 'hada',
|
|
666
|
+
'hallar', 'hamaca', 'harina', 'haz', 'hazaña', 'hebilla', 'hebra', 'hecho',
|
|
667
|
+
'helado', 'helio', 'hembra', 'herir', 'hermano', 'héroe', 'hervir', 'hielo',
|
|
668
|
+
'hierro', 'hígado', 'higiene', 'hijo', 'himno', 'historia', 'hocico', 'hogar',
|
|
669
|
+
'hoguera', 'hoja', 'hombre', 'hongo', 'honor', 'honra', 'hora', 'hormiga',
|
|
670
|
+
'horno', 'hostil', 'hoyo', 'hueco', 'huelga', 'huerta', 'hueso', 'huevo',
|
|
671
|
+
'huida', 'huir', 'humano', 'húmedo', 'humilde', 'humo', 'hundir', 'huracán',
|
|
672
|
+
'hurto', 'icono', 'ideal', 'idioma', 'ídolo', 'iglesia', 'iglú', 'igual',
|
|
673
|
+
'ilegal', 'ilusión', 'imagen', 'imán', 'imitar', 'impar', 'imperio', 'imponer',
|
|
674
|
+
'impulso', 'incapaz', 'índice', 'inerte', 'infiel', 'informe', 'ingenio', 'inicio',
|
|
675
|
+
'inmenso', 'inmune', 'innato', 'insecto', 'instante', 'interés', 'íntimo', 'intuir',
|
|
676
|
+
'inútil', 'invierno', 'ira', 'iris', 'ironía', 'isla', 'islote', 'jabalí',
|
|
677
|
+
'jabón', 'jamón', 'jarabe', 'jardín', 'jarra', 'jaula', 'jazmín', 'jefe',
|
|
678
|
+
'jeringa', 'jinete', 'jornada', 'joroba', 'joven', 'joya', 'juerga', 'jueves',
|
|
679
|
+
'juez', 'jugador', 'jugo', 'juguete', 'juicio', 'junco', 'jungla', 'junio',
|
|
680
|
+
'juntar', 'júpiter', 'jurar', 'justo', 'juvenil', 'juzgar', 'kilo', 'koala',
|
|
681
|
+
'labio', 'lacio', 'lacra', 'lado', 'ladrón', 'lagarto', 'lágrima', 'laguna',
|
|
682
|
+
'laico', 'lamer', 'lámina', 'lámpara', 'lana', 'lancha', 'langosta', 'lanza',
|
|
683
|
+
'lápiz', 'largo', 'larva', 'lástima', 'lata', 'látex', 'latir', 'laurel',
|
|
684
|
+
'lavar', 'lazo', 'leal', 'lección', 'leche', 'lector', 'leer', 'legión',
|
|
685
|
+
'legumbre', 'lejano', 'lengua', 'lento', 'leña', 'león', 'leopardo', 'lesión',
|
|
686
|
+
'letal', 'letra', 'leve', 'leyenda', 'libertad', 'libro', 'licor', 'líder',
|
|
687
|
+
'lidiar', 'lienzo', 'liga', 'ligero', 'lima', 'límite', 'limón', 'limpio',
|
|
688
|
+
'lince', 'lindo', 'línea', 'lingote', 'lino', 'linterna', 'líquido', 'liso',
|
|
689
|
+
'lista', 'litera', 'litio', 'litro', 'llaga', 'llama', 'llanto', 'llave',
|
|
690
|
+
'llegar', 'llenar', 'llevar', 'llorar', 'llover', 'lluvia', 'lobo', 'loción',
|
|
691
|
+
'loco', 'locura', 'lógica', 'logro', 'lombriz', 'lomo', 'lonja', 'lote',
|
|
692
|
+
'lucha', 'lucir', 'lugar', 'lujo', 'luna', 'lunes', 'lupa', 'lustro',
|
|
693
|
+
'luto', 'luz', 'maceta', 'macho', 'madera', 'madre', 'maduro', 'maestro',
|
|
694
|
+
'mafia', 'magia', 'mago', 'maíz', 'maldad', 'maleta', 'malla', 'malo',
|
|
695
|
+
'mamá', 'mambo', 'mamut', 'manco', 'mando', 'manejar', 'manga', 'maniquí',
|
|
696
|
+
'manjar', 'mano', 'manso', 'manta', 'mañana', 'mapa', 'máquina', 'mar',
|
|
697
|
+
'marco', 'marea', 'marfil', 'margen', 'marido', 'mármol', 'marrón', 'martes',
|
|
698
|
+
'marzo', 'masa', 'máscara', 'masivo', 'matar', 'materia', 'matiz', 'matriz',
|
|
699
|
+
'máximo', 'mayor', 'mazorca', 'mecha', 'medalla', 'medio', 'médula', 'mejilla',
|
|
700
|
+
'mejor', 'melena', 'melón', 'memoria', 'menor', 'mensaje', 'mente', 'menú',
|
|
701
|
+
'mercado', 'merengue', 'mérito', 'mes', 'mesón', 'meta', 'meter', 'método',
|
|
702
|
+
'metro', 'mezcla', 'miedo', 'miel', 'miembro', 'miga', 'mil', 'milagro',
|
|
703
|
+
'militar', 'millón', 'mimo', 'mina', 'minero', 'mínimo', 'minuto', 'miope',
|
|
704
|
+
'mirar', 'misa', 'miseria', 'misil', 'mismo', 'mitad', 'mito', 'mochila',
|
|
705
|
+
'moción', 'moda', 'modelo', 'moho', 'mojar', 'molde', 'moler', 'molino',
|
|
706
|
+
'momento', 'momia', 'monarca', 'moneda', 'monja', 'monto', 'moño', 'morada',
|
|
707
|
+
'morder', 'moreno', 'morir', 'morro', 'morsa', 'mortal', 'mosca', 'mostrar',
|
|
708
|
+
'motivo', 'mover', 'móvil', 'mozo', 'mucho', 'mudar', 'mueble', 'muela',
|
|
709
|
+
'muerte', 'muestra', 'mugre', 'mujer', 'mula', 'muleta', 'multa', 'mundo',
|
|
710
|
+
'muñeca', 'mural', 'muro', 'músculo', 'museo', 'musgo', 'música', 'muslo',
|
|
711
|
+
'nácar', 'nación', 'nadar', 'naipe', 'naranja', 'nariz', 'narrar', 'nasal',
|
|
712
|
+
'natal', 'nativo', 'natural', 'náusea', 'naval', 'nave', 'navidad', 'necio',
|
|
713
|
+
'néctar', 'negar', 'negocio', 'negro', 'neón', 'nervio', 'neto', 'neutro',
|
|
714
|
+
'nevar', 'nevera', 'nicho', 'nido', 'niebla', 'nieto', 'niñez', 'niño',
|
|
715
|
+
'nítido', 'nivel', 'nobleza', 'noche', 'nómina', 'noria', 'norma', 'norte',
|
|
716
|
+
'nota', 'noticia', 'novato', 'novela', 'novio', 'nube', 'nuca', 'núcleo',
|
|
717
|
+
'nudillo', 'nudo', 'nuera', 'nueve', 'nuez', 'nulo', 'número', 'nutria',
|
|
718
|
+
'oasis', 'obeso', 'obispo', 'objeto', 'obra', 'obrero', 'observar', 'obtener',
|
|
719
|
+
'obvio', 'oca', 'ocaso', 'océano', 'ochenta', 'ocho', 'ocio', 'ocre',
|
|
720
|
+
'octavo', 'octubre', 'oculto', 'ocupar', 'ocurrir', 'odiar', 'odio', 'odisea',
|
|
721
|
+
'oeste', 'ofensa', 'oferta', 'oficio', 'ofrecer', 'ogro', 'oído', 'oír',
|
|
722
|
+
'ojo', 'ola', 'oleada', 'olfato', 'olivo', 'olla', 'olmo', 'olor',
|
|
723
|
+
'olvido', 'ombligo', 'onda', 'onza', 'opaco', 'opción', 'ópera', 'opinar',
|
|
724
|
+
'oponer', 'optar', 'óptica', 'opuesto', 'oración', 'orador', 'oral', 'órbita',
|
|
725
|
+
'orca', 'orden', 'oreja', 'órgano', 'orgía', 'orgullo', 'oriente', 'origen',
|
|
726
|
+
'orilla', 'oro', 'orquesta', 'oruga', 'osadía', 'oscuro', 'osezno', 'oso',
|
|
727
|
+
'ostra', 'otoño', 'otro', 'oveja', 'óvulo', 'óxido', 'oxígeno', 'oyente',
|
|
728
|
+
'ozono', 'pacto', 'padre', 'paella', 'página', 'pago', 'país', 'pájaro',
|
|
729
|
+
'palabra', 'palco', 'paleta', 'pálido', 'palma', 'paloma', 'palpar', 'pan',
|
|
730
|
+
'panal', 'pánico', 'pantera', 'pañuelo', 'papá', 'papel', 'papilla', 'paquete',
|
|
731
|
+
'parar', 'parcela', 'pared', 'parir', 'paro', 'párpado', 'parque', 'párrafo',
|
|
732
|
+
'parte', 'pasar', 'paseo', 'pasión', 'paso', 'pasta', 'pata', 'patio',
|
|
733
|
+
'patria', 'pausa', 'pauta', 'pavo', 'payaso', 'peatón', 'pecado', 'pecera',
|
|
734
|
+
'pecho', 'pedal', 'pedir', 'pegar', 'peine', 'pelar', 'peldaño', 'pelea',
|
|
735
|
+
'peligro', 'pellejo', 'pelo', 'peluca', 'pena', 'pensar', 'peñón', 'peón',
|
|
736
|
+
'peor', 'pepino', 'pequeño', 'pera', 'percha', 'perder', 'pereza', 'perfil',
|
|
737
|
+
'perico', 'perla', 'permiso', 'perro', 'persona', 'pesa', 'pesca', 'pésimo',
|
|
738
|
+
'pestaña', 'pétalo', 'petróleo', 'pez', 'pezuña', 'picar', 'pichón', 'pie',
|
|
739
|
+
'piedra', 'pierna', 'pieza', 'pijama', 'pilar', 'piloto', 'pimienta', 'pino',
|
|
740
|
+
'pintor', 'pinza', 'piña', 'piojo', 'pipa', 'pirata', 'pisar', 'piscina',
|
|
741
|
+
'piso', 'pista', 'pitón', 'pizca', 'placa', 'plan', 'plata', 'playa',
|
|
742
|
+
'plaza', 'pleito', 'pleno', 'plomo', 'pluma', 'plural', 'pobre', 'poco',
|
|
743
|
+
'poder', 'podio', 'poema', 'poesía', 'poeta', 'polen', 'policía', 'pollo',
|
|
744
|
+
'polvo', 'pomada', 'pomelo', 'pomo', 'pompa', 'poner', 'porción', 'portal',
|
|
745
|
+
'posada', 'poseer', 'posible', 'poste', 'potencia', 'potro', 'pozo', 'prado',
|
|
746
|
+
'precoz', 'pregunta', 'premio', 'prensa', 'preso', 'previo', 'primo', 'príncipe',
|
|
747
|
+
'prisión', 'privar', 'proa', 'probar', 'proceso', 'producto', 'proeza', 'profesor',
|
|
748
|
+
'programa', 'prole', 'promesa', 'pronto', 'propio', 'próximo', 'prueba', 'público',
|
|
749
|
+
'puchero', 'pudor', 'pueblo', 'puerta', 'puesto', 'pulga', 'pulir', 'pulmón',
|
|
750
|
+
'pulpo', 'pulso', 'puma', 'punto', 'puñal', 'puño', 'pupa', 'pupila',
|
|
751
|
+
'puré', 'quedar', 'queja', 'quemar', 'querer', 'queso', 'quieto', 'química',
|
|
752
|
+
'quince', 'quitar', 'rábano', 'rabia', 'rabo', 'ración', 'radical', 'raíz',
|
|
753
|
+
'rama', 'rampa', 'rancho', 'rango', 'rapaz', 'rápido', 'rapto', 'rasgo',
|
|
754
|
+
'raspa', 'rato', 'rayo', 'raza', 'razón', 'reacción', 'realidad', 'rebaño',
|
|
755
|
+
'rebote', 'recaer', 'receta', 'rechazo', 'recoger', 'recreo', 'recto', 'recurso',
|
|
756
|
+
'red', 'redondo', 'reducir', 'reflejo', 'reforma', 'refrán', 'refugio', 'regalo',
|
|
757
|
+
'regir', 'regla', 'regreso', 'rehén', 'reino', 'reír', 'reja', 'relato',
|
|
758
|
+
'relevo', 'relieve', 'relleno', 'reloj', 'remar', 'remedio', 'remo', 'rencor',
|
|
759
|
+
'rendir', 'renta', 'reparto', 'repetir', 'reposo', 'reptil', 'res', 'rescate',
|
|
760
|
+
'resina', 'respeto', 'resto', 'resumen', 'retiro', 'retorno', 'retrato', 'reunir',
|
|
761
|
+
'revés', 'revista', 'rey', 'rezar', 'rico', 'riego', 'rienda', 'riesgo',
|
|
762
|
+
'rifa', 'rígido', 'rigor', 'rincón', 'riñón', 'río', 'riqueza', 'risa',
|
|
763
|
+
'ritmo', 'rito'
|
|
764
|
+
]
|
|
765
|
+
},
|
|
766
|
+
'portuguese': {
|
|
767
|
+
prefixLength: 3,
|
|
768
|
+
words: [
|
|
769
|
+
'abaular', 'abdominal', 'abeto', 'abissinio', 'abjeto', 'ablucao', 'abnegar', 'abotoar',
|
|
770
|
+
'abrutalhar', 'absurdo', 'abutre', 'acautelar', 'accessorios', 'acetona', 'achocolatado', 'acirrar',
|
|
771
|
+
'acne', 'acovardar', 'acrostico', 'actinomicete', 'acustico', 'adaptavel', 'adeus', 'adivinho',
|
|
772
|
+
'adjunto', 'admoestar', 'adnominal', 'adotivo', 'adquirir', 'adriatico', 'adsorcao', 'adutora',
|
|
773
|
+
'advogar', 'aerossol', 'afazeres', 'afetuoso', 'afixo', 'afluir', 'afortunar', 'afrouxar',
|
|
774
|
+
'aftosa', 'afunilar', 'agentes', 'agito', 'aglutinar', 'aiatola', 'aimore', 'aino',
|
|
775
|
+
'aipo', 'airoso', 'ajeitar', 'ajoelhar', 'ajudante', 'ajuste', 'alazao', 'albumina',
|
|
776
|
+
'alcunha', 'alegria', 'alexandre', 'alforriar', 'alguns', 'alhures', 'alivio', 'almoxarife',
|
|
777
|
+
'alotropico', 'alpiste', 'alquimista', 'alsaciano', 'altura', 'aluviao', 'alvura', 'amazonico',
|
|
778
|
+
'ambulatorio', 'ametodico', 'amizades', 'amniotico', 'amovivel', 'amurada', 'anatomico', 'ancorar',
|
|
779
|
+
'anexo', 'anfora', 'aniversario', 'anjo', 'anotar', 'ansioso', 'anturio', 'anuviar',
|
|
780
|
+
'anverso', 'anzol', 'aonde', 'apaziguar', 'apito', 'aplicavel', 'apoteotico', 'aprimorar',
|
|
781
|
+
'aprumo', 'apto', 'apuros', 'aquoso', 'arauto', 'arbusto', 'arduo', 'aresta',
|
|
782
|
+
'arfar', 'arguto', 'aritmetico', 'arlequim', 'armisticio', 'aromatizar', 'arpoar', 'arquivo',
|
|
783
|
+
'arrumar', 'arsenio', 'arturiano', 'aruaque', 'arvores', 'asbesto', 'ascorbico', 'aspirina',
|
|
784
|
+
'asqueroso', 'assustar', 'astuto', 'atazanar', 'ativo', 'atletismo', 'atmosferico', 'atormentar',
|
|
785
|
+
'atroz', 'aturdir', 'audivel', 'auferir', 'augusto', 'aula', 'aumento', 'aurora',
|
|
786
|
+
'autuar', 'avatar', 'avexar', 'avizinhar', 'avolumar', 'avulso', 'axiomatico', 'azerbaijano',
|
|
787
|
+
'azimute', 'azoto', 'azulejo', 'bacteriologista', 'badulaque', 'baforada', 'baixote', 'bajular',
|
|
788
|
+
'balzaquiana', 'bambuzal', 'banzo', 'baoba', 'baqueta', 'barulho', 'bastonete', 'batuta',
|
|
789
|
+
'bauxita', 'bavaro', 'bazuca', 'bcrepuscular', 'beato', 'beduino', 'begonia', 'behaviorista',
|
|
790
|
+
'beisebol', 'belzebu', 'bemol', 'benzido', 'beocio', 'bequer', 'berro', 'besuntar',
|
|
791
|
+
'betume', 'bexiga', 'bezerro', 'biatlon', 'biboca', 'bicuspide', 'bidirecional', 'bienio',
|
|
792
|
+
'bifurcar', 'bigorna', 'bijuteria', 'bimotor', 'binormal', 'bioxido', 'bipolarizacao', 'biquini',
|
|
793
|
+
'birutice', 'bisturi', 'bituca', 'biunivoco', 'bivalve', 'bizarro', 'blasfemo', 'blenorreia',
|
|
794
|
+
'blindar', 'bloqueio', 'blusao', 'boazuda', 'bofete', 'bojudo', 'bolso', 'bombordo',
|
|
795
|
+
'bonzo', 'botina', 'boquiaberto', 'bostoniano', 'botulismo', 'bourbon', 'bovino', 'boximane',
|
|
796
|
+
'bravura', 'brevidade', 'britar', 'broxar', 'bruno', 'bruxuleio', 'bubonico', 'bucolico',
|
|
797
|
+
'buda', 'budista', 'bueiro', 'buffer', 'bugre', 'bujao', 'bumerangue', 'burundines',
|
|
798
|
+
'busto', 'butique', 'buzios', 'caatinga', 'cabuqui', 'cacunda', 'cafuzo', 'cajueiro',
|
|
799
|
+
'camurca', 'canudo', 'caquizeiro', 'carvoeiro', 'casulo', 'catuaba', 'cauterizar', 'cebolinha',
|
|
800
|
+
'cedula', 'ceifeiro', 'celulose', 'cerzir', 'cesto', 'cetro', 'ceus', 'cevar',
|
|
801
|
+
'chavena', 'cheroqui', 'chita', 'chovido', 'chuvoso', 'ciatico', 'cibernetico', 'cicuta',
|
|
802
|
+
'cidreira', 'cientistas', 'cifrar', 'cigarro', 'cilio', 'cimo', 'cinzento', 'cioso',
|
|
803
|
+
'cipriota', 'cirurgico', 'cisto', 'citrico', 'ciumento', 'civismo', 'clavicula', 'clero',
|
|
804
|
+
'clitoris', 'cluster', 'coaxial', 'cobrir', 'cocota', 'codorniz', 'coexistir', 'cogumelo',
|
|
805
|
+
'coito', 'colusao', 'compaixao', 'comutativo', 'contentamento', 'convulsivo', 'coordenativa', 'coquetel',
|
|
806
|
+
'correto', 'corvo', 'costureiro', 'cotovia', 'covil', 'cozinheiro', 'cretino', 'cristo',
|
|
807
|
+
'crivo', 'crotalo', 'cruzes', 'cubo', 'cucuia', 'cueiro', 'cuidar', 'cujo',
|
|
808
|
+
'cultural', 'cunilingua', 'cupula', 'curvo', 'custoso', 'cutucar', 'czarismo', 'dablio',
|
|
809
|
+
'dacota', 'dados', 'daguerreotipo', 'daiquiri', 'daltonismo', 'damista', 'dantesco', 'daquilo',
|
|
810
|
+
'darwinista', 'dasein', 'dativo', 'deao', 'debutantes', 'decurso', 'deduzir', 'defunto',
|
|
811
|
+
'degustar', 'dejeto', 'deltoide', 'demover', 'denunciar', 'deputado', 'deque', 'dervixe',
|
|
812
|
+
'desvirtuar', 'deturpar', 'deuteronomio', 'devoto', 'dextrose', 'dezoito', 'diatribe', 'dicotomico',
|
|
813
|
+
'didatico', 'dietista', 'difuso', 'digressao', 'diluvio', 'diminuto', 'dinheiro', 'dinossauro',
|
|
814
|
+
'dioxido', 'diplomatico', 'dique', 'dirimivel', 'disturbio', 'diurno', 'divulgar', 'dizivel',
|
|
815
|
+
'doar', 'dobro', 'docura', 'dodoi', 'doer', 'dogue', 'doloso', 'domo',
|
|
816
|
+
'donzela', 'doping', 'dorsal', 'dossie', 'dote', 'doutro', 'doze', 'dravidico',
|
|
817
|
+
'dreno', 'driver', 'dropes', 'druso', 'dubnio', 'ducto', 'dueto', 'dulija',
|
|
818
|
+
'dundum', 'duodeno', 'duquesa', 'durou', 'duvidoso', 'duzia', 'ebano', 'ebrio',
|
|
819
|
+
'eburneo', 'echarpe', 'eclusa', 'ecossistema', 'ectoplasma', 'ecumenismo', 'eczema', 'eden',
|
|
820
|
+
'editorial', 'edredom', 'edulcorar', 'efetuar', 'efigie', 'efluvio', 'egiptologo', 'egresso',
|
|
821
|
+
'egua', 'einsteiniano', 'eira', 'eivar', 'eixos', 'ejetar', 'elastomero', 'eldorado',
|
|
822
|
+
'elixir', 'elmo', 'eloquente', 'elucidativo', 'emaranhar', 'embutir', 'emerito', 'emfa',
|
|
823
|
+
'emitir', 'emotivo', 'empuxo', 'emulsao', 'enamorar', 'encurvar', 'enduro', 'enevoar',
|
|
824
|
+
'enfurnar', 'enguico', 'enho', 'enigmista', 'enlutar', 'enormidade', 'enpreendimento', 'enquanto',
|
|
825
|
+
'enriquecer', 'enrugar', 'entusiastico', 'enunciar', 'envolvimento', 'enxuto', 'enzimatico', 'eolico',
|
|
826
|
+
'epiteto', 'epoxi', 'epura', 'equivoco', 'erario', 'erbio', 'ereto', 'erguido',
|
|
827
|
+
'erisipela', 'ermo', 'erotizar', 'erros', 'erupcao', 'ervilha', 'esburacar', 'escutar',
|
|
828
|
+
'esfuziante', 'esguio', 'esloveno', 'esmurrar', 'esoterismo', 'esperanca', 'espirito', 'espurio',
|
|
829
|
+
'essencialmente', 'esturricar', 'esvoacar', 'etario', 'eterno', 'etiquetar', 'etnologo', 'etos',
|
|
830
|
+
'etrusco', 'euclidiano', 'euforico', 'eugenico', 'eunuco', 'europio', 'eustaquio', 'eutanasia',
|
|
831
|
+
'evasivo', 'eventualidade', 'evitavel', 'evoluir', 'exaustor', 'excursionista', 'exercito', 'exfoliado',
|
|
832
|
+
'exito', 'exotico', 'expurgo', 'exsudar', 'extrusora', 'exumar', 'fabuloso', 'facultativo',
|
|
833
|
+
'fado', 'fagulha', 'faixas', 'fajuto', 'faltoso', 'famoso', 'fanzine', 'fapesp',
|
|
834
|
+
'faquir', 'fartura', 'fastio', 'faturista', 'fausto', 'favorito', 'faxineira', 'fazer',
|
|
835
|
+
'fealdade', 'febril', 'fecundo', 'fedorento', 'feerico', 'feixe', 'felicidade', 'felipe',
|
|
836
|
+
'feltro', 'femur', 'fenotipo', 'fervura', 'festivo', 'feto', 'feudo', 'fevereiro',
|
|
837
|
+
'fezinha', 'fiasco', 'fibra', 'ficticio', 'fiduciario', 'fiesp', 'fifa', 'figurino',
|
|
838
|
+
'fijiano', 'filtro', 'finura', 'fiorde', 'fiquei', 'firula', 'fissurar', 'fitoteca',
|
|
839
|
+
'fivela', 'fixo', 'flavio', 'flexor', 'flibusteiro', 'flotilha', 'fluxograma', 'fobos',
|
|
840
|
+
'foco', 'fofura', 'foguista', 'foie', 'foliculo', 'fominha', 'fonte', 'forum',
|
|
841
|
+
'fosso', 'fotossintese', 'foxtrote', 'fraudulento', 'frevo', 'frivolo', 'frouxo', 'frutose',
|
|
842
|
+
'fuba', 'fucsia', 'fugitivo', 'fuinha', 'fujao', 'fulustreco', 'fumo', 'funileiro',
|
|
843
|
+
'furunculo', 'fustigar', 'futurologo', 'fuxico', 'fuzue', 'gabriel', 'gado', 'gaelico',
|
|
844
|
+
'gafieira', 'gaguejo', 'gaivota', 'gajo', 'galvanoplastico', 'gamo', 'ganso', 'garrucha',
|
|
845
|
+
'gastronomo', 'gatuno', 'gaussiano', 'gaviao', 'gaxeta', 'gazeteiro', 'gear', 'geiser',
|
|
846
|
+
'geminiano', 'generoso', 'genuino', 'geossinclinal', 'gerundio', 'gestual', 'getulista', 'gibi',
|
|
847
|
+
'gigolo', 'gilete', 'ginseng', 'giroscopio', 'glaucio', 'glacial', 'gleba', 'glifo',
|
|
848
|
+
'glote', 'glutonia', 'gnostico', 'goela', 'gogo', 'goitaca', 'golpista', 'gomo',
|
|
849
|
+
'gonzo', 'gorro', 'gostou', 'goticula', 'gourmet', 'governo', 'gozo', 'graxo',
|
|
850
|
+
'grevista', 'grito', 'grotesco', 'gruta', 'guaxinim', 'gude', 'gueto', 'guizo',
|
|
851
|
+
'guloso', 'gume', 'guru', 'gustativo', 'gustavo', 'gutural', 'habitue', 'haitiano',
|
|
852
|
+
'halterofilista', 'hamburguer', 'hanseniase', 'happening', 'harpista', 'hastear', 'haveres', 'hebreu',
|
|
853
|
+
'hectometro', 'hedonista', 'hegira', 'helena', 'helminto', 'hemorroidas', 'henrique', 'heptassilabo',
|
|
854
|
+
'hertziano', 'hesitar', 'heterossexual', 'heuristico', 'hexagono', 'hiato', 'hibrido', 'hidrostatico',
|
|
855
|
+
'hieroglifo', 'hifenizar', 'higienizar', 'hilario', 'himen', 'hino', 'hippie', 'hirsuto',
|
|
856
|
+
'historiografia', 'hitlerista', 'hodometro', 'hoje', 'holograma', 'homus', 'honroso', 'hoquei',
|
|
857
|
+
'horto', 'hostilizar', 'hotentote', 'huguenote', 'humilde', 'huno', 'hurra', 'hutu',
|
|
858
|
+
'iaia', 'ialorixa', 'iambico', 'iansa', 'iaque', 'iara', 'iatista', 'iberico',
|
|
859
|
+
'ibis', 'icar', 'iceberg', 'icosagono', 'idade', 'ideologo', 'idiotice', 'idoso',
|
|
860
|
+
'iemenita', 'iene', 'igarape', 'iglu', 'ignorar', 'igreja', 'iguaria', 'iidiche',
|
|
861
|
+
'ilativo', 'iletrado', 'ilharga', 'ilimitado', 'ilogismo', 'ilustrissimo', 'imaturo', 'imbuzeiro',
|
|
862
|
+
'imerso', 'imitavel', 'imovel', 'imputar', 'imutavel', 'inaveriguavel', 'incutir', 'induzir',
|
|
863
|
+
'inextricavel', 'infusao', 'ingua', 'inhame', 'iniquo', 'injusto', 'inning', 'inoxidavel',
|
|
864
|
+
'inquisitorial', 'insustentavel', 'intumescimento', 'inutilizavel', 'invulneravel', 'inzoneiro', 'iodo', 'iogurte',
|
|
865
|
+
'ioio', 'ionosfera', 'ioruba', 'iota', 'ipsilon', 'irascivel', 'iris', 'irlandes',
|
|
866
|
+
'irmaos', 'iroques', 'irrupcao', 'isca', 'isento', 'islandes', 'isotopo', 'isqueiro',
|
|
867
|
+
'israelita', 'isso', 'isto', 'iterbio', 'itinerario', 'itrio', 'iuane', 'iugoslavo',
|
|
868
|
+
'jabuticabeira', 'jacutinga', 'jade', 'jagunco', 'jainista', 'jaleco', 'jambo', 'jantarada',
|
|
869
|
+
'japones', 'jaqueta', 'jarro', 'jasmim', 'jato', 'jaula', 'javel', 'jazz',
|
|
870
|
+
'jegue', 'jeitoso', 'jejum', 'jenipapo', 'jeova', 'jequitiba', 'jersei', 'jesus',
|
|
871
|
+
'jetom', 'jiboia', 'jihad', 'jilo', 'jingle', 'jipe', 'jocoso', 'joelho',
|
|
872
|
+
'joguete', 'joio', 'jojoba', 'jorro', 'jota', 'joule', 'joviano', 'jubiloso',
|
|
873
|
+
'judoca', 'jugular', 'juizo', 'jujuba', 'juliano', 'jumento', 'junto', 'jururu',
|
|
874
|
+
'justo', 'juta', 'juventude', 'labutar', 'laguna', 'laico', 'lajota', 'lanterninha',
|
|
875
|
+
'lapso', 'laquear', 'lastro', 'lauto', 'lavrar', 'laxativo', 'lazer', 'leasing',
|
|
876
|
+
'lebre', 'lecionar', 'ledo', 'leguminoso', 'leitura', 'lele', 'lemure', 'lento',
|
|
877
|
+
'leonardo', 'leopardo', 'lepton', 'leque', 'leste', 'letreiro', 'leucocito', 'levitico',
|
|
878
|
+
'lexicologo', 'lhama', 'lhufas', 'liame', 'licoroso', 'lidocaina', 'liliputiano', 'limusine',
|
|
879
|
+
'linotipo', 'lipoproteina', 'liquidos', 'lirismo', 'lisura', 'liturgico', 'livros', 'lixo',
|
|
880
|
+
'lobulo', 'locutor', 'lodo', 'logro', 'lojista', 'lombriga', 'lontra', 'loop',
|
|
881
|
+
'loquaz', 'lorota', 'losango', 'lotus', 'louvor', 'luar', 'lubrificavel', 'lucros',
|
|
882
|
+
'lugubre', 'luis', 'luminoso', 'luneta', 'lustroso', 'luto', 'luvas', 'luxuriante',
|
|
883
|
+
'luzeiro', 'maduro', 'maestro', 'mafioso', 'magro', 'maiuscula', 'majoritario', 'malvisto',
|
|
884
|
+
'mamute', 'manutencao', 'mapoteca', 'maquinista', 'marzipa', 'masturbar', 'matuto', 'mausoleu',
|
|
885
|
+
'mavioso', 'maxixe', 'mazurca', 'meandro', 'mecha', 'medusa', 'mefistofelico', 'megera',
|
|
886
|
+
'meirinho', 'melro', 'memorizar', 'menu', 'mequetrefe', 'mertiolate', 'mestria', 'metroviario',
|
|
887
|
+
'mexilhao', 'mezanino', 'miau', 'microssegundo', 'midia', 'migratorio', 'mimosa', 'minuto',
|
|
888
|
+
'miosotis', 'mirtilo', 'misturar', 'mitzvah', 'miudos', 'mixuruca', 'mnemonico', 'moagem',
|
|
889
|
+
'mobilizar', 'modulo', 'moer', 'mofo', 'mogno', 'moita', 'molusco', 'monumento',
|
|
890
|
+
'moqueca', 'morubixaba', 'mostruario', 'motriz', 'mouse', 'movivel', 'mozarela', 'muarra',
|
|
891
|
+
'muculmano', 'mudo', 'mugir', 'muitos', 'mumunha', 'munir', 'muon', 'muquira',
|
|
892
|
+
'murros', 'musselina', 'nacoes', 'nado', 'naftalina', 'nago', 'naipe', 'naja',
|
|
893
|
+
'nalgum', 'namoro', 'nanquim', 'napolitano', 'naquilo', 'nascimento', 'nautilo', 'navios',
|
|
894
|
+
'nazista', 'nebuloso', 'nectarina', 'nefrologo', 'negus', 'nelore', 'nenufar', 'nepotismo',
|
|
895
|
+
'nervura', 'neste', 'netuno', 'neutron', 'nevoeiro', 'newtoniano', 'nexo', 'nhenhenhem',
|
|
896
|
+
'nhoque', 'nigeriano', 'niilista', 'ninho', 'niobio', 'niponico', 'niquelar', 'nirvana',
|
|
897
|
+
'nisto', 'nitroglicerina', 'nivoso', 'nobreza', 'nocivo', 'noel', 'nogueira', 'noivo',
|
|
898
|
+
'nojo', 'nominativo', 'nonuplo', 'noruegues', 'nostalgico', 'noturno', 'nouveau', 'nuanca',
|
|
899
|
+
'nublar', 'nucleotideo', 'nudista', 'nulo', 'numismatico', 'nunquinha', 'nupcias', 'nutritivo',
|
|
900
|
+
'nuvens', 'oasis', 'obcecar', 'obeso', 'obituario', 'objetos', 'oblongo', 'obnoxio',
|
|
901
|
+
'obrigatorio', 'obstruir', 'obtuso', 'obus', 'obvio', 'ocaso', 'occipital', 'oceanografo',
|
|
902
|
+
'ocioso', 'oclusivo', 'ocorrer', 'ocre', 'octogono', 'odalisca', 'odisseia', 'odorifico',
|
|
903
|
+
'oersted', 'oeste', 'ofertar', 'ofidio', 'oftalmologo', 'ogiva', 'ogum', 'oigale',
|
|
904
|
+
'oitavo', 'oitocentos', 'ojeriza', 'olaria', 'oleoso', 'olfato', 'olhos', 'oliveira',
|
|
905
|
+
'olmo', 'olor', 'olvidavel', 'ombudsman', 'omeleteira', 'omitir', 'omoplata', 'onanismo',
|
|
906
|
+
'ondular', 'oneroso', 'onomatopeico', 'ontologico', 'onus', 'onze', 'opalescente', 'opcional',
|
|
907
|
+
'operistico', 'opio', 'oposto', 'oprobrio', 'optometrista', 'opusculo', 'oratorio', 'orbital',
|
|
908
|
+
'orcar', 'orfao', 'orixa', 'orla', 'ornitologo', 'orquidea', 'ortorrombico', 'orvalho',
|
|
909
|
+
'osculo', 'osmotico', 'ossudo', 'ostrogodo', 'otario', 'otite', 'ouro', 'ousar',
|
|
910
|
+
'outubro', 'ouvir', 'ovario', 'overnight', 'oviparo', 'ovni', 'ovoviviparo', 'ovulo',
|
|
911
|
+
'oxala', 'oxente', 'oxiuro', 'oxossi', 'ozonizar', 'paciente', 'pactuar', 'padronizar',
|
|
912
|
+
'paete', 'pagodeiro', 'paixao', 'pajem', 'paludismo', 'pampas', 'panturrilha', 'papudo',
|
|
913
|
+
'paquistanes', 'pastoso', 'patua', 'paulo', 'pauzinhos', 'pavoroso', 'paxa', 'pazes',
|
|
914
|
+
'peao', 'pecuniario', 'pedunculo', 'pegaso', 'peixinho', 'pejorativo', 'pelvis', 'penuria',
|
|
915
|
+
'pequno', 'petunia', 'pezada', 'piauiense', 'pictorico', 'pierro', 'pigmeu', 'pijama',
|
|
916
|
+
'pilulas', 'pimpolho', 'pintura', 'piorar', 'pipocar', 'piqueteiro', 'pirulito', 'pistoleiro',
|
|
917
|
+
'pituitaria', 'pivotar', 'pixote', 'pizzaria', 'plistoceno', 'plotar', 'pluviometrico', 'pneumonico',
|
|
918
|
+
'poco', 'podridao', 'poetisa', 'pogrom', 'pois', 'polvorosa', 'pomposo', 'ponderado',
|
|
919
|
+
'pontudo', 'populoso', 'poquer', 'porvir', 'posudo', 'potro', 'pouso', 'povoar',
|
|
920
|
+
'prazo', 'prezar', 'privilegios', 'proximo', 'prussiano', 'pseudopode', 'psoriase', 'pterossauros',
|
|
921
|
+
'ptialina', 'ptolemaico', 'pudor', 'pueril', 'pufe', 'pugilista', 'puir', 'pujante',
|
|
922
|
+
'pulverizar', 'pumba', 'punk', 'purulento', 'pustula', 'putsch', 'puxe', 'quatrocentos',
|
|
923
|
+
'quetzal', 'quixotesco', 'quotizavel', 'rabujice', 'racista', 'radonio', 'rafia', 'ragu',
|
|
924
|
+
'rajado', 'ralo', 'rampeiro', 'ranzinza', 'raptor', 'raquitismo', 'raro', 'rasurar',
|
|
925
|
+
'ratoeira', 'ravioli', 'razoavel', 'reavivar', 'rebuscar', 'recusavel', 'reduzivel', 'reexposicao',
|
|
926
|
+
'refutavel', 'regurgitar', 'reivindicavel', 'rejuvenescimento', 'relva', 'remuneravel', 'renunciar', 'reorientar',
|
|
927
|
+
'repuxo', 'requisito', 'resumo', 'returno', 'reutilizar', 'revolvido', 'rezonear', 'riacho',
|
|
928
|
+
'ribossomo', 'ricota', 'ridiculo', 'rifle', 'rigoroso', 'rijo', 'rimel', 'rins',
|
|
929
|
+
'rios', 'riqueza', 'riquixa', 'rissole', 'ritualistico', 'rivalizar', 'rixa', 'robusto',
|
|
930
|
+
'rococo', 'rodoviario', 'roer', 'rogo', 'rojao', 'rolo', 'rompimento', 'ronronar',
|
|
931
|
+
'roqueiro', 'rorqual', 'rosto', 'rotundo', 'rouxinol', 'roxo', 'royal', 'ruas',
|
|
932
|
+
'rucula', 'rudimentos', 'ruela', 'rufo', 'rugoso', 'ruivo', 'rule', 'rumoroso',
|
|
933
|
+
'runico', 'ruptura', 'rural', 'rustico', 'rutilar', 'saariano', 'sabujo', 'sacudir',
|
|
934
|
+
'sadomasoquista', 'safra', 'sagui', 'sais', 'samurai', 'santuario', 'sapo', 'saquear',
|
|
935
|
+
'sartriano', 'saturno', 'saude', 'sauva', 'saveiro', 'saxofonista', 'sazonal', 'scherzo',
|
|
936
|
+
'script', 'seara', 'seborreia', 'secura', 'seduzir', 'sefardim', 'seguro', 'seja',
|
|
937
|
+
'selvas', 'sempre', 'senzala', 'sepultura', 'sequoia', 'sestercio', 'setuplo', 'seus',
|
|
938
|
+
'seviciar', 'sezonismo', 'shalom', 'siames', 'sibilante', 'sicrano', 'sidra', 'sifilitico',
|
|
939
|
+
'signos', 'silvo', 'simultaneo', 'sinusite', 'sionista', 'sirio', 'sisudo', 'situar',
|
|
940
|
+
'sivan', 'slide', 'slogan', 'soar', 'sobrio', 'socratico', 'sodomizar', 'soerguer',
|
|
941
|
+
'software', 'sogro', 'soja', 'solver', 'somente', 'sonso', 'sopro', 'soquete',
|
|
942
|
+
'sorveteiro', 'sossego', 'soturno', 'sousafone', 'sovinice', 'sozinho', 'suavizar', 'subverter',
|
|
943
|
+
'sucursal', 'sudoriparo', 'sufragio', 'sugestoes', 'suite', 'sujo', 'sultao', 'sumula',
|
|
944
|
+
'suntuoso', 'suor', 'supurar', 'suruba', 'susto', 'suturar', 'suvenir', 'tabuleta',
|
|
945
|
+
'taco', 'tadjique', 'tafeta', 'tagarelice', 'taitiano', 'talvez', 'tampouco', 'tanzaniano',
|
|
946
|
+
'taoista', 'tapume', 'taquion', 'tarugo', 'tascar', 'tatuar', 'tautologico', 'tavola',
|
|
947
|
+
'taxionomista', 'tchecoslovaco', 'teatrologo', 'tectonismo', 'tedioso', 'teflon', 'tegumento', 'teixo',
|
|
948
|
+
'telurio', 'temporas', 'tenue', 'teosofico', 'tepido', 'tequila', 'terrorista', 'testosterona',
|
|
949
|
+
'tetrico', 'teutonico', 'teve', 'texugo', 'tiara', 'tibia', 'tiete', 'tifoide',
|
|
950
|
+
'tigresa', 'tijolo', 'tilintar', 'timpano', 'tintureiro', 'tiquete', 'tiroteio', 'tisico',
|
|
951
|
+
'titulos', 'tive', 'toar', 'toboga', 'tofu', 'togoles', 'toicinho', 'tolueno',
|
|
952
|
+
'tomografo', 'tontura', 'toponimo', 'toquio', 'torvelinho', 'tostar', 'toto', 'touro',
|
|
953
|
+
'toxina', 'trazer', 'trezentos', 'trivialidade', 'trovoar', 'truta', 'tuaregue', 'tubular',
|
|
954
|
+
'tucano', 'tudo', 'tufo', 'tuiste', 'tulipa', 'tumultuoso', 'tunisino', 'tupiniquim',
|
|
955
|
+
'turvo', 'tutu', 'ucraniano', 'udenista', 'ufanista', 'ufologo', 'ugaritico', 'uiste',
|
|
956
|
+
'uivo', 'ulceroso', 'ulema', 'ultravioleta', 'umbilical', 'umero', 'umido', 'umlaut',
|
|
957
|
+
'unanimidade', 'unesco', 'ungulado', 'unheiro', 'univoco', 'untuoso', 'urano', 'urbano',
|
|
958
|
+
'urdir', 'uretra', 'urgente', 'urinol', 'urna', 'urologo', 'urro', 'ursulina',
|
|
959
|
+
'urtiga', 'urupe', 'usavel', 'usbeque', 'usei', 'usineiro', 'usurpar', 'utero',
|
|
960
|
+
'utilizar', 'utopico', 'uvular', 'uxoricidio', 'vacuo', 'vadio', 'vaguear', 'vaivem',
|
|
961
|
+
'valvula', 'vampiro', 'vantajoso', 'vaporoso', 'vaquinha', 'varziano', 'vasto', 'vaticinio',
|
|
962
|
+
'vaudeville', 'vazio', 'veado', 'vedico', 'veemente', 'vegetativo', 'veio', 'veja',
|
|
963
|
+
'veludo', 'venusiano', 'verdade', 'verve', 'vestuario', 'vetusto', 'vexatorio', 'vezes',
|
|
964
|
+
'viavel', 'vibratorio', 'victor', 'vicunha', 'vidros', 'vietnamita', 'vigoroso', 'vilipendiar',
|
|
965
|
+
'vime', 'vintem', 'violoncelo', 'viquingue', 'virus', 'visualizar', 'vituperio', 'viuvo',
|
|
966
|
+
'vivo', 'vizir', 'voar', 'vociferar', 'vodu', 'vogar', 'voile', 'volver',
|
|
967
|
+
'vomito', 'vontade', 'vortice', 'vosso', 'voto', 'vovozinha', 'voyeuse', 'vozes',
|
|
968
|
+
'vulva', 'vupt', 'western', 'xadrez', 'xale', 'xampu', 'xango', 'xarope',
|
|
969
|
+
'xaual', 'xavante', 'xaxim', 'xenonio', 'xepa', 'xerox', 'xicara', 'xifopago',
|
|
970
|
+
'xiita', 'xilogravura', 'xinxim', 'xistoso', 'xixi', 'xodo', 'xogum', 'xucro',
|
|
971
|
+
'zabumba', 'zagueiro', 'zambiano', 'zanzar', 'zarpar', 'zebu', 'zefiro', 'zeloso',
|
|
972
|
+
'zenite', 'zumbi'
|
|
973
|
+
]
|
|
974
|
+
},
|
|
975
|
+
'japanese': {
|
|
976
|
+
prefixLength: 4,
|
|
977
|
+
words: [
|
|
978
|
+
'あいこくしん', 'あいさつ', 'あいだ', 'あおぞら', 'あかちゃん', 'あきる', 'あけがた', 'あける',
|
|
979
|
+
'あこがれる', 'あさい', 'あさひ', 'あしあと', 'あじわう', 'あずかる', 'あずき', 'あそぶ',
|
|
980
|
+
'あたえる', 'あたためる', 'あたりまえ', 'あたる', 'あつい', 'あつかう', 'あっしゅく', 'あつまり',
|
|
981
|
+
'あつめる', 'あてな', 'あてはまる', 'あひる', 'あぶら', 'あぶる', 'あふれる', 'あまい',
|
|
982
|
+
'あまど', 'あまやかす', 'あまり', 'あみもの', 'あめりか', 'あやまる', 'あゆむ', 'あらいぐま',
|
|
983
|
+
'あらし', 'あらすじ', 'あらためる', 'あらゆる', 'あらわす', 'ありがとう', 'あわせる', 'あわてる',
|
|
984
|
+
'あんい', 'あんがい', 'あんこ', 'あんぜん', 'あんてい', 'あんない', 'あんまり', 'いいだす',
|
|
985
|
+
'いおん', 'いがい', 'いがく', 'いきおい', 'いきなり', 'いきもの', 'いきる', 'いくじ',
|
|
986
|
+
'いくぶん', 'いけばな', 'いけん', 'いこう', 'いこく', 'いこつ', 'いさましい', 'いさん',
|
|
987
|
+
'いしき', 'いじゅう', 'いじょう', 'いじわる', 'いずみ', 'いずれ', 'いせい', 'いせえび',
|
|
988
|
+
'いせかい', 'いせき', 'いぜん', 'いそうろう', 'いそがしい', 'いだい', 'いだく', 'いたずら',
|
|
989
|
+
'いたみ', 'いたりあ', 'いちおう', 'いちじ', 'いちど', 'いちば', 'いちぶ', 'いちりゅう',
|
|
990
|
+
'いつか', 'いっしゅん', 'いっせい', 'いっそう', 'いったん', 'いっち', 'いってい', 'いっぽう',
|
|
991
|
+
'いてざ', 'いてん', 'いどう', 'いとこ', 'いない', 'いなか', 'いねむり', 'いのち',
|
|
992
|
+
'いのる', 'いはつ', 'いばる', 'いはん', 'いびき', 'いひん', 'いふく', 'いへん',
|
|
993
|
+
'いほう', 'いみん', 'いもうと', 'いもたれ', 'いもり', 'いやがる', 'いやす', 'いよかん',
|
|
994
|
+
'いよく', 'いらい', 'いらすと', 'いりぐち', 'いりょう', 'いれい', 'いれもの', 'いれる',
|
|
995
|
+
'いろえんぴつ', 'いわい', 'いわう', 'いわかん', 'いわば', 'いわゆる', 'いんげんまめ', 'いんさつ',
|
|
996
|
+
'いんしょう', 'いんよう', 'うえき', 'うえる', 'うおざ', 'うがい', 'うかぶ', 'うかべる',
|
|
997
|
+
'うきわ', 'うくらいな', 'うくれれ', 'うけたまわる', 'うけつけ', 'うけとる', 'うけもつ', 'うける',
|
|
998
|
+
'うごかす', 'うごく', 'うこん', 'うさぎ', 'うしなう', 'うしろがみ', 'うすい', 'うすぎ',
|
|
999
|
+
'うすぐらい', 'うすめる', 'うせつ', 'うちあわせ', 'うちがわ', 'うちき', 'うちゅう', 'うっかり',
|
|
1000
|
+
'うつくしい', 'うったえる', 'うつる', 'うどん', 'うなぎ', 'うなじ', 'うなずく', 'うなる',
|
|
1001
|
+
'うねる', 'うのう', 'うぶげ', 'うぶごえ', 'うまれる', 'うめる', 'うもう', 'うやまう',
|
|
1002
|
+
'うよく', 'うらがえす', 'うらぐち', 'うらない', 'うりあげ', 'うりきれ', 'うるさい', 'うれしい',
|
|
1003
|
+
'うれゆき', 'うれる', 'うろこ', 'うわき', 'うわさ', 'うんこう', 'うんちん', 'うんてん',
|
|
1004
|
+
'うんどう', 'えいえん', 'えいが', 'えいきょう', 'えいご', 'えいせい', 'えいぶん', 'えいよう',
|
|
1005
|
+
'えいわ', 'えおり', 'えがお', 'えがく', 'えきたい', 'えくせる', 'えしゃく', 'えすて',
|
|
1006
|
+
'えつらん', 'えのぐ', 'えほうまき', 'えほん', 'えまき', 'えもじ', 'えもの', 'えらい',
|
|
1007
|
+
'えらぶ', 'えりあ', 'えんえん', 'えんかい', 'えんぎ', 'えんげき', 'えんしゅう', 'えんぜつ',
|
|
1008
|
+
'えんそく', 'えんちょう', 'えんとつ', 'おいかける', 'おいこす', 'おいしい', 'おいつく', 'おうえん',
|
|
1009
|
+
'おうさま', 'おうじ', 'おうせつ', 'おうたい', 'おうふく', 'おうべい', 'おうよう', 'おえる',
|
|
1010
|
+
'おおい', 'おおう', 'おおどおり', 'おおや', 'おおよそ', 'おかえり', 'おかず', 'おがむ',
|
|
1011
|
+
'おかわり', 'おぎなう', 'おきる', 'おくさま', 'おくじょう', 'おくりがな', 'おくる', 'おくれる',
|
|
1012
|
+
'おこす', 'おこなう', 'おこる', 'おさえる', 'おさない', 'おさめる', 'おしいれ', 'おしえる',
|
|
1013
|
+
'おじぎ', 'おじさん', 'おしゃれ', 'おそらく', 'おそわる', 'おたがい', 'おたく', 'おだやか',
|
|
1014
|
+
'おちつく', 'おっと', 'おつり', 'おでかけ', 'おとしもの', 'おとなしい', 'おどり', 'おどろかす',
|
|
1015
|
+
'おばさん', 'おまいり', 'おめでとう', 'おもいで', 'おもう', 'おもたい', 'おもちゃ', 'おやつ',
|
|
1016
|
+
'おやゆび', 'およぼす', 'おらんだ', 'おろす', 'おんがく', 'おんけい', 'おんしゃ', 'おんせん',
|
|
1017
|
+
'おんだん', 'おんちゅう', 'おんどけい', 'かあつ', 'かいが', 'がいき', 'がいけん', 'がいこう',
|
|
1018
|
+
'かいさつ', 'かいしゃ', 'かいすいよく', 'かいぜん', 'かいぞうど', 'かいつう', 'かいてん', 'かいとう',
|
|
1019
|
+
'かいふく', 'がいへき', 'かいほう', 'かいよう', 'がいらい', 'かいわ', 'かえる', 'かおり',
|
|
1020
|
+
'かかえる', 'かがく', 'かがし', 'かがみ', 'かくご', 'かくとく', 'かざる', 'がぞう',
|
|
1021
|
+
'かたい', 'かたち', 'がちょう', 'がっきゅう', 'がっこう', 'がっさん', 'がっしょう', 'かなざわし',
|
|
1022
|
+
'かのう', 'がはく', 'かぶか', 'かほう', 'かほご', 'かまう', 'かまぼこ', 'かめれおん',
|
|
1023
|
+
'かゆい', 'かようび', 'からい', 'かるい', 'かろう', 'かわく', 'かわら', 'がんか',
|
|
1024
|
+
'かんけい', 'かんこう', 'かんしゃ', 'かんそう', 'かんたん', 'かんち', 'がんばる', 'きあい',
|
|
1025
|
+
'きあつ', 'きいろ', 'ぎいん', 'きうい', 'きうん', 'きえる', 'きおう', 'きおく',
|
|
1026
|
+
'きおち', 'きおん', 'きかい', 'きかく', 'きかんしゃ', 'ききて', 'きくばり', 'きくらげ',
|
|
1027
|
+
'きけんせい', 'きこう', 'きこえる', 'きこく', 'きさい', 'きさく', 'きさま', 'きさらぎ',
|
|
1028
|
+
'ぎじかがく', 'ぎしき', 'ぎじたいけん', 'ぎじにってい', 'ぎじゅつしゃ', 'きすう', 'きせい', 'きせき',
|
|
1029
|
+
'きせつ', 'きそう', 'きぞく', 'きぞん', 'きたえる', 'きちょう', 'きつえん', 'ぎっちり',
|
|
1030
|
+
'きつつき', 'きつね', 'きてい', 'きどう', 'きどく', 'きない', 'きなが', 'きなこ',
|
|
1031
|
+
'きぬごし', 'きねん', 'きのう', 'きのした', 'きはく', 'きびしい', 'きひん', 'きふく',
|
|
1032
|
+
'きぶん', 'きぼう', 'きほん', 'きまる', 'きみつ', 'きむずかしい', 'きめる', 'きもだめし',
|
|
1033
|
+
'きもち', 'きもの', 'きゃく', 'きやく', 'ぎゅうにく', 'きよう', 'きょうりゅう', 'きらい',
|
|
1034
|
+
'きらく', 'きりん', 'きれい', 'きれつ', 'きろく', 'ぎろん', 'きわめる', 'ぎんいろ',
|
|
1035
|
+
'きんかくじ', 'きんじょ', 'きんようび', 'ぐあい', 'くいず', 'くうかん', 'くうき', 'くうぐん',
|
|
1036
|
+
'くうこう', 'ぐうせい', 'くうそう', 'ぐうたら', 'くうふく', 'くうぼ', 'くかん', 'くきょう',
|
|
1037
|
+
'くげん', 'ぐこう', 'くさい', 'くさき', 'くさばな', 'くさる', 'くしゃみ', 'くしょう',
|
|
1038
|
+
'くすのき', 'くすりゆび', 'くせげ', 'くせん', 'ぐたいてき', 'くださる', 'くたびれる', 'くちこみ',
|
|
1039
|
+
'くちさき', 'くつした', 'ぐっすり', 'くつろぐ', 'くとうてん', 'くどく', 'くなん', 'くねくね',
|
|
1040
|
+
'くのう', 'くふう', 'くみあわせ', 'くみたてる', 'くめる', 'くやくしょ', 'くらす', 'くらべる',
|
|
1041
|
+
'くるま', 'くれる', 'くろう', 'くわしい', 'ぐんかん', 'ぐんしょく', 'ぐんたい', 'ぐんて',
|
|
1042
|
+
'けあな', 'けいかく', 'けいけん', 'けいこ', 'けいさつ', 'げいじゅつ', 'けいたい', 'げいのうじん',
|
|
1043
|
+
'けいれき', 'けいろ', 'けおとす', 'けおりもの', 'げきか', 'げきげん', 'げきだん', 'げきちん',
|
|
1044
|
+
'げきとつ', 'げきは', 'げきやく', 'げこう', 'げこくじょう', 'げざい', 'けさき', 'げざん',
|
|
1045
|
+
'けしき', 'けしごむ', 'けしょう', 'げすと', 'けたば', 'けちゃっぷ', 'けちらす', 'けつあつ',
|
|
1046
|
+
'けつい', 'けつえき', 'けっこん', 'けつじょ', 'けっせき', 'けってい', 'けつまつ', 'げつようび',
|
|
1047
|
+
'げつれい', 'けつろん', 'げどく', 'けとばす', 'けとる', 'けなげ', 'けなす', 'けなみ',
|
|
1048
|
+
'けぬき', 'げねつ', 'けねん', 'けはい', 'げひん', 'けぶかい', 'げぼく', 'けまり',
|
|
1049
|
+
'けみかる', 'けむし', 'けむり', 'けもの', 'けらい', 'けろけろ', 'けわしい', 'けんい',
|
|
1050
|
+
'けんえつ', 'けんお', 'けんか', 'げんき', 'けんげん', 'けんこう', 'けんさく', 'けんしゅう',
|
|
1051
|
+
'けんすう', 'げんそう', 'けんちく', 'けんてい', 'けんとう', 'けんない', 'けんにん', 'げんぶつ',
|
|
1052
|
+
'けんま', 'けんみん', 'けんめい', 'けんらん', 'けんり', 'こあくま', 'こいぬ', 'こいびと',
|
|
1053
|
+
'ごうい', 'こうえん', 'こうおん', 'こうかん', 'ごうきゅう', 'ごうけい', 'こうこう', 'こうさい',
|
|
1054
|
+
'こうじ', 'こうすい', 'ごうせい', 'こうそく', 'こうたい', 'こうちゃ', 'こうつう', 'こうてい',
|
|
1055
|
+
'こうどう', 'こうない', 'こうはい', 'ごうほう', 'ごうまん', 'こうもく', 'こうりつ', 'こえる',
|
|
1056
|
+
'こおり', 'ごかい', 'ごがつ', 'ごかん', 'こくご', 'こくさい', 'こくとう', 'こくない',
|
|
1057
|
+
'こくはく', 'こぐま', 'こけい', 'こける', 'ここのか', 'こころ', 'こさめ', 'こしつ',
|
|
1058
|
+
'こすう', 'こせい', 'こせき', 'こぜん', 'こそだて', 'こたい', 'こたえる', 'こたつ',
|
|
1059
|
+
'こちょう', 'こっか', 'こつこつ', 'こつばん', 'こつぶ', 'こてい', 'こてん', 'ことがら',
|
|
1060
|
+
'ことし', 'ことば', 'ことり', 'こなごな', 'こねこね', 'このまま', 'このみ', 'このよ',
|
|
1061
|
+
'ごはん', 'こひつじ', 'こふう', 'こふん', 'こぼれる', 'ごまあぶら', 'こまかい', 'ごますり',
|
|
1062
|
+
'こまつな', 'こまる', 'こむぎこ', 'こもじ', 'こもち', 'こもの', 'こもん', 'こやく',
|
|
1063
|
+
'こやま', 'こゆう', 'こゆび', 'こよい', 'こよう', 'こりる', 'これくしょん', 'ころっけ',
|
|
1064
|
+
'こわもて', 'こわれる', 'こんいん', 'こんかい', 'こんき', 'こんしゅう', 'こんすい', 'こんだて',
|
|
1065
|
+
'こんとん', 'こんなん', 'こんびに', 'こんぽん', 'こんまけ', 'こんや', 'こんれい', 'こんわく',
|
|
1066
|
+
'ざいえき', 'さいかい', 'さいきん', 'ざいげん', 'ざいこ', 'さいしょ', 'さいせい', 'ざいたく',
|
|
1067
|
+
'ざいちゅう', 'さいてき', 'ざいりょう', 'さうな', 'さかいし', 'さがす', 'さかな', 'さかみち',
|
|
1068
|
+
'さがる', 'さぎょう', 'さくし', 'さくひん', 'さくら', 'さこく', 'さこつ', 'さずかる',
|
|
1069
|
+
'ざせき', 'さたん', 'さつえい', 'ざつおん', 'ざっか', 'ざつがく', 'さっきょく', 'ざっし',
|
|
1070
|
+
'さつじん', 'ざっそう', 'さつたば', 'さつまいも', 'さてい', 'さといも', 'さとう', 'さとおや',
|
|
1071
|
+
'さとし', 'さとる', 'さのう', 'さばく', 'さびしい', 'さべつ', 'さほう', 'さほど',
|
|
1072
|
+
'さます', 'さみしい', 'さみだれ', 'さむけ', 'さめる', 'さやえんどう', 'さゆう', 'さよう',
|
|
1073
|
+
'さよく', 'さらだ', 'ざるそば', 'さわやか', 'さわる', 'さんいん', 'さんか', 'さんきゃく',
|
|
1074
|
+
'さんこう', 'さんさい', 'ざんしょ', 'さんすう', 'さんせい', 'さんそ', 'さんち', 'さんま',
|
|
1075
|
+
'さんみ', 'さんらん', 'しあい', 'しあげ', 'しあさって', 'しあわせ', 'しいく', 'しいん',
|
|
1076
|
+
'しうち', 'しえい', 'しおけ', 'しかい', 'しかく', 'じかん', 'しごと', 'しすう',
|
|
1077
|
+
'じだい', 'したうけ', 'したぎ', 'したて', 'したみ', 'しちょう', 'しちりん', 'しっかり',
|
|
1078
|
+
'しつじ', 'しつもん', 'してい', 'してき', 'してつ', 'じてん', 'じどう', 'しなぎれ',
|
|
1079
|
+
'しなもの', 'しなん', 'しねま', 'しねん', 'しのぐ', 'しのぶ', 'しはい', 'しばかり',
|
|
1080
|
+
'しはつ', 'しはらい', 'しはん', 'しひょう', 'しふく', 'じぶん', 'しへい', 'しほう',
|
|
1081
|
+
'しほん', 'しまう', 'しまる', 'しみん', 'しむける', 'じむしょ', 'しめい', 'しめる',
|
|
1082
|
+
'しもん', 'しゃいん', 'しゃうん', 'しゃおん', 'じゃがいも', 'しやくしょ', 'しゃくほう', 'しゃけん',
|
|
1083
|
+
'しゃこ', 'しゃざい', 'しゃしん', 'しゃせん', 'しゃそう', 'しゃたい', 'しゃちょう', 'しゃっきん',
|
|
1084
|
+
'じゃま', 'しゃりん', 'しゃれい', 'じゆう', 'じゅうしょ', 'しゅくはく', 'じゅしん', 'しゅっせき',
|
|
1085
|
+
'しゅみ', 'しゅらば', 'じゅんばん', 'しょうかい', 'しょくたく', 'しょっけん', 'しょどう', 'しょもつ',
|
|
1086
|
+
'しらせる', 'しらべる', 'しんか', 'しんこう', 'じんじゃ', 'しんせいじ', 'しんちく', 'しんりん',
|
|
1087
|
+
'すあげ', 'すあし', 'すあな', 'ずあん', 'すいえい', 'すいか', 'すいとう', 'ずいぶん',
|
|
1088
|
+
'すいようび', 'すうがく', 'すうじつ', 'すうせん', 'すおどり', 'すきま', 'すくう', 'すくない',
|
|
1089
|
+
'すける', 'すごい', 'すこし', 'ずさん', 'すずしい', 'すすむ', 'すすめる', 'すっかり',
|
|
1090
|
+
'ずっしり', 'ずっと', 'すてき', 'すてる', 'すねる', 'すのこ', 'すはだ', 'すばらしい',
|
|
1091
|
+
'ずひょう', 'ずぶぬれ', 'すぶり', 'すふれ', 'すべて', 'すべる', 'ずほう', 'すぼん',
|
|
1092
|
+
'すまい', 'すめし', 'すもう', 'すやき', 'すらすら', 'するめ', 'すれちがう', 'すろっと',
|
|
1093
|
+
'すわる', 'すんぜん', 'すんぽう', 'せあぶら', 'せいかつ', 'せいげん', 'せいじ', 'せいよう',
|
|
1094
|
+
'せおう', 'せかいかん', 'せきにん', 'せきむ', 'せきゆ', 'せきらんうん', 'せけん', 'せこう',
|
|
1095
|
+
'せすじ', 'せたい', 'せたけ', 'せっかく', 'せっきゃく', 'ぜっく', 'せっけん', 'せっこつ',
|
|
1096
|
+
'せっさたくま', 'せつぞく', 'せつだん', 'せつでん', 'せっぱん', 'せつび', 'せつぶん', 'せつめい',
|
|
1097
|
+
'せつりつ', 'せなか', 'せのび', 'せはば', 'せびろ', 'せぼね', 'せまい', 'せまる',
|
|
1098
|
+
'せめる', 'せもたれ', 'せりふ', 'ぜんあく', 'せんい', 'せんえい', 'せんか', 'せんきょ',
|
|
1099
|
+
'せんく', 'せんげん', 'ぜんご', 'せんさい', 'せんしゅ', 'せんすい', 'せんせい', 'せんぞ',
|
|
1100
|
+
'せんたく', 'せんちょう', 'せんてい', 'せんとう', 'せんぬき', 'せんねん', 'せんぱい', 'ぜんぶ',
|
|
1101
|
+
'ぜんぽう', 'せんむ', 'せんめんじょ', 'せんもん', 'せんやく', 'せんゆう', 'せんよう', 'ぜんら',
|
|
1102
|
+
'ぜんりゃく', 'せんれい', 'せんろ', 'そあく', 'そいとげる', 'そいね', 'そうがんきょう', 'そうき',
|
|
1103
|
+
'そうご', 'そうしん', 'そうだん', 'そうなん', 'そうび', 'そうめん', 'そうり', 'そえもの',
|
|
1104
|
+
'そえん', 'そがい', 'そげき', 'そこう', 'そこそこ', 'そざい', 'そしな', 'そせい',
|
|
1105
|
+
'そせん', 'そそぐ', 'そだてる', 'そつう', 'そつえん', 'そっかん', 'そつぎょう', 'そっけつ',
|
|
1106
|
+
'そっこう', 'そっせん', 'そっと', 'そとがわ', 'そとづら', 'そなえる', 'そなた', 'そふぼ',
|
|
1107
|
+
'そぼく', 'そぼろ', 'そまつ', 'そまる', 'そむく', 'そむりえ', 'そめる', 'そもそも',
|
|
1108
|
+
'そよかぜ', 'そらまめ', 'そろう', 'そんかい', 'そんけい', 'そんざい', 'そんしつ', 'そんぞく',
|
|
1109
|
+
'そんちょう', 'ぞんび', 'ぞんぶん', 'そんみん', 'たあい', 'たいいん', 'たいうん', 'たいえき',
|
|
1110
|
+
'たいおう', 'だいがく', 'たいき', 'たいぐう', 'たいけん', 'たいこ', 'たいざい', 'だいじょうぶ',
|
|
1111
|
+
'だいすき', 'たいせつ', 'たいそう', 'だいたい', 'たいちょう', 'たいてい', 'だいどころ', 'たいない',
|
|
1112
|
+
'たいねつ', 'たいのう', 'たいはん', 'だいひょう', 'たいふう', 'たいへん', 'たいほ', 'たいまつばな',
|
|
1113
|
+
'たいみんぐ', 'たいむ', 'たいめん', 'たいやき', 'たいよう', 'たいら', 'たいりょく', 'たいる',
|
|
1114
|
+
'たいわん', 'たうえ', 'たえる', 'たおす', 'たおる', 'たおれる', 'たかい', 'たかね',
|
|
1115
|
+
'たきび', 'たくさん', 'たこく', 'たこやき', 'たさい', 'たしざん', 'だじゃれ', 'たすける',
|
|
1116
|
+
'たずさわる', 'たそがれ', 'たたかう', 'たたく', 'ただしい', 'たたみ', 'たちばな', 'だっかい',
|
|
1117
|
+
'だっきゃく', 'だっこ', 'だっしゅつ', 'だったい', 'たてる', 'たとえる', 'たなばた', 'たにん',
|
|
1118
|
+
'たぬき', 'たのしみ', 'たはつ', 'たぶん', 'たべる', 'たぼう', 'たまご', 'たまる',
|
|
1119
|
+
'だむる', 'ためいき', 'ためす', 'ためる', 'たもつ', 'たやすい', 'たよる', 'たらす',
|
|
1120
|
+
'たりきほんがん', 'たりょう', 'たりる', 'たると', 'たれる', 'たれんと', 'たろっと', 'たわむれる',
|
|
1121
|
+
'だんあつ', 'たんい', 'たんおん', 'たんか', 'たんき', 'たんけん', 'たんご', 'たんさん',
|
|
1122
|
+
'たんじょうび', 'だんせい', 'たんそく', 'たんたい', 'だんち', 'たんてい', 'たんとう', 'だんな',
|
|
1123
|
+
'たんにん', 'だんねつ', 'たんのう', 'たんぴん', 'だんぼう', 'たんまつ', 'たんめい', 'だんれつ',
|
|
1124
|
+
'だんろ', 'だんわ', 'ちあい', 'ちあん', 'ちいき', 'ちいさい', 'ちえん', 'ちかい',
|
|
1125
|
+
'ちから', 'ちきゅう', 'ちきん', 'ちけいず', 'ちけん', 'ちこく', 'ちさい', 'ちしき',
|
|
1126
|
+
'ちしりょう', 'ちせい', 'ちそう', 'ちたい', 'ちたん', 'ちちおや', 'ちつじょ', 'ちてき',
|
|
1127
|
+
'ちてん', 'ちぬき', 'ちぬり', 'ちのう', 'ちひょう', 'ちへいせん', 'ちほう', 'ちまた',
|
|
1128
|
+
'ちみつ', 'ちみどろ', 'ちめいど', 'ちゃんこなべ', 'ちゅうい', 'ちゆりょく', 'ちょうし', 'ちょさくけん',
|
|
1129
|
+
'ちらし', 'ちらみ', 'ちりがみ', 'ちりょう', 'ちるど', 'ちわわ', 'ちんたい', 'ちんもく',
|
|
1130
|
+
'ついか', 'ついたち', 'つうか', 'つうじょう', 'つうはん', 'つうわ', 'つかう', 'つかれる',
|
|
1131
|
+
'つくね', 'つくる', 'つけね', 'つける', 'つごう', 'つたえる', 'つづく', 'つつじ',
|
|
1132
|
+
'つつむ', 'つとめる', 'つながる', 'つなみ', 'つねづね', 'つのる', 'つぶす', 'つまらない',
|
|
1133
|
+
'つまる', 'つみき', 'つめたい', 'つもり', 'つもる', 'つよい', 'つるぼ', 'つるみく',
|
|
1134
|
+
'つわもの', 'つわり', 'てあし', 'てあて', 'てあみ', 'ていおん', 'ていか', 'ていき',
|
|
1135
|
+
'ていけい', 'ていこく', 'ていさつ', 'ていし', 'ていせい', 'ていたい', 'ていど', 'ていねい',
|
|
1136
|
+
'ていひょう', 'ていへん', 'ていぼう', 'てうち', 'ておくれ', 'てきとう', 'てくび', 'でこぼこ',
|
|
1137
|
+
'てさぎょう', 'てさげ', 'てすり', 'てそう', 'てちがい', 'てちょう', 'てつがく', 'てつづき',
|
|
1138
|
+
'でっぱ', 'てつぼう', 'てつや', 'でぬかえ', 'てぬき', 'てぬぐい', 'てのひら', 'てはい',
|
|
1139
|
+
'てぶくろ', 'てふだ', 'てほどき', 'てほん', 'てまえ', 'てまきずし', 'てみじか', 'てみやげ',
|
|
1140
|
+
'てらす', 'てれび', 'てわけ', 'てわたし', 'でんあつ', 'てんいん', 'てんかい', 'てんき',
|
|
1141
|
+
'てんぐ', 'てんけん', 'てんごく', 'てんさい', 'てんし', 'てんすう', 'でんち', 'てんてき',
|
|
1142
|
+
'てんとう', 'てんない', 'てんぷら', 'てんぼうだい', 'てんめつ', 'てんらんかい', 'でんりょく', 'でんわ',
|
|
1143
|
+
'どあい', 'といれ', 'どうかん', 'とうきゅう', 'どうぐ', 'とうし', 'とうむぎ', 'とおい',
|
|
1144
|
+
'とおか', 'とおく', 'とおす', 'とおる', 'とかい', 'とかす', 'ときおり', 'ときどき',
|
|
1145
|
+
'とくい', 'とくしゅう', 'とくてん', 'とくに', 'とくべつ', 'とけい', 'とける', 'とこや',
|
|
1146
|
+
'とさか', 'としょかん', 'とそう', 'とたん', 'とちゅう', 'とっきゅう', 'とっくん', 'とつぜん',
|
|
1147
|
+
'とつにゅう', 'とどける', 'ととのえる', 'とない', 'となえる', 'となり', 'とのさま', 'とばす',
|
|
1148
|
+
'どぶがわ', 'とほう', 'とまる', 'とめる', 'ともだち', 'ともる', 'どようび', 'とらえる',
|
|
1149
|
+
'とんかつ', 'どんぶり', 'ないかく', 'ないこう', 'ないしょ', 'ないす', 'ないせん', 'ないそう',
|
|
1150
|
+
'なおす', 'ながい', 'なくす', 'なげる', 'なこうど', 'なさけ', 'なたでここ', 'なっとう',
|
|
1151
|
+
'なつやすみ', 'ななおし', 'なにごと', 'なにもの', 'なにわ', 'なのか', 'なふだ', 'なまいき',
|
|
1152
|
+
'なまえ', 'なまみ', 'なみだ', 'なめらか', 'なめる', 'なやむ', 'ならう', 'ならび',
|
|
1153
|
+
'ならぶ', 'なれる', 'なわとび', 'なわばり', 'にあう', 'にいがた', 'にうけ', 'におい',
|
|
1154
|
+
'にかい', 'にがて', 'にきび', 'にくしみ', 'にくまん', 'にげる', 'にさんかたんそ', 'にしき',
|
|
1155
|
+
'にせもの', 'にちじょう', 'にちようび', 'にっか', 'にっき', 'にっけい', 'にっこう', 'にっさん',
|
|
1156
|
+
'にっしょく', 'にっすう', 'にっせき', 'にってい', 'になう', 'にほん', 'にまめ', 'にもつ',
|
|
1157
|
+
'にやり', 'にゅういん', 'にりんしゃ', 'にわとり', 'にんい', 'にんか', 'にんき', 'にんげん',
|
|
1158
|
+
'にんしき', 'にんずう', 'にんそう', 'にんたい', 'にんち', 'にんてい', 'にんにく', 'にんぷ',
|
|
1159
|
+
'にんまり', 'にんむ', 'にんめい', 'にんよう', 'ぬいくぎ', 'ぬかす', 'ぬぐいとる', 'ぬぐう',
|
|
1160
|
+
'ぬくもり', 'ぬすむ', 'ぬまえび', 'ぬめり', 'ぬらす', 'ぬんちゃく', 'ねあげ', 'ねいき',
|
|
1161
|
+
'ねいる', 'ねいろ', 'ねぐせ', 'ねくたい', 'ねくら', 'ねこぜ', 'ねこむ', 'ねさげ',
|
|
1162
|
+
'ねすごす', 'ねそべる', 'ねだん', 'ねつい', 'ねっしん', 'ねつぞう', 'ねったいぎょ', 'ねぶそく',
|
|
1163
|
+
'ねふだ', 'ねぼう', 'ねほりはほり', 'ねまき', 'ねまわし', 'ねみみ', 'ねむい', 'ねむたい',
|
|
1164
|
+
'ねもと', 'ねらう', 'ねわざ', 'ねんいり', 'ねんおし', 'ねんかん', 'ねんきん', 'ねんぐ',
|
|
1165
|
+
'ねんざ', 'ねんし', 'ねんちゃく', 'ねんど', 'ねんぴ', 'ねんぶつ', 'ねんまつ', 'ねんりょう',
|
|
1166
|
+
'ねんれい', 'のいず', 'のおづま', 'のがす', 'のきなみ', 'のこぎり', 'のこす', 'のこる',
|
|
1167
|
+
'のせる', 'のぞく', 'のぞむ', 'のたまう', 'のちほど', 'のっく', 'のばす', 'のはら',
|
|
1168
|
+
'のべる', 'のぼる', 'のみもの', 'のやま', 'のらいぬ', 'のらねこ', 'のりもの', 'のりゆき',
|
|
1169
|
+
'のれん', 'のんき', 'ばあい', 'はあく', 'ばあさん', 'ばいか', 'ばいく', 'はいけん',
|
|
1170
|
+
'はいご', 'はいしん', 'はいすい', 'はいせん', 'はいそう', 'はいち', 'ばいばい', 'はいれつ',
|
|
1171
|
+
'はえる', 'はおる', 'はかい', 'ばかり', 'はかる', 'はくしゅ', 'はけん', 'はこぶ',
|
|
1172
|
+
'はさみ', 'はさん', 'はしご', 'ばしょ', 'はしる', 'はせる', 'ぱそこん', 'はそん',
|
|
1173
|
+
'はたん', 'はちみつ', 'はつおん', 'はっかく', 'はづき', 'はっきり', 'はっくつ', 'はっけん',
|
|
1174
|
+
'はっこう', 'はっさん', 'はっしん', 'はったつ', 'はっちゅう', 'はってん', 'はっぴょう', 'はっぽう',
|
|
1175
|
+
'はなす', 'はなび', 'はにかむ', 'はぶらし', 'はみがき', 'はむかう', 'はめつ', 'はやい',
|
|
1176
|
+
'はやし', 'はらう', 'はろうぃん', 'はわい', 'はんい', 'はんえい', 'はんおん', 'はんかく',
|
|
1177
|
+
'はんきょう', 'ばんぐみ', 'はんこ', 'はんしゃ', 'はんすう', 'はんだん', 'ぱんち', 'ぱんつ',
|
|
1178
|
+
'はんてい', 'はんとし', 'はんのう', 'はんぱ', 'はんぶん', 'はんぺん', 'はんぼうき', 'はんめい',
|
|
1179
|
+
'はんらん', 'はんろん', 'ひいき', 'ひうん', 'ひえる', 'ひかく', 'ひかり', 'ひかる',
|
|
1180
|
+
'ひかん', 'ひくい', 'ひけつ', 'ひこうき', 'ひこく', 'ひさい', 'ひさしぶり', 'ひさん',
|
|
1181
|
+
'びじゅつかん', 'ひしょ'
|
|
1182
|
+
]
|
|
1183
|
+
}
|
|
1184
|
+
};
|
|
1185
|
+
|
|
1186
|
+
(function () {
|
|
1187
|
+
'use strict'
|
|
1188
|
+
for (var i in words) {
|
|
1189
|
+
if (words.hasOwnProperty(i)) {
|
|
1190
|
+
if (words[i].prefixLength === 0) {
|
|
1191
|
+
continue
|
|
1192
|
+
}
|
|
1193
|
+
words[i].trunc_words = []
|
|
1194
|
+
for (var j = 0; j < words[i].words.length; ++j) {
|
|
1195
|
+
words[i].trunc_words.push(words[i].words[j].slice(0, words[i].prefixLength))
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
})()
|
|
1200
|
+
|
|
1201
|
+
module.exports.encode = encode
|
|
1202
|
+
module.exports.decode = decode
|
|
1203
|
+
module.exports.random = random
|
|
1204
|
+
module.exports.words = words
|