diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..7e065d06adb8fdb66e3833b48606acb45704ca51 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,36 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +data/raw/merged_text/corpus.txt filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..e435f7e738dd6c0ba472a3f132dc27a48aa84dd0 --- /dev/null +++ b/README.md @@ -0,0 +1,144 @@ +--- +language: +- en +license: mit +tags: +- llm +- decoder-only +- transformer +- from-scratch +- research +- educational +- 80m +- pytorch +- pretraining +- custom-architecture +pipeline_tag: text-generation +inference: + parameters: + temperature: 0.7 + top_p: 0.95 +--- + +# 🧠 Mini-LLM — 80M Parameter Transformer (Pretrained From Scratch) + +[![MIT License](https://img.shields.io/badge/license-MIT-green.svg)]() +[![Model Size](https://img.shields.io/badge/params-80M-blue.svg)]() + +**Mini-LLM** is an 80M parameter decoder-only transformer trained **fully from scratch** using a custom tokenizer, custom architecture, and custom training loop. +It is designed as an educational + research-friendly minimal LLM that demonstrates how modern LLM components are built end-to-end. + +--- + +## ✨ Key Features + +- **80M parameters** — compact but fully functional LLM +- **Trained from scratch** (no borrowed checkpoints) +- Custom **Byte-Level BPE tokenizer (32k vocab)** +- Modern architecture components: + - RoPE (Rotary Position Embeddings) + - RMSNorm + - SwiGLU FeedForward layer + - FlashAttention (via PyTorch SDPA) + - GQA-ready Attention implementation +- **2B tokens** mixed corpus (FineWeb + WikiText + Wikipedia) +- Training logs, checkpoints, plots all included for transparency +- Released under a permissive license for research & learning + +--- + +## 📐 Model Architecture + +| Component | Value | +|----------|-------| +| Type | Decoder-only transformer | +| Parameters | ~80M | +| Layers | 16 | +| Embedding dim | 384 | +| Attention heads | 6 | +| KV Heads | 6 | +| MLP Hidden Dim | 1536 (SwiGLU) | +| Max sequence length | 2048 | +| Norm | RMSNorm | +| Positional Encoding | RoPE | +| Tokenizer | SentencePiece BPE (32k vocab, byte fallback) | + +--- + +## 📦 Files in This Repo + +- `checkpoints/` → Pretrained model state_dict + optimizer +- `safetensors/` → Final consolidated .safetensors file +- `logs/` → Training logs in JSONL +- `plots/` → Train/val loss curves +- `tokenizer.json` → HF-compatible tokenizer +- `spm.model` → SentencePiece model + +--- + +## 🧪 Quick Usage (HF Transformers) + +```python +from transformers import AutoTokenizer, AutoModelForCausalLM + +model = AutoModelForCausalLM.from_pretrained("Ashx098/Mini-LLM", trust_remote_code=True) +tok = AutoTokenizer.from_pretrained("Ashx098/Mini-LLM") + +prompt = "Hello, how are you?" +inputs = tok(prompt, return_tensors="pt") + +outputs = model.generate(**inputs, max_new_tokens=50) +print(tok.decode(outputs[0], skip_special_tokens=True)) +``` + +## 🚀 Training Details + +### Optimizer +- **AdamW** (β1=0.9, β2=0.95, weight decay=0.1) +- **Learning rate**: 6e-4 (cosine annealing + warmup) + +### Batch ⨉ Sequence +- **Global batch size** = 32 +- **Sequence length** = 2048 +- **Gradient accumulation** = 8 + +### Hardware +- Trained on 1× NVIDIA A100 80GB + +## 📊 Training Curve +

+ +Final loss reached: ~3.25 + +## 💬 Example Outputs + +**Prompt**: "Hello, how are you" +**Output**: "Hello, how are you?" + +**Prompt**: "Python is a programming language that" +**Output**: "Python is a programming language that allows the history..." + +## ⚠️ Limitations +- Small model → limited reasoning, hallucination likely +- Not instruction-tuned +- Not suitable for production usage +- Best viewed as a learning + research artifact + +## 📜 License +MIT License — free for research, modification, and further training. + +## 🙌 Credits +Developed by **Avinash Mynampati** +Built from scratch using PyTorch + custom training pipeline. + +### Want to fine-tune or extend it? +You can: +- Train further with your own dataset +- Add LoRA adapters +- Use it to learn attention, RoPE, SwiGLU, etc. +- Build a tiny instruction-tuned version (coming soon!) + +## 📬 Contact +For questions or collaborations: +- **GitHub**: [Ashx098](https://github.com/Ashx098) +- **LinkedIn**: [Avinash Mynampati](https://linkedin.com/in/avinash-mynampati) diff --git a/Tokenizer/BPE/special_tokens_map.json b/Tokenizer/BPE/special_tokens_map.json new file mode 100644 index 0000000000000000000000000000000000000000..6fd125725f415c33614a9676cc5bf31c72eae119 --- /dev/null +++ b/Tokenizer/BPE/special_tokens_map.json @@ -0,0 +1,53 @@ +{ + "additional_special_tokens": [ + { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + } + ], + "bos_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "eos_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "pad_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "unk_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + } +} diff --git a/Tokenizer/BPE/spm.model b/Tokenizer/BPE/spm.model new file mode 100644 index 0000000000000000000000000000000000000000..3d1fe96a0304ac72f65b9efa8b739c2a0b5136fd --- /dev/null +++ b/Tokenizer/BPE/spm.model @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:debb3ad91c0745bb304129ee9a0332a33c2bb1fffe7313d573608e5014ab69bb +size 747364 diff --git a/Tokenizer/BPE/spm.vocab b/Tokenizer/BPE/spm.vocab new file mode 100644 index 0000000000000000000000000000000000000000..e1b406de95cba2df39e07141bca54d3e7f5c98cf --- /dev/null +++ b/Tokenizer/BPE/spm.vocab @@ -0,0 +1,32000 @@ + 0 + 0 + 0 + 0 + 0 + 0 + 0 +<0x00> 0 +<0x01> 0 +<0x02> 0 +<0x03> 0 +<0x04> 0 +<0x05> 0 +<0x06> 0 +<0x07> 0 +<0x08> 0 +<0x09> 0 +<0x0A> 0 +<0x0B> 0 +<0x0C> 0 +<0x0D> 0 +<0x0E> 0 +<0x0F> 0 +<0x10> 0 +<0x11> 0 +<0x12> 0 +<0x13> 0 +<0x14> 0 +<0x15> 0 +<0x16> 0 +<0x17> 0 +<0x18> 0 +<0x19> 0 +<0x1A> 0 +<0x1B> 0 +<0x1C> 0 +<0x1D> 0 +<0x1E> 0 +<0x1F> 0 +<0x20> 0 +<0x21> 0 +<0x22> 0 +<0x23> 0 +<0x24> 0 +<0x25> 0 +<0x26> 0 +<0x27> 0 +<0x28> 0 +<0x29> 0 +<0x2A> 0 +<0x2B> 0 +<0x2C> 0 +<0x2D> 0 +<0x2E> 0 +<0x2F> 0 +<0x30> 0 +<0x31> 0 +<0x32> 0 +<0x33> 0 +<0x34> 0 +<0x35> 0 +<0x36> 0 +<0x37> 0 +<0x38> 0 +<0x39> 0 +<0x3A> 0 +<0x3B> 0 +<0x3C> 0 +<0x3D> 0 +<0x3E> 0 +<0x3F> 0 +<0x40> 0 +<0x41> 0 +<0x42> 0 +<0x43> 0 +<0x44> 0 +<0x45> 0 +<0x46> 0 +<0x47> 0 +<0x48> 0 +<0x49> 0 +<0x4A> 0 +<0x4B> 0 +<0x4C> 0 +<0x4D> 0 +<0x4E> 0 +<0x4F> 0 +<0x50> 0 +<0x51> 0 +<0x52> 0 +<0x53> 0 +<0x54> 0 +<0x55> 0 +<0x56> 0 +<0x57> 0 +<0x58> 0 +<0x59> 0 +<0x5A> 0 +<0x5B> 0 +<0x5C> 0 +<0x5D> 0 +<0x5E> 0 +<0x5F> 0 +<0x60> 0 +<0x61> 0 +<0x62> 0 +<0x63> 0 +<0x64> 0 +<0x65> 0 +<0x66> 0 +<0x67> 0 +<0x68> 0 +<0x69> 0 +<0x6A> 0 +<0x6B> 0 +<0x6C> 0 +<0x6D> 0 +<0x6E> 0 +<0x6F> 0 +<0x70> 0 +<0x71> 0 +<0x72> 0 +<0x73> 0 +<0x74> 0 +<0x75> 0 +<0x76> 0 +<0x77> 0 +<0x78> 0 +<0x79> 0 +<0x7A> 0 +<0x7B> 0 +<0x7C> 0 +<0x7D> 0 +<0x7E> 0 +<0x7F> 0 +<0x80> 0 +<0x81> 0 +<0x82> 0 +<0x83> 0 +<0x84> 0 +<0x85> 0 +<0x86> 0 +<0x87> 0 +<0x88> 0 +<0x89> 0 +<0x8A> 0 +<0x8B> 0 +<0x8C> 0 +<0x8D> 0 +<0x8E> 0 +<0x8F> 0 +<0x90> 0 +<0x91> 0 +<0x92> 0 +<0x93> 0 +<0x94> 0 +<0x95> 0 +<0x96> 0 +<0x97> 0 +<0x98> 0 +<0x99> 0 +<0x9A> 0 +<0x9B> 0 +<0x9C> 0 +<0x9D> 0 +<0x9E> 0 +<0x9F> 0 +<0xA0> 0 +<0xA1> 0 +<0xA2> 0 +<0xA3> 0 +<0xA4> 0 +<0xA5> 0 +<0xA6> 0 +<0xA7> 0 +<0xA8> 0 +<0xA9> 0 +<0xAA> 0 +<0xAB> 0 +<0xAC> 0 +<0xAD> 0 +<0xAE> 0 +<0xAF> 0 +<0xB0> 0 +<0xB1> 0 +<0xB2> 0 +<0xB3> 0 +<0xB4> 0 +<0xB5> 0 +<0xB6> 0 +<0xB7> 0 +<0xB8> 0 +<0xB9> 0 +<0xBA> 0 +<0xBB> 0 +<0xBC> 0 +<0xBD> 0 +<0xBE> 0 +<0xBF> 0 +<0xC0> 0 +<0xC1> 0 +<0xC2> 0 +<0xC3> 0 +<0xC4> 0 +<0xC5> 0 +<0xC6> 0 +<0xC7> 0 +<0xC8> 0 +<0xC9> 0 +<0xCA> 0 +<0xCB> 0 +<0xCC> 0 +<0xCD> 0 +<0xCE> 0 +<0xCF> 0 +<0xD0> 0 +<0xD1> 0 +<0xD2> 0 +<0xD3> 0 +<0xD4> 0 +<0xD5> 0 +<0xD6> 0 +<0xD7> 0 +<0xD8> 0 +<0xD9> 0 +<0xDA> 0 +<0xDB> 0 +<0xDC> 0 +<0xDD> 0 +<0xDE> 0 +<0xDF> 0 +<0xE0> 0 +<0xE1> 0 +<0xE2> 0 +<0xE3> 0 +<0xE4> 0 +<0xE5> 0 +<0xE6> 0 +<0xE7> 0 +<0xE8> 0 +<0xE9> 0 +<0xEA> 0 +<0xEB> 0 +<0xEC> 0 +<0xED> 0 +<0xEE> 0 +<0xEF> 0 +<0xF0> 0 +<0xF1> 0 +<0xF2> 0 +<0xF3> 0 +<0xF4> 0 +<0xF5> 0 +<0xF6> 0 +<0xF7> 0 +<0xF8> 0 +<0xF9> 0 +<0xFA> 0 +<0xFB> 0 +<0xFC> 0 +<0xFD> 0 +<0xFE> 0 +<0xFF> 0 +▁t -0 +he -1 +▁a -2 +in -3 +▁the -4 +er -5 +on -6 +re -7 +▁s -8 +▁o -9 +▁w -10 +at -11 +ed -12 +en -13 +an -14 +▁, -15 +▁c -16 +or -17 +it -18 +is -19 +es -20 +▁f -21 +▁an -22 +▁b -23 +ar -24 +▁of -25 +al -26 +▁p -27 +▁in -28 +ing -29 +▁. -30 +▁and -31 +as -32 +ou -33 +▁to -34 +▁m -35 +ic -36 +▁d -37 +ion -38 +le -39 +▁h -40 +ro -41 +▁T -42 +▁re -43 +il -44 +ent -45 +▁th -46 +▁A -47 +▁l -48 +▁S -49 +st -50 +▁n -51 +el -52 +om -53 +▁e -54 +ct -55 +▁1 -56 +▁C -57 +am -58 +ad -59 +et -60 +ol -61 +▁" -62 +▁g -63 +▁M -64 +ly -65 +im -66 +id -67 +▁on -68 +▁I -69 +ur -70 +▁The -71 +iv -72 +ot -73 +▁be -74 +▁for -75 +▁was -76 +▁B -77 +ce -78 +ig -79 +ir -80 +ut -81 +us -82 +ch -83 +▁@ -84 +ow -85 +ation -86 +un -87 +▁as -88 +▁st -89 +ay -90 +▁is -91 +ith -92 +▁that -93 +ers -94 +▁H -95 +▁P -96 +her -97 +ra -98 +▁2 -99 +▁with -100 +▁' -101 +ter -102 +▁R -103 +ver -104 +ul -105 +▁D -106 +▁wh -107 +-@ -108 +▁@-@ -109 +▁( -110 +em -111 +▁al -112 +▁con -113 +▁W -114 +▁L -115 +▁F -116 +os -117 +th -118 +▁by -119 +▁it -120 +▁de -121 +▁G -122 +and -123 +▁at -124 +▁he -125 +▁N -126 +▁pro -127 +▁E -128 +av -129 +est -130 +um -131 +oun -132 +od -133 +▁se -134 +ac -135 +ist -136 +▁v -137 +ag -138 +▁y -139 +▁19 -140 +00 -141 +if -142 +rom -143 +ain -144 +▁J -145 +ri -146 +op -147 +▁com -148 +ill -149 +▁r -150 +▁from -151 +ore -152 +▁or -153 +▁In -154 +ld -155 +▁) -156 +res -157 +▁O -158 +▁su -159 +ab -160 +ies -161 +pp -162 +ew -163 +ate -164 +▁are -165 +igh -166 +ant -167 +▁ex -168 +▁k -169 +ak -170 +ess -171 +our -172 +ort -173 +qu -174 +art -175 +se -176 +ity -177 +▁his -178 +ud -179 +▁ch -180 +oc -181 +ive -182 +ich -183 +ard -184 +ere -185 +▁K -186 +all -187 +ect -188 +▁un -189 +ment -190 +ber -191 +▁sh -192 +gh -193 +▁were -194 +▁pl -195 +ated -196 +ong -197 +pt -198 +end -199 +▁le -200 +ear -201 +▁U -202 +▁not -203 +ial -204 +ge -205 +ure -206 +ast -207 +ip -208 +ave -209 +▁sp -210 +▁: -211 +▁which -212 +ov -213 +ough -214 +ans -215 +ell -216 +ight -217 +ame -218 +ost -219 +out -220 +ical -221 +og -222 +ust -223 +ine -224 +ap -225 +ound -226 +▁St -227 +▁had -228 +ia -229 +▁us -230 +ec -231 +ould -232 +▁ar -233 +ire -234 +ther -235 +ord -236 +ary -237 +ions -238 +cl -239 +ous -240 +ff -241 +▁have -242 +ack -243 +▁int -244 +▁ab -245 +cc -246 +rit -247 +▁comp -248 +▁3 -249 +▁whe -250 +ik -251 +iz -252 +▁V -253 +der -254 +▁their -255 +▁cont -256 +ide -257 +▁Ch -258 +ome -259 +are -260 +▁but -261 +so -262 +up -263 +ian -264 +ru -265 +▁20 -266 +▁200 -267 +ry -268 +ork -269 +ie -270 +▁this -271 +▁ad -272 +act -273 +du -274 +per -275 +ish -276 +▁cl -277 +▁Th -278 +ok -279 +orm -280 +▁en -281 +ater -282 +▁te -283 +ign -284 +age -285 +ass -286 +▁res -287 +ib -288 +▁can -289 +▁also -290 +irst -291 +ult -292 +ence -293 +ub -294 +▁its -295 +▁im -296 +fter -297 +▁j -298 +ue -299 +▁all -300 +▁per -301 +wo -302 +ally -303 +▁we -304 +pl -305 +▁has -306 +▁dis -307 +▁one -308 +mer -309 +ime -310 +▁they -311 +fer -312 +▁first -313 +ance -314 +▁who -315 +ations -316 +ction -317 +▁sc -318 +ely -319 +ond -320 +▁her -321 +own -322 +ice -323 +▁part -324 +ition -325 +ile -326 +▁An -327 +▁It -328 +▁He -329 +▁man -330 +▁app -331 +ach -332 +hed -333 +▁other -334 +ree -335 +▁pre -336 +▁201 -337 +▁rec -338 +▁bec -339 +▁out -340 +ens -341 +▁been -342 +▁ne -343 +▁– -344 +▁4 -345 +ren -346 +▁ag -347 +man -348 +▁go -349 +ep -350 +▁Al -351 +ress -352 +vel -353 +ang -354 +oll -355 +ite -356 +▁more -357 +ric -358 +ory -359 +▁5 -360 +able -361 +▁year -362 +ey -363 +ount -364 +▁ro -365 +erv -366 +ind -367 +▁two -368 +clud -369 +▁; -370 +▁sa -371 +▁Y -372 +▁des -373 +uring -374 +▁up -375 +▁over -376 +ace -377 +ents -378 +▁18 -379 +te -380 +ade -381 +▁ev -382 +▁- -383 +ark -384 +ild -385 +ase -386 +▁Un -387 +▁you -388 +▁tr -389 +ors -390 +▁gr -391 +▁into -392 +▁time -393 +ates -394 +ced -395 +▁would -396 +▁includ -397 +▁comm -398 +ose -399 +ces -400 +ck -401 +int -402 +we -403 +▁work -404 +wn -405 +▁att -406 +ake -407 +reat -408 +▁me -409 +port -410 +▁after -411 +aus -412 +ph -413 +ons -414 +land -415 +one -416 +form -417 +rough -418 +les -419 +ings -420 +amp -421 +▁inter -422 +.@ -423 +▁@.@ -424 +▁when -425 +ood -426 +▁so -427 +▁about -428 +▁play -429 +▁them -430 +▁On -431 +urn -432 +▁fe -433 +▁off -434 +ased -435 +▁bet -436 +ied -437 +ail -438 +▁do -439 +▁new -440 +▁6 -441 +▁co -442 +▁than -443 +▁tra -444 +,@ -445 +▁@,@ -446 +ious -447 +oy -448 +▁rel -449 +old -450 +ited -451 +▁ra -452 +▁qu -453 +▁nan -454 +ward -455 +▁she -456 +▁kn -457 +▁most -458 +▁cons -459 +▁pe -460 +iss -461 +▁him -462 +ick -463 +ob -464 +als -465 +▁fl -466 +rib -467 +ict -468 +▁This -469 +▁sy -470 +gan -471 +ays -472 +ft -473 +▁only -474 +▁under -475 +very -476 +ook -477 +▁act -478 +▁As -479 +▁will -480 +▁rem -481 +▁gen -482 +oth -483 +▁produ -484 +ational -485 +▁7 -486 +ubl -487 +ath -488 +▁sec -489 +▁199 -490 +▁Mar -491 +▁some -492 +lect -493 +ween -494 +▁there -495 +▁Ar -496 +▁acc -497 +att -498 +rop -499 +▁pr -500 +ve -501 +red -502 +▁inc -503 +▁through -504 +ember -505 +fore -506 +▁ear -507 +aw -508 +tern -509 +▁ind -510 +ever -511 +▁En -512 +▁stud -513 +▁between -514 +ating -515 +orld -516 +ike -517 +▁during -518 +ning -519 +▁po -520 +ular -521 +▁ass -522 +▁such -523 +ilm -524 +ts -525 +▁bl -526 +ollow -527 +▁8 -528 +▁Re -529 +▁reg -530 +ific -531 +ks -532 +▁pos -533 +▁am -534 +▁cent -535 +ix -536 +▁De -537 +▁9 -538 +ran -539 +▁again -540 +ron -541 +inal -542 +yon -543 +olog -544 +ual -545 +▁num -546 +▁sub -547 +orth -548 +hip -549 +hen -550 +ause -551 +meric -552 +▁where -553 +▁New -554 +ason -555 +▁ret -556 +▁used -557 +▁spec -558 +iew -559 +▁form -560 +▁Se -561 +▁bu -562 +velop -563 +hes -564 +▁Americ -565 +ower -566 +ject -567 +▁ac -568 +▁end -569 +ug -570 +ople -571 +ics -572 +▁ep -573 +▁char -574 +▁dif -575 +ted -576 +▁col -577 +▁your -578 +io -579 +▁Le -580 +▁three -581 +▁sur -582 +▁film -583 +▁mon -584 +000 -585 +ins -586 +▁may -587 +▁Wh -588 +▁while -589 +gr -590 +ily -591 +▁years -592 +ities -593 +▁supp -594 +ock -595 +▁rele -596 +orn -597 +▁exp -598 +▁imp -599 +▁Com -600 +ise -601 +ros -602 +▁no -603 +▁inv -604 +outh -605 +▁def -606 +▁made -607 +ident -608 +▁high -609 +ten -610 +ral -611 +ton -612 +ool -613 +az -614 +▁how -615 +▁add -616 +▁follow -617 +way -618 +▁prov -619 +▁lar -620 +oup -621 +erm -622 +ier -623 +▁later -624 +▁these -625 +▁game -626 +▁develop -627 +▁mov -628 +iet -629 +▁pres -630 +▁well -631 +oh -632 +▁many -633 +▁em -634 +iel -635 +▁then -636 +▁before -637 +▁writ -638 +▁any -639 +▁dec -640 +▁“ -641 +▁people -642 +▁call -643 +ife -644 +ful -645 +ures -646 +ll -647 +ivers -648 +ision -649 +ished -650 +other -651 +▁ent -652 +▁publ -653 +▁eff -654 +stem -655 +▁being -656 +▁use -657 +▁10 -658 +ived -659 +▁Sp -660 +▁rep -661 +ines -662 +ative -663 +▁serv -664 +▁second -665 +▁met -666 +▁loc -667 +its -668 +aj -669 +▁ser -670 +▁found -671 +ert -672 +▁song -673 +▁dep -674 +▁ob -675 +ames -676 +▁mus -677 +▁ph -678 +ale -679 +yen -680 +row -681 +▁set -682 +▁car -683 +son -684 +ered -685 +▁At -686 +▁could -687 +▁four -688 +ather -689 +▁pol -690 +ury -691 +elf -692 +▁lead -693 +▁long -694 +ement -695 +yp -696 +▁record -697 +▁inf -698 +▁sm -699 +▁show -700 +au -701 +▁number -702 +vern -703 +ature -704 +ince -705 +ved -706 +▁Sh -707 +air -708 +ode -709 +▁inst -710 +ane -711 +▁back -712 +▁cre -713 +ys -714 +▁both -715 +ually -716 +▁trans -717 +▁sever -718 +ogra -719 +eral -720 +ism -721 +ract -722 +ting -723 +ments -724 +▁Sc -725 +▁Con -726 +▁said -727 +led -728 +ained -729 +▁min -730 +chool -731 +ible -732 +▁How -733 +▁ext -734 +cept -735 +asyon -736 +▁main -737 +▁198 -738 +▁including -739 +▁hel -740 +▁team -741 +▁like -742 +ined -743 +ution -744 +ient -745 +▁against -746 +▁system -747 +▁if -748 +▁season -749 +uch -750 +▁est -751 +▁sign -752 +ble -753 +ern -754 +ann -755 +▁17 -756 +erson -757 +aking -758 +.. -759 +ists -760 +▁war -761 +ink -762 +▁/ -763 +any -764 +▁pop -765 +ility -766 +▁what -767 +▁did -768 +▁rev -769 +▁resp -770 +ange -771 +▁bel -772 +iver -773 +ah -774 +cy -775 +▁000 -776 +▁op -777 +▁child -778 +▁charact -779 +▁disc -780 +ired -781 +xt -782 +▁— -783 +bum -784 +▁Cl -785 +▁mod -786 +irect -787 +▁differ -788 +▁Ind -789 +ris -790 +▁dist -791 +ross -792 +ober -793 +ared -794 +▁count -795 +vent -796 +ty -797 +▁12 -798 +▁15 -799 +▁United -800 +▁sim -801 +ized -802 +▁art -803 +▁0 -804 +▁own -805 +▁comple -806 +▁perform -807 +▁Z -808 +ank -809 +imes -810 +▁Eng -811 +▁contin -812 +▁Brit -813 +ants -814 +▁sing -815 +▁because -816 +▁For -817 +ield -818 +▁became -819 +und -820 +▁help -821 +ash -822 +▁After -823 +apt -824 +ird -825 +▁196 -826 +▁mat -827 +▁air -828 +ouse -829 +▁fam -830 +▁ed -831 +uc -832 +▁mill -833 +▁Joh -834 +▁known -835 +▁design -836 +▁day -837 +ars -838 +▁album -839 +ially -840 +▁American -841 +get -842 +▁197 -843 +▁desc -844 +▁sl -845 +ven -846 +▁med -847 +▁result -848 +alth -849 +▁epis -850 +▁= -851 +ised -852 +▁group -853 +ues -854 +▁She -855 +▁down -856 +▁dr -857 +ek -858 +▁194 -859 +▁orig -860 +▁several -861 +ically -862 +▁bro -863 +ives -864 +▁same -865 +gg -866 +though -867 +ruct -868 +▁need -869 +▁called -870 +▁br -871 +▁var -872 +▁John -873 +▁rece -874 +▁ins -875 +▁series -876 +▁16 -877 +ural -878 +▁world -879 +▁support -880 +ley -881 +▁each -882 +ger -883 +ided -884 +ull -885 +til -886 +▁fin -887 +▁just -888 +▁They -889 +ax -890 +ness -891 +ccess -892 +ene -893 +ium -894 +▁det -895 +). -896 +▁partic -897 +▁water -898 +emb -899 +▁early -900 +▁point -901 +▁pass -902 +ience -903 +▁Is -904 +▁Bl -905 +▁11 -906 +els -907 +▁aut -908 +osed -909 +ove -910 +▁govern -911 +iam -912 +▁hist -913 +▁We -914 +▁incre -915 +▁near -916 +▁land -917 +▁Ad -918 +▁direct -919 +▁str -920 +▁make -921 +▁occ -922 +▁around -923 +▁start -924 +une -925 +▁run -926 +omet -927 +anc -928 +ued -929 +▁Pro -930 +▁small -931 +ets -932 +oot -933 +▁gu -934 +▁until -935 +▁Aust -936 +▁mil -937 +▁ship -938 +my -939 +uss -940 +cess -941 +▁return -942 +▁though -943 +▁class -944 +▁const -945 +▁even -946 +▁US -947 +ajor -948 +▁Be -949 +▁Te -950 +▁open -951 +▁effect -952 +▁consid -953 +▁began -954 +▁ant -955 +arch -956 +enn -957 +▁War -958 +ke -959 +▁Ed -960 +oss -961 +▁much -962 +▁very -963 +▁our -964 +▁along -965 +pr -966 +▁life -967 +iving -968 +▁However -969 +▁report -970 +▁crit -971 +app -972 +ody -973 +ages -974 +▁oper -975 +▁Gr -976 +ner -977 +▁contro -978 +tle -979 +ended -980 +aving -981 +▁requ -982 +▁exper -983 +▁Q -984 +▁those -985 +ilt -986 +▁All -987 +ute -988 +▁million -989 +▁school -990 +▁episode -991 +▁build -992 +erman -993 +esp -994 +▁Col -995 +▁li -996 +▁should -997 +rist -998 +▁May -999 +ina -1000 +▁success -1001 +▁av -1002 +ately -1003 +ont -1004 +▁adv -1005 +▁men -1006 +▁$ -1007 +▁person -1008 +▁state -1009 +▁different -1010 +▁way -1011 +▁Car -1012 +▁States -1013 +▁offic -1014 +▁music -1015 +▁13 -1016 +▁power -1017 +▁ak -1018 +▁ele -1019 +▁right -1020 +ret -1021 +▁expl -1022 +ains -1023 +ne -1024 +▁public -1025 +▁There -1026 +▁conc -1027 +ize -1028 +▁conf -1029 +ected -1030 +▁area -1031 +▁import -1032 +ional -1033 +▁describ -1034 +ean -1035 +▁hum -1036 +▁Ph -1037 +▁yo -1038 +▁following -1039 +ology -1040 +▁British -1041 +▁lit -1042 +▁ref -1043 +▁allow -1044 +gy -1045 +ians -1046 +▁[ -1047 +▁character -1048 +▁And -1049 +▁la -1050 +▁When -1051 +▁typ -1052 +▁bo -1053 +▁prom -1054 +▁head -1055 +chn -1056 +▁prot -1057 +▁released -1058 +ording -1059 +▁14 -1060 +ital -1061 +▁195 -1062 +gin -1063 +ively -1064 +iversity -1065 +omin -1066 +▁By -1067 +▁Pl -1068 +▁attack -1069 +▁rest -1070 +▁now -1071 +iven -1072 +▁place -1073 +▁major -1074 +▁elect -1075 +inc -1076 +▁Br -1077 +▁pat -1078 +▁order -1079 +▁large -1080 +▁appear -1081 +amed -1082 +arm -1083 +▁poss -1084 +eb -1085 +▁refer -1086 +ission -1087 +▁book -1088 +▁World -1089 +▁appro -1090 +lish -1091 +wa -1092 +▁Aug -1093 +▁every -1094 +▁cur -1095 +▁Can -1096 +▁yon -1097 +ified -1098 +▁sk -1099 +eng -1100 +onom -1101 +▁hand -1102 +aced -1103 +urch -1104 +▁organ -1105 +wards -1106 +▁German -1107 +▁Ju -1108 +▁Sept -1109 +▁last -1110 +▁Comm -1111 +hern -1112 +▁since -1113 +gram -1114 +▁fact -1115 +▁August -1116 +▁bre -1117 +▁century -1118 +▁ann -1119 +▁soc -1120 +▁took -1121 +▁level -1122 +▁another -1123 +▁193 -1124 +▁my -1125 +▁191 -1126 +▁September -1127 +raft -1128 +over -1129 +▁commun -1130 +▁care -1131 +▁six -1132 +▁vis -1133 +iti -1134 +ats -1135 +▁get -1136 +ases -1137 +ored -1138 +ences -1139 +▁turn -1140 +med -1141 +▁Austral -1142 +▁win -1143 +ves -1144 +itions -1145 +▁dem -1146 +▁batt -1147 +▁km -1148 +▁often -1149 +▁York -1150 +▁Ay -1151 +▁gener -1152 +▁cour -1153 +▁five -1154 +▁government -1155 +▁mar -1156 +iod -1157 +▁city -1158 +▁leg -1159 +▁old -1160 +ulation -1161 +▁great -1162 +ried -1163 +ently -1164 +▁eng -1165 +▁Oct -1166 +ices -1167 +reen -1168 +▁North -1169 +▁still -1170 +▁Nov -1171 +orp -1172 +omen -1173 +ged -1174 +ides -1175 +▁prev -1176 +▁north -1177 +▁month -1178 +▁take -1179 +▁term -1180 +▁home -1181 +▁based -1182 +ata -1183 +), -1184 +▁due -1185 +▁best -1186 +▁know -1187 +read -1188 +▁iss -1189 +▁cap -1190 +▁received -1191 +▁mark -1192 +▁good -1193 +oint -1194 +▁belie -1195 +ior -1196 +▁within -1197 +▁find -1198 +akes -1199 +▁single -1200 +isyen -1201 +oci -1202 +▁Eu -1203 +▁vers -1204 +▁Ge -1205 +aim -1206 +▁par -1207 +▁left -1208 +▁children -1209 +ling -1210 +▁name -1211 +▁opp -1212 +▁family -1213 +▁Pr -1214 +▁30 -1215 +▁short -1216 +▁caus -1217 +▁October -1218 +▁spe -1219 +ection -1220 +▁read -1221 +▁less -1222 +▁Jan -1223 +▁real -1224 +▁et -1225 +ales -1226 +▁top -1227 +▁line -1228 +ining -1229 +▁equ -1230 +▁Will -1231 +▁stand -1232 +▁Me -1233 +▁King -1234 +▁process -1235 +ilar -1236 +▁gl -1237 +▁Christ -1238 +▁few -1239 +▁using -1240 +urther -1241 +▁death -1242 +▁June -1243 +arn -1244 +me -1245 +▁fun -1246 +hest -1247 +▁present -1248 +iety -1249 +▁health -1250 +▁arr -1251 +ote -1252 +iron -1253 +▁Or -1254 +▁Gu -1255 +ense -1256 +▁South -1257 +▁rese -1258 +ms -1259 +▁won -1260 +▁infl -1261 +empt -1262 +alf -1263 +▁species -1264 +hor -1265 +▁... -1266 +▁techn -1267 +▁final -1268 +▁event -1269 +▁sol -1270 +▁beh -1271 +▁addition -1272 +oad -1273 +▁July -1274 +▁Har -1275 +yl -1276 +▁inform -1277 +▁25 -1278 +▁see -1279 +▁period -1280 +▁ke -1281 +▁Apr -1282 +que -1283 +ured -1284 +ott -1285 +uary -1286 +oman -1287 +▁program -1288 +▁If -1289 +hing -1290 +▁March -1291 +▁important -1292 +▁del -1293 +▁common -1294 +▁Mc -1295 +▁kò -1296 +▁Fl -1297 +ards -1298 +▁April -1299 +by -1300 +▁aff -1301 +▁Europ -1302 +▁port -1303 +▁view -1304 +▁November -1305 +ony -1306 +atic -1307 +idge -1308 +▁story -1309 +▁dam -1310 +▁Pol -1311 +ries -1312 +▁These -1313 +▁without -1314 +▁During -1315 +▁non -1316 +▁& -1317 +▁band -1318 +▁does -1319 +▁Em -1320 +bs -1321 +20 -1322 +▁Tr -1323 +ample -1324 +aken -1325 +ox -1326 +mber -1327 +rent -1328 +▁National -1329 +▁val -1330 +▁plan -1331 +apan -1332 +alk -1333 +▁kill -1334 +avy -1335 +▁third -1336 +▁included -1337 +▁next -1338 +▁el -1339 +lev -1340 +▁south -1341 +▁] -1342 +▁camp -1343 +▁law -1344 +▁II -1345 +▁Am -1346 +let -1347 +▁che -1348 +▁test -1349 +▁memb -1350 +▁Japan -1351 +▁chang -1352 +▁look -1353 +sp -1354 +vers -1355 +ery -1356 +▁tem -1357 +▁prof -1358 +rote -1359 +▁among -1360 +▁% -1361 +ister -1362 +ator -1363 +▁want -1364 +▁ec -1365 +hel -1366 +▁polit -1367 +▁become -1368 +▁Man -1369 +ival -1370 +▁University -1371 +▁days -1372 +rodu -1373 +▁previous -1374 +ipp -1375 +▁La -1376 +com -1377 +▁Fran -1378 +cember -1379 +riend -1380 +▁cle -1381 +▁review -1382 +▁post -1383 +ple -1384 +ring -1385 +▁div -1386 +▁led -1387 +▁local -1388 +▁repl -1389 +par -1390 +▁rad -1391 +▁December -1392 +aren -1393 +▁fre -1394 +ances -1395 +▁list -1396 +▁His -1397 +ones -1398 +line -1399 +▁proble -1400 +▁January -1401 +ograf -1402 +urs -1403 +ched -1404 +▁One -1405 +ourn -1406 +▁cond -1407 +▁tit -1408 +▁estab -1409 +self -1410 +sh -1411 +ency -1412 +▁wrote -1413 +▁light -1414 +▁fore -1415 +▁prop -1416 +▁ide -1417 +▁You -1418 +aining -1419 +▁track -1420 +▁somet -1421 +aster -1422 +ague -1423 +▁invol -1424 +▁grow -1425 +▁however -1426 +▁role -1427 +▁body -1428 +augh -1429 +▁vide -1430 +ead -1431 +▁control -1432 +to -1433 +▁played -1434 +▁described -1435 +▁attempt -1436 +▁Bro -1437 +rench -1438 +▁Gen -1439 +▁similar -1440 +▁eas -1441 +ots -1442 +▁project -1443 +▁Par -1444 +▁include -1445 +ached -1446 +▁sit -1447 +▁members -1448 +oon -1449 +▁dest -1450 +▁side -1451 +▁Ex -1452 +▁But -1453 +▁Mus -1454 +▁activ -1455 +▁manag -1456 +ention -1457 +▁2010 -1458 +▁bas -1459 +iness -1460 +ograph -1461 +itive -1462 +▁hig -1463 +▁mid -1464 +▁study -1465 +cent -1466 +▁El -1467 +▁100 -1468 +▁redu -1469 +▁lang -1470 +ration -1471 +▁low -1472 +▁development -1473 +▁came -1474 +▁interest -1475 +ality -1476 +▁command -1477 +▁built -1478 +▁Cent -1479 +▁named -1480 +▁Ist -1481 +▁kòm -1482 +ole -1483 +ches -1484 +▁wind -1485 +▁particular -1486 +▁With -1487 +▁deb -1488 +ories -1489 +ball -1490 +▁original -1491 +▁X -1492 +▁To -1493 +▁stat -1494 +▁vil -1495 +rew -1496 +▁trad -1497 +▁anim -1498 +eter -1499 +resent -1500 +ggest -1501 +▁suggest -1502 +▁capt -1503 +▁tw -1504 +ruction -1505 +side -1506 +day -1507 +irc -1508 +▁further -1509 +oung -1510 +tal -1511 +▁gun -1512 +ivid -1513 +uted -1514 +▁late -1515 +▁food -1516 +▁cover -1517 +▁country -1518 +ours -1519 +▁having -1520 +▁Kib -1521 +▁21 -1522 +ization -1523 +▁bus -1524 +▁French -1525 +▁2011 -1526 +▁given -1527 +▁Geor -1528 +yn -1529 +▁history -1530 +▁No -1531 +ords -1532 +osp -1533 +▁Feb -1534 +▁held -1535 +▁students -1536 +itary -1537 +▁although -1538 +▁human -1539 +▁Istwa -1540 +▁sent -1541 +▁2009 -1542 +▁lim -1543 +▁treat -1544 +ini -1545 +ably -1546 +na -1547 +ination -1548 +▁production -1549 +▁English -1550 +ges -1551 +▁cr -1552 +▁mag -1553 +▁considered -1554 +▁2008 -1555 +ruary -1556 +▁comb -1557 +cer -1558 +ript -1559 +▁say -1560 +rain -1561 +▁let -1562 +ografi -1563 +▁press -1564 +▁influ -1565 +▁sold -1566 +▁February -1567 +▁times -1568 +▁week -1569 +ploy -1570 +▁strong -1571 +▁games -1572 +ument -1573 +ids -1574 +▁impro -1575 +▁cor -1576 +▁claim -1577 +▁24 -1578 +▁Ab -1579 +▁West -1580 +stand -1581 +▁ident -1582 +▁William -1583 +▁tri -1584 +ese -1585 +estern -1586 +▁While -1587 +▁Af -1588 +▁house -1589 +ering -1590 +▁example -1591 +▁former -1592 +▁never -1593 +▁pract -1594 +ertain -1595 +▁Acc -1596 +▁making -1597 +fic -1598 +▁190 -1599 +eth -1600 +▁half -1601 +ung -1602 +ler -1603 +▁Cal -1604 +▁mater -1605 +viron -1606 +ape -1607 +ops -1608 +▁Jew -1609 +work -1610 +here -1611 +▁signific -1612 +isc -1613 +▁town -1614 +▁Char -1615 +▁video -1616 +▁too -1617 +atter -1618 +iment -1619 +▁cult -1620 +▁2012 -1621 +▁must -1622 +ither -1623 +▁sw -1624 +▁Although -1625 +esc -1626 +▁192 -1627 +▁pain -1628 +▁women -1629 +br -1630 +ham -1631 +ille -1632 +▁2007 -1633 +ison -1634 +elt -1635 +▁author -1636 +▁individ -1637 +▁Dav -1638 +oms -1639 +oute -1640 +ential -1641 +▁information -1642 +▁sound -1643 +ront -1644 +▁ris -1645 +▁Fr -1646 +uck -1647 +cing -1648 +▁surv -1649 +▁position -1650 +▁Ne -1651 +▁storm -1652 +ergy -1653 +ways -1654 +▁areas -1655 +▁sym -1656 +▁Min -1657 +▁Bar -1658 +idence -1659 +▁release -1660 +▁able -1661 +▁cost -1662 +▁continued -1663 +▁match -1664 +raw -1665 +▁obs -1666 +▁Ear -1667 +▁intern -1668 +ression -1669 +sequ -1670 +▁England -1671 +ells -1672 +▁Mich -1673 +ai -1674 +bo -1675 +▁feat -1676 +▁Ang -1677 +mit -1678 +rie -1679 +▁Her -1680 +▁field -1681 +reet -1682 +▁Li -1683 +▁road -1684 +▁Canad -1685 +▁published -1686 +atch -1687 +ae -1688 +ending -1689 +▁fail -1690 +▁research -1691 +▁nat -1692 +▁friend -1693 +min -1694 +hers -1695 +▁Ass -1696 +▁written -1697 +yle -1698 +▁material -1699 +abor -1700 +▁Go -1701 +less -1702 +ope -1703 +ify -1704 +▁vol -1705 +▁company -1706 +▁total -1707 +▁building -1708 +▁put -1709 +▁Park -1710 +▁suff -1711 +▁Count -1712 +▁Co -1713 +▁across -1714 +ropical -1715 +▁lik -1716 +19 -1717 +ogn -1718 +▁represent -1719 +uel -1720 +▁fire -1721 +olution -1722 +▁gra -1723 +▁Sy -1724 +▁City -1725 +ivil -1726 +▁quest -1727 +aul -1728 +▁jo -1729 +▁educ -1730 +▁ground -1731 +af -1732 +▁struct -1733 +▁fac -1734 +▁significant -1735 +▁22 -1736 +▁23 -1737 +▁little -1738 +▁away -1739 +▁appe -1740 +lic -1741 +▁larg -1742 +ological -1743 +▁change -1744 +▁Rep -1745 +▁age -1746 +ee -1747 +vironment -1748 +▁various -1749 +roy -1750 +▁According -1751 +▁origin -1752 +▁River -1753 +▁decl -1754 +ondon -1755 +▁data -1756 +duct -1757 +ford -1758 +ye -1759 +used -1760 +▁dev -1761 +utes -1762 +▁foot -1763 +▁Rober -1764 +▁reported -1765 +▁developed -1766 +most -1767 +▁colle -1768 +▁moved -1769 +▁econom -1770 +aff -1771 +▁relations -1772 +▁feature -1773 +▁proper -1774 +▁50 -1775 +▁phys -1776 +▁sour -1777 +▁others -1778 +▁produced -1779 +▁2013 -1780 +▁sum -1781 +▁conn -1782 +▁begin -1783 +▁z -1784 +▁London -1785 +ream -1786 +▁avail -1787 +▁2006 -1788 +▁version -1789 +▁ren -1790 +▁popular -1791 +▁prim -1792 +ama -1793 +ensive -1794 +▁er -1795 +ps -1796 +▁west -1797 +▁Air -1798 +èk -1799 +craft -1800 +▁compet -1801 +▁Sm -1802 +▁national -1803 +▁introdu -1804 +▁red -1805 +▁full -1806 +▁east -1807 +ief -1808 +reg -1809 +omb -1810 +iting -1811 +▁Ag -1812 +▁ter -1813 +▁social -1814 +ington -1815 +▁went -1816 +hod -1817 +▁Mon -1818 +▁product -1819 +alt -1820 +ills -1821 +▁di -1822 +▁special -1823 +▁Some -1824 +oph -1825 +▁meas -1826 +▁service -1827 +▁Afric -1828 +ney -1829 +▁pot -1830 +▁vict -1831 +▁case -1832 +▁cast -1833 +▁months -1834 +▁might -1835 +▁lost -1836 +▁Med -1837 +▁seen -1838 +▁gave -1839 +▁init -1840 +▁histor -1841 +▁think -1842 +stit -1843 +▁Res -1844 +▁invest -1845 +▁America -1846 +▁Ayiti -1847 +▁enc -1848 +▁created -1849 +▁circ -1850 +▁don -1851 +▁Sec -1852 +▁dise -1853 +▁telev -1854 +▁High -1855 +▁young -1856 +▁exist -1857 +▁Comp -1858 +▁offer -1859 +▁associ -1860 +▁current -1861 +▁What -1862 +rest -1863 +▁ve -1864 +ublic -1865 +icle -1866 +▁God -1867 +ien -1868 +▁possible -1869 +ators -1870 +▁2004 -1871 +ficult -1872 +▁better -1873 +▁State -1874 +▁ste -1875 +▁cy -1876 +▁toget -1877 +▁general -1878 +▁together -1879 +ability -1880 +▁announ -1881 +▁Gl -1882 +▁keep -1883 +▁military -1884 +▁political -1885 +▁population -1886 +▁forces -1887 +▁player -1888 +▁Dr -1889 +▁foc -1890 +▁difficult -1891 +▁indust -1892 +▁mult -1893 +ana -1894 +▁cross -1895 +asing -1896 +▁40 -1897 +▁black -1898 +▁percent -1899 +elling -1900 +pect -1901 +aged -1902 +▁occur -1903 +▁ask -1904 +rick -1905 +▁fight -1906 +▁Sw -1907 +ask -1908 +rict -1909 +▁free -1910 +▁27 -1911 +▁Pres -1912 +▁taken -1913 +ressed -1914 +ald -1915 +▁range -1916 +▁force -1917 +aps -1918 +▁Div -1919 +▁super -1920 +imate -1921 +ened -1922 +▁club -1923 +▁returned -1924 +aper -1925 +▁eight -1926 +▁himself -1927 +aly -1928 +▁28 -1929 +▁nort -1930 +.” -1931 +▁performance -1932 +▁ten -1933 +▁father -1934 +gen -1935 +▁meet -1936 +▁available -1937 +▁night -1938 +sc -1939 +▁Kiba -1940 +▁wid -1941 +▁langu -1942 +▁aver -1943 +▁becom -1944 +▁mean -1945 +omm -1946 +outhern -1947 +aign -1948 +lands -1949 +orts -1950 +▁tre -1951 +▁mot -1952 +▁thought -1953 +▁squ -1954 +▁defe -1955 +▁2014 -1956 +▁observ -1957 +ampions -1958 +▁Batt -1959 +▁throughout -1960 +▁creat -1961 +imately -1962 +view -1963 +▁26 -1964 +aut -1965 +▁coll -1966 +▁tour -1967 +▁once -1968 +oid -1969 +ows -1970 +▁learn -1971 +▁feel -1972 +▁Australia -1973 +▁profess -1974 +▁successful -1975 +▁writing -1976 +▁bar -1977 +▁conv -1978 +▁stated -1979 +▁recorded -1980 +▁hard -1981 +▁2005 -1982 +▁fem -1983 +▁fav -1984 +▁Qu -1985 +▁Phil -1986 +▁Sim -1987 +▁least -1988 +sel -1989 +▁pred -1990 +▁fall -1991 +▁Russ -1992 +rey -1993 +▁died -1994 +▁Per -1995 +▁arg -1996 +▁business -1997 +ades -1998 +urb -1999 +epend -2000 +▁working -2001 +▁cut -2002 +▁Act -2003 +ving -2004 +▁General -2005 +▁entire -2006 +▁James -2007 +▁rather -2008 +▁far -2009 +▁white -2010 +oice -2011 +▁rock -2012 +▁Et -2013 +▁Im -2014 +istic -2015 +▁pri -2016 +▁loss -2017 +▁official -2018 +▁Pe -2019 +▁Rec -2020 +ude -2021 +aves -2022 +▁modern -2023 +of -2024 +▁cop -2025 +▁son -2026 +lex -2027 +▁Ste -2028 +den -2029 +dom -2030 +▁object -2031 +ush -2032 +▁destroy -2033 +onst -2034 +▁star -2035 +▁energy -2036 +face -2037 +▁Jack -2038 +▁battle -2039 +▁arch -2040 +ament -2041 +▁site -2042 +▁caused -2043 +dle -2044 +ze -2045 +▁come -2046 +▁career -2047 +▁ships -2048 +▁Ser -2049 +▁bi -2050 +▁works -2051 +oyal -2052 +▁earl -2053 +▁189 -2054 +lished -2055 +▁prevent -2056 +▁ill -2057 +go -2058 +▁ay -2059 +ique -2060 +ett -2061 +▁hold -2062 +▁Intern -2063 +▁live -2064 +▁sou -2065 +▁provide -2066 +▁Reg -2067 +lected -2068 +umb -2069 +▁environment -2070 +tt -2071 +aching -2072 +uture -2073 +▁Rel -2074 +▁Bo -2075 +ecess -2076 +oring -2077 +ael -2078 +▁hy -2079 +tè -2080 +▁aircraft -2081 +iol -2082 +▁cal -2083 +▁Part -2084 +▁upon -2085 +▁ki -2086 +nd -2087 +ming -2088 +▁access -2089 +▁action -2090 +chie -2091 +▁epi -2092 +cil -2093 +▁either -2094 +▁ayisyen -2095 +▁Mor -2096 +▁understand -2097 +urg -2098 +ems -2099 +▁2000 -2100 +▁relationship -2101 +▁tradition -2102 +▁neg -2103 +▁critic -2104 +▁remained -2105 +▁past -2106 +▁respons -2107 +▁happ -2108 +urric -2109 +▁blood -2110 +▁established -2111 +▁recogn -2112 +▁esp -2113 +upp -2114 +▁followed -2115 +▁bene -2116 +ising -2117 +ex -2118 +aur -2119 +▁Army -2120 +▁clear -2121 +▁mass -2122 +rought -2123 +▁Mad -2124 +▁plant -2125 +▁aud -2126 +▁started -2127 +▁Sch -2128 +ster -2129 +cial -2130 +ateg -2131 +ara -2132 +▁cause -2133 +▁feet -2134 +▁points -2135 +▁title -2136 +▁almost -2137 +▁front -2138 +ification -2139 +▁campaign -2140 +acy -2141 +▁particip -2142 +▁2015 -2143 +▁chart -2144 +▁Hen -2145 +▁Japanese -2146 +▁employ -2147 +▁noted -2148 +▁County -2149 +▁mor -2150 +hem -2151 +▁characters -2152 +play -2153 +▁fund -2154 +▁agre -2155 +., -2156 +be -2157 +▁broad -2158 +10 -2159 +rag -2160 +▁indic -2161 +▁songs -2162 +medi -2163 +iers -2164 +▁coun -2165 +bert -2166 +ements -2167 +irl -2168 +▁East -2169 +▁method -2170 +▁certain -2171 +▁tro -2172 +▁Thom -2173 +▁added -2174 +ware -2175 +▁reached -2176 +▁separ -2177 +▁quick -2178 +▁lower -2179 +▁29 -2180 +atory -2181 +cle -2182 +▁felt -2183 +▁instead -2184 +▁David -2185 +▁ever -2186 +ino -2187 +▁arm -2188 +▁lack -2189 +▁above -2190 +▁pur -2191 +▁contrib -2192 +iation -2193 +▁School -2194 +▁Indian -2195 +▁performed -2196 +▁features -2197 +▁miles -2198 +iding -2199 +▁That -2200 +uk -2201 +▁Hol -2202 +▁coast -2203 +▁mix -2204 +▁close -2205 +▁inj -2206 +▁pers -2207 +ceed -2208 +iff -2209 +▁type -2210 +eks -2211 +▁region -2212 +ffic -2213 +▁George -2214 +▁My -2215 +▁amount -2216 +▁enough -2217 +men -2218 +▁pa -2219 +▁engine -2220 +cast -2221 +▁Rich -2222 +▁provided -2223 +▁give -2224 +▁usually -2225 +etwork -2226 +▁fr -2227 +▁seven -2228 +ius -2229 +▁accept -2230 +▁determ -2231 +▁ap -2232 +por -2233 +ilities -2234 +50 -2235 +erc -2236 +▁served -2237 +ought -2238 +ecially -2239 +▁pra -2240 +reek -2241 +▁damage -2242 +▁Europe -2243 +▁killed -2244 +orpor -2245 +▁style -2246 +▁going -2247 +▁community -2248 +▁station -2249 +▁key -2250 +▁located -2251 +▁means -2252 +▁opt -2253 +▁natural -2254 +▁member -2255 +▁future -2256 +▁subject -2257 +▁account -2258 +▁nov -2259 +▁| -2260 +▁clos -2261 +lin -2262 +▁space -2263 +▁respect -2264 +ump -2265 +▁scient -2266 +amm -2267 +ray -2268 +▁ft -2269 +▁Division -2270 +head -2271 +▁Do -2272 +▁behind -2273 +artment -2274 +▁stri -2275 +▁announced -2276 +▁average -2277 +▁tru -2278 +now -2279 +ume -2280 +aces -2281 +ampionship -2282 +▁rul -2283 +field -2284 +▁conduct -2285 +oe -2286 +▁exam -2287 +▁Tra -2288 +▁hon -2289 +▁consist -2290 +▁risk -2291 +uation -2292 +azini -2293 +▁Black -2294 +xic -2295 +▁Street -2296 +▁formed -2297 +▁Other -2298 +ctor -2299 +erous -2300 +▁Dep -2301 +▁increased -2302 +▁saf -2303 +▁discuss -2304 +iction -2305 +tain -2306 +▁born -2307 +emy -2308 +▁Ak -2309 +▁sex -2310 +▁saw -2311 +▁achie -2312 +▁hom -2313 +▁So -2314 +▁fig -2315 +▁hours -2316 +▁relig -2317 +▁Road -2318 +▁television -2319 +▁hit -2320 +▁Stud -2321 +▁ess -2322 +▁eventually -2323 +sy -2324 +▁according -2325 +ica -2326 +▁base -2327 +▁problems -2328 +▁changes -2329 +▁mother -2330 +▁try -2331 +ready -2332 +▁especially -2333 +amb -2334 +▁League -2335 +▁leading -2336 +▁San -2337 +▁host -2338 +▁stage -2339 +▁players -2340 +▁ball -2341 +▁dou -2342 +▁miss -2343 +▁designed -2344 +▁disease -2345 +hib -2346 +▁mount -2347 +for -2348 +pped -2349 +gress -2350 +ength -2351 +▁Etazini -2352 +▁ce -2353 +▁Wash -2354 +▁break -2355 +▁events -2356 +ights -2357 +▁decided -2358 +▁Paul -2359 +▁likely -2360 +▁reve -2361 +▁generally -2362 +▁prob -2363 +ibility -2364 +▁abs -2365 +▁House -2366 +▁appeared -2367 +▁weeks -2368 +de -2369 +ule -2370 +▁priv -2371 +ounds -2372 +▁Vil -2373 +▁assist -2374 +▁course -2375 +▁create -2376 +▁towards -2377 +èt -2378 +▁language -2379 +▁increase -2380 +rown -2381 +▁Australian -2382 +▁groups -2383 +aval -2384 +▁involved -2385 +▁states -2386 +urricane -2387 +▁temper -2388 +▁training -2389 +▁tropical -2390 +|| -2391 +▁regular -2392 +▁vir -2393 +▁France -2394 +▁esc -2395 +▁2003 -2396 +▁effects -2397 +asc -2398 +▁race -2399 +ters -2400 +▁imm -2401 +▁From -2402 +▁regard -2403 +▁construction -2404 +▁brought -2405 +ites -2406 +▁always -2407 +▁things -2408 +ortun -2409 +▁188 -2410 +val -2411 +▁already -2412 +▁experience -2413 +▁higher -2414 +▁impact -2415 +ores -2416 +selves -2417 +▁consider -2418 +▁Bill -2419 +▁something -2420 +▁’ -2421 +ires -2422 +oted -2423 +▁lane -2424 +etic -2425 +ands -2426 +▁required -2427 +▁mm -2428 +osition -2429 +▁threat -2430 +▁evidence -2431 +▁remov -2432 +arc -2433 +anks -2434 +▁pay -2435 +overed -2436 +oor -2437 +▁worked -2438 +▁here -2439 +▁vill -2440 +▁mem -2441 +▁186 -2442 +▁phot -2443 +▁heavy -2444 +▁paren -2445 +▁Red -2446 +▁Robert -2447 +▁countries -2448 +▁award -2449 +ned -2450 +▁completed -2451 +▁Vir -2452 +▁Rob -2453 +ma -2454 +clus -2455 +▁particularly -2456 +▁fle -2457 +▁taking -2458 +▁itself -2459 +▁parts -2460 +▁self -2461 +▁surface -2462 +the -2463 +▁Washington -2464 +▁European -2465 +▁insp -2466 +▁travel -2467 +igned -2468 +èn -2469 +▁polic -2470 +▁bill -2471 +▁grad -2472 +▁soon -2473 +▁President -2474 +aring -2475 +▁pou -2476 +▁frequ -2477 +▁laun -2478 +▁route -2479 +▁levels -2480 +▁king -2481 +thing -2482 +▁Port -2483 +▁Val -2484 +itch -2485 +▁allowed -2486 +▁31 -2487 +▁stop -2488 +agn -2489 +lying -2490 +▁big -2491 +▁market -2492 +▁! -2493 +▁playing -2494 +▁party -2495 +▁First -2496 +▁move -2497 +off -2498 +▁Mart -2499 +▁Bel -2500 +▁heart -2501 +▁Royal -2502 +itar -2503 +ishing -2504 +orse -2505 +reng -2506 +incip -2507 +itor -2508 +▁estim -2509 +▁Dan -2510 +▁placed -2511 +▁conditions -2512 +wood -2513 +▁says -2514 +▁Soc -2515 +ellow -2516 +▁Jos -2517 +▁goal -2518 +▁exc -2519 +▁brother -2520 +▁2001 -2521 +▁mer -2522 +▁ens -2523 +▁Don -2524 +,” -2525 +▁commit -2526 +▁comment -2527 +rison -2528 +NA -2529 +▁wall -2530 +▁Lou -2531 +▁idea -2532 +▁Sup -2533 +uter -2534 +▁‘ -2535 +▁Michael -2536 +▁pressure -2537 +yr -2538 +rem -2539 +▁tou -2540 +ental -2541 +▁Dev -2542 +▁whether -2543 +unk -2544 +onse -2545 +iles -2546 +▁fif -2547 +ership -2548 +▁stru -2549 +▁love -2550 +▁reb -2551 +▁eta -2552 +▁doc -2553 +▁length -2554 +▁Cour -2555 +▁size -2556 +▁treatment -2557 +▁positive -2558 +arily -2559 +▁Most -2560 +▁opened -2561 +▁individual -2562 +▁disp -2563 +▁subsequ -2564 +▁Ke -2565 +▁Great -2566 +▁crew -2567 +▁outside -2568 +ients -2569 +▁education -2570 +▁dom -2571 +▁wanted -2572 +▁India -2573 +▁minutes -2574 +▁done -2575 +▁exec -2576 +▁problem -2577 +▁norm -2578 +▁chall -2579 +▁largest -2580 +▁Squ -2581 +▁appoint -2582 +▁Henry -2583 +ournal -2584 +▁Cont -2585 +▁anal -2586 +▁concern -2587 +▁money -2588 +▁rank -2589 +▁Colle -2590 +▁central -2591 +▁contract -2592 +▁viol -2593 +aled -2594 +▁commer -2595 +▁really -2596 +▁focus -2597 +▁Desp -2598 +omp -2599 +rated -2600 +ference -2601 +▁speed -2602 +▁2002 -2603 +▁liter -2604 +▁office -2605 +▁independ -2606 +antic -2607 +▁cann -2608 +▁originally -2609 +board -2610 +▁187 -2611 +▁Many -2612 +▁immedi -2613 +▁lab -2614 +▁believed -2615 +▁Mary -2616 +▁sil -2617 +▁necess -2618 +▁detail -2619 +ends -2620 +▁Pal -2621 +▁Hist -2622 +▁model -2623 +▁streng -2624 +iforn -2625 +▁peak -2626 +rug -2627 +▁rights -2628 +fact -2629 +▁Mal -2630 +▁Roman -2631 +▁Church -2632 +▁Ac -2633 +ift -2634 +▁poor -2635 +▁emer -2636 +▁makes -2637 +▁shows -2638 +ios -2639 +▁Art -2640 +▁voc -2641 +▁earlier -2642 +▁lay -2643 +uals -2644 +lement -2645 +ky -2646 +▁Ber -2647 +▁inn -2648 +▁personal -2649 +vert -2650 +▁Christian -2651 +▁concept -2652 +▁react -2653 +▁sequ -2654 +yal -2655 +▁court -2656 +bor -2657 +minist -2658 +▁guns -2659 +▁living -2660 +▁Que -2661 +▁related -2662 +▁moun -2663 +▁sat -2664 +▁themselves -2665 +▁? -2666 +▁Californ -2667 +▁Wil -2668 +▁tar -2669 +▁words -2670 +▁Canada -2671 +▁issue -2672 +uff -2673 +ago -2674 +ville -2675 +▁function -2676 +oud -2677 +▁Pat -2678 +irth -2679 +asion -2680 +co -2681 +rap -2682 +onn -2683 +van -2684 +ikasyon -2685 +▁wife -2686 +ams -2687 +▁Two -2688 +ula -2689 +▁protect -2690 +oura -2691 +▁specific -2692 +▁Despite -2693 +▁International -2694 +▁Refer -2695 +▁army -2696 +▁reason -2697 +sw -2698 +The -2699 +▁dig -2700 +▁international -2701 +▁sometimes -2702 +▁fourth -2703 +▁troops -2704 +▁pw -2705 +▁systems -2706 +osing -2707 +▁scene -2708 +ples -2709 +▁rap -2710 +▁multip -2711 +▁island -2712 +▁lyen -2713 +▁kind -2714 +asons -2715 +odes -2716 +▁California -2717 +▁Thomas -2718 +utions -2719 +▁Kèk -2720 +ander -2721 +▁complex -2722 +▁Charles -2723 +▁emb -2724 +▁Follow -2725 +òn -2726 +▁desp -2727 +▁referans -2728 +▁church -2729 +▁500 -2730 +▁highest -2731 +▁president -2732 +▁elements -2733 +▁round -2734 +▁saying -2735 +▁question -2736 +▁structure -2737 +▁told -2738 +▁today -2739 +▁rail -2740 +het -2741 +azine -2742 +▁behav -2743 +▁Mac -2744 +▁complete -2745 +▁Nor -2746 +▁network -2747 +eck -2748 +▁increasing -2749 +▁Ayisyen -2750 +▁Associ -2751 +▁beginning -2752 +▁Angel -2753 +oke -2754 +ibr -2755 +aries -2756 +icles -2757 +ening -2758 +▁deal -2759 +ledge -2760 +inn -2761 +ida -2762 +▁response -2763 +ederal -2764 +▁associated -2765 +▁passed -2766 +▁1996 -2767 +▁results -2768 +▁nature -2769 +▁longer -2770 +ols -2771 +▁farm -2772 +▁southern -2773 +▁lo -2774 +▁whose -2775 +▁quickly -2776 +▁hous -2777 +▁below -2778 +▁mi -2779 +▁Bra -2780 +▁cases -2781 +oper -2782 +▁Mid -2783 +▁sea -2784 +▁whole -2785 +▁civil -2786 +▁additional -2787 +▁Best -2788 +▁section -2789 +▁Star -2790 +▁Sl -2791 +▁jew -2792 +ij -2793 +▁Earth -2794 +▁deep -2795 +▁scen -2796 +▁joined -2797 +▁runs -2798 +▁word -2799 +ault -2800 +▁Cong -2801 +ctions -2802 +urity -2803 +▁issues -2804 +fall -2805 +imin -2806 +vi -2807 +west -2808 +▁needed -2809 +▁Republic -2810 +▁White -2811 +▁Alex -2812 +aker -2813 +▁wood -2814 +inem -2815 +▁benef -2816 +BC -2817 +▁park -2818 +anned -2819 +▁ly -2820 +▁turned -2821 +▁lines -2822 +▁replaced -2823 +▁services -2824 +amer -2825 +▁rate -2826 +▁Govern -2827 +▁lear -2828 +▁featured -2829 +▁Jewografi -2830 +▁require -2831 +▁60 -2832 +▁science -2833 +▁nar -2834 +▁Referans -2835 +round -2836 +▁cred -2837 +▁Hall -2838 +utive -2839 +▁300 -2840 +▁relasyon -2841 +▁Atl -2842 +ears -2843 +▁slow -2844 +▁text -2845 +▁oil -2846 +▁bird -2847 +eum -2848 +ulated -2849 +▁anti -2850 +▁mach -2851 +▁cru -2852 +▁movement -2853 +▁forced -2854 +ha -2855 +▁scored -2856 +ysis -2857 +,000 -2858 +▁Mil -2859 +▁director -2860 +isl -2861 +▁units -2862 +▁draw -2863 +▁northern -2864 +▁bring -2865 +▁Relasyon -2866 +bers -2867 +▁investig -2868 +▁except -2869 +▁larger -2870 +▁rain -2871 +aters -2872 +▁Union -2873 +rol -2874 +fl -2875 +rian -2876 +aint -2877 +▁Following -2878 +zy -2879 +▁1990 -2880 +order -2881 +olic -2882 +▁quality -2883 +▁mind -2884 +▁Sam -2885 +▁opening -2886 +airs -2887 +▁asked -2888 +iter -2889 +atin -2890 +back -2891 +ption -2892 +▁More -2893 +▁Sen -2894 +▁Ek -2895 +▁job -2896 +chan -2897 +▁novel -2898 +▁Richard -2899 +▁purp -2900 +▁terms -2901 +mp -2902 +tee -2903 +ror -2904 +▁critics -2905 +erve -2906 +▁face -2907 +ully -2908 +rel -2909 +aughter -2910 +▁Virgin -2911 +▁sus -2912 +▁includes -2913 +rack -2914 +▁tax -2915 +▁decision -2916 +▁beg -2917 +▁center -2918 +▁learning -2919 +ography -2920 +atively -2921 +ises -2922 +ques -2923 +imum -2924 +unt -2925 +izing -2926 +▁chem -2927 +ension -2928 +itation -2929 +." -2930 +▁princip -2931 +▁Germany -2932 +▁Day -2933 +▁shot -2934 +▁screen -2935 +aches -2936 +▁practice -2937 +▁potential -2938 +▁pen -2939 +▁prior -2940 +sych -2941 +ication -2942 +rast -2943 +▁Scott -2944 +▁gre -2945 +▁Met -2946 +▁complet -2947 +▁gold -2948 +itz -2949 +anced -2950 +▁finished -2951 +▁anc -2952 +▁App -2953 +▁Aktè -2954 +▁ability -2955 +▁deg -2956 +aily -2957 +▁target -2958 +▁transport -2959 +▁transfer -2960 +▁Bay -2961 +▁recomm -2962 +▁victory -2963 +▁cat -2964 +▁bur -2965 +▁Mexic -2966 +▁yet -2967 +eds -2968 +▁limited -2969 +hood -2970 +enced -2971 +▁compan -2972 +▁remain -2973 +▁Ant -2974 +▁Just -2975 +bon -2976 +che -2977 +▁Play -2978 +ston -2979 +rief -2980 +▁source -2981 +▁Island -2982 +▁Smith -2983 +▁Battle -2984 +▁appearance -2985 +ging -2986 +▁Court -2987 +uth -2988 +ux -2989 +▁previously -2990 +▁famil -2991 +▁occup -2992 +▁lot -2993 +▁Vict -2994 +owers -2995 +iled -2996 +adron -2997 +▁thus -2998 +▁resour -2999 +▁der -3000 +▁compared -3001 +▁studies -3002 +ulf -3003 +▁spent -3004 +▁Mark -3005 +30 -3006 +▁physical -3007 +▁probably -3008 +▁wide -3009 +▁initially -3010 +▁Tex -3011 +▁cells -3012 +▁produce -3013 +▁Brown -3014 +▁activity -3015 +elled -3016 +use -3017 +▁bomb -3018 +atives -3019 +▁media -3020 +isions -3021 +abit -3022 +▁Mount -3023 +oses -3024 +▁Ben -3025 +▁35 -3026 +▁UK -3027 +▁sens -3028 +uit -3029 +ests -3030 +▁adult -3031 +▁applic -3032 +▁ended -3033 +rial -3034 +▁industry -3035 +▁Edikasyon -3036 +▁Sing -3037 +▁shown -3038 +ground -3039 +▁Western -3040 +▁1999 -3041 +▁distrib -3042 +inct -3043 +heast -3044 +▁cycl -3045 +▁Sant -3046 +▁summer -3047 +▁step -3048 +anish -3049 +▁friends -3050 +▁influence -3051 +gar -3052 +▁Since -3053 +ils -3054 +▁Up -3055 +▁Polit -3056 +antry -3057 +▁why -3058 +▁McC -3059 +▁2016 -3060 +▁nearly -3061 +▁Coun -3062 +▁construct -3063 +▁stay -3064 +iences -3065 +▁mph -3066 +▁Frank -3067 +alled -3068 +▁approx -3069 +ender -3070 +▁Kingdom -3071 +mon -3072 +▁establish -3073 +▁China -3074 +ties -3075 +▁introduced -3076 +▁technology -3077 +▁syn -3078 +▁dark -3079 +▁College -3080 +uments -3081 +berg -3082 +▁plants -3083 +▁surround -3084 +▁Company -3085 +arter -3086 +▁visit -3087 +▁Navy -3088 +▁female -3089 +▁jud -3090 +idents -3091 +▁adapt -3092 +▁capital -3093 +ects -3094 +▁Rock -3095 +▁actually -3096 +▁cell -3097 +▁whom -3098 +▁economic -3099 +▁date -3100 +▁despite -3101 +▁Over -3102 +leg -3103 +▁nomin -3104 +▁Peter -3105 +eal -3106 +▁overall -3107 +▁interview -3108 +▁opportun -3109 +▁standard -3110 +▁90 -3111 +▁acqu -3112 +▁animals -3113 +kn -3114 +▁carried -3115 +ucle -3116 +inese -3117 +▁room -3118 +▁Long -3119 +▁contact -3120 +▁financ -3121 +▁value -3122 +ranch -3123 +obal -3124 +▁ordered -3125 +▁paper -3126 +▁river -3127 +▁prec -3128 +▁takes -3129 +▁cho -3130 +ables -3131 +▁consum -3132 +▁subst -3133 +▁den -3134 +▁1980 -3135 +mar -3136 +▁commercial -3137 +▁failed -3138 +▁estimated -3139 +edy -3140 +▁growth -3141 +▁° -3142 +mitted -3143 +▁signed -3144 +urt -3145 +▁highway -3146 +▁Dem -3147 +▁Music -3148 +ocr -3149 +▁Tom -3150 +▁approach -3151 +▁1970 -3152 +▁dro -3153 +▁nine -3154 +▁remains -3155 +▁ult -3156 +▁trib -3157 +iece -3158 +eding -3159 +ulations -3160 +▁activities -3161 +▁sal -3162 +▁becoming -3163 +▁dead -3164 +▁types -3165 +òl -3166 +▁Gold -3167 +▁i -3168 +rab -3169 +▁du -3170 +▁Center -3171 +▁staff -3172 +▁Not -3173 +hy -3174 +▁attention -3175 +▁fort -3176 +▁collect -3177 +▁Ham -3178 +▁flood -3179 +▁Les -3180 +▁Chinese -3181 +▁Game -3182 +▁80 -3183 +▁radio -3184 +▁purch -3185 +lo -3186 +▁1998 -3187 +change -3188 +▁Cup -3189 +▁minor -3190 +▁medical -3191 +▁drug -3192 +▁ang -3193 +▁Sal -3194 +anded -3195 +▁ge -3196 +porary -3197 +sec -3198 +ki -3199 +▁woman -3200 +▁altern -3201 +ession -3202 +▁Africa -3203 +like -3204 +▁Britain -3205 +hold -3206 +▁private -3207 +▁numbers -3208 +▁meaning -3209 +▁Jean -3210 +▁Grand -3211 +enth -3212 +▁Louis -3213 +12 -3214 +joy -3215 +orial -3216 +ety -3217 +ider -3218 +▁studio -3219 +cean -3220 +▁Times -3221 +▁winds -3222 +oviet -3223 +▁Association -3224 +▁girl -3225 +▁prem -3226 +▁serious -3227 +▁Sun -3228 +AS -3229 +▁schools -3230 +itude -3231 +▁western -3232 +▁seem -3233 +▁Green -3234 +▁avoid -3235 +▁Inter -3236 +▁running -3237 +ado -3238 +II -3239 +▁primary -3240 +▁link -3241 +▁praised -3242 +wh -3243 +▁Pac -3244 +ospital -3245 +ga -3246 +▁Another -3247 +▁hurricane -3248 +tained -3249 +▁birth -3250 +▁Flor -3251 +▁prep -3252 +eph -3253 +ivity -3254 +▁Hill -3255 +▁Je -3256 +ply -3257 +▁student -3258 +▁got -3259 +▁traditional -3260 +pire -3261 +▁colon -3262 +▁Soviet -3263 +▁Lu -3264 +▁Victor -3265 +ena -3266 +▁carry -3267 +▁directed -3268 +▁Mont -3269 +uries -3270 +enty -3271 +▁changed -3272 +irit -3273 +▁tim -3274 +ously -3275 +irm -3276 +▁parents -3277 +▁Spanish -3278 +▁pil -3279 +▁Tour -3280 +▁ways -3281 +▁variety -3282 +▁Texas -3283 +icro -3284 +▁36 -3285 +▁adop -3286 +▁territ -3287 +▁Championship -3288 +▁Mill -3289 +▁mom -3290 +▁Mag -3291 +▁teac -3292 +▁critical -3293 +▁path -3294 +▁score -3295 +▁Ev -3296 +▁Miss -3297 +eder -3298 +▁cele -3299 +▁active -3300 +▁Serv -3301 +stitute -3302 +▁confl -3303 +rate -3304 +▁forest -3305 +▁Cons -3306 +▁favor -3307 +emic -3308 +▁bad -3309 +▁Pop -3310 +▁block -3311 +▁hop -3312 +▁diss -3313 +▁brief -3314 +▁Under -3315 +▁claimed -3316 +▁arrived -3317 +▁knowledge -3318 +iy -3319 +▁Mr -3320 +▁Ir -3321 +iant -3322 +▁Fre -3323 +▁books -3324 +omer -3325 +▁location -3326 +▁cannot -3327 +▁films -3328 +▁Bec -3329 +▁contains -3330 +uing -3331 +▁fit -3332 +▁continue -3333 +▁via -3334 +▁society -3335 +aging -3336 +▁Ma -3337 +▁suggested -3338 +▁green -3339 +▁needs -3340 +umn -3341 +iring -3342 +fect -3343 +anm -3344 +▁£ -3345 +▁cust -3346 +▁unc -3347 +▁comes -3348 +▁police -3349 +▁article -3350 +▁greater -3351 +▁leave -3352 +ims -3353 +▁forms -3354 +▁forward -3355 +▁veh -3356 +▁hot -3357 +▁Council -3358 +▁Law -3359 +▁brain -3360 +liam -3361 +18 -3362 +▁uses -3363 +▁bridge -3364 +▁Du -3365 +▁NY -3366 +▁(19 -3367 +▁Del -3368 +▁professional -3369 +▁effective -3370 +▁recent -3371 +▁instr -3372 +amin -3373 +▁administ -3374 +▁1997 -3375 +▁Franc -3376 +oul -3377 +▁helped -3378 +▁remaining -3379 +▁proposed -3380 +undred -3381 +igan -3382 +▁intended -3383 +astic -3384 +▁approximately -3385 +▁enjoy -3386 +▁Chic -3387 +▁ple -3388 +▁mechan -3389 +alion -3390 +▁reviews -3391 +ders -3392 +▁football -3393 +oti -3394 +▁condition -3395 +▁ː -3396 +▁latter -3397 +vention -3398 +▁kil -3399 +reme -3400 +▁Trans -3401 +▁gas -3402 +ees -3403 +▁heav -3404 +▁eastern -3405 +can -3406 +liament -3407 +▁majority -3408 +▁nation -3409 +▁sense -3410 +aught -3411 +▁1960 -3412 +▁supported -3413 +▁recording -3414 +▁highly -3415 +▁resist -3416 +▁content -3417 +▁Award -3418 +▁Los -3419 +▁prison -3420 +ovens -3421 +▁talk -3422 +▁45 -3423 +▁cancer -3424 +▁document -3425 +▁Ter -3426 +▁Virginia -3427 +▁reach -3428 +▁directly -3429 +▁status -3430 +ste -3431 +▁leaving -3432 +▁32 -3433 +icted -3434 +▁sch -3435 +icient -3436 +nel -3437 +▁mostly -3438 +▁print -3439 +▁70 -3440 +▁184 -3441 +▁discovered -3442 +▁immediately -3443 +▁election -3444 +▁weight -3445 +light -3446 +▁operations -3447 +▁Second -3448 +▁Lord -3449 +ptoms -3450 +hester -3451 +▁Cast -3452 +▁pattern -3453 +▁board -3454 +▁matter -3455 +11 -3456 +▁African -3457 +▁conclud -3458 +▁bow -3459 +▁trade -3460 +▁true -3461 +▁Congress -3462 +▁domin -3463 +▁Bur -3464 +▁stars -3465 +▁demonst -3466 +▁musical -3467 +▁rapid -3468 +▁smaller -3469 +▁rout -3470 +▁intens -3471 +uge -3472 +▁Hot -3473 +▁sen -3474 +▁buildings -3475 +▁Force -3476 +▁prote -3477 +▁inside -3478 +▁mess -3479 +▁Mo -3480 +▁arrang -3481 +▁boy -3482 +leep -3483 +▁Pri -3484 +ips -3485 +ipl -3486 +▁appears -3487 +ufact -3488 +▁plans -3489 +▁mention -3490 +▁expected -3491 +▁spread -3492 +▁religious -3493 +__ -3494 +▁Both -3495 +▁goals -3496 +lled -3497 +eyi -3498 +▁culture -3499 +▁entered -3500 +odies -3501 +ari -3502 +ronic -3503 +lor -3504 +▁Pre -3505 +▁Department -3506 +▁poll -3507 +▁Resear -3508 +▁individuals -3509 +▁lif -3510 +▁Dis -3511 +▁Gra -3512 +onna -3513 +▁destroyed -3514 +▁pwovens -3515 +▁share -3516 +ken -3517 +▁Fin -3518 +▁initial -3519 +ominote -3520 +▁dog -3521 +▁moving -3522 +▁shoot -3523 +▁color -3524 +▁simple -3525 +▁Carol -3526 +▁log -3527 +▁necessary -3528 +▁removed -3529 +▁Old -3530 +4. -3531 +▁policy -3532 +▁dire -3533 +▁Pet -3534 +▁fast -3535 +▁Ol -3536 +lied -3537 +▁Bet -3538 +ww -3539 +▁products -3540 +▁cit -3541 +▁middle -3542 +illed -3543 +▁debut -3544 +▁sources -3545 +▁sett -3546 +▁management -3547 +▁earth -3548 +▁Route -3549 +orps -3550 +AA -3551 +rics -3552 +▁measure -3553 +▁writer -3554 +▁Sa -3555 +▁sust -3556 +▁teams -3557 +▁magazine -3558 +itect -3559 +▁counter -3560 +olk -3561 +▁Kh -3562 +▁webs -3563 +▁promot -3564 +▁flu -3565 +▁har -3566 +▁reduce -3567 +bit -3568 +▁daughter -3569 +▁185 -3570 +▁Cam -3571 +▁Kore -3572 +▁appointed -3573 +aded -3574 +▁companies -3575 +▁concent -3576 +mir -3577 +▁conflict -3578 +rect -3579 +▁married -3580 +▁commission -3581 +astern -3582 +▁nucle -3583 +▁Pacific -3584 +▁division -3585 +▁multiple -3586 +▁Sol -3587 +▁soft -3588 +▁provides -3589 +▁emot -3590 +▁script -3591 +▁leader -3592 +vement -3593 +▁constit -3594 +▁doing -3595 +▁univers -3596 +▁numerous -3597 +▁agreed -3598 +▁1995 -3599 +▁Ro -3600 +rd -3601 +▁mission -3602 +▁ey -3603 +▁voice -3604 +▁pit -3605 +▁Chicago -3606 +▁max -3607 +▁Cro -3608 +▁lives -3609 +▁electric -3610 +▁box -3611 +▁magn -3612 +▁Rev -3613 +▁Its -3614 +▁(2 -3615 +ria -3616 +▁Party -3617 +▁league -3618 +▁Ital -3619 +uz -3620 +▁Mer -3621 +upper -3622 +▁stra -3623 +▁weap -3624 +▁lived -3625 +ested -3626 +▁symb -3627 +sen -3628 +▁peyi -3629 +▁Tur -3630 +▁uns -3631 +▁write -3632 +▁Jackson -3633 +▁defeated -3634 +▁extra -3635 +▁analysis -3636 +▁interact -3637 +ech -3638 +▁cand -3639 +▁theory -3640 +▁sun -3641 +▁efforts -3642 +▁legal -3643 +▁Lake -3644 +▁computer -3645 +▁slight -3646 +iser -3647 +▁unit -3648 +▁connect -3649 +▁qual -3650 +▁meeting -3651 +▁responsible -3652 +▁image -3653 +▁thous -3654 +▁ver -3655 +▁soldiers -3656 +▁hundred -3657 +▁Inf -3658 +rong -3659 +ita -3660 +▁progress -3661 +▁offered -3662 +oes -3663 +teen -3664 +▁giving -3665 +▁pict -3666 +asy -3667 +riage -3668 +▁depression -3669 +imal -3670 +ricult -3671 +▁vac -3672 +▁effort -3673 +▁fell -3674 +▁rare -3675 +osis -3676 +▁names -3677 +▁financial -3678 +▁Because -3679 +lymp -3680 +▁referred -3681 +iest -3682 +▁captured -3683 +well -3684 +▁display -3685 +▁Off -3686 +▁reduced -3687 +▁simply -3688 +▁exerc -3689 +▁ir -3690 +▁ox -3691 +▁answ -3692 +ares -3693 +▁walk -3694 +▁Des -3695 +abet -3696 +andon -3697 +▁attract -3698 +▁Kominote -3699 +▁skin -3700 +▁Edward -3701 +▁Sea -3702 +▁Olymp -3703 +▁Tor -3704 +enge -3705 +▁male -3706 +▁Central -3707 +▁ran -3708 +ny -3709 +▁situation -3710 +▁legisl -3711 +▁extended -3712 +▁becomes -3713 +," -3714 +ibly -3715 +▁withd -3716 +cel -3717 +▁ut -3718 +▁Cor -3719 +▁respond -3720 +▁hour -3721 +▁Florida -3722 +ancy -3723 +▁Sever -3724 +▁Cr -3725 +▁village -3726 +▁fleet -3727 +▁patients -3728 +bre -3729 +▁neigh -3730 +▁Health -3731 +onomi -3732 +▁psych -3733 +▁symptoms -3734 +▁grant -3735 +▁fru -3736 +▁Johnson -3737 +▁planned -3738 +ellig -3739 +▁raised -3740 +▁upper -3741 +▁attacks -3742 +▁winning -3743 +▁letter -3744 +▁resources -3745 +▁scenes -3746 +▁occurred -3747 +▁believe -3748 +▁Cath -3749 +... -3750 +▁Fle -3751 +▁grand -3752 +ero -3753 +ship -3754 +▁mixed -3755 +▁covered -3756 +bour -3757 +▁manufact -3758 +▁hyd -3759 +▁broadcast -3760 +▁Camp -3761 +▁researc -3762 +▁normal -3763 +▁property -3764 +cher -3765 +▁secret -3766 +rupt -3767 +▁Add -3768 +▁cm -3769 +▁pick -3770 +▁bal -3771 +▁Mat -3772 +▁thr -3773 +▁Their -3774 +win -3775 +▁Politik -3776 +▁Russian -3777 +acter -3778 +overy -3779 +▁Arch -3780 +▁inte -3781 +▁episodes -3782 +▁interp -3783 +▁37 -3784 +▁instit -3785 +▁issued -3786 +15 -3787 +▁repe -3788 +igade -3789 +▁Ekonomi -3790 +▁Sur -3791 +▁Big -3792 +▁Dist -3793 +▁Kn -3794 +16 -3795 +vin -3796 +aling -3797 +uated -3798 +▁climate -3799 +▁Canadian -3800 +▁tow -3801 +▁plat -3802 +load -3803 +▁Penn -3804 +òt -3805 +ervation -3806 +▁sure -3807 +▁Fort -3808 +▁finally -3809 +▁Sk -3810 +▁hol -3811 +▁improve -3812 +▁operation -3813 +▁therefore -3814 +▁hands -3815 +▁showed -3816 +▁mur -3817 +▁replace -3818 +▁Us -3819 +▁thing -3820 +▁contain -3821 +istry -3822 +put -3823 +cript -3824 +mission -3825 +▁pi -3826 +▁Atlantic -3827 +ona -3828 +▁temperature -3829 +▁Scot -3830 +▁growing -3831 +▁search -3832 +▁Wood -3833 +▁separate -3834 +▁awarded -3835 +inema -3836 +▁bit -3837 +istics -3838 +▁eth -3839 +onic -3840 +▁challeng -3841 +▁depart -3842 +▁largely -3843 +▁burn -3844 +▁revealed -3845 +▁suffered -3846 +▁1994 -3847 +▁presented -3848 +▁presence -3849 +▁meant -3850 +room -3851 +down -3852 +▁coup -3853 +▁Group -3854 +▁fat -3855 +▁quarter -3856 +▁strength -3857 +icated -3858 +▁Bu -3859 +wide -3860 +▁dang -3861 +▁sem -3862 +▁fifth -3863 +lection -3864 +▁75 -3865 +▁Test -3866 +▁Cle -3867 +▁Later -3868 +▁direction -3869 +▁federal -3870 +▁susp -3871 +▁Here -3872 +▁questions -3873 +▁flight -3874 +▁Enter -3875 +aped -3876 +ying -3877 +▁wild -3878 +▁Club -3879 +▁wa -3880 +▁Nort -3881 +ota -3882 +▁news -3883 +bed -3884 +▁Mel -3885 +za -3886 +burg -3887 +▁Mass -3888 +▁Americans -3889 +iber -3890 +gypt -3891 +▁Song -3892 +eed -3893 +▁flag -3894 +▁metal -3895 +arent -3896 +▁double -3897 +▁records -3898 +▁Out -3899 +▁33 -3900 +icip -3901 +▁calc -3902 +rier -3903 +▁watch -3904 +▁skills -3905 +▁TV -3906 +▁Jim -3907 +▁pack -3908 +ette -3909 +▁Hel -3910 +▁damaged -3911 +▁trees -3912 +▁assess -3913 +ingu -3914 +▁officers -3915 +▁guitar -3916 +80 -3917 +òp -3918 +▁dra -3919 +▁transl -3920 +▁Rad -3921 +▁sn -3922 +▁accomp -3923 +▁Oper -3924 +▁selected -3925 +▁global -3926 +▁collection -3927 +arden -3928 +▁adj -3929 +house -3930 +▁ideas -3931 +▁rule -3932 +▁animal -3933 +▁aspect -3934 +▁Fore -3935 +isation -3936 +▁tons -3937 +▁Jul -3938 +▁strugg -3939 +ulate -3940 +▁Love -3941 +▁Society -3942 +nes -3943 +▁defin -3944 +▁touch -3945 +▁rat -3946 +▁1992 -3947 +▁manager -3948 +▁bank -3949 +▁diet -3950 +▁compl -3951 +▁Of -3952 +▁powerful -3953 +▁Film -3954 +▁eye -3955 +▁architect -3956 +èl -3957 +▁corn -3958 +la -3959 +▁completely -3960 +▁Martin -3961 +ropri -3962 +iance -3963 +▁harm -3964 +▁fish -3965 +▁stories -3966 +▁fans -3967 +▁annual -3968 +▁Work -3969 +viw -3970 +▁copies -3971 +▁resulting -3972 +▁Greek -3973 +▁launched -3974 +▁contem -3975 +▁materials -3976 +▁Step -3977 +▁Sir -3978 +▁Acad -3979 +▁ice -3980 +▁Tod -3981 +▁Egypt -3982 +▁relatively -3983 +▁composed -3984 +▁conducted -3985 +ding -3986 +▁laws -3987 +▁cer -3988 +▁Queen -3989 +▁1950 -3990 +ibrary -3991 +yò -3992 +haps -3993 +▁scale -3994 +ònman -3995 +▁thick -3996 +▁foreign -3997 +▁minute -3998 +ada -3999 +èm -4000 +▁equip -4001 +▁respectively -4002 +illa -4003 +▁tracks -4004 +▁III -4005 +▁piece -4006 +▁Mexico -4007 +▁Av -4008 +viwònman -4009 +▁college -4010 +▁Mur -4011 +▁Town -4012 +33 -4013 +ady -4014 +oo -4015 +▁Ros -4016 +▁listed -4017 +▁genyen -4018 +▁observed -4019 +rael -4020 +▁Book -4021 +▁check -4022 +▁bound -4023 +▁exhib -4024 +▁audience -4025 +▁distance -4026 +▁Mod -4027 +▁closed -4028 +▁winter -4029 +▁capac -4030 +▁notes -4031 +overs -4032 +gn -4033 +▁pan -4034 +▁actions -4035 +▁looking -4036 +▁resulted -4037 +▁1993 -4038 +▁34 -4039 +▁reading -4040 +▁disapp -4041 +▁1991 -4042 +▁Research -4043 +ipped -4044 +▁schol -4045 +▁address -4046 +ocks -4047 +▁online -4048 +▁Devl -4049 +▁advance -4050 +▁subsequently -4051 +▁contrast -4052 +▁Anviwònman -4053 +▁Hum -4054 +▁Ap -4055 +▁Empire -4056 +bury -4057 +▁Ox -4058 +òpman -4059 +▁spl -4060 +▁Kent -4061 +mark -4062 +▁causes -4063 +▁Boy -4064 +2, -4065 +▁Const -4066 +▁older -4067 +▁clean -4068 +▁Er -4069 +▁Devlòpman -4070 +▁weather -4071 +izasyon -4072 +▁nut -4073 +road -4074 +▁tree -4075 +▁developing -4076 +AT -4077 +▁plot -4078 +gl -4079 +▁unable -4080 +▁inspired -4081 +▁Jac -4082 +ype -4083 +▁00 -4084 +estival -4085 +▁incorpor -4086 +ogue -4087 +▁Even -4088 +▁vari -4089 +▁Institute -4090 +▁Ann -4091 +agon -4092 +ka -4093 +▁battles -4094 +▁workers -4095 +▁newsp -4096 +▁iron -4097 +▁organization -4098 +ications -4099 +▁decre -4100 +▁Awards -4101 +▁journal -4102 +▁dut -4103 +ifying -4104 +ception -4105 +▁collabor -4106 +▁starting -4107 +▁chemical -4108 +eces -4109 +▁Che -4110 +▁batter -4111 +▁wear -4112 +▁blue -4113 +▁citiz -4114 +▁affected -4115 +▁kept -4116 +▁integr -4117 +▁coming -4118 +▁Your -4119 +▁fa -4120 +▁supply -4121 +▁Commun -4122 +AR -4123 +ether -4124 +▁begins -4125 +ani -4126 +▁factors -4127 +▁figure -4128 +▁Oh -4129 +▁ded -4130 +▁Italian -4131 +inary -4132 +▁celebr -4133 +▁typically -4134 +▁ast -4135 +▁Aut -4136 +▁fighting -4137 +▁chief -4138 +▁Paris -4139 +▁understanding -4140 +▁peace -4141 +▁alone -4142 +▁morning -4143 +inent -4144 +▁deyò -4145 +▁website -4146 +▁fev -4147 +▁sales -4148 +▁180 -4149 +▁quite -4150 +acing -4151 +fully -4152 +onents -4153 +▁leaves -4154 +▁Jes -4155 +▁continues -4156 +tered -4157 +aine -4158 +▁identified -4159 +▁Viet -4160 +alite -4161 +▁Sil -4162 +izes -4163 +▁Lyen -4164 +▁bul -4165 +▁Billboard -4166 +resh -4167 +▁equipment -4168 +▁elected -4169 +▁tried -4170 +▁Angeles -4171 +▁flow -4172 +force -4173 +▁assigned -4174 +▁programs -4175 +▁+ -4176 +▁Child -4177 +▁inters -4178 +arters -4179 +▁security -4180 +▁rein -4181 +hens -4182 +▁purs -4183 +oration -4184 +▁advant -4185 +gu -4186 +▁train -4187 +▁Joseph -4188 +inson -4189 +▁producer -4190 +bridge -4191 +urban -4192 +▁basis -4193 +▁Science -4194 +utch -4195 +aby -4196 +▁purpose -4197 +▁toward -4198 +▁allowing -4199 +▁severe -4200 +enant -4201 +▁distinct -4202 +▁attempted -4203 +▁negative -4204 +alle -4205 +▁Inst -4206 +▁getting -4207 +▁Latin -4208 +▁System -4209 +band -4210 +▁Year -4211 +▁families -4212 +▁independent -4213 +▁accepted -4214 +▁jewografi -4215 +▁experiment -4216 +fort -4217 +▁Dar -4218 +known -4219 +▁News -4220 +▁declared -4221 +▁Matt -4222 +▁Time -4223 +▁spirit -4224 +▁Fer -4225 +▁depi -4226 +▁Sum -4227 +usion -4228 +arian -4229 +▁labor -4230 +2. -4231 +▁centre -4232 +▁attacked -4233 +▁unique -4234 +▁Each -4235 +▁competition -4236 +▁trying -4237 +▁vot -4238 +▁Lit -4239 +▁Georg -4240 +olf -4241 +▁artist -4242 +ube -4243 +▁encoura -4244 +▁safety -4245 +▁Rail -4246 +ram -4247 +ighter -4248 +▁mel -4249 +▁Det -4250 +▁daily -4251 +▁tend -4252 +▁tur -4253 +▁habit -4254 +▁Pè -4255 +▁nothing -4256 +▁degree -4257 +▁creating -4258 +▁Di -4259 +▁soil -4260 +▁Several -4261 +▁widely -4262 +▁Zeal -4263 +▁settle -4264 +▁Israel -4265 +ilti -4266 +▁BC -4267 +▁candid -4268 +▁Ver -4269 +▁Also -4270 +itable -4271 +▁cities -4272 +▁reject -4273 +▁abandon -4274 +▁Jer -4275 +▁lyrics -4276 +▁amb -4277 +▁categ -4278 +ped -4279 +▁dry -4280 +▁ancient -4281 +1. -4282 +▁researchers -4283 +▁allows -4284 +▁methods -4285 +▁serve -4286 +▁swe -4287 +▁vess -4288 +▁38 -4289 +▁Spec -4290 +▁1940 -4291 +▁easily -4292 +▁seek -4293 +▁nearby -4294 +▁experien -4295 +▁retire -4296 +▁Haw -4297 +▁constructed -4298 +▁table -4299 +rical -4300 +enc -4301 +▁carbon -4302 +▁Sar -4303 +▁heat -4304 +▁inches -4305 +▁affect -4306 +▁Like -4307 +17 -4308 +▁planet -4309 +▁birds -4310 +imb -4311 +▁primarily -4312 +ER -4313 +▁ranked -4314 +▁Ret -4315 +▁1. -4316 +▁imag -4317 +▁kilomet -4318 +▁cas -4319 +umed -4320 +▁defeat -4321 +▁aware -4322 +▁bey -4323 +▁Are -4324 +▁causing -4325 +isp -4326 +▁spot -4327 +mosp -4328 +MS -4329 +olved -4330 +▁officer -4331 +▁Before -4332 +▁behavior -4333 +▁phil -4334 +▁implement -4335 +▁beyond -4336 +▁machine -4337 +▁managed -4338 +▁Vol -4339 +▁twenty -4340 +▁horse -4341 +▁refused -4342 +estic -4343 +iplom -4344 +ented -4345 +▁environmental -4346 +▁Michigan -4347 +▁sides -4348 +▁sleep -4349 +▁Zealand -4350 +iling -4351 +ansion -4352 +pass -4353 +▁places -4354 +▁portray -4355 +rye -4356 +▁draft -4357 +▁square -4358 +▁fully -4359 +-- -4360 +▁positions -4361 +▁combat -4362 +▁Museum -4363 +13 -4364 +40 -4365 +▁Super -4366 +▁Wales -4367 +phas -4368 +▁houses -4369 +▁billion -4370 +▁theme -4371 +▁Dou -4372 +▁basic -4373 +60 -4374 +▁yards -4375 +▁Corps -4376 +udd -4377 +irmed -4378 +▁enter -4379 +▁Cap -4380 +▁earned -4381 +▁pet -4382 +▁Sat -4383 +atik -4384 +adium -4385 +▁mainly -4386 +▁Highway -4387 +▁fuel -4388 +▁moment -4389 +▁lin -4390 +cers -4391 +▁portion -4392 +ih -4393 +▁49 -4394 +▁pair -4395 +▁receive -4396 +▁waters -4397 +een -4398 +VD -4399 +▁gives -4400 +▁Minister -4401 +▁marriage -4402 +▁load -4403 +set -4404 +▁combined -4405 +▁Commit -4406 +igr -4407 +▁sister -4408 +▁marked -4409 +ura -4410 +▁Arab -4411 +▁beaut -4412 +lam -4413 +ounded -4414 +▁Def -4415 +▁onto -4416 +rik -4417 +▁Jo -4418 +▁traffic -4419 +▁shall -4420 +ishop -4421 +▁Four -4422 +uous -4423 +ili -4424 +▁fair -4425 +▁Tw -4426 +▁initi -4427 +▁leaders -4428 +uses -4429 +▁seg -4430 +▁diagn -4431 +▁scientific -4432 +▁Commission -4433 +lies -4434 +rative -4435 +uate -4436 +▁protection -4437 +▁recently -4438 +▁Now -4439 +▁compos -4440 +sonalite -4441 +▁Pan -4442 +ading -4443 +▁1930 -4444 +▁slightly -4445 +clusion -4446 +▁sexual -4447 +yo -4448 +▁page -4449 +▁stress -4450 +▁pal -4451 +▁overs -4452 +ef -4453 +▁compar -4454 +▁Kiben -4455 +▁element -4456 +▁Kenn -4457 +▁Edu -4458 +▁fevrye -4459 +▁wor -4460 +right -4461 +▁capacity -4462 +▁Three -4463 +▁divided -4464 +▁humans -4465 +▁dat -4466 +▁someone -4467 +▁maximum -4468 +▁paid -4469 +▁historical -4470 +▁Wall -4471 +▁eyes -4472 +▁ago -4473 +ds -4474 +▁mis -4475 +▁speech -4476 +▁Squadron -4477 +▁reflect -4478 +▁Bow -4479 +▁Press -4480 +▁platform -4481 +▁controvers -4482 +▁Carl -4483 +unction -4484 +more -4485 +ES -4486 +▁bott -4487 +▁edition -4488 +▁demand -4489 +▁cultural -4490 +▁Wal -4491 +▁doub -4492 +▁graph -4493 +▁easy -4494 +▁hun -4495 +▁reports -4496 +▁dw -4497 +otic -4498 +▁rough -4499 +▁Care -4500 +orter -4501 +▁hospital -4502 +▁Secret -4503 +▁exact -4504 +▁People -4505 +▁speak -4506 +▁Den -4507 +iques -4508 +▁conver -4509 +▁Class -4510 +▁Democr -4511 +▁charge -4512 +▁hor -4513 +▁express -4514 +isted -4515 +▁prepar -4516 +▁Moun -4517 +▁sevent -4518 +▁diplom -4519 +▁injury -4520 +▁Service -4521 +▁ur -4522 +▁native -4523 +▁pun -4524 +▁gar -4525 +antly -4526 +itt -4527 +isms -4528 +▁royal -4529 +och -4530 +itan -4531 +▁Ten -4532 +ules -4533 +▁39 -4534 +▁mob -4535 +▁deliver -4536 +cles -4537 +▁Leg -4538 +▁IS -4539 +▁400 -4540 +▁commonly -4541 +▁Saint -4542 +▁commander -4543 +claim -4544 +▁dyn -4545 +ersey -4546 +umber -4547 +▁reform -4548 +▁Columb -4549 +▁founded -4550 +▁Post -4551 +▁trial -4552 +▁Capt -4553 +▁murder -4554 +▁survey -4555 +▁Once -4556 +▁attend -4557 +▁Southern -4558 +25 -4559 +▁officials -4560 +▁reference -4561 +▁179 -4562 +▁greatest -4563 +14 -4564 +▁dism -4565 +▁card -4566 +▁Through -4567 +▁commented -4568 +▁Good -4569 +come -4570 +▁correct -4571 +▁IM -4572 +mas -4573 +▁singer -4574 +▁ensure -4575 +▁fran -4576 +▁movie -4577 +▁setting -4578 +ceeded -4579 +ners -4580 +ID -4581 +▁chap -4582 +uls -4583 +annel -4584 +// -4585 +▁seems -4586 +atre -4587 +▁enemy -4588 +▁1989 -4589 +water -4590 +▁emphas -4591 +rig -4592 +▁tell -4593 +▁CO -4594 +▁Catholic -4595 +▁Committee -4596 +anda -4597 +▁cold -4598 +▁prefer -4599 +▁impl -4600 +▁perfect -4601 +▁opin -4602 +▁task -4603 +▁Tre -4604 +▁extrem -4605 +▁illust -4606 +▁Op -4607 +▁Sub -4608 +key -4609 +▁Direct -4610 +▁arrest -4611 +▁frequently -4612 +peror -4613 +:// -4614 +▁Van -4615 +stein -4616 +▁plays -4617 +omers -4618 +▁sites -4619 +▁eat -4620 +▁choice -4621 +olec -4622 +stitution -4623 +▁Daniel -4624 +▁Bob -4625 +hi -4626 +▁Wind -4627 +edom -4628 +▁spect -4629 +▁cerem -4630 +▁attended -4631 +▁Gar -4632 +▁Histor -4633 +▁anything -4634 +▁Cross -4635 +▁Life -4636 +▁opportunity -4637 +▁Scotland -4638 +▁Max -4639 +▁weak -4640 +▁egg -4641 +▁didn -4642 +▁currently -4643 +▁Oxford -4644 +▁explained -4645 +St -4646 +ela -4647 +▁acad -4648 +▁Bre -4649 +▁ultimately -4650 +▁Bost -4651 +▁acid -4652 +▁god -4653 +▁Jewish -4654 +▁Kar -4655 +inet -4656 +iders -4657 +▁agricult -4658 +▁Ire -4659 +▁scientists -4660 +▁Jones -4661 +▁Jeff -4662 +iny -4663 +▁providing -4664 +▁rang -4665 +▁stone -4666 +▁convers -4667 +isher -4668 +▁DVD -4669 +resp -4670 +inter -4671 +ola -4672 +born -4673 +▁Water -4674 +inking -4675 +nam -4676 +▁Ireland -4677 +▁rob -4678 +▁reasons -4679 +▁atmosp -4680 +▁cool -4681 +atures -4682 +▁projects -4683 +▁183 -4684 +apers -4685 +▁famous -4686 +▁Stan -4687 +▁bud -4688 +shire -4689 +eway -4690 +▁residents -4691 +▁fix -4692 +▁ending -4693 +osure -4694 +▁suc -4695 +▁matches -4696 +▁aim -4697 +oma -4698 +▁spring -4699 +▁digital -4700 +▁dropped -4701 +▁attempts -4702 +▁Creek -4703 +▁therap -4704 +▁ones -4705 +imens -4706 +hat -4707 +▁rise -4708 +▁Government -4709 +heless -4710 +▁communities -4711 +▁hyp -4712 +▁pieces -4713 +▁intellig -4714 +èv -4715 +ias -4716 +▁Fox -4717 +▁wing -4718 +▁Ha -4719 +▁Further -4720 +▁Prot -4721 +▁suggests -4722 +▁writers -4723 +▁economy -4724 +▁Chris -4725 +▁expect -4726 +▁Hy -4727 +▁apparent -4728 +▁hus -4729 +▁Luc -4730 +▁Academy -4731 +icine -4732 +▁bodies -4733 +▁Though -4734 +▁mut -4735 +▁concluded -4736 +writ -4737 +▁formation -4738 +izations -4739 +▁Gal -4740 +▁visual -4741 +▁accur -4742 +▁Williams -4743 +▁expressed -4744 +▁Esp -4745 +miral -4746 +▁doll -4747 +▁existing -4748 +▁Lee -4749 +▁tail -4750 +thur -4751 +▁fresh -4752 +▁rules -4753 +▁importance -4754 +▁150 -4755 +iced -4756 +▁mouth -4757 +▁homes -4758 +▁Italy -4759 +▁worth -4760 +bl -4761 +ón -4762 +▁safe -4763 +iments -4764 +▁sche -4765 +▁advanced -4766 +▁Tim -4767 +▁dance -4768 +vest -4769 +▁shape -4770 +▁Parliament -4771 +▁joint -4772 +▁mo -4773 +▁hero -4774 +anes -4775 +▁Middle -4776 +▁micro -4777 +▁Land -4778 +onent -4779 +▁philos -4780 +while -4781 +▁veget -4782 +▁era -4783 +▁attrib -4784 +▁Conf -4785 +▁instrument -4786 +▁appropri -4787 +▁authority -4788 +▁Nat -4789 +▁poet -4790 +▁Tem -4791 +án -4792 +illery -4793 +ss -4794 +▁sac -4795 +▁transform -4796 +▁und -4797 +▁47 -4798 +ieut -4799 +▁beat -4800 +ez -4801 +osen -4802 +▁feed -4803 +▁heard -4804 +thlet -4805 +▁owned -4806 +▁stating -4807 +▁Little -4808 +perial -4809 +▁Tri -4810 +orses -4811 +▁yard -4812 +ois -4813 +ograp -4814 +▁wit -4815 +In -4816 +ras -4817 +▁failure -4818 +▁goes -4819 +▁cry -4820 +▁doesn -4821 +antasy -4822 +▁healthy -4823 +▁Jesus -4824 +▁determine -4825 +▁border -4826 +▁Team -4827 +▁influenced -4828 +▁Aven -4829 +▁Boston -4830 +▁images -4831 +▁Clark -4832 +▁hair -4833 +▁crow -4834 +▁transferred -4835 +▁floor -4836 +▁sought -4837 +▁master -4838 +EA -4839 +book -4840 +▁concert -4841 +▁metres -4842 +▁Form -4843 +▁Ram -4844 +▁join -4845 +▁Final -4846 +▁surrounding -4847 +▁Stone -4848 +▁# -4849 +▁drop -4850 +▁Civil -4851 +▁Swed -4852 +▁difference -4853 +▁History -4854 +▁models -4855 +▁cert -4856 +▁consequ -4857 +pro -4858 +hips -4859 +▁tells -4860 +▁artists -4861 +▁Northern -4862 +▁couple -4863 +▁quant -4864 +▁drive -4865 +▁48 -4866 +▁industrial -4867 +▁seconds -4868 +▁thir -4869 +TV -4870 +awn -4871 +▁tal -4872 +▁Hung -4873 +▁Charl -4874 +▁represented -4875 +▁bra -4876 +ancing -4877 +▁2. -4878 +▁benefits -4879 +▁follows -4880 +▁Int -4881 +rogen -4882 +▁costs -4883 +▁figures -4884 +▁Way -4885 +entially -4886 +iano -4887 +▁1988 -4888 +ologist -4889 +▁regions -4890 +iat -4891 +▁Educ -4892 +▁drum -4893 +▁district -4894 +▁Ill -4895 +▁claims -4896 +▁Public -4897 +▁strateg -4898 +▁55 -4899 +▁county -4900 +▁belief -4901 +▁everything -4902 +▁Mic -4903 +▁bacter -4904 +▁defined -4905 +▁autom -4906 +▁Jud -4907 +▁acting -4908 +▁confirmed -4909 +rich -4910 +▁Penns -4911 +▁Norm -4912 +▁walls -4913 +under -4914 +ifically -4915 +ogen -4916 +▁Prince -4917 +oles -4918 +abeth -4919 +▁Writ -4920 +▁perhaps -4921 +▁rot -4922 +▁citizens -4923 +time -4924 +rad -4925 +▁gained -4926 +▁weaken -4927 +▁pale -4928 +▁proved -4929 +▁1987 -4930 +phy -4931 +ieutenant -4932 +▁Infantry -4933 +▁unf -4934 +rog -4935 +▁Chief -4936 +▁Carolina -4937 +▁Manc -4938 +▁inh -4939 +▁ahead -4940 +▁improved -4941 +▁calling -4942 +▁determined -4943 +▁tun -4944 +▁mentioned -4945 +▁Ott -4946 +▁essential -4947 +▁1942 -4948 +▁passing -4949 +▁subsequent -4950 +▁worldwide -4951 +▁remark -4952 +▁inch -4953 +▁Major -4954 +▁shell -4955 +ici -4956 +▁gain -4957 +ayer -4958 +ylvan -4959 +▁coach -4960 +▁Pers -4961 +▁coal -4962 +ibl -4963 +atched -4964 +IS -4965 +▁structures -4966 +▁Ec -4967 +▁camer -4968 +▁nuclear -4969 +▁virt -4970 +▁sand -4971 +▁Fe -4972 +▁perman -4973 +▁performances -4974 +▁capture -4975 +▁significantly -4976 +embly -4977 +adel -4978 +▁1920 -4979 +ingly -4980 +▁Valley -4981 +▁reaching -4982 +▁Ray -4983 +▁Fall -4984 +▁Mem -4985 +anna -4986 +ushed -4987 +▁selling -4988 +▁household -4989 +▁65 -4990 +▁maintain -4991 +▁Young -4992 +▁limit -4993 +▁chance -4994 +▁applied -4995 +▁creation -4996 +ouv -4997 +▁UN -4998 +iar -4999 +▁Brad -5000 +mond -5001 +▁Far -5002 +▁akt -5003 +▁straight -5004 +gal -5005 +gest -5006 +▁Philipp -5007 +▁designated -5008 +▁1986 -5009 +▁background -5010 +vis -5011 +▁label -5012 +org -5013 +▁sout -5014 +▁note -5015 +▁Elect -5016 +▁broke -5017 +hew -5018 +▁Foot -5019 +▁advantage -5020 +▁instruct -5021 +lers -5022 +▁twice -5023 +-2 -5024 +▁Arm -5025 +erved -5026 +▁Records -5027 +▁Top -5028 +▁Men -5029 +▁urban -5030 +▁store -5031 +▁Games -5032 +▁mist -5033 +▁resistance -5034 +▁brown -5035 +wise -5036 +▁Hal -5037 +▁occurs -5038 +▁elev -5039 +▁objects -5040 +▁planning -5041 +▁1945 -5042 +▁struck -5043 +▁Ell -5044 +tic -5045 +osaur -5046 +▁Eliz -5047 +▁Madonna -5048 +▁save -5049 +izyon -5050 +track -5051 +iana -5052 +▁Inc -5053 +▁Fim -5054 +▁Asia -5055 +▁cyclone -5056 +ella -5057 +▁weapons -5058 +▁Captain -5059 +▁equal -5060 +stone -5061 +▁occasion -5062 +▁Develop -5063 +▁contemporary -5064 +prise -5065 +▁vocal -5066 +▁42 -5067 +▁journ -5068 +▁Ocean -5069 +agement -5070 +▁Rod -5071 +▁territory -5072 +illing -5073 +▁university -5074 +▁Light -5075 +▁1944 -5076 +▁stre -5077 +▁castle -5078 +▁Rom -5079 +▁heavily -5080 +rec -5081 +respond -5082 +▁Bus -5083 +▁alongside -5084 +igg -5085 +▁Pier -5086 +▁husband -5087 +▁Let -5088 +▁crop -5089 +▁unknown -5090 +range -5091 +▁ring -5092 +coh -5093 +▁prominent -5094 +uting -5095 +▁titled -5096 +▁helps -5097 +▁defense -5098 +▁Stephen -5099 +ym -5100 +rid -5101 +▁championship -5102 +▁hope -5103 +▁fruit -5104 +▁yellow -5105 +▁price -5106 +▁chosen -5107 +iful -5108 +ala -5109 +▁propos -5110 +". -5111 +▁delay -5112 +▁Bridge -5113 +▁Rog -5114 +▁Prof -5115 +ishes -5116 +ournament -5117 +▁adopted -5118 +▁Bat -5119 +▁defend -5120 +▁proced -5121 +▁Our -5122 +▁pilot -5123 +▁remember -5124 +▁diam -5125 +aven -5126 +▁arms -5127 +▁accident -5128 +▁memory -5129 +▁viewers -5130 +▁Journal -5131 +▁experienced -5132 +▁kat -5133 +▁column -5134 +▁1941 -5135 +▁Dutch -5136 +▁analy -5137 +▁auth -5138 +AC -5139 +▁select -5140 +▁Bern -5141 +cious -5142 +pris -5143 +oking -5144 +▁techniques -5145 +▁adults -5146 +▁maintained -5147 +▁contained -5148 +▁BBC -5149 +▁belong -5150 +▁Dam -5151 +▁grew -5152 +ographic -5153 +▁featuring -5154 +▁lic -5155 +▁elimin -5156 +▁bed -5157 +tar -5158 +▁Dec -5159 +▁Mu -5160 +quarters -5161 +orped -5162 +▁narrow -5163 +▁Bas -5164 +▁connected -5165 +▁laid -5166 +▁invasion -5167 +▁doctor -5168 +▁rating -5169 +▁termin -5170 +▁44 -5171 +▁sequence -5172 +aming -5173 +▁alternative -5174 +▁height -5175 +▁Victoria -5176 +▁molec -5177 +inder -5178 +▁mental -5179 +ylvania -5180 +▁possibly -5181 +▁aid -5182 +▁Mean -5183 +▁captain -5184 +▁Fam -5185 +ucky -5186 +▁controlled -5187 +roll -5188 +▁volume -5189 +▁Tay -5190 +AF -5191 +▁Addition -5192 +▁Admiral -5193 +▁agreement -5194 +iday -5195 +▁peaked -5196 +▁prepared -5197 +▁64 -5198 +ounger -5199 +bur -5200 +▁learned -5201 +ato -5202 +ev -5203 +sect -5204 +▁literature -5205 +▁Common -5206 +aved -5207 +▁Plan -5208 +▁resc -5209 +▁ign -5210 +▁tank -5211 +▁scoring -5212 +isco -5213 +▁teaching -5214 +▁describes -5215 +▁senior -5216 +ba -5217 +▁MD -5218 +▁Line -5219 +chest -5220 +▁achieved -5221 +▁x -5222 +▁offers -5223 +ora -5224 +ocked -5225 +▁argued -5226 +▁District -5227 +▁code -5228 +vious -5229 +▁Series -5230 +▁rates -5231 +aga -5232 +▁values -5233 +▁ends -5234 +▁budget -5235 +▁teeth -5236 +▁Battalion -5237 +▁43 -5238 +▁Christmas -5239 +▁rich -5240 +▁Early -5241 +▁IMD -5242 +▁Ohio -5243 +▁Harrison -5244 +▁sports -5245 +▁Spain -5246 +▁glass -5247 +▁leadership -5248 +▁etc -5249 +▁vote -5250 +▁naval -5251 +▁Cla -5252 +attle -5253 +▁Su -5254 +ban -5255 +▁nor -5256 +▁1943 -5257 +ordin -5258 +issions -5259 +ipe -5260 +▁repeated -5261 +da -5262 +▁promoted -5263 +▁Corn -5264 +▁actor -5265 +▁Manchester -5266 +▁core -5267 +▁isol -5268 +▁Russia -5269 +▁versions -5270 +▁Techn -5271 +▁sort -5272 +stream -5273 +▁visited -5274 +78 -5275 +▁fear -5276 +▁items -5277 +): -5278 +▁CD -5279 +▁Eastern -5280 +ager -5281 +▁sets -5282 +▁extensive -5283 +▁Ra -5284 +▁consec -5285 +ta -5286 +▁Today -5287 +▁Sand -5288 +▁emerg -5289 +▁About -5290 +▁46 -5291 +▁centuries -5292 +▁extremely -5293 +▁Ko -5294 +▁tiss -5295 +▁faced -5296 +▁containing -5297 +▁Croat -5298 +▁details -5299 +▁hall -5300 +▁differences -5301 +iken -5302 +▁correspond -5303 +▁Exp -5304 +▁Then -5305 +▁protein -5306 +mes -5307 +▁Dun -5308 +▁encoun -5309 +▁northeast -5310 +itors -5311 +omew -5312 +▁Lar -5313 +▁focused -5314 +othes -5315 +inger -5316 +▁depend -5317 +▁roll -5318 +▁properties -5319 +▁executive -5320 +▁* -5321 +▁Chap -5322 +▁motion -5323 +▁reaction -5324 +▁motor -5325 +eller -5326 +▁shortly -5327 +▁lands -5328 +osa -5329 +▁Irish -5330 +ighth -5331 +▁opposed -5332 +essions -5333 +▁horses -5334 +▁exped -5335 +▁escape -5336 +▁trust -5337 +▁launch -5338 +▁violence -5339 +▁dial -5340 +▁trav -5341 +▁vehicles -5342 +town -5343 +▁lov -5344 +▁htt -5345 +▁firm -5346 +▁prompt -5347 +▁successfully -5348 +▁seasons -5349 +▁stations -5350 +▁split -5351 +ya -5352 +▁administration -5353 +pson -5354 +amber -5355 +▁torped -5356 +▁negoti -5357 +▁sixth -5358 +▁combination -5359 +▁sam -5360 +▁statement -5361 +▁Avenue -5362 +▁Os -5363 +▁52 -5364 +▁Brigade -5365 +rat -5366 +era -5367 +▁serving -5368 +▁1985 -5369 +▁officially -5370 +▁Orig -5371 +▁evolution -5372 +▁newly -5373 +▁regarding -5374 +▁stream -5375 +▁wave -5376 +standing -5377 +reyòl -5378 +▁Among -5379 +▁broken -5380 +▁displ -5381 +ji -5382 +isters -5383 +▁kg -5384 +▁symbol -5385 +▁measures -5386 +▁editor -5387 +▁vocals -5388 +▁existence -5389 +▁Show -5390 +arts -5391 +lines -5392 +▁Albert -5393 +▁Home -5394 +▁Field -5395 +▁AD -5396 +▁Hard -5397 +▁tests -5398 +ricket -5399 +▁Elizabeth -5400 +▁honor -5401 +▁Cat -5402 +▁entirely -5403 +▁testing -5404 +▁accompan -5405 +▁thin -5406 +▁useful -5407 +yan -5408 +▁paralle -5409 +uration -5410 +▁decades -5411 +▁Ob -5412 +▁shared -5413 +umes -5414 +▁liber -5415 +▁solar -5416 +ima -5417 +.) -5418 +▁facilities -5419 +▁organized -5420 +▁everyone -5421 +▁returning -5422 +▁Marsh -5423 +▁patient -5424 +▁protected -5425 +▁authorities -5426 +▁Nic -5427 +▁rainfall -5428 +▁enh -5429 +oured -5430 +▁thousands -5431 +▁rapidly -5432 +▁wealth -5433 +ads -5434 +▁Cub -5435 +▁faith -5436 +▁Musl -5437 +▁closely -5438 +elve -5439 +erse -5440 +▁Regiment -5441 +▁Alexander -5442 +▁Lew -5443 +▁actual -5444 +70 -5445 +▁Card -5446 +rence -5447 +▁Bey -5448 +▁Pen -5449 +▁northwest -5450 +▁finding -5451 +▁turns -5452 +▁standards -5453 +▁dram -5454 +▁deploy -5455 +erate -5456 +pping -5457 +▁pul -5458 +▁Gre -5459 +▁consists -5460 +66 -5461 +TC -5462 +▁Revolution -5463 +▁behavi -5464 +▁install -5465 +▁NH -5466 +▁mort -5467 +▁Rem -5468 +▁Jon -5469 +▁Cur -5470 +▁descript -5471 +▁Week -5472 +▁expansion -5473 +▁clin -5474 +kin -5475 +▁innings -5476 +▁orders -5477 +▁sched -5478 +▁wick -5479 +▁Andrew -5480 +▁exercise -5481 +▁recognized -5482 +▁lat -5483 +▁thinking -5484 +▁guard -5485 +▁Gall -5486 +▁franse -5487 +zil -5488 +omy -5489 +va -5490 +▁standing -5491 +ii -5492 +3. -5493 +▁artillery -5494 +▁pregn -5495 +▁Ep -5496 +arp -5497 +▁Hu -5498 +▁row -5499 +▁silver -5500 +▁consisted -5501 +orship -5502 +▁1984 -5503 +▁182 -5504 +▁Every -5505 +▁Office -5506 +▁Board -5507 +▁reign -5508 +▁Prov -5509 +▁Short -5510 +▁examples -5511 +▁Entertain -5512 +▁roles -5513 +▁IMDb -5514 +ati -5515 +▁recommended -5516 +met -5517 +▁distribution -5518 +▁teacher -5519 +▁eval -5520 +▁neut -5521 +▁Upon -5522 +▁income -5523 +▁600 -5524 +ext -5525 +rons -5526 +▁chose -5527 +▁Ul -5528 +▁nominated -5529 +▁Only -5530 +eration -5531 +▁bottom -5532 +▁letters -5533 +▁Wilson -5534 +istan -5535 +▁substant -5536 +▁Blue -5537 +oz -5538 +icate -5539 +▁collected -5540 +▁Thus -5541 +▁Colon -5542 +ava -5543 +▁device -5544 +▁fired -5545 +ca -5546 +▁message -5547 +▁Roll -5548 +inity -5549 +▁losing -5550 +unte -5551 +▁solution -5552 +▁benefit -5553 +▁aspects -5554 +▁opposition -5555 +▁vary -5556 +rows -5557 +▁din -5558 +ksyon -5559 +vant -5560 +▁challenge -5561 +orders -5562 +kins -5563 +rance -5564 +▁Coast -5565 +▁regarded -5566 +▁dedicated -5567 +▁answer -5568 +▁application -5569 +▁Sund -5570 +▁roof -5571 +▁selection -5572 +▁1968 -5573 +ocated -5574 +rete -5575 +▁Lab -5576 +uled -5577 +▁Due -5578 +add -5579 +▁calls -5580 +▁herself -5581 +▁generation -5582 +▁Liber -5583 +▁Bond -5584 +▁warm -5585 +▁phase -5586 +ping -5587 +▁religion -5588 +▁internal -5589 +ouri -5590 +akers -5591 +▁kont -5592 +▁roads -5593 +▁Jersey -5594 +ashion -5595 +▁locations -5596 +-19 -5597 +▁Fleet -5598 +▁newspaper -5599 +outs -5600 +based -5601 +▁picture -5602 +illy -5603 +▁passes -5604 +▁Die -5605 +▁operated -5606 +encies -5607 +▁operating -5608 +▁knew -5609 +▁DNA -5610 +▁Guard -5611 +▁flying -5612 +▁Taylor -5613 +▁unus -5614 +▁Entertainment -5615 +▁Pennsylvania -5616 +▁Bul -5617 +▁Scient -5618 +▁younger -5619 +▁historian -5620 +▁Polish -5621 +▁kids -5622 +▁steel -5623 +▁increasingly -5624 +ns -5625 +etts -5626 +▁request -5627 +▁killing -5628 +oir -5629 +▁identify -5630 +▁communication -5631 +▁Zèv -5632 +▁Governor -5633 +▁tren -5634 +▁Women -5635 +▁alcoh -5636 +▁menm -5637 +▁Never -5638 +▁street -5639 +ano -5640 +▁council -5641 +enger -5642 +▁SS -5643 +pton -5644 +▁1979 -5645 +oral -5646 +AN -5647 +▁secondary -5648 +▁rom -5649 +▁introduction -5650 +pir -5651 +▁solid -5652 +inth -5653 +ophy -5654 +▁Ven -5655 +azz -5656 +▁Gi -5657 +▁Germ -5658 +▁assault -5659 +▁granted -5660 +▁strike -5661 +▁supporting -5662 +osy -5663 +▁Girl -5664 +▁vo -5665 +▁concerns -5666 +▁powers -5667 +▁Att -5668 +ports -5669 +isa -5670 +▁showing -5671 +pool -5672 +▁casual -5673 +ua -5674 +itis -5675 +equ -5676 +▁Senate -5677 +▁fan -5678 +▁wrong -5679 +▁youth -5680 +▁Found -5681 +▁promote -5682 +▁requires -5683 +▁mountain -5684 +▁absor -5685 +▁1967 -5686 +▁Crit -5687 +▁governor -5688 +▁fellow -5689 +▁Islands -5690 +▁reality -5691 +▁depth -5692 +▁edge -5693 +▁abandoned -5694 +▁else -5695 +▁Scottish -5696 +hemat -5697 +▁Duke -5698 +▁connection -5699 +▁chair -5700 +▁scholars -5701 +▁waste -5702 +▁Project -5703 +▁Conn -5704 +▁incident -5705 +▁producers -5706 +▁map -5707 +▁kid -5708 +iot -5709 +iable -5710 +ilasyon -5711 +pective -5712 +▁Education -5713 +▁revolution -5714 +▁Mir -5715 +▁populations -5716 +▁wounded -5717 +▁ven -5718 +▁distingu -5719 +▁1983 -5720 +▁boat -5721 +▁paint -5722 +▁interested -5723 +▁rear -5724 +▁teachers -5725 +▁cloud -5726 +▁Instead -5727 +gian -5728 +▁Tro -5729 +▁advert -5730 +▁sufficient -5731 +▁strik -5732 +▁Who -5733 +vey -5734 +▁adding -5735 +▁caught -5736 +90 -5737 +▁seat -5738 +▁soundtrack -5739 +▁journey -5740 +▁vacc -5741 +▁fim -5742 +▁achieve -5743 +▁Wild -5744 +▁Review -5745 +▁feeling -5746 +▁mal -5747 +▁Bank -5748 +ternal -5749 +▁2017 -5750 +▁classes -5751 +1, -5752 +▁Web -5753 +risis -5754 +▁albums -5755 +antine -5756 +▁Georgia -5757 +▁acquired -5758 +▁Az -5759 +IV -5760 +▁armed -5761 +▁trou -5762 +▁Stand -5763 +▁software -5764 +▁circum -5765 +▁expanded -5766 +▁infection -5767 +▁ready -5768 +utation -5769 +▁islands -5770 +oln -5771 +▁explos -5772 +▁Bart -5773 +▁views -5774 +▁Cop -5775 +▁95 -5776 +▁intensity -5777 +▁exchange -5778 +▁myth -5779 +▁Hurricane -5780 +ceived -5781 +BA -5782 +▁Cambridge -5783 +▁criticized -5784 +▁fields -5785 +▁nob -5786 +▁opinion -5787 +▁fiction -5788 +IN -5789 +▁stages -5790 +▁specifically -5791 +ycl -5792 +▁deaths -5793 +▁Est -5794 +▁practices -5795 +▁recommend -5796 +▁fought -5797 +▁tools -5798 +▁cart -5799 +▁Night -5800 +zen -5801 +▁Columbia -5802 +▁Rome -5803 +▁reyal -5804 +▁Ric -5805 +▁participated -5806 +▁Holly -5807 +▁Joe -5808 +▁appearances -5809 +▁Homer -5810 +▁1969 -5811 +▁Francisco -5812 +▁appropriate -5813 +▁freedom -5814 +rann -5815 +▁witness -5816 +▁parallel -5817 +▁finds -5818 +▁Key -5819 +heim -5820 +▁buy -5821 +ockey -5822 +▁studied -5823 +▁manner -5824 +▁kick -5825 +▁receiving -5826 +ologies -5827 +ructure -5828 +raction -5829 +▁Brazil -5830 +apes -5831 +▁Mah -5832 +▁1982 -5833 +power -5834 +▁Rh -5835 +▁guest -5836 +onc -5837 +▁somew -5838 +▁holding -5839 +▁debuted -5840 +▁Space -5841 +ective -5842 +▁Bru -5843 +▁die -5844 +orough -5845 +▁experiences -5846 +▁ha -5847 +▁diseases -5848 +▁Mov -5849 +▁doct -5850 +▁breat -5851 +intend -5852 +▁drawn -5853 +idel -5854 +▁treated -5855 +▁Meanwhile -5856 +adelph -5857 +▁fine -5858 +▁Well -5859 +pper -5860 +▁Harry -5861 +▁insect -5862 +▁foods -5863 +eless -5864 +▁deck -5865 +▁contributed -5866 +▁End -5867 +▁cars -5868 +▁Treat -5869 +render -5870 +▁Hon -5871 +▁instance -5872 +orage -5873 +▁museum -5874 +▁Nan -5875 +▁actors -5876 +▁1975 -5877 +▁evac -5878 +▁120 -5879 +rations -5880 +▁Pot -5881 +▁Down -5882 +gent -5883 +▁aired -5884 +▁WW -5885 +▁stret -5886 +ampion -5887 +ilding -5888 +▁divers -5889 +▁vision -5890 +thes -5891 +▁1976 -5892 +▁Telev -5893 +▁branch -5894 +▁concer -5895 +▁producing -5896 +gery -5897 +▁interpret -5898 +▁pret -5899 +aste -5900 +▁Beat -5901 +▁Allied -5902 +▁domestic -5903 +uro -5904 +▁genetic -5905 +▁Gil -5906 +▁exposure -5907 +nic -5908 +iform -5909 +▁domèn -5910 +▁3. -5911 +▁engaged -5912 +▁Jews -5913 +▁rival -5914 +▁Festival -5915 +▁atmosphere -5916 +avig -5917 +rim -5918 +ician -5919 +▁resident -5920 +▁Lind -5921 +▁Philadelph -5922 +▁vent -5923 +▁committee -5924 +▁excess -5925 +▁secure -5926 +▁approved -5927 +▁mile -5928 +▁Gree -5929 +▁Football -5930 +▁choose -5931 +▁effectively -5932 +▁Arthur -5933 +▁innov -5934 +▁factor -5935 +▁dismiss -5936 +▁capable -5937 +▁tower -5938 +▁withdraw -5939 +▁offensive -5940 +▁1939 -5941 +▁sport -5942 +▁tom -5943 +life -5944 +▁util -5945 +▁Ash -5946 +▁Hit -5947 +▁session -5948 +rome -5949 +ushing -5950 +▁identity -5951 +▁landing -5952 +▁parties -5953 +manuel -5954 +▁battery -5955 +▁Linc -5956 +tor -5957 +▁rejected -5958 +▁signs -5959 +ignment -5960 +▁interesting -5961 +▁Tech -5962 +pe -5963 +▁1964 -5964 +aph -5965 +char -5966 +▁wel -5967 +▁1965 -5968 +▁Mike -5969 +▁rural -5970 +▁85 -5971 +▁railway -5972 +▁Secretary -5973 +mun -5974 +▁foss -5975 +▁illness -5976 +▁Point -5977 +▁Children -5978 +▁Mos -5979 +PA -5980 +▁depict -5981 +rees -5982 +break -5983 +BN -5984 +▁hear -5985 +▁twelve -5986 +▁authors -5987 +▁drugs -5988 +greg -5989 +onia -5990 +▁Castle -5991 +ivite -5992 +▁consecutive -5993 +▁Marc -5994 +▁ek -5995 +▁flat -5996 +uzz -5997 +▁1973 -5998 +▁unp -5999 +▁typical -6000 +▁Philadelphia -6001 +ira -6002 +▁54 -6003 +▁tournament -6004 +▁tele -6005 +▁1974 -6006 +▁painting -6007 +▁poem -6008 +isers -6009 +ivalent -6010 +▁Sus -6011 +▁devices -6012 +▁huge -6013 +▁employed -6014 +elle -6015 +és -6016 +▁publication -6017 +▁temperatures -6018 +▁complic -6019 +▁filled -6020 +▁performing -6021 +▁Naz -6022 +▁Bal -6023 +▁discover -6024 +▁singles -6025 +asty -6026 +igen -6027 +yles -6028 +▁genus -6029 +▁cycle -6030 +▁catch -6031 +orus -6032 +▁1972 -6033 +▁virus -6034 +▁Lincoln -6035 +▁academic -6036 +ansas -6037 +▁AC -6038 +▁constitution -6039 +▁Burn -6040 +▁1966 -6041 +▁trip -6042 +itled -6043 +imet -6044 +▁Var -6045 +▁Coll -6046 +▁anyone -6047 +▁Sher -6048 +▁Operation -6049 +itage -6050 +▁crossing -6051 +rm -6052 +icit -6053 +▁san -6054 +▁-- -6055 +▁Gade -6056 +ygen -6057 +▁Special -6058 +▁purchased -6059 +▁organizations -6060 +▁gets -6061 +▁accompanied -6062 +▁Head -6063 +▁driving -6064 +▁Power -6065 +▁Lang -6066 +▁undert -6067 +▁acts -6068 +bar -6069 +agan -6070 +▁aktivite -6071 +▁briefly -6072 +▁Republican -6073 +▁obtained -6074 +▁crowd -6075 +▁favour -6076 +▁tall -6077 +▁leads -6078 +▁shel -6079 +▁Six -6080 +▁processes -6081 +▁heads -6082 +▁occupied -6083 +umin -6084 +▁viewed -6085 +iate -6086 +▁sustain -6087 +▁conference -6088 +▁53 -6089 +uan -6090 +achus -6091 +▁Live -6092 +istered -6093 +jo -6094 +▁Why -6095 +▁balance -6096 +▁finish -6097 +▁kon -6098 +▁unl -6099 +▁truth -6100 +▁composition -6101 +▁1971 -6102 +▁Bi -6103 +▁gross -6104 +eper -6105 +▁Turn -6106 +▁Mot -6107 +theless -6108 +iger -6109 +▁Jenn -6110 +▁• -6111 +▁Hun -6112 +rates -6113 +▁apart -6114 +▁context -6115 +▁grass -6116 +▁Islam -6117 +▁Development -6118 +ès -6119 +▁overl -6120 +▁stock -6121 +▁1978 -6122 +▁decade -6123 +▁Engine -6124 +▁Indust -6125 +▁Social -6126 +▁strate -6127 +▁roughly -6128 +▁recru -6129 +▁fashion -6130 +formation -6131 +then -6132 +▁starts -6133 +▁strategy -6134 +▁Square -6135 +nce -6136 +▁Ca -6137 +▁turning -6138 +▁concerned -6139 +▁rhy -6140 +▁intelligence -6141 +▁retired -6142 +▁gall -6143 +▁56 -6144 +othing -6145 +▁essay -6146 +▁technical -6147 +▁Program -6148 +▁phen -6149 +▁consult -6150 +IC -6151 +▁Lear -6152 +▁Doctor -6153 +▁Studios -6154 +▁responsibility -6155 +awa -6156 +▁Hay -6157 +ifications -6158 +▁1981 -6159 +▁relative -6160 +▁missing -6161 +▁surrender -6162 +FA -6163 +▁800 -6164 +▁Conference -6165 +▁arrival -6166 +▁ocean -6167 +idden -6168 +▁cab -6169 +▁ri -6170 +▁Sound -6171 +▁vit -6172 +▁snow -6173 +ensus -6174 +▁kilometres -6175 +osite -6176 +▁expand -6177 +▁applications -6178 +▁supplies -6179 +▁patterns -6180 +▁emotional -6181 +ologists -6182 +▁Ast -6183 +▁Fantasy -6184 +▁178 -6185 +▁See -6186 +▁predict -6187 +lig -6188 +onym -6189 +▁agent -6190 +▁increases -6191 +▁remove -6192 +▁Jr -6193 +BS -6194 +achusetts -6195 +▁losses -6196 +roc -6197 +▁technique -6198 +▁Brook -6199 +▁infantry -6200 +▁advent -6201 +ulpt -6202 +▁singing -6203 +▁enl -6204 +▁eating -6205 +▁Po -6206 +▁download -6207 +enses -6208 +▁Bell -6209 +▁upgr -6210 +▁Massachusetts -6211 +▁flooding -6212 +▁van -6213 +▁alcohol -6214 +olt -6215 +▁Earl -6216 +▁Lewis -6217 +OR -6218 +ée -6219 +rum -6220 +▁squadron -6221 +iciency -6222 +▁functions -6223 +▁relationships -6224 +▁Ok -6225 +▁ty -6226 +▁liqu -6227 +▁door -6228 +▁satis -6229 +▁pè -6230 +▁Liver -6231 +▁ord -6232 +▁vul -6233 +elly -6234 +▁Michel -6235 +▁Miller -6236 +going -6237 +▁alle -6238 +▁headquarters -6239 +▁Gulf -6240 +▁Prime -6241 +▁soul -6242 +▁themes -6243 +▁vehicle -6244 +urance -6245 +▁1914 -6246 +▁carrying -6247 +▁Pu -6248 +ilton -6249 +▁permanent -6250 +▁Wars -6251 +▁Korean -6252 +▁Command -6253 +▁explain -6254 +▁Shak -6255 +▁indicated -6256 +▁Mul -6257 +▁Human -6258 +unicip -6259 +▁infect -6260 +▁commissioned -6261 +▁steps -6262 +▁filmed -6263 +▁41 -6264 +agues -6265 +▁Ari -6266 +EC -6267 +▁policies -6268 +▁Between -6269 +abil -6270 +▁Supreme -6271 +▁otherwise -6272 +▁garden -6273 +▁eggs -6274 +▁Forest -6275 +▁filming -6276 +▁bond -6277 +avalry -6278 +▁transition -6279 +▁Anderson -6280 +erg -6281 +atically -6282 +▁Roberto -6283 +▁independence -6284 +▁Bad -6285 +▁Tam -6286 +▁aer -6287 +bal -6288 +▁surpris -6289 +▁steam -6290 +▁sounds -6291 +▁merch -6292 +▁dangerous -6293 +▁ban -6294 +▁1918 -6295 +▁seventh -6296 +▁designs -6297 +▁Balt -6298 +▁dens -6299 +icians -6300 +cknow -6301 +▁linked -6302 +▁sections -6303 +▁bass -6304 +▁vessels -6305 +IT -6306 +▁1977 -6307 +▁earliest -6308 +▁gradually -6309 +igration -6310 +▁drama -6311 +▁Profess -6312 +▁Id -6313 +75 -6314 +▁crime -6315 +▁relief -6316 +▁grade -6317 +▁slowly -6318 +▁Frit -6319 +▁characteristics -6320 +ooth -6321 +▁regional -6322 +▁interests -6323 +▁sole -6324 +▁athlet -6325 +▁Gro -6326 +▁fly -6327 +▁von -6328 +▁scheduled -6329 +▁Back -6330 +ikal -6331 +▁decline -6332 +▁ori -6333 +box -6334 +▁IV -6335 +▁boats -6336 +▁titles -6337 +▁wonder -6338 +▁bright -6339 +▁exposed -6340 +▁interchange -6341 +▁Budd -6342 +▁reprodu -6343 +▁regularly -6344 +ivered -6345 +ía -6346 +▁emergency -6347 +▁teach -6348 +ector -6349 +▁Bon -6350 +▁Tropical -6351 +▁upd -6352 +▁Spring -6353 +▁camera -6354 +icide -6355 +▁Nap -6356 +▁mounted -6357 +▁derived -6358 +▁Organ -6359 +▁entry -6360 +gers -6361 +ipping -6362 +▁ceremony -6363 +lee -6364 +▁changing -6365 +una -6366 +▁Cas -6367 +worth -6368 +mann -6369 +oli -6370 +▁defence -6371 +▁shark -6372 +▁landsc -6373 +uations -6374 +▁renew -6375 +▁expedition -6376 +▁Davis -6377 +▁users -6378 +ossible -6379 +▁Ve -6380 +▁baby -6381 +▁credit -6382 +▁exclus -6383 +▁sed -6384 +▁arc -6385 +▁Grant -6386 +▁personnel -6387 +▁(200 -6388 +▁possibility -6389 +idges -6390 +athan -6391 +▁tick -6392 +▁pric -6393 +▁solo -6394 +▁76 -6395 +▁torpedo -6396 +▁shaped -6397 +apore -6398 +▁formal -6399 +▁buried -6400 +▁bacteria -6401 +▁corpor -6402 +etball -6403 +ED -6404 +don -6405 +▁Whe -6406 +▁Ty -6407 +▁alt -6408 +▁web -6409 +▁ISBN -6410 +espread -6411 +▁Constitution -6412 +▁zone -6413 +ila -6414 +▁proceed -6415 +▁raise -6416 +▁coastal -6417 +unch -6418 +wall -6419 +▁funds -6420 +▁Germans -6421 +▁criticism -6422 +▁kèk -6423 +▁Univers -6424 +▁sell -6425 +ador -6426 +▁delivered -6427 +▁Ross -6428 +▁converted -6429 +▁lap -6430 +▁Federal -6431 +▁Independ -6432 +▁politics -6433 +▁acres -6434 +▁speaking -6435 +▁1, -6436 +▁Ur -6437 +edia -6438 +▁colour -6439 +▁Walter -6440 +▁Broad -6441 +▁describe -6442 +▁Moon -6443 +▁notable -6444 +▁Age -6445 +▁Ta -6446 +taining -6447 +▁SR -6448 +▁send -6449 +▁oxygen -6450 +lan -6451 +22 -6452 +▁possess -6453 +▁defensive -6454 +▁Singapore -6455 +▁acknow -6456 +vements -6457 +▁Order -6458 +▁frag -6459 +▁convent -6460 +▁semi -6461 +▁58 -6462 +▁Ken -6463 +▁taught -6464 +▁subs -6465 +champ -6466 +▁astron -6467 +▁250 -6468 +▁Steve -6469 +organ -6470 +▁Kentucky -6471 +▁Fair -6472 +▁debate -6473 +▁assistance -6474 +▁gwo -6475 +▁Lady -6476 +▁enjoyed -6477 +▁Pass -6478 +obe -6479 +▁2018 -6480 +▁option -6481 +▁movements -6482 +▁occas -6483 +▁purchase -6484 +ante -6485 +▁ò -6486 +▁sculpt -6487 +▁Emperor -6488 +ito -6489 +▁discovery -6490 +upt -6491 +▁attached -6492 +▁Dark -6493 +iveness -6494 +▁franch -6495 +▁comedy -6496 +▁popularity -6497 +mouth -6498 +▁excell -6499 +▁settlement -6500 +▁equivalent -6501 +▁ancest -6502 +▁volunte -6503 +▁pure -6504 +▁Fritz -6505 +▁brothers -6506 +▁1917 -6507 +▁installed -6508 +ompl -6509 +emble -6510 +▁visible -6511 +▁cited -6512 +ulating -6513 +▁battalion -6514 +▁Lat -6515 +▁flo -6516 +▁1915 -6517 +iro -6518 +▁investigation -6519 +RA -6520 +ibb -6521 +▁helping -6522 +▁males -6523 +▁constant -6524 +aina -6525 +▁massive -6526 +▁Liverpool -6527 +aked -6528 +rets -6529 +▁1916 -6530 +▁clearly -6531 +▁highlight -6532 +▁suffering -6533 +▁shut -6534 +opher -6535 +▁Democratic -6536 +▁breeding -6537 +▁jump -6538 +▁writes -6539 +▁opposite -6540 +▁Nations -6541 +▁guide -6542 +▁sud -6543 +▁girls -6544 +▁educational -6545 +▁looked -6546 +▁orchest -6547 +▁Director -6548 +ione -6549 +▁Disc -6550 +▁piano -6551 +▁estate -6552 +▁meters -6553 +▁stopped -6554 +▁compris -6555 +▁degrees -6556 +burgh -6557 +urally -6558 +ènman -6559 +▁Supp -6560 +raph -6561 +eline -6562 +▁Barb -6563 +9. -6564 +▁injured -6565 +▁PC -6566 +▁recognition -6567 +▁Daily -6568 +state -6569 +▁sugar -6570 +▁principal -6571 +▁involving -6572 +▁department -6573 +▁funding -6574 +▁66 -6575 +▁Carey -6576 +▁efficient -6577 +▁1963 -6578 +▁accompl -6579 +▁Walk -6580 +▁bands -6581 +▁extent -6582 +▁Olympic -6583 +▁disturb -6584 +▁fal -6585 +▁widespread -6586 +▁(20 -6587 +▁Fire -6588 +▁Additionally -6589 +aser -6590 +aka -6591 +▁detailed -6592 +▁components -6593 +▁isn -6594 +▁Kir -6595 +▁1948 -6596 +▁Vietnam -6597 +ali -6598 +sey -6599 +▁Ren -6600 +▁Emmanuel -6601 +▁injuries -6602 +▁crown -6603 +▁Ba -6604 +▁fè -6605 +▁shooting -6606 +▁od -6607 +▁mode -6608 +▁hearing -6609 +▁tool -6610 +▁greatly -6611 +▁Brian -6612 +▁Vill -6613 +▁engineering -6614 +▁dream -6615 +▁therapy -6616 +▁languages -6617 +friend -6618 +▁accounts -6619 +▁Storm -6620 +▁Anton -6621 +regon -6622 +▁reputation -6623 +▁Str -6624 +▁1946 -6625 +▁evening -6626 +▁declined -6627 +▁indicate -6628 +▁ped -6629 +▁submar -6630 +▁hundreds -6631 +▁pig -6632 +▁Summer -6633 +▁females -6634 +▁57 -6635 +▁Radio -6636 +▁Main -6637 +iminal -6638 +▁purposes -6639 +▁owner -6640 +rane -6641 +asure -6642 +▁conqu -6643 +roke -6644 +▁shop -6645 +▁towns -6646 +▁trains -6647 +▁committed -6648 +cop -6649 +▁duty -6650 +▁Offic -6651 +▁layer -6652 +hered -6653 +▁supposed -6654 +▁Lieutenant -6655 +▁Ball -6656 +▁volcan -6657 +FL -6658 +▁Han -6659 +tenance -6660 +▁Color -6661 +èz -6662 +▁difficulty -6663 +▁Alf -6664 +issance -6665 +▁storage -6666 +▁considerable -6667 +▁discussed -6668 +▁rated -6669 +▁rive -6670 +bell -6671 +▁clim -6672 +▁casualties -6673 +dy -6674 +ieval -6675 +▁pitch -6676 +▁keeping -6677 +▁tact -6678 +▁160 -6679 +lets -6680 +▁corner -6681 +▁Rey -6682 +▁Hart -6683 +▁opportunities -6684 +uct -6685 +▁sik -6686 +▁Oregon -6687 +rehens -6688 +▁requirements -6689 +▁Kim -6690 +▁rebu -6691 +ader -6692 +▁ment -6693 +▁bone -6694 +▁throw -6695 +oster -6696 +▁desire -6697 +▁Gord -6698 +▁Station -6699 +▁fil -6700 +▁advice -6701 +▁extreme -6702 +ieties -6703 +▁cou -6704 +inois -6705 +▁library -6706 +unior -6707 +▁proport -6708 +▁refers -6709 +▁satell -6710 +▁Justice -6711 +ilation -6712 +▁touchdown -6713 +adow -6714 +▁sustained -6715 +▁Last -6716 +▁threatened -6717 +▁hired -6718 +▁Arts -6719 +aska -6720 +▁periods -6721 +ework -6722 +▁sudden -6723 +▁crisis -6724 +▁les -6725 +real -6726 +▁happened -6727 +▁Ly -6728 +▁Ple -6729 +riers -6730 +▁surgery -6731 +▁Confeder -6732 +manse -6733 +▁Mars -6734 +▁Pierre -6735 +▁ògan -6736 +olis -6737 +▁Byz -6738 +▁goods -6739 +▁Poland -6740 +▁candidate -6741 +▁charts -6742 +▁voy -6743 +▁dates -6744 +oto -6745 +ographer -6746 +▁74 -6747 +ragon -6748 +▁99 -6749 +▁professor -6750 +▁Library -6751 +atters -6752 +▁stands -6753 +▁uncle -6754 +▁chapter -6755 +▁southeast -6756 +▁kou -6757 +▁passage -6758 +▁seeing -6759 +▁gal -6760 +▁Greg -6761 +eman -6762 +▁Syd -6763 +▁Anth -6764 +▁Pict -6765 +▁Nintend -6766 +▁Disney -6767 +▁preced -6768 +aria -6769 +erted -6770 +▁destruction -6771 +▁trail -6772 +yer -6773 +▁Get -6774 +col -6775 +▁1962 -6776 +▁engines -6777 +abilities -6778 +▁Robaina -6779 +▁challenges -6780 +ON -6781 +▁Nintendo -6782 +▁strongly -6783 +▁succeeded -6784 +udes -6785 +▁Lo -6786 +▁intersection -6787 +▁2004. -6788 +iration -6789 +▁neighbor -6790 +body -6791 +▁nick -6792 +www -6793 +▁Album -6794 +▁comic -6795 +▁Free -6796 +▁seed -6797 +wing -6798 +uccess -6799 +▁Popilasyon -6800 +lav -6801 +zyèm -6802 +▁Simon -6803 +▁sector -6804 +▁Labor -6805 +▁matem -6806 +▁headed -6807 +▁ju -6808 +▁Hollywood -6809 +▁immediate -6810 +aret -6811 +▁drew -6812 +▁Sunday -6813 +▁bought -6814 +roid -6815 +▁Abb -6816 +▁entrance -6817 +rine -6818 +▁Foundation -6819 +▁reserv -6820 +▁breed -6821 +▁entitled -6822 +▁Serb -6823 +▁appeal -6824 +▁dress -6825 +IA -6826 +▁arranged -6827 +▁tissue -6828 +▁temple -6829 +____ -6830 +eler -6831 +emies -6832 +uable -6833 +▁neither -6834 +ommod -6835 +▁watched -6836 +▁spok -6837 +wen -6838 +▁depending -6839 +7. -6840 +ja -6841 +▁nest -6842 +insula -6843 +▁inner -6844 +ache -6845 +▁options -6846 +▁Norway -6847 +èf -6848 +▁hang -6849 +abled -6850 +▁Portug -6851 +▁Holy -6852 +▁Ron -6853 +ranean -6854 +▁51 -6855 +▁Leon -6856 +▁Vide -6857 +ouvènman -6858 +▁contest -6859 +▁amounts -6860 +no -6861 +▁stick -6862 +▁charged -6863 +▁southwest -6864 +place -6865 +rieved -6866 +▁awards -6867 +▁responded -6868 +point -6869 +abetes -6870 +▁association -6871 +▁discussion -6872 +▁none -6873 +▁Golden -6874 +▁obvious -6875 +▁alf -6876 +▁chain -6877 +▁survived -6878 +▁user -6879 +▁Maria -6880 +▁minimum -6881 +▁alman -6882 +▁lose -6883 +▁Low -6884 +▁exactly -6885 +▁Maryland -6886 +▁bringing -6887 +▁stim -6888 +▁fèt -6889 +▁argument -6890 +ervative -6891 +▁decisions -6892 +▁craft -6893 +▁wet -6894 +▁Environment -6895 +▁disorder -6896 +▁cricket -6897 +▁Jane -6898 +▁ruled -6899 +ocal -6900 +▁outbreak -6901 +▁synd -6902 +▁oldest -6903 +▁decor -6904 +▁poly -6905 +▁photograph -6906 +▁swim -6907 +▁employees -6908 +▁bask -6909 +▁Chart -6910 +▁beautiful -6911 +▁electricity -6912 +▁mathemat -6913 +▁consumption -6914 +▁grown -6915 +▁59 -6916 +▁Dig -6917 +▁sight -6918 +▁Tout -6919 +osh -6920 +▁comfort -6921 +▁Francis -6922 +engers -6923 +▁timoun -6924 +▁Cape -6925 +▁unusual -6926 +▁moral -6927 +▁subjects -6928 +▁Internet -6929 +rep -6930 +▁antib -6931 +▁spin -6932 +▁Similar -6933 +▁62 -6934 +▁televizyon -6935 +▁NAS -6936 +▁McG -6937 +▁generated -6938 +ureau -6939 +▁Nick -6940 +▁nations -6941 +▁bear -6942 +orrow -6943 +▁stem -6944 +▁gather -6945 +▁Circ -6946 +▁extension -6947 +▁architecture -6948 +▁partner -6949 +▁serves -6950 +▁shif -6951 +▁Konst -6952 +▁Patrick -6953 +▁exception -6954 +OS -6955 +▁medium -6956 +▁amer -6957 +▁Domin -6958 +▁Adam -6959 +▁reserve -6960 +▁proposal -6961 +▁72 -6962 +▁campus -6963 +▁entering -6964 +term -6965 +ashed -6966 +oked -6967 +Station -6968 +▁dezyèm -6969 +▁unsuccess -6970 +▁HMS -6971 +▁wrest -6972 +▁Railway -6973 +▁signal -6974 +amental -6975 +▁grounds -6976 +▁Ka -6977 +▁gone -6978 +▁teen -6979 +▁biggest -6980 +▁reducing -6981 +▁Cra -6982 +▁fer -6983 +▁depos -6984 +▁Pak -6985 +▁seemed -6986 +hus -6987 +▁restaur -6988 +▁tanks -6989 +▁vert -6990 +▁Dat -6991 +▁prisoners -6992 +▁Indiana -6993 +▁Imperial -6994 +▁breast -6995 +▁vulner -6996 +▁childhood -6997 +▁PlayStation -6998 +▁institutions -6999 +▁literary -7000 +▁approached -7001 +▁Hug -7002 +▁aw -7003 +▁chronic -7004 +iversary -7005 +▁1956 -7006 +▁Dream -7007 +irt -7008 +▁1938 -7009 +▁phr -7010 +▁assistant -7011 +oard -7012 +▁settled -7013 +▁ham -7014 +▁conclusion -7015 +▁Sel -7016 +anger -7017 +▁normally -7018 +▁articles -7019 +iated -7020 +▁mir -7021 +▁Sab -7022 +▁absol -7023 +arant -7024 +▁notice -7025 +ses -7026 +bound -7027 +▁lies -7028 +▁meat -7029 +▁chans -7030 +▁Roger -7031 +▁pull -7032 +bec -7033 +ko -7034 +▁lasted -7035 +▁Such -7036 +▁piti -7037 +▁universe -7038 +▁renamed -7039 +▁63 -7040 +pat -7041 +asks -7042 +▁spons -7043 +▁closer -7044 +rell -7045 +▁Run -7046 +▁Network -7047 +▁expression -7048 +ails -7049 +fe -7050 +▁outer -7051 +▁ille -7052 +▁yield -7053 +▁Dougl -7054 +▁Colonel -7055 +▁mic -7056 +▁plate -7057 +▁retained -7058 +▁nonm -7059 +▁measured -7060 +▁neck -7061 +▁anx -7062 +▁strengthen -7063 +leton -7064 +▁1961 -7065 +▁folk -7066 +▁USA -7067 +inton -7068 +▁Rhod -7069 +▁Moore -7070 +▁driven -7071 +▁medicine -7072 +▁Unlike -7073 +bi -7074 +▁warning -7075 +▁73 -7076 +▁adapted -7077 +▁agricultural -7078 +▁facility -7079 +ogy -7080 +▁Ira -7081 +▁apply -7082 +▁circulation -7083 +▁somewhat -7084 +▁dynam -7085 +▁700 -7086 +▁Barn -7087 +▁equipped -7088 +▁happen -7089 +▁Sydney -7090 +▁òganizasyon -7091 +resents -7092 +▁circumst -7093 +▁wearing -7094 +▁accommod -7095 +▁definition -7096 +ais -7097 +▁Dab -7098 +owa -7099 +▁Ext -7100 +▁Tel -7101 +▁tooth -7102 +ardo -7103 +weight -7104 +▁Ottoman -7105 +onot -7106 +▁familiar -7107 +hetic -7108 +▁Anne -7109 +▁1958 -7110 +▁holds -7111 +▁moves -7112 +▁weakened -7113 +▁spiritual -7114 +▁Base -7115 +▁squad -7116 +▁trained -7117 +▁consisting -7118 +Ar -7119 +We -7120 +▁principles -7121 +▁68 -7122 +▁Jord -7123 +▁veter -7124 +▁assumed -7125 +▁Es -7126 +rett -7127 +▁rose -7128 +▁apprec -7129 +▁Gill -7130 +▁operate -7131 +ester -7132 +▁http -7133 +▁0. -7134 +eri -7135 +▁Within -7136 +▁duties -7137 +▁sample -7138 +▁Lin -7139 +▁Illinois -7140 +▁routes -7141 +▁Rose -7142 +▁Cab -7143 +▁Roy -7144 +aware -7145 +andom -7146 +▁explains -7147 +▁Longchamp -7148 +eenth -7149 +▁Espò -7150 +▁happy -7151 +riksyon -7152 +▁Indones -7153 +▁underst -7154 +▁restrict -7155 +bra -7156 +▁Whit -7157 +▁mamm -7158 +▁archae -7159 +achel -7160 +▁ideal -7161 +▁NHL -7162 +▁dogs -7163 +istans -7164 +▁category -7165 +izin -7166 +▁Prem -7167 +▁otor -7168 +icy -7169 +▁Stew -7170 +▁lake -7171 +▁motiv -7172 +iva -7173 +oys -7174 +▁fert -7175 +▁creative -7176 +▁feelings -7177 +▁output -7178 +do -7179 +atè -7180 +▁Bir -7181 +aid -7182 +▁thousand -7183 +ribed -7184 +con -7185 +after -7186 +▁habitat -7187 +SA -7188 +▁window -7189 +▁Ped -7190 +▁maintenance -7191 +▁sivil -7192 +orous -7193 +▁1962, -7194 +Th -7195 +orney -7196 +▁sisp -7197 +▁pages -7198 +▁credited -7199 +▁legislation -7200 +thm -7201 +▁partn -7202 +▁navig -7203 +▁represents -7204 +▁convin -7205 +▁legs -7206 +▁impossible -7207 +▁radyo -7208 +▁Family -7209 +▁begun -7210 +▁easier -7211 +▁96 -7212 +where -7213 +borne -7214 +▁promotion -7215 +▁Ale -7216 +▁Again -7217 +▁130 -7218 +▁genre -7219 +▁ax -7220 +active -7221 +arsh -7222 +▁spend -7223 +▁Kat -7224 +▁returns -7225 +▁Kilti -7226 +▁establishment -7227 +▁77 -7228 +andy -7229 +▁hits -7230 +▁looks -7231 +▁1936 -7232 +▁actress -7233 +▁Nether -7234 +▁instruments -7235 +ić -7236 +▁invited -7237 +▁describing -7238 +wan -7239 +▁kontak -7240 +▁classified -7241 +▁medikal -7242 +▁segment -7243 +▁file -7244 +▁otorite -7245 +▁distributed -7246 +▁Korea -7247 +▁Kreyòl -7248 +▁perspective -7249 +▁Hitler -7250 +▁faster -7251 +▁profession -7252 +▁Sante -7253 +▁78 -7254 +elye -7255 +CC -7256 +▁bag -7257 +▁Pur -7258 +▁sispann -7259 +using -7260 +▁businesses -7261 +▁franchise -7262 +▁separated -7263 +▁replacement -7264 +rikilti -7265 +▁Kong -7266 +▁simpl -7267 +▁Minnes -7268 +▁expert -7269 +▁Hamilton -7270 +▁Gib -7271 +iterranean -7272 +▁absence -7273 +BI -7274 +▁Cre -7275 +▁4. -7276 +▁1959 -7277 +asters -7278 +ami -7279 +▁surf -7280 +▁1904. -7281 +▁radiation -7282 +▁Laure -7283 +▁sessions -7284 +▁Feder -7285 +▁ing -7286 +▁Gouvènman -7287 +aug -7288 +▁emerged -7289 +▁1957 -7290 +▁Missouri -7291 +▁diplomatik -7292 +oncé -7293 +▁adjust -7294 +▁format -7295 +▁emissions -7296 +▁owners -7297 +▁wed -7298 +▁cooper -7299 +▁Sav -7300 +▁intention -7301 +▁Corpor -7302 +▁admitted -7303 +rant -7304 +▁favorite -7305 +▁Alb -7306 +▁conscious -7307 +▁1919 -7308 +▁reven -7309 +zon -7310 +▁Mountain -7311 +▁baseball -7312 +acher -7313 +▁1947 -7314 +▁estasyon -7315 +▁historic -7316 +▁rub -7317 +▁posted -7318 +orted -7319 +▁phenomen -7320 +oming -7321 +▁crossed -7322 +▁Bush -7323 +▁Kooper -7324 +▁Turk -7325 +▁Staff -7326 +uts -7327 +▁immune -7328 +omic -7329 +▁courts -7330 +▁Mediterranean -7331 +▁Gordon -7332 +▁Indians -7333 +▁expensive -7334 +itter -7335 +iqu -7336 +21 -7337 +▁conservation -7338 +▁pp -7339 +▁persu -7340 +▁excellent -7341 +▁gameplay -7342 +chang -7343 +▁Olympics -7344 +ching -7345 +▁agree -7346 +▁Sinema -7347 +▁forming -7348 +▁storyline -7349 +▁); -7350 +▁Agrikilti -7351 +▁1953 -7352 +▁asistans -7353 +▁1955 -7354 +▁Know -7355 +▁dwèt -7356 +▁Naval -7357 +▁Assembly -7358 +▁Adams -7359 +▁breaking -7360 +▁Howard -7361 +▁Heart -7362 +▁Touris -7363 +▁mand -7364 +▁alfabet -7365 +▁Beyoncé -7366 +▁lb -7367 +▁jobs -7368 +▁Pèsonalite -7369 +▁Airport -7370 +”. -7371 +▁Pit -7372 +▁hal -7373 +▁encouraged -7374 +▁reprann -7375 +ellect -7376 +inction -7377 +▁arrested -7378 +▁worst -7379 +▁deleg -7380 +▁Konstriksyon -7381 +▁69 -7382 +▁vast -7383 +▁alfabetizasyon -7384 +OT -7385 +▁trials -7386 +▁koumanse -7387 +▁pèsonalite -7388 +▁OEA -7389 +▁Pèch -7390 +▁300000 -7391 +▁stadium -7392 +▁Centre -7393 +▁ethnic -7394 +▁chanselye -7395 +onotik -7396 +▁Five -7397 +ewonotik -7398 +▁Dabòn -7399 +▁survive -7400 +▁Author -7401 +▁Kooperasyon -7402 +▁Therefore -7403 +▁modified -7404 +▁Jay -7405 +uster -7406 +▁Aewonotik -7407 +▁ble -7408 +▁Asian -7409 +iller -7410 +▁spr -7411 +▁177 -7412 +▁classic -7413 +▁Shortly -7414 +▁participate -7415 +▁colonial -7416 +▁dating -7417 +▁sail -7418 +▁protest -7419 +▁Sym -7420 +▁ca -7421 +athy -7422 +▁suitable -7423 +▁Dra -7424 +▁1910 -7425 +▁drinking -7426 +▁attributed -7427 +western -7428 +▁programme -7429 +incess -7430 +▁prey -7431 +▁victims -7432 +▁involves -7433 +ewhere -7434 +▁whereas -7435 +▁Kennedy -7436 +▁province -7437 +▁Pear -7438 +▁stable -7439 +▁VII -7440 +▁Hawai -7441 +nings -7442 +related -7443 +▁thirty -7444 +▁Minnesota -7445 +▁plane -7446 +▁Band -7447 +▁Temple -7448 +GN -7449 +▁ameriken -7450 +▁Der -7451 +hedral -7452 +▁detect -7453 +zer -7454 +▁shore -7455 +▁comments -7456 +▁yourself -7457 +▁Non -7458 +▁minister -7459 +PS -7460 +▁temporary -7461 +▁phone -7462 +itid -7463 +▁hill -7464 +▁Where -7465 +elson -7466 +▁superior -7467 +▁Memorial -7468 +▁Throughout -7469 +▁resemb -7470 +▁participants -7471 +spec -7472 +▁forests -7473 +▁drawing -7474 +▁Marg -7475 +▁Mexican -7476 +▁synthes -7477 +▁informed -7478 +45 -7479 +▁root -7480 +▁organic -7481 +olo -7482 +▁Jacob -7483 +▁stood -7484 +▁retreat -7485 +acent -7486 +▁penal -7487 +▁falling -7488 +▁copy -7489 +▁ru -7490 +▁Hou -7491 +▁Eric -7492 +▁Bos -7493 +ificial -7494 +▁Use -7495 +▁struggle -7496 +▁reduction -7497 +▁” -7498 +▁Alan -7499 +▁voted -7500 +iley -7501 +▁enemies -7502 +▁prepare -7503 +▁Those -7504 +ctic -7505 +▁description -7506 +▁charges -7507 +ré -7508 +▁premier -7509 +▁electronic -7510 +▁Bang -7511 +war -7512 +▁liquid -7513 +▁Nes -7514 +burn -7515 +▁Douglas -7516 +▁67 -7517 +otes -7518 +wick -7519 +▁Beach -7520 +▁Ele -7521 +▁Using -7522 +▁documents -7523 +▁concrete -7524 +▁refuge -7525 +▁110 -7526 +▁cul -7527 +▁1937 -7528 +▁Marine -7529 +ultane -7530 +heastern -7531 +indu -7532 +▁sons -7533 +▁Third -7534 +hire -7535 +▁Jordan -7536 +▁regiment -7537 +chen -7538 +▁Bab -7539 +▁Cart -7540 +emed -7541 +▁Marie -7542 +▁findings -7543 +▁parliament -7544 +▁repair -7545 +▁flowers -7546 +olas -7547 +▁custom -7548 +▁McK -7549 +▁pin -7550 +iac -7551 +▁Master -7552 +▁1954 -7553 +▁believes -7554 +▁certified -7555 +▁Hor -7556 +▁milk -7557 +▁manage -7558 +▁Matthew -7559 +▁Phys -7560 +▁Tony -7561 +apping -7562 +iox -7563 +▁incorporated -7564 +apse -7565 +▁Argent -7566 +▁accused -7567 +▁facing -7568 +iege -7569 +▁streets -7570 +coming -7571 +aks -7572 +▁dated -7573 +▁Rhodes -7574 +racy -7575 +▁fict -7576 +▁Santa -7577 +ints -7578 +▁Gab -7579 +▁roots -7580 +▁CE -7581 +esis -7582 +▁Lyn -7583 +▁foundation -7584 +▁98 -7585 +inding -7586 +▁Ho -7587 +▁occasionally -7588 +ografik -7589 +▁Hospital -7590 +ture -7591 +vens -7592 +▁frequent -7593 +▁Bh -7594 +▁milit -7595 +▁remainder -7596 +▁landfall -7597 +▁winner -7598 +▁stead -7599 +wich -7600 +▁grav -7601 +▁sacr -7602 +aki -7603 +▁tied -7604 +▁Food -7605 +▁Ford -7606 +bro -7607 +▁spoke -7608 +▁Medical -7609 +▁advoc -7610 +cho -7611 +▁alter -7612 +ete -7613 +▁reinforce -7614 +ivals -7615 +▁Gh -7616 +bourne -7617 +▁Muslim -7618 +▁portrayed -7619 +6. -7620 +▁freeway -7621 +▁channel -7622 +▁Magazine -7623 +▁missions -7624 +▁Iraq -7625 +▁recalled -7626 +▁controversy -7627 +itye -7628 +ailed -7629 +▁Stra -7630 +▁Iowa -7631 +▁municip -7632 +▁electrical -7633 +ulum -7634 +▁Bou -7635 +▁sick -7636 +▁soti -7637 +alities -7638 +▁bom -7639 +▁housing -7640 +erald -7641 +uv -7642 +▁Nob -7643 +▁monit -7644 +▁− -7645 +▁suit -7646 +roph -7647 +▁rooms -7648 +▁union -7649 +▁interior -7650 +▁explan -7651 +▁sale -7652 +▁denied -7653 +▁intense -7654 +▁involvement -7655 +▁intent -7656 +él -7657 +▁Bol -7658 +▁Songs -7659 +▁bon -7660 +▁Dog -7661 +35 -7662 +▁Conc -7663 +▁classical -7664 +▁hip -7665 +▁Ut -7666 +▁moderate -7667 +▁88 -7668 +▁jewografik -7669 +▁Bry -7670 +▁pounds -7671 +▁sin -7672 +▁175 -7673 +otype -7674 +err -7675 +psons -7676 +▁references -7677 +DA -7678 +▁Freder -7679 +phone -7680 +▁explore -7681 +▁ash -7682 +▁external -7683 +exp -7684 +▁colony -7685 +urches -7686 +▁waves -7687 +▁frequency -7688 +acc -7689 +▁Iron -7690 +▁adopt -7691 +▁Open -7692 +▁prol -7693 +▁concentration -7694 +ogether -7695 +▁Simpsons -7696 +cont -7697 +▁Alab -7698 +▁brand -7699 +▁opera -7700 +uther -7701 +▁narrative -7702 +▁historians -7703 +▁Video -7704 +erto -7705 +▁Modern -7706 +▁spending -7707 +▁almanak -7708 +▁Rain -7709 +▁Nich -7710 +▁hotel -7711 +▁memorial -7712 +▁explo -7713 +claimed -7714 +▁Ever -7715 +▁render -7716 +olar -7717 +▁noting -7718 +▁gene -7719 +▁listen -7720 +inations -7721 +▁continuing -7722 +▁prohib -7723 +▁visitors -7724 +▁Gun -7725 +night -7726 +▁Micro -7727 +▁proteins -7728 +▁covers -7729 +▁recovered -7730 +▁multi -7731 +▁knots -7732 +▁Theatre -7733 +▁Mississ -7734 +▁assessment -7735 +▁Lim -7736 +▁agents -7737 +▁uniform -7738 +opes -7739 +▁samples -7740 +▁torn -7741 +▁giant -7742 +▁certainly -7743 +▁Kr -7744 +▁Obs -7745 +▁Somet -7746 +▁Alabama -7747 +▁acknowled -7748 +onto -7749 +▁scheme -7750 +▁coordin -7751 +▁justice -7752 +▁Od -7753 +▁Administ -7754 +▁FA -7755 +▁uncertain -7756 +▁MTV -7757 +▁cryst -7758 +aws -7759 +▁prices -7760 +▁É -7761 +je -7762 +olitan -7763 +icon -7764 +dule -7765 +itzer -7766 +ersed -7767 +tes -7768 +▁substantial -7769 +▁surrounded -7770 +▁wants -7771 +▁salt -7772 +▁Ult -7773 +EN -7774 +▁Bowl -7775 +▁practical -7776 +▁Having -7777 +kes -7778 +▁gender -7779 +▁missed -7780 +▁Vis -7781 +osm -7782 +▁Prior -7783 +▁fixed -7784 +▁completion -7785 +▁1949 -7786 +▁kingdom -7787 +MA -7788 +ilit -7789 +▁supporters -7790 +▁mine -7791 +▁muscle -7792 +▁tested -7793 +ère -7794 +▁attracted -7795 +▁leta -7796 +▁cup -7797 +▁ske -7798 +igenous -7799 +▁component -7800 +▁1900 -7801 +▁judge -7802 +▁circuit -7803 +▁investment -7804 +▁bot -7805 +▁topic -7806 +▁readers -7807 +▁disappoint -7808 +▁Native -7809 +▁Any -7810 +▁eighth -7811 +eld -7812 +▁94 -7813 +▁ere -7814 +▁poison -7815 +▁persons -7816 +▁passengers -7817 +▁Cook -7818 +▁Philip -7819 +▁NC -7820 +▁Mit -7821 +▁diameter -7822 +▁relie -7823 +▁intellect -7824 +▁tub -7825 +▁AI -7826 +▁willing -7827 +▁classification -7828 +▁Bah -7829 +▁crash -7830 +▁rarely -7831 +lye -7832 +po -7833 +▁1935 -7834 +uma -7835 +▁alleged -7836 +▁inher -7837 +▁Around -7838 +▁behaviour -7839 +▁rivers -7840 +▁pointed -7841 +▁Professor -7842 +▁89 -7843 +▁medieval -7844 +ker -7845 +▁circumstances -7846 +aya -7847 +▁pron -7848 +aza -7849 +▁1952 -7850 +▁entertain -7851 +▁Tru -7852 +▁percentage -7853 +▁Init -7854 +zi -7855 +▁isolated -7856 +▁Netherlands -7857 +anth -7858 +usal -7859 +teenth -7860 +8. -7861 +▁pretty -7862 +▁crops -7863 +▁criminal -7864 +reck -7865 +ori -7866 +▁1933 -7867 +▁inhabit -7868 +▁obtain -7869 +▁surviv -7870 +▁poetry -7871 +▁79 -7872 +▁Raj -7873 +pet -7874 +estyle -7875 +▁vital -7876 +▁representing -7877 +ocol -7878 +apped -7879 +▁Tal -7880 +▁Norwe -7881 +gus -7882 +grad -7883 +cell -7884 +▁controll -7885 +▁restored -7886 +▁Media -7887 +▁Kevin -7888 +▁nerv -7889 +arr -7890 +▁87 -7891 +▁dollars -7892 +▁PA -7893 +atever -7894 +▁surviving -7895 +▁Transport -7896 +▁abund -7897 +▁Sweden -7898 +▁hosted -7899 +▁hunting -7900 +▁Sin -7901 +▁sitye -7902 +▁Rights -7903 +▁stayed -7904 +osaurus -7905 +▁plastic -7906 +▁Maur -7907 +ht -7908 +▁Stat -7909 +▁rig -7910 +▁nutri -7911 +ials -7912 +▁Mulder -7913 +▁comparison -7914 +▁difficulties -7915 +▁lect -7916 +▁smooth -7917 +etime -7918 +▁resolution -7919 +emor -7920 +aints -7921 +onomic -7922 +▁inspiration -7923 +▁tot -7924 +agle -7925 +▁governments -7926 +▁Fig -7927 +▁82 -7928 +uty -7929 +▁sees -7930 +▁curren -7931 +▁mobile -7932 +iner -7933 +▁diabetes -7934 +▁weapon -7935 +ogle -7936 +▁deter -7937 +han -7938 +▁Dick -7939 +▁seeking -7940 +▁pup -7941 +▁flex -7942 +▁Juan -7943 +▁elections -7944 +▁styles -7945 +▁falls -7946 +▁nurs -7947 +▁preferred -7948 +▁driver -7949 +▁UTC -7950 +▁Allen -7951 +iyografi -7952 +▁boys -7953 +▁Cooper -7954 +▁CR -7955 +▁Merc -7956 +▁composer -7957 +▁videos -7958 +▁farmers -7959 +▁properly -7960 +▁bes -7961 +▁playoff -7962 +▁turb -7963 +▁Hand -7964 +▁Cult -7965 +▁fill -7966 +year -7967 +▁Ryan -7968 +▁unn -7969 +▁shots -7970 +duction -7971 +▁1951 -7972 +▁Cost -7973 +▁plus -7974 +endment -7975 +▁fur -7976 +▁Bruce -7977 +▁valid -7978 +▁institution -7979 +▁Colorado -7980 +▁nit -7981 +▁Chèf -7982 +▁Lanc -7983 +CA -7984 +▁Channel -7985 +▁anniversary -7986 +▁Trib -7987 +▁Mississipp -7988 +▁Stadium -7989 +▁Berlin -7990 +▁Retrieved -7991 +olve -7992 +▁lung -7993 +▁Dor -7994 +▁nomination -7995 +▁accurate -7996 +▁watching -7997 +ng -7998 +▁AR -7999 +▁Finally -8000 +▁asc -8001 +senal -8002 +▁painted -8003 +▁parent -8004 +▁apparently -8005 +▁Hell -8006 +▁false -8007 +▁Morgan -8008 +▁simultane -8009 +▁neighborhood -8010 +▁bones -8011 +▁Phill -8012 +▁brigade -8013 +▁Call -8014 +▁technologies -8015 +▁talking -8016 +▁champion -8017 +▁wings -8018 +▁Fred -8019 +▁97 -8020 +▁aged -8021 +▁string -8022 +▁Along -8023 +▁concepts -8024 +▁partnership -8025 +▁commanded -8026 +veland -8027 +▁Greece -8028 +▁switch -8029 +▁Robinson -8030 +nold -8031 +▁Guide -8032 +▁restric -8033 +▁gard -8034 +▁asking -8035 +", -8036 +agonist -8037 +▁divisions -8038 +▁Row -8039 +▁demonstrated -8040 +▁< -8041 +▁Toronto -8042 +▁tempor -8043 +ET -8044 +▁Ger -8045 +▁NASA -8046 +▁Students -8047 +▁Nelson -8048 +▁medal -8049 +-20 -8050 +▁departure -8051 +elsh -8052 +▁angle -8053 +▁windows -8054 +▁clinical -8055 +▁fishing -8056 +▁reveals -8057 +▁demol -8058 +▁engage -8059 +▁wire -8060 +rastructure -8061 +elli -8062 +▁impress -8063 +▁Stanley -8064 +▁wooden -8065 +▁neutral -8066 +▁wasn -8067 +▁Kansas -8068 +▁Lisa -8069 +▁electron -8070 +chers -8071 +▁adaptation -8072 +phoon -8073 +▁hoped -8074 +▁à -8075 +▁doubt -8076 +▁Gard -8077 +▁Bible -8078 +▁tries -8079 +▁Samuel -8080 +▁personality -8081 +▁haz -8082 +▁toxic -8083 +▁comprehens -8084 +▁Publ -8085 +▁Aff -8086 +▁existed -8087 +▁Military -8088 +▁Imp -8089 +ods -8090 +▁potentially -8091 +▁Cru -8092 +▁aggress -8093 +▁fled -8094 +▁Vinc -8095 +▁orbit -8096 +▁collaboration -8097 +▁bay -8098 +▁IGN -8099 +▁convinced -8100 +▁votes -8101 +▁arts -8102 +▁José -8103 +▁cultiv -8104 +▁Belg -8105 +▁earthqu -8106 +iere -8107 +▁Mach -8108 +▁praise -8109 +▁Bishop -8110 +ST -8111 +òd -8112 +▁patrol -8113 +▁downtown -8114 +▁Cleveland -8115 +▁Hop -8116 +pan -8117 +▁sailed -8118 +▁unless -8119 +▁Norman -8120 +▁lowest -8121 +▁valuable -8122 +▁meets -8123 +▁armor -8124 +cription -8125 +olph -8126 +riven -8127 +▁approaches -8128 +ér -8129 +▁delayed -8130 +▁Norwegian -8131 +▁recover -8132 +▁obst -8133 +▁subt -8134 +▁DE -8135 +▁Born -8136 +▁controversial -8137 +rix -8138 +uters -8139 +▁Mort -8140 +▁particles -8141 +sole -8142 +▁Andy -8143 +▁awareness -8144 +▁coff -8145 +▁permission -8146 +▁Brist -8147 +-3 -8148 +▁preparation -8149 +▁Rick -8150 +▁gap -8151 +▁kit -8152 +▁Biyografi -8153 +▁orb -8154 +▁TH -8155 +▁input -8156 +▁monarch -8157 +▁railroad -8158 +It -8159 +▁requested -8160 +▁strategies -8161 +▁Mississippi -8162 +▁gat -8163 +▁Contin -8164 +én -8165 +▁disaster -8166 +▁agency -8167 +▁situations -8168 +▁Blood -8169 +ishment -8170 +▁evil -8171 +▁tone -8172 +rition -8173 +▁alien -8174 +▁2020 -8175 +▁Yank -8176 +▁wheel -8177 +ifies -8178 +▁Front -8179 +▁Jam -8180 +▁rescue -8181 +▁rising -8182 +atherine -8183 +amps -8184 +▁Chron -8185 +▁Furthermore -8186 +▁toler -8187 +▁philosophy -8188 +▁Nevertheless -8189 +iens -8190 +▁drink -8191 +▁sharp -8192 +▁dominated -8193 +▁solutions -8194 +xual -8195 +osystem -8196 +▁assemb -8197 +igrants -8198 +▁fewer -8199 +▁offering -8200 +▁fictional -8201 +▁84 -8202 +▁Brun -8203 +▁Real -8204 +▁oblig -8205 +▁abuse -8206 +omes -8207 +▁rid -8208 +▁climb -8209 +rans -8210 +▁dissip -8211 +▁experts -8212 +▁accum -8213 +▁animated -8214 +▁attempting -8215 +▁pictures -8216 +▁Natural -8217 +▁clubs -8218 +▁decide -8219 +▁HIV -8220 +▁tight -8221 +▁enthus -8222 +▁vessel -8223 +▁landscape -8224 +▁bran -8225 +▁indicates -8226 +▁principle -8227 +▁dub -8228 +alo -8229 +achment -8230 +▁controls -8231 +▁banks -8232 +uman -8233 +yard -8234 +▁survival -8235 +▁Morris -8236 +▁ben -8237 +▁Bor -8238 +▁frame -8239 +▁flower -8240 +AAF -8241 +▁err -8242 +▁Tar -8243 +▁Weekly -8244 +▁Ts -8245 +▁theatre -8246 +▁processing -8247 +azing -8248 +▁covering -8249 +▁offices -8250 +▁influences -8251 +▁discip -8252 +▁targets -8253 +▁loyal -8254 +▁understood -8255 +▁colleagues -8256 +▁Bird -8257 +▁Energy -8258 +▁Welsh -8259 +▁Tun -8260 +▁satellite -8261 +▁Lenn -8262 +▁encourage -8263 +▁contribute -8264 +▁1913 -8265 +fire -8266 +▁Sarah -8267 +▁moon -8268 +▁representative -8269 +▁Ah -8270 +▁schedule -8271 +▁Lane -8272 +-0 -8273 +rating -8274 +▁Guy -8275 +▁influential -8276 +▁usual -8277 +9, -8278 +itudes -8279 +▁id -8280 +wealth -8281 +▁finishing -8282 +▁93 -8283 +emet -8284 +▁seeds -8285 +▁festival -8286 +ls -8287 +▁Exper -8288 +▁predecess -8289 +▁prog -8290 +▁precip -8291 +▁walking -8292 +▁(1 -8293 +▁Studies -8294 +▁cutting -8295 +▁aboard -8296 +hist -8297 +▁eleven -8298 +▁86 -8299 +ronze -8300 +▁anticip -8301 +▁penalty -8302 +ibilities -8303 +▁tum -8304 +▁jur -8305 +▁deemed -8306 +▁Origin -8307 +▁residential -8308 +▁conventional -8309 +▁× -8310 +▁net -8311 +▁erect -8312 +▁claiming -8313 +▁Fa -8314 +orph -8315 +▁arrangement -8316 +▁Sn -8317 +gi -8318 +▁musicians -8319 +aux -8320 +▁Palest -8321 +▁Tok -8322 +▁Much -8323 +▁Less -8324 +▁marks -8325 +▁blocks -8326 +oyd -8327 +▁Scully -8328 +omot -8329 +▁Bristol -8330 +▁biological -8331 +▁Aud -8332 +agu -8333 +fish -8334 +stic -8335 +▁mac -8336 +▁throne -8337 +unc -8338 +▁recovery -8339 +nest -8340 +▁NBA -8341 +▁consistent -8342 +▁documentary -8343 +avery -8344 +▁els -8345 +▁feeding -8346 +▁experiments -8347 +ennis -8348 +▁truck -8349 +▁rit -8350 +▁DC -8351 +▁marine -8352 +▁Pope -8353 +▁reception -8354 +▁flank -8355 +▁papers -8356 +▁remn -8357 +▁horiz -8358 +atinum -8359 +▁cavalry -8360 +▁remix -8361 +lyn -8362 +▁executed -8363 +▁depicted -8364 +▁pushed -8365 +▁Rolling -8366 +▁terminus -8367 +▁Dal -8368 +▁elsewhere -8369 +▁Winter -8370 +zing -8371 +▁longest -8372 +▁characterized -8373 +▁prevented -8374 +ocracy -8375 +▁abilities -8376 +▁satisf -8377 +▁valley -8378 +▁Story -8379 +▁fitted -8380 +▁fossil -8381 +▁limits -8382 +icks -8383 +▁shift -8384 +▁landed -8385 +emetery -8386 +▁insects -8387 +▁observations -8388 +otton -8389 +▁Da -8390 +▁Mas -8391 +▁hem -8392 +▁Lam -8393 +▁friendly -8394 +▁Armen -8395 +▁delivery -8396 +▁Thompson -8397 +▁Corporation -8398 +▁sequel -8399 +▁links -8400 +noon -8401 +▁sky -8402 +▁prosp -8403 +uscript -8404 +▁afterwards -8405 +▁Ot -8406 +▁mit -8407 +▁hyper -8408 +▁ride -8409 +▁objective -8410 +▁Technology -8411 +▁Brother -8412 +▁races -8413 +ancer -8414 +ographical -8415 +▁Bernard -8416 +▁reconst -8417 +▁Wright -8418 +▁agriculture -8419 +▁density -8420 +▁matters -8421 +▁liver -8422 +5. -8423 +ilst -8424 +oly -8425 +pòt -8426 +▁beach -8427 +▁Carter -8428 +▁Russell -8429 +▁Jacques -8430 +▁telling -8431 +▁Finn -8432 +otyp -8433 +▁WWE -8434 +▁procedure -8435 +▁invent -8436 +▁Nesans -8437 +24 -8438 +▁Kal -8439 +gas -8440 +▁audio -8441 +▁Nature -8442 +▁Saf -8443 +▁cod -8444 +▁Spe -8445 +ruption -8446 +▁Cry -8447 +▁flash -8448 +anta -8449 +▁danger -8450 +▁hydrogen -8451 +▁belt -8452 +▁ratings -8453 +▁recip -8454 +▁Ark -8455 +▁tex -8456 +▁prove -8457 +▁appearing -8458 +▁rum -8459 +éd -8460 +▁strict -8461 +ixon -8462 +▁diverse -8463 +▁bat -8464 +▁partly -8465 +li -8466 +▁ST -8467 +care -8468 +▁1934 -8469 +▁adm -8470 +oga -8471 +▁Anthony -8472 +▁graphics -8473 +fare -8474 +▁Wat -8475 +▁deployed -8476 +▁presidential -8477 +▁indeed -8478 +▁assass -8479 +ui -8480 +ika -8481 +▁Sax -8482 +▁wish -8483 +▁monument -8484 +▁Nar -8485 +▁alg -8486 +▁disag -8487 +ivan -8488 +▁compounds -8489 +▁basketball -8490 +▁Dean -8491 +▁decrease -8492 +▁outl -8493 +ti -8494 +▁Puerto -8495 +▁pound -8496 +tre -8497 +▁colors -8498 +▁terror -8499 +▁happens -8500 +▁Police -8501 +▁Alexand -8502 +▁mountains -8503 +▁passenger -8504 +▁random -8505 +▁scenar -8506 +▁Ministry -8507 +▁Win -8508 +▁sup -8509 +▁ages -8510 +▁supplement -8511 +▁tasks -8512 +▁guarant -8513 +▁surprise -8514 +▁moist -8515 +▁advis -8516 +▁Mes -8517 +▁Death -8518 +▁infrastructure -8519 +rot -8520 +Ch -8521 +▁Las -8522 +▁aimed -8523 +▁coins -8524 +adi -8525 +▁paintings -8526 +▁Harris -8527 +▁verse -8528 +▁crosses -8529 +▁secured -8530 +▁airport -8531 +▁unlike -8532 +▁Read -8533 +▁enters -8534 +▁Roberts -8535 +▁fundamental -8536 +26 -8537 +▁hypothes -8538 +jan -8539 +▁Control -8540 +▁convention -8541 +▁sweet -8542 +▁Hans -8543 +▁fasc -8544 +▁recur -8545 +▁61 -8546 +▁1912 -8547 +eas -8548 +▁chest -8549 +▁churches -8550 +▁violent -8551 +▁manufacturing -8552 +▁risks -8553 +▁Houston -8554 +▁AS -8555 +▁chorus -8556 +umps -8557 +▁carrier -8558 +▁Look -8559 +▁overw -8560 +▁suffer -8561 +▁Commonwealth -8562 +▁accompany -8563 +▁mart -8564 +▁Beatles -8565 +oslav -8566 +▁relevant -8567 +▁manufactur -8568 +▁Kelly -8569 +▁markets -8570 +▁resource -8571 +see -8572 +▁empt -8573 +▁displayed -8574 +lah -8575 +ortunately -8576 +▁Rab -8577 +▁partially -8578 +▁bats -8579 +▁trouble -8580 +▁dismissed -8581 +▁romantic -8582 +▁USS -8583 +▁exists -8584 +▁dialogue -8585 +▁elder -8586 +▁vic -8587 +▁Make -8588 +▁Hend -8589 +▁engineer -8590 +▁founder -8591 +▁Diego -8592 +▁villages -8593 +▁demands -8594 +▁140 -8595 +▁putting -8596 +▁Fact -8597 +▁Building -8598 +▁recre -8599 +▁Quest -8600 +▁minimal -8601 +▁sav -8602 +lie -8603 +▁Horn -8604 +▁attacking -8605 +▁skill -8606 +asp -8607 +mad -8608 +rin -8609 +▁territories -8610 +▁coin -8611 +▁Byzantine -8612 +▁consequences -8613 +▁Small -8614 +ded -8615 +▁wickets -8616 +▁artificial -8617 +▁Arsenal -8618 +espe -8619 +▁Son -8620 +iks -8621 +▁Trust -8622 +▁extract -8623 +rus -8624 +vy -8625 +roit -8626 +▁Trad -8627 +▁liv -8628 +▁pip -8629 +▁Benj -8630 +23 -8631 +▁crucial -8632 +owder -8633 +▁efficiency -8634 +▁Late -8635 +enh -8636 +▁ray -8637 +▁Design -8638 +▁coverage -8639 +▁Hindu -8640 +▁slaves -8641 +▁ongoing -8642 +▁1927 -8643 +▁printed -8644 +itals -8645 +onies -8646 +▁vice -8647 +earing -8648 +▁stores -8649 +▁Set -8650 +▁reyalize -8651 +tery -8652 +▁improvement -8653 +▁5. -8654 +▁Parker -8655 +▁Garden -8656 +FC -8657 +▁suicide -8658 +▁tel -8659 +ounced -8660 +▁clothing -8661 +oen -8662 +▁sentence -8663 +▁preserved -8664 +▁genes -8665 +▁dramatic -8666 +▁picked -8667 +▁profit -8668 +▁formerly -8669 +▁Dur -8670 +▁lists -8671 +ocking -8672 +▁dies -8673 +eor -8674 +attered -8675 +▁mining -8676 +▁Murray -8677 +); -8678 +▁evolved -8679 +inces -8680 +▁commemor -8681 +ource -8682 +name -8683 +▁1932 -8684 +imore -8685 +▁Palace -8686 +▁anxiety -8687 +fit -8688 +rav -8689 +▁dominant -8690 +▁MS -8691 +▁syndrome -8692 +▁gay -8693 +▁interpre -8694 +▁afternoon -8695 +▁disorders -8696 +obile -8697 +▁forg -8698 +ourage -8699 +▁neighb -8700 +arth -8701 +bb -8702 +▁1911 -8703 +▁Premier -8704 +▁aqu -8705 +▁Mess -8706 +▁therm -8707 +aired -8708 +▁boil -8709 +▁panel -8710 +▁Marshall -8711 +▁1926 -8712 +▁considering -8713 +▁Cuba -8714 +▁pace -8715 +▁Anna -8716 +▁bombard -8717 +▁approval -8718 +▁summ -8719 +▁encounter -8720 +▁encountered -8721 +▁Singles -8722 +onsin -8723 +▁Swedish -8724 +▁strip -8725 +▁Wy -8726 +▁tribes -8727 +▁releases -8728 +▁Advent -8729 +▁tag -8730 +oven -8731 +▁Psych -8732 +▁collapse -8733 +▁Area -8734 +▁diagnosis -8735 +▁intervention -8736 +òm -8737 +rator -8738 +▁cogn -8739 +▁battleships -8740 +▁adjacent -8741 +▁Data -8742 +▁quiet -8743 +▁announce -8744 +▁notably -8745 +acle -8746 +▁colonies -8747 +▁Take -8748 +▁Turkish -8749 +▁forth -8750 +44 -8751 +▁pap -8752 +ibbean -8753 +▁Business -8754 +▁Ban -8755 +agen -8756 +▁Pin -8757 +▁continu -8758 +▁Jess -8759 +▁Silver -8760 +▁merely -8761 +sters -8762 +▁vertical -8763 +isconsin -8764 +▁Lon -8765 +otten -8766 +▁dimens -8767 +▁interaction -8768 +eu -8769 +▁courses -8770 +▁Oliv -8771 +yd -8772 +▁os -8773 +▁Mario -8774 +isd -8775 +▁firing -8776 +bòl -8777 +-8 -8778 +▁Austria -8779 +▁Wrest -8780 +▁traveled -8781 +▁appointment -8782 +▁Fame -8783 +▁pollution -8784 +▁Fem -8785 +fficient -8786 +ropolitan -8787 +▁span -8788 +▁removal -8789 +acon -8790 +▁surge -8791 +▁employment -8792 +verty -8793 +▁Wisconsin -8794 +▁ninth -8795 +▁legend -8796 +▁hat -8797 +▁vel -8798 +▁Iran -8799 +▁Tenness -8800 +irèl -8801 +▁ratio -8802 +▁Clinton -8803 +arked -8804 +▁Egyptian -8805 +▁inflamm -8806 +▁circle -8807 +▁tekn -8808 +▁diversity -8809 +▁facts -8810 +▁Caribbean -8811 +▁Hud -8812 +▁submarine -8813 +▁transportation -8814 +▁rhythm -8815 +▁Hungarian -8816 +▁underground -8817 +ét -8818 +▁Ariz -8819 +▁classroom -8820 +▁specimens -8821 +▁manuscript -8822 +▁compens -8823 +▁debt -8824 +away -8825 +▁saved -8826 +▁fighter -8827 +▁ou -8828 +▁retirement -8829 +▁Buck -8830 +▁Lawrence -8831 +espeare -8832 +▁Connect -8833 +anny -8834 +utor -8835 +▁loan -8836 +▁scholar -8837 +▁successor -8838 +▁infections -8839 +nt -8840 +▁extend -8841 +▁poverty -8842 +OC -8843 +▁afford -8844 +▁vulnerable -8845 +eign -8846 +▁Croatian -8847 +▁AN -8848 +▁facilit -8849 +▁Apple -8850 +▁programming -8851 +▁fab -8852 +▁push -8853 +▁songwrit -8854 +▁Expl -8855 +▁Nazi -8856 +▁ranging -8857 +orious -8858 +▁dust -8859 +▁ecosystem -8860 +▁reflected -8861 +▁170 -8862 +▁Management -8863 +▁estimates -8864 +▁confidence -8865 +▁Oak -8866 +▁pump -8867 +▁restoration -8868 +▁1921 -8869 +▁au -8870 +▁convection -8871 +▁Christopher -8872 +▁blog -8873 +▁formally -8874 +▁canal -8875 +▁Tennessee -8876 +iami -8877 +▁mainstream -8878 +▁Sports -8879 +▁Bed -8880 +aration -8881 +▁journalist -8882 +haust -8883 +▁spaces -8884 +▁waiting -8885 +▁novels -8886 +forced -8887 +▁wider -8888 +▁rebell -8889 +idelines -8890 +▁Community -8891 +▁ownership -8892 +▁registered -8893 +▁bridges -8894 +▁alive -8895 +▁mechanical -8896 +names -8897 +▁Cold -8898 +hol -8899 +▁latest -8900 +▁avèk -8901 +▁enzy -8902 +▁Stock -8903 +▁Harv -8904 +▁Fern -8905 +▁oral -8906 +hess -8907 +▁marketing -8908 +▁contributions -8909 +▁wait -8910 +▁Categ -8911 +▁Report -8912 +▁deliber -8913 +imeter -8914 +▁Franklin -8915 +▁premiere -8916 +▁Commander -8917 +▁Baltimore -8918 +▁vs -8919 +▁Event -8920 +zz -8921 +▁MP -8922 +▁leaf -8923 +▁wins -8924 +rupted -8925 +amework -8926 +▁1931 -8927 +▁superv -8928 +▁Express -8929 +▁imprison -8930 +▁continuous -8931 +▁connections -8932 +▁assum -8933 +▁Alfred -8934 +▁Queens -8935 +ando -8936 +▁ridge -8937 +▁studying -8938 +▁Lock -8939 +▁chairman -8940 +▁Magn -8941 +▁collaps -8942 +▁Type -8943 +▁radical -8944 +▁prosec -8945 +aft -8946 +erb -8947 +▁1929 -8948 +▁maintaining -8949 +▁Niel -8950 +▁error -8951 +▁Writing -8952 +▁asks -8953 +▁diff -8954 +▁Yet -8955 +▁handed -8956 +▁Benjamin -8957 +▁moments -8958 +▁900 -8959 +▁fluid -8960 +▁Oklah -8961 +▁horm -8962 +▁Digital -8963 +▁exclud -8964 +atty -8965 +▁elabor -8966 +▁recept -8967 +▁occupation -8968 +▁lob -8969 +▁cruiser -8970 +velt -8971 +▁unsuccessful -8972 +▁concur -8973 +▁forecast -8974 +▁candidates -8975 +▁2019 -8976 +owed -8977 +▁pool -8978 +▁divor -8979 +idd -8980 +▁Jason -8981 +▁Rio -8982 +▁Bureau -8983 +encing -8984 +▁immun -8985 +▁planets -8986 +▁submitted -8987 +▁tack -8988 +▁1890 -8989 +▁Arizona -8990 +▁Ye -8991 +weet -8992 +idal -8993 +▁storms -8994 +▁illegal -8995 +▁reactions -8996 +▁Near -8997 +▁Ga -8998 +▁Eff -8999 +ficial -9000 +▁stronger -9001 +▁metab -9002 +▁truly -9003 +▁households -9004 +▁sitting -9005 +quir -9006 +▁treaty -9007 +67 -9008 +▁manif -9009 +▁Miami -9010 +▁Eth -9011 +▁Next -9012 +TS -9013 +▁prime -9014 +LA -9015 +▁interpretation -9016 +▁Canal -9017 +▁organisms -9018 +▁es -9019 +itely -9020 +▁Person -9021 +▁theat -9022 +onymous -9023 +rip -9024 +▁texts -9025 +▁fault -9026 +▁ton -9027 +▁Treaty -9028 +▁furn -9029 +▁enpòt -9030 +obi -9031 +▁Hem -9032 +▁Oklahoma -9033 +▁Television -9034 +▁batting -9035 +▁Stewart -9036 +▁negotiations -9037 +▁Vice -9038 +▁march -9039 +▁engagement -9040 +asm -9041 +▁Plant -9042 +▁propag -9043 +▁seats -9044 +▁loved -9045 +owing -9046 +▁portra -9047 +▁toll -9048 +▁Chamber -9049 +▁produces -9050 +▁compete -9051 +▁animation -9052 +▁Shakespeare -9053 +osph -9054 +▁Spirit -9055 +▁defended -9056 +rooms -9057 +▁handle -9058 +▁overwhel -9059 +▁mechanism -9060 +▁starred -9061 +▁Anglo -9062 +▁Satur -9063 +▁Detroit -9064 +▁param -9065 +▁Windows -9066 +▁83 -9067 +28 -9068 +oca -9069 +rac -9070 +▁naturally -9071 +▁opponents -9072 +▁Rub -9073 +▁Napole -9074 +▁frust -9075 +▁stored -9076 +icop -9077 +▁thoughts -9078 +▁Face -9079 +▁Princess -9080 +▁List -9081 +▁suggesting -9082 +▁hidden -9083 +▁Frederick -9084 +▁possession -9085 +arf -9086 +isyon -9087 +▁Hamp -9088 +▁excav -9089 +▁Sky -9090 +osevelt -9091 +erals -9092 +▁Cy -9093 +▁sensitive -9094 +▁reviewer -9095 +ogan -9096 +▁Kl -9097 +▁Benn -9098 +nal -9099 +▁slavery -9100 +▁kinds -9101 +iah -9102 +unes -9103 +▁forcing -9104 +▁Services -9105 +▁reaches -9106 +▁Malays -9107 +▁Melbourne -9108 +▁flew -9109 +▁centers -9110 +▁amongst -9111 +sk -9112 +rage -9113 +▁drivers -9114 +▁sinema -9115 +▁topics -9116 +▁fulf -9117 +▁Soon -9118 +vironments -9119 +▁feels -9120 +▁siege -9121 +▁improving -9122 +LC -9123 +▁perceived -9124 +▁laboratory -9125 +▁Evans -9126 +▁Knight -9127 +▁nom -9128 +▁Country -9129 +▁Beck -9130 +▁powered -9131 +▁Fund -9132 +▁descend -9133 +▁1922 -9134 +▁Pakistan -9135 +▁bath -9136 +▁spir -9137 +▁enpòtan -9138 +▁natirèl -9139 +asts -9140 +pha -9141 +race -9142 +▁Tower -9143 +▁Bulgar -9144 +▁newspapers -9145 +▁tube -9146 +▁Seattle -9147 +▁McD -9148 +▁1928 -9149 +▁networks -9150 +uda -9151 +▁adequ -9152 +▁gent -9153 +▁designer -9154 +27 -9155 +▁Prop -9156 +sts -9157 +▁FI -9158 +▁sequences -9159 +▁agencies -9160 +▁inhib -9161 +▁Yug -9162 +▁Holl -9163 +▁crack -9164 +ensions -9165 +izer -9166 +asant -9167 +▁Medicine -9168 +▁weekend -9169 +oret -9170 +▁Croatia -9171 +▁Roosevelt -9172 +▁worship -9173 +▁worse -9174 +▁thereafter -9175 +attan -9176 +▁blind -9177 +▁rocks -9178 +▁Pa -9179 +▁predomin -9180 +▁Gon -9181 +▁branches -9182 +▁restricted -9183 +izatè -9184 +▁survivors -9185 +ifer -9186 +▁Pap -9187 +▁millions -9188 +▁tie -9189 +▁Syn -9190 +▁Comb -9191 +▁joining -9192 +▁affairs -9193 +orms -9194 +▁copper -9195 +▁femin -9196 +▁garrison -9197 +▁Administration -9198 +▁Initially -9199 +▁predicted -9200 +▁Gram -9201 +▁sad -9202 +▁eliminated -9203 +▁Represent -9204 +▁Meth -9205 +▁bases -9206 +▁premiered -9207 +▁Charlie -9208 +▁desert -9209 +angle -9210 +▁Hind -9211 +▁poorly -9212 +▁presentation -9213 +▁inhabitants -9214 +▁1925 -9215 +▁reportedly -9216 +▁participation -9217 +aro -9218 +▁polar -9219 +▁seriously -9220 +▁2, -9221 +▁Sign -9222 +▁imperial -9223 +▁mature -9224 +▁Mond -9225 +▁impressed -9226 +▁NFL -9227 +▁Camer -9228 +▁emperor -9229 +▁Inn -9230 +cient -9231 +▁conven -9232 +▁Information -9233 +▁Raw -9234 +▁radar -9235 +seri -9236 +▁operational -9237 +▁Hong -9238 +▁Gilbert -9239 +▁relation -9240 +▁pregnancy -9241 +▁transmission -9242 +▁indu -9243 +otal -9244 +▁muscles -9245 +▁burning -9246 +▁exhaust -9247 +▁Dak -9248 +▁chrom -9249 +▁experimental -9250 +▁fairly -9251 +▁Anim -9252 +▁celeb -9253 +▁smart -9254 +▁skull -9255 +▁emphasis -9256 +▁abol -9257 +▁Mother -9258 +ubb -9259 +▁Mrs -9260 +▁alleg -9261 +▁Simpson -9262 +▁resigned -9263 +▁Tan -9264 +▁Liter -9265 +▁knows -9266 +▁situated -9267 +▁occasions -9268 +lain -9269 +ullivan -9270 +▁Mun -9271 +▁lessons -9272 +▁improvements -9273 +▁argues -9274 +▁NBC -9275 +▁boost -9276 +▁publicly -9277 +▁taste -9278 +ico -9279 +▁reveal -9280 +▁hole -9281 +▁(199 -9282 +▁anth -9283 +▁Category -9284 +▁customers -9285 +▁revenue -9286 +▁recognize -9287 +▁pros -9288 +▁Crown -9289 +▁smoke -9290 +▁regulations -9291 +▁Philippines -9292 +▁cyl -9293 +▁Friend -9294 +▁Ll -9295 +▁Warner -9296 +▁environments -9297 +▁succeed -9298 +mates -9299 +father -9300 +▁Australians -9301 +▁1924 -9302 +zed -9303 +▁instruction -9304 +▁judg -9305 +istent -9306 +▁pione -9307 +▁raising -9308 +▁molecules -9309 +anne -9310 +rolled -9311 +▁Somers -9312 +▁Yugoslav -9313 +▁Belgium -9314 +▁behalf -9315 +▁maps -9316 +▁exceed -9317 +▁dischar -9318 +▁dynasty -9319 +▁resign -9320 +▁Security -9321 +▁retail -9322 +▁footage -9323 +▁slave -9324 +▁enhance -9325 +▁locomot -9326 +▁procedures -9327 +▁exhibition -9328 +▁Rap -9329 +▁phrase -9330 +▁categories -9331 +▁uncom -9332 +▁Father -9333 +▁Moh -9334 +▁mood -9335 +▁Fried -9336 +▁Fal -9337 +▁Wolf -9338 +▁plain -9339 +gans -9340 +imen -9341 +chell -9342 +▁reward -9343 +▁konte -9344 +▁Batman -9345 +▁theories -9346 +▁doctors -9347 +▁realized -9348 +▁proportion -9349 +▁Sem -9350 +▁pregnant -9351 +▁lad -9352 +▁comprom -9353 +yright -9354 +▁AM -9355 +▁Ess -9356 +▁administrative -9357 +olid -9358 +▁boundary -9359 +ilty -9360 +▁physics -9361 +▁attitude -9362 +acks -9363 +avor -9364 +rez -9365 +▁inject -9366 +▁Farm -9367 +▁Franç -9368 +car -9369 +▁acted -9370 +▁overt -9371 +▁supports -9372 +▁loop -9373 +▁scr -9374 +▁celebrated -9375 +odox -9376 +aver -9377 +▁optim -9378 +▁prompted -9379 +▁fra -9380 +▁profile -9381 +▁Horse -9382 +ocation -9383 +hr -9384 +▁simultaneously -9385 +▁Forces -9386 +▁meetings -9387 +▁poems -9388 +otte -9389 +onds -9390 +▁marry -9391 +▁depends -9392 +▁substance -9393 +▁vegetables -9394 +▁forty -9395 +▁contribution -9396 +▁beauty -9397 +▁please -9398 +▁subsid -9399 +incial -9400 +▁trend -9401 +▁Dead -9402 +▁anch -9403 +▁underw -9404 +SP -9405 +▁Ice -9406 +▁monitoring -9407 +itarian -9408 +▁Stevens -9409 +borough -9410 +▁labour -9411 +▁dispute -9412 +▁athletes -9413 +▁tunnel -9414 +occ -9415 +▁curric -9416 +aron -9417 +avel -9418 +▁bypass -9419 +ocy -9420 +▁Si -9421 +▁machines -9422 +▁artistic -9423 +▁shorter -9424 +▁bid -9425 +eness -9426 +▁Lith -9427 +▁infected -9428 +”, -9429 +▁Buff -9430 +▁enforce -9431 +▁1923 -9432 +▁RAAF -9433 +▁fallen -9434 +▁Peninsula -9435 +▁Manh -9436 +▁arrive -9437 +rox -9438 +▁lie -9439 +▁grey -9440 +▁Heavy -9441 +▁Start -9442 +▁conversion -9443 +bird -9444 +▁Agency -9445 +ova -9446 +▁legit -9447 +▁visiting -9448 +▁chemicals -9449 +▁shear -9450 +▁translation -9451 +▁AP -9452 +▁Bull -9453 +▁manip -9454 +▁Khan -9455 +▁RAF -9456 +▁junior -9457 +▁flows -9458 +▁bare -9459 +▁stuff -9460 +▁sharing -9461 +▁departed -9462 +▁Ku -9463 +▁implemented -9464 +▁Without -9465 +▁residence -9466 +▁essentially -9467 +rary -9468 +ghan -9469 +▁shield -9470 +▁feud -9471 +▁impacts -9472 +▁distinguished -9473 +soft -9474 +▁1908 -9475 +heric -9476 +▁decay -9477 +▁significance -9478 +▁treatments -9479 +▁hybr -9480 +▁(3 -9481 +gs -9482 +▁creator -9483 +▁gro -9484 +▁tip -9485 +èzbòl -9486 +▁bèzbòl -9487 +▁resid -9488 +▁insurance -9489 +izòd -9490 +▁vitamin -9491 +▁Friday -9492 +uits -9493 +▁Alice -9494 +anium -9495 +▁pulled -9496 +▁wedding -9497 +utt -9498 +▁Hills -9499 +▁fifty -9500 +▁Chem -9501 +illo -9502 +▁beliefs -9503 +▁Vincent -9504 +pled -9505 +▁Louisiana -9506 +essed -9507 +▁Dave -9508 +▁layers -9509 +omed -9510 +▁closing -9511 +▁travelled -9512 +▁Ru -9513 +sequently -9514 +▁lanm -9515 +▁lights -9516 +ashes -9517 +ulty -9518 +▁bulk -9519 +Sp -9520 +low -9521 +alysis -9522 +▁parish -9523 +▁cards -9524 +▁af -9525 +ourag -9526 +▁variable -9527 +▁Kings -9528 +▁origins -9529 +imm -9530 +▁Nielsen -9531 +▁1880 -9532 +▁mines -9533 +▁twin -9534 +▁Industry -9535 +▁duration -9536 +▁severely -9537 +▁replacing -9538 +▁Claude -9539 +▁racial -9540 +▁distinctive -9541 +LL -9542 +▁VI -9543 +▁shells -9544 +▁gathered -9545 +iph -9546 +▁withdrew -9547 +estone -9548 +▁tu -9549 +▁proof -9550 +▁lòt -9551 +▁aggreg -9552 +plete -9553 +norm -9554 +▁Cole -9555 +▁Shel -9556 +▁assisted -9557 +▁intercept -9558 +acles -9559 +▁Walker -9560 +▁instrumental -9561 +OM -9562 +sex -9563 +▁rac -9564 +▁minim -9565 +▁mos -9566 +▁restaurant -9567 +▁Saturday -9568 +▁reun -9569 +▁Christians -9570 +▁retain -9571 +▁vaccine -9572 +rost -9573 +die -9574 +▁08 -9575 +▁investigate -9576 +namese -9577 +▁accessible -9578 +dale -9579 +▁arriving -9580 +▁dealing -9581 +▁Environmental -9582 +▁Margaret -9583 +▁generate -9584 +▁equally -9585 +▁structural -9586 +eur -9587 +▁Isa -9588 +▁clar -9589 +ín -9590 +▁inaug -9591 +▁email -9592 +▁pilots -9593 +▁convoy -9594 +▁Historic -9595 +This -9596 +▁kings -9597 +▁magnetic -9598 +▁whatever -9599 +▁Christianity -9600 +▁hull -9601 +▁creates -9602 +▁plis -9603 +▁tort -9604 +▁provision -9605 +▁recall -9606 +▁examination -9607 +▁establishing -9608 +▁tenth -9609 +▁ranking -9610 +▁176 -9611 +▁Somerset -9612 +▁Construction -9613 +▁Vietnamese -9614 +▁Harvard -9615 +▁assembly -9616 +▁strategic -9617 +▁1909 -9618 +atisyen -9619 +onder -9620 +▁stom -9621 +▁(18 -9622 +▁Dest -9623 +▁exit -9624 +▁drain -9625 +▁wine -9626 +▁condem -9627 +inea -9628 +▁71 -9629 +▁upgraded -9630 +eria -9631 +▁helicop -9632 +▁factory -9633 +▁datab -9634 +▁annually -9635 +▁characteristic -9636 +▁clock -9637 +▁margin -9638 +ricts -9639 +▁raid -9640 +bes -9641 +▁Nik -9642 +iary -9643 +rose -9644 +▁admin -9645 +200 -9646 +▁Have -9647 +▁Senator -9648 +▁raw -9649 +▁Similarly -9650 +▁Wing -9651 +▁completing -9652 +▁recognised -9653 +▁honour -9654 +inian -9655 +▁battleship -9656 +▁fighters -9657 +▁partial -9658 +▁Peace -9659 +▁Snow -9660 +▁glac -9661 +▁Obama -9662 +▁Princip -9663 +▁Ou -9664 +▁Campbell -9665 +▁suspended -9666 +▁gate -9667 +▁1870 -9668 +▁tribute -9669 +▁une -9670 +▁aren -9671 +▁aggressive -9672 +usic -9673 +eland -9674 +▁victim -9675 +▁sket -9676 +▁complicated -9677 +idae -9678 +▁reverse -9679 +▁traditions -9680 +ensed -9681 +▁penet -9682 +▁compound -9683 +▁constantly -9684 +▁designation -9685 +▁Did -9686 +▁Gene -9687 +▁neu -9688 +▁encl -9689 +mn -9690 +▁conservative -9691 +4, -9692 +▁Gaga -9693 +▁Zh -9694 +▁Global -9695 +▁industries -9696 +▁cub -9697 +▁devast -9698 +DS -9699 +▁chamber -9700 +▁reviewers -9701 +▁challenging -9702 +▁fifteen -9703 +▁Guardian -9704 +▁06 -9705 +▁Equ -9706 +berry -9707 +istèm -9708 +▁cargo -9709 +▁Persian -9710 +▁fract -9711 +▁convey -9712 +▁abst -9713 +cribed -9714 +▁emotions -9715 +▁internet -9716 +oons -9717 +▁representation -9718 +odore -9719 +▁Prim -9720 +▁Xbox -9721 +38 -9722 +eli -9723 +▁signals -9724 +▁temporarily -9725 +▁regime -9726 +gro -9727 +▁Works -9728 +▁dollar -9729 +▁explosion -9730 +▁Hero -9731 +▁Still -9732 +▁usage -9733 +▁recordings -9734 +oa -9735 +▁Dom -9736 +▁Chen -9737 +▁rice -9738 +▁weigh -9739 +▁communications -9740 +▁Sciences -9741 +▁variation -9742 +▁instructions -9743 +▁Section -9744 +eing -9745 +angers -9746 +▁cous -9747 +▁coinc -9748 +▁pursue -9749 +mate -9750 +▁sustainable -9751 +▁1905 -9752 +▁diver -9753 +ulous -9754 +▁statue -9755 +▁Hungary -9756 +▁cruisers -9757 +▁photographs -9758 +icut -9759 +oples -9760 +▁alignment -9761 +▁paras -9762 +▁repeatedly -9763 +▁rej -9764 +▁Ward -9765 +▁universal -9766 +sea -9767 +▁pitched -9768 +part -9769 +irty -9770 +▁Catherine -9771 +▁Manhattan -9772 +48 -9773 +▁Convention -9774 +▁entertainment -9775 +ige -9776 +▁dim -9777 +ikely -9778 +▁digest -9779 +▁dependent -9780 +eping -9781 +▁reader -9782 +▁taxes -9783 +▁observation -9784 +▁comprehensive -9785 +sa -9786 +▁zero -9787 +▁cultures -9788 +▁Lennon -9789 +▁settlers -9790 +▁computers -9791 +orer -9792 +odge -9793 +▁click -9794 +▁photos -9795 +▁thorough -9796 +▁Bert -9797 +▁81 -9798 +▁export -9799 +▁indicating -9800 +uating -9801 +▁Steven -9802 +▁Spears -9803 +▁Perform -9804 +di -9805 +▁stones -9806 +▁Depression -9807 +▁choices -9808 +▁Ian -9809 +▁altered -9810 +lè -9811 +▁flights -9812 +▁rounds -9813 +okes -9814 +▁tor -9815 +▁conversation -9816 +▁hab -9817 +icious -9818 +▁lesson -9819 +▁involve -9820 +▁stere -9821 +▁brings -9822 +ateur -9823 +onnaissance -9824 +▁Switzer -9825 +▁myst -9826 +▁affects -9827 +▁Lad -9828 +ylan -9829 +▁platinum -9830 +▁explanation -9831 +eton -9832 +zech -9833 +alions -9834 +▁Cov -9835 +▁memor -9836 +▁Banks -9837 +▁nose -9838 +▁Township -9839 +▁audiences -9840 +▁feather -9841 +▁Fel -9842 +▁shipping -9843 +tha -9844 +anted -9845 +inated -9846 +▁Beh -9847 +▁spoken -9848 +▁1907 -9849 +▁whilst -9850 +▁clothes -9851 +▁Pil -9852 +▁mild -9853 +▁faces -9854 +ources -9855 +▁galax -9856 +▁09 -9857 +▁Recording -9858 +▁cattle -9859 +icing -9860 +▁ingred -9861 +▁criticised -9862 +▁concerts -9863 +▁Ref -9864 +▁favorable -9865 +▁framework -9866 +▁105 -9867 +▁sod -9868 +▁ranges -9869 +▁Cob -9870 +▁fold -9871 +▁lighting -9872 +ulates -9873 +ocratic -9874 +▁ruling -9875 +munition -9876 +agh -9877 +▁Hotel -9878 +▁liked -9879 +pent -9880 +▁Hab -9881 +▁identical -9882 +-5 -9883 +▁visits -9884 +▁Tit -9885 +▁Mack -9886 +▁Dance -9887 +itively -9888 +▁noise -9889 +▁gang -9890 +▁Lucas -9891 +▁Prom -9892 +▁125 -9893 +▁Islamic -9894 +▁Learning -9895 +tario -9896 +▁sistèm -9897 +▁explicit -9898 +▁fruits -9899 +▁bearing -9900 +▁lifestyle -9901 +inals -9902 +▁decreased -9903 +▁carefully -9904 +▁91 -9905 +▁addressed -9906 +mund -9907 +▁signing -9908 +▁Switzerland -9909 +▁kidney -9910 +▁Josh -9911 +▁Nag -9912 +▁counties -9913 +▁remote -9914 +olves -9915 +▁Record -9916 +▁protagonist -9917 +▁Emer -9918 +▁concerning -9919 +36 -9920 +rently -9921 +▁Heb -9922 +▁filed -9923 +▁Return -9924 +▁enable -9925 +▁sending -9926 +▁striking -9927 +bow -9928 +▁psychological -9929 +▁Jonathan -9930 +▁exercises -9931 +▁organisation -9932 +iffer -9933 +▁escaped -9934 +▁destroyers -9935 +▁cir -9936 +▁unw -9937 +▁Portland -9938 +aping -9939 +▁turrets -9940 +ulus -9941 +▁Carlos -9942 +▁statements -9943 +▁dict -9944 +▁tab -9945 +▁horn -9946 +29 -9947 +▁10. -9948 +▁repairs -9949 +▁heritage -9950 +TA -9951 +▁trick -9952 +▁soph -9953 +▁Warren -9954 +▁Ontario -9955 +▁reluct -9956 +▁Confederate -9957 +din -9958 +igger -9959 +▁Dylan -9960 +▁Darwin -9961 +▁caps -9962 +▁coat -9963 +isk -9964 +▁focuses -9965 +▁Czech -9966 +▁trading -9967 +▁matematik -9968 +olly -9969 +usalem -9970 +andal -9971 +▁weekly -9972 +▁μ -9973 +▁tips -9974 +-1 -9975 +▁ninet -9976 +asive -9977 +▁conj -9978 +mo -9979 +▁Kurt -9980 +▁credits -9981 +▁attendance -9982 +▁Fab -9983 +▁deterior -9984 +▁sheet -9985 +▁Albums -9986 +▁varied -9987 +▁Montreal -9988 +▁passion -9989 +▁Gabri -9990 +▁shares -9991 +▁Nash -9992 +▁junction -9993 +ienn -9994 +yself -9995 +▁originated -9996 +amine -9997 +▁Antonio -9998 +▁evident -9999 +▁placing -10000 +PR -10001 +▁necessarily -10002 +cycl -10003 +▁routine -10004 +dess -10005 +illes -10006 +▁beam -10007 +▁graduate -10008 +ugby -10009 +▁portions -10010 +▁bombers -10011 +ieth -10012 +▁Trek -10013 +▁developers -10014 +▁Chand -10015 +▁Jup -10016 +comes -10017 +▁ranks -10018 +▁earthquake -10019 +▁Phoen -10020 +▁citing -10021 +▁formula -10022 +▁estimate -10023 +▁Ins -10024 +▁USD -10025 +▁Giants -10026 +▁deeply -10027 +▁promised -10028 +▁ammunition -10029 +ele -10030 +▁pand -10031 +▁Afghan -10032 +iatric -10033 +▁artwork -10034 +▁fib -10035 +▁connecting -10036 +▁restore -10037 +▁Seven -10038 +▁personally -10039 +▁similarly -10040 +▁empire -10041 +▁victories -10042 +orge -10043 +▁cash -10044 +▁rect -10045 +▁Cher -10046 +heimer -10047 +EM -10048 +▁scores -10049 +▁qualified -10050 +rams -10051 +▁Cyr -10052 +▁Fat -10053 +▁finals -10054 +▁Support -10055 +▁wore -10056 +▁butter -10057 +▁Mult -10058 +▁Heritage -10059 +▁outcome -10060 +▁accord -10061 +▁cra -10062 +▁canc -10063 +▁cook -10064 +▁Based -10065 +▁360 -10066 +▁intellectual -10067 +▁Gran -10068 +▁infer -10069 +▁serial -10070 +▁emotion -10071 +▁resumed -10072 +ums -10073 +▁indigenous -10074 +cha -10075 +▁hockey -10076 +▁finale -10077 +▁thanks -10078 +▁badly -10079 +akh -10080 +▁inland -10081 +▁1906 -10082 +▁hook -10083 +▁execution -10084 +▁Tag -10085 +▁Prize -10086 +▁hence -10087 +▁Flight -10088 +An -10089 +▁ML -10090 +▁minority -10091 +uez -10092 +▁puzz -10093 +▁Mountains -10094 +▁AT -10095 +▁tubes -10096 +▁Mitchell -10097 +ania -10098 +▁Kap -10099 +▁jurisd -10100 +▁Andre -10101 +▁sunk -10102 +▁Luis -10103 +▁fastest -10104 +▁Alaska -10105 +▁Graham -10106 +appy -10107 +sky -10108 +▁opponent -10109 +▁solve -10110 +▁unlikely -10111 +erk -10112 +▁Sud -10113 +onnen -10114 +▁competitive -10115 +▁Connecticut -10116 +▁concentrated -10117 +aire -10118 +▁palace -10119 +▁McL -10120 +aughters -10121 +▁Bes -10122 +angel -10123 +▁Jerusalem -10124 +▁magnitude -10125 +▁liberal -10126 +▁Na -10127 +▁merchant -10128 +▁Sullivan -10129 +▁representatives -10130 +▁Territ -10131 +uese -10132 +▁intensified -10133 +bu -10134 +▁Labour -10135 +▁thereby -10136 +▁Neb -10137 +▁Angle -10138 +ensively -10139 +▁Byografi -10140 +ski -10141 +▁Agricult -10142 +▁Code -10143 +▁Fif -10144 +▁allies -10145 +▁wealthy -10146 +▁integrated -10147 +▁alliance -10148 +▁partners -10149 +▁permitted -10150 +▁stomach -10151 +ifice -10152 +▁civilian -10153 +▁Independent -10154 +▁occurring -10155 +▁Math -10156 +▁batteries -10157 +ican -10158 +▁Books -10159 +▁camps -10160 +ouses -10161 +atus -10162 +▁monitor -10163 +▁electro -10164 +▁preventing -10165 +iology -10166 +▁avo -10167 +▁messages -10168 +onnes -10169 +▁pairs -10170 +▁threats -10171 +▁stroke -10172 +▁gray -10173 +▁Denmark -10174 +▁presents -10175 +▁districts -10176 +▁Ald -10177 +▁decides -10178 +▁volumes -10179 +▁grows -10180 +▁sisters -10181 +▁veloc -10182 +▁shoulder -10183 +▁empty -10184 +▁funeral -10185 +▁Bros -10186 +▁Kit -10187 +▁lying -10188 +▁urg -10189 +▁config -10190 +▁drove -10191 +▁meter -10192 +ucks -10193 +▁Cass -10194 +▁guilty -10195 +acre -10196 +RI -10197 +▁diagnosed -10198 +▁Adv -10199 +▁mixture -10200 +vereign -10201 +▁Protest -10202 +▁Dise -10203 +▁publications -10204 +▁Griff -10205 +▁mini -10206 +▁bronze -10207 +▁burned -10208 +▁Dw -10209 +▁Article -10210 +▁Microsoft -10211 +▁lifetime -10212 +▁ABC -10213 +▁bull -10214 +aman -10215 +▁generations -10216 +▁tornado -10217 +▁elevation -10218 +▁stability -10219 +▁6. -10220 +▁outd -10221 +▁Ni -10222 +▁translated -10223 +▁initiated -10224 +kh -10225 +▁Roc -10226 +▁chick -10227 +▁Originally -10228 +▁epid -10229 +▁platforms -10230 +▁é -10231 +▁Ton -10232 +▁Jupiter -10233 +▁spotted -10234 +▁preparing -10235 +▁engineers -10236 +▁Eventually -10237 +▁Vik -10238 +agger -10239 +▁Baby -10240 +▁math -10241 +▁wreck -10242 +▁photo -10243 +▁Rest -10244 +▁boundaries -10245 +▁Ara -10246 +terior -10247 +▁brill -10248 +▁reviewed -10249 +▁sovereign -10250 +▁escort -10251 +ello -10252 +▁Cow -10253 +▁swimming -10254 +▁assists -10255 +▁confirm -10256 +how -10257 +▁patron -10258 +▁molecular -10259 +▁Patt -10260 +▁enorm -10261 +▁tiny -10262 +▁underlying -10263 +aze -10264 +▁Portuguese -10265 +▁earning -10266 +▁nutrients -10267 +▁brick -10268 +10. -10269 +oom -10270 +ulin -10271 +▁92 -10272 +roscop -10273 +mented -10274 +▁Rachel -10275 +▁Living -10276 +▁soldier -10277 +▁EU -10278 +▁epizòd -10279 +▁beneath -10280 +▁rebuilt -10281 +▁Dyn -10282 +▁sank -10283 +fr -10284 +▁Ridge -10285 +▁closest -10286 +▁NO -10287 +▁Gonz -10288 +.... -10289 +▁coffee -10290 +▁lem -10291 +▁Isab -10292 +▁advertising -10293 +▁wal -10294 +▁05 -10295 +▁Lib -10296 +▁jazz -10297 +▁interactions -10298 +▁Wilhel -10299 +mi -10300 +▁Rand -10301 +▁holes -10302 +▁ow -10303 +hard -10304 +▁Mand -10305 +▁tension -10306 +gate -10307 +▁Len -10308 +▁cats -10309 +▁Billy -10310 +AM -10311 +iture -10312 +▁edited -10313 +▁competed -10314 +▁Opp -10315 +▁Constant -10316 +▁carriers -10317 +▁rib -10318 +▁Maj -10319 +3, -10320 +orith -10321 +▁confident -10322 +▁precipitation -10323 +▁examined -10324 +opp -10325 +▁Jefferson -10326 +▁promise -10327 +▁erupt -10328 +anche -10329 +ometric -10330 +▁supplied -10331 +▁curriculum -10332 +iki -10333 +▁demanded -10334 +▁merc -10335 +▁demonstrate -10336 +tra -10337 +igs -10338 +imp -10339 +ridge -10340 +▁defeating -10341 +▁functional -10342 +emen -10343 +▁Amy -10344 +▁earn -10345 +▁shock -10346 +▁Karl -10347 +▁index -10348 +▁distant -10349 +CS -10350 +▁Mong -10351 +▁Lithuan -10352 +▁suspect -10353 +▁campaigns -10354 +▁directors -10355 +▁Lov -10356 +▁Sid -10357 +shore -10358 +▁Dragon -10359 +▁ordinary -10360 +oned -10361 +▁alternate -10362 +sor -10363 +▁lacked -10364 +▁Esc -10365 +▁Pedro -10366 +▁nervous -10367 +▁worn -10368 +▁maneu -10369 +ista -10370 +▁files -10371 +▁responses -10372 +▁detected -10373 +▁fever -10374 +▁Kan -10375 +▁Federation -10376 +rh -10377 +▁tea -10378 +ocket -10379 +▁tomb -10380 +▁que -10381 +▁conce -10382 +▁dimin -10383 +▁affair -10384 +bishop -10385 +▁Brig -10386 +lights -10387 +▁flour -10388 +▁Player -10389 +▁gods -10390 +▁Blues -10391 +▁founding -10392 +▁suddenly -10393 +▁Google -10394 +▁racing -10395 +▁holiday -10396 +▁rif -10397 +expected -10398 +anner -10399 +▁adventure -10400 +▁Liz -10401 +▁Il -10402 +onomy -10403 +▁pill -10404 +▁magic -10405 +aris -10406 +▁horror -10407 +▁mush -10408 +▁konnen -10409 +▁Mend -10410 +▁erected -10411 +▁Lt -10412 +▁Tokyo -10413 +▁remnants -10414 +▁Local -10415 +▁Overall -10416 +▁Championships -10417 +▁publishing -10418 +▁preserve -10419 +ontal -10420 +▁relax -10421 +▁Barry -10422 +▁exclusively -10423 +▁compilation -10424 +▁Cit -10425 +etary -10426 +▁Years -10427 +▁coron -10428 +▁Harvey -10429 +ène -10430 +▁gift -10431 +▁Villa -10432 +▁chron -10433 +▁Eug -10434 +▁Nixon -10435 +▁chemistry -10436 +opl -10437 +ugg -10438 +ospel -10439 +▁Mission -10440 +▁challenged -10441 +▁Edge -10442 +▁orange -10443 +.; -10444 +chi -10445 +▁Hom -10446 +▁funded -10447 +▁heading -10448 +▁elig -10449 +lete -10450 +▁incred -10451 +95 -10452 +▁Grey -10453 +▁crews -10454 +sm -10455 +▁voiced -10456 +erts -10457 +▁Creat -10458 +▁Pas -10459 +▁Atlanta -10460 +▁preval -10461 +▁virtually -10462 +▁breaks -10463 +▁promoting -10464 +▁165 -10465 +atist -10466 +▁Æ -10467 +▁wound -10468 +▁Begin -10469 +▁desired -10470 +▁phenomenon -10471 +▁carries -10472 +▁measuring -10473 +▁Austrian -10474 +▁Sometimes -10475 +▁knee -10476 +▁filter -10477 +▁lieutenant -10478 +▁talks -10479 +▁watershed -10480 +▁1904 -10481 +▁Delaware -10482 +▁encourag -10483 +▁traveling -10484 +▁diox -10485 +▁fisher -10486 +adesh -10487 +▁Ring -10488 +▁Grammy -10489 +▁ye -10490 +▁acknowledged -10491 +▁ports -10492 +▁Hudson -10493 +▁weakness -10494 +▁grid -10495 +species -10496 +▁Tamil -10497 +▁acids -10498 +▁Interstate -10499 +case -10500 +▁Mind -10501 +▁threw -10502 +▁tap -10503 +▁membership -10504 +AD -10505 +apy -10506 +▁Moreover -10507 +▁overseas -10508 +▁neighbour -10509 +CO -10510 +▁1000 -10511 +▁Hamm -10512 +▁harvest -10513 +▁militia -10514 +run -10515 +▁armies -10516 +▁Priv -10517 +▁Hockey -10518 +tage -10519 +▁sang -10520 +▁Rez -10521 +▁drums -10522 +▁withdrawal -10523 +▁dent -10524 +▁Reserve -10525 +▁smoking -10526 +▁dancing -10527 +▁Training -10528 +▁settings -10529 +phony -10530 +▁115 -10531 +▁thro -10532 +path -10533 +▁troub -10534 +▁universities -10535 +▁Py -10536 +▁mes -10537 +▁attained -10538 +▁pel -10539 +▁Laboratory -10540 +▁oxid -10541 +ptic -10542 +▁approaching -10543 +▁basin -10544 +▁borrow -10545 +▁Universal -10546 +irus -10547 +▁Sac -10548 +▁boss -10549 +▁Perry -10550 +▁variations -10551 +▁Place -10552 +▁Nation -10553 +▁Hampshire -10554 +▁referring -10555 +▁consideration -10556 +urd -10557 +▁cognitive -10558 +▁Ral -10559 +▁cock -10560 +▁myster -10561 +vo -10562 +▁morph -10563 +▁nerve -10564 +▁believing -10565 +lock -10566 +▁mainland -10567 +▁Foreign -10568 +▁travels -10569 +▁handling -10570 +▁fertil -10571 +▁Critics -10572 +▁constitutional -10573 +class -10574 +▁Ali -10575 +▁Invest -10576 +▁Donald -10577 +▁Abd -10578 +▁Beng -10579 +▁imagery -10580 +▁remind -10581 +embers -10582 +▁wildlife -10583 +▁displays -10584 +▁requiring -10585 +uage -10586 +▁discont -10587 +▁IP -10588 +▁Napoleon -10589 +MI -10590 +isons -10591 +▁obsc -10592 +▁triple -10593 +▁sung -10594 +▁Box -10595 +▁Medal -10596 +▁adds -10597 +iden -10598 +▁legislature -10599 +rapped -10600 +▁secretary -10601 +▁forget -10602 +▁bears -10603 +▁Amb -10604 +▁stops -10605 +azines -10606 +sis -10607 +▁Turkey -10608 +▁reporting -10609 +▁frig -10610 +▁Mik -10611 +eling -10612 +idance -10613 +99 -10614 +▁atomic -10615 +ishers -10616 +▁voting -10617 +▁unclear -10618 +▁feedback -10619 +▁attending -10620 +▁bio -10621 +▁Indies -10622 +ouch -10623 +▁lots -10624 +▁Baker -10625 +▁backed -10626 +▁vig -10627 +▁verte -10628 +▁confusion -10629 +istical -10630 +▁hosp -10631 +ipher -10632 +▁armored -10633 +▁Yellow -10634 +▁strongest -10635 +itative -10636 +▁IN -10637 +verse -10638 +▁humanity -10639 +▁commitment -10640 +▁volunteers -10641 +▁chant -10642 +▁dense -10643 +oria -10644 +▁cuts -10645 +▁theater -10646 +▁Organization -10647 +▁CS -10648 +▁prox -10649 +▁hosts -10650 +▁documented -10651 +▁struggled -10652 +▁07 -10653 +▁parks -10654 +▁strengthened -10655 +apolis -10656 +▁Pitts -10657 +▁exhibit -10658 +▁Poll -10659 +yram -10660 +asa -10661 +▁Product -10662 +emia -10663 +▁dental -10664 +▁removing -10665 +▁Mi -10666 +▁EP -10667 +▁Joy -10668 +itated -10669 +▁scientist -10670 +agers -10671 +▁lasting -10672 +▁cosm -10673 +zo -10674 +ancell -10675 +▁scattered -10676 +▁Say -10677 +▁creatures -10678 +▁millimet -10679 +▁Murphy -10680 +▁Century -10681 +▁objectives -10682 +▁implementation -10683 +DF -10684 +iffs -10685 +▁fires -10686 +▁Athlet -10687 +▁Rico -10688 +cut -10689 +▁Fu -10690 +▁Kra -10691 +▁linear -10692 +▁backing -10693 +▁Utah -10694 +▁architectural -10695 +▁guidelines -10696 +ni -10697 +▁tribe -10698 +▁conspir -10699 +▁acceler -10700 +▁Ze -10701 +▁arguments -10702 +▁env -10703 +▁Mans -10704 +▁surfaces -10705 +▁movies -10706 +▁listening -10707 +▁Conservation -10708 +eyer -10709 +▁Hann -10710 +outing -10711 +47 -10712 +▁kW -10713 +▁respective -10714 +adal -10715 +▁grain -10716 +▁answers -10717 +▁insisted -10718 +▁Wed -10719 +▁warship -10720 +AP -10721 +rov -10722 +thodox -10723 +▁argue -10724 +▁Johnny -10725 +▁Dub -10726 +▁farming -10727 +rimination -10728 +▁intermedi -10729 +▁printing -10730 +▁Sig -10731 +▁Lion -10732 +▁honey -10733 +▁quad -10734 +▁cotton -10735 +▁organs -10736 +▁Mosc -10737 +▁advised -10738 +▁cancelled -10739 +▁disagre -10740 +▁priest -10741 +▁McM -10742 +▁Apoll -10743 +▁golden -10744 +▁Full -10745 +▁1901 -10746 +▁confron -10747 +oub -10748 +▁1860 -10749 +▁Jun -10750 +▁Tob -10751 +▁sect -10752 +▁wors -10753 +▁Arnold -10754 +ammar -10755 +▁peoples -10756 +▁communicate -10757 +▁arrangements -10758 +▁> -10759 +▁disl -10760 +▁Railroad -10761 +▁cow -10762 +▁Kirk -10763 +▁Muham -10764 +rise -10765 +▁bombs -10766 +▁knowing -10767 +▁monaster -10768 +▁Wol -10769 +▁rely -10770 +▁focusing -10771 +▁banned -10772 +▁confront -10773 +▁birthday -10774 +▁exclusive -10775 +▁ov -10776 +OL -10777 +▁Haz -10778 +▁Grade -10779 +▁corporate -10780 +▁vegetation -10781 +▁apartment -10782 +▁Sony -10783 +employ -10784 +enov -10785 +▁Wag -10786 +▁Syria -10787 +▁interpreted -10788 +enda -10789 +▁Exec -10790 +icular -10791 +irs -10792 +eared -10793 +▁Jimmy -10794 +▁fabric -10795 +▁Philippe -10796 +▁pole -10797 +▁unexpected -10798 +▁terrain -10799 +enberg -10800 +▁helpful -10801 +ouver -10802 +▁initiative -10803 +irts -10804 +anton -10805 +▁attorney -10806 +▁relatives -10807 +▁talent -10808 +▁impression -10809 +▁sq -10810 +▁lanmè -10811 +▁Diam -10812 +▁stretch -10813 +▁queen -10814 +▁crimes -10815 +▁aerial -10816 +▁excessive -10817 +▁gust -10818 +▁affili -10819 +▁DS -10820 +▁da -10821 +▁Desc -10822 +▁conflicts -10823 +▁Fish -10824 +▁autobi -10825 +▁predecessor -10826 +▁fed -10827 +▁mad -10828 +▁Chang -10829 +▁Indonesia -10830 +▁surprised -10831 +olving -10832 +▁calculated -10833 +▁Ey -10834 +▁Deep -10835 +roe -10836 +▁northward -10837 +▁professionals -10838 +oded -10839 +▁isot -10840 +▁algorith -10841 +▁noticed -10842 +▁riders -10843 +▁transp -10844 +▁westward -10845 +2) -10846 +onian -10847 +▁warming -10848 +▁beneficial -10849 +▁restrictions -10850 +▁authen -10851 +▁mechanisms -10852 +▁shallow -10853 +▁mathematics -10854 +▁orn -10855 +▁lanes -10856 +ribe -10857 +▁Muslims -10858 +▁touring -10859 +▁Race -10860 +▁Hawaii -10861 +▁Leslie -10862 +usc -10863 +othy -10864 +▁doors -10865 +ennium -10866 +▁chlor -10867 +▁Lost -10868 +▁Edwards -10869 +46 -10870 +▁Halo -10871 +▁recycl -10872 +▁reliable -10873 +▁Note -10874 +▁Monte -10875 +▁Reading -10876 +▁absolute -10877 +etheless -10878 +▁dying -10879 +▁license -10880 +▁Stu -10881 +▁deeper -10882 +▁organised -10883 +▁considers -10884 +▁realize -10885 +RC -10886 +with -10887 +▁recon -10888 +ght -10889 +▁renov -10890 +▁fate -10891 +▁assign -10892 +▁dioxide -10893 +▁ekriven -10894 +▁overcome -10895 +▁myself -10896 +▁surpass -10897 +▁battalions -10898 +▁consciousness -10899 +▁remarked -10900 +▁specimen -10901 +▁gardens -10902 +rous -10903 +▁Beaut -10904 +IDS -10905 +anz -10906 +▁ion -10907 +▁Pic -10908 +▁Gary -10909 +▁emerging -10910 +acco -10911 +angered -10912 +37 -10913 +gov -10914 +▁bread -10915 +▁acou -10916 +▁Survey -10917 +▁Ted -10918 +▁1903 -10919 +▁tract -10920 +▁Pearl -10921 +idity -10922 +AL -10923 +▁pink -10924 +▁Phoenix -10925 +▁subspecies -10926 +▁corresponding -10927 +▁Sit -10928 +▁Chel -10929 +▁Lem -10930 +▁assembled -10931 +▁rebellion -10932 +▁loud -10933 +▁couldn -10934 +ictionary -10935 +irms -10936 +▁assert -10937 +▁hopes -10938 +▁devoted -10939 +▁enlisted -10940 +▁flagship -10941 +mingham -10942 +▁magazines -10943 +▁medications -10944 +▁transported -10945 +▁inclusion -10946 +cially -10947 +88 -10948 +▁bombing -10949 +▁Broadway -10950 +▁separation -10951 +ascular -10952 +▁Flore -10953 +▁abnorm -10954 +▁introduce -10955 +▁Israeli -10956 +▁gif -10957 +▁donated -10958 +uki -10959 +▁155 -10960 +▁Past -10961 +▁dressed -10962 +▁competing -10963 +nik -10964 +rible -10965 +▁pent -10966 +▁catal -10967 +▁youngest -10968 +WC -10969 +▁paj -10970 +▁Victorian -10971 +▁Ran -10972 +bel -10973 +▁ruler -10974 +▁physically -10975 +RE -10976 +▁Watch -10977 +▁enthusi -10978 +▁Antar -10979 +▁casting -10980 +▁fo -10981 +▁updated -10982 +▁graduated -10983 +ür -10984 +▁measurements -10985 +olen -10986 +strong -10987 +▁cens -10988 +▁Girls -10989 +▁Som -10990 +▁enact -10991 +▁ane -10992 +▁Others -10993 +hand -10994 +uded -10995 +▁shaft -10996 +lesh -10997 +▁Turner -10998 +▁voices -10999 +▁targeted -11000 +▁Bath -11001 +▁bell -11002 +▁armour -11003 +▁Engineering -11004 +▁Nicholas -11005 +▁managing -11006 +▁Keith -11007 +ortion -11008 +▁phosph -11009 +▁circular -11010 +▁armament -11011 +▁Muhammad -11012 +aders -11013 +▁Henri -11014 +▁prize -11015 +isy -11016 +▁1902 -11017 +artney -11018 +▁Until -11019 +▁Argentina -11020 +▁predators -11021 +▁Goth -11022 +▁Sche -11023 +▁marg -11024 +utely -11025 +▁Trade -11026 +▁Peters -11027 +▁sulf -11028 +▁dynamic -11029 +▁mammals -11030 +▁reconnaissance -11031 +▁breathing -11032 +▁interviews -11033 +▁Ent -11034 +▁Sout -11035 +▁chapel -11036 +▁dy -11037 +cies -11038 +▁Soul -11039 +▁Hur -11040 +▁Maine -11041 +▁Todd -11042 +icial -11043 +▁Hold -11044 +▁Solar -11045 +▁Lex -11046 +▁velocity -11047 +▁Amendment -11048 +osion -11049 +▁failing -11050 +▁spacecraft -11051 +▁overlook -11052 +bing -11053 +aments -11054 +▁Collins -11055 +▁350 -11056 +ascar -11057 +▁anlè -11058 +▁posts -11059 +▁screening -11060 +▁Fil -11061 +▁Nine -11062 +▁columns -11063 +▁Together -11064 +▁lawyer -11065 +uras -11066 +▁Market -11067 +▁Luke -11068 +▁finger -11069 +▁defending -11070 +nia -11071 +▁bab -11072 +▁Wor -11073 +▁celebrate -11074 +▁comfortable -11075 +▁Kam -11076 +▁spots -11077 +▁cam -11078 +▁collapsed -11079 +▁Abbey -11080 +▁Study -11081 +▁Upper -11082 +▁assume -11083 +▁paying -11084 +▁Oliver -11085 +▁autumn -11086 +oric -11087 +folk -11088 +isition -11089 +▁assets -11090 +▁cad -11091 +▁Hugh -11092 +▁exploration -11093 +▁iP -11094 +▁Kon -11095 +▁teknik -11096 +▁Inv -11097 +▁accuracy -11098 +ultan -11099 +▁Shaw -11100 +ancouver -11101 +▁educated -11102 +▁counsel -11103 +atoes -11104 +annels -11105 +▁sheep -11106 +yler -11107 +ocent -11108 +▁salv -11109 +▁writings -11110 +▁Birmingham -11111 +▁alarm -11112 +▁mayor -11113 +▁noble -11114 +▁legislative -11115 +49 -11116 +▁1850 -11117 +▁proven -11118 +▁honest -11119 +▁François -11120 +▁Unf -11121 +▁bowling -11122 +▁daughters -11123 +▁announcement -11124 +▁clay -11125 +▁corps -11126 +▁absent -11127 +▁receives -11128 +math -11129 +▁Resp -11130 +▁Maya -11131 +atra -11132 +▁Sug -11133 +▁swit -11134 +▁cancel -11135 +▁prosper -11136 +ourse -11137 +▁nice -11138 +itic -11139 +▁Lev -11140 +▁virtual -11141 +▁Tu -11142 +▁Action -11143 +▁fee -11144 +▁kiss -11145 +▁provinces -11146 +▁Rud -11147 +▁Communist -11148 +regular -11149 +▁mineral -11150 +feld -11151 +▁extending -11152 +▁mèt -11153 +▁Dakota -11154 +▁charter -11155 +▁demolished -11156 +▁traditionally -11157 +▁directions -11158 +isman -11159 +▁warri -11160 +85 -11161 +▁lock -11162 +▁scar -11163 +▁Wayne -11164 +seud -11165 +▁enabled -11166 +▁provincial -11167 +▁revised -11168 +▁highways -11169 +thel -11170 +▁Gray -11171 +rection -11172 +▁Vancouver -11173 +▁cere -11174 +▁funny -11175 +▁Jar -11176 +▁plates -11177 +▁Ori -11178 +▁Electric -11179 +▁Ches -11180 +▁friendship -11181 +▁tonnes -11182 +inks -11183 +pler -11184 +▁commentary -11185 +▁requirement -11186 +▁Files -11187 +▁aside -11188 +ilyen -11189 +▁steep -11190 +▁Aqu -11191 +▁expectations -11192 +venth -11193 +▁Typ -11194 +▁Pars -11195 +65 -11196 +▁Bapt -11197 +▁Edin -11198 +▁Madag -11199 +▁define -11200 +▁wicket -11201 +▁handled -11202 +▁Bak -11203 +▁opens -11204 +▁endors -11205 +▁rational -11206 +eff -11207 +▁Dall -11208 +▁jury -11209 +tegr -11210 +▁Bach -11211 +▁Drive -11212 +Al -11213 +▁dual -11214 +cru -11215 +▁Village -11216 +▁Enterprise -11217 +▁curve -11218 +▁outcomes -11219 +▁destroying -11220 +▁hybrid -11221 +▁immigrants -11222 +oting -11223 +▁typhoon -11224 +fly -11225 +inery -11226 +inted -11227 +▁Fight -11228 +▁actively -11229 +ulatory -11230 +▁seized -11231 +onald -11232 +▁grave -11233 +aneous -11234 +▁varying -11235 +▁Abra -11236 +▁bishop -11237 +▁consumers -11238 +▁prel -11239 +cience -11240 +▁identification -11241 +lu -11242 +erver -11243 +▁protecting -11244 +▁regardless -11245 +▁item -11246 +▁congreg -11247 +▁locally -11248 +▁achievement -11249 +▁musician -11250 +▁1800 -11251 +cyclop -11252 +▁Chile -11253 +▁prevention -11254 +▁Moscow -11255 +▁Had -11256 +▁mask -11257 +▁collections -11258 +ewise -11259 +▁Allies -11260 +▁Pam -11261 +▁wake -11262 +▁brilliant -11263 +▁explaining -11264 +▁developments -11265 +▁panels -11266 +▁recommendations -11267 +▁Online -11268 +▁debris -11269 +▁gran -11270 +▁errors -11271 +▁telesc -11272 +▁hypothesis -11273 +▁pray -11274 +▁metals -11275 +▁register -11276 +oker -11277 +▁Pad -11278 +▁orchestra -11279 +zes -11280 +▁Uk -11281 +▁Swiss -11282 +▁compliment -11283 +osaurs -11284 +▁followers -11285 +▁analys -11286 +▁console -11287 +▁eliminate -11288 +.5 -11289 +kt -11290 +▁Craig -11291 +▁upset -11292 +▁Din -11293 +▁Ekip -11294 +▁peaking -11295 +▁blocked -11296 +▁Canter -11297 +▁versus -11298 +▁adequate -11299 +owski -11300 +▁Original -11301 +DP -11302 +reens -11303 +▁Pruss -11304 +▁beings -11305 +▁statistics -11306 +elfare -11307 +▁978 -11308 +▁Cycl -11309 +▁varies -11310 +▁Ralph -11311 +▁Democrats -11312 +▁accompanying -11313 +▁Honor -11314 +atis -11315 +▁charity -11316 +▁Tai -11317 +ctive -11318 +isode -11319 +▁Boys -11320 +▁enormous -11321 +▁View -11322 +▁mail -11323 +▁permit -11324 +▁guidance -11325 +▁impressive -11326 +▁rede -11327 +▁priority -11328 +igation -11329 +▁saving -11330 +▁aktè -11331 +har -11332 +abul -11333 +gon -11334 +▁fest -11335 +▁py -11336 +▁dys -11337 +▁engaging -11338 +▁farms -11339 +▁rejyon -11340 +▁Fisher -11341 +▁riding -11342 +▁quarterback -11343 +▁effectiveness -11344 +▁database -11345 +▁Trail -11346 +▁hills -11347 +▁replied -11348 +▁varieties -11349 +▁amph -11350 +▁tale -11351 +iper -11352 +▁Hob -11353 +▁Spart -11354 +▁Figure -11355 +▁Manuel -11356 +net -11357 +▁boot -11358 +hin -11359 +izers -11360 +▁stationed -11361 +▁Ancient -11362 +▁hitting -11363 +▁Walt -11364 +ayan -11365 +rust -11366 +tains -11367 +ussion -11368 +▁Commons -11369 +▁Osc -11370 +▁Rih -11371 +orig -11372 +annon -11373 +▁dubbed -11374 +osexual -11375 +▁pibl -11376 +▁calcium -11377 +▁Edinburgh -11378 +▁domain -11379 +▁lift -11380 +▁wars -11381 +▁Twitter -11382 +▁Ry -11383 +▁Nev -11384 +▁gaining -11385 +▁kreyòl -11386 +▁associate -11387 +▁substitute -11388 +▁Bald -11389 +▁Tree -11390 +▁Aer -11391 +▁trigg -11392 +▁suspected -11393 +▁questioned -11394 +rawn -11395 +▁indirect -11396 +▁tactics -11397 +▁Defence -11398 +▁harmful -11399 +▁Celt -11400 +▁Tracy -11401 +▁Morrison -11402 +▁bonus -11403 +▁theoret -11404 +▁mud -11405 +▁Chapter -11406 +▁inflammation -11407 +▁provisions -11408 +▁Table -11409 +▁cleared -11410 +▁jet -11411 +▁tape -11412 +▁https -11413 +▁Om -11414 +▁ta -11415 +▁raids -11416 +▁ceased -11417 +▁consumer -11418 +aja -11419 +▁Pract -11420 +▁Campaign -11421 +▁Soph -11422 +▁faculty -11423 +▁warfare -11424 +▁Tank -11425 +▁Rihanna -11426 +▁evacuated -11427 +▁blow -11428 +▁cinem -11429 +assador -11430 +▁Woman -11431 +▁examine -11432 +▁channels -11433 +▁succession -11434 +▁fantasy -11435 +▁Wa -11436 +▁Vel -11437 +▁cable -11438 +ationally -11439 +▁Baseball -11440 +autical -11441 +▁consolid -11442 +▁displaced -11443 +▁absorbed -11444 +▁Ax -11445 +▁Gate -11446 +▁Term -11447 +▁Finland -11448 +▁everyday -11449 +▁politicians -11450 +▁consequence -11451 +irates -11452 +▁conceived -11453 +▁discovers -11454 +▁Charlotte -11455 +▁NS -11456 +arest -11457 +▁anywhere -11458 +▁criteria -11459 +▁Hebrew -11460 +▁migration -11461 +▁segments -11462 +▁Dod -11463 +▁Bomb -11464 +▁Right -11465 +▁Canterbury -11466 +eto -11467 +leans -11468 +▁Defense -11469 +▁Madagascar -11470 +▁Marx -11471 +▁Has -11472 +▁cousin -11473 +▁Gang -11474 +uto -11475 +▁highlighted -11476 +▁considerably -11477 +▁HD -11478 +▁publisher -11479 +▁navy -11480 +▁ticket -11481 +▁thunder -11482 +▁petition -11483 +▁Newton -11484 +▁distinction -11485 +▁Mint -11486 +▁Á -11487 +▁Queensland -11488 +acked -11489 +▁lakes -11490 +▁reforms -11491 +onium -11492 +▁celebration -11493 +▁trem -11494 +▁extensively -11495 +▁forb -11496 +▁Computer -11497 +▁elevated -11498 +▁habitats -11499 +43 -11500 +▁avoided -11501 +▁Curt -11502 +▁Bobby -11503 +▁Hope -11504 +ambers -11505 +▁accommodate -11506 +▁ol -11507 +▁medication -11508 +▁ho -11509 +▁Serge -11510 +makers -11511 +▁Altern -11512 +▁physician -11513 +rup -11514 +umph -11515 +▁Garc -11516 +▁constitu -11517 +▁flooded -11518 +aton -11519 +iche -11520 +▁genu -11521 +parts -11522 +▁venue -11523 +▁privile -11524 +▁Authority -11525 +▁worker -11526 +uis -11527 +▁Potter -11528 +▁thirteen -11529 +▁expanding -11530 +▁1898 -11531 +▁Mason -11532 +▁dinner -11533 +▁operates -11534 +▁protests -11535 +▁Jama -11536 +▁ma -11537 +▁starring -11538 +rene -11539 +▁convert -11540 +▁illustrated -11541 +▁Please -11542 +▁photography -11543 +▁warnings -11544 +▁Pay -11545 +▁1896 -11546 +king -11547 +▁cannon -11548 +igious -11549 +▁signature -11550 +HA -11551 +gie -11552 +▁Eight -11553 +▁defences -11554 +▁manifest -11555 +▁dread -11556 +▁contamin -11557 +arks -11558 +▁ski -11559 +▁payment -11560 +cott -11561 +▁acute -11562 +▁Standard -11563 +▁chances -11564 +▁proposals -11565 +auc -11566 +▁Tig -11567 +▁opinions -11568 +arma -11569 +▁Susan -11570 +▁genet -11571 +▁substances -11572 +enovela -11573 +unning -11574 +▁fortress -11575 +▁CP -11576 +quiry -11577 +▁beats -11578 +▁Occ -11579 +▁Harbor -11580 +▁Wallace -11581 +▁Wrestling -11582 +▁Map -11583 +▁worksh -11584 +▁underwent -11585 +▁dissipated -11586 +1) -11587 +endar -11588 +▁Lower -11589 +oux -11590 +▁amazing -11591 +▁dwarf -11592 +▁thrown -11593 +▁Protection -11594 +▁jilyen -11595 +▁Richmond -11596 +boy -11597 +▁orient -11598 +▁playoffs -11599 +▁Brothers -11600 +▁decorated -11601 +▁Kid -11602 +▁tough -11603 +raine -11604 +▁contributing -11605 +▁jack -11606 +▁meth -11607 +gom -11608 +▁tong -11609 +▁offs -11610 +▁Arctic -11611 +▁shifted -11612 +▁mortality -11613 +▁Kate -11614 +▁fant -11615 +▁voye -11616 +▁shelter -11617 +▁literally -11618 +Tube -11619 +▁bapt -11620 +▁towers -11621 +▁turret -11622 +▁rings -11623 +▁regulation -11624 +▁ampl -11625 +▁extinct -11626 +rising -11627 +▁audition -11628 +▁Lloyd -11629 +▁abroad -11630 +▁Put -11631 +ubble -11632 +▁clouds -11633 +ricks -11634 +▁Cer -11635 +▁Falls -11636 +▁guitarist -11637 +▁IC -11638 +▁Blu -11639 +▁gentle -11640 +▁Orleans -11641 +▁nitrogen -11642 +▁Vers -11643 +▁quar -11644 +▁Players -11645 +▁Independence -11646 +▁offense -11647 +▁realistic -11648 +▁Spr -11649 +▁census -11650 +▁acclaim -11651 +4) -11652 +adier -11653 +▁symbols -11654 +▁Cad -11655 +▁Must -11656 +▁heating -11657 +▁reinforced -11658 +▁topped -11659 +ilder -11660 +▁Grace -11661 +▁Scientology -11662 +▁independently -11663 +▁spectrum -11664 +▁Sweet -11665 +oves -11666 +atural -11667 +▁medic -11668 +▁distinguish -11669 +▁UC -11670 +▁THE -11671 +▁Hughes -11672 +▁habits -11673 +▁Exam -11674 +▁carb -11675 +eters -11676 +▁enhanced -11677 +▁punk -11678 +▁Edition -11679 +▁revolutionary -11680 +▁Camb -11681 +▁inherited -11682 +udi -11683 +▁altitude -11684 +▁remarkable -11685 +▁theatrical -11686 +isive -11687 +alia -11688 +isdom -11689 +omon -11690 +▁encom -11691 +▁irregular -11692 +▁Jerry -11693 +▁humor -11694 +▁gh -11695 +▁Pink -11696 +▁traded -11697 +▁coc -11698 +restrial -11699 +ME -11700 +nan -11701 +▁YouTube -11702 +▁affecting -11703 +via -11704 +▁shapes -11705 +▁innovative -11706 +eries -11707 +▁Link -11708 +idency -11709 +▁array -11710 +legraph -11711 +▁intake -11712 +▁consistently -11713 +▁Barbara -11714 +ema -11715 +▁Keep -11716 +▁gest -11717 +▁Track -11718 +▁Maurice -11719 +▁109 -11720 +▁allerg -11721 +▁gravity -11722 +▁ties -11723 +angular -11724 +▁buff -11725 +▁progressive -11726 +ologically -11727 +39 -11728 +▁evaluation -11729 +ellar -11730 +▁pier -11731 +▁Eve -11732 +▁RNA -11733 +▁availability -11734 +word -11735 +▁Executive -11736 +lon -11737 +▁PM -11738 +▁brig -11739 +▁arrives -11740 +▁observe -11741 +▁lip -11742 +▁ignored -11743 +▁healthcare -11744 +pling -11745 +▁speeds -11746 +▁SP -11747 +icking -11748 +▁Yam -11749 +▁lun -11750 +US -11751 +▁ultimate -11752 +gged -11753 +▁Ernest -11754 +▁confused -11755 +piece -11756 +▁Austin -11757 +▁disrupt -11758 +▁deposits -11759 +mm -11760 +onica -11761 +▁patri -11762 +▁McCartney -11763 +▁sculpture -11764 +▁comed -11765 +▁descent -11766 +▁scenario -11767 +ulture -11768 +isting -11769 +▁Yankees -11770 +▁rever -11771 +▁aest -11772 +▁trough -11773 +▁rehe -11774 +▁Dwight -11775 +itory -11776 +aha -11777 +rien -11778 +▁Liberal -11779 +▁pm -11780 +alin -11781 +▁aims -11782 +▁protective -11783 +child -11784 +▁exciting -11785 +▁moisture -11786 +layer -11787 +▁kills -11788 +yè -11789 +▁keeps -11790 +▁solely -11791 +▁shr -11792 +▁syans -11793 +▁sel -11794 +▁Indeed -11795 +▁Lé -11796 +archy -11797 +▁Quebec -11798 +▁tenure -11799 +▁cooperation -11800 +free -11801 +ennial -11802 +▁contrad -11803 +▁discussions -11804 +▁· -11805 +▁Orange -11806 +▁learns -11807 +▁Abraham -11808 +▁eleph -11809 +▁capabilities -11810 +▁Salt -11811 +imony -11812 +▁hier -11813 +▁seas -11814 +▁Being -11815 +▁Province -11816 +▁qualities -11817 +rod -11818 +▁promin -11819 +aque -11820 +▁Abu -11821 +▁angry -11822 +▁arguing -11823 +▁Mick -11824 +▁hurt -11825 +▁bigger -11826 +action -11827 +▁sword -11828 +urse -11829 +▁timber -11830 +▁civilians -11831 +▁acoustic -11832 +▁minerals -11833 +▁salary -11834 +▁currency -11835 +▁Ferr -11836 +▁Verm -11837 +▁mig -11838 +▁judges -11839 +▁trigger -11840 +▁Armstrong -11841 +▁strain -11842 +▁consumed -11843 +▁kilometers -11844 +idan -11845 +rolog -11846 +▁neuro -11847 +▁proceeded -11848 +?” -11849 +▁loose -11850 +▁Pi -11851 +▁Clay -11852 +entieth -11853 +▁Apollo -11854 +▁amateur -11855 +urricanes -11856 +apters -11857 +▁hardware -11858 +100 -11859 +uce -11860 +▁zones -11861 +▁similarities -11862 +▁communist -11863 +▁settlements -11864 +elta -11865 +86 -11866 +ulsion -11867 +▁Transportation -11868 +ikes -11869 +ancers -11870 +▁discipline -11871 +▁Sep -11872 +press -11873 +▁migr -11874 +▁Televizyon -11875 +▁Oil -11876 +ión -11877 +▁Yorkshire -11878 +▁Outstanding -11879 +ashi -11880 +▁supern -11881 +▁colours -11882 +▁Guinea -11883 +▁fu -11884 +▁Pul -11885 +▁harsh -11886 +▁Talk -11887 +42 -11888 +▁Clin -11889 +▁fourteen -11890 +avia -11891 +▁Marcel -11892 +iko -11893 +▁neur -11894 +▁imposed -11895 +ratropical -11896 +▁sponsored -11897 +89 -11898 +▁1893 -11899 +▁advances -11900 +▁volcanic -11901 +▁Eis -11902 +oloji -11903 +▁Deb -11904 +usters -11905 +▁colored -11906 +▁hide -11907 +through -11908 +▁remembered -11909 +▁strange -11910 +▁Pittsburgh -11911 +▁Affairs -11912 +▁continent -11913 +▁Cut -11914 +▁Try -11915 +▁complement -11916 +▁Malaysia -11917 +▁conducting -11918 +▁rebels -11919 +▁viruses -11920 +▁sixteen -11921 +▁pour -11922 +▁elaborate -11923 +▁joy -11924 +▁democracy -11925 +▁3, -11926 +▁Stef -11927 +▁surrendered -11928 +▁width -11929 +▁JT -11930 +iratory -11931 +▁quantity -11932 +▁shed -11933 +▁poster -11934 +▁je -11935 +▁Wel -11936 +▁pharm -11937 +]. -11938 +▁Johann -11939 +▁burial -11940 +▁precise -11941 +▁jurisdiction -11942 +▁transformed -11943 +▁PS -11944 +▁spur -11945 +▁contracts -11946 +ipper -11947 +▁dozen -11948 +▁aftermath -11949 +hma -11950 +▁Month -11951 +▁Triple -11952 +ao -11953 +▁Steel -11954 +▁quantities -11955 +0. -11956 +nut -11957 +▁positively -11958 +var -11959 +▁nutrition -11960 +▁grandfather -11961 +rels -11962 +minster -11963 +▁resolved -11964 +ido -11965 +▁Alt -11966 +▁culmin -11967 +▁societies -11968 +▁Historical -11969 +onge -11970 +▁uranium -11971 +▁Syl -11972 +▁Half -11973 +▁Fleming -11974 +▁Officer -11975 +onde -11976 +▁aft -11977 +▁reass -11978 +▁Ages -11979 +▁1899 -11980 +▁Davies -11981 +▁7. -11982 +▁notion -11983 +▁Beginning -11984 +iksyon -11985 +▁warned -11986 +▁reduces -11987 +▁Mayor -11988 +▁doi -11989 +▁readily -11990 +▁Danish -11991 +▁definitely -11992 +▁Pow -11993 +▁extratropical -11994 +lem -11995 +▁Yes -11996 +▁Geoff -11997 +▁Vl -11998 +▁Belgian -11999 +▁discrimination -12000 +▁melody -12001 +hum -12002 +▁fier -12003 +celand -12004 +▁Hardy -12005 +▁stabil -12006 +▁detection -12007 +▁participating -12008 +▁Check -12009 +▁Bennett -12010 +▁Thunder -12011 +▁trapped -12012 +▁PR -12013 +▁summit -12014 +▁exchang -12015 +▁telephone -12016 +▁Cho -12017 +▁Days -12018 +▁Given -12019 +▁lacking -12020 +▁AL -12021 +▁automatically -12022 +roduction -12023 +ogram -12024 +isations -12025 +▁productions -12026 +▁pref -12027 +▁WH -12028 +▁Bren -12029 +▁Tang -12030 +▁cartoon -12031 +▁punishment -12032 +▁Nord -12033 +▁ease -12034 +▁Impact -12035 +▁induct -12036 +▁mate -12037 +▁Safety -12038 +▁healing -12039 +▁advertis -12040 +iya -12041 +▁NAT -12042 +▁lib -12043 +▁breath -12044 +▁Chronicle -12045 +▁perception -12046 +▁Wilhelm -12047 +▁Facebook -12048 +▁mathematical -12049 +▁anger -12050 +▁cooking -12051 +▁abundant -12052 +mers -12053 +▁Guitar -12054 +▁Cred -12055 +itivity -12056 +▁stake -12057 +▁Portugal -12058 +7, -12059 +▁epic -12060 +▁feathers -12061 +▁divine -12062 +▁anime -12063 +▁prisoner -12064 +III -12065 +alg -12066 +▁hospitals -12067 +▁Norfolk -12068 +▁puts -12069 +▁sacred -12070 +▁Luther -12071 +▁undertaken -12072 +otypes -12073 +▁Malt -12074 +▁careful -12075 +▁tissues -12076 +▁rotation -12077 +▁controlling -12078 +▁champions -12079 +▁Neil -12080 +▁parad -12081 +▁repet -12082 +▁Unfortunately -12083 +▁Vern -12084 +▁pupils -12085 +lez -12086 +▁por -12087 +▁Flying -12088 +▁Gallery -12089 +▁cabinet -12090 +▁streams -12091 +▁authorized -12092 +▁Larry -12093 +▁Glen -12094 +▁accomplished -12095 +▁voters -12096 +umble -12097 +▁portrayal -12098 +atches -12099 +▁Titan -12100 +▁Harold -12101 +▁constra -12102 +▁refugees -12103 +▁biology -12104 +▁finance -12105 +▁Collection -12106 +▁gear -12107 +▁inhab -12108 +▁redes -12109 +▁Cameron -12110 +▁zye -12111 +▁Howe -12112 +▁Wik -12113 +▁irrit -12114 +▁parody -12115 +▁voyage -12116 +▁Greater -12117 +▁scope -12118 +▁commercially -12119 +▁Meg -12120 +▁Ib -12121 +▁Daw -12122 +alling -12123 +hu -12124 +olin -12125 +▁pursuit -12126 +▁searching -12127 +azon -12128 +▁lighter -12129 +▁revolt -12130 +▁reinforcements -12131 +rium -12132 +▁Bour -12133 +▁Fourth -12134 +▁divorce -12135 +▁wished -12136 +▁Minor -12137 +▁Champion -12138 +▁Lonj -12139 +istant -12140 +▁calm -12141 +▁Freedom -12142 +▁imper -12143 +▁promotional -12144 +▁Detay -12145 +▁feared -12146 +▁commanders -12147 +▁Afghanistan -12148 +eta -12149 +▁Swift -12150 +▁commenced -12151 +quest -12152 +▁ritual -12153 +▁Latitid -12154 +▁Got -12155 +▁cord -12156 +▁Method -12157 +▁Lonjitid -12158 +▁Owen -12159 +▁acceptance -12160 +▁ramp -12161 +herent -12162 +▁radi -12163 +▁fiber -12164 +▁safely -12165 +▁reh -12166 +actic -12167 +▁withdrawn -12168 +▁occasional -12169 +▁tout -12170 +▁Protestant -12171 +▁TNA -12172 +▁advancing -12173 +▁NCAA -12174 +▁hoping -12175 +▁assignment -12176 +▁blues -12177 +▁Burton -12178 +anas -12179 +flow -12180 +▁spawn -12181 +found -12182 +▁reorgan -12183 +▁quarters -12184 +ION -12185 +▁meal -12186 +hyd -12187 +ocene -12188 +▁Rena -12189 +▁borders -12190 +▁Bud -12191 +▁Regional -12192 +▁CH -12193 +▁duo -12194 +grade -12195 +▁acre -12196 +▁outdoor -12197 +▁horizontal -12198 +▁Tak -12199 +▁encompass -12200 +utton -12201 +▁Commer -12202 +▁trunk -12203 +▁Brazilian -12204 +asha -12205 +▁Intellig -12206 +▁Lore -12207 +▁miz -12208 +▁hostile -12209 +▁Wells -12210 +cons -12211 +▁Page -12212 +▁ourselves -12213 +ilia -12214 +backs -12215 +list -12216 +▁doctrine -12217 +uri -12218 +▁Language -12219 +▁Cathedral -12220 +rang -12221 +arded -12222 +▁Cand -12223 +ING -12224 +▁Stuart -12225 +▁1895 -12226 +▁sid -12227 +cht -12228 +▁historically -12229 +ho -12230 +▁summar -12231 +▁infant -12232 +▁package -12233 +▁ib -12234 +▁Legisl -12235 +▁RP -12236 +▁disturbance -12237 +▁Terry -12238 +▁Register -12239 +▁battlecru -12240 +▁perpet -12241 +▁Iceland -12242 +▁terminal -12243 +▁hung -12244 +▁Bradman -12245 +▁Republicans -12246 +neum -12247 +▁herb -12248 +▁barrier -12249 +▁worry -12250 +▁Production -12251 +GB -12252 +beat -12253 +▁Vit -12254 +▁choosing -12255 +▁interven -12256 +▁numbered -12257 +▁installation -12258 +▁03 -12259 +▁powder -12260 +▁philosoph -12261 +▁Salv -12262 +▁maybe -12263 +EL -12264 +lings -12265 +▁Joint -12266 +iminary -12267 +▁fro -12268 +▁consent -12269 +▁goddess -12270 +▁viewing -12271 +▁enlar -12272 +hn -12273 +▁invented -12274 +▁Constantin -12275 +▁Crow -12276 +▁legacy -12277 +▁wouldn -12278 +▁Gay -12279 +utors -12280 +▁Ré -12281 +▁Beth -12282 +▁mas -12283 +ublin -12284 +▁Ruth -12285 +▁traits -12286 +▁Picture -12287 +▁Skin -12288 +ailing -12289 +▁Number -12290 +▁drown -12291 +▁Dallas -12292 +▁unemploy -12293 +▁collecting -12294 +held -12295 +▁marking -12296 +bast -12297 +▁boilers -12298 +iga -12299 +▁totally -12300 +▁ballad -12301 +▁perm -12302 +estock -12303 +▁Click -12304 +▁matematisyen -12305 +amation -12306 +▁wrestling -12307 +EP -12308 +olia -12309 +▁cha -12310 +clusive -12311 +▁rendered -12312 +iors -12313 +▁juven -12314 +▁citizen -12315 +▁opposing -12316 +▁innovation -12317 +rays -12318 +▁strikes -12319 +▁pwod -12320 +▁Rangers -12321 +NC -12322 +▁ka -12323 +▁cream -12324 +▁Disease -12325 +▁ingredients -12326 +pine -12327 +UC -12328 +cope -12329 +▁insu -12330 +▁crest -12331 +ieu -12332 +▁seal -12333 +▁commanding -12334 +▁threatening -12335 +▁Cancer -12336 +▁bin -12337 +▁reserved -12338 +itime -12339 +IP -12340 +▁1897 -12341 +▁Future -12342 +oline -12343 +▁fing -12344 +otherapy -12345 +▁ic -12346 +▁bowl -12347 +erated -12348 +▁prototype -12349 +▁concentrations -12350 +▁EC -12351 +▁specialized -12352 +▁1: -12353 +holders -12354 +which -12355 +▁sized -12356 +▁compare -12357 +▁perfectly -12358 +ensis -12359 +▁airfield -12360 +▁relating -12361 +oirs -12362 +making -12363 +▁Find -12364 +▁archaeological -12365 +6, -12366 +izz -12367 +▁» -12368 +amas -12369 +▁Hispan -12370 +▁Saturn -12371 +▁beating -12372 +▁mysterious -12373 +▁Mater -12374 +▁reson -12375 +abulary -12376 +atistik -12377 +▁recurring -12378 +▁Saxon -12379 +▁tables -12380 +▁subsc -12381 +▁thermal -12382 +▁upcoming -12383 +▁portrait -12384 +▁laugh -12385 +▁hazard -12386 +anim -12387 +▁fungus -12388 +▁Stars -12389 +77 -12390 +isan -12391 +▁cav -12392 +▁Montana -12393 +▁:2 -12394 +▁client -12395 +itted -12396 +▁reef -12397 +ön -12398 +▁Hav -12399 +being -12400 +▁metabol -12401 +▁Marvel -12402 +▁fame -12403 +▁prayer -12404 +esity -12405 +▁Isaac -12406 +▁Johnston -12407 +▁diplomatic -12408 +▁Observ -12409 +▁housed -12410 +▁atmospheric -12411 +▁Sak -12412 +▁desper -12413 +▁Craw -12414 +▁cant -12415 +▁Chair -12416 +▁overwhelming -12417 +eston -12418 +▁atoms -12419 +▁behaviors -12420 +▁Oslo -12421 +▁dece -12422 +▁fron -12423 +▁Pictures -12424 +▁favourite -12425 +▁happening -12426 +▁Access -12427 +▁limitations -12428 +▁FBI -12429 +▁Rezime -12430 +▁congress -12431 +▁southeastern -12432 +▁tours -12433 +▁Æthel -12434 +▁advantages -12435 +▁Reich -12436 +▁oriented -12437 +▁Alban -12438 +▁Bryan -12439 +▁depicts -12440 +▁compiled -12441 +nels -12442 +▁tob -12443 +▁Nancy -12444 +▁comparing -12445 +HS -12446 +▁Lis -12447 +▁Sad -12448 +▁jaw -12449 +▁unt -12450 +▁Mall -12451 +▁Herald -12452 +▁Against -12453 +▁creature -12454 +▁Athens -12455 +▁elite -12456 +▁accomplish -12457 +ults -12458 +▁Lead -12459 +▁fossils -12460 +▁mythology -12461 +▁relocated -12462 +▁pupp -12463 +▁Patri -12464 +▁estatistik -12465 +▁travelling -12466 +Ne -12467 +▁Cort -12468 +▁prest -12469 +▁Hyd -12470 +▁Georges -12471 +enders -12472 +▁superst -12473 +dam -12474 +mat -12475 +▁cave -12476 +▁mystery -12477 +▁Champions -12478 +▁intelligent -12479 +▁discussing -12480 +gomery -12481 +▁Agu -12482 +▁Unit -12483 +▁edges -12484 +oba -12485 +Grain -12486 +▁proud -12487 +eda -12488 +inis -12489 +▁Level -12490 +▁Youth -12491 +istence -12492 +ounters -12493 +▁Crus -12494 +▁rejo -12495 +▁explored -12496 +ordinary -12497 +▁speaker -12498 +▁Hunter -12499 +▁Vo -12500 +▁Pra -12501 +▁sailing -12502 +▁damaging -12503 +VID -12504 +itting -12505 +▁nominations -12506 +▁correctly -12507 +▁thickness -12508 +▁dil -12509 +▁scrap -12510 +elihood -12511 +▁sacrifice -12512 +▁Lud -12513 +▁Costa -12514 +onso -12515 +▁Zone -12516 +acular -12517 +▁confer -12518 +▁treating -12519 +▁consensus -12520 +assium -12521 +▁nautical -12522 +▁disappeared -12523 +▁CBS -12524 +▁Friends -12525 +unct -12526 +▁memories -12527 +▁identifying -12528 +▁sharks -12529 +rand -12530 +▁Nav -12531 +thening -12532 +▁Word -12533 +▁Montgomery -12534 +wer -12535 +hill -12536 +▁busy -12537 +igo -12538 +▁202 -12539 +▁fatal -12540 +▁anticipated -12541 +▁bonds -12542 +▁Clarke -12543 +▁Prix -12544 +▁tracking -12545 +▁airline -12546 +▁outstanding -12547 +▁Ivan -12548 +--- -12549 +InGrain -12550 +▁intersects -12551 +▁FallInGrain -12552 +▁metric -12553 +▁belonging -12554 +▁wonderful -12555 +▁Body -12556 +▁harder -12557 +▁Brooks -12558 +▁beaten -12559 +master -12560 +▁Cricket -12561 +▁elderly -12562 +▁renewed -12563 +▁UE -12564 +▁Mig -12565 +ingham -12566 +▁distract -12567 +▁Performance -12568 +rub -12569 +▁collective -12570 +▁Fitz -12571 +▁Robin -12572 +▁breeds -12573 +▁attractive -12574 +▁creek -12575 +▁Trophy -12576 +▁rays -12577 +▁extends -12578 +▁reserves -12579 +oda -12580 +▁Nebr -12581 +▁urged -12582 +▁guests -12583 +▁abstract -12584 +-200 -12585 +▁Economic -12586 +▁Pent -12587 +▁rivalry -12588 +▁corruption -12589 +▁incl -12590 +reated -12591 +▁Marge -12592 +enson -12593 +Arthur -12594 +’. -12595 +▁rod -12596 +▁cleaning -12597 +▁erosion -12598 +▁Insp -12599 +▁capturing -12600 +▁Stein -12601 +arents -12602 +▁praising -12603 +▁Rou -12604 +▁spar -12605 +▁mistake -12606 +▁destroyer -12607 +▁Metropolitan -12608 +▁Wii -12609 +utter -12610 +▁undergo -12611 +▁Churchill -12612 +▁stolen -12613 +▁voltage -12614 +▁territorial -12615 +orrect -12616 +▁Attorney -12617 +▁cheap -12618 +▁toured -12619 +▁discontin -12620 +▁Shah -12621 +▁plenty -12622 +.| -12623 +cester -12624 +blem -12625 +igue -12626 +▁pine -12627 +iotics -12628 +▁lesser -12629 +▁incorporate -12630 +▁Laura -12631 +▁acquire -12632 +▁mice -12633 +▁essays -12634 +hea -12635 +▁administered -12636 +enz -12637 +▁disk -12638 +▁fears -12639 +▁gluc -12640 +▁arose -12641 +▁kitchen -12642 +▁Pel -12643 +▁tent -12644 +▁unh -12645 +apor -12646 +▁rains -12647 +raid -12648 +▁Alliance -12649 +▁Resources -12650 +▁reasonable -12651 +pes -12652 +▁flesh -12653 +▁eventual -12654 +▁Constantine -12655 +agram -12656 +▁reyalizatè -12657 +▁Nebraska -12658 +▁guy -12659 +▁vin -12660 +▁Raymond -12661 +fast -12662 +▁recruited -12663 +▁sophistic -12664 +▁240 -12665 +▁Rat -12666 +▁Urban -12667 +▁biography -12668 +▁evolutionary -12669 +rators -12670 +▁merged -12671 +▁Classic -12672 +▁1861 -12673 +▁Coal -12674 +instein -12675 +▁copyright -12676 +not -12677 +urst -12678 +▁Change -12679 +▁« -12680 +engu -12681 +▁Sic -12682 +▁ancestors -12683 +▁absolutely -12684 +enza -12685 +▁thy -12686 +onial -12687 +▁verses -12688 +▁throwing -12689 +▁perf -12690 +▁experiencing -12691 +▁dose -12692 +▁complications -12693 +▁quoted -12694 +▁04 -12695 +▁Aren -12696 +▁Branch -12697 +▁Valent -12698 +▁Wonder -12699 +▁circles -12700 +▁incidents -12701 +aco -12702 +▁OF -12703 +icity -12704 +▁Kane -12705 +osal -12706 +▁cinema -12707 +▁Testament -12708 +▁specialist -12709 +▁Burns -12710 +arians -12711 +▁gathering -12712 +▁Krist -12713 +▁Thanks -12714 +▁Kaiser -12715 +▁scales -12716 +▁Sheff -12717 +▁Dublin -12718 +quer -12719 +▁Pant -12720 +▁cure -12721 +abling -12722 +auge -12723 +▁ears -12724 +plant -12725 +keeper -12726 +▁Rather -12727 +lington -12728 +omical -12729 +▁develops -12730 +▁Flag -12731 +hell -12732 +landers -12733 +▁Nad -12734 +▁Perhaps -12735 +▁staying -12736 +▁tobacco -12737 +▁intermediate -12738 +▁Mix -12739 +▁nineteenth -12740 +mont -12741 +▁predominantly -12742 +▁nam -12743 +▁Archae -12744 +▁aux -12745 +▁Monday -12746 +▁achieving -12747 +▁Romans -12748 +ña -12749 +▁bore -12750 +▁eligible -12751 +▁whales -12752 +pike -12753 +▁Sex -12754 +▁sor -12755 +▁Oscar -12756 +▁Buffalo -12757 +orf -12758 +▁reflects -12759 +▁screens -12760 +ahl -12761 +▁María -12762 +▁pursued -12763 +▁Scar -12764 +ifferent -12765 +▁complained -12766 +▁Sri -12767 +leted -12768 +▁libr -12769 +▁rocket -12770 +▁rehears -12771 +▁blast -12772 +isely -12773 +▁Tol -12774 +▁Cyrus -12775 +istically -12776 +▁persuaded -12777 +▁sentenced -12778 +▁dimensions -12779 +▁Globe -12780 +▁modest -12781 +▁cyclones -12782 +▁companion -12783 +▁Does -12784 +▁garn -12785 +▁Judge -12786 +▁imagine -12787 +acts -12788 +▁JTWC -12789 +▁thread -12790 +▁specified -12791 +▁tune -12792 +▁Dj -12793 +ucker -12794 +▁planted -12795 +▁Sheffield -12796 +▁centered -12797 +▁releasing -12798 +▁sizes -12799 +▁manufactured -12800 +▁Wes -12801 +thetic -12802 +▁Climate -12803 +▁cathedral -12804 +▁drafted -12805 +▁employee -12806 +enos -12807 +▁UEFA -12808 +▁Madison -12809 +▁Cemetery -12810 +etta -12811 +iop -12812 +▁fluor -12813 +▁releg -12814 +▁odd -12815 +▁deals -12816 +▁authentic -12817 +ierra -12818 +▁digit -12819 +▁spite -12820 +▁chapters -12821 +chy -12822 +▁Justin -12823 +iang -12824 +▁Vic -12825 +adows -12826 +▁Kids -12827 +▁repeat -12828 +asma -12829 +ften -12830 +levard -12831 +▁walked -12832 +▁Chan -12833 +▁assessed -12834 +▁connects -12835 +▁Indonesian -12836 +▁Studio -12837 +▁oct -12838 +boards -12839 +▁masses -12840 +iste -12841 +assy -12842 +▁chore -12843 +▁manufacturers -12844 +▁tends -12845 +otion -12846 +▁Boat -12847 +▁invaded -12848 +▁Baron -12849 +▁manga -12850 +▁sings -12851 +▁nevertheless -12852 +▁1889 -12853 +▁Mann -12854 +▁kidn -12855 +▁Side -12856 +▁lyr -12857 +▁misc -12858 +▁tendency -12859 +▁unve -12860 +▁Gabriel -12861 +OW -12862 +▁Sultan -12863 +▁judgment -12864 +▁critically -12865 +▁fragments -12866 +ourt -12867 +▁Princ -12868 +▁corrid -12869 +▁killer -12870 +▁comprised -12871 +▁Representatives -12872 +▁CEO -12873 +dan -12874 +ometry -12875 +▁Tab -12876 +▁loaded -12877 +▁silent -12878 +▁suggestion -12879 +Is -12880 +ogs -12881 +▁epit -12882 +ocaust -12883 +▁Liberty -12884 +▁Industrial -12885 +pin -12886 +ulator -12887 +guard -12888 +eps -12889 +▁eaten -12890 +▁imprisoned -12891 +▁NATO -12892 +▁Maced -12893 +▁biographer -12894 +▁qualifying -12895 +quis -12896 +andro -12897 +▁implications -12898 +▁McKin -12899 +inating -12900 +▁parking -12901 +▁struggling -12902 +rice -12903 +urated -12904 +▁Junior -12905 +▁Leonard -12906 +enburg -12907 +▁gases -12908 +▁diamond -12909 +▁technological -12910 +And -12911 +ović -12912 +urer -12913 +▁landmark -12914 +▁Toy -12915 +ovic -12916 +▁Rogers -12917 +▁pleased -12918 +▁tracked -12919 +▁Chelsea -12920 +▁municipal -12921 +▁complexity -12922 +▁greenhouse -12923 +▁measurement -12924 +▁robot -12925 +▁Reagan -12926 +iolet -12927 +▁Mercury -12928 +▁Caes -12929 +▁Merced -12930 +fim -12931 +▁throat -12932 +▁conquest -12933 +▁interface -12934 +thal -12935 +▁Danny -12936 +▁navigation -12937 +des -12938 +▁membrane -12939 +▁Palestine -12940 +▁1888 -12941 +▁Emmy -12942 +▁anne -12943 +▁Scots -12944 +▁nep -12945 +▁grossing -12946 +▁mouse -12947 +▁spell -12948 +▁carved -12949 +▁welfare -12950 +iblical -12951 +▁knocked -12952 +ieg -12953 +▁Ana -12954 +vet -12955 +▁subtle -12956 +▁dancers -12957 +▁OS -12958 +inate -12959 +▁recruit -12960 +RS -12961 +▁gains -12962 +▁button -12963 +▁trends -12964 +▁pitcher -12965 +▁tourist -12966 +▁murdered -12967 +▁frog -12968 +▁promising -12969 +mel -12970 +▁steady -12971 +atts -12972 +ovak -12973 +▁Pick -12974 +▁Claud -12975 +▁radius -12976 +▁rescued -12977 +alties -12978 +▁cooling -12979 +▁compositions -12980 +▁styl -12981 +▁Systems -12982 +▁Tradition -12983 +▁ward -12984 +▁Fun -12985 +▁Parsons -12986 +▁sentiment -12987 +▁accidentally -12988 +htm -12989 +▁customer -12990 +▁volunt -12991 +▁Alberta -12992 +▁veteran -12993 +keley -12994 +▁Nevada -12995 +▁Arabic -12996 +jud -12997 +▁1894 -12998 +▁Pain -12999 +▁drives -13000 +▁monthly -13001 +▁ba -13002 +▁AIDS -13003 +▁contents -13004 +▁fet -13005 +▁Total -13006 +▁101 -13007 +▁Sean -13008 +▁fraud -13009 +▁icon -13010 +▁embarked -13011 +▁Serbian -13012 +▁permanently -13013 +▁speculation -13014 +▁Nou -13015 +▁regist -13016 +500 -13017 +▁Arc -13018 +▁Cardiff -13019 +93 -13020 +▁Gregory -13021 +▁Ps -13022 +mother -13023 +▁bills -13024 +▁Bright -13025 +▁trace -13026 +▁satisfact -13027 +▁endangered -13028 +-6 -13029 +▁450 -13030 +▁cig -13031 +▁Nova -13032 +asury -13033 +lessly -13034 +▁Brand -13035 +▁Sear -13036 +▁drag -13037 +OU -13038 +bage -13039 +▁viral -13040 +▁vicinity -13041 +▁Model -13042 +▁alumin -13043 +▁judicial -13044 +▁competitions -13045 +ampton -13046 +▁enforcement -13047 +▁Room -13048 +▁bars -13049 +▁Additional -13050 +▁pas -13051 +achute -13052 +▁Greatest -13053 +▁inspect -13054 +avi -13055 +▁bitter -13056 +▁mutual -13057 +▁shopping -13058 +▁girlfriend -13059 +haw -13060 +▁Saw -13061 +▁Burke -13062 +▁Stre -13063 +▁dish -13064 +▁steadily -13065 +▁CN -13066 +ellers -13067 +▁Large -13068 +▁Orthodox -13069 +▁positioned -13070 +▁Hunt -13071 +▁Sherman -13072 +iov -13073 +▁BCE -13074 +▁prospect -13075 +▁homeless -13076 +osity -13077 +▁expense -13078 +▁ensuring -13079 +▁disappear -13080 +▁104 -13081 +▁harbour -13082 +▁tickets -13083 +▁evacuation -13084 +mill -13085 +itate -13086 +▁mold -13087 +castle -13088 +colm -13089 +▁Laz -13090 +▁hur -13091 +▁reconstruction -13092 +New -13093 +▁amino -13094 +▁binding -13095 +tye -13096 +▁Chall -13097 +▁tasked -13098 +▁127 -13099 +▁wheat -13100 +▁Capital -13101 +▁speakers -13102 +▁weakening -13103 +▁rivals -13104 +▁revival -13105 +rians -13106 +▁Taiwan -13107 +▁Princeton -13108 +▁Machine -13109 +▁1891 -13110 +▁gast -13111 +osyete -13112 +▁135 -13113 +▁intact -13114 +▁Miles -13115 +▁balls -13116 +▁Baltic -13117 +▁clergy -13118 +▁disabled -13119 +▁CC -13120 +amount -13121 +▁mg -13122 +▁Leaf -13123 +▁progression -13124 +olesc -13125 +▁axis -13126 +ogenic -13127 +▁entert -13128 +▁Tyler -13129 +▁mechanics -13130 +▁respiratory -13131 +mye -13132 +▁tongue -13133 +ilda -13134 +▁echo -13135 +▁drought -13136 +▁squadrons -13137 +▁determining -13138 +▁fol -13139 +▁destination -13140 +▁insufficient -13141 +uns -13142 +▁quantum -13143 +▁Whether -13144 +▁twentieth -13145 +▁Ask -13146 +ipedia -13147 +grounds -13148 +print -13149 +▁encounters -13150 +▁theoretical -13151 +▁Jose -13152 +▁drummer -13153 +▁graphic -13154 +▁ecological -13155 +▁Cond -13156 +▁Ship -13157 +▁adoption -13158 +▁tourists -13159 +inite -13160 +▁Sans -13161 +▁crust -13162 +▁exile -13163 +▁mentions -13164 +▁offshore -13165 +▁witnessed -13166 +▁Fac -13167 +▁1865 -13168 +▁attraction -13169 +▁achievements -13170 +▁Actor -13171 +▁ghost -13172 +▁distances -13173 +▁seiz -13174 +▁Spect -13175 +▁Policy -13176 +▁submit -13177 +▁Soft -13178 +▁Things -13179 +▁Genesis -13180 +itol -13181 +inz -13182 +▁gly -13183 +▁Weather -13184 +▁dissolved -13185 +▁vibr -13186 +▁scholarship -13187 +▁mim -13188 +▁brut -13189 +▁rounded -13190 +advant -13191 +▁consume -13192 +▁sentences -13193 +▁compromise -13194 +adequ -13195 +▁delight -13196 +▁gut -13197 +oding -13198 +▁demo -13199 +▁Researchers -13200 +▁220 -13201 +▁Eld -13202 +ancellor -13203 +▁instances -13204 +▁machinery -13205 +ulu -13206 +▁Voy -13207 +ostic -13208 +▁Inside -13209 +▁Rodrig -13210 +▁ank -13211 +▁Sega -13212 +leys -13213 +▁Omar -13214 +▁temples -13215 +▁airing -13216 +▁variables -13217 +encer -13218 +▁Zero -13219 +isphere -13220 +▁Yon -13221 +▁1885 -13222 +▁Shiva -13223 +▁walks -13224 +▁Nam -13225 +▁Gener -13226 +▁blank -13227 +olester -13228 +▁commenting -13229 +▁Bark -13230 +▁Progress -13231 +▁integration -13232 +32 -13233 +▁transmit -13234 +▁flav -13235 +▁Strong -13236 +▁ashore -13237 +▁encouraging -13238 +▁hunt -13239 +▁Helen -13240 +elia -13241 +▁beer -13242 +▁Arist -13243 +▁chromos -13244 +▁crashed -13245 +ordination -13246 +gart -13247 +▁grace -13248 +▁Boeing -13249 +▁1892 -13250 +▁suited -13251 +▁Mang -13252 +lett -13253 +▁streak -13254 +▁insight -13255 +afe -13256 +airy -13257 +▁lingu -13258 +ailable -13259 +▁pleasure -13260 +▁extinction -13261 +▁songwriter -13262 +’, -13263 +▁uncon -13264 +▁preceding -13265 +▁multiplayer -13266 +▁investigated -13267 +▁Chad -13268 +EF -13269 +▁1840 -13270 +▁demographic -13271 +▁parliamentary -13272 +▁differently -13273 +GM -13274 +▁Besides -13275 +▁prolong -13276 +▁transformation -13277 +▁Nobel -13278 +▁Warri -13279 +▁Remember -13280 +▁Nas -13281 +▁trap -13282 +front -13283 +▁alert -13284 +uates -13285 +▁grants -13286 +▁mothers -13287 +▁www -13288 +▁livestock -13289 +▁Aber -13290 +▁Region -13291 +▁convince -13292 +▁Malcolm -13293 +▁republic -13294 +▁Hus -13295 +imity -13296 +▁inev -13297 +▁Rivers -13298 +▁decomp -13299 +▁sediment -13300 +▁intr -13301 +cluding -13302 +▁Barnes -13303 +▁agg -13304 +▁Eddie -13305 +▁Constantinople -13306 +▁Prest -13307 +olith -13308 +▁fanm -13309 +▁Delta -13310 +▁buying -13311 +▁convicted -13312 +▁XX -13313 +▁slower -13314 +▁glob -13315 +iously -13316 +▁4, -13317 +just -13318 +▁Micha -13319 +▁suscept -13320 +▁Arkansas -13321 +▁reconstruct -13322 +GS -13323 +anka -13324 +▁Mak -13325 +owned -13326 +▁Diet -13327 +▁Parks -13328 +▁Chapel -13329 +▁Edmund -13330 +▁laser -13331 +▁trips -13332 +opard -13333 +▁Beau -13334 +▁drainage -13335 +oning -13336 +▁pseud -13337 +lements -13338 +▁Regard -13339 +▁Cavalry -13340 +▁editions -13341 +▁depicting -13342 +amic -13343 +works -13344 +▁unst -13345 +▁suspension -13346 +▁mirror -13347 +▁courage -13348 +▁excited -13349 +▁witnesses -13350 +hl -13351 +▁admit -13352 +▁licensed -13353 +TM -13354 +▁Than -13355 +▁comparable -13356 +▁CM -13357 +▁warships -13358 +empl -13359 +▁Leo -13360 +▁Brooklyn -13361 +▁mere -13362 +ictions -13363 +▁masc -13364 +▁penn -13365 +▁charted -13366 +▁contrary -13367 +▁managers -13368 +▁isolation -13369 +▁canon -13370 +▁spray -13371 +▁Source -13372 +▁Bask -13373 +▁Schum -13374 +▁swing -13375 +▁profound -13376 +▁Marines -13377 +▁Him -13378 +▁progressed -13379 +-4 -13380 +▁imported -13381 +▁compat -13382 +▁Orchest -13383 +▁Incre -13384 +▁exterior -13385 +▁~ -13386 +▁Tib -13387 +▁triumph -13388 +wright -13389 +▁preservation -13390 +▁ber -13391 +▁Core -13392 +▁mant -13393 +▁Nathan -13394 +▁resolve -13395 +▁continental -13396 +iago -13397 +▁Buddhist -13398 +div -13399 +▁Joan -13400 +▁deriv -13401 +▁Ground -13402 +▁dropping -13403 +▁heavier -13404 +▁plug -13405 +▁Florence -13406 +▁Sey -13407 +▁soap -13408 +idia -13409 +▁Kyle -13410 +▁Northwest -13411 +▁Bot -13412 +▁propaganda -13413 +ocolate -13414 +▁rab -13415 +▁Cryst -13416 +▁chase -13417 +▁Movement -13418 +▁literacy -13419 +▁defenders -13420 +▁monastery -13421 +▁Kenneth -13422 +▁Symphony -13423 +▁(5 -13424 +▁8. -13425 +▁Shep -13426 +▁Learn -13427 +▁editing -13428 +▁Gates -13429 +▁interf -13430 +▁LP -13431 +ifier -13432 +riages -13433 +▁André -13434 +▁peninsula -13435 +▁Tow -13436 +▁sear -13437 +▁Vienn -13438 +▁Publishing -13439 +▁amphib -13440 +▁naming -13441 +▁avoiding -13442 +▁Territory -13443 +▁seemingly -13444 +▁democratic -13445 +osphere -13446 +▁₹ -13447 +▁Sor -13448 +▁VIII -13449 +▁Herbert -13450 +atial -13451 +WA -13452 +-18 -13453 +▁Thames -13454 +▁cameras -13455 +gow -13456 +▁tourism -13457 +31 -13458 +▁COVID -13459 +▁minds -13460 +▁particle -13461 +ril -13462 +▁whale -13463 +▁metall -13464 +▁projected -13465 +avier -13466 +▁symmet -13467 +istle -13468 +▁Philos -13469 +▁Self -13470 +▁drunk -13471 +enez -13472 +▁MacArthur -13473 +oths -13474 +▁intest -13475 +▁dramatically -13476 +▁shadow -13477 +but -13478 +▁venture -13479 +▁condemned -13480 +▁persec -13481 +plex -13482 +-7 -13483 +▁145 -13484 +▁Duc -13485 +▁Phot -13486 +▁Continental -13487 +▁descendants -13488 +▁Cloud -13489 +▁Glas -13490 +▁anthrop -13491 +▁sleeping -13492 +▁electrons -13493 +▁helicopter -13494 +▁Planet -13495 +▁transmitted -13496 +▁′ -13497 +▁wart -13498 +▁civilization -13499 +rock -13500 +▁Wildlife -13501 +graduate -13502 +▁conjunction -13503 +▁Hi -13504 +veill -13505 +▁cement -13506 +▁trauma -13507 +▁deliberately -13508 +▁holy -13509 +ishops -13510 +▁Sport -13511 +▁wishes -13512 +▁namely -13513 +▁accurately -13514 +dest -13515 +▁bol -13516 +▁stern -13517 +▁Working -13518 +▁Claire -13519 +▁Season -13520 +▁Emma -13521 +▁pneum -13522 +▁Dale -13523 +▁deputy -13524 +▁transit -13525 +▁Doc -13526 +▁bees -13527 +▁closure -13528 +▁swept -13529 +cliff -13530 +▁darker -13531 +▁Hood -13532 +▁variant -13533 +▁floating -13534 +▁damages -13535 +agles -13536 +▁welcome -13537 +▁nickname -13538 +▁Pok -13539 +▁Impro -13540 +▁underwater -13541 +▁Renaissance -13542 +yramid -13543 +▁wisdom -13544 +▁meteor -13545 +▁SC -13546 +▁correl -13547 +▁extraordinary -13548 +gary -13549 +pring -13550 +▁Niger -13551 +▁Round -13552 +▁cemetery -13553 +▁Various -13554 +▁Cornwall -13555 +▁balanced -13556 +▁legitimate -13557 +▁psychology -13558 +▁Chester -13559 +▁Jen -13560 +▁Clara -13561 +▁Magic -13562 +umberland -13563 +▁interference -13564 +▁Kaz -13565 +▁Log -13566 +▁Lòt -13567 +ischer -13568 +mentation -13569 +▁highlights -13570 +▁acquisition -13571 +olars -13572 +▁arth -13573 +olesterol -13574 +▁Iss -13575 +ringe -13576 +▁Voice -13577 +▁sinking -13578 +▁acceptable -13579 +▁asserted -13580 +▁invention -13581 +▁01 -13582 +▁Julian -13583 +▁1830 -13584 +▁Vick -13585 +87 -13586 +racks -13587 +▁antye -13588 +▁pushing -13589 +▁Schools -13590 +ushes -13591 +▁practition -13592 +▁arbit -13593 +▁favored -13594 +▁mixing -13595 +▁marched -13596 +▁rushing -13597 +▁Airlines -13598 +▁revealing -13599 +▁synthesis -13600 +▁contacted -13601 +8, -13602 +▁accidents -13603 +▁accounting -13604 +▁Pack -13605 +If -13606 +ritis -13607 +▁Cinc -13608 +▁anat -13609 +▁chim -13610 +▁tempo -13611 +▁wages -13612 +▁Legend -13613 +izard -13614 +▁costume -13615 +▁darkness -13616 +97 -13617 +▁ferry -13618 +▁compass -13619 +▁Movie -13620 +▁Wagner -13621 +▁lengths -13622 +▁discharge -13623 +▁atop -13624 +world -13625 +uption -13626 +▁freely -13627 +▁automatic -13628 +avan -13629 +▁evaluate -13630 +▁possessed -13631 +▁embry -13632 +▁Spider -13633 +▁interc -13634 +▁Frances -13635 +▁Miz -13636 +▁flexible -13637 +▁politician -13638 +alis -13639 +▁Venus -13640 +▁bench -13641 +▁agrees -13642 +▁sunlight -13643 +▁Aj -13644 +▁Slav -13645 +oni -13646 +ventions -13647 +▁reporter -13648 +zh -13649 +▁depr -13650 +▁Greeks -13651 +▁ceremonies -13652 +▁pronounced -13653 +▁separately -13654 +▁Kel -13655 +▁nephew -13656 +▁conspiracy -13657 +▁internationally -13658 +▁admir -13659 +▁secular -13660 +▁compensation -13661 +erving -13662 +▁curved -13663 +▁Formation -13664 +eded -13665 +forest -13666 +▁heaven -13667 +▁relieved -13668 +pathy -13669 +▁villain -13670 +▁Lie -13671 +▁Midd -13672 +▁rulers -13673 +▁belonged -13674 +▁eruption -13675 +▁demonstration -13676 +vae -13677 +▁DJ -13678 +▁imagination -13679 +quet -13680 +▁Gibral -13681 +▁butt -13682 +▁Lords -13683 +▁Sonic -13684 +ijing -13685 +▁dealt -13686 +▁drops -13687 +▁submer -13688 +amo -13689 +▁Friedrich -13690 +▁Consequently -13691 +▁genres -13692 +▁applying -13693 +pit -13694 +▁MC -13695 +▁abb -13696 +▁Gust -13697 +▁Ronald -13698 +▁Holocaust -13699 +-12 -13700 +▁cubic -13701 +▁empower -13702 +▁airborne -13703 +cyclopedia -13704 +ashing -13705 +▁immigration -13706 +▁Evil -13707 +▁monkey -13708 +Re -13709 +▁ants -13710 +▁Miguel -13711 +▁disability -13712 +▁ERA -13713 +41 -13714 +▁Paper -13715 +acht -13716 +▁Reed -13717 +▁arena -13718 +▁motif -13719 +▁incorrect -13720 +▁comprising -13721 +▁confined -13722 +▁garnered -13723 +▁lawsuit -13724 +▁publish -13725 +▁Pete -13726 +▁Athen -13727 +▁irrig -13728 +▁reads -13729 +▁compact -13730 +▁wounds -13731 +▁Num -13732 +▁Meyer -13733 +▁Tribune -13734 +▁seasonal -13735 +▁proximity -13736 +▁analog -13737 +▁economics -13738 +▁Tests -13739 +▁blamed -13740 +▁pestic -13741 +▁Revolutionary -13742 +▁Adri -13743 +▁Burg -13744 +▁bombardment -13745 +abe -13746 +▁Cu -13747 +▁Dennis -13748 +▁finest -13749 +▁demanding -13750 +▁eagle -13751 +▁apolog -13752 +▁Nut -13753 +▁GameSp -13754 +iability -13755 +▁Ky -13756 +▁chains -13757 +▁lean -13758 +formed -13759 +▁centimet -13760 +▁accordance -13761 +▁facilitate -13762 +▁functioning -13763 +cul -13764 +ettes -13765 +▁caution -13766 +▁Armenian -13767 +▁introducing -13768 +▁battlefield -13769 +atern -13770 +▁refere -13771 +▁inadequ -13772 +▁Anat -13773 +▁profits -13774 +▁laps -13775 +▁keyboard -13776 +▁Gibraltar -13777 +▁inver -13778 +yers -13779 +▁attributes -13780 +hart -13781 +▁Waters -13782 +eo -13783 +ikh -13784 +ighed -13785 +▁Cant -13786 +▁Produ -13787 +▁resur -13788 +▁preliminary -13789 +issa -13790 +▁turbines -13791 +▁disappointed -13792 +▁journalists -13793 +▁aspir -13794 +▁worried -13795 +eches -13796 +▁equality -13797 +hm -13798 +ahn -13799 +▁metre -13800 +▁Watson -13801 +▁strings -13802 +▁111 -13803 +▁Chamberlain -13804 +avian -13805 +▁Bradley -13806 +▁heir -13807 +▁relied -13808 +▁sciences -13809 +neath -13810 +▁Draft -13811 +▁resemble -13812 +▁renewable -13813 +ochem -13814 +▁Laf -13815 +▁lux -13816 +este -13817 +▁cort -13818 +odied -13819 +▁Canyon -13820 +▁Hearts -13821 +▁Fighter -13822 +▁Ltd -13823 +▁meals -13824 +▁calendar -13825 +▁Boulevard -13826 +▁processed -13827 +▁embed -13828 +ourable -13829 +▁displace -13830 +▁thunderst -13831 +gé -13832 +▁Herm -13833 +▁medals -13834 +oland -13835 +▁Fanm -13836 +▁Olivia -13837 +▁Actress -13838 +▁websites -13839 +▁Tas -13840 +▁annex -13841 +mph -13842 +▁SH -13843 +▁Case -13844 +▁insulin -13845 +▁routing -13846 +▁proclaimed -13847 +▁Led -13848 +▁1862 -13849 +itects -13850 +▁brows -13851 +▁thinks -13852 +▁attitudes -13853 +iked -13854 +long -13855 +oids -13856 +post -13857 +▁escorted -13858 +ente -13859 +▁Rus -13860 +▁1864 -13861 +▁dive -13862 +▁freed -13863 +▁obesity -13864 +▁Grow -13865 +▁Pand -13866 +▁prince -13867 +▁trailer -13868 +▁scandal -13869 +▁commands -13870 +▁spreading -13871 +▁orientation -13872 +▁illustrations -13873 +aba -13874 +▁Berkeley -13875 +ël -13876 +▁Made -13877 +▁Rush -13878 +ructive -13879 +▁Celtic -13880 +▁Imm -13881 +▁Almost -13882 +▁Towns -13883 +▁washed -13884 +inely -13885 +▁schem -13886 +▁Santiago -13887 +▁continuously -13888 +▁RI -13889 +▁Want -13890 +▁Conserv -13891 +▁Agriculture -13892 +▁hind -13893 +▁Franco -13894 +▁Serbia -13895 +▁babies -13896 +▁combine -13897 +▁declaration -13898 +mod -13899 +▁FIFA -13900 +▁revel -13901 +▁Beijing -13902 +▁decisive -13903 +htt -13904 +▁Was -13905 +▁peers -13906 +clusions -13907 +▁operator -13908 +fold -13909 +▁pod -13910 +veillance -13911 +elin -13912 +▁complaints -13913 +berto -13914 +▁Sox -13915 +rimin -13916 +▁gates -13917 +original -13918 +▁tv -13919 +▁clients -13920 +▁Archbishop -13921 +▁02 -13922 +olics -13923 +▁Duch -13924 +▁manual -13925 +flu -13926 +mans -13927 +▁optical -13928 +▁colleges -13929 +▁oz -13930 +▁thank -13931 +▁Fifth -13932 +▁lover -13933 +▁abd -13934 +▁logic -13935 +▁fi -13936 +▁Aub -13937 +sezon -13938 +▁Guild -13939 +▁⁄ -13940 +▁rugby -13941 +▁106 -13942 +▁ministers -13943 +▁Westminster -13944 +▁Buddh -13945 +▁incom -13946 +anyòl -13947 +▁Newcastle -13948 +▁planes -13949 +▁configuration -13950 +▁organisations -13951 +ci -13952 +▁chicken -13953 +▁inning -13954 +▁tribal -13955 +▁eastward -13956 +fight -13957 +▁Allah -13958 +maker -13959 +▁Money -13960 +atorial -13961 +lication -13962 +▁Cincinn -13963 +▁enrolled -13964 +▁prohibited -13965 +▁oswa -13966 +▁politically -13967 +HD -13968 +▁exploring -13969 +▁Metro -13970 +▁artif -13971 +▁mobil -13972 +▁sufficiently -13973 +▁Sleep -13974 +▁ambit -13975 +▁Morning -13976 +▁collaborated -13977 +▁execut -13978 +uka -13979 +▁Wang -13980 +▁Stanford -13981 +▁Theodore -13982 +ritic -13983 +▁nurse -13984 +▁Members -13985 +▁Cec -13986 +▁Butler -13987 +▁Comedy -13988 +▁grades -13989 +▁phases -13990 +gio -13991 +fits -13992 +▁Analysis -13993 +▁reflection -13994 +▁guards -13995 +▁volunteer -13996 +▁alk -13997 +34 -13998 +Cl -13999 +▁Site -14000 +▁warrant -14001 +▁Caroline -14002 +▁utilized -14003 +ounce -14004 +aceous -14005 +▁aster -14006 +MC -14007 +▁unre -14008 +▁burden -14009 +▁determination -14010 +▁termed -14011 +▁Tint -14012 +▁peer -14013 +▁Volume -14014 +▁shipped -14015 +▁elementary -14016 +stan -14017 +▁Pine -14018 +▁sacrific -14019 +▁homosexual -14020 +odia -14021 +Americ -14022 +▁Individ -14023 +▁Mobile -14024 +▁auto -14025 +▁Apart -14026 +▁onset -14027 +▁suggestions -14028 +achers -14029 +▁Leban -14030 +▁Gothic -14031 +▁teammate -14032 +▁disadvant -14033 +▁ster -14034 +▁Mercedes -14035 +▁exhibited -14036 +stage -14037 +▁Venice -14038 +▁Scientists -14039 +▁Conservative -14040 +arium -14041 +▁Vegas -14042 +▁barely -14043 +▁thesis -14044 +▁Kill -14045 +▁Anti -14046 +▁comics -14047 +▁veterans -14048 +▁Kil -14049 +▁gauge -14050 +▁bomber -14051 +▁pled -14052 +▁cluster -14053 +▁Matem -14054 +▁suppl -14055 +▁Panzer -14056 +▁plum -14057 +▁Alpha -14058 +▁draws -14059 +▁loyalty -14060 +▁Culture -14061 +▁Carr -14062 +▁sailors -14063 +bery -14064 +▁autism -14065 +▁broader -14066 +▁restaurants -14067 +▁102 -14068 +▁Scientific -14069 +▁Intelligence -14070 +▁MV -14071 +▁crystal -14072 +bach -14073 +▁atis -14074 +▁Range -14075 +▁Denver -14076 +▁Desert -14077 +▁bacterial -14078 +immer -14079 +▁substantially -14080 +DI -14081 +fulness -14082 +▁pedest -14083 +▁Marshal -14084 +▁castles -14085 +▁martial -14086 +Hg -14087 +boat -14088 +▁Heat -14089 +▁keen -14090 +▁Holland -14091 +.1 -14092 +▁Alej -14093 +agraph -14094 +ounted -14095 +▁oak -14096 +▁.... -14097 +▁sodium -14098 +▁scan -14099 +▁Hence -14100 +▁Romney -14101 +abad -14102 +▁quit -14103 +▁locate -14104 +LE -14105 +esium -14106 +▁Lamb -14107 +▁symbolic -14108 +▁screenplay -14109 +▁addiction -14110 +▁manufacturer -14111 +ede -14112 +▁unnecess -14113 +▁hect -14114 +▁pist -14115 +▁Treatment -14116 +▁abundance -14117 +▁boyfriend -14118 +asia -14119 +▁Circle -14120 +▁interfer -14121 +ppe -14122 +iane -14123 +ylum -14124 +▁till -14125 +▁Louise -14126 +▁unders -14127 +offic -14128 +iological -14129 +▁LS -14130 +urop -14131 +thlete -14132 +▁haven -14133 +▁Cincinnati -14134 +▁irre -14135 +▁investors -14136 +▁sophisticated -14137 +▁Ker -14138 +▁flown -14139 +▁Kaw -14140 +▁gamb -14141 +ppers -14142 +achelor -14143 +gence -14144 +▁amid -14145 +▁guarantee -14146 +▁Gren -14147 +▁urine -14148 +▁designers -14149 +96 -14150 +▁lan -14151 +▁Barcel -14152 +▁poisoning -14153 +yll -14154 +edar -14155 +▁hormone -14156 +OP -14157 +▁Trinity -14158 +▁Mol -14159 +thood -14160 +▁surveys -14161 +▁Jur -14162 +▁Activ -14163 +▁sensitivity -14164 +imer -14165 +▁Task -14166 +▁Ghost -14167 +▁delegates -14168 +▁Tir -14169 +commun -14170 +▁Guadal -14171 +▁researcher -14172 +▁Foster -14173 +What -14174 +▁Aur -14175 +▁Nass -14176 +▁united -14177 +▁Springfield -14178 +▁regen -14179 +▁maintains -14180 +iodiversity -14181 +▁Um -14182 +▁Raf -14183 +▁Pasc -14184 +▁Ottawa -14185 +▁nutrit -14186 +arthy -14187 +▁woods -14188 +▁equation -14189 +▁Riv -14190 +▁swall -14191 +▁Java -14192 +▁spont -14193 +▁Heaven -14194 +ju -14195 +▁aging -14196 +▁mounts -14197 +▁Andal -14198 +▁tired -14199 +▁beds -14200 +▁fart -14201 +books -14202 +▁marsh -14203 +▁Springs -14204 +▁wartime -14205 +▁resistant -14206 +named -14207 +▁unity -14208 +▁galaxy -14209 +▁Which -14210 +▁departments -14211 +▁ceiling -14212 +▁aggregate -14213 +▁batted -14214 +▁guided -14215 +tees -14216 +▁Fly -14217 +▁clip -14218 +▁---- -14219 +▁Mull -14220 +▁chord -14221 +▁infants -14222 +▁Bonn -14223 +▁monster -14224 +▁Orchestra -14225 +▁preparations -14226 +plate -14227 +▁Tell -14228 +▁lion -14229 +________ -14230 +▁enables -14231 +▁switched -14232 +▁dawn -14233 +▁Columbus -14234 +▁strengthening -14235 +▁Bangl -14236 +▁assassination -14237 +▁disin -14238 +▁Amazon -14239 +▁adverse -14240 +▁ambitious -14241 +▁ethical -14242 +▁revenge -14243 +▁Political -14244 +▁publicity -14245 +▁enzyme -14246 +▁incent -14247 +▁revers -14248 +▁117 -14249 +▁Break -14250 +▁soils -14251 +▁whenever -14252 +foot -14253 +▁hatch -14254 +▁cylinder -14255 +▁tox -14256 +▁boxes -14257 +▁AA -14258 +▁pipe -14259 +▁retrie -14260 +▁lengthy -14261 +▁intersect -14262 +▁Come -14263 +▁submarines -14264 +acking -14265 +▁arist -14266 +▁centres -14267 +▁fox -14268 +▁disb -14269 +▁stall -14270 +▁cruise -14271 +▁directing -14272 +▁shops -14273 +▁inaugural -14274 +arted -14275 +oro -14276 +▁1863 -14277 +▁Isle -14278 +▁nearest -14279 +▁Bears -14280 +▁presum -14281 +▁230 -14282 +▁allied -14283 +bul -14284 +▁basically -14285 +.’ -14286 +umi -14287 +▁Mut -14288 +▁facial -14289 +▁timing -14290 +▁interactive -14291 +▁floods -14292 +imination -14293 +▁aviation -14294 +hall -14295 +▁bottle -14296 +▁organize -14297 +▁Name -14298 +▁Berg -14299 +▁Surv -14300 +▁northeastern -14301 +OD -14302 +▁Price -14303 +▁Ferdin -14304 +▁Vienna -14305 +▁capability -14306 +agi -14307 +▁formations -14308 +yt -14309 +▁Bass -14310 +▁deer -14311 +▁painful -14312 +▁advocate -14313 +iktè -14314 +▁productive -14315 +▁GM -14316 +▁True -14317 +▁Tommy -14318 +▁collision -14319 +▁potassium -14320 +▁Mom -14321 +core -14322 +▁verb -14323 +actions -14324 +▁Martha -14325 +▁fitness -14326 +▁descriptions -14327 +▁cro -14328 +▁modes -14329 +▁Solomon -14330 +▁retreated -14331 +inqu -14332 +▁aug -14333 +▁Decl -14334 +▁accus -14335 +▁lunch -14336 +▁Drug -14337 +▁dign -14338 +Un -14339 +onesans -14340 +▁filt -14341 +▁aided -14342 +asting -14343 +▁sanct -14344 +bus -14345 +▁Easter -14346 +▁Critical -14347 +▁peripher -14348 +▁Ms -14349 +▁heter -14350 +▁lungs -14351 +▁rises -14352 +▁manages -14353 +▁Yugoslavia -14354 +amma -14355 +▁gifts -14356 +▁ruins -14357 +▁Beyond -14358 +▁conced -14359 +ielder -14360 +▁populated -14361 +Le -14362 +kout -14363 +▁embra -14364 +▁Jake -14365 +▁zinc -14366 +▁discl -14367 +▁robust -14368 +▁Glass -14369 +▁unanim -14370 +▁Broadcast -14371 +▁emphasized -14372 +essa -14373 +houses -14374 +▁Patric -14375 +▁lifted -14376 +▁relate -14377 +▁roadway -14378 +▁Hey -14379 +▁Nak -14380 +▁Cool -14381 +▁incons -14382 +▁winners -14383 +▁Richardson -14384 +98 -14385 +atar -14386 +agnetic -14387 +▁genuine -14388 +▁suppress -14389 +.2 -14390 +▁reproductive -14391 +▁Berm -14392 +heads -14393 +ungle -14394 +▁Sierra -14395 +▁silence -14396 +▁bleeding -14397 +▁Cox -14398 +▁Dud -14399 +▁sphere -14400 +▁nursing -14401 +orne -14402 +▁fails -14403 +▁stuck -14404 +▁coupled -14405 +▁Ig -14406 +▁Qual -14407 +▁smallest -14408 +▁probability -14409 +▁liner -14410 +▁server -14411 +▁postp -14412 +▁manufacture -14413 +kind -14414 +▁Malta -14415 +inus -14416 +▁Leeds -14417 +▁motivated -14418 +▁Belle -14419 +▁Lakes -14420 +▁explosive -14421 +▁keys -14422 +▁fusion -14423 +▁imaging -14424 +VA -14425 +pre -14426 +▁Too -14427 +▁Athletic -14428 +sl -14429 +▁cholesterol -14430 +▁nas -14431 +▁owing -14432 +▁worlds -14433 +▁possibilities -14434 +▁Tax -14435 +▁Milan -14436 +▁nucleus -14437 +▁Moz -14438 +▁Winn -14439 +▁kons -14440 +▁2: -14441 +▁spo -14442 +▁Speed -14443 +▁Lett -14444 +▁Motor -14445 +▁onwards -14446 +amination -14447 +▁barriers -14448 +ateral -14449 +▁summary -14450 +▁productivity -14451 +▁tut -14452 +ptical -14453 +▁southwestern -14454 +He -14455 +birds -14456 +▁magnet -14457 +onal -14458 +▁tribut -14459 +▁Glasgow -14460 +▁Normandy -14461 +level -14462 +▁presenting -14463 +▁Hern -14464 +▁resort -14465 +▁successive -14466 +▁segreg -14467 +▁tradem -14468 +▁median -14469 +▁gallery -14470 +▁romance -14471 +omal -14472 +▁Mail -14473 +▁globe -14474 +▁rebel -14475 +▁Herman -14476 +▁coaches -14477 +▁drawings -14478 +▁reluctant -14479 +▁Belie -14480 +▁rehabil -14481 +▁Jennifer -14482 +▁(10 -14483 +trans -14484 +▁1887 -14485 +▁Adela -14486 +▁troop -14487 +atories -14488 +3) -14489 +▁fees -14490 +▁dispar -14491 +▁Delhi -14492 +▁physic -14493 +arus -14494 +Brien -14495 +▁numer -14496 +▁boards -14497 +ustain -14498 +▁Catal -14499 +▁indoor -14500 +▁requests -14501 +▁investigations -14502 +▁surg -14503 +▁refuses -14504 +▁prompting -14505 +▁customs -14506 +▁Wit -14507 +▁Need -14508 +▁underm -14509 +▁relieve -14510 +▁deployment -14511 +▁1886 -14512 +uum -14513 +▁relay -14514 +▁Duncan -14515 +▁larvae -14516 +▁missile -14517 +▁Operations -14518 +odic -14519 +▁attachment -14520 +▁moder -14521 +▁Animal -14522 +▁canceled -14523 +▁Devil -14524 +▁talked -14525 +vol -14526 +▁Anto -14527 +▁Hull -14528 +▁sexually -14529 +▁Dry -14530 +▁Truth -14531 +▁prone -14532 +▁pointing -14533 +▁vocabulary -14534 +Down -14535 +ceans -14536 +▁degen -14537 +▁afraid -14538 +▁forever -14539 +▁advocated -14540 +▁reminis -14541 +▁armoured -14542 +▁surprising -14543 +▁fortifications -14544 +▁bankrupt -14545 +▁Millennium -14546 +▁Dh -14547 +▁Student -14548 +ffe -14549 +▁carn -14550 +▁Albany -14551 +▁unaware -14552 +▁certific -14553 +▁eighteen -14554 +cor -14555 +▁hiding -14556 +▁skilled -14557 +ierre -14558 +▁cease -14559 +▁Shield -14560 +▁provider -14561 +▁Thurs -14562 +▁analyzed -14563 +mitt -14564 +▁Plat -14565 +▁Collect -14566 +▁touchdowns -14567 +èb -14568 +▁Colin -14569 +unciation -14570 +▁ecosystems -14571 +▁MA -14572 +bone -14573 +ilis -14574 +▁fatigue -14575 +▁Imag -14576 +▁blame -14577 +▁Powell -14578 +▁Vlad -14579 +▁lens -14580 +▁logo -14581 +▁noun -14582 +▁instructed -14583 +ijyon -14584 +▁CT -14585 +asures -14586 +▁Opera -14587 +▁enzymes -14588 +▁SA -14589 +▁Drake -14590 +▁Examples -14591 +▁depiction -14592 +▁750 -14593 +▁Henderson -14594 +▁Convers -14595 +▁Kle -14596 +▁athletic -14597 +▁subordin -14598 +▁Southeast -14599 +▁breakdown -14600 +▁CA -14601 +▁Rear -14602 +▁enabling -14603 +ocese -14604 +▁Stories -14605 +▁Barcelona -14606 +▁Ja -14607 +▁Gaz -14608 +▁Woods -14609 +▁glucose -14610 +▁uncertainty -14611 +istance -14612 +▁placement -14613 +olan -14614 +▁Eagle -14615 +▁explicitly -14616 +ivic -14617 +▁maxim -14618 +▁aktris -14619 +▁firms -14620 +▁Angelou -14621 +▁developer -14622 +▁1875 -14623 +▁Nothing -14624 +▁bold -14625 +▁Torres -14626 +▁ID -14627 +ás -14628 +▁Hig -14629 +▁ecl -14630 +▁Bear -14631 +▁dans -14632 +▁Former -14633 +▁planting -14634 +▁Electronic -14635 +▁ép -14636 +alid -14637 +unge -14638 +▁166 -14639 +arity -14640 +▁tensions -14641 +▁konesans -14642 +▁struggles -14643 +▁jam -14644 +▁cran -14645 +▁Julie -14646 +▁curves -14647 +▁activated -14648 +Sh -14649 +▁Wald -14650 +▁Stalin -14651 +▁Kin -14652 +▁Au -14653 +▁Ow -14654 +▁Ellen -14655 +▁emerge -14656 +▁volcano -14657 +▁mistakes -14658 +oved -14659 +▁lymph -14660 +▁shoes -14661 +▁Colomb -14662 +▁floors -14663 +▁expenses -14664 +▁Alman -14665 +▁Bod -14666 +▁Cell -14667 +▁testimony -14668 +▁Poe -14669 +▁genera -14670 +▁laying -14671 +▁harbor -14672 +▁categor -14673 +▁Chi -14674 +▁Cena -14675 +▁dreadn -14676 +▁telescope -14677 +▁167 -14678 +▁coalition -14679 +▁Gat -14680 +▁1876 -14681 +▁pose -14682 +▁contempor -14683 +▁Gor -14684 +▁Mills -14685 +▁greet -14686 +▁Astron -14687 +▁jan -14688 +▁lacks -14689 +▁nests -14690 +aku -14691 +rolling -14692 +▁careers -14693 +▁fingers -14694 +lia -14695 +heres -14696 +▁Bris -14697 +amins -14698 +▁Marl -14699 +▁golf -14700 +▁allocated -14701 +▁Monroe -14702 +▁harass -14703 +▁Hopkins -14704 +ptom -14705 +▁tended -14706 +▁Sebast -14707 +▁jumping -14708 +▁Brid -14709 +▁dock -14710 +▁bite -14711 +▁drinks -14712 +▁loading -14713 +▁coastline -14714 +hend -14715 +▁Aaron -14716 +▁beet -14717 +rained -14718 +▁utility -14719 +▁Dictionary -14720 +▁Kol -14721 +▁cel -14722 +▁Store -14723 +▁codes -14724 +▁listing -14725 +ruit -14726 +▁submerged -14727 +▁Female -14728 +▁Holmes -14729 +▁disputed -14730 +▁pH -14731 +thon -14732 +scale -14733 +▁Chin -14734 +▁rider -14735 +▁consequently -14736 +itus -14737 +▁gover -14738 +▁fraction -14739 +enne -14740 +▁Twenty -14741 +▁priests -14742 +Fig -14743 +vor -14744 +▁Often -14745 +▁cabin -14746 +umbered -14747 +▁unrest -14748 +▁respected -14749 +ão -14750 +▁revol -14751 +▁spores -14752 +▁integrity -14753 +▁presidency -14754 +▁rolling -14755 +▁intim -14756 +▁inherit -14757 +▁disputes -14758 +▁inflation -14759 +▁statistical -14760 +▁Lav -14761 +flies -14762 +▁Moses -14763 +▁regiments -14764 +▁championships -14765 +uru -14766 +imir -14767 +▁prescribed -14768 +▁Sha -14769 +▁cataly -14770 +▁Theater -14771 +▁Bene -14772 +▁neighboring -14773 +▁delays -14774 +RT -14775 +matic -14776 +▁Kepler -14777 +▁governing -14778 +▁parameters -14779 +▁philosophical -14780 +▁cylind -14781 +▁distress -14782 +▁Hubb -14783 +▁calories -14784 +ohyd -14785 +oton -14786 +▁Jamaica -14787 +▁pandemic -14788 +▁acclaimed -14789 +▁comprises -14790 +▁incomplete -14791 +▁Help -14792 +▁interviewed -14793 +▁hanging -14794 +▁resignation -14795 +ör -14796 +▁rows -14797 +▁Grove -14798 +▁substit -14799 +ogg -14800 +▁Universe -14801 +▁deciding -14802 +▁Heavyweight -14803 +irable -14804 +▁nights -14805 +▁weighed -14806 +▁Phillips -14807 +▁Prevention -14808 +▁clan -14809 +▁Path -14810 +▁Tintin -14811 +▁Diamond -14812 +▁Đ -14813 +▁arise -14814 +▁runner -14815 +▁Typhoon -14816 +▁amendment -14817 +ampa -14818 +▁Ident -14819 +▁openly -14820 +▁commerce -14821 +▁disabilities -14822 +atem -14823 +▁Neg -14824 +▁sle -14825 +▁Isles -14826 +▁Stage -14827 +▁guess -14828 +▁torpedoes -14829 +▁XI -14830 +iotic -14831 +▁flies -14832 +▁venues -14833 +▁piblikasyon -14834 +issioned -14835 +▁inquiry -14836 +▁mistaken -14837 +▁dimensional -14838 +▁Citiz -14839 +zens -14840 +otto -14841 +▁Luft -14842 +▁Screen -14843 +▁denomin -14844 +▁Bent -14845 +rington -14846 +phal -14847 +▁studios -14848 +▁momentum -14849 +▁tolerance -14850 +uli -14851 +▁Laurent -14852 +▁Olivier -14853 +avil -14854 +▁Cha -14855 +▁sperm -14856 +▁merchants -14857 +▁posed -14858 +▁dietary -14859 +▁McCarthy -14860 +▁reversed -14861 +▁Bruno -14862 +▁cloth -14863 +▁Primary -14864 +55 -14865 +ohn -14866 +▁Stop -14867 +▁bias -14868 +arrass -14869 +▁modifications -14870 +ripp -14871 +uity -14872 +▁naked -14873 +▁dreams -14874 +▁conting -14875 +▁lyrical -14876 +▁addresses -14877 +mal -14878 +▁1884 -14879 +▁averaged -14880 +ensing -14881 +▁Meteor -14882 +▁burst -14883 +▁inducted -14884 +▁Bulgarian -14885 +PC -14886 +▁ok -14887 +▁Pon -14888 +There -14889 +verage -14890 +▁realm -14891 +▁stair -14892 +▁concludes -14893 +▁Carn -14894 +▁conform -14895 +leased -14896 +▁Austro -14897 +▁rubber -14898 +▁Starting -14899 +▁executives -14900 +ups -14901 +▁depress -14902 +▁coaching -14903 +▁Catholics -14904 +▁Basin -14905 +▁Wednes -14906 +▁Otto -14907 +▁Sold -14908 +▁divide -14909 +▁ric -14910 +▁choir -14911 +▁loans -14912 +▁summon -14913 +▁peaceful -14914 +▁preference -14915 +▁escal -14916 +▁spine -14917 +▁Bengal -14918 +▁Madrid -14919 +ribution -14920 +▁Tigers -14921 +▁improv -14922 +▁patch -14923 +▁Hubbard -14924 +▁providers -14925 +▁hurricanes -14926 +▁induced -14927 +▁Hok -14928 +▁Mis -14929 +▁electoral -14930 +▁expertise -14931 +▁persistent -14932 +▁Rif -14933 +▁dug -14934 +▁disbanded -14935 +▁monuments -14936 +▁CB -14937 +▁Suz -14938 +▁Pros -14939 +▁Bri -14940 +▁Compan -14941 +▁subtropical -14942 +cock -14943 +▁defenses -14944 +ograms -14945 +▁accel -14946 +▁gaming -14947 +▁layout -14948 +▁Process -14949 +▁tremend -14950 +▁Gent -14951 +▁proceeds -14952 +imo -14953 +▁beta -14954 +▁everywhere -14955 +▁trio -14956 +▁leather -14957 +▁foundations -14958 +▁Hass -14959 +▁mansion -14960 +▁severity -14961 +▁embarrass -14962 +▁legally -14963 +▁Tele -14964 +▁Travel -14965 +▁Cou -14966 +▁adolesc -14967 +▁servants -14968 +▁ups -14969 +▁reop -14970 +▁Castro -14971 +▁reasoning -14972 +▁buck -14973 +▁maneuver -14974 +▁precisely -14975 +▁vamp -14976 +season -14977 +▁pride -14978 +outed -14979 +▁rushed -14980 +▁payments -14981 +▁inHg -14982 +▁betray -14983 +▁filling -14984 +▁eg -14985 +▁Liv -14986 +▁Tasman -14987 +▁lava -14988 +▁satisfied -14989 +▁RO -14990 +ported -14991 +▁awa -14992 +▁Myst -14993 +▁terrible -14994 +▁McN -14995 +called -14996 +ountain -14997 +▁attain -14998 +▁speaks -14999 +▁pressed -15000 +▁analyses -15001 +bian -15002 +▁fut -15003 +▁Marcus -15004 +▁genome -15005 +lane -15006 +uana -15007 +▁hardly -15008 +▁Telegraph -15009 +▁locomotives -15010 +▁wage -15011 +▁Scholar -15012 +▁theaters -15013 +lla -15014 +▁Poly -15015 +▁Kath -15016 +▁traged -15017 +▁Shan -15018 +▁sixty -15019 +▁descended -15020 +aurus -15021 +ographed -15022 +▁dinosaurs -15023 +▁Crime -15024 +▁staged -15025 +▁Ultimately -15026 +▁SN -15027 +▁inability -15028 +▁associations -15029 +fa -15030 +chw -15031 +▁108 -15032 +▁Dum -15033 +aline -15034 +▁lecture -15035 +▁operators -15036 +MP -15037 +▁citizenship -15038 +▁Pé -15039 +▁Mine -15040 +▁sketch -15041 +icating -15042 +▁asthma -15043 +▁matrix -15044 +ño -15045 +iri -15046 +▁Adventure -15047 +▁Percy -15048 +▁mouri -15049 +▁Ferdinand -15050 +icia -15051 +▁oxide -15052 +▁wanting -15053 +▁composers -15054 +▁(2) -15055 +▁Flood -15056 +▁Comics -15057 +▁Proper -15058 +▁borough -15059 +▁instant -15060 +▁frontier -15061 +▁designing -15062 +▁zo -15063 +▁Lil -15064 +▁Pun -15065 +▁Fischer -15066 +▁tumor -15067 +▁themed -15068 +▁stopping -15069 +▁1877 -15070 +▁Crist -15071 +▁chantè -15072 +enes -15073 +▁flowing -15074 +▁Hond -15075 +▁Very -15076 +▁climbing -15077 +▁deficiency -15078 +▁Yard -15079 +▁McDonald -15080 +▁activists -15081 +▁contracted -15082 +aho -15083 +wig -15084 +cler -15085 +▁Bast -15086 +▁Hoff -15087 +▁dried -15088 +▁ekri -15089 +▁outs -15090 +mith -15091 +▁Gibson -15092 +▁estates -15093 +▁altogether -15094 +▁viv -15095 +▁Cultural -15096 +▁performers -15097 +▁autobiography -15098 +arte -15099 +health -15100 +▁widow -15101 +RNA -15102 +▁sectors -15103 +▁mobility -15104 +▁Newman -15105 +ugs -15106 +such -15107 +▁Enc -15108 +music -15109 +▁coloured -15110 +▁container -15111 +ucc -15112 +rano -15113 +isans -15114 +▁Choice -15115 +▁reflecting -15116 +zig -15117 +▁Hugo -15118 +▁computing -15119 +▁Glee -15120 +▁lith -15121 +▁smell -15122 +▁repaired -15123 +▁Sau -15124 +▁germ -15125 +▁monks -15126 +▁frozen -15127 +▁Crystal -15128 +▁malaria -15129 +▁McKinley -15130 +▁flee -15131 +▁pocket -15132 +cat -15133 +▁sink -15134 +▁generating -15135 +▁thoroughly -15136 +▁Schumacher -15137 +▁Ern -15138 +▁maj -15139 +elles -15140 +▁rats -15141 +▁logical -15142 +▁Fur -15143 +▁spinal -15144 +ographers -15145 +FS -15146 +▁Ellis -15147 +▁primitive -15148 +gett -15149 +▁Ply -15150 +▁undertook -15151 +▁1881 -15152 +▁Shin -15153 +▁rifle -15154 +▁mushroom -15155 +iman -15156 +▁Singh -15157 +▁Kem -15158 +▁bind -15159 +▁silk -15160 +▁stems -15161 +▁Truman -15162 +▁1883 -15163 +▁Browns -15164 +▁Veronica -15165 +▁recommendation -15166 +▁gum -15167 +▁Maxim -15168 +▁thrust -15169 +otted -15170 +▁Give -15171 +▁inequ -15172 +▁fatalities -15173 +pres -15174 +ishn -15175 +grim -15176 +▁perc -15177 +▁subjected -15178 +▁Thr -15179 +▁Spencer -15180 +▁dispatched -15181 +HL -15182 +asi -15183 +idad -15184 +▁Alz -15185 +uzzle -15186 +▁Julia -15187 +▁alike -15188 +▁bullet -15189 +▁Romanian -15190 +▁Generation -15191 +▁Tibet -15192 +▁Harper -15193 +▁labels -15194 +▁blockade -15195 +▁limestone -15196 +▁tens -15197 +▁Turks -15198 +▁fights -15199 +▁labeled -15200 +▁fare -15201 +▁Malay -15202 +▁ridic -15203 +effective -15204 +▁MLB -15205 +▁Cruz -15206 +▁Glou -15207 +▁Senior -15208 +▁integral -15209 +▁maturity -15210 +▁introduces -15211 +▁passages -15212 +▁inhabited -15213 +▁rush -15214 +▁Panama -15215 +▁intensive -15216 +▁corp -15217 +▁Orton -15218 +▁Block -15219 +▁insert -15220 +▁patent -15221 +▁answered -15222 +▁Mega -15223 +▁underneath -15224 +▁Blair -15225 +▁Sed -15226 +▁1869 -15227 +▁Bott -15228 +▁happiness -15229 +abl -15230 +▁grains -15231 +▁antiqu -15232 +▁clusters -15233 +▁Gas -15234 +phabet -15235 +▁solving -15236 +▁triggered -15237 +appa -15238 +▁Lag -15239 +▁Lan -15240 +▁tide -15241 +▁joins -15242 +▁outline -15243 +▁Ost -15244 +▁dragon -15245 +▁Certain -15246 +▁Species -15247 +▁meks -15248 +▁terrestrial -15249 +▁Seri -15250 +▁melan -15251 +▁absorb -15252 +phan -15253 +▁Physical -15254 +▁concentrate -15255 +▁costumes -15256 +▁variants -15257 +▁Bangladesh -15258 +▁appreciated -15259 +▁Juliet -15260 +▁incomp -15261 +▁overth -15262 +▁unveiled -15263 +▁eldest -15264 +▁aquatic -15265 +▁Lac -15266 +▁defining -15267 +▁investigating -15268 +oqu -15269 +▁FM -15270 +▁1871 -15271 +▁Scout -15272 +▁stiff -15273 +▁Va -15274 +▁Tall -15275 +▁incorporates -15276 +▁Chuck -15277 +▁Better -15278 +▁emission -15279 +▁reproduction -15280 +▁syll -15281 +▁tear -15282 +▁ware -15283 +▁Gonzá -15284 +▁gusts -15285 +▁Deputy -15286 +▁Circuit -15287 +▁Telenovela -15288 +icus -15289 +▁jen -15290 +ioxid -15291 +▁Buch -15292 +▁Harm -15293 +▁Smack -15294 +▁Contem -15295 +▁influenza -15296 +▁NL -15297 +▁Hawaiian -15298 +▁Nicolas -15299 +GA -15300 +oft -15301 +▁tan -15302 +atile -15303 +emics -15304 +▁Soviets -15305 +▁plaque -15306 +▁forgotten -15307 +ouk -15308 +▁Gru -15309 +▁hell -15310 +▁rally -15311 +▁cater -15312 +▁disgu -15313 +▁vector -15314 +artz -15315 +▁reper -15316 +▁tackle -15317 +▁somewhere -15318 +cin -15319 +ères -15320 +▁Neu -15321 +▁Exped -15322 +▁Palmer -15323 +▁heroes -15324 +▁valued -15325 +▁OC -15326 +▁JNA -15327 +▁entity -15328 +ados -15329 +▁Kru -15330 +▁Nept -15331 +▁dorm -15332 +▁Emily -15333 +▁Making -15334 +▁frames -15335 +▁revived -15336 +▁incorporating -15337 +▁sympat -15338 +▁Phillies -15339 +▁absorption -15340 +▁Assess -15341 +▁bark -15342 +▁Illust -15343 +▁González -15344 +▁© -15345 +stock -15346 +▁purple -15347 +▁ensuing -15348 +icals -15349 +▁Suff -15350 +▁wool -15351 +▁seeks -15352 +▁theor -15353 +ometer -15354 +▁heated -15355 +▁Michelle -15356 +▁pad -15357 +▁adul -15358 +▁Steam -15359 +▁observing -15360 +▁speculated -15361 +▁Chet -15362 +▁fatty -15363 +▁Guatem -15364 +▁appealed -15365 +len -15366 +▁Dup -15367 +▁intrig -15368 +▁sporting -15369 +▁addressing -15370 +urbs -15371 +armed -15372 +▁Curtis -15373 +▁Flanders -15374 +émon -15375 +▁qualify -15376 +▁regards -15377 +▁offspring -15378 +▁1/ -15379 +▁2) -15380 +▁UB -15381 +▁ally -15382 +▁fake -15383 +▁shirt -15384 +▁Tucker -15385 +▁cycles -15386 +▁update -15387 +▁unnecessary -15388 +▁peas -15389 +retion -15390 +▁Films -15391 +▁dors -15392 +ashire -15393 +rens -15394 +▁5, -15395 +stad -15396 +▁1866 -15397 +▁Headquarters -15398 +▁terr -15399 +asaki -15400 +erves -15401 +▁paved -15402 +▁counts -15403 +▁receiver -15404 +iovascular -15405 +▁surpassed -15406 +▁Virt -15407 +veloped -15408 +▁conquered -15409 +▁unusually -15410 +▁107 -15411 +▁Cabinet -15412 +▁systematic -15413 +opol -15414 +▁EPA -15415 +stown -15416 +▁Cann -15417 +▁dairy -15418 +▁Should -15419 +▁remake -15420 +▁speeches -15421 +eward -15422 +vanced -15423 +▁Member -15424 +▁Crawford -15425 +▁exhibits -15426 +▁prolonged -15427 +▁cyt -15428 +▁interrupted -15429 +PV -15430 +▁maid -15431 +▁phon -15432 +ètisman -15433 +▁Basketball -15434 +▁Mam -15435 +ochond -15436 +▁Bron -15437 +▁Middles -15438 +▁breakthrough -15439 +df -15440 +py -15441 +that -15442 +▁slope -15443 +▁Wellington -15444 +▁proceedings -15445 +▁Gw -15446 +▁Pont -15447 +▁lobby -15448 +▁Hamb -15449 +▁1867 -15450 +▁1882 -15451 +▁Fergus -15452 +▁phenomena -15453 +▁custody -15454 +▁competitors -15455 +▁devastating -15456 +agne -15457 +▁chess -15458 +▁diary -15459 +ription -15460 +▁Prison -15461 +▁Romania -15462 +▁contacts -15463 +▁Cardinals -15464 +▁Eb -15465 +▁organism -15466 +▁Sr -15467 +idian -15468 +▁landings -15469 +▁Robb -15470 +▁Seas -15471 +▁applies -15472 +▁Interest -15473 +▁Tournament -15474 +▁radioactive -15475 +▁bless -15476 +▁motivation -15477 +asse -15478 +mail -15479 +▁haul -15480 +▁opined -15481 +You -15482 +▁Yo -15483 +▁1873 -15484 +▁privacy -15485 +▁singers -15486 +▁Thursday -15487 +▁everybody -15488 +▁Lancashire -15489 +▁reminiscent -15490 +▁tet -15491 +▁hub -15492 +▁deadly -15493 +▁jersey -15494 +▁marginal -15495 +▁captivity -15496 +▁ambassador -15497 +-10 -15498 +new -15499 +▁Mile -15500 +▁strictly -15501 +▁Clear -15502 +▁fitting -15503 +icester -15504 +▁blacks -15505 +▁rebounds -15506 +▁spark -15507 +▁witch -15508 +▁lon -15509 +▁Parad -15510 +▁eject -15511 +▁Antarctic -15512 +▁9. -15513 +▁Calvin -15514 +▁Jeremy -15515 +▁festivals -15516 +▁practiced -15517 +mid -15518 +▁yd -15519 +produ -15520 +▁shar -15521 +▁Edwin -15522 +onomous -15523 +▁ranged -15524 +▁roster -15525 +▁securing -15526 +▁algorithm -15527 +▁privately -15528 +lay -15529 +amous -15530 +▁genius -15531 +▁plasma -15532 +itational -15533 +▁sovereignty -15534 +▁unsuccessfully -15535 +text -15536 +uclear -15537 +▁locked -15538 +▁sends -15539 +▁governed -15540 +▁tactical -15541 +▁Hat -15542 +▁concess -15543 +▁Adelaide -15544 +▁Michaels -15545 +illon -15546 +ulative -15547 +▁analyze -15548 +▁joke -15549 +▁Masters -15550 +▁Alzheimer -15551 +▁Cos -15552 +▁Dawn -15553 +gestion -15554 +▁angles -15555 +▁grammar -15556 +▁savings -15557 +▁Russians -15558 +▁Cav -15559 +▁René -15560 +▁default -15561 +▁Bé -15562 +▁Une -15563 +▁Gand -15564 +▁Official -15565 +▁expressing -15566 +zac -15567 +▁1) -15568 +▁stance -15569 +▁unemployment -15570 +asses -15571 +▁knock -15572 +▁inadequate -15573 +▁investments -15574 +▁Floyd -15575 +Go -15576 +▁jail -15577 +ptions -15578 +▁Tues -15579 +▁leak -15580 +▁arter -15581 +▁convinc -15582 +▁magical -15583 +▁occurrence -15584 +osely -15585 +kinson -15586 +▁Edgar -15587 +▁neighbouring -15588 +aye -15589 +eut -15590 +▁1878 -15591 +criptions -15592 +▁limiting -15593 +▁Relations -15594 +nery -15595 +odon -15596 +▁Meet -15597 +▁promises -15598 +▁surveillance -15599 +oping -15600 +▁Caesar -15601 +▁painter -15602 +atsu -15603 +▁purely -15604 +▁Aviation -15605 +▁exceeded -15606 +▁recreational -15607 +lake -15608 +▁10, -15609 +▁excluded -15610 +irk -15611 +▁Loc -15612 +▁Haiti -15613 +▁Metac -15614 +▁toile -15615 +▁metropolitan -15616 +▁ti -15617 +▁cellular -15618 +▁complimented -15619 +▁entries -15620 +▁geographical -15621 +▁hes -15622 +reced -15623 +▁bureau -15624 +▁salmon -15625 +▁enacted -15626 +▁sensors -15627 +IR -15628 +▁thres -15629 +▁hate -15630 +▁Smart -15631 +▁microscop -15632 +▁156 -15633 +▁los -15634 +▁athlete -15635 +▁tunnels -15636 +▁Viol -15637 +▁grat -15638 +▁slopes -15639 +▁embedded -15640 +▁scenarios -15641 +▁proc -15642 +▁Rocky -15643 +▁ram -15644 +▁lunar -15645 +▁rook -15646 +▁Squad -15647 +▁instrumentation -15648 +IL -15649 +▁Scand -15650 +ultural -15651 +âtre -15652 +Music -15653 +▁backup -15654 +▁liberty -15655 +▁whites -15656 +chard -15657 +▁Syans -15658 +▁skeleton -15659 +▁nuts -15660 +▁snake -15661 +▁Single -15662 +▁delegation -15663 +elfth -15664 +▁anten -15665 +imental -15666 +▁matched -15667 +▁shortage -15668 +▁Blake -15669 +▁Baldwin -15670 +▁Fernando -15671 +plane -15672 +▁occupy -15673 +▁honorary -15674 +▁supporter -15675 +▁Fra -15676 +▁Clif -15677 +▁freight -15678 +▁horsepower -15679 +ulent -15680 +▁paths -15681 +▁triangle -15682 +▁paragraph -15683 +▁dump -15684 +▁Engineers -15685 +▁Bog -15686 +▁Cuban -15687 +▁stressed -15688 +▁contested -15689 +Tunes -15690 +▁Instit -15691 +▁Eye -15692 +▁tender -15693 +▁Geoffrey -15694 +▁Job -15695 +▁playable -15696 +▁declaring -15697 +▁nationally -15698 +▁purchasing -15699 +idi -15700 +▁tennis -15701 +▁worthy -15702 +lar -15703 +▁exempl -15704 +▁corridor -15705 +▁maternal -15706 +▁spectators -15707 +▁mosqu -15708 +▁discusses -15709 +ovsky -15710 +▁Paraly -15711 +▁conclusions -15712 +As -15713 +▁Import -15714 +▁orchestral -15715 +%) -15716 +beit -15717 +▁resembles -15718 +▁Linda -15719 +▁Theory -15720 +▁Leicester -15721 +▁Essex -15722 +▁loves -15723 +▁1868 -15724 +▁Wednesday -15725 +umar -15726 +▁interventions -15727 +iasm -15728 +▁Calgary -15729 +▁SmackDown -15730 +▁ore -15731 +▁farmer -15732 +▁essence -15733 +▁synthetic -15734 +▁initiatives -15735 +▁Grad -15736 +▁Knights -15737 +▁counted -15738 +▁generals -15739 +▁IB -15740 +▁Annie -15741 +▁halted -15742 +▁phones -15743 +▁antibiotics -15744 +▁Hil -15745 +▁Sue -15746 +▁Brain -15747 +▁Galile -15748 +▁ironcl -15749 +▁chocolate -15750 +▁Commissioner -15751 +sover -15752 +▁cope -15753 +▁Tiger -15754 +▁utter -15755 +▁faction -15756 +▁Monster -15757 +▁Kos -15758 +▁Pall -15759 +▁Blanc -15760 +▁Chairman -15761 +▁combining -15762 +▁obviously -15763 +zan -15764 +ichi -15765 +aston -15766 +example -15767 +▁dynamics -15768 +▁meditation -15769 +amy -15770 +spe -15771 +▁Arena -15772 +clamation -15773 +▁Plymouth -15774 +▁memorable -15775 +opy -15776 +obic -15777 +▁RBI -15778 +▁vag -15779 +brates -15780 +▁Plate -15781 +▁susceptible -15782 +apa -15783 +illion -15784 +▁massacre -15785 +eros -15786 +▁Brew -15787 +▁frigate -15788 +▁currents -15789 +▁Declaration -15790 +érard -15791 +▁toss -15792 +▁Norse -15793 +▁uncons -15794 +▁surgical -15795 +/20 -15796 +▁lig -15797 +▁tears -15798 +▁congregation -15799 +▁vom -15800 +▁Rosa -15801 +▁wash -15802 +▁Adrian -15803 +ellation -15804 +▁Newport -15805 +▁Parkway -15806 +▁declining -15807 +▁Tales -15808 +▁Ster -15809 +▁unpreced -15810 +▁Fant -15811 +esters -15812 +▁overh -15813 +▁uprising -15814 +▁commentators -15815 +▁1872 -15816 +▁Berry -15817 +▁Karen -15818 +▁anthem -15819 +▁pressures -15820 +▁unprecedented -15821 +ilize -15822 +▁Faith -15823 +▁Barrett -15824 +▁inscription -15825 +▁neighborhoods -15826 +▁dup -15827 +▁sty -15828 +▁spare -15829 +▁upgrade -15830 +iggins -15831 +▁flags -15832 +▁inferior -15833 +▁Byzant -15834 +▁editors -15835 +▁intentions -15836 +▁mbar -15837 +▁Metal -15838 +▁bowled -15839 +▁performs -15840 +▁allegations -15841 +▁developmental -15842 +▁Joshua -15843 +▁honored -15844 +▁Resident -15845 +▁northwestern -15846 +Pa -15847 +about -15848 +▁Paralymp -15849 +▁prevents -15850 +▁RS -15851 +▁menu -15852 +▁diving -15853 +▁premye -15854 +ceptions -15855 +▁exagger -15856 +uj -15857 +▁Annual -15858 +ebe -15859 +unting -15860 +▁limbs -15861 +▁lined -15862 +▁patrols -15863 +▁Alc -15864 +▁gig -15865 +▁ambig -15866 +▁iTunes -15867 +▁packed -15868 +▁accepting -15869 +▁exceptional -15870 +▁Lic -15871 +▁rape -15872 +▁repr -15873 +ailand -15874 +▁botan -15875 +▁Canucks -15876 +rews -15877 +html -15878 +Med -15879 +nar -15880 +penter -15881 +▁reconcil -15882 +▁Expedition -15883 +▁Drag -15884 +▁Enix -15885 +▁Quarter -15886 +lim -15887 +▁fluct -15888 +appropri -15889 +▁Pokémon -15890 +▁IT -15891 +iast -15892 +▁barn -15893 +▁trop -15894 +▁juice -15895 +▁Baptist -15896 +▁Maxwell -15897 +▁informal -15898 +▁prevalent -15899 +▁Doll -15900 +▁viable -15901 +▁Newfound -15902 +qual -15903 +▁116 -15904 +▁Leigh -15905 +▁impacted -15906 +▁violation -15907 +▁obl -15908 +▁auction -15909 +▁editorial -15910 +▁Manager -15911 +▁linking -15912 +vals -15913 +▁fungi -15914 +▁trails -15915 +▁neurons -15916 +▁flexibility -15917 +EE -15918 +▁atom -15919 +▁stepped -15920 +▁Augustus -15921 +▁instructor -15922 +▁mast -15923 +▁furniture -15924 +tz -15925 +▁metap -15926 +▁vault -15927 +▁roller -15928 +▁posthum -15929 +pa -15930 +▁Lucy -15931 +iliary -15932 +▁sne -15933 +▁trucks -15934 +▁precurs -15935 +▁270 -15936 +▁nic -15937 +lette -15938 +▁sits -15939 +▁regulate -15940 +▁decreases -15941 +▁Nonetheless -15942 +eren -15943 +▁deton -15944 +▁fuels -15945 +avelength -15946 +inters -15947 +▁monarchy -15948 +▁meaningful -15949 +▁fond -15950 +▁Previous -15951 +endum -15952 +▁Bermuda -15953 +▁bicy -15954 +▁plag -15955 +▁regulatory -15956 +NS -15957 +▁Cyclone -15958 +▁lowered -15959 +▁Ti -15960 +dict -15961 +hero -15962 +▁Riley -15963 +▁sheets -15964 +▁behavioral -15965 +▁feas -15966 +iblings -15967 +▁Koreans -15968 +▁Looking -15969 +▁nicknamed -15970 +▁Veter -15971 +▁Shelley -15972 +▁successes -15973 +oan -15974 +▁lawyers -15975 +▁Wikipedia -15976 +anga -15977 +▁Ide -15978 +▁Cohen -15979 +lectric -15980 +▁Capitol -15981 +▁Contemporary -15982 +ndez -15983 +▁Advanced -15984 +ogens -15985 +▁artic -15986 +▁antibodies -15987 +▁nationwide -15988 +▁accelerated -15989 +▁sustainability -15990 +▁HM -15991 +▁quot -15992 +▁belongs -15993 +▁Chandler -15994 +umer -15995 +itars -15996 +▁suspic -15997 +author -15998 +▁tales -15999 +▁schemes -16000 +▁warriors -16001 +▁WWF -16002 +▁Heath -16003 +▁infectious -16004 +cip -16005 +won -16006 +▁vow -16007 +▁Hanc -16008 +▁annoy -16009 +▁slide -16010 +▁na -16011 +▁Jin -16012 +▁Sah -16013 +▁illeg -16014 +▁Dudley -16015 +▁Motion -16016 +oi -16017 +▁Dy -16018 +▁discipl -16019 +▁undergraduate -16020 +▁Rah -16021 +▁Chop -16022 +▁catalog -16023 +▁physicians -16024 +usty -16025 +▁admission -16026 +▁ga -16027 +▁unde -16028 +▁Bosnia -16029 +star -16030 +▁Rice -16031 +▁bout -16032 +▁conviction -16033 +nolds -16034 +▁Left -16035 +urable -16036 +▁Saints -16037 +▁cooler -16038 +▁libraries -16039 +▁Newfoundland -16040 +92 -16041 +▁creativity -16042 +▁counterparts -16043 +▁ul -16044 +▁phyl -16045 +▁enthusiastic -16046 +▁Rot -16047 +▁Crom -16048 +▁Fear -16049 +▁orbital -16050 +▁redesign -16051 +▁XV -16052 +▁Written -16053 +ugu -16054 +orpe -16055 +inee -16056 +▁gym -16057 +ifting -16058 +▁cheese -16059 +▁joints -16060 +▁midnight -16061 +riet -16062 +▁Rav -16063 +anzas -16064 +▁Below -16065 +▁Diana -16066 +▁Rhode -16067 +▁fortune -16068 +▁Treasury -16069 +ár -16070 +oktè -16071 +▁impair -16072 +▁Vermont -16073 +▁mercury -16074 +▁disposal -16075 +PD -16076 +rob -16077 +arin -16078 +▁Viv -16079 +▁slowed -16080 +▁preceded -16081 +▁Rare -16082 +▁Gross -16083 +▁shifts -16084 +▁Lay -16085 +▁oste -16086 +▁Cord -16087 +▁Yang -16088 +▁Taking -16089 +rared -16090 +▁buses -16091 +▁dolph -16092 +▁observers -16093 +▁engra -16094 +▁newer -16095 +▁texture -16096 +roximately -16097 +▁Busch -16098 +▁programmes -16099 +doms -16100 +▁jwe -16101 +▁displacement -16102 +adder -16103 +▁Adult -16104 +▁obstacles -16105 +ools -16106 +▁deceased -16107 +▁agreements -16108 +▁adaptations -16109 +▁Janet -16110 +▁discontinued -16111 +Os -16112 +▁plut -16113 +▁dozens -16114 +▁stripped -16115 +▁Associated -16116 +gra -16117 +▁si -16118 +▁traces -16119 +▁crowned -16120 +▁Logan -16121 +▁Alejandro -16122 +▁Period -16123 +enhower -16124 +▁Visual -16125 +▁Neither -16126 +▁Schw -16127 +▁opted -16128 +▁melting -16129 +▁AND -16130 +▁missiles -16131 +▁consuming -16132 +▁invitation -16133 +affe -16134 +rors -16135 +izable -16136 +▁pec -16137 +▁rent -16138 +▁Chase -16139 +▁crowds -16140 +▁1879 -16141 +▁ende -16142 +▁Damage -16143 +▁Surrey -16144 +▁sexuality -16145 +ishna -16146 +disc -16147 +holm -16148 +rina -16149 +ocate -16150 +▁Combat -16151 +▁implies -16152 +▁Thailand -16153 +▁continually -16154 +▁expressions -16155 +▁Ord -16156 +▁palm -16157 +▁registration -16158 +rosse -16159 +▁Private -16160 +▁ensemble -16161 +▁allegedly -16162 +ea -16163 +▁Punk -16164 +▁brit -16165 +▁lady -16166 +▁doses -16167 +soon -16168 +▁Kom -16169 +▁Chick -16170 +▁irrigation -16171 +éâtre -16172 +▁Fraser -16173 +▁activist -16174 +▁Lancaster -16175 +▁3: -16176 +▁157 -16177 +▁Kes -16178 +▁Lot -16179 +lance -16180 +▁Franse -16181 +▁phrases -16182 +mega -16183 +▁210 -16184 +▁anarch -16185 +oxide -16186 +▁Panyòl -16187 +▁psy -16188 +▁Birth -16189 +▁Saudi -16190 +▁cameo -16191 +▁renowned -16192 +▁contaminated -16193 +▁Rams -16194 +▁Plaza -16195 +▁Gérard -16196 +▁Mechan -16197 +▁decent -16198 +▁siblings -16199 +▁feminist -16200 +▁factories -16201 +hot -16202 +▁suburb -16203 +▁doubled -16204 +▁Advance -16205 +▁likelihood -16206 +ipel -16207 +▁Vul -16208 +▁Gospel -16209 +▁Places -16210 +▁Timber -16211 +▁stamp -16212 +▁conductor -16213 +atri -16214 +▁boom -16215 +agonal -16216 +▁Bened -16217 +▁Shadow -16218 +▁Hancock -16219 +ilogy -16220 +▁hydro -16221 +▁racism -16222 +▁103 -16223 +▁sic -16224 +▁Starr -16225 +▁emergence -16226 +▁evaluated -16227 +formula -16228 +▁conclude -16229 +▁Qur -16230 +sburg -16231 +▁likes -16232 +pectives -16233 +▁molecule -16234 +▁Encyclopedia -16235 +▁honors -16236 +▁static -16237 +due -16238 +▁1848 -16239 +▁Peru -16240 +▁Think -16241 +▁wheels -16242 +▁handful -16243 +▁minimize -16244 +▁Eisenhower -16245 +▁accumulated -16246 +▁Lor -16247 +▁Pos -16248 +▁juvenile -16249 +▁nutrient -16250 +▁Gerald -16251 +▁lectures -16252 +▁Male -16253 +▁inex -16254 +▁Lynch -16255 +▁consp -16256 +▁Daniels -16257 +▁caliber -16258 +▁realizes -16259 +▁teachings -16260 +fam -16261 +auses -16262 +gency -16263 +▁costly -16264 +▁indication -16265 +▁spatial -16266 +▁enthusiasm -16267 +▁incredible -16268 +▁correspondence -16269 +▁128 -16270 +▁Agre -16271 +▁wise -16272 +asis -16273 +ayette -16274 +▁Mounted -16275 +▁antioxid -16276 +group -16277 +▁electr -16278 +▁incidence -16279 +9) -16280 +▁pounder -16281 +▁disliked -16282 +▁backgrounds -16283 +ovich -16284 +▁enlarged -16285 +▁innocent -16286 +▁cree -16287 +▁Irving -16288 +▁commod -16289 +▁Architect -16290 +▁Nashville -16291 +▁Adventures -16292 +▁Cyp -16293 +▁expend -16294 +▁guides -16295 +▁leagues -16296 +kan -16297 +▁module -16298 +▁Fan -16299 +iscal -16300 +▁2021 -16301 +▁dirt -16302 +▁Words -16303 +▁Preston -16304 +▁batsman -16305 +▁punct -16306 +▁inserted -16307 +waffe -16308 +▁whereby -16309 +▁tang -16310 +▁Beautiful -16311 +▁aesthetic -16312 +▁fortified -16313 +iev -16314 +adic -16315 +oise -16316 +▁Glenn -16317 +▁detached -16318 +▁recycling -16319 +plus -16320 +▁Lik -16321 +otilla -16322 +▁Wolver -16323 +▁delivering -16324 +5, -16325 +▁ps -16326 +leaf -16327 +chron -16328 +▁Spin -16329 +▁Wool -16330 +igrant -16331 +▁certification -16332 +role -16333 +auer -16334 +▁brass -16335 +▁teens -16336 +▁vitamins -16337 +▁negotiate -16338 +pay -16339 +▁flaw -16340 +opular -16341 +▁jokes -16342 +▁skelet -16343 +▁Bulgaria -16344 +▁Finnish -16345 +▁Tuesday -16346 +▁entertaining -16347 +▁NE -16348 +▁lav -16349 +▁Pred -16350 +▁blown -16351 +▁Select -16352 +%. -16353 +▁coral -16354 +▁teenage -16355 +▁168 -16356 +▁Manning -16357 +▁gasoline -16358 +bral -16359 +▁generic -16360 +▁maritime -16361 +▁convenient -16362 +▁Sharp -16363 +▁guitars -16364 +▁Kub -16365 +▁aven -16366 +▁Venez -16367 +▁saves -16368 +▁dominance -16369 +▁cov -16370 +onnell -16371 +▁Present -16372 +▁brush -16373 +▁advers -16374 +▁coordination -16375 +▁odds -16376 +▁intra -16377 +▁diesel -16378 +▁126 -16379 +▁Popular -16380 +▁pursuing -16381 +▁Balk -16382 +éric -16383 +▁Armenia -16384 +▁philosopher -16385 +▁Subsequently -16386 +ths -16387 +▁113 -16388 +ologic -16389 +▁Warsaw -16390 +▁exempt -16391 +▁locomotive -16392 +▁dishes -16393 +gic -16394 +▁Element -16395 +▁grandson -16396 +▁ost -16397 +itian -16398 +▁Kerr -16399 +▁panic -16400 +▁trout -16401 +letcher -16402 +▁comparisons -16403 +6) -16404 +▁PhD -16405 +iances -16406 +▁farther -16407 +▁referee -16408 +▁Consider -16409 +▁Metacritic -16410 +▁eager -16411 +▁catast -16412 +▁retros -16413 +▁sensor -16414 +▁Jeffrey -16415 +▁nesting -16416 +▁strains -16417 +▁carbohyd -16418 +▁nobility -16419 +▁RPG -16420 +▁beaches -16421 +▁abolished -16422 +▁manuscripts -16423 +▁unconscious -16424 +▁religions -16425 +hev -16426 +▁TO -16427 +▁regained -16428 +bin -16429 +▁Double -16430 +▁Por -16431 +▁whit -16432 +▁BL -16433 +▁Sacr -16434 +▁olive -16435 +▁orbits -16436 +▁chambers -16437 +▁112 -16438 +▁tier -16439 +▁agenda -16440 +▁Current -16441 +▁immunity -16442 +▁Admiralty -16443 +▁alternatives -16444 +ambo -16445 +▁relates -16446 +▁Monument -16447 +▁vegetable -16448 +krit -16449 +▁Wis -16450 +▁saint -16451 +▁Image -16452 +▁constraints -16453 +▁Legion -16454 +▁Luftwaffe -16455 +ioned -16456 +▁Comment -16457 +▁remarks -16458 +▁Introduction -16459 +anan -16460 +▁Franz -16461 +▁Griffin -16462 +▁retaining -16463 +▁geographic -16464 +ibal -16465 +▁ibn -16466 +▁Mons -16467 +▁gaps -16468 +▁virtue -16469 +▁rituals -16470 +ags -16471 +lew -16472 +quin -16473 +▁Tat -16474 +▁steal -16475 +▁Gardens -16476 +▁nickel -16477 +▁declare -16478 +▁grossed -16479 +▁spirits -16480 +▁wavelength -16481 +ovo -16482 +3333 -16483 +vous -16484 +▁Munich -16485 +▁hollow -16486 +▁obtaining -16487 +▁pir -16488 +▁1820 -16489 +▁Wings -16490 +▁imprisonment -16491 +▁gw -16492 +asco -16493 +uble -16494 +▁pulling -16495 +▁battlecruisers -16496 +▁suck -16497 +▁electrom -16498 +chant -16499 +▁Perth -16500 +▁Physics -16501 +▁Assistant -16502 +▁Doug -16503 +▁Porter -16504 +▁suburban -16505 +▁mutations -16506 +▁u -16507 +vwa -16508 +▁lemurs -16509 +▁rewrit -16510 +▁fulfill -16511 +elong -16512 +▁Arabia -16513 +▁differs -16514 +▁epidemic -16515 +▁invested -16516 +▁metaphor -16517 +▁necessity -16518 +atha -16519 +bial -16520 +▁orth -16521 +alm -16522 +olithic -16523 +riction -16524 +▁marble -16525 +▁Chapman -16526 +▁realised -16527 +▁fantastic -16528 +▁precision -16529 +official -16530 +▁Skinner -16531 +▁toys -16532 +▁Clean -16533 +▁lease -16534 +▁vacuum -16535 +▁harmony -16536 +▁borrowed -16537 +▁uncommon -16538 +▁countryside -16539 +ancial -16540 +▁Aguil -16541 +▁Windsor -16542 +▁Dere -16543 +ière -16544 +▁Ming -16545 +ealous -16546 +giving -16547 +▁Syrian -16548 +web -16549 +▁Wake -16550 +▁outfit -16551 +▁Different -16552 +▁supplements -16553 +▁CF -16554 +▁CG -16555 +▁Dart -16556 +▁Grande -16557 +▁albeit -16558 +▁disturbed -16559 +ilib -16560 +umatic -16561 +▁loses -16562 +▁regret -16563 +▁revenues -16564 +ride -16565 +▁lod -16566 +▁dull -16567 +▁1⁄ -16568 +▁heal -16569 +astics -16570 +▁transf -16571 +▁Brigadier -16572 +▁nationalist -16573 +▁supervision -16574 +▁Yale -16575 +phones -16576 +▁anonymous -16577 +▁appreciate -16578 +quez -16579 +▁anchor -16580 +▁Hispanic -16581 +▁ancestor -16582 +▁colleague -16583 +▁Dire -16584 +▁Birds -16585 +▁Scandin -16586 +▁metabolic -16587 +▁pwo -16588 +▁vocalist -16589 +▁tremendous -16590 +comed -16591 +▁Search -16592 +▁binary -16593 +rological -16594 +▁accommodation -16595 +rè -16596 +isle -16597 +▁Winc -16598 +▁Leader -16599 +▁corners -16600 +▁clearing -16601 +ulk -16602 +▁clever -16603 +▁vaccines -16604 +▁Wid -16605 +▁Kiss -16606 +▁spelling -16607 +▁Devon -16608 +▁Angela -16609 +Ex -16610 +▁Municip -16611 +▁confronted -16612 +▁sab -16613 +▁poets -16614 +▁Burger -16615 +▁Dynasty -16616 +inas -16617 +urred -16618 +▁demon -16619 +▁traced -16620 +▁artifacts -16621 +oka -16622 +▁Og -16623 +onne -16624 +▁Index -16625 +▁Powers -16626 +▁Complete -16627 +▁graduating -16628 +▁negotiated -16629 +▁Priest -16630 +▁guaranteed -16631 +▁demonstrates -16632 +pil -16633 +▁AU -16634 +▁Rid -16635 +▁Wend -16636 +▁judged -16637 +CP -16638 +Gen -16639 +▁Joel -16640 +▁crypt -16641 +▁frustrated -16642 +entric -16643 +▁Sugar -16644 +▁firmly -16645 +▁6, -16646 +▁Ved -16647 +▁gospel -16648 +▁Senators -16649 +▁eleg -16650 +▁entrep -16651 +▁Lithuania -16652 +▁appreciation -16653 +▁scrapped -16654 +▁succ -16655 +▁Aguilera -16656 +▁Petersburg -16657 +▁Productions -16658 +Ad -16659 +▁Doct -16660 +▁rept -16661 +▁torture -16662 +▁basement -16663 +▁dome -16664 +▁outlets -16665 +▁matching -16666 +▁Palestinian -16667 +▁biodiversity -16668 +taker -16669 +▁Hergé -16670 +▁Ports -16671 +▁wireless -16672 +▁percussion -16673 +▁Oz -16674 +▁2004, -16675 +▁Eugene -16676 +▁Ferguson -16677 +▁digestive -16678 +NT -16679 +iji -16680 +▁Kang -16681 +▁inspection -16682 +▁patches -16683 +▁Drum -16684 +▁altar -16685 +▁fright -16686 +▁grandmother -16687 +▁cardiovascular -16688 +▁Spy -16689 +▁herald -16690 +', -16691 +omys -16692 +▁Sag -16693 +▁Planning -16694 +▁MVP -16695 +▁Dominican -16696 +▁assumption -16697 +▁abolition -16698 +▁defines -16699 +▁Emergency -16700 +▁Philippine -16701 +▁cultivated -16702 +▁kap -16703 +▁hormones -16704 +▁€ -16705 +function -16706 +▁definitions -16707 +▁elimination -16708 +monton -16709 +▁Avoid -16710 +▁Chancellor -16711 +/0 -16712 +iency -16713 +▁dorsal -16714 +▁optimal -16715 +▁controller -16716 +idays -16717 +▁Multip -16718 +▁welcomed -16719 +▁Currently -16720 +▁architects -16721 +▁Aw -16722 +▁Zoo -16723 +▁1874 -16724 +▁ions -16725 +▁overnight -16726 +▁reviewing -16727 +unted -16728 +▁ought -16729 +▁Butter -16730 +▁graduation -16731 +arre -16732 +▁Hed -16733 +▁Sib -16734 +▁Formula -16735 +▁Reynolds -16736 +uchi -16737 +▁Spit -16738 +▁Habana -16739 +▁abrupt -16740 +▁Johns -16741 +▁Contact -16742 +▁Pearson -16743 +▁Americas -16744 +▁hipp -16745 +▁stip -16746 +▁Europeans -16747 +▁Cel -16748 +▁Cele -16749 +graded -16750 +▁cruel -16751 +▁galaxies -16752 +▁educators -16753 +▁AF -16754 +herd -16755 +▁iconic -16756 +▁Tradiksyon -16757 +▁exceptions -16758 +▁financially -16759 +esty -16760 +▁Usher -16761 +▁predecessors -16762 +▁Nicole -16763 +▁Net -16764 +▁Train -16765 +▁woodland -16766 +atics -16767 +anza -16768 +▁Lut -16769 +▁Hayes -16770 +▁prosperity -16771 +▁fascinating -16772 +▁Wu -16773 +oupe -16774 +▁Selena -16775 +▁breakfast -16776 +▁municipality -16777 +▁surroundings -16778 +▁Sent -16779 +▁forts -16780 +▁puzzles -16781 +▁astronaut -16782 +BO -16783 +▁Palm -16784 +▁Wals -16785 +▁Joyce -16786 +▁Moving -16787 +▁Pierce -16788 +▁crystall -16789 +▁metabolism -16790 +aca -16791 +▁280 -16792 +▁Idaho -16793 +▁pipes -16794 +▁Hallow -16795 +▁supervis -16796 +asted -16797 +▁1200 -16798 +▁learners -16799 +dal -16800 +ario -16801 +▁meantime -16802 +▁dedication -16803 +isch -16804 +rency -16805 +▁Mathemat -16806 +▁narrator -16807 +▁sampling -16808 +she -16809 +▁Drama -16810 +▁shoulders -16811 +▁roofs -16812 +▁Tunnel -16813 +▁thirds -16814 +▁Alexandria -16815 +▁straw -16816 +▁Object -16817 +▁identifies -16818 +▁Mé -16819 +anti -16820 +▁Hein -16821 +▁grab -16822 +▁blend -16823 +▁relat -16824 +▁muzzle -16825 +▁oceans -16826 +▁sealed -16827 +▁bishops -16828 +▁servant -16829 +arms -16830 +▁Shen -16831 +▁LED -16832 +▁seize -16833 +▁bike -16834 +▁118 -16835 +▁ans -16836 +▁Bowie -16837 +▁popilasyon -16838 +▁destructive -16839 +cr -16840 +fires -16841 +▁Serbs -16842 +▁crimin -16843 +▁extant -16844 +▁deficit -16845 +▁trademark -16846 +▁decreasing -16847 +Pierre -16848 +▁exhausted -16849 +brook -16850 +owners -16851 +▁compelling -16852 +▁negatively -16853 +▁cheer -16854 +onnected -16855 +▁Wheeler -16856 +▁broadly -16857 +aud -16858 +ipse -16859 +▁slip -16860 +▁GameSpot -16861 +▁Milton -16862 +▁abnormal -16863 +▁endorsed -16864 +linary -16865 +▁sulfur -16866 +aran -16867 +iral -16868 +▁Nep -16869 +▁:22. -16870 +▁Azerb -16871 +▁Econom -16872 +▁accent -16873 +▁illustrate -16874 +▁referendum -16875 +▁Spee -16876 +pm -16877 +berger -16878 +▁Census -16879 +▁kicked -16880 +andra -16881 +isible -16882 +▁inflicted -16883 +▁prevalence -16884 +▁practitioners -16885 +DR -16886 +iggs -16887 +▁Happy -16888 +▁prejud -16889 +▁trophy -16890 +▁touched -16891 +▁ministry -16892 +▁260 -16893 +▁Azerbai -16894 +▁recipient -16895 +▁stretched -16896 +inf -16897 +▁Yah -16898 +▁lyric -16899 +▁Arabian -16900 +erget -16901 +ersion -16902 +ivated -16903 +▁clause -16904 +▁accessed -16905 +▁Principal -16906 +▁sympathetic -16907 +▁collectively -16908 +linwa -16909 +–19 -16910 +▁Vie -16911 +green -16912 +anners -16913 +▁Randy -16914 +EG -16915 +anol -16916 +▁Hutch -16917 +▁Spiel -16918 +▁Edmonton -16919 +▁Fletcher -16920 +▁prosecution -16921 +▁Shank -16922 +▁Kur -16923 +▁Sou -16924 +▁cler -16925 +▁Flames -16926 +▁decomm -16927 +▁accounted -16928 +isi -16929 +airo -16930 +▁Hess -16931 +▁hamlet -16932 +▁operas -16933 +▁disappointment -16934 +▁Kas -16935 +▁Text -16936 +▁satir -16937 +▁scripts -16938 +▁Airborne -16939 +▁invasive -16940 +▁IX -16941 +▁11, -16942 +▁Shir -16943 +▁Ilinwa -16944 +▁persuade -16945 +▁efficiently -16946 +pen -16947 +arat -16948 +▁retro -16949 +▁Guards -16950 +▁screened -16951 +▁incredibly -16952 +eg -16953 +GBT -16954 +▁HV -16955 +▁Thor -16956 +▁Paramount -16957 +▁supposedly -16958 +▁tram -16959 +ewater -16960 +▁ballot -16961 +▁enclosed -16962 +▁conversations -16963 +▁Hip -16964 +▁Fast -16965 +▁Tren -16966 +American -16967 +▁Cornell -16968 +For -16969 +mour -16970 +▁surgeon -16971 +▁contamination -16972 +emi -16973 +giene -16974 +▁excit -16975 +▁assured -16976 +▁escapes -16977 +iking -16978 +▁viewer -16979 +▁reply -16980 +▁Strait -16981 +▁merger -16982 +▁regain -16983 +▁Ukraine -16984 +▁illumin -16985 +▁diminished -16986 +▁problematic -16987 +TH -16988 +drop -16989 +▁Warwick -16990 +▁launching -16991 +▁governance -16992 +▁rectangular -16993 +clesiast -16994 +▁blocking -16995 +▁Jak -16996 +▁bil -16997 +▁quote -16998 +▁scratch -16999 +▁Patricia -17000 +▁calculate -17001 +otta -17002 +▁infilt -17003 +▁apprent -17004 +▁celebrations -17005 +UP -17006 +▁elephant -17007 +hematic -17008 +▁secretly -17009 +pop -17010 +▁Brandon -17011 +▁specially -17012 +▁extraction -17013 +▁Kens -17014 +▁cliff -17015 +▁banking -17016 +eca -17017 +▁vib -17018 +▁explores -17019 +▁fierce -17020 +▁doubles -17021 +▁Salvador -17022 +bet -17023 +antom -17024 +▁Cust -17025 +▁pige -17026 +▁Limited -17027 +▁persisted -17028 +▁satellites -17029 +▁bags -17030 +▁Booth -17031 +▁Norton -17032 +▁affection -17033 +▁caut -17034 +▁vine -17035 +usions -17036 +▁Animals -17037 +▁lightning -17038 +▁companions -17039 +ggy -17040 +▁McCain -17041 +▁mammal -17042 +▁gradual -17043 +esh -17044 +▁1851 -17045 +▁Synd -17046 +▁Artist -17047 +▁likewise -17048 +▁unpopular -17049 +rophic -17050 +▁Anglic -17051 +▁revision -17052 +▁illnesses -17053 +▁reservoir -17054 +awk -17055 +▁Idol -17056 +▁deny -17057 +▁landsl -17058 +▁failures -17059 +ablo -17060 +▁filters -17061 +▁crystals -17062 +oshi -17063 +▁Antoine -17064 +▁teammates -17065 +rí -17066 +▁Volunte -17067 +▁runners -17068 +▁Rhodesia -17069 +▁pub -17070 +▁ensured -17071 +▁humidity -17072 +▁voluntary -17073 +ouzi -17074 +▁kin -17075 +pered -17076 +ophone -17077 +▁Outside -17078 +▁swelling -17079 +▁Financial -17080 +▁eliminating -17081 +▁protocol -17082 +▁JG -17083 +▁ignor -17084 +▁Gav -17085 +▁Hast -17086 +▁nurses -17087 +▁Cay -17088 +▁Lanka -17089 +▁Sponge -17090 +inguished -17091 +▁helicopters -17092 +dish -17093 +iott -17094 +▁ethics -17095 +▁colonel -17096 +efficient -17097 +▁Robertson -17098 +▁genetically -17099 +▁Professional -17100 +▁spokes -17101 +▁lord -17102 +▁makers -17103 +▁periodic -17104 +▁flavor -17105 +enny -17106 +opal -17107 +ogene -17108 +▁Bran -17109 +▁greg -17110 +▁pian -17111 +▁Omaha -17112 +▁Reven -17113 +▁grams -17114 +▁preview -17115 +▁Vent -17116 +▁lawn -17117 +ysical -17118 +▁spawned -17119 +▁celebrity -17120 +▁premature -17121 +▁Garfield -17122 +▁workplace -17123 +dition -17124 +▁Sicily -17125 +▁Effects -17126 +▁Jessica -17127 +▁ordering -17128 +▁Agreement -17129 +▁individually -17130 +edu -17131 +▁gren -17132 +▁sept -17133 +▁Coron -17134 +▁Lope -17135 +▁isotopes -17136 +▁shelters -17137 +isure -17138 +opoly -17139 +▁Ober -17140 +▁bred -17141 +▁prophe -17142 +▁northwestward -17143 +alie -17144 +▁Buddha -17145 +▁garage -17146 +▁Argentine -17147 +▁interfere -17148 +▁Mk -17149 +▁Arn -17150 +▁Trin -17151 +▁García -17152 +▁Giant -17153 +▁eleventh -17154 +▁beef -17155 +▁Thorn -17156 +▁insights -17157 +▁Sanct -17158 +▁workshop -17159 +▁Fi -17160 +▁Haven -17161 +▁traff -17162 +▁Andalouzi -17163 +▁dimension -17164 +▁aligned -17165 +:10. -17166 +oche -17167 +▁halt -17168 +▁plots -17169 +ivation -17170 +omorph -17171 +rawl -17172 +▁Crane -17173 +▁expelled -17174 +▁158 -17175 +assic -17176 +attery -17177 +▁shade -17178 +▁cheaper -17179 +▁adventures -17180 +▁corporation -17181 +hurst -17182 +▁Denis -17183 +▁warmer -17184 +▁tragedy -17185 +▁Indigenous -17186 +vas -17187 +▁valve -17188 +▁Jennings -17189 +IM -17190 +lore -17191 +uming -17192 +▁mall -17193 +▁Scotia -17194 +▁luck -17195 +▁Lebanon -17196 +▁colonists -17197 +esy -17198 +▁Nu -17199 +▁Chal -17200 +▁rhet -17201 +▁slee -17202 +▁trump -17203 +▁Mirror -17204 +▁unstable -17205 +ijuana -17206 +▁Arabs -17207 +▁Betty -17208 +▁Superman -17209 +▁Generally -17210 +▁Yok -17211 +▁rapper -17212 +▁unhappy -17213 +▁Bio -17214 +▁Alam -17215 +▁pets -17216 +▁guilt -17217 +▁ES -17218 +▁Lithuanian -17219 +▁spectacular -17220 +▁Communications -17221 +▁plutonium -17222 +▁eighteenth -17223 +▁Carbon -17224 +▁astronomers -17225 +oque -17226 +adian -17227 +stead -17228 +▁Aside -17229 +▁Andrea -17230 +▁Success -17231 +▁defeats -17232 +▁employers -17233 +▁electronics -17234 +elic -17235 +▁Bav -17236 +▁PDF -17237 +▁aliens -17238 +▁uncomfort -17239 +▁discoveries -17240 +▁knife -17241 +▁hearts -17242 +▁Gardner -17243 +▁mitochond -17244 +▁crus -17245 +▁Chemical -17246 +▁counteratt -17247 +▁Wyoming -17248 +▁neighbors -17249 +patitis -17250 +▁beside -17251 +▁alphabet -17252 +▁dé -17253 +▁1812 -17254 +forward -17255 +including -17256 +▁Ned -17257 +▁edit -17258 +rah -17259 +▁Cock -17260 +▁Behind -17261 +aru -17262 +▁Marco -17263 +▁watches -17264 +▁intervals -17265 +▁medicines -17266 +▁Strat -17267 +▁admired -17268 +▁suburbs -17269 +▁encourages -17270 +▁Lopez -17271 +▁Zel -17272 +▁Bloom -17273 +94 -17274 +yat -17275 +▁Dre -17276 +▁helium -17277 +▁subdiv -17278 +▁examining -17279 +rite -17280 +▁Bailey -17281 +▁seventeen -17282 +chez -17283 +▁None -17284 +▁Monica -17285 +▁touching -17286 +▁1859 -17287 +▁Weber -17288 +▁captive -17289 +oya -17290 +▁LGBT -17291 +▁Manila -17292 +▁spider -17293 +▁confess -17294 +▁structured -17295 +.' -17296 +▁Swan -17297 +▁Marion -17298 +▁passive -17299 +▁merchand -17300 +▁Approximately -17301 +▁cyber -17302 +▁fairy -17303 +▁overlap -17304 +▁slaughter -17305 +uke -17306 +▁Mumb -17307 +▁panc -17308 +▁besie -17309 +▁concluding -17310 +How -17311 +▁152 -17312 +usive -17313 +ropolis -17314 +▁Recent -17315 +▁afterward -17316 +▁7, -17317 +▁compuls -17318 +▁twelfth -17319 +atal -17320 +▁bits -17321 +▁puls -17322 +▁Manor -17323 +century -17324 +▁hosting -17325 +▁(17 -17326 +▁Crisis -17327 +▁unnamed -17328 +▁Practice -17329 +▁deposited -17330 +▁Southampton -17331 +▁fog -17332 +▁Dame -17333 +▁neural -17334 +▁1,000 -17335 +▁Patton -17336 +▁Engineer -17337 +igma -17338 +▁bund -17339 +▁duck -17340 +▁Sussex -17341 +axy -17342 +▁Ny -17343 +▁137 -17344 +▁las -17345 +▁rumors -17346 +▁dangers -17347 +▁combinations -17348 +▁ESP -17349 +▁storylines -17350 +▁toy -17351 +▁oversee -17352 +velopment -17353 +▁steering -17354 +▁treasure -17355 +▁ecc -17356 +▁Trip -17357 +▁brigades -17358 +▁Evolution -17359 +▁Emb -17360 +▁Armed -17361 +▁chaos -17362 +▁scream -17363 +▁importantly -17364 +▁Coul -17365 +▁Roth -17366 +▁nost -17367 +▁explor -17368 +▁nerves -17369 +▁employer -17370 +▁stro -17371 +▁tuber -17372 +▁Durham -17373 +▁gravel -17374 +▁reactor -17375 +▁dinosaur -17376 +Bob -17377 +▁barb -17378 +▁Sword -17379 +▁resil -17380 +▁Willis -17381 +▁couples -17382 +aceut -17383 +▁Reform -17384 +▁shortened -17385 +igon -17386 +words -17387 +▁Shore -17388 +▁mills -17389 +▁corporations -17390 +?" -17391 +▁Egg -17392 +▁Own -17393 +▁Coch -17394 +▁Humph -17395 +ircraft -17396 +▁Hamburg -17397 +▁organizing -17398 +], -17399 +hey -17400 +▁ot -17401 +astically -17402 +▁Requ -17403 +▁Morton -17404 +▁Sustain -17405 +▁devised -17406 +▁Ign -17407 +▁sew -17408 +isyèl -17409 +▁DO -17410 +▁meksiken -17411 +ardi -17412 +▁Bolton -17413 +▁pyramid -17414 +▁sensory -17415 +▁Georgian -17416 +▁presumably -17417 +▁similarity -17418 +etics -17419 +▁swift -17420 +▁unions -17421 +▁lateral -17422 +▁Lightning -17423 +▁detachment -17424 +8) -17425 +▁biom -17426 +▁lesbian -17427 +ighthouse -17428 +▁emotionally -17429 +pts -17430 +otle -17431 +eways -17432 +illas -17433 +▁Fell -17434 +building -17435 +▁factions -17436 +▁socialist -17437 +▁Hous -17438 +▁hire -17439 +▁rode -17440 +▁Whitney -17441 +▁Spielberg -17442 +▁cultivation -17443 +▁Broadcasting -17444 +▁socio -17445 +▁runway -17446 +▁gravitational -17447 +rys -17448 +odynam -17449 +▁Congo -17450 +▁Buddhism -17451 +▁regulated -17452 +▁innovations -17453 +▁Bess -17454 +▁Sara -17455 +▁Forbes -17456 +▁breach -17457 +▁abortion -17458 +▁Pw -17459 +▁131 -17460 +▁constitute -17461 +irie -17462 +oxic -17463 +isbury -17464 +redited -17465 +▁Minogue -17466 +▁murders -17467 +▁Mü -17468 +▁NG -17469 +agonists -17470 +orde -17471 +▁Rup -17472 +▁Hunting -17473 +▁enterprise -17474 +amus -17475 +▁tourn -17476 +▁Hannah -17477 +▁checked -17478 +▁targeting -17479 +nor -17480 +page -17481 +▁Sang -17482 +reb -17483 +omans -17484 +▁Presley -17485 +▁profitable -17486 +▁SE -17487 +etti -17488 +▁Fol -17489 +▁Kot -17490 +▁ump -17491 +▁Boyd -17492 +▁disg -17493 +▁pipeline -17494 +pez -17495 +ibles -17496 +▁cough -17497 +▁conventions -17498 +▁370 -17499 +▁Jesse -17500 +▁robots -17501 +stop -17502 +▁Quinn -17503 +▁guerr -17504 +▁symptom -17505 +▁utilize -17506 +▁perimeter -17507 +RL -17508 +▁Bun -17509 +▁Austen -17510 +▁thyroid -17511 +▁sting -17512 +anni -17513 +http -17514 +▁Dol -17515 +▁Yu -17516 +▁Ach -17517 +▁Advis -17518 +▁alpha -17519 +▁glory -17520 +▁Artillery -17521 +▁MIT -17522 +▁mating -17523 +▁monetary -17524 +▁Cret -17525 +▁Allan -17526 +▁Guerr -17527 +▁GDP -17528 +▁prominence -17529 +▁Cran -17530 +▁Symptoms -17531 +▁pneumonia -17532 +▁stretching -17533 +▁bee -17534 +▁guys -17535 +▁Immedi -17536 +än -17537 +▁prints -17538 +▁verbal -17539 +▁138 -17540 +▁glut -17541 +▁faithful -17542 +ifa -17543 +rush -17544 +▁Nem -17545 +▁Lomb -17546 +▁Bever -17547 +▁hinder -17548 +▁Complex -17549 +▁Software -17550 +▁Venezuel -17551 +▁upt -17552 +▁threshold -17553 +▁Fow -17554 +▁Technical -17555 +▁donations -17556 +▁maneuvers -17557 +agus -17558 +eous -17559 +▁Derek -17560 +▁shocked -17561 +▁Till -17562 +▁rocky -17563 +▁itilize -17564 +▁Derby -17565 +▁Hammer -17566 +▁nobody -17567 +▁Ard -17568 +▁Rebec -17569 +▁reapp -17570 +▁Hundred -17571 +▁Christine -17572 +market -17573 +▁feder -17574 +▁pioneer -17575 +▁morality -17576 +▁assessments -17577 +▁fragment -17578 +opter -17579 +▁Kenny -17580 +▁domest -17581 +▁morale -17582 +▁snakes -17583 +▁refined -17584 +▁mandatory -17585 +▁subsidiary -17586 +roft -17587 +rones -17588 +▁beans -17589 +▁foster -17590 +▁precious -17591 +▁Parachute -17592 +.0 -17593 +▁medi -17594 +▁Basil -17595 +▁Folk -17596 +▁Poor -17597 +▁Recre -17598 +▁Anders -17599 +▁enroll -17600 +▁monsters -17601 +▁SM -17602 +▁Ens -17603 +▁Hank -17604 +▁Pitt -17605 +▁spear -17606 +▁sosyete -17607 +▁motorway -17608 +▁desperate -17609 +▁CL -17610 +▁Journ -17611 +▁libert -17612 +▁Variety -17613 +▁crushed -17614 +opus -17615 +▁Hod -17616 +court -17617 +▁Kind -17618 +ulators -17619 +▁Evidence -17620 +Pro -17621 +▁ts -17622 +opold -17623 +▁welding -17624 +▁depressed -17625 +▁convincing -17626 +▁miners -17627 +▁premise -17628 +▁therapeut -17629 +▁enf -17630 +▁Pirates -17631 +▁energet -17632 +▁Fro -17633 +▁Euro -17634 +▁soup -17635 +▁stir -17636 +ophers -17637 +▁defic -17638 +▁exotic -17639 +▁Junction -17640 +▁Spl -17641 +▁Eighth -17642 +▁Ethiop -17643 +▁phylogen -17644 +▁psychiat -17645 +▁downstream -17646 +▁nutritional -17647 +▁photographer -17648 +▁PL -17649 +▁Pale -17650 +▁Steph -17651 +▁Roads -17652 +▁modification -17653 +boro -17654 +▁blo -17655 +▁Elder -17656 +▁Borough -17657 +▁Salisbury -17658 +uf -17659 +▁cavity -17660 +▁Allmusic -17661 +▁packaging -17662 +▁IL -17663 +▁fins -17664 +▁Flash -17665 +▁weren -17666 +▁troubles -17667 +nas -17668 +oyle -17669 +holder -17670 +pi -17671 +anto -17672 +woman -17673 +▁Wilm -17674 +umbers -17675 +▁dwell -17676 +▁Tankou -17677 +▁dialect -17678 +▁favoured -17679 +▁possessions -17680 +oped -17681 +▁Vitamin -17682 +▁cancers -17683 +▁acknowledge -17684 +dr -17685 +▁SD -17686 +▁stup -17687 +▁diarr -17688 +ilibrium -17689 +▁hectares -17690 +nez -17691 +▁seam -17692 +alizatè -17693 +▁contra -17694 +▁parade -17695 +▁Britt -17696 +▁boarding -17697 +▁lè -17698 +▁defects -17699 +▁heights -17700 +▁statues -17701 +▁moderately -17702 +▁ni -17703 +oire -17704 +▁tech -17705 +▁visuals -17706 +▁Democrat -17707 +▁injection -17708 +▁notorious -17709 +appropriate -17710 +▁containers -17711 +▁Ug -17712 +enter -17713 +ainted -17714 +▁incon -17715 +▁builds -17716 +ught -17717 +▁dams -17718 +▁trim -17719 +▁Clement -17720 +▁refusal -17721 +▁eccentric -17722 +zel -17723 +▁Nurs -17724 +▁justified -17725 +ishi -17726 +▁320 -17727 +swick -17728 +▁Dana -17729 +▁unwilling -17730 +▁cott -17731 +▁planetary -17732 +▁showc -17733 +mass -17734 +umni -17735 +▁formats -17736 +▁portraits -17737 +▁Lodge -17738 +▁lac -17739 +▁Hers -17740 +▁tempt -17741 +▁Lak -17742 +▁Marian -17743 +▁conception -17744 +▁contradict -17745 +▁Understanding -17746 +abi -17747 +▁gam -17748 +▁Deal -17749 +▁Credit -17750 +addy -17751 +▁lag -17752 +canal -17753 +▁Goeb -17754 +▁cage -17755 +▁yields -17756 +rike -17757 +▁Rosen -17758 +▁wives -17759 +▁attach -17760 +▁puzzle -17761 +▁barracks -17762 +▁museums -17763 +▁tankou -17764 +▁Pou -17765 +chair -17766 +ilian -17767 +cliffe -17768 +ovakia -17769 +writer -17770 +▁Shawn -17771 +▁crazy -17772 +▁glands -17773 +▁ideology -17774 +▁calculations -17775 +ylon -17776 +ifiers -17777 +▁allev -17778 +▁reddish -17779 +▁washing -17780 +▁deity -17781 +▁Finals -17782 +▁endemic -17783 +▁sharply -17784 +▁economically -17785 +Far -17786 +▁Fen -17787 +▁Karn -17788 +▁admits -17789 +▁Elliott -17790 +▁affiliated -17791 +▁contemporaries -17792 +ovan -17793 +xter -17794 +▁Ley -17795 +▁Rugby -17796 +▁Musical -17797 +wind -17798 +▁refuse -17799 +▁Neptune -17800 +▁conserv -17801 +▁freshwater -17802 +.3 -17803 +yss -17804 +ooks -17805 +▁Sanskrit -17806 +▁UV -17807 +from -17808 +inos -17809 +▁épisode -17810 +▁assuming -17811 +▁disrupted -17812 +▁waterline -17813 +ohl -17814 +▁mol -17815 +enary -17816 +▁rope -17817 +points -17818 +▁locals -17819 +▁storyt -17820 +▁complaint -17821 +▁Myc -17822 +▁vest -17823 +▁marker -17824 +▁poles -17825 +▁Buenos -17826 +▁mortar -17827 +▁Halloween -17828 +▁Acts -17829 +▁Integr -17830 +mic -17831 +etry -17832 +oufl -17833 +▁kote -17834 +▁Jacqu -17835 +▁elong -17836 +▁remed -17837 +▁Bom -17838 +ifted -17839 +▁lasts -17840 +▁muc -17841 +▁Sens -17842 +▁theology -17843 +▁Arms -17844 +▁perce -17845 +▁sounded -17846 +▁statute -17847 +▁probable -17848 +91 -17849 +▁1857 -17850 +▁Gael -17851 +▁somehow -17852 +gradation -17853 +▁averaging -17854 +▁meanwhile -17855 +▁bush -17856 +acious -17857 +▁Mumbai -17858 +▁corrupt -17859 +▁gambling -17860 +▁Io -17861 +ttes -17862 +▁institutional -17863 +▁Few -17864 +▁Newark -17865 +▁debates -17866 +▁Everything -17867 +▁illustration -17868 +▁Adolf -17869 +▁ceremonial -17870 +▁PH -17871 +▁Cardinal -17872 +▁Gaza -17873 +▁Einstein -17874 +▁ech -17875 +▁yoga -17876 +▁Bacon -17877 +▁neglect -17878 +▁rendering -17879 +fol -17880 +anic -17881 +eted -17882 +▁Auto -17883 +▁reiss -17884 +▁geometry -17885 +▁publishers -17886 +▁Jag -17887 +▁Kay -17888 +▁Liu -17889 +▁appl -17890 +▁mock -17891 +▁Canber -17892 +▁Ultimate -17893 +▁mushrooms -17894 +▁Gore -17895 +▁Uran -17896 +▁horns -17897 +▁bedroom -17898 +▁uncomfortable -17899 +oken -17900 +▁CIA -17901 +▁cher -17902 +itating -17903 +▁Danube -17904 +▁Strateg -17905 +▁Lindwall -17906 +El -17907 +▁align -17908 +▁frequencies -17909 +atum -17910 +▁Vas -17911 +rique -17912 +▁Alonso -17913 +▁shifting -17914 +oler -17915 +▁Pinar -17916 +▁debated -17917 +▁Sunder -17918 +▁Stefani -17919 +▁AllMusic -17920 +▁terrorist -17921 +▁surn -17922 +▁Snake -17923 +▁Guadalcanal -17924 +▁Ful -17925 +▁Sul -17926 +▁Distinguished -17927 +▁146 -17928 +▁550 -17929 +▁Viking -17930 +▁modeling -17931 +estershire -17932 +▁shipments -17933 +▁Pengu -17934 +▁equity -17935 +▁interrog -17936 +▁rehabilitation -17937 +▁SpongeBob -17938 +rer -17939 +▁Rever -17940 +▁ancestry -17941 +▁intercepted -17942 +umm -17943 +▁Kor -17944 +onduct -17945 +▁midst -17946 +▁homage -17947 +▁plural -17948 +▁Workers -17949 +▁freshman -17950 +Hz -17951 +▁Gone -17952 +▁Mahar -17953 +▁ignore -17954 +▁teaches -17955 +risk -17956 +▁Ferrari -17957 +▁Numerous -17958 +▁Turnpike -17959 +▁musc -17960 +▁Hanna -17961 +▁probe -17962 +▁rebuilding -17963 +wald -17964 +▁shale -17965 +▁Moroc -17966 +▁pressing -17967 +▁strengths -17968 +▁simulation -17969 +nae -17970 +▁Lois -17971 +▁safer -17972 +▁brains -17973 +▁hunger -17974 +attering -17975 +▁legendary -17976 +oryen -17977 +▁Erie -17978 +▁chip -17979 +▁Course -17980 +▁violin -17981 +▁resting -17982 +▁autonomy -17983 +▁autonomous -17984 +▁Morm -17985 +▁duet -17986 +ificent -17987 +▁receptors -17988 +lot -17989 +▁bust -17990 +▁croc -17991 +▁Initi -17992 +▁totaled -17993 +▁Interior -17994 +▁Hag -17995 +▁hazards -17996 +▁socially -17997 +▁substrate -17998 +▁Dew -17999 +▁rud -18000 +prises -18001 +▁makeup -18002 +▁jointly -18003 +▁Griffith -18004 +▁singular -18005 +▁(1) -18006 +▁Pret -18007 +▁Wick -18008 +▁Wander -18009 +▁shoots -18010 +▁compliance -18011 +▁Vij -18012 +▁piv -18013 +aceae -18014 +avirus -18015 +▁Trump -18016 +▁rookie -18017 +▁farmland -18018 +amics -18019 +lando -18020 +racted -18021 +▁hammer -18022 +▁Coalition -18023 +▁rigid -18024 +▁recreation -18025 +La -18026 +iler -18027 +▁NOK -18028 +▁Rhys -18029 +▁pigs -18030 +▁diagram -18031 +▁picking -18032 +anus -18033 +▁Dim -18034 +unker -18035 +▁1845 -18036 +▁oath -18037 +▁mould -18038 +▁compost -18039 +▁averages -18040 +▁monitored -18041 +▁rejection -18042 +▁discovering -18043 +▁Jorge -18044 +▁fats -18045 +▁oils -18046 +▁gland -18047 +▁vapor -18048 +▁barrel -18049 +activity -18050 +▁improves -18051 +▁instinct -18052 +▁receptor -18053 +▁Fine -18054 +▁Plains -18055 +▁Willie -18056 +▁businessman -18057 +▁songwriting -18058 +abs -18059 +try -18060 +▁Coc -18061 +▁FDA -18062 +▁Rut -18063 +▁Plus -18064 +▁Espay -18065 +▁polls -18066 +▁lineup -18067 +▁Prussia -18068 +▁commemorate -18069 +inae -18070 +▁Question -18071 +▁combines -18072 +▁nonetheless -18073 +▁330 -18074 +▁Dover -18075 +▁Covenant -18076 +▁narrowly -18077 +▁pitching -18078 +▁parasites -18079 +▁penalties -18080 +▁Euras -18081 +▁confrontation -18082 +▁Eva -18083 +loaded -18084 +▁Honey -18085 +▁favourable -18086 +▁Els -18087 +▁hotels -18088 +▁Copyright -18089 +▁overview -18090 +▁sometime -18091 +▁advocates -18092 +▁composite -18093 +▁sandstone -18094 +▁northbound -18095 +▁Observatory -18096 +▁Biology -18097 +▁workshe -18098 +▁MI -18099 +▁Rein -18100 +▁arcade -18101 +▁gallons -18102 +▁portrays -18103 +▁Challenge -18104 +▁fus -18105 +▁Calc -18106 +dominal -18107 +▁Historian -18108 +ilem -18109 +▁Zion -18110 +▁fool -18111 +▁dining -18112 +▁seated -18113 +▁Nigeria -18114 +ité -18115 +▁Writers -18116 +▁vertebra -18117 +▁equations -18118 +occup -18119 +▁Brah -18120 +▁wolf -18121 +▁Minne -18122 +▁Shack -18123 +▁mitig -18124 +▁letting -18125 +▁Kingston -18126 +▁Likewise -18127 +▁sculptures -18128 +▁Underground -18129 +▁BM -18130 +▁SAS -18131 +atche -18132 +▁Kend -18133 +▁natives -18134 +▁exploitation -18135 +▁fals -18136 +▁vein -18137 +▁theft -18138 +▁Gustav -18139 +hoe -18140 +achi -18141 +▁spans -18142 +▁Nuclear -18143 +amel -18144 +▁Kenya -18145 +▁Lesser -18146 +▁princess -18147 +▁Fey -18148 +▁transc -18149 +▁envision -18150 +▁1854 -18151 +▁Kash -18152 +ipelago -18153 +▁pesticides -18154 +fig -18155 +raul -18156 +▁sap -18157 +▁Wong -18158 +▁Stern -18159 +▁feeds -18160 +▁Sebastian -18161 +▁8, -18162 +▁Greene -18163 +▁Letter -18164 +▁biblical -18165 +▁nin -18166 +tures -18167 +▁boiler -18168 +▁Banksia -18169 +▁characterised -18170 +▁OK -18171 +▁650 -18172 +athon -18173 +▁Risk -18174 +▁Rhine -18175 +▁imped -18176 +▁Ashley -18177 +▁offset -18178 +▁ofisyèl -18179 +▁Gem -18180 +▁Axis -18181 +▁Reid -18182 +▁Nazis -18183 +▁Sharon -18184 +▁poetic -18185 +▁soccer -18186 +▁weaker -18187 +▁deadline -18188 +▁aggression -18189 +▁Institution -18190 +▁vaccination -18191 +anor -18192 +▁pathway -18193 +▁kilograms -18194 +jin -18195 +▁Ri -18196 +▁sug -18197 +screen -18198 +▁mapping -18199 +▁Bradford -18200 +▁millimeter -18201 +▁millimetres -18202 +acerb -18203 +▁Hear -18204 +▁Pari -18205 +▁instantly -18206 +usp -18207 +amph -18208 +ifax -18209 +▁stunt -18210 +▁Webster -18211 +▁wrapped -18212 +▁Lun -18213 +▁Evan -18214 +▁Lenin -18215 +hibition -18216 +▁Letters -18217 +▁spiders -18218 +▁Brighton -18219 +▁persecution -18220 +rio -18221 +▁Krishna -18222 +▁Exchange -18223 +▁performer -18224 +▁Kann -18225 +▁cris -18226 +▁Valentine -18227 +ahon -18228 +▁seri -18229 +▁catches -18230 +omo -18231 +▁(4 -18232 +▁chor -18233 +▁Parents -18234 +▁switching -18235 +▁uncovered -18236 +▁considerations -18237 +▁Diane -18238 +▁prose -18239 +▁Hendrix -18240 +▁visually -18241 +▁repetitive -18242 +▁coordinated -18243 +urate -18244 +▁Tong -18245 +▁outlined -18246 +▁thriller -18247 +▁riot -18248 +▁Pradesh -18249 +▁oxidation -18250 +▁compassion -18251 +▁obligations -18252 +uy -18253 +▁Ble -18254 +▁eks -18255 +▁Aires -18256 +▁Negro -18257 +▁punish -18258 +▁114 -18259 +▁yes -18260 +▁flatt -18261 +ressive -18262 +▁fibers -18263 +▁baptism -18264 +▁technically -18265 +anik -18266 +▁Cros -18267 +▁Glac -18268 +▁Build -18269 +▁Loren -18270 +▁refit -18271 +▁AB -18272 +▁valleys -18273 +▁Mongol -18274 +▁additions -18275 +▁appealing -18276 +▁lev -18277 +▁Savage -18278 +▁raises -18279 +▁masters -18280 +▁starter -18281 +▁implementing -18282 +▁Stark -18283 +tingham -18284 +▁leaked -18285 +▁traders -18286 +ographies -18287 +▁veto -18288 +urtles -18289 +▁Brock -18290 +▁intimid -18291 +▁disagreed -18292 +vani -18293 +idium -18294 +▁pagan -18295 +▁sorts -18296 +▁Singer -18297 +▁jungle -18298 +▁Account -18299 +▁Creative -18300 +Ps -18301 +comp -18302 +▁Sandy -18303 +▁undergoing -18304 +▁aluminum -18305 +▁Greenland -18306 +▁dispersed -18307 +fin -18308 +▁Hipp -18309 +iosity -18310 +roleum -18311 +▁Ruther -18312 +▁adjusted -18313 +▁Depending -18314 +▁Portsmouth -18315 +▁inevitable -18316 +▁strips -18317 +▁besides -18318 +▁Southwest -18319 +▁extracted -18320 +bane -18321 +▁ink -18322 +avior -18323 +▁Hort -18324 +▁accepts -18325 +▁teenagers -18326 +▁Ló -18327 +rying -18328 +▁dirty -18329 +▁markers -18330 +▁diagnostic -18331 +▁fiz -18332 +▁pow -18333 +▁fiscal -18334 +▁observer -18335 +▁frustration -18336 +ál -18337 +ogl -18338 +▁2015. -18339 +lessness -18340 +▁inherent -18341 +▁contributes -18342 +gage -18343 +byter -18344 +▁predictions -18345 +IF -18346 +agogue -18347 +▁jealous -18348 +▁hazardous -18349 +▁consultant -18350 +▁cum -18351 +▁Jazz -18352 +▁Rochester -18353 +▁Aboriginal -18354 +▁balloon -18355 +▁posting -18356 +▁turbine -18357 +▁rolled -18358 +▁shower -18359 +▁Canberra -18360 +▁evacuate -18361 +▁analyt -18362 +▁Destiny -18363 +CH -18364 +▁luxury -18365 +▁Brunswick -18366 +▁practicing -18367 +psy -18368 +▁Print -18369 +▁caves -18370 +▁Compet -18371 +rubs -18372 +▁Maple -18373 +▁terra -18374 +▁Rip -18375 +▁slot -18376 +ooting -18377 +rology -18378 +▁2000, -18379 +▁calib -18380 +▁cooked -18381 +▁Dob -18382 +▁bord -18383 +▁Crazy -18384 +▁Iraqi -18385 +▁confisc -18386 +▁globally -18387 +▁certificate -18388 +DC -18389 +▁komin -18390 +▁bassist -18391 +▁eternal -18392 +▁entities -18393 +7) -18394 +▁Iv -18395 +iker -18396 +made -18397 +▁Cham -18398 +▁Sophie -18399 +▁climax -18400 +▁interl -18401 +▁Winston -18402 +WR -18403 +▁1500 -18404 +▁Dayton -18405 +▁decommissioned -18406 +▁q -18407 +▁BP -18408 +▁121 -18409 +▁Linux -18410 +▁debts -18411 +▁Orlando -18412 +▁visitor -18413 +▁metallic -18414 +olon -18415 +▁Drew -18416 +▁2011. -18417 +▁exacerb -18418 +▁(6 -18419 +elyn -18420 +requ -18421 +doors -18422 +▁Metall -18423 +ivia -18424 +▁CDC -18425 +▁algae -18426 +▁solved -18427 +▁foul -18428 +▁anyway -18429 +▁intimate -18430 +WS -18431 +icz -18432 +▁Abs -18433 +▁sparked -18434 +▁Teaching -18435 +▁weighing -18436 +▁recovering -18437 +▁supernatural -18438 +▁Editor -18439 +▁graves -18440 +▁Presidential -18441 +▁Bag -18442 +▁Kun -18443 +▁ankle -18444 +▁depot -18445 +▁relies -18446 +▁collector -18447 +▁constructing -18448 +union -18449 +contin -18450 +▁López -18451 +▁burns -18452 +▁updates -18453 +▁financing -18454 +▁conceptual -18455 +▁installment -18456 +enic -18457 +opot -18458 +imated -18459 +▁Bahamas -18460 +▁emphasize -18461 +GE -18462 +omi -18463 +▁RC -18464 +▁Rama -18465 +▁XIII -18466 +▁glasses -18467 +") -18468 +law -18469 +oeuv -18470 +clair -18471 +▁Conv -18472 +▁unav -18473 +▁determines -18474 +arta -18475 +▁Answ -18476 +▁amor -18477 +▁recalls -18478 +▁inventory -18479 +▁recommends -18480 +▁advertisement -18481 +▁tumors -18482 +▁unified -18483 +elage -18484 +▁Woll -18485 +▁Traff -18486 +▁stays -18487 +▁wears -18488 +▁compatible -18489 +▁transplant -18490 +▁deteriorated -18491 +▁governmental -18492 +1- -18493 +▁prost -18494 +gun -18495 +uba -18496 +▁Hammond -18497 +▁overhaul -18498 +▁retiring -18499 +▁explanations -18500 +TP -18501 +▁Gir -18502 +▁Boul -18503 +▁cruc -18504 +urities -18505 +▁presumed -18506 +▁exchanged -18507 +▁ATP -18508 +▁Defin -18509 +▁crude -18510 +enstein -18511 +ometown -18512 +▁centimetres -18513 +FR -18514 +▁Lions -18515 +▁Moreno -18516 +▁Pix -18517 +▁cuis -18518 +!” -18519 +Or -18520 +isen -18521 +walk -18522 +ández -18523 +▁Gould -18524 +fs -18525 +undy -18526 +▁Rox -18527 +▁bip -18528 +▁harv -18529 +▁jewel -18530 +▁Vision -18531 +▁mosque -18532 +▁platoon -18533 +▁charging -18534 +into -18535 +itia -18536 +ocial -18537 +▁Solid -18538 +▁apple -18539 +▁latitude -18540 +▁Methodist -18541 +▁parallels -18542 +▁applicable -18543 +▁wr -18544 +▁insult -18545 +▁skiing -18546 +▁documentation -18547 +isse -18548 +thesis -18549 +▁Angels -18550 +▁intric -18551 +▁metaph -18552 +▁teenager -18553 +▁Guatemala -18554 +gos -18555 +haus -18556 +▁civic -18557 +▁Wrestle -18558 +▁immense -18559 +▁delicate -18560 +▁Statistics -18561 +indergart -18562 +▁infrared -18563 +▁supportive -18564 +▁gwoup -18565 +▁pathways -18566 +▁algorithms -18567 +▁Hindi -18568 +▁Jenna -18569 +'. -18570 +bot -18571 +▁Federer -18572 +▁committees -18573 +eterm -18574 +▁ammon -18575 +▁Thirty -18576 +▁ridges -18577 +▁Academic -18578 +▁Benedict -18579 +▁relegated -18580 +On -18581 +▁1858 -18582 +▁Fo -18583 +▁counting -18584 +▁visibility -18585 +▁Agricultural -18586 +▁satisfaction -18587 +▁Ans -18588 +kward -18589 +chester -18590 +▁insurg -18591 +▁Something -18592 +▁qualification -18593 +UCN -18594 +▁Andr -18595 +▁Glad -18596 +▁blade -18597 +▁shame -18598 +▁iPh -18599 +▁incap -18600 +▁Afterwards -18601 +anie -18602 +▁asym -18603 +▁Usually -18604 +igne -18605 +last -18606 +▁Blaine -18607 +▁testified -18608 +▁Pod -18609 +▁1856 -18610 +▁Tina -18611 +▁frontal -18612 +▁journals -18613 +▁inflammatory -18614 +▁Bit -18615 +opath -18616 +▁Aircraft -18617 +▁Teachers -18618 +▁promotes -18619 +▁protects -18620 +▁commended -18621 +▁Reyalizatè -18622 +▁counterpart -18623 +aternity -18624 +▁overlooked -18625 +▁Immediately -18626 +▁surprisingly -18627 +▁Gö -18628 +acker -18629 +▁mizisyen -18630 +olds -18631 +▁jou -18632 +▁rotating -18633 +▁intentionally -18634 +esa -18635 +arez -18636 +ilies -18637 +▁Thir -18638 +▁suite -18639 +▁monsoon -18640 +▁posture -18641 +▁tidal -18642 +▁Therap -18643 +▁charting -18644 +▁concurrent -18645 +▁southbound -18646 +acies -18647 +▁throws -18648 +▁Evening -18649 +▁browser -18650 +▁earthquakes -18651 +▁ineffective -18652 +UR -18653 +▁mars -18654 +▁recapt -18655 +▁enjoyable -18656 +DT -18657 +▁Date -18658 +▁Kant -18659 +▁spill -18660 +▁deleted -18661 +▁electromagnetic -18662 +▁Š -18663 +resses -18664 +▁dominate -18665 +▁fertility -18666 +▁FC -18667 +▁1849 -18668 +▁ruined -18669 +olescent -18670 +▁neutron -18671 +▁interval -18672 +▁overtime -18673 +▁goalkeeper -18674 +▁prestigious -18675 +ahan -18676 +antè -18677 +inda -18678 +iatus -18679 +▁manor -18680 +▁Halifax -18681 +▁hygiene -18682 +▁propeller -18683 +▁landscapes -18684 +▁136 -18685 +▁pest -18686 +▁basal -18687 +asyonal -18688 +ublished -18689 +▁dressing -18690 +inh -18691 +esome -18692 +▁sued -18693 +▁Claren -18694 +▁Carroll -18695 +▁Classical -18696 +▁submission -18697 +bath -18698 +▁Away -18699 +▁gills -18700 +▁Compar -18701 +ogenesis -18702 +▁justify -18703 +▁Prussian -18704 +▁frigates -18705 +▁classrooms -18706 +▁Zag -18707 +▁Rank -18708 +▁hast -18709 +▁micros -18710 +▁scorer -18711 +▁dismant -18712 +clesiastical -18713 +▁Dock -18714 +▁prez -18715 +▁Charter -18716 +▁advisory -18717 +▁somebody -18718 +▁underway -18719 +▁Sé -18720 +azar -18721 +▁Nim -18722 +▁lemur -18723 +▁loving -18724 +▁RIAA -18725 +▁duct -18726 +▁Achie -18727 +▁semif -18728 +▁cu -18729 +▁Lans -18730 +▁Root -18731 +▁Teen -18732 +▁Beast -18733 +▁amend -18734 +▁Jet -18735 +ablish -18736 +▁resume -18737 +▁spiral -18738 +▁remnant -18739 +▁hierarchy -18740 +Ph -18741 +ilus -18742 +▁MacD -18743 +▁cerv -18744 +▁satisfy -18745 +▁refrig -18746 +▁circuits -18747 +▁refusing -18748 +▁Phase -18749 +▁clerk -18750 +▁Hollow -18751 +▁knight -18752 +▁embrace -18753 +▁amounted -18754 +▁Standards -18755 +▁advertisements -18756 +▁mint -18757 +▁wires -18758 +▁bicycle -18759 +berries -18760 +▁brutal -18761 +▁cancell -18762 +▁Bil -18763 +▁coordinate -18764 +%, -18765 +.). -18766 +▁Mental -18767 +aternal -18768 +▁Lich -18769 +avilion -18770 +▁awkward -18771 +▁solitary -18772 +▁exploit -18773 +▁Archives -18774 +ikk -18775 +▁Myster -18776 +economic -18777 +▁Literature -18778 +▁acet -18779 +▁wells -18780 +▁supreme -18781 +▁bou -18782 +▁vie -18783 +▁Spot -18784 +rowing -18785 +▁pulse -18786 +▁demolition -18787 +▁questioning -18788 +weed -18789 +▁Falk -18790 +ementia -18791 +▁hunters -18792 +▁Stafford -18793 +▁relijyon -18794 +wi -18795 +bat -18796 +▁.. -18797 +fied -18798 +▁osi -18799 +▁Troy -18800 +▁sake -18801 +▁plantation -18802 +▁iv -18803 +bred -18804 +odont -18805 +▁ESPN -18806 +rescent -18807 +▁Duchess -18808 +▁meanings -18809 +▁LC -18810 +▁Zimb -18811 +▁dentist -18812 +▁superhero -18813 +▁conscience -18814 +▁victorious -18815 +▁workshops -18816 +ław -18817 +nant -18818 +▁consort -18819 +▁Sunderland -18820 +erns -18821 +▁Oppen -18822 +▁ordin -18823 +▁Fuller -18824 +▁crater -18825 +▁legitim -18826 +▁backdrop -18827 +▁therapeutic -18828 +▁missionaries -18829 +▁^ -18830 +▁rabb -18831 +▁uter -18832 +▁effic -18833 +▁loads -18834 +▁devotion -18835 +▁promptly -18836 +▁readings -18837 +▁listeners -18838 +▁Doktè -18839 +▁Rafael -18840 +▁Perfect -18841 +▁constituted -18842 +unta -18843 +▁needle -18844 +▁reunited -18845 +▁Rutherford -18846 +hal -18847 +ocide -18848 +▁mimic -18849 +▁Fiction -18850 +▁infinite -18851 +.6 -18852 +▁Lec -18853 +▁Pike -18854 +▁magnesium -18855 +▁proportions -18856 +▁rou -18857 +flamm -18858 +▁Corp -18859 +▁Beauty -18860 +▁Hoffman -18861 +▁Character -18862 +▁inscriptions -18863 +geon -18864 +▁Smy -18865 +▁gel -18866 +▁Draw -18867 +▁Webber -18868 +▁Scholars -18869 +▁toxicity -18870 +▁Discovery -18871 +▁geography -18872 +▁soy -18873 +▁Eyes -18874 +apeake -18875 +▁Always -18876 +▁tragic -18877 +▁predator -18878 +▁Questions -18879 +▁partition -18880 +All -18881 +boats -18882 +▁scrut -18883 +▁Barber -18884 +▁overhead -18885 +HC -18886 +vie -18887 +▁(" -18888 +aird -18889 +▁Reds -18890 +▁Comic -18891 +▁manned -18892 +▁hometown -18893 +▁bottles -18894 +▁drowned -18895 +▁discarded -18896 +▁postponed -18897 +urnal -18898 +▁ADHD -18899 +stones -18900 +▁cables -18901 +▁restra -18902 +▁abdomen -18903 +▁tournaments -18904 +▁Upd -18905 +▁Wade -18906 +▁wilder -18907 +▁crafts -18908 +▁mankind -18909 +▁degradation -18910 +▁practically -18911 +▁interpretations -18912 +jord -18913 +▁spy -18914 +agara -18915 +▁eman -18916 +▁paired -18917 +▁issuing -18918 +▁unchang -18919 +▁warrior -18920 +▁Anglican -18921 +▁economies -18922 +▁damp -18923 +▁Adriatic -18924 +days -18925 +unton -18926 +▁glaciers -18927 +▁accusations -18928 +▁resemblance -18929 +When -18930 +▁osc -18931 +▁rer -18932 +▁Coach -18933 +▁Britney -18934 +▁Assessment -18935 +▁:-8 -18936 +▁Hawk -18937 +▁popul -18938 +▁weird -18939 +TR -18940 +uber -18941 +▁pitit -18942 +▁Multiple -18943 +bands -18944 +▁Fresh -18945 +▁Flu -18946 +▁Vaugh -18947 +ifiable -18948 +▁Nearly -18949 +▁divorced -18950 +▁associates -18951 +▁psychiatric -18952 +En -18953 +estial -18954 +▁tailed -18955 +▁Indianapolis -18956 +▁nu -18957 +romb -18958 +▁Osw -18959 +ardon -18960 +▁embassy -18961 +▁upstream -18962 +▁temperate -18963 +BL -18964 +▁lumin -18965 +▁Eagles -18966 +▁sensation -18967 +▁resembling -18968 +bank -18969 +▁Knox -18970 +▁funk -18971 +▁appar -18972 +▁indef -18973 +▁Rivera -18974 +▁invisible -18975 +▁dissatis -18976 +▁acquiring -18977 +▁Filip -18978 +▁Holden -18979 +▁shrine -18980 +▁deities -18981 +▁oversaw -18982 +▁daylight -18983 +▁Minneapolis -18984 +▁expeditions -18985 +▁extr -18986 +▁urging -18987 +▁genetics -18988 +cover -18989 +ensen -18990 +▁Neigh -18991 +▁Sudan -18992 +▁appet -18993 +▁reporters -18994 +ignant -18995 +▁forbidden -18996 +▁perspectives -18997 +▁wand -18998 +▁Dodgers -18999 +human -19000 +▁Cauc -19001 +urgical -19002 +▁Lafayette -19003 +say -19004 +▁Dorothy -19005 +▁rebuild -19006 +▁Observer -19007 +▁broadcasting -19008 +▁Sté -19009 +▁scal -19010 +▁Higher -19011 +▁Harbour -19012 +▁Literary -19013 +▁± -19014 +awi -19015 +kill -19016 +unts -19017 +▁Sask -19018 +▁mentor -19019 +▁precursor -19020 +▁LA -19021 +▁Sci -19022 +▁Download -19023 +▁automobile -19024 +▁thunderstorms -19025 +2). -19026 +▁Gut -19027 +rague -19028 +▁Gret -19029 +▁IUCN -19030 +▁Employ -19031 +▁checks -19032 +▁Cert -19033 +otechn -19034 +▁lords -19035 +▁downed -19036 +▁Lambert -19037 +intendent -19038 +▁sque -19039 +▁kingdoms -19040 +▁Stockholm -19041 +▁Chesapeake -19042 +▁culminated -19043 +▁deliberate -19044 +▁inheritance -19045 +sterdam -19046 +breaking -19047 +▁desirable -19048 +▁reliability -19049 +▁Gy -19050 +▁Lynn -19051 +▁Quick -19052 +▁hairs -19053 +▁Geneva -19054 +▁Scouting -19055 +▁overturn -19056 +▁discrimin -19057 +uder -19058 +▁Laur -19059 +▁Julius -19060 +▁resear -19061 +▁excluding -19062 +▁decoration -19063 +▁straightforward -19064 +ept -19065 +pole -19066 +▁talented -19067 +▁Bea -19068 +▁pulp -19069 +▁Across -19070 +▁disast -19071 +▁detective -19072 +▁tornadoes -19073 +pox -19074 +ctica -19075 +▁obey -19076 +ivorous -19077 +▁devote -19078 +▁grouped -19079 +▁mountainous -19080 +Wh -19081 +1). -19082 +abwe -19083 +tail -19084 +andan -19085 +▁pond -19086 +▁Jackie -19087 +▁Wesley -19088 +▁coined -19089 +▁helmet -19090 +▁instability -19091 +▁congressional -19092 +ahu -19093 +obil -19094 +▁Bend -19095 +▁Cecil -19096 +▁Winchester -19097 +▁BS -19098 +▁owns -19099 +▁chips -19100 +▁inacc -19101 +▁pronunciation -19102 +ancies -19103 +▁pollen -19104 +▁trilogy -19105 +▁Richards -19106 +▁contempl -19107 +▁NME -19108 +▁Basic -19109 +imi -19110 +ogo -19111 +▁3) -19112 +aland -19113 +azed -19114 +▁122 -19115 +▁oppose -19116 +▁Sergeant -19117 +▁butterfly -19118 +▁Timberlake -19119 +▁transparent -19120 +grass -19121 +▁potent -19122 +▁excitement -19123 +shine -19124 +uliar -19125 +▁burnt -19126 +▁derives -19127 +▁compensate -19128 +▁devastated -19129 +▁Pole -19130 +▁1847 -19131 +▁clad -19132 +mental -19133 +▁camoufl -19134 +▁Donna -19135 +▁heroic -19136 +▁disasters -19137 +▁additionally -19138 +Mar -19139 +▁execute -19140 +▁Middlesex -19141 +▁compose -19142 +▁Ivy -19143 +▁Kre -19144 +▁asset -19145 +▁equilibrium -19146 +aden -19147 +▁Close -19148 +▁sided -19149 +▁energetic -19150 +▁Louisville -19151 +CE -19152 +fu -19153 +▁Bj -19154 +▁Nig -19155 +▁Tud -19156 +icides -19157 +▁flame -19158 +atz -19159 +profit -19160 +▁sweep -19161 +▁depths -19162 +▁climbed -19163 +▁convoys -19164 +▁empir -19165 +▁Gaelic -19166 +▁monitors -19167 +▁superstructure -19168 +▁Miy -19169 +▁Guam -19170 +▁plains -19171 +▁Rebecca -19172 +▁obscure -19173 +▁prescription -19174 +▁cents -19175 +▁skirm -19176 +▁Damasc -19177 +▁discom -19178 +▁Clinical -19179 +beth -19180 +rank -19181 +▁Fav -19182 +veston -19183 +▁riots -19184 +ificant -19185 +▁plumage -19186 +▁objected -19187 +▁sketches -19188 +▁Commodore -19189 +▁selecting -19190 +▁Diss -19191 +ilight -19192 +▁twist -19193 +▁McMahon -19194 +▁reproduce -19195 +▁Keys -19196 +▁Jamie -19197 +fielder -19198 +▁clinic -19199 +▁Journey -19200 +▁Leopold -19201 +▁polymer -19202 +▁creators -19203 +▁Carpenter -19204 +▁unrelated -19205 +▁transactions -19206 +▁hob -19207 +gebra -19208 +▁para -19209 +▁goalt -19210 +▁screw -19211 +▁hunter -19212 +▁exports -19213 +▁trusted -19214 +▁Manufact -19215 +▁portraying -19216 +azi -19217 +lined -19218 +▁2010. -19219 +▁mentally -19220 +str -19221 +culosis -19222 +▁surplus -19223 +▁bullying -19224 +▁televised -19225 +▁spor -19226 +▁stellar -19227 +▁continuation -19228 +pur -19229 +▁Ses -19230 +ugged -19231 +▁stealing -19232 +▁Cly -19233 +▁Leh -19234 +▁thor -19235 +▁Crash -19236 +▁fluids -19237 +▁Matanzas -19238 +▁northeastward -19239 +orie -19240 +▁née -19241 +▁peaks -19242 +olation -19243 +▁criminals -19244 +▁accordingly -19245 +They -19246 +▁Tampa -19247 +▁Script -19248 +▁Compton -19249 +▁geological -19250 +.7 -19251 +▁lets -19252 +▁Prophet -19253 +▁Italians -19254 +▁revelation -19255 +▁constellation -19256 +▁demonstrations -19257 +asterly -19258 +▁excavated -19259 +UN -19260 +▁luc -19261 +▁bugs -19262 +▁courty -19263 +abis -19264 +ollen -19265 +▁Laws -19266 +▁gastro -19267 +▁shirts -19268 +05 -19269 +ég -19270 +caster -19271 +▁dehyd -19272 +▁Zimbabwe -19273 +izards -19274 +▁Guest -19275 +▁combust -19276 +▁cycling -19277 +▁permits -19278 +thy -19279 +▁4: -19280 +igion -19281 +▁senses -19282 +▁Gazette -19283 +▁restoring -19284 +▁minorities -19285 +▁Sz -19286 +▁Dow -19287 +▁1846 -19288 +▁melt -19289 +▁seaf -19290 +monary -19291 +▁occupying -19292 +▁Communication -19293 +ocus -19294 +▁sitcom -19295 +▁implied -19296 +▁scholarly -19297 +▁ON -19298 +▁1855 -19299 +▁toxins -19300 +▁Regular -19301 +▁differed -19302 +▁earnings -19303 +▁Rhodesian -19304 +▁arthritis -19305 +▁dependence -19306 +▁diets -19307 +▁tides -19308 +▁thrive -19309 +▁inspire -19310 +▁trenches -19311 +▁unpro -19312 +▁Augustine -19313 +▁referenced -19314 +arck -19315 +chev -19316 +▁cinemat -19317 +▁troubled -19318 +opsy -19319 +Mania -19320 +antis -19321 +arius -19322 +imson -19323 +solete -19324 +▁Essay -19325 +▁gorge -19326 +▁realism -19327 +▁Galveston -19328 +▁Recreation -19329 +▁prominently -19330 +▁humanitarian -19331 +▁Cul -19332 +▁nou -19333 +▁grief -19334 +▁dances -19335 +▁Everyone -19336 +▁Amsterdam -19337 +▁definitive -19338 +▁fence -19339 +▁nasal -19340 +▁waited -19341 +▁lightly -19342 +QL -19343 +▁1⁄2 -19344 +▁cros -19345 +▁incub -19346 +▁pamph -19347 +▁settling -19348 +▁exceeding -19349 +▁adolescents -19350 +chel -19351 +alore -19352 +amorph -19353 +▁bowler -19354 +▁lauded -19355 +▁navigate -19356 +▁undertake -19357 +unks -19358 +▁veins -19359 +▁vomiting -19360 +▁impaired -19361 +▁decorative -19362 +▁rh -19363 +irming -19364 +specific -19365 +▁modeled -19366 +▁abdominal -19367 +IG -19368 +▁merit -19369 +De -19370 +▁drift -19371 +▁graduates -19372 +▁neglected -19373 +▁affordable -19374 +▁Giov -19375 +▁imèn -19376 +▁iPhone -19377 +▁honours -19378 +▁sympath -19379 +▁teknoloji -19380 +▁Loch -19381 +▁rav -19382 +▁Prote -19383 +▁Bronze -19384 +▁Hampton -19385 +▁miniature -19386 +oscop -19387 +▁1790 -19388 +▁bulb -19389 +▁semic -19390 +▁Dawson -19391 +▁Rovers -19392 +▁hydraul -19393 +▁marketed -19394 +▁astronomy -19395 +▁linguistic -19396 +azy -19397 +▁Lap -19398 +amped -19399 +giate -19400 +▁Hyper -19401 +▁Barton -19402 +▁Hutton -19403 +▁Alberto -19404 +▁personalities -19405 +hous -19406 +▁123 -19407 +▁Von -19408 +▁Maybe -19409 +▁Wyatt -19410 +▁seism -19411 +▁trench -19412 +hou -19413 +ESCO -19414 +othe -19415 +▁147 -19416 +storm -19417 +▁Sons -19418 +▁Eleanor -19419 +▁envelop -19420 +▁erupted -19421 +▁stain -19422 +▁Divine -19423 +▁Racing -19424 +▁oscill -19425 +iliation -19426 +▁Philosophy -19427 +.- -19428 +▁Sixth -19429 +▁grazing -19430 +▁motorcy -19431 +▁celebrating -19432 +mare -19433 +▁lent -19434 +▁fundra -19435 +▁wetlands -19436 +▁AV -19437 +ecraft -19438 +thouse -19439 +▁casem -19440 +▁informs -19441 +▁lifelong -19442 +▁progresses -19443 +Ed -19444 +orns -19445 +▁Cyn -19446 +▁hex -19447 +▁eruptions -19448 +ango -19449 +▁bree -19450 +arette -19451 +▁comply -19452 +▁Lexington -19453 +▁wrestlers -19454 +▁bankruptcy -19455 +▁contingent -19456 +▁displaying -19457 +▁Alternative -19458 +uddy -19459 +▁hed -19460 +▁Bard -19461 +▁Marqu -19462 +▁quotes -19463 +▁talents -19464 +▁rejoined -19465 +-17 -19466 +itud -19467 +▁Ibn -19468 +orate -19469 +▁athe -19470 +▁Lauren -19471 +▁Trinidad -19472 +▁friction -19473 +▁Canadians -19474 +▁continuity -19475 +300 -19476 +dep -19477 +▁9, -19478 +▁catching -19479 +▁entirety -19480 +▁railways -19481 +▁sounding -19482 +▁composing -19483 +▁stap -19484 +▁Thank -19485 +▁lenses -19486 +▁surveyed -19487 +▁1852 -19488 +ilvani -19489 +▁encry -19490 +▁Plants -19491 +▁modify -19492 +▁Cambodia -19493 +▁spanning -19494 +▁meg -19495 +▁1832 -19496 +▁Carne -19497 +▁anpil -19498 +▁repris -19499 +arnation -19500 +▁Knowles -19501 +▁interim -19502 +▁enforced -19503 +▁(197 -19504 +▁Fork -19505 +▁Plans -19506 +▁Worth -19507 +▁tense -19508 +▁commence -19509 +ghai -19510 +mind -19511 +▁Avon -19512 +▁Battery -19513 +▁Colombia -19514 +▁portable -19515 +▁converting -19516 +▁stocks -19517 +▁asteroid -19518 +▁survives -19519 +▁Supporting -19520 +bye -19521 +▁Eugen -19522 +▁educate -19523 +▁allergic -19524 +▁stationary -19525 +-15 -19526 +vex -19527 +▁Pascal -19528 +▁Rupert -19529 +▁anchored -19530 +idy -19531 +▁Ki -19532 +▁Rac -19533 +▁dinò -19534 +▁halls -19535 +▁announcing -19536 +▁Zo -19537 +▁methane -19538 +▁newborn -19539 +▁Damascus -19540 +auke -19541 +▁Aus -19542 +▁Rib -19543 +acity -19544 +inski -19545 +▁Jain -19546 +▁adhe -19547 +▁integrate -19548 +▁shortages -19549 +▁southward -19550 +-9 -19551 +ENT -19552 +cos -19553 +▁GP -19554 +writing -19555 +▁immigrant -19556 +▁specialists -19557 +uer -19558 +▁Ez -19559 +insky -19560 +▁aids -19561 +▁Tunis -19562 +▁violated -19563 +▁TS -19564 +orum -19565 +▁Occup -19566 +▁Timothy -19567 +▁grounded -19568 +▁gregoryen -19569 +▁superiority -19570 +▁Vi -19571 +white -19572 +ocence -19573 +▁Apost -19574 +▁tiger -19575 +▁appeals -19576 +▁simpler -19577 +▁authored -19578 +▁spinning -19579 +▁mathematic -19580 +▁amalg -19581 +▁Archer -19582 +▁loosely -19583 +▁compression -19584 +▁12, -19585 +▁backs -19586 +▁comprise -19587 +▁Byrd -19588 +▁smugg -19589 +▁immort -19590 +▁deposit -19591 +▁manoeuv -19592 +▁Belt -19593 +▁Seth -19594 +▁suits -19595 +▁Pennsilvani -19596 +▁Quint -19597 +▁Vishn -19598 +▁boring -19599 +▁wilderness -19600 +▁overwhelmed -19601 +▁ballet -19602 +▁Georget -19603 +To -19604 +▁lor -19605 +enhagen -19606 +tension -19607 +▁Vernon -19608 +▁Personal -19609 +▁contributor -19610 +aic -19611 +▁(“ -19612 +▁tran -19613 +▁Cherry -19614 +▁Brisbane -19615 +▁verdict -19616 +▁Persians -19617 +▁mutation -19618 +▁peculiar -19619 +usk -19620 +▁1853 -19621 +▁Nina -19622 +▁ruin -19623 +▁Iranian -19624 +▁Norwich -19625 +▁retrieve -19626 +▁Shar -19627 +▁seating -19628 +▁defender -19629 +▁password -19630 +▁MW -19631 +▁119 -19632 +▁eyew -19633 +▁urgent -19634 +▁curious -19635 +▁Buckingham -19636 +fi -19637 +▁Wi -19638 +opia -19639 +▁gad -19640 +▁wag -19641 +▁Dent -19642 +▁corros -19643 +onstruction -19644 +▁Cretaceous -19645 +▁disastrous -19646 +edo -19647 +▁sè -19648 +riye -19649 +▁evolve -19650 +▁Vladimir -19651 +▁attracting -19652 +lass -19653 +▁travers -19654 +▁disappro -19655 +▁misunder -19656 +▁Elementary -19657 +amba -19658 +▁fits -19659 +▁transm -19660 +▁Guerrero -19661 +▁consolidated -19662 +▁assim -19663 +▁lions -19664 +▁edible -19665 +▁Hastings -19666 +▁backwards -19667 +▁antagonist -19668 +lord -19669 +▁hay -19670 +▁porn -19671 +▁springs -19672 +▁Azerbaijan -19673 +No -19674 +kon -19675 +iban -19676 +pend -19677 +step -19678 +▁Tomb -19679 +▁seab -19680 +headed -19681 +▁lining -19682 +may -19683 +▁Oakland -19684 +▁Heinrich -19685 +ilated -19686 +ounding -19687 +▁peasants -19688 +▁uniforms -19689 +▁Gloucester -19690 +▁vulnerability -19691 +rities -19692 +▁litter -19693 +▁Towards -19694 +▁lumber -19695 +▁psyched -19696 +▁suspicion -19697 +▁Diệ -19698 +▁Pablo -19699 +▁energ -19700 +▁Socialist -19701 +▁prediction -19702 +▁calculation -19703 +unal -19704 +▁Exerc -19705 +▁ethanol -19706 +▁keyboards -19707 +▁selective -19708 +▁Ferry -19709 +▁Corner -19710 +▁dissent -19711 +▁Tasmania -19712 +arbon -19713 +▁Diệm -19714 +▁hered -19715 +▁humour -19716 +▁yielded -19717 +▁township -19718 +Be -19719 +itism -19720 +umbent -19721 +▁Located -19722 +▁Speaker -19723 +▁generator -19724 +▁Mau -19725 +▁tiles -19726 +▁leisure -19727 +▁Isabella -19728 +▁Traditional -19729 +▁umb -19730 +▁stalk -19731 +▁wholly -19732 +▁Commerce -19733 +osl -19734 +▁Rous -19735 +letion -19736 +▁Notre -19737 +▁tablets -19738 +▁auxiliary -19739 +▁expresses -19740 +cal -19741 +izoph -19742 +▁overc -19743 +lighten -19744 +olutions -19745 +▁seventy -19746 +indergarten -19747 +▁recruiting -19748 +▁cooperative -19749 +thms -19750 +▁Happ -19751 +arettes -19752 +▁circulated -19753 +▁desk -19754 +▁Rough -19755 +▁outdoors -19756 +▁confusing -19757 +▁spontaneous -19758 +▁transports -19759 +▁inappropriate -19760 +sta -19761 +elman -19762 +▁sher -19763 +▁Alien -19764 +▁belly -19765 +▁vivid -19766 +▁Antarctica -19767 +▁archbishop -19768 +▁obligation -19769 +usa -19770 +▁ACC -19771 +▁McCl -19772 +▁tire -19773 +▁abbey -19774 +▁ideals -19775 +▁obsolete -19776 +▁expecting -19777 +▁filmmakers -19778 +òk -19779 +▁Ing -19780 +▁zoo -19781 +▁Amor -19782 +▁glad -19783 +▁Breat -19784 +▁immin -19785 +▁Julien -19786 +▁persona -19787 +▁disruption -19788 +non -19789 +▁Moss -19790 +▁serm -19791 +▁Jenny -19792 +▁Vince -19793 +▁granite -19794 +▁adopting -19795 +▁Alexandra -19796 +▁discomfort -19797 +▁propulsion -19798 +▁WrestleMania -19799 +▁Heming -19800 +▁margins -19801 +▁airplane -19802 +▁municipalities -19803 +▁Flow -19804 +▁Capcom -19805 +▁Conversely -19806 +▁assumptions -19807 +▁Mered -19808 +▁missionary -19809 +guez -19810 +▁NOT -19811 +ermat -19812 +ussels -19813 +▁Abbas -19814 +izophren -19815 +▁workforce -19816 +▁divètisman -19817 +▁Representative -19818 +opt -19819 +enna -19820 +▁jumped -19821 +▁Harding -19822 +▁plantations -19823 +▁consultation -19824 +▁demonstrating -19825 +sche -19826 +icism -19827 +▁Lars -19828 +▁toilet -19829 +▁Experience -19830 +▁disciplines -19831 +ozo -19832 +▁shy -19833 +▁stal -19834 +▁2012. -19835 +▁abbre -19836 +▁Fringe -19837 +▁Transit -19838 +▁premium -19839 +▁exploded -19840 +▁markings -19841 +▁resonance -19842 +▁consulting -19843 +▁BR -19844 +seen -19845 +ledon -19846 +ropic -19847 +▁Herze -19848 +▁Yankovic -19849 +▁granting -19850 +▁migrants -19851 +▁collaborative -19852 +▁AG -19853 +▁Rule -19854 +▁frogs -19855 +▁pupil -19856 +▁brands -19857 +▁Believe -19858 +▁inscribed -19859 +▁2010, -19860 +▁Oldham -19861 +▁Reports -19862 +▁conceded -19863 +▁summoned -19864 +▁recognise -19865 +▁congestion -19866 +▁biz -19867 +▁bor -19868 +▁hij -19869 +▁Mits -19870 +▁arches -19871 +▁pollut -19872 +▁Chambers -19873 +▁Whatever -19874 +▁labelled -19875 +▁capitalism -19876 +▁responding -19877 +▁bru -19878 +ietal -19879 +alford -19880 +▁Concert -19881 +▁ecology -19882 +▁rendition -19883 +▁administer -19884 +kar -19885 +blems -19886 +ríguez -19887 +▁Above -19888 +▁Felix -19889 +▁Reyes -19890 +▁unint -19891 +igrated -19892 +▁asleep -19893 +▁desimal -19894 +▁chloride -19895 +▁marijuana -19896 +▁indirectly -19897 +▁recognizes -19898 +▁dissipating -19899 +tene -19900 +idable -19901 +▁Verde -19902 +▁Zhang -19903 +▁myths -19904 +iencies -19905 +▁Bergen -19906 +▁Heights -19907 +expl -19908 +gone -19909 +▁Gwen -19910 +▁Eston -19911 +▁Nolan -19912 +▁Plain -19913 +▁arrow -19914 +▁routed -19915 +▁surely -19916 +▁dignity -19917 +▁Meredith -19918 +imon -19919 +▁Rhy -19920 +▁Tet -19921 +▁float -19922 +▁potatoes -19923 +ophe -19924 +quel -19925 +▁kits -19926 +▁pays -19927 +▁Isabel -19928 +56 -19929 +shi -19930 +▁Kau -19931 +amour -19932 +▁risen -19933 +▁elephants -19934 +loo -19935 +raged -19936 +▁Kamp -19937 +▁vacant -19938 +▁indicator -19939 +▁Pomp -19940 +▁ethn -19941 +▁Title -19942 +▁doubts -19943 +▁prehist -19944 +▁supervised -19945 +.4 -19946 +dd -19947 +orem -19948 +marine -19949 +▁Victory -19950 +▁assumes -19951 +▁reconstructed -19952 +▁132 -19953 +▁Shear -19954 +▁Artists -19955 +▁Rodríguez -19956 +▁Copenhagen -19957 +▁Amer -19958 +▁Darren -19959 +uding -19960 +▁detr -19961 +▁lamp -19962 +umbled -19963 +▁arrange -19964 +▁ambition -19965 +▁sixteenth -19966 +▁peripheral -19967 +▁confirmation -19968 +erner -19969 +▁Gandhi -19970 +▁Typically -19971 +evo -19972 +▁1844 -19973 +▁Font -19974 +▁herd -19975 +▁Shanghai -19976 +▁numerical -19977 +▁omn -19978 +▁Coastal -19979 +▁patronage -19980 +▁perfection -19981 +obia -19982 +▁3000 -19983 +▁dispro -19984 +▁differing -19985 +▁unofficial -19986 +▁Oppenheimer -19987 +▁alterations -19988 +▁cancellation -19989 +abel -19990 +stru -19991 +▁Hyp -19992 +▁SMS -19993 +▁Bret -19994 +▁Thous -19995 +▁seals -19996 +▁Streets -19997 +▁stained -19998 +▁segregation -19999 +▁Stay -20000 +osures -20001 +▁batsmen -20002 +▁pumps -20003 +▁proves -20004 +▁yearly -20005 +▁Andrews -20006 +▁senator -20007 +ulse -20008 +▁Save -20009 +▁turtle -20010 +children -20011 +ivo -20012 +▁Rita -20013 +▁funnel -20014 +▁upward -20015 +▁pilgrim -20016 +▁premises -20017 +▁ARIA -20018 +▁Bism -20019 +▁aiming -20020 +▁lament -20021 +▁nobles -20022 +▁fertile -20023 +▁engineered -20024 +▁renovation -20025 +▁astronomical -20026 +log -20027 +idas -20028 +phis -20029 +érie -20030 +▁append -20031 +▁inclined -20032 +▁melodies -20033 +agua -20034 +▁Thorpe -20035 +▁Eg -20036 +▁Cedar -20037 +▁Going -20038 +▁backst -20039 +▁sacked -20040 +▁membran -20041 +▁recipes -20042 +▁activation -20043 +▁correlation -20044 +▁ventilation -20045 +▁Matematisyen -20046 +pos -20047 +mons -20048 +▁Tek -20049 +orman -20050 +▁1776 -20051 +▁Coff -20052 +▁erad -20053 +▁lifesp -20054 +▁Published -20055 +▁nons -20056 +Google -20057 +▁magist -20058 +▁silicon -20059 +▁tightly -20060 +▁Extension -20061 +wy -20062 +▁Opt -20063 +▁ate -20064 +▁Garcia -20065 +▁Medieval -20066 +▁suspicious -20067 +▁travay -20068 +▁Episode -20069 +▁attribute -20070 +card -20071 +▁Leip -20072 +▁endeav -20073 +One -20074 +ayed -20075 +▁pits -20076 +▁sprint -20077 +▁barrels -20078 +▁Particip -20079 +▁Mansfield -20080 +▁employing -20081 +▁fundament -20082 +Te -20083 +▁Hack -20084 +▁Jill -20085 +▁boxing -20086 +▁Forever -20087 +▁coaster -20088 +▁halfway -20089 +▁seizures -20090 +▁stranded -20091 +imensional -20092 +▁Secondary -20093 +▁TB -20094 +ococc -20095 +▁Peak -20096 +▁vend -20097 +▁Pitch -20098 +leading -20099 +▁hydrox -20100 +▁propose -20101 +▁holidays -20102 +▁vacation -20103 +▁Presbyter -20104 +esta -20105 +▁monk -20106 +▁prospects -20107 +▁excavations -20108 +▁1837 -20109 +▁Stewie -20110 +▁induce -20111 +▁fathers -20112 +▁terminated -20113 +▁reinst -20114 +▁Quality -20115 +▁antibody -20116 +▁objections -20117 +Qu -20118 +aniel -20119 +▁recycled -20120 +▁Providence -20121 +▁worms -20122 +▁Carmen -20123 +▁inflict -20124 +▁Germanic -20125 +▁Moor -20126 +ánchez -20127 +▁caring -20128 +▁opener -20129 +▁carriage -20130 +▁inequality -20131 +▁liberation -20132 +inch -20133 +▁Pir -20134 +▁defendant -20135 +NG -20136 +▁Tolk -20137 +▁medley -20138 +▁Legal -20139 +▁Berger -20140 +▁orphan -20141 +▁horizon -20142 +▁Leonardo -20143 +▁volcanoes -20144 +▁GR -20145 +arse -20146 +▁Webb -20147 +▁humorous -20148 +▁Sut -20149 +▁Locke -20150 +▁pests -20151 +▁Inform -20152 +▁Davidson -20153 +las -20154 +▁BA -20155 +girl -20156 +▁Kiel -20157 +▁Dixon -20158 +▁Navig -20159 +▁poses -20160 +▁employs -20161 +▁isotope -20162 +▁Programme -20163 +▁automated -20164 +igm -20165 +vić -20166 +ongo -20167 +▁Dot -20168 +▁Lip -20169 +▁Krak -20170 +▁Style -20171 +▁Carson -20172 +▁ND -20173 +haven -20174 +▁1836 -20175 +▁Abdul -20176 +▁Parkinson -20177 +▁administrator -20178 +ixed -20179 +▁nodes -20180 +▁hiring -20181 +▁asserts -20182 +▁WHO -20183 +▁pear -20184 +▁Seymour -20185 +▁inverte -20186 +▁Worcester -20187 +▁storytelling -20188 +fax -20189 +▁3- -20190 +oval -20191 +▁bod -20192 +amoto -20193 +emann -20194 +▁Dexter -20195 +▁overly -20196 +▁relying -20197 +▁Trafford -20198 +Co -20199 +▁Hyde -20200 +▁UNESCO -20201 +▁Reviews -20202 +▁amp -20203 +▁asylum -20204 +▁Filming -20205 +▁Finance -20206 +▁founders -20207 +▁spectral -20208 +ben -20209 +▁pic -20210 +▁wax -20211 +oresc -20212 +▁Nile -20213 +▁physicist -20214 +▁withstand -20215 +▁discharged -20216 +▁Mats -20217 +▁limb -20218 +▁Witch -20219 +▁Madanm -20220 +▁vi -20221 +ngel -20222 +▁dop -20223 +▁Bols -20224 +▁bail -20225 +hetics -20226 +▁clips -20227 +▁papal -20228 +▁Conrad -20229 +▁outward -20230 +▁penetrate -20231 +▁subordinate -20232 +▁downloadable -20233 +oit -20234 +▁ladder -20235 +▁expired -20236 +▁treason -20237 +▁Aristotle -20238 +▁assignments -20239 +▁141 -20240 +▁Lines -20241 +▁therapies -20242 +▁Python -20243 +▁Belarus -20244 +▁imminent -20245 +erie -20246 +▁dos -20247 +▁Yosh -20248 +govina -20249 +▁Cairo -20250 +continental -20251 +▁colorful -20252 +▁simplicity -20253 +▁Å -20254 +▁tying -20255 +▁nominee -20256 +▁quadrup -20257 +▁Colonial -20258 +▁enjoying -20259 +week -20260 +antan -20261 +▁Autom -20262 +▁scler -20263 +▁preserving -20264 +▁Jed -20265 +▁Boot -20266 +▁Wimb -20267 +▁Ukrain -20268 +▁dementia -20269 +▁pleasant -20270 +leen -20271 +▁EMI -20272 +▁Lif -20273 +▁Lux -20274 +▁Wey -20275 +family -20276 +▁strat -20277 +▁Campus -20278 +▁Fields -20279 +▁bloody -20280 +▁anxious -20281 +▁threaten -20282 +▁participant -20283 +▁posthumously -20284 +▁:- -20285 +gging -20286 +▁Hale -20287 +▁Hour -20288 +wèb -20289 +▁15, -20290 +▁Amazing -20291 +▁censorship -20292 +▁constituency -20293 +omas -20294 +▁Graph -20295 +▁Lester -20296 +atas -20297 +ithe -20298 +▁thumb -20299 +▁unfair -20300 +▁2013. -20301 +▁smile -20302 +▁replica -20303 +▁2014. -20304 +▁Maggie -20305 +▁bubble -20306 +▁stimulate -20307 +eke -20308 +▁Tul -20309 +▁Dors -20310 +▁feast -20311 +▁sexes -20312 +▁spore -20313 +▁Investig -20314 +▁reopened -20315 +odus -20316 +▁148 -20317 +▁Hew -20318 +▁Emil -20319 +ocytes -20320 +▁Analy -20321 +▁Warriors -20322 +▁compares -20323 +▁complexes -20324 +▁accumulation -20325 +▁MB -20326 +▁Hog -20327 +▁Host -20328 +quarter -20329 +▁chords -20330 +ERS -20331 +▁|| -20332 +harm -20333 +ensity -20334 +▁Known -20335 +▁Pilot -20336 +▁behave -20337 +▁sticks -20338 +▁reformed -20339 +look -20340 +▁bog -20341 +▁Shop -20342 +èle -20343 +▁1841 -20344 +▁Write -20345 +▁Thomson -20346 +▁anatomy -20347 +▁Kön -20348 +▁tin -20349 +▁Hook -20350 +▁Mold -20351 +▁bend -20352 +▁hiatus -20353 +▁Freeway -20354 +▁Virtual -20355 +▁reacted -20356 +▁intermitt -20357 +▁unchanged -20358 +▁seventeenth -20359 +▁trafficking -20360 +UT -20361 +▁UP -20362 +▁Cubs -20363 +▁stab -20364 +▁maker -20365 +▁Fowler -20366 +▁Lionel -20367 +oin -20368 +▁Worlds -20369 +▁satisfying -20370 +ów -20371 +beck -20372 +sten -20373 +▁Okin -20374 +▁Trou -20375 +▁Guill -20376 +▁slender -20377 +▁freezing -20378 +smith -20379 +▁Mell -20380 +▁bulbs -20381 +▁sheer -20382 +▁Montene -20383 +▁academy -20384 +▁advisor -20385 +9). -20386 +vic -20387 +ricken -20388 +▁comet -20389 +▁Welles -20390 +▁5: -20391 +adar -20392 +oney -20393 +▁Rise -20394 +▁expans -20395 +▁hailed -20396 +▁Tonight -20397 +▁coached -20398 +▁relaxed -20399 +top -20400 +nsic -20401 +▁Wess -20402 +ateful -20403 +▁alloy -20404 +▁desires -20405 +▁Cumberland -20406 +▁Psychology -20407 +▁violations -20408 +▁dysfunction -20409 +▁Ely -20410 +▁shouldn -20411 +▁Johannes -20412 +▁enduring -20413 +▁consulted -20414 +▁SK -20415 +▁plague -20416 +▁legends -20417 +▁omitted -20418 +ART -20419 +▁Galaxy -20420 +▁exh -20421 +▁Frost -20422 +▁tombs -20423 +▁Barack -20424 +oran -20425 +▁yeast -20426 +▁Gloria -20427 +▁scarce -20428 +▁generous -20429 +▁separating -20430 +▁supervisor -20431 +▁ling -20432 +▁Extra -20433 +▁comeb -20434 +▁inert -20435 +▁Sánchez -20436 +▁residences -20437 +▁DA -20438 +rill -20439 +▁Cave -20440 +▁Pluto -20441 +▁Shane -20442 +▁decree -20443 +▁Tolkien -20444 +▁ambient -20445 +▁crossover -20446 +▁flowering -20447 +rs -20448 +urai -20449 +▁khi -20450 +▁Parish -20451 +▁Fighting -20452 +▁marching -20453 +▁intervene -20454 +▁Centers -20455 +▁Imagine -20456 +▁kilometre -20457 +▁investigators -20458 +▁Brussels -20459 +▁α -20460 +▁Ork -20461 +imedia -20462 +forcing -20463 +▁resisted -20464 +▁privileges -20465 +ogly -20466 +▁Jets -20467 +initely -20468 +▁Vishnu -20469 +▁fluoride -20470 +▁searched -20471 +▁hepatitis -20472 +▁excavation -20473 +bourg -20474 +▁Poul -20475 +▁Bates -20476 +▁allergies -20477 +▁Rook -20478 +▁grie -20479 +▁Cinema -20480 +▁Effect -20481 +▁Shannon -20482 +▁angular -20483 +▁validity -20484 +▁methodology -20485 +ovny -20486 +▁Duff -20487 +▁Twin -20488 +▁cass -20489 +▁insign -20490 +▁nominal -20491 +▁dissolution -20492 +mb -20493 +▁Fréd -20494 +▁exams -20495 +healthy -20496 +▁quietly -20497 +▁Kee -20498 +ropods -20499 +▁rooted -20500 +▁crowded -20501 +▁Canadiens -20502 +▁salvation -20503 +fat -20504 +gard -20505 +▁shelf -20506 +▁Cities -20507 +▁Duchovny -20508 +▁Sinclair -20509 +▁Dartmouth -20510 +▁marriages -20511 +▁Surviv -20512 +▁Xavier -20513 +▁translations -20514 +▁neo -20515 +third -20516 +▁hood -20517 +▁sinc -20518 +▁Agent -20519 +▁adulthood -20520 +▁exercised -20521 +hardt -20522 +Figure -20523 +▁Trent -20524 +▁leased -20525 +▁freestyle -20526 +▁argu -20527 +▁Beatty -20528 +ilingual -20529 +▁sanctuary -20530 +▁Nottingham -20531 +riz -20532 +▁Zelda -20533 +▁addict -20534 +▁mascul -20535 +▁healthier -20536 +▁institute -20537 +▁vertebrae -20538 +▁Hemisphere -20539 +▁Legislative -20540 +▁commitments -20541 +3). -20542 +pdf -20543 +▁Hir -20544 +▁Pione -20545 +▁twins -20546 +▁Wilder -20547 +▁cosmic -20548 +▁disqual -20549 +▁stunning -20550 +▁governors -20551 +)|| -20552 +gue -20553 +midt -20554 +▁1815 -20555 +▁Pérez -20556 +▁Consid -20557 +▁turtles -20558 +▁Randolph -20559 +▁rewarded -20560 +▁willingness -20561 +▁Venet -20562 +▁Battles -20563 +▁thirteenth -20564 +▁1.5 -20565 +▁JMA -20566 +▁Monthly -20567 +▁sympathy -20568 +▁Returning -20569 +4). -20570 +▁overd -20571 +▁folded -20572 +▁obliged -20573 +▁Dund -20574 +lation -20575 +▁Hamlet -20576 +▁Sidney -20577 +▁amphibious -20578 +▁cylindrical -20579 +▁Ket -20580 +▁Marina -20581 +▁expose -20582 +▁Colbert -20583 +▁financed -20584 +▁stretches -20585 +▁projection -20586 +▁Tah -20587 +▁frans -20588 +▁Coming -20589 +▁Shackleton -20590 +obs -20591 +olding -20592 +▁faint -20593 +ouraged -20594 +▁Speaking -20595 +▁reminded -20596 +▁pharmaceut -20597 +cs -20598 +best -20599 +▁oval -20600 +▁crocod -20601 +▁defect -20602 +itations -20603 +▁bladder -20604 +▁protested -20605 +shaped -20606 +▁Manit -20607 +▁Rules -20608 +▁Siber -20609 +▁ditch -20610 +▁herbs -20611 +▁Colony -20612 +▁remedy -20613 +cestershire -20614 +aldi -20615 +▁splits -20616 +▁advocacy -20617 +▁coincided -20618 +▁celebrities -20619 +še -20620 +▁Rum -20621 +space -20622 +utory -20623 +▁rust -20624 +▁Milky -20625 +▁Touch -20626 +▁mantle -20627 +▁conquer -20628 +▁dispers -20629 +▁villagers -20630 +▁broadcasts -20631 +arb -20632 +▁(3) -20633 +orient -20634 +▁Warrior -20635 +▁tallest -20636 +ôme -20637 +rots -20638 +▁Attack -20639 +▁grasses -20640 +▁alternating -20641 +▁Meteorological -20642 +baum -20643 +istani -20644 +▁Influ -20645 +▁lifting -20646 +▁suffers -20647 +▁digitally -20648 +▁spokesman -20649 +▁distribute -20650 +▁generators -20651 +▁protesters -20652 +nian -20653 +pers -20654 +inished -20655 +▁Roland -20656 +▁Terror -20657 +▁mandate -20658 +▁Knowledge -20659 +utz -20660 +▁2016. -20661 +▁mates -20662 +▁Bottom -20663 +▁canopy -20664 +▁checking -20665 +▁Herzegovina -20666 +▁Glory -20667 +▁Joker -20668 +▁Bolshev -20669 +▁cardiac -20670 +▁seizure -20671 +▁disagree -20672 +▁hampered -20673 +.), -20674 +awak -20675 +▁Boh -20676 +▁mosa -20677 +▁Shakira -20678 +▁persist -20679 +▁vampire -20680 +▁Northumb -20681 +▁Hemingway -20682 +▁Ras -20683 +utable -20684 +▁masks -20685 +▁jacket -20686 +▁Highland -20687 +▁possesses -20688 +▁GA -20689 +ribing -20690 +▁Bullet -20691 +▁Freeman -20692 +▁appetite -20693 +▁Initiative -20694 +▁allegiance -20695 +▁overlooking -20696 +▁Kab -20697 +▁bent -20698 +▁upwards -20699 +▁exaggerated -20700 +Conn -20701 +▁sax -20702 +iliar -20703 +▁Includ -20704 +▁shorts -20705 +▁Warning -20706 +▁Laurence -20707 +But -20708 +▁Shepherd -20709 +▁tutorial -20710 +▁Educational -20711 +▁unm -20712 +▁pall -20713 +▁Antilles -20714 +▁terrorism -20715 +▁Hes -20716 +▁Syrac -20717 +olecular -20718 +▁arguably -20719 +▁hemisphere -20720 +▁preferences -20721 +▁supplemented -20722 +▁Iz -20723 +omme -20724 +▁Jump -20725 +▁Wilf -20726 +▁downloads -20727 +iao -20728 +▁Pond -20729 +▁Willy -20730 +▁trait -20731 +▁memoirs -20732 +▁upright -20733 +▁Citizens -20734 +▁provoked -20735 +aukee -20736 +▁smok -20737 +▁Wilde -20738 +▁Congressional -20739 +whe -20740 +borg -20741 +▁clues -20742 +▁Jeanne -20743 +▁canals -20744 +▁harness -20745 +▁depictions -20746 +shot -20747 +▁460 -20748 +▁Appro -20749 +▁vinyl -20750 +▁Hokies -20751 +▁Sheriff -20752 +▁Voyager -20753 +▁reperto -20754 +▁embraced -20755 +▁synchron -20756 +▁histories -20757 +▁envisioned -20758 +▁beams -20759 +▁exert -20760 +▁Sloven -20761 +▁motors -20762 +▁steals -20763 +▁inspiring -20764 +▁SF -20765 +ibli -20766 +iston -20767 +oubted -20768 +▁Gentle -20769 +▁ecclesiastical -20770 +òb -20771 +antal -20772 +▁echoed -20773 +▁privilege -20774 +▁prevailing -20775 +oj -20776 +▁Nin -20777 +uling -20778 +▁Aval -20779 +▁aunt -20780 +▁Watts -20781 +▁comedian -20782 +▁definite -20783 +▁gradient -20784 +▁charitable -20785 +aji -20786 +▁Tact -20787 +▁devil -20788 +▁shipyard -20789 +▁Individual -20790 +▁gri -20791 +▁til -20792 +▁demise -20793 +▁domains -20794 +▁retains -20795 +▁consistency -20796 +▁Ace -20797 +ansen -20798 +▁lucky -20799 +▁Madame -20800 +▁Styles -20801 +▁prayers -20802 +vye -20803 +▁Xen -20804 +ingle -20805 +▁tast -20806 +▁cuisine -20807 +▁overweight -20808 +▁hostilities -20809 +▁oun -20810 +▁iPad -20811 +▁Silva -20812 +▁flames -20813 +▁Doggett -20814 +▁Nero -20815 +letter -20816 +lywood -20817 +▁Aston -20818 +ventional -20819 +▁Carnegie -20820 +▁Christina -20821 +▁representations -20822 +▁apps -20823 +▁Innov -20824 +tr -20825 +oso -20826 +▁50% -20827 +▁Ernst -20828 +▁Nicol -20829 +▁monkeys -20830 +▁Regarding -20831 +▁wip -20832 +chain -20833 +enzie -20834 +nance -20835 +▁Lyon -20836 +▁foli -20837 +▁Vatic -20838 +▁rewards -20839 +▁anticipation -20840 +umen -20841 +▁satire -20842 +▁Ricardo -20843 +▁shooter -20844 +▁wrestler -20845 +▁campaigned -20846 +▁disagreement -20847 +▁Nos -20848 +▁XII -20849 +aspor -20850 +cephal -20851 +▁assisting -20852 +▁appointments -20853 +rella -20854 +▁Champ -20855 +▁pix -20856 +▁owed -20857 +▁Auburn -20858 +▁sanction -20859 +▁twe -20860 +▁brew -20861 +▁musk -20862 +▁flora -20863 +▁Covent -20864 +▁diamonds -20865 +▁bombarded -20866 +▁Legislature -20867 +Bl -20868 +alan -20869 +▁1835 -20870 +▁Appe -20871 +▁Forum -20872 +▁Libert -20873 +▁besieged -20874 +▁Sacrament -20875 +▁dismissal -20876 +cill -20877 +rongh -20878 +▁Gaul -20879 +▁Irene -20880 +▁Satan -20881 +▁Uncle -20882 +▁locks -20883 +▁souls -20884 +▁hatred -20885 +▁bron -20886 +▁Graves -20887 +▁fragile -20888 +▁proving -20889 +▁Belgrade -20890 +▁Syracuse -20891 +)| -20892 +also -20893 +▁1839 -20894 +▁Carm -20895 +▁Memphis -20896 +▁→ -20897 +eye -20898 +gado -20899 +▁Gob -20900 +▁Lob -20901 +erative -20902 +▁fuselage -20903 +Ind -20904 +note -20905 +marks -20906 +ubMed -20907 +▁cites -20908 +▁Chiefs -20909 +▁Silvia -20910 +▁124 -20911 +▁tuned -20912 +▁banner -20913 +▁affiliate -20914 +▁Mec -20915 +orthy -20916 +▁1819 -20917 +▁Lass -20918 +▁collar -20919 +▁Wimbledon -20920 +▁incumbent -20921 +▁passionate -20922 +-11 -20923 +▁MR -20924 +elius -20925 +▁intu -20926 +▁Barrow -20927 +▁Telugu -20928 +▁bachelor -20929 +▁comeback -20930 +▁dividing -20931 +▁Nom -20932 +▁billed -20933 +▁hungry -20934 +▁Goldman -20935 +▁cartoons -20936 +▁exploited -20937 +▁Cosm -20938 +▁horr -20939 +▁logs -20940 +▁Sally -20941 +▁disco -20942 +▁fleeing -20943 +▁diarrhea -20944 +▁Chemistry -20945 +▁highlighting -20946 +▁administrators -20947 +▁specifications -20948 +▁Bombay -20949 +.8 -20950 +▁Saff -20951 +▁tops -20952 +▁Alleg -20953 +▁Sales -20954 +herical -20955 +overing -20956 +▁invade -20957 +▁pencil -20958 +▁endured -20959 +▁secrets -20960 +▁Ottomans -20961 +▁Animation -20962 +▁Pakistani -20963 +▁collectors -20964 +▁attractions -20965 +▁14, -20966 +▁oton -20967 +▁racist -20968 +▁routinely -20969 +▁merchandise -20970 +Neill -20971 +▁venom -20972 +fork -20973 +mium -20974 +▁Mercy -20975 +▁aston -20976 +▁norms -20977 +▁hunted -20978 +esterday -20979 +▁Martine -20980 +▁plaster -20981 +▁Commercial -20982 +▁MGM -20983 +▁grip -20984 +access -20985 +rusted -20986 +▁Males -20987 +▁Katherine -20988 +▁coronation -20989 +dad -20990 +▁cake -20991 +▁heel -20992 +▁Carte -20993 +▁interrupt -20994 +▁retreating -20995 +▁Historically -20996 +▁Lü -20997 +▁Bly -20998 +▁Maz -20999 +▁jar -21000 +▁Brom -21001 +▁Alain -21002 +▁digging -21003 +▁headaches -21004 +▁utilizing -21005 +▁Ambassador -21006 +▁morphology -21007 +▁philosophers -21008 +▁Belf -21009 +▁Khrush -21010 +▁disreg -21011 +▁Combined -21012 +▁proposes -21013 +▁courtyard -21014 +▁weaknesses -21015 +ohan -21016 +phae -21017 +epers -21018 +▁Casc -21019 +▁Could -21020 +▁duplic -21021 +▁outpost -21022 +▁Blackburn -21023 +▁Hutchinson -21024 +▁millimeters -21025 +▁480 -21026 +▁charm -21027 +▁insec -21028 +▁Temper -21029 +▁Metroid -21030 +▁breathe -21031 +▁analyzing -21032 +▁exclusion -21033 +▁Moff -21034 +▁Bohem -21035 +▁Silent -21036 +▁blades -21037 +▁Clarkson -21038 +▁Czechosl -21039 +▁surfaced -21040 +▁oub -21041 +▁Joey -21042 +▁sore -21043 +▁Noble -21044 +▁drill -21045 +▁gason -21046 +▁Sandra -21047 +▁dancer -21048 +▁shores -21049 +▁McLaren -21050 +▁Pauline -21051 +▁melodic -21052 +▁Behavior -21053 +▁consoles -21054 +▁illusion -21055 +▁muscular -21056 +▁Hep -21057 +▁kom -21058 +▁Sina -21059 +itches -21060 +▁Thing -21061 +▁scarc -21062 +emption -21063 +▁Summit -21064 +▁recruits -21065 +ismatic -21066 +▁spends -21067 +▁conning -21068 +onte -21069 +type -21070 +▁205 -21071 +▁1838 -21072 +▁Revel -21073 +▁grasp -21074 +edience -21075 +▁Orkney -21076 +▁Seventh -21077 +iza -21078 +urers -21079 +▁Pere -21080 +▁lips -21081 +▁Aberde -21082 +▁ensued -21083 +▁Miranda -21084 +▁Townsend -21085 +▁imagined -21086 +▁prolific -21087 +▁Khrushchev -21088 +▁conditioning -21089 +dig -21090 +▁ensures -21091 +▁lineage -21092 +▁Brittany -21093 +LS -21094 +nie -21095 +uta -21096 +▁305 -21097 +▁heaviest -21098 +▁longtime -21099 +PP -21100 +▁Jab -21101 +▁Sev -21102 +▁Nest -21103 +▁Booker -21104 +▁Horror -21105 +▁Zagreb -21106 +▁Resolution -21107 +KO -21108 +▁pase -21109 +▁brack -21110 +otechnology -21111 +base -21112 +▁Quant -21113 +▁oubyen -21114 +▁foremost -21115 +▁searches -21116 +▁confronts -21117 +ajo -21118 +▁DM -21119 +ongs -21120 +▁mul -21121 +▁Gott -21122 +illary -21123 +powder -21124 +▁Cunning -21125 +▁surname -21126 +▁pathogens -21127 +▁suppressed -21128 +▁disappointing -21129 +vara -21130 +ammed -21131 +orical -21132 +▁synth -21133 +▁manman -21134 +▁rented -21135 +▁folklore -21136 +▁prestige -21137 +anj -21138 +▁Rican -21139 +▁difize -21140 +ynthesis -21141 +▁downward -21142 +▁headache -21143 +▁RF -21144 +iciary -21145 +▁Europa -21146 +▁Midway -21147 +▁tricks -21148 +▁senaris -21149 +▁Smithson -21150 +▁mounting -21151 +▁Structure -21152 +▁clearance -21153 +▁intensification -21154 +resc -21155 +▁careg -21156 +▁paran -21157 +▁inexper -21158 +▁recount -21159 +▁Chau -21160 +▁Rout -21161 +▁2011, -21162 +▁Raven -21163 +▁Theod -21164 +▁Tudor -21165 +▁derivative -21166 +▁Dé -21167 +ermo -21168 +▁lapt -21169 +▁puff -21170 +▁Instr -21171 +▁Exeter -21172 +▁Naples -21173 +▁gently -21174 +▁listened -21175 +▁illustrates -21176 +udge -21177 +otional -21178 +▁sezon -21179 +▁ladies -21180 +▁pottery -21181 +▁foraging -21182 +exts -21183 +lyss -21184 +▁moons -21185 +estinal -21186 +section -21187 +▁wherever -21188 +onders -21189 +▁humid -21190 +▁protoc -21191 +▁Kannada -21192 +▁posters -21193 +▁resembled -21194 +▁Ree -21195 +▁pac -21196 +▁1831 -21197 +glades -21198 +▁eighty -21199 +▁universally -21200 +▁Zach -21201 +▁ital -21202 +▁Brett -21203 +▁wrist -21204 +▁lifespan -21205 +▁cos -21206 +▁nause -21207 +▁wherein -21208 +▁unexpectedly -21209 +his -21210 +▁Guer -21211 +▁Pill -21212 +skirts -21213 +▁cheek -21214 +▁reefs -21215 +▁traps -21216 +▁Kapoor -21217 +▁Empress -21218 +▁novelist -21219 +▁Bono -21220 +ockets -21221 +▁2012, -21222 +▁Clare -21223 +▁trash -21224 +▁Patients -21225 +▁suspects -21226 +▁fisheries -21227 +ulance -21228 +▁tones -21229 +▁upheld -21230 +▁Matilda -21231 +▁outrage -21232 +▁improper -21233 +▁Byzantines -21234 +▁Regardless -21235 +irling -21236 +▁Robot -21237 +▁Walsh -21238 +▁Farmer -21239 +▁Sinatra -21240 +▁greeted -21241 +▁responds -21242 +TO -21243 +▁warn -21244 +waukee -21245 +▁Fruit -21246 +▁wolves -21247 +▁councils -21248 +lov -21249 +▁Mare -21250 +▁Pend -21251 +▁Said -21252 +▁Issue -21253 +▁Factory -21254 +▁Leipzig -21255 +mentioned -21256 +▁Giovanni -21257 +▁benefited -21258 +▁ingredient -21259 +!! -21260 +▁Noah -21261 +▁hasn -21262 +▁Helena -21263 +▁otonòm -21264 +▁storey -21265 +▁Titanic -21266 +▁pharmac -21267 +▁diverted -21268 +▁reasonably -21269 +chus -21270 +yards -21271 +flower -21272 +▁fishermen -21273 +▁restriction -21274 +birth -21275 +ivores -21276 +opathy -21277 +umbering -21278 +▁Panthers -21279 +▁antibiotic -21280 +atl -21281 +dez -21282 +onnie -21283 +▁Albion -21284 +▁Prague -21285 +▁harmon -21286 +▁impose -21287 +▁rankings -21288 +eno -21289 +jou -21290 +▁129 -21291 +▁outn -21292 +▁Cotton -21293 +▁Fellow -21294 +▁janvye -21295 +▁suprem -21296 +▁Goodman -21297 +▁strongh -21298 +▁Everglades -21299 +▁repertoire -21300 +▁144 -21301 +▁Sale -21302 +▁pile -21303 +▁Rebell -21304 +▁lovers -21305 +▁Charleston -21306 +ouard -21307 +▁Myth -21308 +▁frost -21309 +▁airports -21310 +▁drilling -21311 +▁Ng -21312 +ikèn -21313 +isha -21314 +▁1775 -21315 +ifully -21316 +▁Caucas -21317 +▁pinned -21318 +ondition -21319 +▁sponsor -21320 +▁jw -21321 +▁absurd -21322 +raviolet -21323 +▁exported -21324 +▁triggers -21325 +▁dye -21326 +▁Crosby -21327 +▁Internal -21328 +▁parental -21329 +▁template -21330 +▁outskirts -21331 +▁WA -21332 +▁kar -21333 +heart -21334 +▁Juda -21335 +▁seldom -21336 +▁ballads -21337 +▁donation -21338 +▁destinations -21339 +▁inconsistent -21340 +▁gloss -21341 +▁Dreams -21342 +▁bathroom -21343 +▁contexts -21344 +▁ancestral -21345 +▁commissioner -21346 +iae -21347 +ylene -21348 +quality -21349 +▁Android -21350 +atro -21351 +ouss -21352 +▁1842 -21353 +▁Lance -21354 +▁outflow -21355 +▁rhythms -21356 +▁warehouse -21357 +▁epile -21358 +▁Soundtrack -21359 +wyn -21360 +▁HS -21361 +▁bricks -21362 +▁evangel -21363 +bard -21364 +▁Dang -21365 +▁artery -21366 +▁Randall -21367 +DOT -21368 +▁Volt -21369 +▁gale -21370 +▁buttons -21371 +▁Veterans -21372 +▁850 -21373 +▁Excell -21374 +▁Airways -21375 +▁Egyptians -21376 +▁simplified -21377 +▁homosexuality -21378 +undo -21379 +▁Built -21380 +▁discs -21381 +▁Telesc -21382 +▁Smoking -21383 +▁Matthews -21384 +pendicular -21385 +▁gem -21386 +alley -21387 +fields -21388 +▁Alger -21389 +▁teyat -21390 +▁Bahrain -21391 +▁Glacier -21392 +▁lithium -21393 +▁fò -21394 +▁380 -21395 +▁anest -21396 +▁femme -21397 +▁reliance -21398 +▁showcase -21399 +▁OR -21400 +pill -21401 +proof -21402 +tingu -21403 +▁Huff -21404 +▁pant -21405 +▁indul -21406 +ocative -21407 +▁copied -21408 +▁foliage -21409 +▁archives -21410 +▁archipelago -21411 +▁lam -21412 +▁emblem -21413 +▁vigorous -21414 +▁accession -21415 +▁dictionary -21416 +▁suppression -21417 +▁neurological -21418 +gil -21419 +▁idol -21420 +▁Photo -21421 +▁Rising -21422 +▁Trevor -21423 +▁holder -21424 +▁Criminal -21425 +▁Northeast -21426 +▁synagogue -21427 +far -21428 +fes -21429 +▁Cage -21430 +▁Luck -21431 +▁reint -21432 +▁chicks -21433 +▁fracture -21434 +▁medicinal -21435 +gets -21436 +stick -21437 +▁Hert -21438 +▁Carlo -21439 +▁facto -21440 +▁Initial -21441 +▁chimney -21442 +▁Venezuela -21443 +▁Reformation -21444 +▁magnificent -21445 +▁Clem -21446 +▁Foss -21447 +▁Fitzg -21448 +▁Barker -21449 +▁Magnus -21450 +▁Appeals -21451 +▁beloved -21452 +▁augmented -21453 +▁starboard -21454 +ondo -21455 +▁cows -21456 +▁totals -21457 +▁fountain -21458 +▁trustees -21459 +identified -21460 +▁compelled -21461 +▁recruitment -21462 +▁transaction -21463 +▁16, -21464 +▁Tsar -21465 +▁pools -21466 +▁10,000 -21467 +▁dialog -21468 +▁anybody -21469 +izational -21470 +▁tuberculosis -21471 +▁Kw -21472 +▁clot -21473 +▁trunc -21474 +▁Monkey -21475 +▁Sophia -21476 +▁convex -21477 +▁unbeat -21478 +iplinary -21479 +▁gunfire -21480 +▁pension -21481 +▁Gilm -21482 +▁pope -21483 +▁2009, -21484 +▁Martí -21485 +lightenment -21486 +▁recognizing -21487 +-16 -21488 +▁410 -21489 +▁Scale -21490 +▁vigil -21491 +▁Create -21492 +▁alumni -21493 +▁Britann -21494 +▁Morocco -21495 +▁gesture -21496 +▁portfol -21497 +▁delivers -21498 +▁finances -21499 +▁astronomer -21500 +▁respondents -21501 +oop -21502 +ourg -21503 +▁Milk -21504 +▁burg -21505 +itudinal -21506 +▁strained -21507 +▁translate -21508 +anya -21509 +grat -21510 +▁MCC -21511 +iasis -21512 +▁Border -21513 +▁demons -21514 +▁repuls -21515 +▁plateau -21516 +▁Religion -21517 +▁licensing -21518 +lean -21519 +will -21520 +▁Tip -21521 +▁Yuc -21522 +▁caf -21523 +vance -21524 +▁1825 -21525 +▁Eden -21526 +▁Loss -21527 +▁deaf -21528 +ectors -21529 +waters -21530 +worthy -21531 +▁plaza -21532 +▁recipe -21533 +▁coinage -21534 +▁lowering -21535 +▁explosives -21536 +▁bug -21537 +▁Hits -21538 +▁odor -21539 +▁rall -21540 +▁picks -21541 +▁offerings -21542 +iyè -21543 +hole -21544 +▁SEC -21545 +▁Kell -21546 +▁Ruby -21547 +▁Siege -21548 +▁catalogue -21549 +▁Parliamentary -21550 +▁bunch -21551 +▁rumours -21552 +▁proclaim -21553 +▁treaties -21554 +5) -21555 +▁Dram -21556 +▁nave -21557 +▁Threat -21558 +agements -21559 +▁carbohydrates -21560 +ysics -21561 +▁exiled -21562 +▁outright -21563 +▁Reviewers -21564 +▁westbound -21565 +▁exceptionally -21566 +▁installations -21567 +ís -21568 +iaz -21569 +▁Phel -21570 +▁cracks -21571 +▁Persona -21572 +▁photographed -21573 +fal -21574 +▁173 -21575 +▁chat -21576 +▁Elvis -21577 +▁Torch -21578 +▁shrubs -21579 +▁Théâtre -21580 +▁Interactive -21581 +▁Tz -21582 +iola -21583 +icates -21584 +▁Lands -21585 +▁boots -21586 +▁stricken -21587 +ío -21588 +▁1829 -21589 +▁Himm -21590 +▁Weston -21591 +oubtedly -21592 +▁Stanton -21593 +▁Available -21594 +▁Georgetown -21595 +▁interchang -21596 +aje -21597 +igny -21598 +▁18, -21599 +▁afore -21600 +▁apost -21601 +▁mercy -21602 +ourning -21603 +▁Relief -21604 +▁culminating -21605 +▁schizophren -21606 +jm -21607 +▁SW -21608 +▁Nit -21609 +ienced -21610 +▁Byron -21611 +▁Sanders -21612 +▁anymore -21613 +▁corresponds -21614 +▁WS -21615 +onut -21616 +opic -21617 +▁jun -21618 +ombat -21619 +▁Chat -21620 +▁Hiros -21621 +▁incentives -21622 +▁Yar -21623 +▁Hitch -21624 +▁retal -21625 +engeance -21626 +▁timeline -21627 +▁elongated -21628 +'' -21629 +brate -21630 +▁bast -21631 +▁sandy -21632 +▁nod -21633 +alach -21634 +aryn -21635 +▁Rit -21636 +enium -21637 +▁flaws -21638 +▁hards -21639 +▁countless -21640 +▁optimistic -21641 +▁unfinished -21642 +▁dreadnought -21643 +wal -21644 +▁IF -21645 +▁Era -21646 +▁Gear -21647 +▁fork -21648 +▁noon -21649 +▁uniqu -21650 +▁crashes -21651 +▁kidneys -21652 +▁modules -21653 +▁concurrently -21654 +▁functionality -21655 +▁rack -21656 +▁whis -21657 +▁resent -21658 +▁remaster -21659 +▁Tuls -21660 +imetime -21661 +▁Primetime -21662 +▁discourse -21663 +▁preschool -21664 +▁pedestrian -21665 +osc -21666 +owship -21667 +▁dolphins -21668 +▁dwelling -21669 +▁♭ -21670 +▁Marin -21671 +▁Vander -21672 +▁refurb -21673 +▁denounced -21674 +▁retention -21675 +ête -21676 +eking -21677 +▁literal -21678 +▁escaping -21679 +▁1814 -21680 +▁void -21681 +▁generates -21682 +▁harvested -21683 +▁chromosome -21684 +▁undertaking -21685 +▁proportional -21686 +encia -21687 +itius -21688 +▁1833 -21689 +finger -21690 +▁cohes -21691 +▁subpl -21692 +▁Mozamb -21693 +▁Shirley -21694 +▁fevriye -21695 +icultural -21696 +▁homework -21697 +▁Expressway -21698 +film -21699 +ummy -21700 +▁Sof -21701 +annah -21702 +▁bubb -21703 +iating -21704 +itives -21705 +▁Romeo -21706 +▁Wisden -21707 +▁pandan -21708 +▁implant -21709 +▁striker -21710 +▁textile -21711 +▁fertilizer -21712 +Ds -21713 +ecd -21714 +▁Wyn -21715 +▁Kemp -21716 +▁noir -21717 +▁poul -21718 +▁Schne -21719 +▁Til -21720 +▁Baja -21721 +▁evid -21722 +▁Rockef -21723 +▁overhe -21724 +▁Frédéric -21725 +▁intensify -21726 +▁advisories -21727 +▁Catholicism -21728 +▁225 -21729 +▁Zhou -21730 +▁Caliph -21731 +▁Slayer -21732 +▁Utt -21733 +▁1843 -21734 +▁Macdon -21735 +▁Paradise -21736 +▁cerebral -21737 +▁papa -21738 +▁2009. -21739 +▁Broken -21740 +▁rework -21741 +▁examines -21742 +▁235 -21743 +grims -21744 +▁bells -21745 +▁staging -21746 +▁weights -21747 +▁physiological -21748 +fus -21749 +▁nec -21750 +▁Mana -21751 +govern -21752 +istice -21753 +▁apparatus -21754 +▁Presbyterian -21755 +▁Prayer -21756 +▁Dru -21757 +▁orch -21758 +unders -21759 +▁carcin -21760 +▁framed -21761 +▁nuclei -21762 +▁spells -21763 +▁Clarence -21764 +▁diagnose -21765 +▁harvesting -21766 +▁Yuk -21767 +antha -21768 +▁gotten -21769 +▁neglig -21770 +▁paradox -21771 +▁Bismarck -21772 +arro -21773 +▁Gul -21774 +▁scout -21775 +▁Million -21776 +▁advancement -21777 +▁conferences -21778 +▁disappearance -21779 +▁iOS -21780 +▁indo -21781 +▁Sounds -21782 +▁sophom -21783 +▁likened -21784 +▁divisional -21785 +▁engagements -21786 +▁Northumberland -21787 +▁Bf -21788 +▁Arj -21789 +▁Vamp -21790 +▁Levine -21791 +▁Sesame -21792 +▁Speech -21793 +▁overthrow -21794 +fle -21795 +▁Rhe -21796 +▁Eval -21797 +prints -21798 +manship -21799 +▁Hubble -21800 +▁sighted -21801 +▁Document -21802 +▁Cunningham -21803 +ija -21804 +akov -21805 +herly -21806 +▁adjo -21807 +▁Chess -21808 +▁Eliot -21809 +▁borne -21810 +▁focal -21811 +▁Nutrition -21812 +▁noticeable -21813 +▁1810 -21814 +▁blew -21815 +▁Himal -21816 +▁fauna -21817 +▁Ladies -21818 +▁Mickey -21819 +▁Scouts -21820 +▁Galileo -21821 +▁Romantic -21822 +▁criticizing -21823 +antes -21824 +▁Slam -21825 +▁Bryant -21826 +▁denial -21827 +▁hyphae -21828 +▁Advisory -21829 +▁observes -21830 +▁Wanderers -21831 +▁archaeologists -21832 +▁dip -21833 +▁Torn -21834 +▁worsh -21835 +▁Highlands -21836 +▁pediatric -21837 +▁predictable -21838 +▁TR -21839 +inge -21840 +unda -21841 +▁Alg -21842 +▁Cull -21843 +▁Nikol -21844 +▁runoff -21845 +▁intrins -21846 +▁Thanksgiving -21847 +▁Taft -21848 +▁extras -21849 +▁centred -21850 +▁sickness -21851 +▁Municipal -21852 +vre -21853 +fill -21854 +▁Kyl -21855 +frame -21856 +▁unac -21857 +▁Twilight -21858 +kov -21859 +ounty -21860 +▁Resc -21861 +▁swamp -21862 +▁Factor -21863 +▁refugee -21864 +ardin -21865 +person -21866 +▁Manual -21867 +▁Winnipe -21868 +▁imports -21869 +▁depended -21870 +▁priorities -21871 +gain -21872 +owitz -21873 +▁Stoke -21874 +▁secre -21875 +▁corpse -21876 +▁bizarre -21877 +▁conspic -21878 +▁indicators -21879 +---- -21880 +▁ego -21881 +▁Beta -21882 +▁Erin -21883 +▁pert -21884 +inement -21885 +▁Simple -21886 +▁teamed -21887 +▁Getting -21888 +▁MacDonald -21889 +▁Undertaker -21890 +▁transcript -21891 +him -21892 +uve -21893 +▁Vocal -21894 +▁Playing -21895 +▁Whereas -21896 +▁Rodriguez -21897 +▁canvas -21898 +▁uncont -21899 +▁approve -21900 +▁initiate -21901 +▁detention -21902 +▁eastbound -21903 +▁invite -21904 +▁ambitions -21905 +▁concurrency -21906 +▁Dix -21907 +ospace -21908 +▁Herod -21909 +▁mason -21910 +▁Corinth -21911 +▁Everett -21912 +▁Sabbath -21913 +▁fulfilled -21914 +▁adequately -21915 +uh -21916 +amon -21917 +▁punt -21918 +▁Match -21919 +▁respects -21920 +▁groundwater -21921 +▁transferring -21922 +good -21923 +▁1780 -21924 +▁coding -21925 +▁dissem -21926 +▁Antio -21927 +▁brave -21928 +artments -21929 +▁Albania -21930 +intestinal -21931 +▁endurance -21932 +▁requesting -21933 +ées -21934 +▁SO -21935 +shop -21936 +▁groom -21937 +▁unsure -21938 +▁depleted -21939 +▁evolving -21940 +▁Milwaukee -21941 +▁broadside -21942 +▁realizing -21943 +▁masterpiece -21944 +▁simultaneous -21945 +▁acidic -21946 +▁disorgan -21947 +▁precedent -21948 +▁tributary -21949 +▁triangular -21950 +▁RA -21951 +▁17, -21952 +▁openings -21953 +▁subsidies -21954 +▁camouflage -21955 +▁pollutants -21956 +icho -21957 +ithm -21958 +▁cockpit -21959 +▁efficacy -21960 +▁Cornwallis -21961 +▁lighthouse -21962 +▁intersecting -21963 +▁accomplishments -21964 +▁Tac -21965 +▁1799 -21966 +▁Paragu -21967 +ablished -21968 +▁Okinawa -21969 +▁Proceed -21970 +▁analogy -21971 +▁outbreaks -21972 +▁Continuing -21973 +▁instituted -21974 +▁compromised -21975 +▁variability -21976 +▁correspondent -21977 +▁ˈ -21978 +uffs -21979 +▁Petit -21980 +▁Wheel -21981 +▁excer -21982 +▁unrel -21983 +▁Majesty -21984 +▁reigning -21985 +▁Ukrainian -21986 +▁repeating -21987 +▁(16 -21988 +▁AIF -21989 +▁Noel -21990 +▁fost -21991 +▁Ganes -21992 +▁Would -21993 +Farlane -21994 +iferous -21995 +▁stalled -21996 +▁stripes -21997 +▁hPa -21998 +▁Chir -21999 +▁Ahmad -22000 +▁lesions -22001 +▁Material -22002 +▁monopoly -22003 +▁discretion -22004 +▁Herc -22005 +▁crick -22006 +▁Wemble -22007 +▁Landing -22008 +▁pianist -22009 +▁servers -22010 +▁kilogram -22011 +▁compulsory -22012 +▁defendants -22013 +▁sacrifices -22014 +ARS -22015 +club -22016 +▁Wet -22017 +▁rans -22018 +▁Mortal -22019 +▁affirm -22020 +▁rowing -22021 +▁Wembley -22022 +▁extingu -22023 +▁Cromwell -22024 +▁Companies -22025 +igi -22026 +you -22027 +inar -22028 +▁149 -22029 +agher -22030 +opotam -22031 +▁Brent -22032 +▁inputs -22033 +▁Compared -22034 +▁traumatic -22035 +lynn -22036 +oglob -22037 +uties -22038 +▁Peggy -22039 +▁memorials -22040 +boys -22041 +Frans -22042 +▁1801 -22043 +▁Bian -22044 +ouncing -22045 +▁superb -22046 +▁Results -22047 +itness -22048 +▁bride -22049 +▁Heroes -22050 +▁Monter -22051 +▁elegant -22052 +▁garbage -22053 +▁numbering -22054 +▁symbolism -22055 +▁Illustrated -22056 +▁13, -22057 +▁Humphrey -22058 +▁Winnipeg -22059 +▁homeland -22060 +▁anthology -22061 +▁millennium -22062 +1/ -22063 +▁(8 -22064 +▁asp -22065 +▁Hole -22066 +▁sins -22067 +▁Spike -22068 +▁bowel -22069 +▁Memory -22070 +▁Motors -22071 +▁blowing -22072 +▁logging -22073 +▁pumping -22074 +▁taxation -22075 +▁academics -22076 +▁theological -22077 +▁standardized -22078 +EV -22079 +▁Ae -22080 +▁DR -22081 +oused -22082 +▁fuck -22083 +▁geology -22084 +▁wrought -22085 +▁upgrades -22086 +▁Achievement -22087 +oku -22088 +▁Indo -22089 +▁cripp -22090 +▁contempt -22091 +▁celestial -22092 +▁Smithsonian -22093 +arel -22094 +▁Eri -22095 +▁merge -22096 +▁Divisions -22097 +▁Mathematics -22098 +gre -22099 +opa -22100 +▁Muss -22101 +▁jumps -22102 +▁Railways -22103 +▁liability -22104 +▁Rockefeller -22105 +▁20, -22106 +araoh -22107 +▁Loyal -22108 +▁Twelve -22109 +▁gifted -22110 +▁curtain -22111 +▁symmetry -22112 +▁deposition -22113 +▁Mao -22114 +amboo -22115 +aspora -22116 +▁squir -22117 +▁Devils -22118 +▁Madras -22119 +▁nursery -22120 +▁remixes -22121 +▁Dominique -22122 +▁Das -22123 +▁Olga -22124 +▁Ride -22125 +illard -22126 +▁Shell -22127 +▁packs -22128 +▁Estate -22129 +▁fortunes -22130 +▁Restoration -22131 +def -22132 +▁Ya -22133 +vana -22134 +▁Arr -22135 +ilage -22136 +▁imply -22137 +▁motifs -22138 +▁temporal -22139 +▁Jol -22140 +▁USSR -22141 +▁cues -22142 +▁Klein -22143 +▁amended -22144 +▁biomass -22145 +▁identities -22146 +gem -22147 +pret -22148 +▁Ambro -22149 +▁Casey -22150 +▁Libya -22151 +▁bored -22152 +▁citation -22153 +▁hereditary -22154 +etus -22155 +▁flux -22156 +▁2015, -22157 +▁Judith -22158 +▁Phantom -22159 +▁finishes -22160 +▁Economics -22161 +▁petroleum -22162 +76 -22163 +▁Pòt -22164 +▁amass -22165 +▁hydraulic -22166 +▁disturbing -22167 +omac -22168 +▁215 -22169 +▁Pav -22170 +▁1809 -22171 +▁Poles -22172 +▁knees -22173 +▁Active -22174 +▁Grammar -22175 +▁elastic -22176 +▁britanik -22177 +▁appropriately -22178 +▁Erik -22179 +▁mound -22180 +▁cliffs -22181 +▁neuros -22182 +▁reunion -22183 +▁collided -22184 +▁Ce -22185 +arine -22186 +redict -22187 +▁Finding -22188 +▁useless -22189 +▁incoming -22190 +▁kidnapped -22191 +▁competitor -22192 +▁unanimously -22193 +▁FS -22194 +acha -22195 +▁Alm -22196 +▁Bagh -22197 +▁Lindsay -22198 +▁Habsburg -22199 +▁(198 -22200 +tering -22201 +illaume -22202 +▁Sitwèb -22203 +▁localized -22204 +leigh -22205 +▁reck -22206 +▁Breck -22207 +▁Tracks -22208 +▁faults -22209 +▁Manitoba -22210 +▁acquaint -22211 +▁counterattack -22212 +▁Mt -22213 +▁qui -22214 +▁Gibbs -22215 +▁criticisms -22216 +▁relegation -22217 +▁prospective -22218 +▁stereotypes -22219 +eroy -22220 +thia -22221 +pless -22222 +▁conson -22223 +▁lethal -22224 +ribes -22225 +▁Easy -22226 +▁donor -22227 +▁Borneo -22228 +▁Eminem -22229 +▁chooses -22230 +▁backward -22231 +▁Suk -22232 +▁pran -22233 +▁unto -22234 +▁enjoys -22235 +▁explorer -22236 +▁feasible -22237 +▁Macdonald -22238 +▁goaltender -22239 +▁stimulation -22240 +ycle -22241 +▁Bede -22242 +▁Chak -22243 +esterly -22244 +▁Clayton -22245 +▁Sarawak -22246 +▁Bertrand -22247 +▁Fitzgerald -22248 +▁Marlborough -22249 +▁volunteered -22250 +▁environmentally -22251 +▁Mys -22252 +▁Helm -22253 +▁Schu -22254 +sequent -22255 +treated -22256 +▁ambush -22257 +▁divert -22258 +▁equator -22259 +▁reptiles -22260 +▁assessing -22261 +▁geometric -22262 +▁travelers -22263 +▁stakeholders -22264 +▁transporting -22265 +▁‐ -22266 +nell -22267 +▁worm -22268 +▁2005, -22269 +▁Frans -22270 +▁Horiz -22271 +▁nineteen -22272 +▁Patterson -22273 +▁inception -22274 +▁recession -22275 +▁NA -22276 +▁hymn -22277 +▁noct -22278 +▁Paula -22279 +▁Wilkinson -22280 +▁convenience -22281 +▁Gé -22282 +▁Eat -22283 +▁Mog -22284 +▁Bedford -22285 +▁invalid -22286 +▁randomly -22287 +▁retrospective -22288 +ián -22289 +▁pie -22290 +▁Tate -22291 +▁gonna -22292 +▁Horses -22293 +▁Santos -22294 +▁Chaplin -22295 +▁biochem -22296 +▁theatres -22297 +▁barometric -22298 +ooney -22299 +▁snap -22300 +▁2008, -22301 +▁gamma -22302 +▁Delgado -22303 +▁membranes -22304 +scape -22305 +▁Stam -22306 +▁puppet -22307 +▁turkey -22308 +▁nowhere -22309 +▁disciples -22310 +▁Geological -22311 +▁Myers -22312 +▁waist -22313 +verages -22314 +▁squares -22315 +▁ambiguous -22316 +phs -22317 +onny -22318 +urus -22319 +▁Lok -22320 +▁Rex -22321 +notes -22322 +▁adject -22323 +▁finite -22324 +▁microw -22325 +▁wheelchair -22326 +owl -22327 +rar -22328 +▁1789 -22329 +▁cups -22330 +▁Atlas -22331 +▁rolls -22332 +▁Krusty -22333 +▁Creation -22334 +▁critique -22335 +▁enhancing -22336 +▁eponymous -22337 +▁prohibition -22338 +▁Azt -22339 +reras -22340 +▁Concord -22341 +▁fixture -22342 +▁diffusion -22343 +▁impairment -22344 +▁coordinates -22345 +oser -22346 +▁Lup -22347 +▁americ -22348 +▁alcoholic -22349 +▁spherical -22350 +▁Population -22351 +▁insulation -22352 +ekt -22353 +▁IOC -22354 +opsis -22355 +▁Boris -22356 +▁Macbeth -22357 +▁Articles -22358 +▁Rebellion -22359 +rices -22360 +▁Pist -22361 +▁inad -22362 +▁McCle -22363 +ository -22364 +▁advise -22365 +▁unbeaten -22366 +▁Macedonia -22367 +uga -22368 +uria -22369 +▁Hair -22370 +▁Lect -22371 +▁Alcoh -22372 +▁disintegr -22373 +ighty -22374 +▁Kawolin -22375 +▁Aberdeen -22376 +adh -22377 +▁este -22378 +gement -22379 +▁Grass -22380 +▁Coleman -22381 +▁Eurasian -22382 +▁differentiate -22383 +▁encouragement -22384 +▁neighbourhood -22385 +▁Tin -22386 +▁towed -22387 +▁Keynes -22388 +▁Vatican -22389 +▁Africans -22390 +▁Middleton -22391 +▁chromosomes -22392 +▁comparative -22393 +unn -22394 +▁iod -22395 +▁Gamb -22396 +▁Mini -22397 +▁rested -22398 +▁Allison -22399 +▁Revival -22400 +▁splitting -22401 +▁journalism -22402 +▁manipulation -22403 +ilo -22404 +cats -22405 +hrer -22406 +▁riv -22407 +▁neon -22408 +▁taxi -22409 +abetic -22410 +▁2008. -22411 +▁deprived -22412 +iu -22413 +apo -22414 +grove -22415 +▁Dogs -22416 +▁Grim -22417 +▁congrat -22418 +▁needing -22419 +▁paternal -22420 +▁Lep -22421 +▁macro -22422 +▁Walton -22423 +▁removes -22424 +▁Alexandre -22425 +nis -22426 +▁Frequ -22427 +idelity -22428 +▁Volcan -22429 +▁convict -22430 +▁convened -22431 +▁hypertension -22432 +▁Kah -22433 +▁Hang -22434 +▁Odys -22435 +▁Rash -22436 +▁Hubert -22437 +▁maiden -22438 +▁Sisters -22439 +▁Dickinson -22440 +▁competent -22441 +staff -22442 +▁1804 -22443 +▁Gian -22444 +▁Salam -22445 +▁traject -22446 +▁summarized -22447 +▁tributaries -22448 +▁periodically -22449 +RO -22450 +▁Agg -22451 +▁hack -22452 +▁Payne -22453 +▁arises -22454 +▁Teacher -22455 +▁concealed -22456 +7). -22457 +was -22458 +ajan -22459 +atham -22460 +▁1798 -22461 +▁Marty -22462 +▁Salem -22463 +▁vague -22464 +▁Amanda -22465 +▁Ludwig -22466 +▁Rainbow -22467 +▁holders -22468 +▁reductions -22469 +▁martyr -22470 +▁sculptor -22471 +▁battlecruiser -22472 +ersh -22473 +roys -22474 +▁1794 -22475 +▁Cald -22476 +▁Cory -22477 +▁Toul -22478 +▁Were -22479 +▁unfam -22480 +▁Persia -22481 +▁crying -22482 +▁outlook -22483 +▁attackers -22484 +▁distorted -22485 +▁Raz -22486 +▁rupt -22487 +▁coasts -22488 +▁keeper -22489 +▁Subsequent -22490 +fri -22491 +▁SL -22492 +ller -22493 +▁arid -22494 +▁peat -22495 +▁Marse -22496 +▁inund -22497 +idships -22498 +▁Destroy -22499 +▁Platinum -22500 +▁variously -22501 +▁coordinator -22502 +dia -22503 +▁Gam -22504 +▁Shi -22505 +aguar -22506 +▁toes -22507 +oughts -22508 +oulder -22509 +▁Blind -22510 +▁Oswald -22511 +▁influx -22512 +▁drained -22513 +▁Pitchfork -22514 +▁justification -22515 +afi -22516 +ummer -22517 +▁Nicar -22518 +▁punch -22519 +▁Gaming -22520 +▁Harald -22521 +▁desanm -22522 +▁glacial -22523 +▁shuttle -22524 +▁prostate -22525 +▁descending -22526 +▁Bie -22527 +▁Dion -22528 +▁rage -22529 +▁wholes -22530 +forestation -22531 +rea -22532 +▁Lina -22533 +Connor -22534 +▁portal -22535 +▁infring -22536 +▁migrate -22537 +▁impending -22538 +▁researched -22539 +▁EM -22540 +heed -22541 +▁clo -22542 +▁Orion -22543 +▁Yucat -22544 +▁bagay -22545 +▁indie -22546 +ondheim -22547 +▁Guillaume -22548 +▁Tou -22549 +anges -22550 +▁USAF -22551 +▁pati -22552 +▁Hipper -22553 +▁bowlers -22554 +▁stresses -22555 +▁emphasizes -22556 +ipal -22557 +ayana -22558 +▁Lanm -22559 +▁Wire -22560 +rances -22561 +▁Benson -22562 +▁notices -22563 +▁columnist -22564 +▁professors -22565 +mile -22566 +▁ROK -22567 +rants -22568 +▁imagin -22569 +▁raiding -22570 +▁touches -22571 +▁Peterson -22572 +▁suffrage -22573 +▁Slant -22574 +▁Brooke -22575 +▁oversh -22576 +▁Niagara -22577 +▁cannons -22578 +▁Superior -22579 +▁Materials -22580 +nai -22581 +▁Bac -22582 +iosis -22583 +▁Mode -22584 +▁Dante -22585 +▁revis -22586 +▁shrub -22587 +▁printer -22588 +▁railroads -22589 +▁ale -22590 +▁wra -22591 +anson -22592 +orned -22593 +▁Peck -22594 +▁leng -22595 +▁Pratt -22596 +▁Sergio -22597 +▁dragged -22598 +▁endless -22599 +▁Reverend -22600 +▁communicating -22601 +▁Hib -22602 +▁Kod -22603 +ATION -22604 +ienne -22605 +▁Hick -22606 +▁Martín -22607 +▁senators -22608 +▁cinematic -22609 +▁saturated -22610 +▁signaling -22611 +▁NES -22612 +▁Colt -22613 +▁Thai -22614 +▁Wise -22615 +▁Paulo -22616 +▁clade -22617 +▁imbal -22618 +▁Potomac -22619 +▁kominote -22620 +▁admiral -22621 +▁Wollston -22622 +▁amidships -22623 +▁electroly -22624 +▁interacting -22625 +▁Wollstonecraft -22626 +400 -22627 +▁CNN -22628 +▁Mant -22629 +▁figur -22630 +▁Bosnian -22631 +▁cantata -22632 +▁reprinted -22633 +▁protagonists -22634 +Am -22635 +uxe -22636 +▁Bax -22637 +▁Role -22638 +▁soda -22639 +sworth -22640 +▁exits -22641 +▁Recogn -22642 +▁intricate -22643 +▁threatens -22644 +▁accidental -22645 +▁catastrophic -22646 +▁comparatively -22647 +▁progressively -22648 +Ol -22649 +▁Flem -22650 +ellite -22651 +▁Amber -22652 +▁Outer -22653 +▁chiefs -22654 +▁drying -22655 +▁rematch -22656 +▁Honduras -22657 +▁compress -22658 +▁ideological -22659 +itably -22660 +▁Cliff -22661 +▁symph -22662 +▁ultra -22663 +keeping -22664 +▁Stones -22665 +▁handic -22666 +esperson -22667 +▁Martínez -22668 +▁athletics -22669 +onda -22670 +▁angel -22671 +▁Morales -22672 +▁Recently -22673 +▁perceive -22674 +dem -22675 +iem -22676 +ussy -22677 +▁Rao -22678 +▁node -22679 +▁stub -22680 +▁Janeiro -22681 +▁Bachelor -22682 +▁Jurassic -22683 +▁Standing -22684 +▁destroys -22685 +▁purchases -22686 +▁Mozambique -22687 +▁nationalism -22688 +▁renumbering -22689 +▁differential -22690 +anu -22691 +tax -22692 +yèl -22693 +▁plac -22694 +▁stew -22695 +angles -22696 +▁Writer -22697 +▁minded -22698 +▁Ekriven -22699 +▁Heather -22700 +▁sequels -22701 +Our -22702 +▁cane -22703 +street -22704 +uction -22705 +▁avril -22706 +▁forage -22707 +▁Hanover -22708 +▁ornament -22709 +▁Confederacy -22710 +At -22711 +uo -22712 +amen -22713 +▁Joa -22714 +aines -22715 +▁1793 -22716 +▁Bound -22717 +▁Therm -22718 +▁brake -22719 +▁saints -22720 +▁Belfast -22721 +dimensional -22722 +▁campaigning -22723 +▁psychedelic -22724 +▁340 -22725 +▁Chrys -22726 +▁Diagn -22727 +▁Running -22728 +▁sparrow -22729 +▁Exc -22730 +▁sans -22731 +▁Lesnar -22732 +▁awaken -22733 +▁flattened -22734 +ataka -22735 +unami -22736 +▁Brady -22737 +▁uneven -22738 +▁walled -22739 +▁Cheroke -22740 +▁trainer -22741 +▁declines -22742 +▁SI -22743 +urrection -22744 +▁succeeding -22745 +ibi -22746 +offs -22747 +▁Ich -22748 +aceans -22749 +▁Istan -22750 +▁prophet -22751 +▁expectation -22752 +▁142 -22753 +▁Ling -22754 +▁stairs -22755 +▁acceleration -22756 +ruz -22757 +▁neat -22758 +▁outlet -22759 +friendly -22760 +▁exposing -22761 +▁explosions -22762 +▁tam -22763 +▁Assy -22764 +nation -22765 +▁Bayern -22766 +▁Legacy -22767 +▁Earlier -22768 +▁Monitor -22769 +▁Politics -22770 +▁capitalist -22771 +▁Publications -22772 +ovar -22773 +▁IBM -22774 +▁Daven -22775 +▁stack -22776 +▁captains -22777 +▁escorting -22778 +▁Reconstruction -22779 +cia -22780 +▁knights -22781 +▁widened -22782 +▁choreography -22783 +tw -22784 +orio -22785 +▁stole -22786 +quartered -22787 +▁ironclad -22788 +èy -22789 +itas -22790 +umat -22791 +▁Dul -22792 +▁Wer -22793 +▁narr -22794 +▁Biden -22795 +▁fined -22796 +▁fishes -22797 +▁offence -22798 +▁hearings -22799 +▁combustion -22800 +▁ré -22801 +ifts -22802 +▁PopM -22803 +▁Bella -22804 +▁emitted -22805 +▁reminder -22806 +mie -22807 +rops -22808 +▁badge -22809 +▁Females -22810 +ipes -22811 +▁Prob -22812 +▁font -22813 +▁nect -22814 +tefact -22815 +▁Flint -22816 +▁Mayer -22817 +▁hypot -22818 +▁Medina -22819 +▁arrows -22820 +▁basics -22821 +▁virgin -22822 +▁Salford -22823 +▁intoler -22824 +▁discount -22825 +▁Stevenson -22826 +▁Ó -22827 +ARD -22828 +▁leuk -22829 +▁sewage -22830 +▁algebra -22831 +▁Metallica -22832 +▁Previously -22833 +▁accelerate -22834 +.: -22835 +Us -22836 +▁Mih -22837 +▁pwodui -22838 +▁insists -22839 +▁Elements -22840 +pert -22841 +▁Meh -22842 +▁Mou -22843 +▁owl -22844 +▁Alma -22845 +▁Argy -22846 +▁Tale -22847 +▁adviser -22848 +▁pledged -22849 +▁Istanbul -22850 +▁turnpike -22851 +▁villains -22852 +▁empirical -22853 +▁astronauts -22854 +orb -22855 +▁solic -22856 +▁feudal -22857 +▁purity -22858 +▁blessing -22859 +▁mosquito -22860 +▁prehistoric -22861 +IST -22862 +▁Vid -22863 +▁duel -22864 +▁Nasser -22865 +▁Batista -22866 +▁paleont -22867 +▁detailing -22868 +▁digestion -22869 +▁prejudice -22870 +▁neighbours -22871 +lv -22872 +iba -22873 +oco -22874 +▁10% -22875 +▁133 -22876 +▁Adapt -22877 +▁Rapids -22878 +▁Related -22879 +▁captures -22880 +▁propelled -22881 +▁cigarettes -22882 +▁collaborate -22883 +:|| -22884 +chem -22885 +fried -22886 +▁2022 -22887 +▁Nell -22888 +▁hint -22889 +reneurs -22890 +▁angered -22891 +▁Religious -22892 +2- -22893 +▁Dear -22894 +▁Lone -22895 +▁Whig -22896 +ailles -22897 +ippers -22898 +▁Arrow -22899 +▁Kumar -22900 +▁Determ -22901 +▁alleviate -22902 +64 -22903 +Paul -22904 +▁Mob -22905 +▁Prinz -22906 +▁Rouge -22907 +▁Images -22908 +▁Picard -22909 +▁arising -22910 +▁Biblical -22911 +▁Ethiopia -22912 +▁concession -22913 +▁redesigned -22914 +▁Ci -22915 +frey -22916 +izza -22917 +▁1600 -22918 +▁Phon -22919 +▁olds -22920 +▁amendments -22921 +pack -22922 +▁(15 -22923 +▁Byr -22924 +▁Koh -22925 +▁Shock -22926 +▁ramps -22927 +▁obstacle -22928 +▁enclosure -22929 +▁hostility -22930 +▁Chronicles -22931 +▁okt -22932 +▁Nadu -22933 +▁motto -22934 +▁polym -22935 +▁Holiday -22936 +utational -22937 +▁compressed -22938 +▁microscope -22939 +▁contrasting -22940 +iably -22941 +▁airplay -22942 +▁princes -22943 +yg -22944 +▁cone -22945 +chwader -22946 +▁Canning -22947 +▁priorit -22948 +▁unanimous -22949 +▁11. -22950 +▁275 -22951 +▁Fou -22952 +▁rhin -22953 +▁Strike -22954 +▁disgust -22955 +▁pending -22956 +▁pulmonary -22957 +▁committing -22958 +▁PD -22959 +▁Types -22960 +▁appla -22961 +▁cervical -22962 +▁fifteenth -22963 +▁Sas -22964 +▁Echo -22965 +▁Guin -22966 +stidia -22967 +▁capita -22968 +▁furious -22969 +▁painters -22970 +▁chemotherapy -22971 +UM -22972 +▁ket -22973 +adays -22974 +▁1816 -22975 +▁Wine -22976 +aparte -22977 +▁inexp -22978 +▁Judaism -22979 +▁hardest -22980 +▁relinqu -22981 +été -22982 +▁Rw -22983 +artet -22984 +elope -22985 +ankton -22986 +▁Remix -22987 +▁Sioux -22988 +▁bombed -22989 +▁Crowley -22990 +▁customary -22991 +▁pioneering -22992 +▁conflicting -22993 +esi -22994 +▁Bug -22995 +▁Brest -22996 +▁Megan -22997 +▁antis -22998 +▁decks -22999 +▁embark -23000 +▁Discuss -23001 +▁Emerson -23002 +▁sheriff -23003 +▁delegate -23004 +▁scrutiny -23005 +▁strikeouts -23006 +▁undoubtedly -23007 +▁RT -23008 +gang -23009 +▁1821 -23010 +▁arom -23011 +liest -23012 +▁2017. -23013 +atchewan -23014 +▁gunnery -23015 +▁punished -23016 +▁corrosion -23017 +▁facilitated -23018 +▁jaws -23019 +▁Boone -23020 +▁clash -23021 +▁shake -23022 +▁groove -23023 +▁scroll -23024 +▁Neville -23025 +▁pillars -23026 +▁Terminal -23027 +▁climates -23028 +▁PV -23029 +▁Kad -23030 +ariat -23031 +▁Barr -23032 +▁Lara -23033 +▁Mamm -23034 +▁setup -23035 +▁arbitrary -23036 +▁Ö -23037 +▁sop -23038 +▁Nigel -23039 +usement -23040 +▁Ranger -23041 +▁freeze -23042 +▁Mauritius -23043 +▁Telescope -23044 +▁innocence -23045 +▁Christophe -23046 +▁Dust -23047 +▁salts -23048 +▁slate -23049 +inflamm -23050 +▁extrav -23051 +▁pistol -23052 +▁Hepburn -23053 +▁occupies -23054 +▁rehearsal -23055 +▁socialism -23056 +HO -23057 +▁Pride -23058 +▁Epstein -23059 +▁bald -23060 +▁Eleph -23061 +▁Samar -23062 +▁Jerome -23063 +▁lovely -23064 +▁Changes -23065 +▁Testing -23066 +▁apology -23067 +▁trillion -23068 +▁Offensive -23069 +68 -23070 +▁(9, -23071 +▁Gol -23072 +▁Bois -23073 +▁raft -23074 +▁Rodgers -23075 +▁chiefly -23076 +▁1805 -23077 +▁narc -23078 +▁opio -23079 +▁Atomic -23080 +▁Calder -23081 +▁impuls -23082 +▁motives -23083 +represent -23084 +▁Malaysian -23085 +▁GPS -23086 +▁Mate -23087 +icable -23088 +▁prefers -23089 +▁anterior -23090 +▁trunkline -23091 +▁extensions -23092 +▁translates -23093 +ilon -23094 +▁Feel -23095 +▁quiz -23096 +▁enrich -23097 +▁Eduardo -23098 +▁inclusive -23099 +▁adolescent -23100 +▁procession -23101 +▁exhibitions -23102 +emis -23103 +gren -23104 +▁Eps -23105 +▁harb -23106 +▁Areas -23107 +▁Comet -23108 +▁Faust -23109 +▁climbs -23110 +▁reside -23111 +▁Notable -23112 +▁narratives -23113 +▁disadvantage -23114 +▁Dee -23115 +▁Dahl -23116 +▁tunes -23117 +▁Casino -23118 +▁Rotten -23119 +▁rabbit -23120 +▁interception -23121 +úl -23122 +gel -23123 +itsu -23124 +isson -23125 +▁impr -23126 +▁McCoy -23127 +▁Nichol -23128 +ependent -23129 +▁Anatomy -23130 +▁barrage -23131 +▁adaptive -23132 +▁Davenport -23133 +▁drastically -23134 +▁6: -23135 +erat -23136 +ppen -23137 +▁169 -23138 +▁Eddy -23139 +▁Jules -23140 +▁suppose -23141 +▁Resource -23142 +▁optional -23143 +▁packages -23144 +▁correction -23145 +▁networking -23146 +▁repetition -23147 +▁sentiments -23148 +▁substituted -23149 +▁BY -23150 +full -23151 +▁Ono -23152 +▁outc -23153 +umbling -23154 +▁outlaw -23155 +▁wooded -23156 +▁switches -23157 +▁distracted -23158 +▁Them -23159 +▁Clair -23160 +▁Whilst -23161 +▁stanza -23162 +▁primates -23163 +▁volatile -23164 +▁impedance -23165 +▁Sacramento -23166 +▁communists -23167 +▁regeneration -23168 +lash -23169 +▁1792 -23170 +▁Lives -23171 +▁rails -23172 +▁Phillip -23173 +▁undergone -23174 +ewood -23175 +▁Herr -23176 +▁Vett -23177 +arency -23178 +▁recei -23179 +▁warns -23180 +▁halluc -23181 +▁Sources -23182 +▁MO -23183 +ihan -23184 +▁VHS -23185 +▁Bridg -23186 +▁presc -23187 +▁unequ -23188 +▁densely -23189 +▁fearing -23190 +▁restart -23191 +▁telenovela -23192 +▁Fortunately -23193 +▁experimentation -23194 +Bi -23195 +eka -23196 +atta -23197 +sein -23198 +▁1824 -23199 +▁Koch -23200 +▁Elena -23201 +▁Reserv -23202 +▁treats -23203 +▁Activity -23204 +▁microphone -23205 +alli -23206 +erun -23207 +▁Dif -23208 +▁apt -23209 +▁1818 -23210 +▁Groves -23211 +▁diocese -23212 +▁rockets -23213 +organisms -23214 +▁Lutheran -23215 +▁destined -23216 +▁injected -23217 +▁gratitude -23218 +▁remarkably -23219 +▁researching -23220 +▁Bras -23221 +▁lone -23222 +▁nude -23223 +▁mizik -23224 +▁truce -23225 +▁flanks -23226 +▁boarded -23227 +▁Saskatchewan -23228 +lé -23229 +▁Lyr -23230 +orian -23231 +▁leap -23232 +perors -23233 +▁Rings -23234 +▁Regina -23235 +▁derive -23236 +▁guarded -23237 +▁licence -23238 +▁certainty -23239 +stitutional -23240 +▁ridiculous -23241 +▁Sustainable -23242 +▁Constitutional -23243 +jar -23244 +▁NK -23245 +▁ub -23246 +▁Pig -23247 +areth -23248 +banks -23249 +▁(10, -23250 +▁Tick -23251 +▁Clyde -23252 +▁Inner -23253 +▁replay -23254 +▁tablet -23255 +▁Gillian -23256 +▁Suffolk -23257 +▁poultry -23258 +▁recipients -23259 +That -23260 +▁Kou -23261 +▁MRI -23262 +▁Doub -23263 +▁gill -23264 +▁Hansen -23265 +▁apples -23266 +▁weighs -23267 +▁Vikings -23268 +My -23269 +lease -23270 +▁Wein -23271 +itious -23272 +▁Ahmed -23273 +▁Bench -23274 +▁rendez -23275 +▁Baroque -23276 +▁Albanian -23277 +▁courtesy -23278 +▁landowners -23279 +▁19, -23280 +▁203 -23281 +▁Herb -23282 +faction -23283 +▁Chronic -23284 +▁fission -23285 +▁Problems -23286 +▁Released -23287 +▁Activities -23288 +▁manipulate -23289 +▁quantitative -23290 +▁curs -23291 +▁Mitch -23292 +▁rifles -23293 +▁Concern -23294 +▁Version -23295 +▁airlines -23296 +▁Alec -23297 +▁null -23298 +▁Notes -23299 +▁auditioned -23300 +▁postseason -23301 +▁transforming -23302 +!) -23303 +-13 -23304 +▁GB -23305 +▁va -23306 +6667 -23307 +this -23308 +▁290 -23309 +gment -23310 +▁Punj -23311 +▁Barth -23312 +▁Wheat -23313 +▁Moffat -23314 +▁boiling -23315 +▁Hartford -23316 +▁sediments -23317 +▁Wilmington -23318 +eason -23319 +▁MacL -23320 +▁curse -23321 +▁Credits -23322 +▁Evangel -23323 +▁Harriet -23324 +▁Midwest -23325 +▁shoreline -23326 +▁archaeology -23327 +▁unavailable -23328 +▁Burma -23329 +▁Example -23330 +▁continents -23331 +afia -23332 +ande -23333 +▁Kne -23334 +apper -23335 +▁militar -23336 +▁parasite -23337 +▁accumulate -23338 +▁advertised -23339 +fo -23340 +▁Chip -23341 +▁helm -23342 +▁tatt -23343 +▁arteries -23344 +▁dopamine -23345 +▁Schneider -23346 +▁unfamiliar -23347 +▁Architecture -23348 +ysc -23349 +angu -23350 +mere -23351 +▁310 -23352 +ctory -23353 +▁2013, -23354 +▁Lanmò -23355 +▁folks -23356 +▁Gilles -23357 +▁Nordic -23358 +▁analysts -23359 +▁admiration -23360 +▁Yellowstone -23361 +▁dreadnoughts -23362 +▁206 -23363 +▁Gle -23364 +▁NHC -23365 +aguey -23366 +▁100% -23367 +▁Mets -23368 +▁Pound -23369 +▁oktòb -23370 +iscopal -23371 +▁Schwar -23372 +▁Gateway -23373 +▁Therapy -23374 +▁reciproc -23375 +▁beverages -23376 +▁curiosity -23377 +▁commissions -23378 +▁bic -23379 +▁Amph -23380 +asurer -23381 +▁rabbits -23382 +▁cannabis -23383 +▁corrected -23384 +▁confiscated -23385 +▁reservations -23386 +uckle -23387 +▁bites -23388 +eliness -23389 +▁Blacks -23390 +▁Flower -23391 +▁equals -23392 +▁nausea -23393 +▁Vickers -23394 +▁cleaned -23395 +▁detained -23396 +▁outlines -23397 +▁butterflies -23398 +▁reconciliation -23399 +sch -23400 +tti -23401 +orrh -23402 +sted -23403 +▁dod -23404 +▁rip -23405 +falls -23406 +▁Gris -23407 +▁gums -23408 +▁seap -23409 +▁visc -23410 +▁sticky -23411 +▁Taunton -23412 +▁piercing -23413 +▁processor -23414 +▁constitutes -23415 +oko -23416 +plan -23417 +▁Asc -23418 +▁Monk -23419 +▁Hyder -23420 +▁Pharm -23421 +▁Kombat -23422 +▁potato -23423 +cipation -23424 +▁overrun -23425 +▁monastic -23426 +▁resilience -23427 +rue -23428 +uen -23429 +imus -23430 +▁NWA -23431 +ellan -23432 +▁Giro -23433 +▁Gerard -23434 +▁plunder -23435 +▁communal -23436 +▁scripted -23437 +▁perceptions -23438 +,’ -23439 +ei -23440 +▁risky -23441 +▁cocaine -23442 +▁killings -23443 +▁contention -23444 +▁Luk -23445 +▁Aurora -23446 +▁staple -23447 +▁strand -23448 +▁Buchanan -23449 +▁activate -23450 +▁Detective -23451 +adin -23452 +empo -23453 +▁dur -23454 +enden -23455 +▁Duck -23456 +▁2016, -23457 +▁batch -23458 +▁Mormon -23459 +▁injust -23460 +▁Soldier -23461 +▁patrons -23462 +▁deserted -23463 +▁departing -23464 +▁protocols -23465 +▁retailers -23466 +▁sophomore -23467 +▁unpredict -23468 +▁commentator -23469 +shaw -23470 +▁kan -23471 +▁1795 -23472 +▁Medic -23473 +▁eroded -23474 +▁stupid -23475 +▁Meeting -23476 +▁fransèz -23477 +▁rhythmic -23478 +▁improvised -23479 +▁reflective -23480 +.9 -23481 +vik -23482 +rugu -23483 +▁Gert -23484 +▁STEM -23485 +feeding -23486 +▁Copper -23487 +▁conflu -23488 +▁inspir -23489 +▁prizes -23490 +▁Himmler -23491 +▁Survivor -23492 +▁presentations -23493 +1– -23494 +ðr -23495 +”) -23496 +athed -23497 +▁todd -23498 +isodes -23499 +ausible -23500 +▁monasteries -23501 +▁Dres -23502 +▁benz -23503 +▁Refuge -23504 +▁Hassett -23505 +▁tackles -23506 +▁agreeing -23507 +▁posterior -23508 +roads -23509 +▁Ferm -23510 +▁Abyss -23511 +▁Crete -23512 +▁grapes -23513 +▁Kashmir -23514 +▁allergy -23515 +▁declares -23516 +▁formidable -23517 +▁naturalist -23518 +▁Confederation -23519 +stadt -23520 +▁wast -23521 +▁unple -23522 +▁clarity -23523 +▁outages -23524 +▁spelled -23525 +▁skeletal -23526 +▁perpendicular -23527 +élé -23528 +▁ail -23529 +▁fug -23530 +onnect -23531 +▁tactic -23532 +▁migrated -23533 +▁transcription -23534 +▁sèl -23535 +▁Nobody -23536 +▁discern -23537 +▁septanm -23538 +▁Samantha -23539 +▁contractor -23540 +awks -23541 +▁134 -23542 +tland -23543 +▁notified -23544 +▁sweeping -23545 +▁Individuals -23546 +▁commercials -23547 +▁decorations -23548 +▁ITV -23549 +rosis -23550 +▁1700 -23551 +income -23552 +omencl -23553 +▁tails -23554 +▁timely -23555 +▁legitimacy -23556 +VN -23557 +zt -23558 +ogical -23559 +▁Ebert -23560 +▁Weiss -23561 +ivities -23562 +hetamine -23563 +▁coating -23564 +▁Northwestern -23565 +▁commemorated -23566 +▁Dad -23567 +▁Gett -23568 +ortunate -23569 +▁crafted -23570 +▁plagued -23571 +▁robotic -23572 +▁charming -23573 +▁shipment -23574 +▁skeptical -23575 +▁circulating -23576 +▁Investigation -23577 +▁redevelopment -23578 +▁ER -23579 +▁Soci -23580 +▁Ariel -23581 +▁Leafs -23582 +▁Mariah -23583 +▁Salmon -23584 +▁valves -23585 +▁forested -23586 +▁aluminium -23587 +▁adjustments -23588 +▁153 -23589 +▁Biz -23590 +▁1806 -23591 +▁Jude -23592 +▁Sikh -23593 +▁riff -23594 +▁Kerry -23595 +▁Torah -23596 +▁wagon -23597 +▁strokes -23598 +▁feminine -23599 +▁forecasts -23600 +PM -23601 +▁Bae -23602 +▁Soil -23603 +lining -23604 +unkers -23605 +▁Hogan -23606 +▁Portra -23607 +▁animators -23608 +▁deception -23609 +▁schooling -23610 +▁motorcycle -23611 +▁principally -23612 +ophon -23613 +▁foll -23614 +▁subm -23615 +▁Sexual -23616 +▁artefact -23617 +▁rhetoric -23618 +▁Athletics -23619 +▁fractures -23620 +▁§ -23621 +ayas -23622 +▁Fry -23623 +▁nem -23624 +iesel -23625 +▁Gale -23626 +▁Georgie -23627 +▁Protocol -23628 +▁objection -23629 +▁signatures -23630 +▁abnormalities -23631 +▁21, -23632 +▁Tyr -23633 +▁silly -23634 +affeine -23635 +▁Alamos -23636 +▁Teresa -23637 +▁pepper -23638 +▁replen -23639 +aneously -23640 +▁Important -23641 +▁subjective -23642 +▁microscopic -23643 +▁Tea -23644 +uffed -23645 +▁Zack -23646 +vester -23647 +▁Lakers -23648 +▁splend -23649 +▁Hermann -23650 +▁Rockets -23651 +▁shields -23652 +▁rigorous -23653 +bbing -23654 +▁Kart -23655 +▁abruptly -23656 +▁orbiting -23657 +▁renovated -23658 +▁synthesized -23659 +▁(7 -23660 +▁toe -23661 +▁Solo -23662 +lysses -23663 +▁2007, -23664 +▁revive -23665 +▁sampled -23666 +▁inactive -23667 +▁statutory -23668 +▁descendant -23669 +▁encompasses -23670 +▁Specifically -23671 +▁deterioration -23672 +UD -23673 +▁Aid -23674 +▁intend -23675 +▁Clifton -23676 +▁Matematik -23677 +ECT -23678 +gins -23679 +oter -23680 +▁RAR -23681 +▁Amar -23682 +inners -23683 +▁prens -23684 +▁Dental -23685 +▁Strange -23686 +▁cottage -23687 +▁soluble -23688 +▁smallpox -23689 +▁tolerate -23690 +▁interchanges -23691 +▁commissioning -23692 +educ -23693 +▁Boss -23694 +▁Cogn -23695 +▁beak -23696 +▁niche -23697 +▁Nassau -23698 +▁Healthy -23699 +▁ceramic -23700 +▁Bonaparte -23701 +▁overlapping -23702 +▁spokesperson -23703 +▁IR -23704 +phane -23705 +▁fused -23706 +▁Nickel -23707 +▁specify -23708 +▁Tomatoes -23709 +▁Mesopotam -23710 +▁incorrectly -23711 +▁authenticity -23712 +▁Gibb -23713 +▁lact -23714 +▁Dorset -23715 +▁heroin -23716 +▁refres -23717 +▁mirrors -23718 +▁beautifully -23719 +▁NI -23720 +▁154 -23721 +▁440 -23722 +▁McE -23723 +▁1834 -23724 +angled -23725 +▁disid -23726 +▁scary -23727 +▁raided -23728 +▁Consult -23729 +▁Traffic -23730 +▁Industries -23731 +▁contrasted -23732 +▁forthcoming -23733 +1), -23734 +▁Hak -23735 +▁cyan -23736 +▁reset -23737 +▁sweat -23738 +▁Killer -23739 +▁Travis -23740 +▁Ulysses -23741 +▁Producer -23742 +▁polished -23743 +four -23744 +ervis -23745 +▁Judy -23746 +▁Doyle -23747 +▁Miche -23748 +▁Problem -23749 +▁inventor -23750 +▁textbook -23751 +▁transfers -23752 +▁enrollment -23753 +yps -23754 +▁ug -23755 +▁Berk -23756 +▁Clan -23757 +▁emerges -23758 +▁Liberation -23759 +▁phosphorus -23760 +▁approximate -23761 +6). -23762 +onyms -23763 +▁Bure -23764 +charge -23765 +▁Omega -23766 +▁styled -23767 +▁chasing -23768 +▁renewal -23769 +▁systemic -23770 +▁ignorance -23771 +axis -23772 +▁Gan -23773 +▁Safe -23774 +ermost -23775 +▁airst -23776 +▁Vaughan -23777 +▁Exercise -23778 +▁foreigners -23779 +▁successors -23780 +Bs -23781 +mus -23782 +▁Sis -23783 +otism -23784 +▁Used -23785 +▁fibr -23786 +▁jiyè -23787 +▁rash -23788 +reneur -23789 +tlement -23790 +▁enamel -23791 +▁gloves -23792 +arya -23793 +icked -23794 +▁1828 -23795 +▁Cobb -23796 +▁chop -23797 +▁Urugu -23798 +▁chased -23799 +▁nectar -23800 +▁Ambrose -23801 +▁adjoining -23802 +▁discouraged -23803 +olit -23804 +regor -23805 +▁1797 -23806 +▁Auck -23807 +arious -23808 +▁Conan -23809 +▁remod -23810 +▁thigh -23811 +▁wield -23812 +▁cooled -23813 +▁invertebrates -23814 +End -23815 +fan -23816 +▁XL -23817 +roqu -23818 +▁610 -23819 +▁hen -23820 +▁forum -23821 +▁Waterloo -23822 +▁induction -23823 +▁judgement -23824 +▁milestone -23825 +▁therapist -23826 +▁disturbances -23827 +▁redesignated -23828 +ça -23829 +▁Loy -23830 +illus -23831 +▁Savoy -23832 +▁Braves -23833 +▁Measure -23834 +▁steamer -23835 +▁cautious -23836 +▁pilgrimage -23837 +▁headquartered -23838 +▁schizophrenia -23839 +▁Jav -23840 +▁dot -23841 +▁glee -23842 +▁Cinem -23843 +▁Rural -23844 +▁proceeding -23845 +8). -23846 +acio -23847 +wave -23848 +ifolia -23849 +levant -23850 +▁loops -23851 +▁Reporter -23852 +▁diversion -23853 +▁gentleman -23854 +▁Cie -23855 +▁Coke -23856 +▁Vale -23857 +▁zomb -23858 +ointed -23859 +imation -23860 +▁glacier -23861 +ús -23862 +▁Mā -23863 +▁139 -23864 +▁Muk -23865 +▁Veh -23866 +▁Benz -23867 +▁Papa -23868 +▁Reef -23869 +▁nets -23870 +▁anecd -23871 +▁mourn -23872 +▁Camaguey -23873 +▁supplying -23874 +▁Publishers -23875 +▁ultraviolet -23876 +▁RN -23877 +▁asymmet -23878 +▁comedic -23879 +▁Atlantis -23880 +▁elevator -23881 +▁altitudes -23882 +▁rendezvous -23883 +Cube -23884 +oder -23885 +▁Quad -23886 +▁chak -23887 +▁eclipse -23888 +▁theorem -23889 +▁totaling -23890 +▁PopMatters -23891 +▁atl -23892 +▁sul -23893 +▁Vari -23894 +▁sexy -23895 +▁2006, -23896 +▁2007. -23897 +▁Appeal -23898 +▁storing -23899 +▁Elsewhere -23900 +▁stereotyp -23901 +▁harassment -23902 +▁USC -23903 +inkel -23904 +▁Inch -23905 +▁Shankar -23906 +▁Athenian -23907 +▁mourning -23908 +▁communism -23909 +▁151 -23910 +▁Tran -23911 +▁Khmer -23912 +▁unlock -23913 +▁berries -23914 +▁assaults -23915 +▁Geographic -23916 +lis -23917 +▁Hé -23918 +▁buoy -23919 +▁crem -23920 +▁hail -23921 +▁Keral -23922 +▁Theme -23923 +▁chanc -23924 +▁perme -23925 +▁invites -23926 +▁ratified -23927 +▁attaining -23928 +▁π -23929 +mia -23930 +oos -23931 +▁2- -23932 +▁GS -23933 +rath -23934 +▁Bring -23935 +▁Trees -23936 +▁candy -23937 +▁radial -23938 +▁antenna -23939 +▁summers -23940 +▁relevance -23941 +▁enterprises -23942 +▁Vig -23943 +▁USDA -23944 +▁emit -23945 +▁Brill -23946 +entials -23947 +▁ascent -23948 +▁heroine -23949 +▁Stéphane -23950 +▁inadvert -23951 +▁installing -23952 +▁Nir -23953 +▁Wad -23954 +▁Léon -23955 +erville -23956 +roduced -23957 +▁Weight -23958 +▁blessed -23959 +▁daytime -23960 +▁holdings -23961 +▁assaulted -23962 +▁righteous -23963 +▁brightness -23964 +▁Accordingly -23965 +game -23966 +▁Arb -23967 +▁mete -23968 +▁melod -23969 +▁catchy -23970 +▁evenly -23971 +▁infest -23972 +▁guerrilla -23973 +▁retrieved -23974 +▁FOR -23975 +▁Tap -23976 +▁Lowe -23977 +▁culp -23978 +▁Chopra -23979 +▁pigeon -23980 +▁Forrest -23981 +▁Garrett -23982 +▁unwanted -23983 +▁parachute -23984 +Hen -23985 +/200 -23986 +▁2.5 -23987 +aning -23988 +vable -23989 +▁Into -23990 +▁Perm -23991 +adowed -23992 +▁cleans -23993 +occupied -23994 +▁Hunters -23995 +▁neutrons -23996 +▁Karnataka -23997 +▁unpleasant -23998 +Der -23999 +Reilly -24000 +▁hitter -24001 +▁Mystery -24002 +fficiency -24003 +▁Appalach -24004 +▁intestinal -24005 +▁eligibility -24006 +▁examinations -24007 +neg -24008 +▁Bonnie -24009 +▁Walking -24010 +▁juveniles -24011 +▁nightclub -24012 +▁originating -24013 +enb -24014 +▁Anc -24015 +▁Hos -24016 +ecker -24017 +▁lodge -24018 +acetime -24019 +▁Ronnie -24020 +▁Kitchen -24021 +▁archive -24022 +▁dialects -24023 +▁excellence -24024 +▁oppression -24025 +▁sanitation -24026 +eled -24027 +▁dots -24028 +ranged -24029 +▁deposed -24030 +▁ejected -24031 +▁reluctantly -24032 +▁akin -24033 +▁Kitty -24034 +▁deeds -24035 +▁Frankf -24036 +▁angels -24037 +▁Cartman -24038 +▁deserve -24039 +▁menstru -24040 +▁neutrality -24041 +▁projections -24042 +zier -24043 +rades -24044 +ographs -24045 +▁empathy -24046 +▁grateful -24047 +▁HC -24048 +▁Orb -24049 +pires -24050 +▁Golf -24051 +▁Waste -24052 +▁Saigon -24053 +▁jewelry -24054 +▁Prep -24055 +autions -24056 +▁coloration -24057 +▁retaliation -24058 +has -24059 +eche -24060 +▁Ain -24061 +▁Loop -24062 +▁blunt -24063 +▁reservoirs -24064 +▁transitions -24065 +UL -24066 +enia -24067 +▁Buzz -24068 +▁Lana -24069 +▁Cooke -24070 +▁Weaver -24071 +▁coffin -24072 +▁novanm -24073 +▁rodents -24074 +▁Flotilla -24075 +▁invading -24076 +▁firefight -24077 +guin -24078 +▁Craft -24079 +▁sugars -24080 +▁Jenkins -24081 +▁branded -24082 +▁capsule -24083 +▁Benefits -24084 +▁Cherokee -24085 +▁billions -24086 +▁positioning -24087 +▁NW -24088 +▁Slow -24089 +uitable -24090 +▁motions -24091 +▁genocide -24092 +▁routines -24093 +▁prevailed -24094 +DL -24095 +utsch -24096 +▁Talbot -24097 +▁gunpowder -24098 +entin -24099 +▁Dial -24100 +▁Disp -24101 +▁moll -24102 +▁weeds -24103 +▁Cyprus -24104 +▁Doming -24105 +▁cortex -24106 +▁synonym -24107 +▁utterly -24108 +▁wrecked -24109 +▁telegraph -24110 +▁Fus -24111 +▁Pull -24112 +inator -24113 +▁Aware -24114 +▁Terra -24115 +▁Felipe -24116 +▁recomb -24117 +▁pirates -24118 +▁Armoured -24119 +▁implicit -24120 +▁infamous -24121 +▁fashioned -24122 +PL -24123 +anye -24124 +uper -24125 +▁Tub -24126 +▁Jacobs -24127 +▁Phelps -24128 +illation -24129 +▁marrying -24130 +▁societal -24131 +▁cigarette -24132 +▁Resistance -24133 +▁organizational -24134 +▁Tara -24135 +feated -24136 +imited -24137 +▁capit -24138 +parents -24139 +▁Purple -24140 +▁FR -24141 +roup -24142 +▁HBO -24143 +▁Amin -24144 +▁Dunn -24145 +▁digits -24146 +▁plaint -24147 +▁Concept -24148 +▁reminds -24149 +▁survivor -24150 +▁Whitehead -24151 +▁experimented -24152 +▁aforementioned -24153 +alc -24154 +▁Jal -24155 +▁Mey -24156 +forth -24157 +▁Chev -24158 +▁Cope -24159 +▁Contreras -24160 +▁insistence -24161 +▁commissioners -24162 +▁mitochondrial -24163 +▁163 -24164 +ennes -24165 +▁moss -24166 +▁nurt -24167 +▁spheres -24168 +indy -24169 +regn -24170 +ulas -24171 +▁Minh -24172 +▁Vert -24173 +intage -24174 +▁lemon -24175 +▁Choose -24176 +▁pigment -24177 +▁satirical -24178 +▁Archaeological -24179 +iard -24180 +▁Arg -24181 +agasy -24182 +unate -24183 +▁Goes -24184 +▁Lark -24185 +▁Ricky -24186 +▁tapes -24187 +▁Beaver -24188 +▁coherent -24189 +▁manually -24190 +▁assistants -24191 +▁exercising -24192 +olor -24193 +▁164 -24194 +▁cob -24195 +rasound -24196 +▁ornith -24197 +▁quicker -24198 +▁reactors -24199 +▁endorsement -24200 +▁outnumbered -24201 +▁morphological -24202 +▁TA -24203 +brush -24204 +uttle -24205 +▁Grav -24206 +▁Kahn -24207 +▁Tool -24208 +▁bays -24209 +▁elli -24210 +▁pept -24211 +▁Compl -24212 +▁voter -24213 +▁Rescue -24214 +▁excuse -24215 +▁imposing -24216 +naeus -24217 +▁hadn -24218 +▁sage -24219 +essive -24220 +▁Coral -24221 +▁Answer -24222 +▁Lowell -24223 +▁hiking -24224 +▁Mariana -24225 +▁winters -24226 +▁Conservatives -24227 +▁Kip -24228 +▁downs -24229 +▁memoir -24230 +▁100,000 -24231 +▁Reflect -24232 +▁Scandinavian -24233 +▁Cyber -24234 +▁crush -24235 +uncture -24236 +▁Autumn -24237 +▁barons -24238 +▁graded -24239 +▁hostage -24240 +▁Auckland -24241 +▁Fortress -24242 +▁Oriental -24243 +▁predominant -24244 +▁provisional -24245 +ør -24246 +bee -24247 +tel -24248 +ème -24249 +▁NJ -24250 +▁Kry -24251 +▁coh -24252 +▁kay -24253 +▁xen -24254 +flict -24255 +▁gram -24256 +▁Edith -24257 +▁Thier -24258 +anthrop -24259 +▁Atmosp -24260 +▁Claudia -24261 +▁underside -24262 +heid -24263 +▁143 -24264 +▁Sto -24265 +▁Aman -24266 +▁forc -24267 +▁Pepper -24268 +▁buffer -24269 +▁sparse -24270 +▁airfields -24271 +▁Sosyete -24272 +▁Nicaragua -24273 +▁Officials -24274 +▁portfolio -24275 +▁vertically -24276 +▁POW -24277 +▁Bund -24278 +church -24279 +▁(2010 -24280 +▁Carlisle -24281 +▁cardinal -24282 +▁firearms -24283 +▁Direction -24284 +▁convinces -24285 +▁graphical -24286 +▁il -24287 +▁hug -24288 +▁PMID -24289 +▁vass -24290 +▁dilem -24291 +▁ubiqu -24292 +▁verify -24293 +▁Plateau -24294 +▁landslides -24295 +▁prototypes -24296 +▁Fon -24297 +▁Zap -24298 +esses -24299 +▁Pure -24300 +▁Facts -24301 +▁Trial -24302 +▁obese -24303 +▁spikes -24304 +▁Hungarians -24305 +▁phylogenetic -24306 +▁Whed -24307 +▁Wenger -24308 +▁sooner -24309 +▁trailing -24310 +▁predation -24311 +TE -24312 +TER -24313 +▁GH -24314 +▁fel -24315 +▁doctr -24316 +▁stamps -24317 +▁casemates -24318 +▁incentive -24319 +▁beginnings -24320 +▁formulated -24321 +▁GE -24322 +▁NR -24323 +▁Vin -24324 +▁ana -24325 +▁Piet -24326 +▁lamps -24327 +▁hybrids -24328 +▁semester -24329 +▁yellowish -24330 +▁inaccurate -24331 +▁preferring -24332 +avers -24333 +▁taxa -24334 +▁Dubai -24335 +▁Nepal -24336 +▁Mongols -24337 +▁shaping -24338 +▁intriguing -24339 +Ref -24340 +▁SG -24341 +chet -24342 +▁Ion -24343 +aying -24344 +▁scra -24345 +▁Cover -24346 +▁Sparta -24347 +▁fungal -24348 +▁Groening -24349 +▁wondered -24350 +▁internally -24351 +▁Paralympics -24352 +▁Lah -24353 +powered -24354 +▁Kerala -24355 +▁Saffir -24356 +▁Simone -24357 +▁ammonia -24358 +▁vibrant -24359 +▁expenditure -24360 +bels -24361 +rimp -24362 +geois -24363 +reach -24364 +obacter -24365 +▁Rowland -24366 +▁coincide -24367 +▁contender -24368 +▁Thereafter -24369 +2), -24370 +ounge -24371 +▁Qing -24372 +bestos -24373 +▁Hoover -24374 +▁Totten -24375 +▁slogan -24376 +Do -24377 +isye -24378 +▁Aal -24379 +▁Neo -24380 +▁Cott -24381 +▁Braun -24382 +product -24383 +▁transist -24384 +▁programmed -24385 +▁intentional -24386 +▁TF -24387 +link -24388 +▁30, -24389 +▁Gaut -24390 +▁tenor -24391 +portion -24392 +▁Prepar -24393 +▁Vulcan -24394 +▁errone -24395 +▁edisyon -24396 +▁affinity -24397 +▁mitigate -24398 +▁radicals -24399 +▁investing -24400 +▁thunderstorm -24401 +▁Buffy -24402 +▁Flynn -24403 +▁Toyota -24404 +▁geneal -24405 +▁earnest -24406 +▁microbi -24407 +▁Maritime -24408 +▁Provincial -24409 +▁culturally -24410 +▁kindergarten -24411 +▁390 -24412 +▁Dong -24413 +▁ranc -24414 +▁pitches -24415 +▁theolog -24416 +▁explorers -24417 +▁authorised -24418 +▁Ath -24419 +▁nour -24420 +▁Dolph -24421 +▁Waugh -24422 +▁parap -24423 +▁Didier -24424 +▁Falcon -24425 +▁fleets -24426 +▁Pioneer -24427 +▁inexpensive -24428 +duc -24429 +▁sib -24430 +▁tyres -24431 +umption -24432 +▁Alexis -24433 +▁dealer -24434 +▁Antioch -24435 +▁skating -24436 +▁intestine -24437 +▁confluence -24438 +▁fraternity -24439 +▁undefeated -24440 +▁CI -24441 +▁640 -24442 +▁Chu -24443 +▁alloc -24444 +▁wagons -24445 +▁reactive -24446 +▁domination -24447 +▁evaluating -24448 +▁detrimental -24449 +robe -24450 +ikini -24451 +inees -24452 +▁Button -24453 +▁swords -24454 +▁singled -24455 +▁sponsors -24456 +▁Volunteer -24457 +▁negotiating -24458 +▁TC -24459 +▁Cod -24460 +▁Ort -24461 +▁São -24462 +▁zeb -24463 +▁cite -24464 +▁hears -24465 +▁Circus -24466 +▁Nichols -24467 +▁reinforcement -24468 +See -24469 +Lear -24470 +▁Holt -24471 +▁Mist -24472 +▁tally -24473 +▁Cartoon -24474 +▁Toby -24475 +▁eats -24476 +urring -24477 +▁adhes -24478 +▁basket -24479 +▁contrasts -24480 +▁galleries -24481 +▁poisonous -24482 +jas -24483 +high -24484 +iero -24485 +▁12. -24486 +▁1811 -24487 +▁seaw -24488 +oprens -24489 +rocery -24490 +▁tenants -24491 +▁fourteenth -24492 +agar -24493 +eres -24494 +▁dir -24495 +ewide -24496 +▁euro -24497 +▁Fanny -24498 +uristic -24499 +urel -24500 +▁aph -24501 +▁ponds -24502 +▁canyon -24503 +▁aground -24504 +▁beetles -24505 +▁analogous -24506 +DM -24507 +-14 -24508 +ormal -24509 +▁Chab -24510 +▁Mask -24511 +▁sabot -24512 +▁stint -24513 +▁Skills -24514 +▁Cochrane -24515 +▁Venetian -24516 +▁suppliers -24517 +▁vern -24518 +▁Minaj -24519 +▁sworn -24520 +▁tires -24521 +▁tastes -24522 +▁classics -24523 +coin -24524 +▁Gue -24525 +▁roy -24526 +▁Mari -24527 +▁lamb -24528 +▁Uganda -24529 +▁Williamson -24530 +izyè -24531 +▁(12 -24532 +▁Vald -24533 +inctions -24534 +▁Liberals -24535 +▁Wolverines -24536 +.|| -24537 +▁174 -24538 +▁AAA -24539 +▁Murd -24540 +erness -24541 +▁Rocks -24542 +▁docks -24543 +▁pants -24544 +▁remot -24545 +▁Rifles -24546 +▁carpet -24547 +▁poured -24548 +▁Fernand -24549 +▁Malagasy -24550 +▁Associate -24551 +▁confession -24552 +arry -24553 +▁Cash -24554 +▁2014, -24555 +▁parameter -24556 +▁conspicuous -24557 +▁partnerships -24558 +▁HR -24559 +aires -24560 +itous -24561 +▁Levi -24562 +▁Glaston -24563 +▁nostalg -24564 +▁selections -24565 +ije -24566 +ossip -24567 +▁Yoga -24568 +▁Harlem -24569 +ceptable -24570 +▁abbrevi -24571 +▁worsened -24572 +▁sponsorship -24573 +▁incorporation -24574 +dis -24575 +▁fon -24576 +▁Elsa -24577 +▁shoe -24578 +▁ozone -24579 +▁lavish -24580 +▁pleaded -24581 +▁Clifford -24582 +▁heightened -24583 +cke -24584 +oyne -24585 +▁lid -24586 +▁Hors -24587 +▁Tosh -24588 +▁foam -24589 +▁belts -24590 +▁Target -24591 +▁evapor -24592 +▁ninety -24593 +▁epithet -24594 +orporated -24595 +▁brighter -24596 +▁extrater -24597 +llan -24598 +▁Iber -24599 +▁situ -24600 +philis -24601 +▁adren -24602 +▁Barney -24603 +▁Melissa -24604 +▁Syndrome -24605 +▁Episcopal -24606 +▁Sta -24607 +ullah -24608 +▁Tiber -24609 +▁dunge -24610 +▁barred -24611 +▁drifted -24612 +▁slipped -24613 +▁converts -24614 +▁Dí -24615 +lewine -24616 +linger -24617 +▁halft -24618 +▁spike -24619 +▁Frontier -24620 +▁inaugurated -24621 +▁photographic -24622 +▁proclamation -24623 +hanna -24624 +▁Kron -24625 +▁Rapid -24626 +▁hanged -24627 +▁umpire -24628 +▁Diseases -24629 +▁Erlewine -24630 +▁Historians -24631 +▁Napoleonic -24632 +▁republican -24633 +▁Peng -24634 +ogeneous -24635 +▁Revenge -24636 +▁benefic -24637 +▁sandwich -24638 +▁counseling -24639 +▁rehearsals -24640 +▁laboratories -24641 +ktè -24642 +two -24643 +vil -24644 +▁Fed -24645 +▁ree -24646 +▁Cris -24647 +▁Watt -24648 +atting -24649 +▁Parts -24650 +▁Scheer -24651 +▁uphold -24652 +▁incurred -24653 +▁symphony -24654 +▁breakaway -24655 +ît -24656 +▁` -24657 +utnant -24658 +▁Critic -24659 +▁Wizard -24660 +▁Respons -24661 +▁amalgam -24662 +▁obstruct -24663 +▁realization -24664 +hima -24665 +worm -24666 +▁Avery -24667 +▁McCorm -24668 +▁inmates -24669 +▁spreads -24670 +▁comprehension -24671 +▁430 -24672 +▁ACL -24673 +▁Buy -24674 +▁pads -24675 +▁Applic -24676 +▁abused -24677 +▁Spartan -24678 +▁Christie -24679 +▁Sheridan -24680 +▁verified -24681 +▁Inspector -24682 +▁Reference -24683 +▁Glastonbury -24684 +iné -24685 +▁bump -24686 +▁dear -24687 +atical -24688 +▁Cruise -24689 +▁unused -24690 +overeign -24691 +▁assemble -24692 +▁Bollywood -24693 +▁staircase -24694 +▁24, -24695 +arcer -24696 +▁Beech -24697 +▁Thess -24698 +▁antic -24699 +▁Wessex -24700 +▁coated -24701 +▁shafts -24702 +▁spines -24703 +▁Baghdad -24704 +▁revolves -24705 +▁migratory -24706 +▁Principles -24707 +5). -24708 +hop -24709 +▁ko -24710 +moil -24711 +▁Jas -24712 +check -24713 +▁elbow -24714 +▁lever -24715 +▁vowel -24716 +▁Stefan -24717 +▁intoxic -24718 +▁microbes -24719 +▁widening -24720 +▁evidenced -24721 +▁sociology -24722 +▁Éd -24723 +▁Fut -24724 +▁etid -24725 +agrams -24726 +▁scent -24727 +▁Godwin -24728 +▁Vettel -24729 +▁lonely -24730 +▁vascular -24731 +▁Tao -24732 +umper -24733 +▁Bury -24734 +▁pinn -24735 +▁Polar -24736 +▁pwofes -24737 +▁unhealthy -24738 +nick -24739 +stood -24740 +▁2030 -24741 +▁Ibra -24742 +▁Odin -24743 +▁Pius -24744 +▁saga -24745 +▁Severe -24746 +▁denying -24747 +▁remixed -24748 +▁conveyed -24749 +▁Strategic -24750 +▁viewership -24751 +▁nm -24752 +▁Ges -24753 +▁10.10 -24754 +▁Privy -24755 +▁hated -24756 +▁clover -24757 +▁ -24758 +e -24759 +t -24760 +a -24761 +n -24762 +i -24763 +o -24764 +r -24765 +s -24766 +h -24767 +l -24768 +d -24769 +c -24770 +u -24771 +m -24772 +f -24773 +p -24774 +g -24775 +y -24776 +w -24777 +b -24778 +, -24779 +. -24780 +v -24781 +k -24782 +T -24783 +1 -24784 +@ -24785 +A -24786 +0 -24787 +S -24788 +C -24789 +I -24790 +M -24791 +2 -24792 +- -24793 +" -24794 +B -24795 +9 -24796 +x -24797 +P -24798 +' -24799 +H -24800 +D -24801 +R -24802 +L -24803 +F -24804 +W -24805 +) -24806 +( -24807 +E -24808 +N -24809 +G -24810 +3 -24811 +z -24812 +5 -24813 +8 -24814 +J -24815 +O -24816 +4 -24817 +6 -24818 +j -24819 +7 -24820 +: -24821 +q -24822 +K -24823 +U -24824 +V -24825 +; -24826 +’ -24827 +– -24828 +Y -24829 +è -24830 +/ -24831 +ò -24832 +é -24833 +“ -24834 +” -24835 +— -24836 +? -24837 +Z -24838 +| -24839 += -24840 +Q -24841 +% -24842 +$ -24843 +] -24844 +[ -24845 +X -24846 +! -24847 +& -24848 +á -24849 +_ -24850 +í -24851 +‘ -24852 +° -24853 +ó -24854 ++ -24855 +ː -24856 +£ -24857 +ü -24858 +ö -24859 +* -24860 +# -24861 +> -24862 +ñ -24863 +ć -24864 +ō -24865 +ç -24866 +• -24867 +à -24868 +ä -24869 +É -24870 +< -24871 +â -24872 +ā -24873 +− -24874 +ø -24875 +š -24876 +ú -24877 +ł -24878 +ê -24879 +× -24880 +ô -24881 +′ -24882 +μ -24883 +⁄ -24884 +ë -24885 +ï -24886 +~ -24887 +α -24888 +Æ -24889 +č -24890 +· -24891 +» -24892 +æ -24893 +ă -24894 +Á -24895 +ū -24896 +« -24897 +ð -24898 +а -24899 +о -24900 +€ -24901 +₹ -24902 +å -24903 +ã -24904 +î -24905 +^ -24906 +ο -24907 +и -24908 +` -24909 +© -24910 +Đ -24911 +е -24912 +ˈ -24913 +ī -24914 +ν -24915 +ệ -24916 +τ -24917 +н -24918 +œ -24919 +‐ -24920 +® -24921 +р -24922 +ς -24923 +ə -24924 +± -24925 +ž -24926 +† -24927 +ι -24928 +π -24929 +β -24930 +ε -24931 +λ -24932 +ا -24933 +Š -24934 +т -24935 +с -24936 +ń -24937 +ρ -24938 +Å -24939 +→ -24940 +Ö -24941 +в -24942 +\ -24943 +ß -24944 +ل -24945 +♭ -24946 +ʻ -24947 +ś -24948 +κ -24949 +к -24950 +§ -24951 +Ó -24952 +л -24953 +ı -24954 +σ -24955 +η -24956 +ş -24957 +đ -24958 +् -24959 +γ -24960 +À -24961 +ș -24962 + -24963 +ー -24964 +́ -24965 +δ -24966 +ा -24967 +û -24968 +Î -24969 +ù -24970 +υ -24971 +Ø -24972 +ē -24973 +ɪ -24974 +ę -24975 +ن -24976 +д -24977 +م -24978 +} -24979 +ả -24980 +θ -24981 +ì -24982 +ン -24983 +м -24984 +у -24985 +र -24986 +↑ -24987 +ر -24988 +ω -24989 +¥ -24990 +ル -24991 +Ž -24992 +Č -24993 +י -24994 +ý -24995 +・ -24996 +Ō -24997 +♯ -24998 +φ -24999 +の -25000 +َ -25001 +و -25002 +ό -25003 +ί -25004 +ي -25005 +п -25006 +क -25007 +я -25008 +ب -25009 +ɛ -25010 +ו -25011 +й -25012 +ř -25013 +ス -25014 +ơ -25015 +ą -25016 +þ -25017 +ά -25018 +Í -25019 +г -25020 +χ -25021 +ь -25022 +ה -25023 +त -25024 +〉 -25025 +{ -25026 +ि -25027 +☉ -25028 +א -25029 +ư -25030 +〈 -25031 +ʿ -25032 +د -25033 +ě -25034 +ɔ -25035 +ạ -25036 +ễ -25037 +¡ -25038 +イ -25039 +Δ -25040 +ه -25041 +‍ -25042 +з -25043 +Ü -25044 +б -25045 +● -25046 +Ż -25047 +ы -25048 +ʊ -25049 +¢ -25050 +न -25051 +ė -25052 +Ç -25053 +ч -25054 +ṇ -25055 +ク -25056 +Ś -25057 +ế -25058 +ʃ -25059 +س -25060 +ɣ -25061 +ż -25062 +ț -25063 +स -25064 +¿ -25065 +Þ -25066 +ứ -25067 +È -25068 +म -25069 +έ -25070 +ר -25071 +ל -25072 +ト -25073 +ع -25074 +် -25075 +ɑ -25076 +ğ -25077 +ी -25078 +リ -25079 +ő -25080 +С -25081 +的 -25082 +­ -25083 +े -25084 +ẩ -25085 +̪ -25086 +≤ -25087 +、 -25088 +Ł -25089 +Ω -25090 +õ -25091 +ت -25092 +ラ -25093 +ב -25094 +ア -25095 +ِ -25096 +ی -25097 +ɡ -25098 +य -25099 +フ -25100 +。 -25101 +― -25102 +ύ -25103 +ա -25104 +ร -25105 +ṭ -25106 +Ò -25107 +ッ -25108 +ह -25109 +ή -25110 +ḥ -25111 +ṣ -25112 +Ú -25113 +Π -25114 +า -25115 +ש -25116 +İ -25117 +ת -25118 +タ -25119 +ド -25120 +ָ -25121 +≥ -25122 +प -25123 +ˌ -25124 +ナ -25125 +ˇ -25126 +ं -25127 +Ş -25128 +Ä -25129 +ح -25130 +ल -25131 +̊ -25132 +व -25133 +ỳ -25134 +₱ -25135 +Œ -25136 +› -25137 +ц -25138 +מ -25139 +ּ -25140 +П -25141 +„ -25142 +ジ -25143 +Ā -25144 +‚ -25145 +น -25146 +シ -25147 +ồ -25148 +い -25149 +ţ -25150 +द -25151 +大 -25152 +ŋ -25153 +х -25154 +ो -25155 +√ -25156 +ق -25157 +ロ -25158 +ụ -25159 +ة -25160 +ァ -25161 +à -25162 +ʒ -25163 +В -25164 +ж -25165 +ف -25166 +ע -25167 +オ -25168 +Σ -25169 +ш -25170 +ξ -25171 +一 -25172 +श -25173 +ṃ -25174 +∠ -25175 +ḍ -25176 +ộ -25177 +ְ -25178 +Р -25179 +ἀ -25180 +≈ -25181 +マ -25182 +М -25183 +ῦ -25184 +ד -25185 +~ -25186 +က -25187 +่ -25188 +ु -25189 +ź -25190 +נ -25191 +А -25192 +ầ -25193 +中 -25194 +ɒ -25195 +ั -25196 +► -25197 +ַ -25198 +ج -25199 +☎ -25200 +ʁ -25201 +ζ -25202 +း -25203 +ị -25204 +ّ -25205 +أ -25206 +ִ -25207 +ブ -25208 +ْ -25209 +レ -25210 +͡ -25211 +◦ -25212 +人 -25213 +ʀ -25214 +ǎ -25215 +і -25216 +К -25217 +ם -25218 +₤ -25219 +∼ -25220 +テ -25221 +ज -25222 +ɾ -25223 +ն -25224 +↩ -25225 +̃ -25226 +ك -25227 +ウ -25228 +ُ -25229 +ʾ -25230 +Б -25231 +ာ -25232 +ု -25233 +ィ -25234 +Κ -25235 +し -25236 +天 -25237 +エ -25238 +カ -25239 +バ -25240 +ọ -25241 +Ș -25242 +ח -25243 +ش -25244 +ม -25245 +ズ -25246 +ز -25247 +ိ -25248 +ὶ -25249 +█ -25250 +た -25251 +る -25252 +Н -25253 +ท -25254 +ἐ -25255 +Α -25256 +Г -25257 +พ -25258 +Ε -25259 +日 -25260 +サ -25261 +🙂 -25262 +Μ -25263 +ص -25264 +ュ -25265 +か -25266 +ֶ -25267 +் -25268 +་ -25269 +文 -25270 +이 -25271 +ะ -25272 +ん -25273 +ี -25274 +ダ -25275 +ֹ -25276 +া -25277 +な -25278 +ま -25279 +ニ -25280 +ὸ -25281 +̈ -25282 +င -25283 +ग -25284 +ष -25285 +О -25286 +כ -25287 +と -25288 +グ -25289 +ן -25290 +И -25291 +ง -25292 +ก -25293 +り -25294 +Ḥ -25295 +キ -25296 +ら -25297 +Θ -25298 +ố -25299 +ǐ -25300 +̯ -25301 +ю -25302 +ब -25303 +্ -25304 +子 -25305 +ψ -25306 +פ -25307 +ק -25308 +อ -25309 +เ -25310 +ῶ -25311 +神 -25312 +ک -25313 +‹ -25314 +上 -25315 +̥ -25316 +ᵻ -25317 +ր -25318 +∈ -25319 +う -25320 +ण -25321 +ủ -25322 +Ι -25323 +ṛ -25324 +コ -25325 +ย -25326 +デ -25327 +← -25328 +■ -25329 +ῆ -25330 +ո -25331 +ေ -25332 +在 -25333 +ŏ -25334 +ิ -25335 +∞ -25336 +♥ -25337 +ɐ -25338 +ớ -25339 +ミ -25340 +ム -25341 +ǔ -25342 +خ -25343 +ի -25344 +は -25345 +ф -25346 +भ -25347 +ै -25348 +ʔ -25349 +Ђ -25350 +ῖ -25351 +अ -25352 +ờ -25353 +Д -25354 +き -25355 +ツ -25356 +ů -25357 +ƒ -25358 +ג -25359 +生 -25360 +ส -25361 +す -25362 +分 -25363 +¶ -25364 +Φ -25365 +ֵ -25366 +้ -25367 +‡ -25368 +Γ -25369 +ώ -25370 +Т -25371 +ط -25372 +ว -25373 +ấ -25374 +ὐ -25375 +≡ -25376 +☆ -25377 +ი -25378 +三 -25379 +÷ -25380 +ũ -25381 +ե -25382 +不 -25383 +太 -25384 +ĩ -25385 +个 -25386 +ס -25387 +ậ -25388 +に -25389 +チ -25390 +作 -25391 +ŵ -25392 +Ο -25393 +э -25394 +ျ -25395 +န -25396 +ရ -25397 +有 -25398 +¦ -25399 +ى -25400 +─ -25401 +ล -25402 +မ -25403 +ギ -25404 +本 -25405 +ј -25406 +ὁ -25407 +∴ -25408 +ハ -25409 +️ -25410 +ャ -25411 +山 -25412 +ׁ -25413 +ध -25414 +တ -25415 +语 -25416 +ħ -25417 +ט -25418 +‰ -25419 +▪ -25420 +て -25421 +を -25422 +ガ -25423 +伝 -25424 +小 -25425 +词 -25426 +ợ -25427 +国 -25428 +Λ -25429 +ז -25430 +್ -25431 +パ -25432 +プ -25433 +ň -25434 +ʌ -25435 +ʼ -25436 +♦ -25437 +こ -25438 +ェ -25439 +ပ -25440 +¬ -25441 +च -25442 +ต -25443 +メ -25444 +의 -25445 +̶ -25446 +Β -25447 +Τ -25448 +ṅ -25449 +⇒ -25450 +ソ -25451 +是 -25452 +। -25453 +្ -25454 +お -25455 +王 -25456 +〜 -25457 +ŷ -25458 +Ν -25459 +ป -25460 +∂ -25461 +ち -25462 +式 -25463 +ъ -25464 +သ -25465 +ὰ -25466 +く -25467 +学 -25468 +ノ -25469 +女 -25470 +Ñ -25471 +צ -25472 +إ -25473 +句 -25474 +戦 -25475 +法 -25476 +ट -25477 +ʕ -25478 +さ -25479 +ა -25480 +方 -25481 +Ô -25482 +Ć -25483 +ヴ -25484 +出 -25485 +和 -25486 +道 -25487 +ų -25488 +အ -25489 +新 -25490 +物 -25491 +ゴ -25492 +ゼ -25493 +モ -25494 +ョ -25495 +Ţ -25496 +щ -25497 +์ -25498 +★ -25499 +我 -25500 +月 -25501 +사 -25502 +ÿ -25503 +ť -25504 +公 -25505 +ǫ -25506 +ở -25507 +⋅ -25508 +「 -25509 +用 -25510 +ည -25511 +れ -25512 +ザ -25513 +空 -25514 +第 -25515 +ŭ -25516 +կ -25517 +ြ -25518 +✔ -25519 +地 -25520 +̄ -25521 +∗ -25522 +」 -25523 +が -25524 +Л -25525 +ۡ -25526 +∆ -25527 +で -25528 +下 -25529 +星 -25530 +다 -25531 +ケ -25532 +会 -25533 +ด -25534 +ử -25535 +ὴ -25536 +ব -25537 +真 -25538 +하 -25539 +Ê -25540 +ہ -25541 +บ -25542 +ห -25543 +З -25544 +あ -25545 +年 -25546 +田 -25547 +아 -25548 +̓ -25549 +Η -25550 +У -25551 +├ -25552 +説 -25553 +র -25554 +ರ -25555 +ಿ -25556 +ự -25557 +南 -25558 +正 -25559 +스 -25560 +̍ -25561 +主 -25562 +明 -25563 +行 -25564 +部 -25565 +리 -25566 +̠ -25567 +ё -25568 +յ -25569 +စ -25570 +რ -25571 +火 -25572 +⟨ -25573 +⟩ -25574 +ポ -25575 +为 -25576 +어 -25577 +ɨ -25578 +∙ -25579 +ワ -25580 +了 -25581 +成 -25582 +白 -25583 +語 -25584 +ू -25585 +つ -25586 +ォ -25587 +之 -25588 +ւ -25589 +ـ -25590 +့ -25591 +ွ -25592 +រ -25593 +セ -25594 +ボ -25595 +家 -25596 +所 -25597 +ɕ -25598 +ἰ -25599 +二 -25600 +光 -25601 +定 -25602 +島 -25603 +工 -25604 +ذ -25605 +ἄ -25606 +め -25607 +十 -25608 +印 -25609 +教 -25610 +書 -25611 +金 -25612 +տ -25613 +ء -25614 +് -25615 +ံ -25616 +။ -25617 +ắ -25618 +も -25619 +以 -25620 +土 -25621 +ɲ -25622 +̆ -25623 +غ -25624 +₩ -25625 +▲ -25626 +っ -25627 +ض -25628 +پ -25629 +ক -25630 +≠ -25631 +み -25632 +ビ -25633 +从 -25634 +名 -25635 +时 -25636 +水 -25637 +海 -25638 +者 -25639 +Ψ -25640 +ث -25641 +ল -25642 +動 -25643 +可 -25644 +同 -25645 +李 -25646 +高 -25647 +̞ -25648 +西 -25649 +Е -25650 +ე -25651 +ὑ -25652 +你 -25653 +心 -25654 +武 -25655 +風 -25656 +ǒ -25657 +လ -25658 +Ṭ -25659 +ペ -25660 +里 -25661 +ड -25662 +▼ -25663 +士 -25664 +集 -25665 +鼓 -25666 +한 -25667 +Э -25668 +қ -25669 +世 -25670 +事 -25671 +京 -25672 +ņ -25673 +Χ -25674 +Ш -25675 +उ -25676 +ত -25677 +ি -25678 +Ἀ -25679 +‒ -25680 +↵ -25681 +ベ -25682 +多 -25683 +石 -25684 +表 -25685 +가 -25686 +ম -25687 +ช -25688 +ီ -25689 +ს -25690 +國 -25691 +平 -25692 +改 -25693 +自 -25694 +̝ -25695 +इ -25696 +ಾ -25697 +ὲ -25698 +‭ -25699 +化 -25700 +城 -25701 +思 -25702 +路 -25703 +青 -25704 +魂 -25705 +기 -25706 +제 -25707 +க -25708 +ನ -25709 +ယ -25710 +ἔ -25711 +ネ -25712 +版 -25713 +ए -25714 +ন -25715 +ು -25716 +ဆ -25717 +ẵ -25718 +ぽ -25719 +よ -25720 +八 -25721 +动 -25722 +原 -25723 +题 -25724 +지 -25725 +آ -25726 +ृ -25727 +ุ -25728 +ှ -25729 +‟ -25730 +春 -25731 +ɜ -25732 +ɬ -25733 +Ч -25734 +վ -25735 +✓ -25736 +五 -25737 +意 -25738 +聖 -25739 +能 -25740 +花 -25741 +銀 -25742 +라 -25743 +ľ -25744 +̩ -25745 +گ -25746 +थ -25747 +จ -25748 +แ -25749 +₣ -25750 +∑ -25751 +ど -25752 +ヒ -25753 +到 -25754 +如 -25755 +字 -25756 +界 -25757 +要 -25758 +面 -25759 +ս -25760 +ས -25761 +ữ -25762 +ỹ -25763 +ば -25764 +北 -25765 +合 -25766 +四 -25767 +数 -25768 +時 -25769 +葉 -25770 +Ț -25771 +، -25772 +ไ -25773 +ḻ -25774 +え -25775 +力 -25776 +場 -25777 +少 -25778 +木 -25779 +機 -25780 +編 -25781 +这 -25782 +ֲ -25783 +औ -25784 +ူ -25785 +ვ -25786 +⊕ -25787 +♣ -25788 +だ -25789 +他 -25790 +君 -25791 +社 -25792 +英 -25793 +長 -25794 +인 -25795 +ġ -25796 +Ф -25797 +Հ -25798 +ֱ -25799 +უ -25800 +ḳ -25801 +け -25802 +剣 -25803 +型 -25804 +民 -25805 +都 -25806 +魔 -25807 +Ð -25808 +ئ -25809 +ข -25810 +ศ -25811 +ခ -25812 +ḷ -25813 +ἡ -25814 +へ -25815 +代 -25816 +写 -25817 +前 -25818 +去 -25819 +外 -25820 +常 -25821 +東 -25822 +軍 -25823 +过 -25824 +Υ -25825 +ٱ -25826 +़ -25827 +ா -25828 +ி -25829 +ἱ -25830 +流 -25831 +시 -25832 +😉 -25833 +ɦ -25834 +ค -25835 +ག -25836 +美 -25837 +賦 -25838 +자 -25839 +ʋ -25840 +ў -25841 +ख -25842 +ம -25843 +ར -25844 +ི -25845 +ხ -25846 +♠ -25847 +ょ -25848 +加 -25849 +安 -25850 +手 -25851 +来 -25852 +野 -25853 +門 -25854 +龍 -25855 +고 -25856 +Х -25857 +մ -25858 +आ -25859 +ಲ -25860 +ོ -25861 +ထ -25862 +ម -25863 +ṯ -25864 +ᾶ -25865 +✅ -25866 +じ -25867 +州 -25868 +港 -25869 +Ē -25870 +Я -25871 +ћ -25872 +ղ -25873 +ք -25874 +ர -25875 +ត -25876 +千 -25877 +史 -25878 +对 -25879 +川 -25880 +政 -25881 +族 -25882 +理 -25883 +転 -25884 +香 -25885 +ĕ -25886 +ʂ -25887 +ց -25888 +ے -25889 +য -25890 +ლ -25891 +ន -25892 +♀ -25893 +そ -25894 +最 -25895 +林 -25896 +每 -25897 +ɟ -25898 +̧ -25899 +ः -25900 +ಗ -25901 +ỗ -25902 +↓ -25903 +ひ -25904 +皇 -25905 +言 -25906 +谷 -25907 +ĭ -25908 +ɫ -25909 +ˀ -25910 +̟ -25911 +Ρ -25912 +ї -25913 +ך -25914 +მ -25915 +ო -25916 +ា -25917 +ổ -25918 +▶ -25919 +ピ -25920 +ヤ -25921 +内 -25922 +台 -25923 +司 -25924 +周 -25925 +好 -25926 +帝 -25927 +朝 -25928 +漢 -25929 +重 -25930 +해 -25931 +ವ -25932 +ೆ -25933 +ဒ -25934 +ស -25935 +せ -25936 +わ -25937 +体 -25938 +全 -25939 +刷 -25940 +后 -25941 +愛 -25942 +歌 -25943 +殿 -25944 +班 -25945 +目 -25946 +로 -25947 +마 -25948 +ײ -25949 +॥ -25950 +ু -25951 +్ -25952 +ู -25953 +ừ -25954 +也 -25955 +们 -25956 +共 -25957 +形 -25958 +示 -25959 +記 -25960 +議 -25961 +馬 -25962 +는 -25963 +에 -25964 +Ì -25965 +Ī -25966 +˩ -25967 +ѕ -25968 +թ -25969 +ً -25970 +ھ -25971 +Ṣ -25972 +⊗ -25973 +□ -25974 +☏ -25975 +古 -25976 +回 -25977 +度 -25978 +张 -25979 +後 -25980 +清 -25981 +特 -25982 +百 -25983 +等 -25984 +而 -25985 +見 -25986 +解 -25987 +音 -25988 +랑 -25989 +비 -25990 +일 -25991 +전 -25992 +Õ -25993 +Ý -25994 +ű -25995 +ǂ -25996 +ɹ -25997 +Ј -25998 +լ -25999 +স -26000 +ಯ -26001 +ὺ -26002 +∕ -26003 +ⴰ -26004 +使 -26005 +個 -26006 +先 -26007 +其 -26008 +張 -26009 +性 -26010 +放 -26011 +詩 -26012 +那 -26013 +郎 -26014 +院 -26015 +유 -26016 +ɖ -26017 +ɯ -26018 +˧ -26019 +բ -26020 +ு -26021 +ಂ -26022 +ಕ -26023 +ธ -26024 +ད -26025 +ဘ -26026 +ẓ -26027 +Ἰ -26028 +⭐ -26029 +信 -26030 +元 -26031 +六 -26032 +制 -26033 +劉 -26034 +口 -26035 +市 -26036 +師 -26037 +期 -26038 +村 -26039 +条 -26040 +術 -26041 +進 -26042 +보 -26043 +여 -26044 +ќ -26045 +Ս -26046 +ে -26047 +த -26048 +ത -26049 +ဖ -26050 +ဗ -26051 +დ -26052 +ἴ -26053 +ὅ -26054 +⇖ -26055 +何 -26056 +守 -26057 +巨 -26058 +無 -26059 +片 -26060 +电 -26061 +程 -26062 +米 -26063 +网 -26064 +雪 -26065 +黄 -26066 +나 -26067 +신 -26068 +정 -26069 +ˆ -26070 +̂ -26071 +Ա -26072 +দ -26073 +ు -26074 +၁ -26075 +⊂ -26076 +⊥ -26077 +官 -26078 +寺 -26079 +引 -26080 +恋 -26081 +或 -26082 +接 -26083 +撃 -26084 +相 -26085 +良 -26086 +茶 -26087 +进 -26088 +除 -26089 +대 -26090 +Ė -26091 +ף -26092 +फ -26093 +ಸ -26094 +ി -26095 +ื -26096 +ნ -26097 +ព -26098 +与 -26099 +井 -26100 +克 -26101 +态 -26102 +祭 -26103 +經 -26104 +線 -26105 +老 -26106 +色 -26107 +陈 -26108 +限 -26109 +马 -26110 +鬼 -26111 +은 -26112 +ǃ -26113 +̌ -26114 +գ -26115 +հ -26116 +ץ -26117 +প -26118 +ದ -26119 +ภ -26120 +ᅠ -26121 +ὀ -26122 +₦ -26123 +⇌ -26124 +⇑ -26125 +ぐ -26126 +ず -26127 +ゃ -26128 +丸 -26129 +件 -26130 +僕 -26131 +关 -26132 +初 -26133 +園 -26134 +夜 -26135 +夢 -26136 +學 -26137 +宗 -26138 +宝 -26139 +次 -26140 +比 -26141 +氏 -26142 +永 -26143 +球 -26144 +知 -26145 +紅 -26146 +義 -26147 +通 -26148 +隊 -26149 +내 -26150 +미 -26151 +서 -26152 +Ï -26153 +պ -26154 +ٰ -26155 +ക -26156 +ณ -26157 +ถ -26158 +ษ -26159 +ὄ -26160 +ふ -26161 +ゆ -26162 +ゲ -26163 +ホ -26164 +伊 -26165 +列 -26166 +华 -26167 +听 -26168 +想 -26169 +果 -26170 +氣 -26171 +活 -26172 +点 -26173 +现 -26174 +研 -26175 +章 -26176 +系 -26177 +草 -26178 +주 -26179 +Ě -26180 +˥ -26181 +ظ -26182 +घ -26183 +ன -26184 +ქ -26185 +ṉ -26186 +Ῥ -26187 +ユ -26188 +东 -26189 +介 -26190 +令 -26191 +包 -26192 +变 -26193 +品 -26194 +宮 -26195 +建 -26196 +得 -26197 +战 -26198 +更 -26199 +校 -26200 +玉 -26201 +由 -26202 +眼 -26203 +竞 -26204 +艦 -26205 +華 -26206 +量 -26207 +陽 -26208 +국 -26209 +그 -26210 +성 -26211 +ʎ -26212 +Ξ -26213 +۬ -26214 +ौ -26215 +ச -26216 +ర -26217 +ུ -26218 +გ -26219 +კ -26220 +ῥ -26221 +『 -26222 +』 -26223 +久 -26224 +义 -26225 +入 -26226 +及 -26227 +发 -26228 +受 -26229 +号 -26230 +容 -26231 +应 -26232 +情 -26233 +支 -26234 +气 -26235 +気 -26236 +河 -26237 +治 -26238 +福 -26239 +秋 -26240 +精 -26241 +装 -26242 +補 -26243 +雲 -26244 +남 -26245 +Ù -26246 +ď -26247 +̲ -26248 +դ -26249 +چ -26250 +ো -26251 +ാ -26252 +โ -26253 +็ -26254 +༤ -26255 +ང -26256 +ḵ -26257 +ề -26258 +❄ -26259 +书 -26260 +判 -26261 +匹 -26262 +因 -26263 +堂 -26264 +很 -26265 +景 -26266 +泉 -26267 +立 -26268 +考 -26269 +选 -26270 +问 -26271 +非 -26272 +녀 -26273 +도 -26274 +를 -26275 +ȟ -26276 +І -26277 +ֿ -26278 +छ -26279 +ಪ -26280 +ಮ -26281 +ന -26282 +ര -26283 +ტ -26284 +ể -26285 +ỏ -26286 +ἁ -26287 +ἶ -26288 +ὕ -26289 +∘ -26290 +∩ -26291 +ぎ -26292 +ご -26293 +七 -26294 +九 -26295 +具 -26296 +利 -26297 +劇 -26298 +商 -26299 +尾 -26300 +微 -26301 +提 -26302 +旗 -26303 +杜 -26304 +汉 -26305 +沖 -26306 +然 -26307 +科 -26308 +竹 -26309 +街 -26310 +赤 -26311 +間 -26312 +阿 -26313 +간 -26314 +구 -26315 +루 -26316 +문 -26317 +식 -26318 +연 -26319 +요 -26320 +화 -26321 +ǣ -26322 +ʝ -26323 +Ά -26324 +Ц -26325 +շ -26326 +֫ -26327 +ণ -26328 +ী -26329 +ತ -26330 +യ -26331 +ํ -26332 +མ -26333 +္ -26334 +თ -26335 +ុ -26336 +ῷ -26337 +✵ -26338 +万 -26339 +于 -26340 +仙 -26341 +喜 -26342 +处 -26343 +始 -26344 +將 -26345 +御 -26346 +拳 -26347 +攻 -26348 +旋 -26349 +早 -26350 +會 -26351 +松 -26352 +段 -26353 +注 -26354 +為 -26355 +町 -26356 +番 -26357 +紀 -26358 +羅 -26359 +羽 -26360 +肉 -26361 +育 -26362 +藤 -26363 +话 -26364 +起 -26365 +逆 -26366 +间 -26367 +项 -26368 +들 -26369 +🐾 -26370 +ķ -26371 +Ū -26372 +̨ -26373 +њ -26374 +Ԁ -26375 +ٍ -26376 +ढ -26377 +ப -26378 +წ -26379 +ក -26380 +ὼ -26381 +❤ -26382 +⦁ -26383 +修 -26384 +刘 -26385 +劳 -26386 +告 -26387 +塊 -26388 +夏 -26389 +左 -26390 +府 -26391 +彼 -26392 +德 -26393 +忠 -26394 +望 -26395 +死 -26396 +礮 -26397 +究 -26398 +答 -26399 +節 -26400 +经 -26401 +节 -26402 +衛 -26403 +被 -26404 +計 -26405 +貴 -26406 +陳 -26407 +零 -26408 +雷 -26409 +館 -26410 +답 -26411 +동 -26412 +드 -26413 +린 -26414 +부 -26415 +소 -26416 +양 -26417 +터 -26418 +투 -26419 +Ħ -26420 +ʈ -26421 +͘ -26422 +Ζ -26423 +Ж -26424 +Կ -26425 +Մ -26426 +խ -26427 +ׂ -26428 +ܐ -26429 +ठ -26430 +ਾ -26431 +ా -26432 +། -26433 +ზ -26434 +ჯ -26435 +₫ -26436 +▢ -26437 +ね -26438 +む -26439 +や -26440 +今 -26441 +佛 -26442 +值 -26443 +充 -26444 +区 -26445 +博 -26446 +取 -26447 +幻 -26448 +易 -26449 +昭 -26450 +曲 -26451 +朱 -26452 +殻 -26453 +江 -26454 +洪 -26455 +满 -26456 +狗 -26457 +种 -26458 +菜 -26459 +象 -26460 +连 -26461 +述 -26462 +遁 -26463 +雄 -26464 +韓 -26465 +오 -26466 +우 -26467 +을 -26468 +ɳ -26469 +̽ -26470 +զ -26471 +ռ -26472 +ֽ -26473 +ञ -26474 +ং -26475 +শ -26476 +வ -26477 +් -26478 +ྒ -26479 +ྱ -26480 +၂ -26481 +ც -26482 +េ -26483 +ះ -26484 +Ἑ -26485 +ἤ -26486 +ἵ -26487 +ὡ -26488 +↔ -26489 +♊ -26490 +♮ -26491 +ⴻ -26492 +げ -26493 +ゥ -26494 +保 -26495 +像 -26496 +军 -26497 +双 -26498 +完 -26499 +将 -26500 +就 -26501 +屋 -26502 +并 -26503 +开 -26504 +指 -26505 +板 -26506 +标 -26507 +洋 -26508 +源 -26509 +狐 -26510 +素 -26511 +紫 -26512 +般 -26513 +船 -26514 +螺 -26515 +角 -26516 +读 -26517 +走 -26518 +輪 -26519 +達 -26520 +遠 -26521 +關 -26522 +頭 -26523 +왕 -26524 +타 -26525 +트 -26526 +¤ -26527 +̐ -26528 +љ -26529 +জ -26530 +় -26531 +ய -26532 +ள -26533 +ಡ -26534 +ಳ -26535 +ใ -26536 +ན -26537 +བ -26538 +၊ -26539 +჻ -26540 +ី -26541 +ẫ -26542 +♒ -26543 +✗ -26544 +❖ -26545 +ⵜ -26546 +べ -26547 +ろ -26548 +ヨ -26549 +么 -26550 +典 -26551 +勝 -26552 +厘 -26553 +参 -26554 +反 -26555 +复 -26556 +孩 -26557 +导 -26558 +当 -26559 +志 -26560 +息 -26561 +技 -26562 +料 -26563 +旦 -26564 +楽 -26565 +此 -26566 +沙 -26567 +波 -26568 +深 -26569 +照 -26570 +状 -26571 +玄 -26572 +画 -26573 +直 -26574 +縄 -26575 +興 -26576 +論 -26577 +边 -26578 +造 -26579 +選 -26580 +邪 -26581 +骨 -26582 +鳥 -26583 +계 -26584 +바 -26585 +백 -26586 +와 -26587 +운 -26588 +조 -26589 +진 -26590 +차 -26591 +︎ -26592 +ɢ -26593 +ɵ -26594 +̀ -26595 +ҳ -26596 +Գ -26597 +ಟ -26598 +ེ -26599 +ྲ -26600 +၀ -26601 +ប -26602 +ḩ -26603 +ẽ -26604 +ῳ -26605 +░ -26606 +♋ -26607 +♑ -26608 +⚫ -26609 +✳ -26610 +➤ -26611 +业 -26612 +丹 -26613 +但 -26614 +位 -26615 +住 -26616 +例 -26617 +內 -26618 +友 -26619 +向 -26620 +団 -26621 +基 -26622 +境 -26623 +增 -26624 +夫 -26625 +失 -26626 +头 -26627 +姉 -26628 +季 -26629 +客 -26630 +尉 -26631 +己 -26632 +序 -26633 +影 -26634 +念 -26635 +打 -26636 +拉 -26637 +母 -26638 +牙 -26639 +牛 -26640 +独 -26641 +現 -26642 +琉 -26643 +看 -26644 +着 -26645 +統 -26646 +翼 -26647 +脱 -26648 +與 -26649 +航 -26650 +血 -26651 +諸 -26652 +身 -26653 +連 -26654 +鉄 -26655 +게 -26656 +공 -26657 +꽃 -26658 +니 -26659 +모 -26660 +선 -26661 +수 -26662 +야 -26663 +영 -26664 +원 -26665 +파 -26666 +ļ -26667 +ɓ -26668 +ɥ -26669 +ɸ -26670 +ʍ -26671 +ʏ -26672 +ʹ -26673 +̋ -26674 +є -26675 +ծ -26676 +ջ -26677 +֖ -26678 +֥ -26679 +ٌ -26680 +ں -26681 +ई -26682 +ओ -26683 +গ -26684 +ந -26685 +ல -26686 +గ -26687 +ಚ -26688 +െ -26689 +ဟ -26690 +ძ -26691 +፡ -26692 +ោ -26693 +ṟ -26694 +ằ -26695 +⇳ -26696 +∖ -26697 +∶ -26698 +≢ -26699 +☐ -26700 +ⵏ -26701 +《 -26702 +ヘ -26703 +些 -26704 +佐 -26705 +佳 -26706 +供 -26707 +倉 -26708 +兵 -26709 +剛 -26710 +右 -26711 +吉 -26712 +命 -26713 +善 -26714 +坂 -26715 +居 -26716 +戸 -26717 +房 -26718 +持 -26719 +掃 -26720 +數 -26721 +斯 -26722 +样 -26723 +條 -26724 +様 -26725 +毛 -26726 +派 -26727 +熊 -26728 +畫 -26729 +皮 -26730 +約 -26731 +线 -26732 +给 -26733 +胡 -26734 +著 -26735 +蔵 -26736 +裁 -26737 +話 -26738 +请 -26739 +超 -26740 +霊 -26741 +靈 -26742 +首 -26743 +黒 -26744 +거 -26745 +만 -26746 +맨 -26747 +산 -26748 +상 -26749 +세 -26750 +호 -26751 +Ë -26752 +ĝ -26753 +Ź -26754 +ǜ -26755 +ǝ -26756 +ǵ -26757 +ɤ -26758 +ˁ -26759 +̇ -26760 +Й -26761 +ը -26762 +־ -26763 +অ -26764 +ভ -26765 +হ -26766 +ച -26767 +ฟ -26768 +༡ -26769 +ဂ -26770 +ფ -26771 +់ -26772 +ṁ -26773 +ẹ -26774 +ῇ -26775 +∃ -26776 +⊙ -26777 +♌ -26778 +✨ -26779 +【 -26780 +】 -26781 +争 -26782 +亦 -26783 +产 -26784 +傳 -26785 +價 -26786 +净 -26787 +刻 -26788 +只 -26789 +吳 -26790 +報 -26791 +声 -26792 +宋 -26793 +実 -26794 +寶 -26795 +局 -26796 +強 -26797 +彩 -26798 +律 -26799 +未 -26800 +模 -26801 +歷 -26802 +殺 -26803 +津 -26804 +濟 -26805 +瀬 -26806 +男 -26807 +略 -26808 +短 -26809 +秀 -26810 +積 -26811 +笑 -26812 +絵 -26813 +群 -26814 +薩 -26815 +计 -26816 +说 -26817 +賓 -26818 +资 -26819 +越 -26820 +送 -26821 +郡 -26822 +黃 -26823 +노 -26824 +더 -26825 +디 -26826 +말 -26827 +무 -26828 +천 -26829 +청 -26830 +초 -26831 +﴾ -26832 +﴿ -26833 +Û -26834 +Ľ -26835 +ȳ -26836 +ɮ -26837 +ʑ -26838 +̅ -26839 +̰ -26840 +̱ -26841 +ϊ -26842 +ө -26843 +֤ -26844 +ট -26845 +ষ -26846 +ਲ -26847 +మ -26848 +ೈ -26849 +ം -26850 +ි -26851 +ญ -26852 +ผ -26853 +฿ -26854 +འ -26855 +ལ -26856 +ဲ -26857 +၆ -26858 +၇ -26859 +ᛋ -26860 +ង -26861 +ទ -26862 +ḑ -26863 +Ḳ -26864 +ἅ -26865 +∇ -26866 +┐ -26867 +└ -26868 +▸ -26869 +☺ -26870 +♂ -26871 +✎ -26872 +ⴷ -26873 +》 -26874 +乙 -26875 +云 -26876 +來 -26877 +侯 -26878 +切 -26879 +别 -26880 +刺 -26881 +升 -26882 +单 -26883 +历 -26884 +各 -26885 +味 -26886 +呼 -26887 +哈 -26888 +图 -26889 +她 -26890 +姫 -26891 +婷 -26892 +孫 -26893 +它 -26894 +已 -26895 +干 -26896 +庭 -26897 +康 -26898 +强 -26899 +怪 -26900 +昌 -26901 +曼 -26902 +机 -26903 +束 -26904 +析 -26905 +没 -26906 +省 -26907 +站 -26908 +红 -26909 +耕 -26910 +苗 -26911 +若 -26912 +萬 -26913 +藏 -26914 +议 -26915 +试 -26916 +课 -26917 +資 -26918 +足 -26919 +跡 -26920 +近 -26921 +運 -26922 +錬 -26923 +鐘 -26924 +错 -26925 +開 -26926 +阳 -26927 +降 -26928 +陵 -26929 +食 -26930 +體 -26931 +너 -26932 +람 -26933 +메 -26934 +명 -26935 +불 -26936 +입 -26937 +장 -26938 +프 -26939 +학 -26940 +향 -26941 + -26942 +👉 -26943 +Ř -26944 +ǧ -26945 +ɴ -26946 +ʐ -26947 +ˑ -26948 +Ь -26949 +ү -26950 +չ -26951 +ँ -26952 +ङ -26953 +খ -26954 +ধ -26955 +ட -26956 +ை -26957 +ం -26958 +వ -26959 +ಹ -26960 +പ -26961 +ു -26962 +၉ -26963 +ბ -26964 +ᛁ -26965 +ហ -26966 +ិ -26967 +ḏ -26968 +ḫ -26969 +ḱ -26970 +ἑ -26971 +ἕ -26972 +Ἠ -26973 +※ -26974 +‿ -26975 +↗ -26976 +∀ -26977 +∫ -26978 +ⵉ -26979 +ⵍ -26980 +ぼ -26981 +交 -26982 +伯 -26983 +再 -26984 +卒 -26985 +卡 -26986 +吸 -26987 +唐 -26988 +器 -26989 +填 -26990 +壤 -26991 +奇 -26992 +奥 -26993 +孟 -26994 +宾 -26995 +密 -26996 +富 -26997 +崎 -26998 +师 -26999 +店 -27000 +弘 -27001 +征 -27002 +必 -27003 +悲 -27004 +感 -27005 +承 -27006 +把 -27007 +投 -27008 +按 -27009 +推 -27010 +斗 -27011 +曹 -27012 +服 -27013 +枚 -27014 +株 -27015 +根 -27016 +桃 -27017 +業 -27018 +歩 -27019 +洞 -27020 +湖 -27021 +灯 -27022 +灼 -27023 +爱 -27024 +猫 -27025 +珊 -27026 +瑚 -27027 +瑞 -27028 +瓦 -27029 +甲 -27030 +祖 -27031 +紋 -27032 +组 -27033 +细 -27034 +置 -27035 +莊 -27036 +薇 -27037 +蛍 -27038 +视 -27039 +設 -27040 +谓 -27041 +豊 -27042 +载 -27043 +运 -27044 +這 -27045 +长 -27046 +関 -27047 +门 -27048 +阅 -27049 +随 -27050 +馆 -27051 +魚 -27052 +龙 -27053 +단 -27054 +생 -27055 +애 -27056 +재 -27057 +치 -27058 +💭 -27059 +📌 -27060 +ǰ -27061 +͜ -27062 +ғ -27063 +ӧ -27064 +օ -27065 +ױ -27066 +׳ -27067 +আ -27068 +ড -27069 +ਰ -27070 +ਸ -27071 +ਹ -27072 +ಣ -27073 +ട -27074 +ฐ -27075 +ჲ -27076 +Ἄ -27077 +Ἐ -27078 +ῃ -27079 +₡ -27080 +↦ -27081 +▬ -27082 +◯ -27083 +♍ -27084 +♐ -27085 +➔ -27086 +⟦ -27087 +⟧ -27088 +⠂ -27089 +ⵎ -27090 +び -27091 +ほ -27092 +丑 -27093 +亚 -27094 +付 -27095 +做 -27096 +刀 -27097 +別 -27098 +圖 -27099 +场 -27100 +域 -27101 +夕 -27102 +奈 -27103 +室 -27104 +尼 -27105 +差 -27106 +布 -27107 +座 -27108 +廷 -27109 +憲 -27110 +戰 -27111 +据 -27112 +整 -27113 +无 -27114 +智 -27115 +案 -27116 +楚 -27117 +求 -27118 +洲 -27119 +浅 -27120 +游 -27121 +溜 -27122 +演 -27123 +狼 -27124 +異 -27125 +當 -27126 +疑 -27127 +発 -27128 +登 -27129 +種 -27130 +管 -27131 +篇 -27132 +粗 -27133 +網 -27134 +结 -27135 +罗 -27136 +臣 -27137 +裏 -27138 +規 -27139 +覚 -27140 +評 -27141 +许 -27142 +该 -27143 +谁 -27144 +豪 -27145 +趙 -27146 +达 -27147 +過 -27148 +銆 -27149 +錄 -27150 +震 -27151 +飛 -27152 +魄 -27153 +鳳 -27154 +ꜣ -27155 +과 -27156 +김 -27157 +러 -27158 +막 -27159 +맛 -27160 +맞 -27161 +별 -27162 +복 -27163 +브 -27164 +순 -27165 +용 -27166 +있 -27167 +짓 -27168 +태 -27169 +피 -27170 +황 -27171 +Ď -27172 +Ə -27173 +ɻ -27174 +ʺ -27175 +Ю -27176 +ә -27177 +է -27178 +փ -27179 +֔ -27180 +֙ -27181 +চ -27182 +அ -27183 +ழ -27184 +త -27185 +ి -27186 +ಷ -27187 +വ -27188 +ഷ -27189 +ྩ -27190 +ᚱ -27191 +ᛚ -27192 +ᛟ -27193 +ច -27194 +យ -27195 +ḡ -27196 +ἠ -27197 +ὖ -27198 +‛ -27199 +∅ -27200 +♓ -27201 +➢ -27202 +ぶ -27203 +仁 -27204 +仲 -27205 +健 -27206 +划 -27207 +半 -27208 +叶 -27209 +吴 -27210 +哀 -27211 +哥 -27212 +問 -27213 +嘉 -27214 +妹 -27215 +实 -27216 +宿 -27217 +寧 -27218 +封 -27219 +尋 -27220 +展 -27221 +岳 -27222 +峰 -27223 +希 -27224 +役 -27225 +徐 -27226 +徒 -27227 +從 -27228 +忍 -27229 +总 -27230 +悪 -27231 +报 -27232 +授 -27233 +散 -27234 +曆 -27235 +查 -27236 +梅 -27237 +森 -27238 +樂 -27239 +樹 -27240 +欢 -27241 +止 -27242 +熱 -27243 +爆 -27244 +留 -27245 +県 -27246 +礼 -27247 +秘 -27248 +突 -27249 +箇 -27250 +算 -27251 +类 -27252 +継 -27253 +習 -27254 +翔 -27255 +耳 -27256 +聲 -27257 +至 -27258 +芝 -27259 +菌 -27260 +蘭 -27261 +虎 -27262 +裡 -27263 +观 -27264 +譚 -27265 +识 -27266 +賞 -27267 +质 -27268 +農 -27269 +追 -27270 +邊 -27271 +配 -27272 +釋 -27273 +防 -27274 +隻 -27275 +鸡 -27276 +금 -27277 +닥 -27278 +당 -27279 +두 -27280 +설 -27281 +열 -27282 +출 -27283 +키 -27284 +후 -27285 +🌊 -27286 +👇 -27287 +’ -27288 +ċ -27289 +˔ -27290 +˦ -27291 +˨ -27292 +̚ -27293 +̣ -27294 +Ы -27295 +ң -27296 +ұ -27297 +ճ -27298 +֑ -27299 +װ -27300 +ؤ -27301 +ۚ -27302 +ܪ -27303 +ऽ -27304 +ঃ -27305 +উ -27306 +ਅ -27307 +ਨ -27308 +ங -27309 +ண -27310 +క -27311 +ೊ -27312 +ോ -27313 +න -27314 +ල -27315 +ව -27316 +ဇ -27317 +ါ -27318 +ყ -27319 +ჱ -27320 +አ -27321 +គ -27322 +ណ -27323 +Ṛ -27324 +Ẓ -27325 +ẻ -27326 +Ἡ -27327 +ὔ -27328 +ᾳ -27329 +↪ -27330 +∝ -27331 +│ -27332 +◊ -27333 +♩ -27334 +⩽ -27335 +ⵓ -27336 +ゅ -27337 +丁 -27338 +两 -27339 +严 -27340 +乱 -27341 +价 -27342 +任 -27343 +侗 -27344 +依 -27345 +侠 -27346 +候 -27347 +假 -27348 +催 -27349 +儿 -27350 +円 -27351 +冒 -27352 +况 -27353 +则 -27354 +副 -27355 +勇 -27356 +勐 -27357 +務 -27358 +區 -27359 +即 -27360 +县 -27361 +叔 -27362 +含 -27363 +図 -27364 +坡 -27365 +塔 -27366 +壽 -27367 +妙 -27368 +委 -27369 +存 -27370 +宇 -27371 +宫 -27372 +寔 -27373 +尚 -27374 +层 -27375 +岛 -27376 +巫 -27377 +幕 -27378 +弥 -27379 +恩 -27380 +悠 -27381 +應 -27382 +扶 -27383 +探 -27384 +故 -27385 +斎 -27386 +斬 -27387 +於 -27388 +旅 -27389 +旭 -27390 +札 -27391 +术 -27392 +格 -27393 +桜 -27394 +植 -27395 +極 -27396 +榮 -27397 +步 -27398 +氷 -27399 +沢 -27400 +湾 -27401 +牌 -27402 +率 -27403 +痛 -27404 +祈 -27405 +禁 -27406 +秦 -27407 +竜 -27408 +简 -27409 +終 -27410 +組 -27411 +結 -27412 +縣 -27413 +绍 -27414 +络 -27415 +统 -27416 +编 -27417 +罪 -27418 +肖 -27419 +舞 -27420 +蒼 -27421 +薔 -27422 +藍 -27423 +衣 -27424 +裝 -27425 +迷 -27426 +銃 -27427 +闇 -27428 +隆 -27429 +電 -27430 +鳩 -27431 +감 -27432 +강 -27433 +르 -27434 +매 -27435 +방 -27436 +베 -27437 +삼 -27438 +심 -27439 +안 -27440 +예 -27441 +온 -27442 +위 -27443 +율 -27444 +줄 -27445 +즈 -27446 +포 -27447 +회 -27448 +🇸 -27449 +🇺 -27450 +😀 -27451 +😊 -27452 +” -27453 +Ă -27454 +į -27455 +ŗ -27456 +Ʌ -27457 +ɩ -27458 +ɽ -27459 +ʉ -27460 +͍ -27461 +Έ -27462 +ΐ -27463 +ѣ -27464 +ӕ -27465 +Յ -27466 +Տ -27467 +ձ -27468 +ֻ -27469 +ٹ -27470 +ڠ -27471 +ۖ -27472 +ܠ -27473 +এ -27474 +ঘ -27475 +ਦ -27476 +ਿ -27477 +ੁ -27478 +ஸ -27479 +ோ -27480 +ప -27481 +ల -27482 +ಧ -27483 +ೀ -27484 +ೇ -27485 +ഭ -27486 +ර -27487 +ස -27488 +ා -27489 +ฉ -27490 +ฝ -27491 +ึ -27492 +ဝ -27493 +ჭ -27494 +ለ -27495 +ር -27496 +የ -27497 +ជ -27498 +ដ -27499 +វ -27500 +ᴜ -27501 +ḗ -27502 +ṳ -27503 +ặ -27504 +Ọ -27505 +Ἕ -27506 +‧ -27507 +∊ -27508 +∎ -27509 +⋆ -27510 +⋯ -27511 +⌘ -27512 +◆ -27513 +♉ -27514 +♏ -27515 +♪ -27516 +✱ -27517 +ⵔ -27518 +ⵙ -27519 +〔 -27520 +〕 -27521 +ぅ -27522 +ざ -27523 +丞 -27524 +両 -27525 +乃 -27526 +乾 -27527 +互 -27528 +什 -27529 +仕 -27530 +传 -27531 +便 -27532 +備 -27533 +傭 -27534 +傷 -27535 +免 -27536 +冷 -27537 +削 -27538 +午 -27539 +员 -27540 +固 -27541 +坤 -27542 +変 -27543 +够 -27544 +奉 -27545 +宅 -27546 +寿 -27547 +尊 -27548 +對 -27549 +岡 -27550 +岩 -27551 +巻 -27552 +巾 -27553 +广 -27554 +彦 -27555 +忘 -27556 +快 -27557 +恆 -27558 +態 -27559 +憶 -27560 +才 -27561 +掛 -27562 +揺 -27563 +摩 -27564 +敏 -27565 +映 -27566 +曜 -27567 +材 -27568 +枝 -27569 +某 -27570 +椿 -27571 +楼 -27572 +標 -27573 +橋 -27574 +殊 -27575 +池 -27576 +浦 -27577 +浮 -27578 +消 -27579 +渡 -27580 +溪 -27581 +澤 -27582 +炎 -27583 +獥 -27584 +玩 -27585 +环 -27586 +甘 -27587 +甫 -27588 +病 -27589 +砲 -27590 +私 -27591 +称 -27592 +索 -27593 +細 -27594 +緑 -27595 +翁 -27596 +联 -27597 +聞 -27598 +芳 -27599 +菩 -27600 +藩 -27601 +蛇 -27602 +視 -27603 +觀 -27604 +詞 -27605 +談 -27606 +譜 -27607 +讀 -27608 +變 -27609 +记 -27610 +论 -27611 +误 -27612 +豆 -27613 +费 -27614 +輝 -27615 +转 -27616 +遊 -27617 +酒 -27618 +采 -27619 +钱 -27620 +铁 -27621 +闘 -27622 +険 -27623 +雀 -27624 +雅 -27625 +雞 -27626 +需 -27627 +霹 -27628 +項 -27629 +顔 -27630 +類 -27631 +顯 -27632 +风 -27633 +飯 -27634 +騒 -27635 +齋 -27636 +달 -27637 +독 -27638 +돌 -27639 +면 -27640 +번 -27641 +법 -27642 +속 -27643 +씨 -27644 +으 -27645 +음 -27646 +커 -27647 +크 -27648 +토 -27649 +푸 -27650 +품 -27651 +혼 -27652 +🇪 -27653 +🇷 -27654 +🙁 -27655 +– -27656 + -27657 +Ġ -27658 +ŝ -27659 +Ǝ -27660 +ɗ -27661 +ɘ -27662 +ɧ -27663 +ʇ -27664 +ʘ -27665 +ʟ -27666 +˞ -27667 +̔ -27668 +̤ -27669 +̺ -27670 +Ъ -27671 +ђ -27672 +ґ -27673 +ٲ -27674 +ڈ -27675 +ڑ -27676 +ژ -27677 +ڪ -27678 +ܘ -27679 +ܝ -27680 +ॉ -27681 +ঽ -27682 +ਤ -27683 +ੇ -27684 +્ -27685 +ீ -27686 +ூ -27687 +ద -27688 +న -27689 +స -27690 +ಬ -27691 +ೋ -27692 +ദ -27693 +മ -27694 +സ -27695 +േ -27696 +ฑ -27697 +ๆ -27698 +ཆ -27699 +པ -27700 +ཚ -27701 +ཡ -27702 +პ -27703 +ჰ -27704 +ჳ -27705 +ዘ -27706 +ᛃ -27707 +ភ -27708 +ល -27709 +᷉ -27710 +ḿ -27711 +Ṯ -27712 +ỵ -27713 +ἥ -27714 +ἦ -27715 +ἷ -27716 +Ἱ -27717 +Ὄ -27718 +ῴ -27719 +⁊ -27720 +₾ -27721 +∧ -27722 +∪ -27723 +≪ -27724 +⌛ -27725 +⎪ -27726 +○ -27727 +♎ -27728 +♫ -27729 +⠀ -27730 +ⴽ -27731 +々 -27732 +ヌ -27733 +企 -27734 +似 -27735 +余 -27736 +併 -27737 +冬 -27738 +几 -27739 +則 -27740 +剧 -27741 +創 -27742 +劃 -27743 +功 -27744 +务 -27745 +助 -27746 +卷 -27747 +咲 -27748 +唄 -27749 +執 -27750 +堆 -27751 +墓 -27752 +壁 -27753 +姚 -27754 +寄 -27755 +實 -27756 +寨 -27757 +寻 -27758 +対 -27759 +尤 -27760 +属 -27761 +庄 -27762 +延 -27763 +廻 -27764 +录 -27765 +彭 -27766 +待 -27767 +怎 -27768 +怒 -27769 +恐 -27770 +惑 -27771 +懷 -27772 +括 -27773 +掌 -27774 +排 -27775 +控 -27776 +摸 -27777 +施 -27778 +显 -27779 +普 -27780 +晴 -27781 +曾 -27782 +构 -27783 +桑 -27784 +検 -27785 +残 -27786 +氾 -27787 +沈 -27788 +温 -27789 +測 -27790 +滿 -27791 +烏 -27792 +牧 -27793 +狀 -27794 +狂 -27795 +珠 -27796 +疊 -27797 +發 -27798 +礁 -27799 +祝 -27800 +祥 -27801 +禮 -27802 +禹 -27803 +秒 -27804 +稲 -27805 +端 -27806 +籠 -27807 +约 -27808 +级 -27809 +纳 -27810 +翻 -27811 +胃 -27812 +脚 -27813 +膺 -27814 +致 -27815 +臺 -27816 +苑 -27817 +荷 -27818 +营 -27819 +落 -27820 +蓮 -27821 +蘄 -27822 +蘇 -27823 +虹 -27824 +蝶 -27825 +裕 -27826 +許 -27827 +說 -27828 +読 -27829 +調 -27830 +護 -27831 +调 -27832 +質 -27833 +車 -27834 +辑 -27835 +返 -27836 +适 -27837 +鈴 -27838 +銖 -27839 +鋼 -27840 +鍵 -27841 +鎮 -27842 +鏡 -27843 +鐵 -27844 +键 -27845 +陣 -27846 +陰 -27847 +陸 -27848 +隴 -27849 +难 -27850 +雑 -27851 +霞 -27852 +革 -27853 +願 -27854 +页 -27855 +饰 -27856 +騎 -27857 +鴻 -27858 +결 -27859 +광 -27860 +까 -27861 +네 -27862 +년 -27863 +데 -27864 +든 -27865 +래 -27866 +려 -27867 +름 -27868 +박 -27869 +발 -27870 +버 -27871 +션 -27872 +왜 -27873 +울 -27874 +취 -27875 +코 -27876 +패 -27877 +할 -27878 +합 -27879 +혹 -27880 +🔴 -27881 +🧠 -27882 +ĉ -27883 +Ÿ -27884 +ǀ -27885 +ǁ -27886 +ǚ -27887 +ȝ -27888 +ȯ -27889 +ɭ -27890 +ʽ -27891 +̬ -27892 +Ѳ -27893 +Ө -27894 +Դ -27895 +Է -27896 +Խ -27897 +Պ -27898 +Վ -27899 +ժ -27900 +֣ -27901 +٣ -27902 +ە -27903 +ܕ -27904 +ܬ -27905 +२ -27906 +ਕ -27907 +ਵ -27908 +ੀ -27909 +య -27910 +ష -27911 +ీ -27912 +ಅ -27913 +ಥ -27914 +ಭ -27915 +ಶ -27916 +റ -27917 +ං -27918 +ක -27919 +ය -27920 +හ -27921 +ซ -27922 +າ -27923 +ཀ -27924 +ཁ -27925 +၃ -27926 +၄ -27927 +შ -27928 +ᛘ -27929 +ខ -27930 +ូ -27931 +ែ -27932 +ំ -27933 +ṓ -27934 +ỉ -27935 +Ἔ -27936 +ἳ -27937 +ὃ -27938 +Ὁ -27939 +ὗ -27940 +‖ -27941 +⁕ -27942 +∏ -27943 +▫ -27944 +✏ -27945 +❌ -27946 +❓ -27947 +➞ -27948 +➨ -27949 +⬇ -27950 +ⵢ -27951 +ぃ -27952 +ぺ -27953 +且 -27954 +乎 -27955 +习 -27956 +亞 -27957 +亮 -27958 +伐 -27959 +优 -27960 +估 -27961 +係 -27962 +俊 -27963 +側 -27964 +傅 -27965 +兰 -27966 +养 -27967 +凤 -27968 +函 -27969 +刊 -27970 +剑 -27971 +剖 -27972 +勒 -27973 +卓 -27974 +協 -27975 +卦 -27976 +厂 -27977 +召 -27978 +吹 -27979 +吾 -27980 +員 -27981 +哪 -27982 +售 -27983 +圓 -27984 +圣 -27985 +址 -27986 +均 -27987 +孙 -27988 +宙 -27989 +尔 -27990 +届 -27991 +岁 -27992 +岸 -27993 +巳 -27994 +帆 -27995 +帳 -27996 +幸 -27997 +底 -27998 +庫 -27999 +异 -28000 +弱 -28001 +弾 -28002 +彌 -28003 +徳 -28004 +恥 -28005 +悼 -28006 +惠 -28007 +愁 -28008 +戏 -28009 +找 -28010 +抽 -28011 +拍 -28012 +拭 -28013 +拱 -28014 +插 -28015 +断 -28016 +晋 -28017 +晶 -28018 +暗 -28019 +末 -28020 +权 -28021 +杯 -28022 +架 -28023 +染 -28024 +査 -28025 +树 -28026 +梁 -28027 +椎 -28028 +概 -28029 +権 -28030 +權 -28031 +歇 -28032 +歡 -28033 +毅 -28034 +涼 -28035 +淘 -28036 +淵 -28037 +湊 -28038 +準 -28039 +溫 -28040 +潜 -28041 +热 -28042 +熙 -28043 +熟 -28044 +燕 -28045 +爵 -28046 +猠 -28047 +獄 -28048 +獣 -28049 +盛 -28050 +矢 -28051 +砂 -28052 +磅 -28053 +祿 -28054 +策 -28055 +粉 -28056 +納 -28057 +紹 -28058 +総 -28059 +總 -28060 +繁 -28061 +織 -28062 +纸 -28063 +耿 -28064 +背 -28065 +胞 -28066 +范 -28067 +莱 -28068 +获 -28069 +蒲 -28070 +蓝 -28071 +虚 -28072 +虫 -28073 +蟠 -28074 +衡 -28075 +袁 -28076 +観 -28077 +覺 -28078 +課 -28079 +謎 -28080 +講 -28081 +識 -28082 +警 -28083 +让 -28084 +设 -28085 +证 -28086 +诗 -28087 +貞 -28088 +費 -28089 +貼 -28090 +賀 -28091 +賢 -28092 +赵 -28093 +較 -28094 +載 -28095 +輔 -28096 +輿 -28097 +较 -28098 +输 -28099 +辛 -28100 +辱 -28101 +込 -28102 +迦 -28103 +遍 -28104 +還 -28105 +邮 -28106 +郷 -28107 +鈥 -28108 +银 -28109 +链 -28110 +閣 -28111 +閱 -28112 +阁 -28113 +际 -28114 +陶 -28115 +階 -28116 +隐 -28117 +隠 -28118 +雜 -28119 +雨 -28120 +霧 -28121 +露 -28122 +静 -28123 +題 -28124 +顾 -28125 +颜 -28126 +鶴 -28127 +鷹 -28128 +麥 -28129 +麻 -28130 +개 -28131 +경 -28132 +골 -28133 +교 -28134 +굳 -28135 +날 -28136 +담 -28137 +되 -28138 +란 -28139 +레 -28140 +록 -28141 +림 -28142 +먹 -28143 +물 -28144 +민 -28145 +반 -28146 +블 -28147 +빠 -28148 +살 -28149 +샤 -28150 +샴 -28151 +슬 -28152 +습 -28153 +실 -28154 +없 -28155 +역 -28156 +월 -28157 +임 -28158 +저 -28159 +적 -28160 +점 -28161 +좋 -28162 +중 -28163 +처 -28164 +추 -28165 +친 -28166 +티 -28167 +플 -28168 +필 -28169 +👍 -28170 +🔗 -28171 +🔼 -28172 +Ĕ -28173 +ģ -28174 +Ĭ -28175 +Ļ -28176 +ƕ -28177 +ƿ -28178 +ɚ -28179 +˗ -28180 +͞ -28181 +Ί -28182 +Ό -28183 +џ -28184 +Ѣ -28185 +ѵ -28186 +ҫ -28187 +һ -28188 +ҽ -28189 +ӏ -28190 +Ե -28191 +Զ -28192 +Ն -28193 +׃ -28194 +؛ -28195 +١ -28196 +ܗ -28197 +ܡ -28198 +ܵ -28199 +१ -28200 +३ -28201 +ই -28202 +ঞ -28203 +਼ -28204 +డ -28205 +ణ -28206 +హ -28207 +ె -28208 +ే -28209 +ಈ -28210 +ಜ -28211 +ೂ -28212 +ങ -28213 +ല -28214 +ശ -28215 +ൂ -28216 +ൊ -28217 +ම -28218 +ු -28219 +ນ -28220 +ສ -28221 +ཐ -28222 +ྡ -28223 +၈ -28224 +ჴ -28225 +ჵ -28226 +ስ -28227 +ብ -28228 +ን -28229 +ደ -28230 +ᚦ -28231 +ᚴ -28232 +ᛆ -28233 +ᛠ -28234 +ᵿ -28235 +ḇ -28236 +Ḍ -28237 +Ḡ -28238 +Ḫ -28239 +Ḵ -28240 +ṝ -28241 +ἂ -28242 +ἢ -28243 +ᾷ -28244 +℣ -28245 +℥ -28246 +⇐ -28247 +━ -28248 +☞ -28249 +♈ -28250 +⚳ -28251 +✉ -28252 +✝ -28253 +✿ -28254 +❦ -28255 +❧ -28256 +➧ -28257 +➲ -28258 +ⴳ -28259 +ⵣ -28260 +づ -28261 +ぬ -28262 +ヅ -28263 +ヲ -28264 +丘 -28265 +丝 -28266 +並 -28267 +举 -28268 +仏 -28269 +仮 -28270 +休 -28271 +众 -28272 +佈 -28273 +低 -28274 +倫 -28275 +倭 -28276 +停 -28277 +偵 -28278 +傣 -28279 +僑 -28280 +儀 -28281 +優 -28282 +允 -28283 +兩 -28284 +册 -28285 +冥 -28286 +冴 -28287 +処 -28288 +凪 -28289 +删 -28290 +办 -28291 +勳 -28292 +勾 -28293 +医 -28294 +占 -28295 +危 -28296 +卿 -28297 +厉 -28298 +厦 -28299 +參 -28300 +又 -28301 +収 -28302 +吗 -28303 +呪 -28304 +响 -28305 +唱 -28306 +培 -28307 +堀 -28308 +堤 -28309 +塚 -28310 +塞 -28311 +央 -28312 +奮 -28313 +妖 -28314 +孔 -28315 +孝 -28316 +宣 -28317 +尽 -28318 +屈 -28319 +崇 -28320 +巡 -28321 +带 -28322 +幽 -28323 +庙 -28324 +庚 -28325 +廣 -28326 +弓 -28327 +復 -28328 +応 -28329 +急 -28330 +悟 -28331 +慈 -28332 +慘 -28333 +慰 -28334 +慶 -28335 +戚 -28336 +批 -28337 +抜 -28338 +拜 -28339 +振 -28340 +换 -28341 +掉 -28342 +採 -28343 +握 -28344 +擬 -28345 +收 -28346 +效 -28347 +敬 -28348 +敷 -28349 +斤 -28350 +昆 -28351 +杨 -28352 +极 -28353 +柔 -28354 +柱 -28355 +柳 -28356 +楊 -28357 +楠 -28358 +槐 -28359 +横 -28360 +檻 -28361 +欲 -28362 +款 -28363 +歲 -28364 +歴 -28365 +歸 -28366 +毕 -28367 +汇 -28368 +汪 -28369 +汽 -28370 +油 -28371 +泰 -28372 +测 -28373 +浩 -28374 +淒 -28375 +淡 -28376 +淨 -28377 +渚 -28378 +漏 -28379 +潘 -28380 +澄 -28381 +灣 -28382 +灰 -28383 +灵 -28384 +烈 -28385 +焼 -28386 +爲 -28387 +父 -28388 +牡 -28389 +犬 -28390 +犯 -28391 +猬 -28392 +獅 -28393 +環 -28394 +甜 -28395 +申 -28396 +畜 -28397 +療 -28398 +益 -28399 +监 -28400 +盒 -28401 +盟 -28402 +監 -28403 +盧 -28404 +瞳 -28405 +破 -28406 +确 -28407 +磁 -28408 +票 -28409 +移 -28410 +竇 -28411 +童 -28412 +竺 -28413 +笔 -28414 +筆 -28415 +箋 -28416 +範 -28417 +粵 -28418 +糎 -28419 +糖 -28420 +紙 -28421 +綺 -28422 +緋 -28423 +緒 -28424 +締 -28425 +緬 -28426 +續 -28427 +纪 -28428 +纲 -28429 +维 -28430 +罰 -28431 +翠 -28432 +職 -28433 +股 -28434 +腐 -28435 +臼 -28436 +舍 -28437 +艺 -28438 +荐 -28439 +荘 -28440 +药 -28441 +莉 -28442 +萨 -28443 +葛 -28444 +董 -28445 +蔡 -28446 +處 -28447 +融 -28448 +衝 -28449 +补 -28450 +襲 -28451 +覓 -28452 +親 -28453 +见 -28454 +觉 -28455 +誌 -28456 +誓 -28457 +誰 -28458 +认 -28459 +诉 -28460 +译 -28461 +豚 -28462 +貓 -28463 +貝 -28464 +負 -28465 +財 -28466 +軒 -28467 +軽 -28468 +车 -28469 +辨 -28470 +逕 -28471 +速 -28472 +避 -28473 +邦 -28474 +郑 -28475 +酷 -28476 +醒 -28477 +釣 -28478 +錦 -28479 +録 -28480 +鑲 -28481 +钟 -28482 +钩 -28483 +附 -28484 +雕 -28485 +靂 -28486 +靖 -28487 +靠 -28488 +頁 -28489 +領 -28490 +频 -28491 +颱 -28492 +验 -28493 +魯 -28494 +鲁 -28495 +鲜 -28496 +鳴 -28497 +鸭 -28498 +鹰 -28499 +鹿 -28500 +黑 -28501 +黨 -28502 +鼎 -28503 +각 -28504 +군 -28505 +궁 -28506 +근 -28507 +난 -28508 +누 -28509 +님 -28510 +런 -28511 +력 -28512 +료 -28513 +밀 -28514 +벌 -28515 +병 -28516 +빛 -28517 +새 -28518 +않 -28519 +약 -28520 +업 -28521 +웃 -28522 +응 -28523 +죽 -28524 +집 -28525 +째 -28526 +춘 -28527 +충 -28528 +츠 -28529 +칼 -28530 +탑 -28531 +텔 -28532 +편 -28533 +풍 -28534 +함 -28535 +허 -28536 +현 -28537 +희 -28538 + -28539 +𐎠 -28540 +🇮 -28541 +👀 -28542 +💻 -28543 +📚 -28544 +📣 -28545 +🚀 -28546 +🤔 -28547 +🤯 -28548 +“ -28549 +Ğ -28550 +ĥ -28551 +Į -28552 +Ķ -28553 +ĸ -28554 +Ŝ -28555 +ƀ -28556 +ƞ -28557 +ƭ -28558 +Ƿ -28559 +Ȝ -28560 +ɰ -28561 +ɺ -28562 +ʄ -28563 +˓ -28564 +̳ -28565 +̵ -28566 +͏ -28567 +Щ -28568 +ѐ -28569 +ѳ -28570 +Ү -28571 +Ҳ -28572 +Բ -28573 +Ը -28574 +Ի -28575 +Ղ -28576 +Ճ -28577 +Ջ -28578 +Փ -28579 +Ք -28580 +ֆ -28581 +ֳ -28582 +ٓ -28583 +٢ -28584 +٧ -28585 +ۀ -28586 +ۇ -28587 +۱ -28588 +ܢ -28589 +ܦ -28590 +ऊ -28591 +ऋ -28592 +झ -28593 +ळ -28594 +ॐ -28595 +থ -28596 +ৌ -28597 +৫ -28598 +ৰ -28599 +ਂ -28600 +ਖ -28601 +ਜ -28602 +ਟ -28603 +ੋ -28604 +ੰ -28605 +ੱ -28606 +ર -28607 +સ -28608 +ા -28609 +ஆ -28610 +இ -28611 +எ -28612 +ற -28613 +ெ -28614 +ே -28615 +ఠ -28616 +బ -28617 +భ -28618 +ో -28619 +ಇ -28620 +ಠ -28621 +ഗ -28622 +ഞ -28623 +ണ -28624 +ള -28625 +ീ -28626 +අ -28627 +ධ -28628 +ฤ -28629 +๊ -28630 +ງ -28631 +ິ -28632 +༢ -28633 +༣ -28634 +ཕ -28635 +ཟ -28636 +ཨ -28637 +ྔ -28638 +ྣ -28639 +ဉ -28640 +ဦ -28641 +ဩ -28642 +၌ -28643 +၏ -28644 +ᄋ -28645 +ሐ -28646 +ሕ -28647 +ማ -28648 +ሰ -28649 +ታ -28650 +ኢ -28651 +ያ -28652 +ድ -28653 +Ꭶ -28654 +ᘯ -28655 +ᚢ -28656 +ᚿ -28657 +ᛏ -28658 +ᛞ -28659 +ញ -28660 +ធ -28661 +អ -28662 +ៀ -28663 +ៅ -28664 +ᡝ -28665 +ᦱ -28666 +ᧈ -28667 +᩠ -28668 +Ḏ -28669 +ṽ -28670 +Ấ -28671 +ὥ -28672 +ὦ -28673 +ὧ -28674 +ᾔ -28675 +ᾱ -28676 +ῄ -28677 +‣ -28678 +⁃ -28679 +₧ -28680 +⃣ -28681 +℔ -28682 +℞ -28683 +↘ -28684 +∉ -28685 +∨ -28686 +≅ -28687 +≧ -28688 +⍵ -28689 +⎬ -28690 +╭ -28691 +╯ -28692 +▯ -28693 +◎ -28694 +♇ -28695 +⚙ -28696 +❗ -28697 +ⱱ -28698 +ⴼ -28699 +ⵖ -28700 +ⵡ -28701 +ぜ -28702 +ぱ -28703 +ぷ -28704 +专 -28705 +丙 -28706 +丰 -28707 +乘 -28708 +买 -28709 +亂 -28710 +予 -28711 +亜 -28712 +亲 -28713 +仅 -28714 +仍 -28715 +仪 -28716 +伏 -28717 +伙 -28718 +伟 -28719 +侍 -28720 +俗 -28721 +俭 -28722 +們 -28723 +借 -28724 +偶 -28725 +偽 -28726 +兎 -28727 +农 -28728 +决 -28729 +凯 -28730 +凰 -28731 +刚 -28732 +剥 -28733 +剩 -28734 +势 -28735 +勉 -28736 +勢 -28737 +匠 -28738 +厄 -28739 +压 -28740 +厚 -28741 +叙 -28742 +叡 -28743 +叫 -28744 +吃 -28745 +吞 -28746 +吟 -28747 +否 -28748 +吧 -28749 +启 -28750 +喝 -28751 +嘛 -28752 +噛 -28753 +噭 -28754 +囃 -28755 +圃 -28756 +圾 -28757 +块 -28758 +坚 -28759 +坝 -28760 +坪 -28761 +垃 -28762 +垣 -28763 +堅 -28764 +塘 -28765 +塩 -28766 +墨 -28767 +売 -28768 +契 -28769 +套 -28770 +奴 -28771 +姑 -28772 +姿 -28773 +威 -28774 +娘 -28775 +婚 -28776 +宏 -28777 +害 -28778 +寇 -28779 +寝 -28780 +察 -28781 +射 -28782 +尸 -28783 +尺 -28784 +屍 -28785 +屬 -28786 +嶋 -28787 +巴 -28788 +庆 -28789 +庇 -28790 +庵 -28791 +廟 -28792 +廳 -28793 +弐 -28794 +弧 -28795 +彤 -28796 +往 -28797 +怀 -28798 +怖 -28799 +怡 -28800 +恼 -28801 +悔 -28802 +您 -28803 +愚 -28804 +愿 -28805 +慎 -28806 +戊 -28807 +戒 -28808 +户 -28809 +戻 -28810 +扇 -28811 +托 -28812 +执 -28813 +抗 -28814 +折 -28815 +抱 -28816 +拾 -28817 +捷 -28818 +掲 -28819 +揭 -28820 +援 -28821 +損 -28822 +撞 -28823 +操 -28824 +攝 -28825 +救 -28826 +既 -28827 +旧 -28828 +昂 -28829 +昇 -28830 +昼 -28831 +暦 -28832 +暴 -28833 +朋 -28834 +朗 -28835 +朽 -28836 +杀 -28837 +杂 -28838 +柚 -28839 +核 -28840 +桌 -28841 +桓 -28842 +棟 -28843 +樊 -28844 +樓 -28845 +樸 -28846 +櫓 -28847 +欣 -28848 +歓 -28849 +毒 -28850 +毘 -28851 +汤 -28852 +決 -28853 +沂 -28854 +沼 -28855 +泊 -28856 +泗 -28857 +泡 -28858 +泣 -28859 +泥 -28860 +济 -28861 +浜 -28862 +涉 -28863 +润 -28864 +混 -28865 +渐 -28866 +渠 -28867 +湯 -28868 +満 -28869 +漂 -28870 +漠 -28871 +炭 -28872 +烧 -28873 +焉 -28874 +焔 -28875 +營 -28876 +猪 -28877 +珍 -28878 +瑪 -28879 +璃 -28880 +産 -28881 +症 -28882 +瘢 -28883 +癥 -28884 +盐 -28885 +盘 -28886 +眇 -28887 +瞬 -28888 +码 -28889 +碗 -28890 +碳 -28891 +磨 -28892 +祀 -28893 +祓 -28894 +祠 -28895 +租 -28896 +窗 -28897 +窝 -28898 +笛 -28899 +笠 -28900 +符 -28901 +签 -28902 +簡 -28903 +籍 -28904 +粍 -28905 +糕 -28906 +糙 -28907 +糸 -28908 +経 -28909 +絡 -28910 +絶 -28911 +続 -28912 +綾 -28913 +繼 -28914 +羊 -28915 +聚 -28916 +聯 -28917 +肃 -28918 +肘 -28919 +肩 -28920 +胸 -28921 +脇 -28922 +脈 -28923 +脏 -28924 +脳 -28925 +腳 -28926 +腿 -28927 +臨 -28928 +芥 -28929 +芸 -28930 +芽 -28931 +苏 -28932 +苦 -28933 +茸 -28934 +荊 -28935 +荒 -28936 +莲 -28937 +菊 -28938 +菱 -28939 +萍 -28940 +蒙 -28941 +蒿 -28942 +蕉 -28943 +蕭 -28944 +蚩 -28945 +蛋 -28946 +袋 -28947 +製 -28948 +规 -28949 +詔 -28950 +詠 -28951 +詳 -28952 +謁 -28953 +謡 -28954 +评 -28955 +诺 -28956 +貫 -28957 +賜 -28958 +贝 -28959 +财 -28960 +贵 -28961 +赛 -28962 +趣 -28963 +跟 -28964 +软 -28965 +轻 -28966 +辉 -28967 +辞 -28968 +辭 -28969 +辰 -28970 +迅 -28971 +还 -28972 +迪 -28973 +遇 -28974 +遥 -28975 +邵 -28976 +郭 -28977 +鄭 -28978 +酉 -28979 +釈 -28980 +錨 -28981 +鎖 -28982 +铜 -28983 +閃 -28984 +阪 -28985 +隔 -28986 +隱 -28987 +隸 -28988 +離 -28989 +難 -28990 +雳 -28991 +霜 -28992 +響 -28993 +頒 -28994 +顏 -28995 +顺 -28996 +领 -28997 +飲 -28998 +駢 -28999 +験 -29000 +騰 -29001 +驗 -29002 +驚 -29003 +鬱 -29004 +鱼 -29005 +鶼 -29006 +鹽 -29007 +點 -29008 +鼻 -29009 +ꜛ -29010 +같 -29011 +객 -29012 +건 -29013 +것 -29014 +곤 -29015 +관 -29016 +굿 -29017 +귀 -29018 +글 -29019 +급 -29020 +길 -29021 +낭 -29022 +널 -29023 +녹 -29024 +눈 -29025 +돼 -29026 +떠 -29027 +또 -29028 +량 -29029 +렌 -29030 +렐 -29031 +례 -29032 +른 -29033 +릿 -29034 +망 -29035 +목 -29036 +배 -29037 +봐 -29038 +빙 -29039 +빵 -29040 +쁜 -29041 +석 -29042 +센 -29043 +손 -29044 +쇼 -29045 +슘 -29046 +싶 -29047 +앙 -29048 +언 -29049 +엄 -29050 +옥 -29051 +왔 -29052 +외 -29053 +욕 -29054 +웨 -29055 +쟁 -29056 +절 -29057 +족 -29058 +종 -29059 +질 -29060 +찬 -29061 +총 -29062 +최 -29063 +카 -29064 +케 -29065 +클 -29066 +킹 -29067 +탁 -29068 +통 -29069 +판 -29070 +표 -29071 +활 -29072 +𐌰 -29073 +𐎢 -29074 +𐎼 -29075 +𐐓 -29076 +𐐝 -29077 +🇰 -29078 +🌟 -29079 +🎯 -29080 +🐡 -29081 +👋 -29082 +👩 -29083 +💕 -29084 +💛 -29085 +💡 -29086 +📍 -29087 +🔒 -29088 +😃 -29089 +🤷 -29090 +ĵ -29091 +ĺ -29092 +Ń -29093 +ŕ -29094 +Ɔ -29095 +ƈ -29096 +ƙ -29097 +ƥ -29098 +Ư -29099 +Ǧ -29100 +Ǫ -29101 +ǹ -29102 +ɞ -29103 +ɠ -29104 +ɱ -29105 +ʖ -29106 +ʗ -29107 +ʙ -29108 +ʛ -29109 +ʠ -29110 +˒ -29111 +˖ -29112 +̑ -29113 +̗ -29114 +ͦ -29115 +Ή -29116 +Ύ -29117 +ϋ -29118 +Є -29119 +Ў -29120 +ѥ -29121 +Ѵ -29122 +ҷ -29123 +ӣ -29124 +ӯ -29125 +Թ -29126 +Ժ -29127 +Լ -29128 +Ձ -29129 +Շ -29130 +Ո -29131 +Ռ -29132 +Օ -29133 +֛ -29134 +֨ -29135 +״ -29136 +؟ -29137 +ٔ -29138 +٦ -29139 +٩ -29140 +ڬ -29141 +ۗ -29142 +ۢ -29143 +ۥ -29144 +۳ -29145 +ܒ -29146 +ܣ -29147 +ܥ -29148 +ܲ -29149 +ܼ -29150 +० -29151 +ঊ -29152 +ঋ -29153 +ঙ -29154 +ছ -29155 +ঠ -29156 +ফ -29157 +ৃ -29158 +৩ -29159 +৭ -29160 +ਇ -29161 +ਘ -29162 +ਬ -29163 +ਮ -29164 +ੈ -29165 +ક -29166 +ય -29167 +વ -29168 +ષ -29169 +ો -29170 +ஃ -29171 +ః -29172 +థ -29173 +ధ -29174 +శ -29175 +ై -29176 +ಎ -29177 +ಖ -29178 +ಫ -29179 +അ -29180 +ഇ -29181 +ഘ -29182 +ജ -29183 +ഴ -29184 +ഹ -29185 +ට -29186 +ත -29187 +ප -29188 +බ -29189 +ැ -29190 +ේ -29191 +ฆ -29192 +ฎ -29193 +ບ -29194 +ພ -29195 +ຫ -29196 +ອ -29197 +ະ -29198 +ັ -29199 +༥ -29200 +༦ -29201 +༧ -29202 +༨ -29203 +༩ -29204 +ཉ -29205 +ཞ -29206 +ཤ -29207 +ྟ -29208 +ྨ -29209 +၅ -29210 +ၼ -29211 +Ⴀ -29212 +Ⴂ -29213 +Ⴃ -29214 +Ⴈ -29215 +Ⴌ -29216 +Ⴕ -29217 +Ⴟ -29218 +ჟ -29219 +ღ -29220 +ჩ -29221 +ჶ -29222 +ჷ -29223 +ჸ -29224 +ჹ -29225 +ჺ -29226 +ᅟ -29227 +ᆞ -29228 +ል -29229 +መ -29230 +ሙ -29231 +ረ -29232 +በ -29233 +ት -29234 +ኤ -29235 +እ -29236 +ዑ -29237 +ይ -29238 +ዮ -29239 +ገ -29240 +ጵ -29241 +ᚠ -29242 +ᚣ -29243 +ᚵ -29244 +ᚹ -29245 +ᚼ -29246 +ᚾ -29247 +ᛄ -29248 +ᛅ -29249 +ᛒ -29250 +ᛗ -29251 +ᛝ -29252 +ឯ -29253 +ឹ -29254 +ួ -29255 +ៃ -29256 +ៈ -29257 +៉ -29258 +ᠢ -29259 +ᠣ -29260 +ᠪ -29261 +ᠰ -29262 +ᡅ -29263 +ᡆ -29264 +ᡥ -29265 +ᡳ -29266 +ᦈ -29267 +ᦹ -29268 +ᨶ -29269 +ᩈ -29270 +ᲀ -29271 +ᶑ -29272 +᷄ -29273 +᷅ -29274 +᷆ -29275 +᷇ -29276 +ḋ -29277 +ḹ -29278 +ṙ -29279 +ẖ -29280 +ỡ -29281 +Ἁ -29282 +ἒ -29283 +ἧ -29284 +ἲ -29285 +ὠ -29286 +Ὠ -29287 +ᾰ -29288 +‬ -29289 +⁢ -29290 +₯ -29291 +⃒ -29292 +⇣ -29293 +∛ -29294 +∣ -29295 +∥ -29296 +≔ -29297 +≟ -29298 +≦ -29299 +≫ -29300 +≮ -29301 +≲ -29302 +⊢ -29303 +⊣ -29304 +⊨ -29305 +⊳ -29306 +⊸ -29307 +⎛ -29308 +⎝ -29309 +⎞ -29310 +⎠ -29311 +⎫ -29312 +⎭ -29313 +␤ -29314 +╳ -29315 +▷ -29316 +▻ -29317 +▾ -29318 +◌ -29319 +◳ -29320 +◼ -29321 +☃ -29322 +☄ -29323 +☛ -29324 +☧ -29325 +☫ -29326 +☻ -29327 +☼ -29328 +☾ -29329 +♄ -29330 +♆ -29331 +♬ -29332 +⚵ -29333 +⛄ -29334 +✘ -29335 +✡ -29336 +✦ -29337 +❙ -29338 +❝ -29339 +❞ -29340 +❯ -29341 +❶ -29342 +ⱷ -29343 +ⲧ -29344 +ⲩ -29345 +ⵇ -29346 +ⵛ -29347 +ⵟ -29348 +ぞ -29349 +ゾ -29350 +ヂ -29351 +ヶ -29352 +丈 -29353 +丽 -29354 +乡 -29355 +乳 -29356 +亡 -29357 +亨 -29358 +份 -29359 +伪 -29360 +伴 -29361 +侨 -29362 +侵 -29363 +促 -29364 +俄 -29365 +俱 -29366 +倒 -29367 +値 -29368 +倪 -29369 +倾 -29370 +僧 -29371 +儚 -29372 +兆 -29373 +兒 -29374 +兜 -29375 +兴 -29376 +冠 -29377 +冯 -29378 +冲 -29379 +减 -29380 +凝 -29381 +凹 -29382 +刃 -29383 +刑 -29384 +创 -29385 +勅 -29386 +勞 -29387 +卖 -29388 +卢 -29389 +卯 -29390 +却 -29391 +厝 -29392 +叉 -29393 +叠 -29394 +叻 -29395 +吐 -29396 +呂 -29397 +呈 -29398 +咫 -29399 +哉 -29400 +喇 -29401 +喋 -29402 +喚 -29403 +喬 -29404 +嘗 -29405 +嚴 -29406 +团 -29407 +园 -29408 +圈 -29409 +圍 -29410 +坊 -29411 +坦 -29412 +埃 -29413 +埔 -29414 +堡 -29415 +堯 -29416 +塵 -29417 +壌 -29418 +壓 -29419 +壬 -29420 +壯 -29421 +壱 -29422 +备 -29423 +夔 -29424 +夷 -29425 +夸 -29426 +奄 -29427 +奏 -29428 +奐 -29429 +奢 -29430 +奧 -29431 +妃 -29432 +妇 -29433 +妮 -29434 +妻 -29435 +姊 -29436 +姐 -29437 +姓 -29438 +姥 -29439 +娜 -29440 +婁 -29441 +婆 -29442 +嫁 -29443 +宁 -29444 +宴 -29445 +宵 -29446 +寂 -29447 +寛 -29448 +審 -29449 +寬 -29450 +寸 -29451 +專 -29452 +導 -29453 +尧 -29454 +屠 -29455 +岐 -29456 +岬 -29457 +嵐 -29458 +嶺 -29459 +嶼 -29460 +巖 -29461 +帕 -29462 +席 -29463 +帮 -29464 +帰 -29465 +帶 -29466 +帽 -29467 +幡 -29468 +幣 -29469 +庁 -29470 +広 -29471 +床 -29472 +库 -29473 +廉 -29474 +廊 -29475 +廖 -29476 +廬 -29477 +弁 -29478 +弟 -29479 +弹 -29480 +彎 -29481 +彙 -29482 +彪 -29483 +径 -29484 +徹 -29485 +徽 -29486 +忌 -29487 +忙 -29488 +恭 -29489 +恰 -29490 +恵 -29491 +悦 -29492 +惊 -29493 +惜 -29494 +惡 -29495 +慧 -29496 +憂 -29497 +憑 -29498 +戈 -29499 +戴 -29500 +戶 -29501 +扈 -29502 +扎 -29503 +抄 -29504 +抓 -29505 +択 -29506 +护 -29507 +拐 -29508 +招 -29509 +拟 -29510 +挂 -29511 +挑 -29512 +挠 -29513 +挣 -29514 +挥 -29515 +捡 -29516 +捥 -29517 +捩 -29518 +捯 -29519 +捲 -29520 +捴 -29521 +描 -29522 +換 -29523 +揽 -29524 +搭 -29525 +摆 -29526 +播 -29527 +撲 -29528 +擊 -29529 +據 -29530 +敢 -29531 +斜 -29532 +旨 -29533 +昏 -29534 +晉 -29535 +晒 -29536 +暁 -29537 +曦 -29538 +曰 -29539 +替 -29540 +朔 -29541 +朧 -29542 +朩 -29543 +朴 -29544 +杉 -29545 +杖 -29546 +柩 -29547 +柯 -29548 +栗 -29549 +桀 -29550 +桂 -29551 +桐 -29552 +桶 -29553 +梦 -29554 +梨 -29555 +梶 -29556 +检 -29557 +棒 -29558 +棘 -29559 +棚 -29560 +棺 -29561 +椒 -29562 +榔 -29563 +榜 -29564 +槻 -29565 +樣 -29566 +橘 -29567 +橫 -29568 +檀 -29569 +櫻 -29570 +欧 -29571 +欽 -29572 +歐 -29573 +歟 -29574 +毫 -29575 +毬 -29576 +氮 -29577 +汐 -29578 +汗 -29579 +汚 -29580 +污 -29581 +汶 -29582 +沃 -29583 +沉 -29584 +沒 -29585 +沛 -29586 +沿 -29587 +況 -29588 +洛 -29589 +浙 -29590 +涙 -29591 +涵 -29592 +淇 -29593 +淑 -29594 +淙 -29595 +淚 -29596 +淹 -29597 +添 -29598 +渊 -29599 +渣 -29600 +渦 -29601 +渾 -29602 +湘 -29603 +滅 -29604 +漫 -29605 +漸 -29606 +潟 -29607 +潤 -29608 +潺 -29609 +澳 -29610 +濁 -29611 +濃 -29612 +濡 -29613 +灌 -29614 +灶 -29615 +災 -29616 +灾 -29617 +炬 -29618 +烟 -29619 +烦 -29620 +煌 -29621 +煙 -29622 +煜 -29623 +煤 -29624 +熔 -29625 +燃 -29626 +爺 -29627 +爻 -29628 +爾 -29629 +犁 -29630 +狩 -29631 +狮 -29632 +狸 -29633 +猛 -29634 +猩 -29635 +献 -29636 +猿 -29637 +獎 -29638 +獭 -29639 +獵 -29640 +獻 -29641 +玖 -29642 +玲 -29643 +珂 -29644 +珙 -29645 +琦 -29646 +琪 -29647 +琴 -29648 +瑜 -29649 +瑠 -29650 +璋 -29651 +璠 -29652 +瓊 -29653 +瓜 -29654 +瓩 -29655 +甕 -29656 +甚 -29657 +產 -29658 +畢 -29659 +疆 -29660 +痊 -29661 +痘 -29662 +痧 -29663 +瘡 -29664 +癒 -29665 +癜 -29666 +癡 -29667 +皙 -29668 +皚 -29669 +皿 -29670 +盆 -29671 +盗 -29672 +盤 -29673 +盼 -29674 +眞 -29675 +眠 -29676 +督 -29677 +矩 -29678 +矮 -29679 +砕 -29680 +硕 -29681 +碎 -29682 +碼 -29683 +磊 -29684 +磐 -29685 +祐 -29686 +祳 -29687 +祴 -29688 +祺 -29689 +禄 -29690 +禰 -29691 +稻 -29692 +稽 -29693 +穂 -29694 +窓 -29695 +窟 -29696 +竟 -29697 +笨 -29698 +箱 -29699 +籌 -29700 +籵 -29701 +粁 -29702 +粒 -29703 +粥 -29704 +粨 -29705 +糟 -29706 +紇 -29707 +紘 -29708 +級 -29709 +紧 -29710 +給 -29711 +維 -29712 +綱 -29713 +緩 -29714 +練 -29715 +繹 -29716 +纯 -29717 +终 -29718 +继 -29719 +综 -29720 +缩 -29721 +缺 -29722 +罠 -29723 +羲 -29724 +翅 -29725 +耶 -29726 +职 -29727 +聡 -29728 +胆 -29729 +胴 -29730 +腰 -29731 +腹 -29732 +膀 -29733 +膜 -29734 +臂 -29735 +臚 -29736 +臭 -29737 +舎 -29738 +舒 -29739 +艘 -29740 +芒 -29741 +芙 -29742 +芦 -29743 +芬 -29744 +芭 -29745 +茅 -29746 +茜 -29747 +茫 -29748 +莫 -29749 +萌 -29750 +萧 -29751 +葭 -29752 +蒭 -29753 +蔭 -29754 +蕃 -29755 +薙 -29756 +薛 -29757 +薫 -29758 +藕 -29759 +藝 -29760 +藥 -29761 +蘿 -29762 +虜 -29763 +號 -29764 +虽 -29765 +蚓 -29766 +蚯 -29767 +蜡 -29768 +蝴 -29769 +蠕 -29770 +衆 -29771 +衢 -29772 +袖 -29773 +裂 -29774 +裨 -29775 +裸 -29776 +襄 -29777 +襟 -29778 +覇 -29779 +触 -29780 +訂 -29781 +訊 -29782 +討 -29783 +訳 -29784 +証 -29785 +該 -29786 +誉 -29787 +認 -29788 +誒 -29789 +誕 -29790 +誘 -29791 +誠 -29792 +誡 -29793 +請 -29794 +諾 -29795 +謂 -29796 +謝 -29797 +譌 -29798 +讲 -29799 +讽 -29800 +诚 -29801 +询 -29802 +诱 -29803 +诶 -29804 +谈 -29805 +谋 -29806 +谢 -29807 +谦 -29808 +谨 -29809 +谭 -29810 +豫 -29811 +豹 -29812 +貌 -29813 +貨 -29814 +購 -29815 +贈 -29816 +责 -29817 +贤 -29818 +败 -29819 +购 -29820 +跖 -29821 +跳 -29822 +軌 -29823 +轉 -29824 +辆 -29825 +辣 -29826 +辯 -29827 +远 -29828 +透 -29829 +逐 -29830 +途 -29831 +逢 -29832 +逻 -29833 +遂 -29834 +遗 -29835 +遙 -29836 +遮 -29837 +遺 -29838 +遼 -29839 +邋 -29840 +邑 -29841 +邓 -29842 +邱 -29843 +郁 -29844 +郊 -29845 +酈 -29846 +酥 -29847 +酸 -29848 +醫 -29849 +鈍 -29850 +鉦 -29851 +鉱 -29852 +鉴 -29853 +銅 -29854 +鋪 -29855 +錡 -29856 +錢 -29857 +鍋 -29858 +鍾 -29859 +铅 -29860 +铎 -29861 +销 -29862 +锡 -29863 +镇 -29864 +閏 -29865 +閒 -29866 +閻 -29867 +闕 -29868 +阴 -29869 +陛 -29870 +隍 -29871 +隗 -29872 +際 -29873 +隼 -29874 +雇 -29875 +雉 -29876 +雎 -29877 +雙 -29878 +霆 -29879 +霍 -29880 +霖 -29881 +霸 -29882 +鞋 -29883 +韋 -29884 +韩 -29885 +韶 -29886 +頂 -29887 +頃 -29888 +順 -29889 +須 -29890 +頓 -29891 +须 -29892 +颗 -29893 +颪 -29894 +飄 -29895 +養 -29896 +餐 -29897 +餑 -29898 +饮 -29899 +饼 -29900 +饾 -29901 +馮 -29902 +駆 -29903 +駒 -29904 +髀 -29905 +鬪 -29906 +鰐 -29907 +鱀 -29908 +鵩 -29909 +鵬 -29910 +鹹 -29911 +麗 -29912 +黎 -29913 +默 -29914 +黛 -29915 +鼉 -29916 +鼠 -29917 +齊 -29918 +ꜜ -29919 +Ɡ -29920 +ꞵ -29921 +ꭓ -29922 +검 -29923 +겠 -29924 +겨 -29925 +격 -29926 +괜 -29927 +권 -29928 +균 -29929 +께 -29930 +났 -29931 +넌 -29932 +념 -29933 +늘 -29934 +덟 -29935 +뎐 -29936 +등 -29937 +딸 -29938 +때 -29939 +락 -29940 +랙 -29941 +랜 -29942 +럼 -29943 +럽 -29944 +렬 -29945 +론 -29946 +롭 -29947 +룡 -29948 +류 -29949 +립 -29950 +링 -29951 +많 -29952 +멜 -29953 +못 -29954 +몽 -29955 +믿 -29956 +및 -29957 +밤 -29958 +밥 -29959 +뱀 -29960 +변 -29961 +본 -29962 +봄 -29963 +봇 -29964 +봉 -29965 +빅 -29966 +빈 -29967 +빤 -29968 +빨 -29969 +뿐 -29970 +색 -29971 +섬 -29972 +셔 -29973 +숭 -29974 +슴 -29975 +싸 -29976 +쓰 -29977 +쓸 -29978 +악 -29979 +압 -29980 +앨 -29981 +앵 -29982 +억 -29983 +얽 -29984 +었 -29985 +엔 -29986 +였 -29987 +윤 -29988 +작 -29989 +잡 -29990 +져 -29991 +졌 -29992 +좌 -29993 +직 -29994 +징 -29995 +짜 -29996 +착 -29997 +찮 -29998 +채 -29999 +책 -30000 +첫 -30001 +체 -30002 +쳐 -30003 +캐 -30004 +캔 -30005 +컬 -30006 +쿨 -30007 +킬 -30008 +탐 -30009 +테 -30010 +템 -30011 +퇴 -30012 +특 -30013 +틱 -30014 +퐁 -30015 +풀 -30016 +핍 -30017 +헌 -30018 +헬 -30019 +형 -30020 +홀 -30021 +홉 -30022 +힐 -30023 +𐌴 -30024 +𐌹 -30025 +𐎭 -30026 +𐎹 -30027 +𐏁 -30028 +𐐈 -30029 +𐐊 -30030 +𐐗 -30031 +𐐿 -30032 +𐑌 -30033 +𐬥 -30034 +𐬵 -30035 +𐭉 -30036 +𐭕 -30037 +𒀭 -30038 +🇦 -30039 +🇧 -30040 +🇩 -30041 +🇫 -30042 +🇭 -30043 +🇱 -30044 +🇳 -30045 +🇴 -30046 +🇵 -30047 +🇹 -30048 +🌎 -30049 +🌸 -30050 +🌿 -30051 +🎉 -30052 +🎨 -30053 +🏼 -30054 +🏾 -30055 +👁 -30056 +👂 -30057 +👦 -30058 +💎 -30059 +💪 -30060 +💫 -30061 +💸 -30062 +📕 -30063 +📝 -30064 +😂 -30065 +😍 -30066 +😎 -30067 +😦 -30068 +😱 -30069 +🚨 -30070 +🦄 -30071 +œ -30072 +Ą -30073 +Ċ -30074 +Ę -30075 +Ĝ -30076 +Ģ -30077 +Ĥ -30078 +Ň -30079 +Ŋ -30080 +Ŏ -30081 +Ő -30082 +Ŕ -30083 +Ŗ -30084 +ŧ -30085 +Ů -30086 +Ű -30087 +Ŷ -30088 +Ƈ -30089 +Ɖ -30090 +ƍ -30091 +Ɛ -30092 +Ɣ -30093 +ƛ -30094 +Ƣ -30095 +Ʋ -30096 +ƴ -30097 +Ǒ -30098 +Ǣ -30099 +ǭ -30100 +Ǹ -30101 +Ǻ -30102 +ǽ -30103 +ȧ -30104 +ȷ -30105 +ȼ -30106 +Ɉ -30107 +ɶ -30108 +ɷ -30109 +ʡ -30110 +ʢ -30111 +˂ -30112 +˄ -30113 +ˊ -30114 +ˋ -30115 +˕ -30116 +ˮ -30117 +̏ -30118 +̕ -30119 +̖ -30120 +̙ -30121 +̜ -30122 +̢ -30123 +̮ -30124 +͌ -30125 +͟ -30126 +ͣ -30127 +ϝ -30128 +ϟ -30129 +ϩ -30130 +Ё -30131 +Ѕ -30132 +Ї -30133 +Љ -30134 +Ћ -30135 +ѝ -30136 +Ѡ -30137 +ѡ -30138 +ѧ -30139 +Ѯ -30140 +ѹ -30141 +҃ -30142 +҅ -30143 +҆ -30144 +җ -30145 +Қ -30146 +ҡ -30147 +ӓ -30148 +Ӷ -30149 +ӷ -30150 +Ծ -30151 +Չ -30152 +Ր -30153 +Ց -30154 +Ւ -30155 +Ֆ -30156 +֕ -30157 +֗ -30158 +֜ -30159 +֞ -30160 +֠ -30161 +֧ -30162 +֮ -30163 +׀ -30164 +٤ -30165 +٥ -30166 +٨ -30167 +ڕ -30168 +ږ -30169 +ښ -30170 +ڛ -30171 +ګ -30172 +ڵ -30173 +ۆ -30174 +ۍ -30175 +۰ -30176 +۵ -30177 +۹ -30178 +ܔ -30179 +ܙ -30180 +ܚ -30181 +ܛ -30182 +ܫ -30183 +݂ -30184 +ऐ -30185 +ऑ -30186 +ॅ -30187 +ॆ -30188 +ॊ -30189 +४ -30190 +८ -30191 +ঁ -30192 +ও -30193 +ঢ -30194 +ূ -30195 +ৈ -30196 +ৎ -30197 +১ -30198 +৪ -30199 +ਉ -30200 +ਝ -30201 +ਪ -30202 +ં -30203 +ખ -30204 +ઠ -30205 +ધ -30206 +ફ -30207 +બ -30208 +લ -30209 +હ -30210 +િ -30211 +ી -30212 +ૌ -30213 +ପ -30214 +ର -30215 +ୀ -30216 +ୁ -30217 +ஈ -30218 +ஒ -30219 +ஜ -30220 +ஞ -30221 +ఒ -30222 +ఓ -30223 +ఖ -30224 +జ -30225 +ట -30226 +ూ -30227 +ౌ -30228 +ಃ -30229 +ಆ -30230 +ಏ -30231 +ಒ -30232 +ಱ -30233 +ೌ -30234 +ೞ -30235 +ഉ -30236 +ഠ -30237 +ഡ -30238 +ധ -30239 +ൈ -30240 +ൌ -30241 +ർ -30242 +ൽ -30243 +උ -30244 +එ -30245 +ග -30246 +ජ -30247 +ඩ -30248 +ශ -30249 +ළ -30250 +ෑ -30251 +ී -30252 +ෙ -30253 +ෝ -30254 +ฏ -30255 +ฬ -30256 +ຊ -30257 +ຍ -30258 +ດ -30259 +ທ -30260 +ມ -30261 +ລ -30262 +ວ -30263 +ແ -30264 +ໄ -30265 +່ -30266 +༠ -30267 +ཅ -30268 +ཇ -30269 +ཙ -30270 +ཛ -30271 +ཧ -30272 +ྗ -30273 +ྙ -30274 +ྤ -30275 +ྥ -30276 +ྭ -30277 +ྰ -30278 +ဓ -30279 +ဥ -30280 +၎ -30281 +ႃ -30282 +ᅡ -30283 +ᅩ -30284 +ሀ -30285 +ላ -30286 +ሓ -30287 +ሥ -30288 +ራ -30289 +ቄ -30290 +ቆ -30291 +ቈ -30292 +ቱ -30293 +ቲ -30294 +ነ -30295 +ና -30296 +ኖ -30297 +ኛ -30298 +ኣ -30299 +ከ -30300 +ኲ -30301 +ዕ -30302 +ዛ -30303 +ጅ -30304 +ጉ -30305 +ጎ -30306 +ጥ -30307 +ፈ -30308 +ፍ -30309 +Ꭰ -30310 +Ꭳ -30311 +Ꭸ -30312 +Ꭹ -30313 +Ꮀ -30314 +Ꮃ -30315 +Ꮉ -30316 +Ꮝ -30317 +Ꮿ -30318 +Ᏹ -30319 +ᐊ -30320 +ᐳ -30321 +ᑲ -30322 +ᒡ -30323 +ᓘ -30324 +ᚨ -30325 +ᚩ -30326 +ᚬ -30327 +ᚮ -30328 +ᚯ -30329 +ᚷ -30330 +ᚻ -30331 +ᛇ -30332 +ᛉ -30333 +ᛕ -30334 +ᛦ -30335 +ឆ -30336 +ឋ -30337 +ថ -30338 +ឥ -30339 +ឪ -30340 +ឫ -30341 +឵ -30342 +ឺ -30343 +៖ -30344 +ᠠ -30345 +ᠨ -30346 +ᠭ -30347 +ᠯ -30348 +ᠱ -30349 +ᠲ -30350 +ᠳ -30351 +ᠴ -30352 +ᠷ -30353 +ᡋ -30354 +ᡎ -30355 +ᡐ -30356 +ᡑ -30357 +ᡔ -30358 +ᡨ -30359 +ᦉ -30360 +ᦋ -30361 +ᦑ -30362 +ᦓ -30363 +ᦗ -30364 +ᦘ -30365 +ᦲ -30366 +ᦵ -30367 +ᦺ -30368 +ᧁ -30369 +ᧃ -30370 +᧑ -30371 +᧒ -30372 +ᨦ -30373 +ᨷ -30374 +ᨻ -30375 +ᩋ -30376 +ᩢ -30377 +ᩣ -30378 +ᩥ -30379 +ᴥ -30380 +ᵺ -30381 +᷈ -30382 +᷽ -30383 +ḕ -30384 +Ḣ -30385 +Ḩ -30386 +ḭ -30387 +ṕ -30388 +Ṙ -30389 +Ṝ -30390 +Ṧ -30391 +Ṫ -30392 +ṵ -30393 +Ṽ -30394 +ẋ -30395 +Ẩ -30396 +Ề -30397 +Ờ -30398 +Ụ -30399 +Ứ -30400 +ỷ -30401 +ἃ -30402 +Ἅ -30403 +ἣ -30404 +Ἶ -30405 +ὂ -30406 +Ὀ -30407 +Ὅ -30408 +Ὑ -30409 +Ὕ -30410 +ὣ -30411 +ὤ -30412 +Ὡ -30413 +ᾅ -30414 +ᾓ -30415 +ᾤ -30416 +Ὲ -30417 +ῐ -30418 +ῑ -30419 +ῒ -30420 +Ὶ -30421 +ῠ -30422 +ῡ -30423 +⁠ -30424 +₴ -30425 +₼ -30426 +↕ -30427 +↙ -30428 +↷ -30429 +⇓ -30430 +⇔ -30431 +⇪ -30432 +∤ -30433 +∵ -30434 +∽ -30435 +≯ -30436 +≺ -30437 +≼ -30438 +≽ -30439 +⊆ -30440 +⊞ -30441 +⊭ -30442 +⋂ -30443 +⌜ -30444 +⌝ -30445 +⌥ -30446 +⌫ -30447 +⎈ -30448 +⎨ -30449 +⏐ -30450 +⏰ -30451 +⏲ -30452 +┴ -30453 +╗ -30454 +╥ -30455 +▒ -30456 +▴ -30457 +▵ -30458 +◀ -30459 +◄ -30460 +◇ -30461 +◉ -30462 +◻ -30463 +☀ -30464 +☘ -30465 +☠ -30466 +☢ -30467 +☥ -30468 +☭ -30469 +☵ -30470 +☶ -30471 +☹ -30472 +☽ -30473 +♅ -30474 +♡ -30475 +⚖ -30476 +⚠ -30477 +⚴ -30478 +⛔ -30479 +⛢ -30480 +⛷ -30481 +✍ -30482 +✤ -30483 +❅ -30484 +❆ -30485 +❛ -30486 +❜ -30487 +➡ -30488 +➭ -30489 +⤵ -30490 +⧫ -30491 +⫶ -30492 +⬆ -30493 +ⲁ -30494 +ⲏ -30495 +ⲓ -30496 +ⲗ -30497 +ⲛ -30498 +ⲟ -30499 +ⲣ -30500 +ⲥ -30501 +Ⲫ -30502 +ⲱ -30503 +ⵃ -30504 +ⵕ -30505 +⸨ -30506 +⸩ -30507 +⸮ -30508 +⸻ -30509 +〒 -30510 +〖 -30511 +〗 -30512 +〞 -30513 +ぇ -30514 +ぴ -30515 +ゑ -30516 +㭺 -30517 +䷃ -30518 +丧 -30519 +丨 -30520 +临 -30521 +丶 -30522 +丼 -30523 +丿 -30524 +乌 -30525 +乐 -30526 +乔 -30527 +乚 -30528 +乛 -30529 +乩 -30530 +亀 -30531 +亅 -30532 +亰 -30533 +亿 -30534 +仇 -30535 +仔 -30536 +仰 -30537 +仿 -30538 +伞 -30539 +伤 -30540 +伸 -30541 +伽 -30542 +佃 -30543 +佘 -30544 +侧 -30545 +侬 -30546 +侮 -30547 +俳 -30548 +倍 -30549 +偁 -30550 +偃 -30551 +偏 -30552 +偷 -30553 +傀 -30554 +傑 -30555 +傘 -30556 +働 -30557 +億 -30558 +儒 -30559 +儡 -30560 +児 -30561 +兔 -30562 +党 -30563 +兼 -30564 +冀 -30565 +冉 -30566 +冊 -30567 +冫 -30568 +冶 -30569 +准 -30570 +凧 -30571 +凱 -30572 +凶 -30573 +击 -30574 +刮 -30575 +券 -30576 +刹 -30577 +剪 -30578 +割 -30579 +劍 -30580 +劣 -30581 +励 -30582 +労 -30583 +勃 -30584 +勘 -30585 +勤 -30586 +勸 -30587 +勿 -30588 +匕 -30589 +协 -30590 +卐 -30591 +単 -30592 +卜 -30593 +卫 -30594 +卸 -30595 +厥 -30596 +厩 -30597 +叛 -30598 +叢 -30599 +另 -30600 +叭 -30601 +叮 -30602 +吊 -30603 +吒 -30604 +吕 -30605 +吨 -30606 +吻 -30607 +呉 -30608 +呢 -30609 +咀 -30610 +咆 -30611 +咖 -30612 +咧 -30613 +咨 -30614 +咩 -30615 +咬 -30616 +咸 -30617 +哦 -30618 +哭 -30619 +哮 -30620 +哲 -30621 +唅 -30622 +唯 -30623 +啓 -30624 +啟 -30625 +啡 -30626 +啦 -30627 +啰 -30628 +啲 -30629 +喂 -30630 +喔 -30631 +喪 -30632 +喻 -30633 +嗜 -30634 +嗦 -30635 +嘅 -30636 +嘘 -30637 +嘴 -30638 +噪 -30639 +嚐 -30640 +嚣 -30641 +嚳 -30642 +嚼 -30643 +囁 -30644 +囂 -30645 +囚 -30646 +囡 -30647 +困 -30648 +围 -30649 +團 -30650 +圧 -30651 +圻 -30652 +坎 -30653 +坏 -30654 +坐 -30655 +坞 -30656 +垫 -30657 +堪 -30658 +塑 -30659 +塹 -30660 +墙 -30661 +壕 -30662 +壟 -30663 +壩 -30664 +壮 -30665 +壳 -30666 +壷 -30667 +夤 -30668 +奎 -30669 +奖 -30670 +奪 -30671 +奶 -30672 +妍 -30673 +妥 -30674 +姆 -30675 +姜 -30676 +姦 -30677 +姬 -30678 +娃 -30679 +娥 -30680 +娴 -30681 +婉 -30682 +媒 -30683 +媧 -30684 +媽 -30685 +嫌 -30686 +嫦 -30687 +嬢 -30688 +嬰 -30689 +嬴 -30690 +孛 -30691 +孤 -30692 +孵 -30693 +宜 -30694 +宸 -30695 +宽 -30696 +寅 -30697 +寒 -30698 +寗 -30699 +寞 -30700 +寫 -30701 +寵 -30702 +尝 -30703 +尬 -30704 +尴 -30705 +尹 -30706 +尻 -30707 +屁 -30708 +屑 -30709 +屡 -30710 +層 -30711 +履 -30712 +屯 -30713 +屿 -30714 +岑 -30715 +岚 -30716 +岭 -30717 +峠 -30718 +峡 -30719 +峨 -30720 +崑 -30721 +崔 -30722 +崖 -30723 +崙 -30724 +嵋 -30725 +嵌 -30726 +嵩 -30727 +巂 -30728 +币 -30729 +帖 -30730 +帥 -30731 +帯 -30732 +幫 -30733 +幹 -30734 +幼 -30735 +庖 -30736 +废 -30737 +庾 -30738 +廢 -30739 +廿 -30740 +弔 -30741 +弦 -30742 +彊 -30743 +彖 -30744 +彝 -30745 +彬 -30746 +彰 -30747 +彻 -30748 +徑 -30749 +循 -30750 +徼 -30751 +忆 -30752 +忧 -30753 +忽 -30754 +怨 -30755 +恒 -30756 +恢 -30757 +恱 -30758 +恶 -30759 +悍 -30760 +患 -30761 +悫 -30762 +惇 -30763 +惟 -30764 +惧 -30765 +惯 -30766 +愍 -30767 +愽 -30768 +慢 -30769 +慮 -30770 +憎 -30771 +懂 -30772 +懍 -30773 +懐 -30774 +懸 -30775 +戎 -30776 +戯 -30777 +戲 -30778 +扁 -30779 +扉 -30780 +扑 -30781 +扔 -30782 +払 -30783 +扩 -30784 +扭 -30785 +抖 -30786 +披 -30787 +抵 -30788 +担 -30789 +拆 -30790 +拇 -30791 +拏 -30792 +拓 -30793 +拔 -30794 +拖 -30795 +拘 -30796 +拥 -30797 +拧 -30798 +择 -30799 +拿 -30800 +挒 -30801 +挤 -30802 +挫 -30803 +挺 -30804 +捆 -30805 +捋 -30806 +捏 -30807 +捜 -30808 +损 -30809 +捨 -30810 +捵 -30811 +掀 -30812 +掖 -30813 +掩 -30814 +揉 -30815 +揚 -30816 +携 -30817 +摂 -30818 +摄 -30819 +摯 -30820 +撈 -30821 +撰 -30822 +擁 -30823 +擴 -30824 +攸 -30825 +敌 -30826 +敗 -30827 +敦 -30828 +敵 -30829 +斉 -30830 +斧 -30831 +斩 -30832 +斷 -30833 +旣 -30834 +旱 -30835 +旺 -30836 +昊 -30837 +昔 -30838 +晁 -30839 +晏 -30840 +晢 -30841 +晨 -30842 +暂 -30843 +暖 -30844 +暫 -30845 +暮 -30846 +朏 -30847 +朵 -30848 +杏 -30849 +杰 -30850 +杲 -30851 +枭 -30852 +枯 -30853 +柆 -30854 +柜 -30855 +柴 -30856 +栄 -30857 +栖 -30858 +栞 -30859 +栽 -30860 +栾 -30861 +桁 -30862 +桎 -30863 +桥 -30864 +桧 -30865 +梏 -30866 +梓 -30867 +梭 -30868 +梯 -30869 +械 -30870 +梵 -30871 +棋 -30872 +棍 -30873 +棗 -30874 +棱 -30875 +棲 -30876 +棵 -30877 +椅 -30878 +椛 -30879 +椰 -30880 +楯 -30881 +榆 -30882 +榊 -30883 +榛 -30884 +榫 -30885 +榴 -30886 +槌 -30887 +槍 -30888 +槛 -30889 +槤 -30890 +樉 -30891 +樗 -30892 +樛 -30893 +樟 -30894 +樫 -30895 +樱 -30896 +橚 -30897 +橿 -30898 +檔 -30899 +檚 -30900 +檜 -30901 +檢 -30902 +檳 -30903 +欒 -30904 +欠 -30905 +歉 -30906 +歪 -30907 +歳 -30908 +殃 -30909 +殉 -30910 +殖 -30911 +殷 -30912 +毁 -30913 +毎 -30914 +汁 -30915 +汝 -30916 +汰 -30917 +沌 -30918 +沐 -30919 +沧 -30920 +沫 -30921 +沮 -30922 +沸 -30923 +沽 -30924 +泛 -30925 +泽 -30926 +泾 -30927 +洁 -30928 +浚 -30929 +浪 -30930 +浸 -30931 +淆 -30932 +淳 -30933 +淸 -30934 +渁 -30935 +渇 -30936 +済 -30937 +減 -30938 +渥 -30939 +溢 -30940 +溯 -30941 +溶 -30942 +溺 -30943 +滋 -30944 +滑 -30945 +滕 -30946 +滨 -30947 +滩 -30948 +漁 -30949 +漱 -30950 +漳 -30951 +潭 -30952 +潮 -30953 +激 -30954 +濞 -30955 +瀛 -30956 +炮 -30957 +炯 -30958 +炷 -30959 +炸 -30960 +烘 -30961 +烙 -30962 +烤 -30963 +焦 -30964 +焯 -30965 +煩 -30966 +煮 -30967 +燈 -30968 +燥 -30969 +爐 -30970 +爪 -30971 +爭 -30972 +爽 -30973 +牜 -30974 +牢 -30975 +牵 -30976 +牽 -30977 +犖 -30978 +犭 -30979 +狛 -30980 +狡 -30981 +狭 -30982 +狱 -30983 +猜 -30984 +獩 -30985 +獬 -30986 +獲 -30987 +獳 -30988 +獸 -30989 +玑 -30990 +玛 -30991 +玻 -30992 +琅 -30993 +琊 -30994 +琬 -30995 +琮 -30996 +瑋 -30997 +瑙 -30998 +瑣 -30999 +瑤 -31000 +瑾 -31001 +璉 -31002 +璣 -31003 +璽 -31004 +瓢 -31005 +瓲 -31006 +瓷 -31007 +甸 -31008 +甽 -31009 +畅 -31010 +畑 -31011 +疫 -31012 +疾 -31013 +痲 -31014 +痴 -31015 +瘤 -31016 +瘦 -31017 +癩 -31018 +癯 -31019 +皋 -31020 +盈 -31021 +盏 -31022 +盥 -31023 +矯 -31024 +矿 -31025 +砍 -31026 +砖 -31027 +础 -31028 +硝 -31029 +硥 -31030 +硨 -31031 +碍 -31032 +碩 -31033 +確 -31034 +磯 -31035 +磲 -31036 +礎 -31037 +祇 -31038 +祚 -31039 +祣 -31040 +祯 -31041 +禎 -31042 +禦 -31043 +禪 -31044 +禺 -31045 +秤 -31046 +秩 -31047 +积 -31048 +稍 -31049 +税 -31050 +稔 -31051 +稚 -31052 +稳 -31053 +稷 -31054 +稹 -31055 +稿 -31056 +穌 -31057 +穎 -31058 +穗 -31059 +穢 -31060 +穩 -31061 +穴 -31062 +穿 -31063 +窍 -31064 +窘 -31065 +笹 -31066 +笼 -31067 +筋 -31068 +筐 -31069 +筑 -31070 +筹 -31071 +箪 -31072 +箭 -31073 +築 -31074 +篋 -31075 +篤 -31076 +簽 -31077 +簿 -31078 +籃 -31079 +粘 -31080 +粟 -31081 +糊 -31082 +糠 -31083 +純 -31084 +紡 -31085 +紺 -31086 +絆 -31087 +絕 -31088 +綁 -31089 +綜 -31090 +綠 -31091 +綢 -31092 +綯 -31093 +綸 -31094 +緯 -31095 +縊 -31096 +縦 -31097 +繆 -31098 +繋 -31099 +繞 -31100 +纖 -31101 +纽 -31102 +绅 -31103 +织 -31104 +绣 -31105 +续 -31106 +绮 -31107 +绿 -31108 +缠 -31109 +缶 -31110 +缽 -31111 +罕 -31112 +罚 -31113 +署 -31114 +罸 -31115 +羞 -31116 +羿 -31117 +翘 -31118 +翡 -31119 +翱 -31120 +翹 -31121 +耗 -31122 +聂 -31123 +聃 -31124 +聘 -31125 +聰 -31126 +聽 -31127 +聿 -31128 +肆 -31129 +肌 -31130 +肚 -31131 +肠 -31132 +肢 -31133 +肥 -31134 +胀 -31135 +胠 -31136 +胤 -31137 +脂 -31138 +脉 -31139 +脊 -31140 +脩 -31141 +腊 -31142 +腎 -31143 +腑 -31144 +腦 -31145 +臉 -31146 +臘 -31147 +臻 -31148 +舅 -31149 +舊 -31150 +舖 -31151 +舜 -31152 +舟 -31153 +舵 -31154 +艳 -31155 +艶 -31156 +艹 -31157 +艾 -31158 +芮 -31159 +芯 -31160 +苍 -31161 +苣 -31162 +苹 -31163 +苺 -31164 +茂 -31165 +茉 -31166 +荔 -31167 +荥 -31168 +荪 -31169 +荫 -31170 +荻 -31171 +荼 -31172 +莎 -31173 +莘 -31174 +莞 -31175 +莴 -31176 +菇 -31177 +菉 -31178 +菲 -31179 +萄 -31180 +萊 -31181 +萝 -31182 +葆 -31183 +葡 -31184 +葦 -31185 +葫 -31186 +葵 -31187 +蓀 -31188 +蓉 -31189 +蓑 -31190 +蓬 -31191 +蕨 -31192 +蕩 -31193 +薄 -31194 +薊 -31195 +薪 -31196 +藁 -31197 +藐 -31198 +藻 -31199 +蘅 -31200 +蘑 -31201 +蘸 -31202 +虐 -31203 +虔 -31204 +虛 -31205 +虞 -31206 +虱 -31207 +蛙 -31208 +蛭 -31209 +蜀 -31210 +蜃 -31211 +蝉 -31212 +蝕 -31213 +蟲 -31214 +蠻 -31215 +衔 -31216 +衙 -31217 +衷 -31218 +袈 -31219 +裔 -31220 +裟 -31221 +裳 -31222 +褒 -31223 +覃 -31224 +覆 -31225 +覡 -31226 +覧 -31227 +觳 -31228 +訁 -31229 +訓 -31230 +註 -31231 +詢 -31232 +詣 -31233 +試 -31234 +誐 -31235 +誦 -31236 +諒 -31237 +諭 -31238 +諷 -31239 +諺 -31240 +謀 -31241 +謙 -31242 +謚 -31243 +謨 -31244 +謹 -31245 +讐 -31246 +讓 -31247 +订 -31248 +讼 -31249 +诀 -31250 +谚 -31251 +谜 -31252 +谱 -31253 +豌 -31254 +豐 -31255 +豔 -31256 +豬 -31257 +豸 -31258 +貅 -31259 +貔 -31260 +賈 -31261 +賊 -31262 +賽 -31263 +贞 -31264 +贡 -31265 +贫 -31266 +贯 -31267 +贴 -31268 +贸 -31269 +贺 -31270 +贼 -31271 +赋 -31272 +赏 -31273 +赖 -31274 +赞 -31275 +赢 -31276 +赭 -31277 +跃 -31278 +跆 -31279 +跑 -31280 +跨 -31281 +跻 -31282 +踊 -31283 +踏 -31284 +踐 -31285 +踢 -31286 +蹴 -31287 +躍 -31288 +輒 -31289 +輛 -31290 +輩 -31291 +轩 -31292 +辅 -31293 +辦 -31294 +辺 -31295 +辽 -31296 +辿 -31297 +迄 -31298 +迈 -31299 +迎 -31300 +迫 -31301 +迹 -31302 +逃 -31303 +逊 -31304 +递 -31305 +逯 -31306 +週 -31307 +遐 -31308 +遜 -31309 +遢 -31310 +適 -31311 +遭 -31312 +遲 -31313 +遵 -31314 +遷 -31315 +邁 -31316 +邏 -31317 +郛 -31318 +郝 -31319 +鄧 -31320 +鄱 -31321 +酔 -31322 +酱 -31323 +醋 -31324 +釗 -31325 +鉗 -31326 +銓 -31327 +銘 -31328 +銳 -31329 +鋒 -31330 +錯 -31331 +鎧 -31332 +鐸 -31333 +鑒 -31334 +针 -31335 +钊 -31336 +钗 -31337 +钢 -31338 +钦 -31339 +钮 -31340 +钻 -31341 +铭 -31342 +铺 -31343 +锁 -31344 +锅 -31345 +锋 -31346 +锦 -31347 +镗 -31348 +镜 -31349 +閨 -31350 +闯 -31351 +闲 -31352 +闻 -31353 +阔 -31354 +陕 -31355 +陟 -31356 +险 -31357 +陪 -31358 +陷 -31359 +隅 -31360 +障 -31361 +隣 -31362 +隨 -31363 +隷 -31364 +雁 -31365 +雍 -31366 +雛 -31367 +雾 -31368 +霰 -31369 +靴 -31370 +靼 -31371 +鞍 -31372 +鞠 -31373 +韃 -31374 +韦 -31375 +韭 -31376 +韻 -31377 +頊 -31378 +頌 -31379 +頡 -31380 +頸 -31381 +頹 -31382 +顆 -31383 +額 -31384 +顓 -31385 +顛 -31386 +顧 -31387 +颂 -31388 +预 -31389 +颈 -31390 +颊 -31391 +颖 -31392 +额 -31393 +颤 -31394 +飞 -31395 +飾 -31396 +餅 -31397 +餓 -31398 +餘 -31399 +餮 -31400 +饕 -31401 +馅 -31402 +馒 -31403 +馗 -31404 +駐 -31405 +駕 -31406 +駙 -31407 +駿 -31408 +騭 -31409 +騷 -31410 +驁 -31411 +驤 -31412 +驼 -31413 +骑 -31414 +骸 -31415 +髪 -31416 +鬘 -31417 +鬥 -31418 +魁 -31419 +魃 -31420 +魈 -31421 +鮑 -31422 +鮫 -31423 +鮮 -31424 +鯖 -31425 +鯤 -31426 +鯨 -31427 +鯱 -31428 +鯵 -31429 +鱗 -31430 +鲤 -31431 +鳶 -31432 +鴉 -31433 +鴣 -31434 +鴨 -31435 +鵊 -31436 +鵡 -31437 +鵰 -31438 +鵲 -31439 +鶍 -31440 +鷄 -31441 +鷓 -31442 +鷫 -31443 +鷺 -31444 +鸚 -31445 +鸟 -31446 +鸿 -31447 +鹅 -31448 +鹼 -31449 +麵 -31450 +麾 -31451 +麿 -31452 +黐 -31453 +黙 -31454 +齉 -31455 +齐 -31456 +ꜩ -31457 +ꜫ -31458 +ꜭ -31459 +ꞅ -31460 +ꞎ -31461 +Ʞ -31462 +ꦂ -31463 +ꦠ -31464 +ꦯ -31465 +ꦲ -31466 +ꦸ -31467 +갈 -31468 +갑 -31469 +갱 -31470 +걷 -31471 +걸 -31472 +겁 -31473 +겐 -31474 +겪 -31475 +견 -31476 +곡 -31477 +곱 -31478 +곽 -31479 +굴 -31480 +규 -31481 +극 -31482 +긴 -31483 +깝 -31484 +깨 -31485 +꺼 -31486 +껌 -31487 +껐 -31488 +꾸 -31489 +꾼 -31490 +끄 -31491 +끝 -31492 +끼 -31493 +냄 -31494 +냉 -31495 +넋 -31496 +넝 -31497 +녁 -31498 +놀 -31499 +놈 -31500 +높 -31501 +놔 -31502 +뉴 -31503 +느 -31504 +늑 -31505 +능 -31506 +늬 -31507 +닿 -31508 +덕 -31509 +던 -31510 +덴 -31511 +델 -31512 +돈 -31513 +됐 -31514 +둥 -31515 +뒤 -31516 +듀 -31517 +듈 -31518 +따 -31519 +딱 -31520 +떼 -31521 +똣 -31522 +뜨 -31523 +랩 -31524 +랭 -31525 +랴 -31526 +럴 -31527 +렁 -31528 +렘 -31529 +렵 -31530 +령 -31531 +롱 -31532 +륙 -31533 +륨 -31534 +맘 -31535 +맙 -31536 +머 -31537 +멈 -31538 +멤 -31539 +몬 -31540 +몸 -31541 +뭐 -31542 +뮬 -31543 +밴 -31544 +뱅 -31545 +범 -31546 +벤 -31547 +벨 -31548 +분 -31549 +붉 -31550 +뷰 -31551 +뻐 -31552 +뻤 -31553 +뿌 -31554 +쁨 -31555 +삶 -31556 +삿 -31557 +샘 -31558 +샛 -31559 +섯 -31560 +셋 -31561 +셰 -31562 +솔 -31563 +술 -31564 +숫 -31565 +숲 -31566 +슈 -31567 +승 -31568 +싱 -31569 +쌈 -31570 +쌍 -31571 +쌤 -31572 +쎈 -31573 +쏟 -31574 +알 -31575 +암 -31576 +앤 -31577 +얀 -31578 +엠 -31579 +엽 -31580 +올 -31581 +옹 -31582 +왈 -31583 +왓 -31584 +욱 -31585 +웅 -31586 +워 -31587 +윅 -31588 +육 -31589 +읍 -31590 +잉 -31591 +잘 -31592 +잠 -31593 +젖 -31594 +젤 -31595 +존 -31596 +준 -31597 +줘 -31598 +쥐 -31599 +증 -31600 +쩌 -31601 +쩐 -31602 +쪽 -31603 +참 -31604 +찾 -31605 +철 -31606 +축 -31607 +춤 -31608 +칡 -31609 +침 -31610 +컴 -31611 +켜 -31612 +콜 -31613 +콤 -31614 +퀸 -31615 +큼 -31616 +킥 -31617 +킨 -31618 +탄 -31619 +탈 -31620 +택 -31621 +틋 -31622 +팀 -31623 +팔 -31624 +팡 -31625 +팥 -31626 +퍼 -31627 +페 -31628 +펜 -31629 +평 -31630 +폴 -31631 +퓨 -31632 +픈 -31633 +핑 -31634 +항 -31635 +햇 -31636 +했 -31637 +행 -31638 +혁 -31639 +혈 -31640 +홍 -31641 +환 -31642 +획 -31643 +흥 -31644 +히 -31645 +힘 -31646 + -31647 +︠ -31648 +︡ -31649 +𐀁 -31650 +𐀈 -31651 +𐀫 -31652 +𐌲 -31653 +𐌳 -31654 +𐌷 -31655 +𐌽 -31656 +𐌾 -31657 +𐌿 -31658 +𐍂 -31659 +𐍄 -31660 +𐎰 -31661 +𐎺 -31662 +𐐀 -31663 +𐐍 -31664 +𐐐 -31665 +𐐒 -31666 +𐐢 -31667 +𐐣 -31668 +𐐭 -31669 +𐐲 -31670 +𐐵 -31671 +𐐹 -31672 +𐐺 -31673 +𐐼 -31674 +𐑅 -31675 +𐑋 -31676 +𐬀 -31677 +𐬌 -31678 +𐬍 -31679 +𐬎 -31680 +𐬛 -31681 +𐬠 -31682 +𐬱 -31683 +𐭃 -31684 +𐭓 -31685 +𒀯 -31686 +𒀳 -31687 +𒁳 -31688 +𒆗 -31689 +𒆘 -31690 +🇨 -31691 +🇬 -31692 +🇲 -31693 +🇽 -31694 +🇿 -31695 +🌋 -31696 +🌍 -31697 +🌜 -31698 +🌠 -31699 +🌤 -31700 +🌱 -31701 +🌳 -31702 +🌺 -31703 +🌼 -31704 +🍊 -31705 +🍚 -31706 +🍪 -31707 +🎁 -31708 +🎃 -31709 +🎓 -31710 +🎬 -31711 +🎭 -31712 +🎼 -31713 +🏠 -31714 +🏨 -31715 +🏷 -31716 +🏻 -31717 +🐕 -31718 +🐘 -31719 +👆 -31720 +👏 -31721 +👶 -31722 +💌 -31723 +💙 -31724 +💜 -31725 +💧 -31726 +💬 -31727 +💯 -31728 +💰 -31729 +💵 -31730 +📎 -31731 +📏 -31732 +📑 -31733 +📜 -31734 +📞 -31735 +📢 -31736 diff --git a/Tokenizer/BPE/test_tokenizer.py b/Tokenizer/BPE/test_tokenizer.py new file mode 100644 index 0000000000000000000000000000000000000000..feee71c1d2a27195f8f866f3bea36d4d8fbfac18 --- /dev/null +++ b/Tokenizer/BPE/test_tokenizer.py @@ -0,0 +1,51 @@ +from transformers import AutoTokenizer +tok = AutoTokenizer.from_pretrained("./Tokenizer/BPE") + + +text1 = "Hello world! write code " +text2 = "myHTTPRequestHandler is calling process_payment_v2" +text3 = "methylphenidate hydrochloride dopamine reuptake modulation" +text4 = "hello 🔥🔥🔥💀💀" +text5 = "https://github.com/Avinash-MiniLLM?tab=repos" + + +print(text1) +print(text2) +print(text3) +print(text4) +print(text5) + +print(tok.tokenize(text1)) +print(tok.tokenize(text2)) +print(tok.tokenize(text3)) +print(tok.tokenize(text4)) +print(tok.tokenize(text5)) + + +ids1 = tok.encode(text1) +ids2 = tok.encode(text2) +ids3 = tok.encode(text3) +ids4 = tok.encode(text4) +ids5 = tok.encode(text5) + +print(ids1) +print(tok.decode(ids1)) +print(tok.decode(ids1, skip_special_tokens=True)) + +print(ids2) +print(tok.decode(ids2)) +print(tok.decode(ids2, skip_special_tokens=True)) + +print(ids3) +print(tok.decode(ids3)) +print(tok.decode(ids3, skip_special_tokens=True)) + +ids4 = tok.encode(text4) +print(ids4) +print(tok.decode(ids4)) +print(tok.decode(ids4, skip_special_tokens=True)) + +ids5 = tok.encode(text5) +print(ids5) +print(tok.decode(ids5)) +print(tok.decode(ids5, skip_special_tokens=True)) \ No newline at end of file diff --git a/Tokenizer/BPE/tokenizer.json b/Tokenizer/BPE/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..e457234c0f35e62f4f4dce63b97322dc1ab2eecc --- /dev/null +++ b/Tokenizer/BPE/tokenizer.json @@ -0,0 +1,221597 @@ +{ + "version": "1.0", + "truncation": null, + "padding": null, + "added_tokens": [ + { + "id": 0, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 1, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 2, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 3, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 4, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 5, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 6, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "Sequence", + "normalizers": [ + { + "type": "Replace", + "pattern": { + "String": " " + }, + "content": "▁" + } + ] + }, + "pre_tokenizer": null, + "post_processor": { + "type": "TemplateProcessing", + "single": [ + { + "SpecialToken": { + "id": "", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + } + ], + "pair": [ + { + "SpecialToken": { + "id": "", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "", + "type_id": 1 + } + }, + { + "Sequence": { + "id": "B", + "type_id": 1 + } + } + ], + "special_tokens": { + "": { + "id": "", + "ids": [ + 1 + ], + "tokens": [ + "" + ] + } + } + }, + "decoder": { + "type": "Sequence", + "decoders": [ + { + "type": "Replace", + "pattern": { + "String": "▁" + }, + "content": " " + }, + { + "type": "ByteFallback" + }, + { + "type": "Fuse" + } + ] + }, + "model": { + "type": "BPE", + "dropout": null, + "unk_token": "", + "continuing_subword_prefix": null, + "end_of_word_suffix": null, + "fuse_unk": true, + "byte_fallback": true, + "ignore_merges": false, + "vocab": { + "": 0, + "": 1, + "": 2, + "": 3, + "": 4, + "": 5, + "": 6, + "<0x00>": 7, + "<0x01>": 8, + "<0x02>": 9, + "<0x03>": 10, + "<0x04>": 11, + "<0x05>": 12, + "<0x06>": 13, + "<0x07>": 14, + "<0x08>": 15, + "<0x09>": 16, + "<0x0A>": 17, + "<0x0B>": 18, + "<0x0C>": 19, + "<0x0D>": 20, + "<0x0E>": 21, + "<0x0F>": 22, + "<0x10>": 23, + "<0x11>": 24, + "<0x12>": 25, + "<0x13>": 26, + "<0x14>": 27, + "<0x15>": 28, + "<0x16>": 29, + "<0x17>": 30, + "<0x18>": 31, + "<0x19>": 32, + "<0x1A>": 33, + "<0x1B>": 34, + "<0x1C>": 35, + "<0x1D>": 36, + "<0x1E>": 37, + "<0x1F>": 38, + "<0x20>": 39, + "<0x21>": 40, + "<0x22>": 41, + "<0x23>": 42, + "<0x24>": 43, + "<0x25>": 44, + "<0x26>": 45, + "<0x27>": 46, + "<0x28>": 47, + "<0x29>": 48, + "<0x2A>": 49, + "<0x2B>": 50, + "<0x2C>": 51, + "<0x2D>": 52, + "<0x2E>": 53, + "<0x2F>": 54, + "<0x30>": 55, + "<0x31>": 56, + "<0x32>": 57, + "<0x33>": 58, + "<0x34>": 59, + "<0x35>": 60, + "<0x36>": 61, + "<0x37>": 62, + "<0x38>": 63, + "<0x39>": 64, + "<0x3A>": 65, + "<0x3B>": 66, + "<0x3C>": 67, + "<0x3D>": 68, + "<0x3E>": 69, + "<0x3F>": 70, + "<0x40>": 71, + "<0x41>": 72, + "<0x42>": 73, + "<0x43>": 74, + "<0x44>": 75, + "<0x45>": 76, + "<0x46>": 77, + "<0x47>": 78, + "<0x48>": 79, + "<0x49>": 80, + "<0x4A>": 81, + "<0x4B>": 82, + "<0x4C>": 83, + "<0x4D>": 84, + "<0x4E>": 85, + "<0x4F>": 86, + "<0x50>": 87, + "<0x51>": 88, + "<0x52>": 89, + "<0x53>": 90, + "<0x54>": 91, + "<0x55>": 92, + "<0x56>": 93, + "<0x57>": 94, + "<0x58>": 95, + "<0x59>": 96, + "<0x5A>": 97, + "<0x5B>": 98, + "<0x5C>": 99, + "<0x5D>": 100, + "<0x5E>": 101, + "<0x5F>": 102, + "<0x60>": 103, + "<0x61>": 104, + "<0x62>": 105, + "<0x63>": 106, + "<0x64>": 107, + "<0x65>": 108, + "<0x66>": 109, + "<0x67>": 110, + "<0x68>": 111, + "<0x69>": 112, + "<0x6A>": 113, + "<0x6B>": 114, + "<0x6C>": 115, + "<0x6D>": 116, + "<0x6E>": 117, + "<0x6F>": 118, + "<0x70>": 119, + "<0x71>": 120, + "<0x72>": 121, + "<0x73>": 122, + "<0x74>": 123, + "<0x75>": 124, + "<0x76>": 125, + "<0x77>": 126, + "<0x78>": 127, + "<0x79>": 128, + "<0x7A>": 129, + "<0x7B>": 130, + "<0x7C>": 131, + "<0x7D>": 132, + "<0x7E>": 133, + "<0x7F>": 134, + "<0x80>": 135, + "<0x81>": 136, + "<0x82>": 137, + "<0x83>": 138, + "<0x84>": 139, + "<0x85>": 140, + "<0x86>": 141, + "<0x87>": 142, + "<0x88>": 143, + "<0x89>": 144, + "<0x8A>": 145, + "<0x8B>": 146, + "<0x8C>": 147, + "<0x8D>": 148, + "<0x8E>": 149, + "<0x8F>": 150, + "<0x90>": 151, + "<0x91>": 152, + "<0x92>": 153, + "<0x93>": 154, + "<0x94>": 155, + "<0x95>": 156, + "<0x96>": 157, + "<0x97>": 158, + "<0x98>": 159, + "<0x99>": 160, + "<0x9A>": 161, + "<0x9B>": 162, + "<0x9C>": 163, + "<0x9D>": 164, + "<0x9E>": 165, + "<0x9F>": 166, + "<0xA0>": 167, + "<0xA1>": 168, + "<0xA2>": 169, + "<0xA3>": 170, + "<0xA4>": 171, + "<0xA5>": 172, + "<0xA6>": 173, + "<0xA7>": 174, + "<0xA8>": 175, + "<0xA9>": 176, + "<0xAA>": 177, + "<0xAB>": 178, + "<0xAC>": 179, + "<0xAD>": 180, + "<0xAE>": 181, + "<0xAF>": 182, + "<0xB0>": 183, + "<0xB1>": 184, + "<0xB2>": 185, + "<0xB3>": 186, + "<0xB4>": 187, + "<0xB5>": 188, + "<0xB6>": 189, + "<0xB7>": 190, + "<0xB8>": 191, + "<0xB9>": 192, + "<0xBA>": 193, + "<0xBB>": 194, + "<0xBC>": 195, + "<0xBD>": 196, + "<0xBE>": 197, + "<0xBF>": 198, + "<0xC0>": 199, + "<0xC1>": 200, + "<0xC2>": 201, + "<0xC3>": 202, + "<0xC4>": 203, + "<0xC5>": 204, + "<0xC6>": 205, + "<0xC7>": 206, + "<0xC8>": 207, + "<0xC9>": 208, + "<0xCA>": 209, + "<0xCB>": 210, + "<0xCC>": 211, + "<0xCD>": 212, + "<0xCE>": 213, + "<0xCF>": 214, + "<0xD0>": 215, + "<0xD1>": 216, + "<0xD2>": 217, + "<0xD3>": 218, + "<0xD4>": 219, + "<0xD5>": 220, + "<0xD6>": 221, + "<0xD7>": 222, + "<0xD8>": 223, + "<0xD9>": 224, + "<0xDA>": 225, + "<0xDB>": 226, + "<0xDC>": 227, + "<0xDD>": 228, + "<0xDE>": 229, + "<0xDF>": 230, + "<0xE0>": 231, + "<0xE1>": 232, + "<0xE2>": 233, + "<0xE3>": 234, + "<0xE4>": 235, + "<0xE5>": 236, + "<0xE6>": 237, + "<0xE7>": 238, + "<0xE8>": 239, + "<0xE9>": 240, + "<0xEA>": 241, + "<0xEB>": 242, + "<0xEC>": 243, + "<0xED>": 244, + "<0xEE>": 245, + "<0xEF>": 246, + "<0xF0>": 247, + "<0xF1>": 248, + "<0xF2>": 249, + "<0xF3>": 250, + "<0xF4>": 251, + "<0xF5>": 252, + "<0xF6>": 253, + "<0xF7>": 254, + "<0xF8>": 255, + "<0xF9>": 256, + "<0xFA>": 257, + "<0xFB>": 258, + "<0xFC>": 259, + "<0xFD>": 260, + "<0xFE>": 261, + "<0xFF>": 262, + "▁t": 263, + "he": 264, + "▁a": 265, + "in": 266, + "▁the": 267, + "er": 268, + "on": 269, + "re": 270, + "▁s": 271, + "▁o": 272, + "▁w": 273, + "at": 274, + "ed": 275, + "en": 276, + "an": 277, + "▁,": 278, + "▁c": 279, + "or": 280, + "it": 281, + "is": 282, + "es": 283, + "▁f": 284, + "▁an": 285, + "▁b": 286, + "ar": 287, + "▁of": 288, + "al": 289, + "▁p": 290, + "▁in": 291, + "ing": 292, + "▁.": 293, + "▁and": 294, + "as": 295, + "ou": 296, + "▁to": 297, + "▁m": 298, + "ic": 299, + "▁d": 300, + "ion": 301, + "le": 302, + "▁h": 303, + "ro": 304, + "▁T": 305, + "▁re": 306, + "il": 307, + "ent": 308, + "▁th": 309, + "▁A": 310, + "▁l": 311, + "▁S": 312, + "st": 313, + "▁n": 314, + "el": 315, + "om": 316, + "▁e": 317, + "ct": 318, + "▁1": 319, + "▁C": 320, + "am": 321, + "ad": 322, + "et": 323, + "ol": 324, + "▁\"": 325, + "▁g": 326, + "▁M": 327, + "ly": 328, + "im": 329, + "id": 330, + "▁on": 331, + "▁I": 332, + "ur": 333, + "▁The": 334, + "iv": 335, + "ot": 336, + "▁be": 337, + "▁for": 338, + "▁was": 339, + "▁B": 340, + "ce": 341, + "ig": 342, + "ir": 343, + "ut": 344, + "us": 345, + "ch": 346, + "▁@": 347, + "ow": 348, + "ation": 349, + "un": 350, + "▁as": 351, + "▁st": 352, + "ay": 353, + "▁is": 354, + "ith": 355, + "▁that": 356, + "ers": 357, + "▁H": 358, + "▁P": 359, + "her": 360, + "ra": 361, + "▁2": 362, + "▁with": 363, + "▁'": 364, + "ter": 365, + "▁R": 366, + "ver": 367, + "ul": 368, + "▁D": 369, + "▁wh": 370, + "-@": 371, + "▁@-@": 372, + "▁(": 373, + "em": 374, + "▁al": 375, + "▁con": 376, + "▁W": 377, + "▁L": 378, + "▁F": 379, + "os": 380, + "th": 381, + "▁by": 382, + "▁it": 383, + "▁de": 384, + "▁G": 385, + "and": 386, + "▁at": 387, + "▁he": 388, + "▁N": 389, + "▁pro": 390, + "▁E": 391, + "av": 392, + "est": 393, + "um": 394, + "oun": 395, + "od": 396, + "▁se": 397, + "ac": 398, + "ist": 399, + "▁v": 400, + "ag": 401, + "▁y": 402, + "▁19": 403, + "00": 404, + "if": 405, + "rom": 406, + "ain": 407, + "▁J": 408, + "ri": 409, + "op": 410, + "▁com": 411, + "ill": 412, + "▁r": 413, + "▁from": 414, + "ore": 415, + "▁or": 416, + "▁In": 417, + "ld": 418, + "▁)": 419, + "res": 420, + "▁O": 421, + "▁su": 422, + "ab": 423, + "ies": 424, + "pp": 425, + "ew": 426, + "ate": 427, + "▁are": 428, + "igh": 429, + "ant": 430, + "▁ex": 431, + "▁k": 432, + "ak": 433, + "ess": 434, + "our": 435, + "ort": 436, + "qu": 437, + "art": 438, + "se": 439, + "ity": 440, + "▁his": 441, + "ud": 442, + "▁ch": 443, + "oc": 444, + "ive": 445, + "ich": 446, + "ard": 447, + "ere": 448, + "▁K": 449, + "all": 450, + "ect": 451, + "▁un": 452, + "ment": 453, + "ber": 454, + "▁sh": 455, + "gh": 456, + "▁were": 457, + "▁pl": 458, + "ated": 459, + "ong": 460, + "pt": 461, + "end": 462, + "▁le": 463, + "ear": 464, + "▁U": 465, + "▁not": 466, + "ial": 467, + "ge": 468, + "ure": 469, + "ast": 470, + "ip": 471, + "ave": 472, + "▁sp": 473, + "▁:": 474, + "▁which": 475, + "ov": 476, + "ough": 477, + "ans": 478, + "ell": 479, + "ight": 480, + "ame": 481, + "ost": 482, + "out": 483, + "ical": 484, + "og": 485, + "ust": 486, + "ine": 487, + "ap": 488, + "ound": 489, + "▁St": 490, + "▁had": 491, + "ia": 492, + "▁us": 493, + "ec": 494, + "ould": 495, + "▁ar": 496, + "ire": 497, + "ther": 498, + "ord": 499, + "ary": 500, + "ions": 501, + "cl": 502, + "ous": 503, + "ff": 504, + "▁have": 505, + "ack": 506, + "▁int": 507, + "▁ab": 508, + "cc": 509, + "rit": 510, + "▁comp": 511, + "▁3": 512, + "▁whe": 513, + "ik": 514, + "iz": 515, + "▁V": 516, + "der": 517, + "▁their": 518, + "▁cont": 519, + "ide": 520, + "▁Ch": 521, + "ome": 522, + "are": 523, + "▁but": 524, + "so": 525, + "up": 526, + "ian": 527, + "ru": 528, + "▁20": 529, + "▁200": 530, + "ry": 531, + "ork": 532, + "ie": 533, + "▁this": 534, + "▁ad": 535, + "act": 536, + "du": 537, + "per": 538, + "ish": 539, + "▁cl": 540, + "▁Th": 541, + "ok": 542, + "orm": 543, + "▁en": 544, + "ater": 545, + "▁te": 546, + "ign": 547, + "age": 548, + "ass": 549, + "▁res": 550, + "ib": 551, + "▁can": 552, + "▁also": 553, + "irst": 554, + "ult": 555, + "ence": 556, + "ub": 557, + "▁its": 558, + "▁im": 559, + "fter": 560, + "▁j": 561, + "ue": 562, + "▁all": 563, + "▁per": 564, + "wo": 565, + "ally": 566, + "▁we": 567, + "pl": 568, + "▁has": 569, + "▁dis": 570, + "▁one": 571, + "mer": 572, + "ime": 573, + "▁they": 574, + "fer": 575, + "▁first": 576, + "ance": 577, + "▁who": 578, + "ations": 579, + "ction": 580, + "▁sc": 581, + "ely": 582, + "ond": 583, + "▁her": 584, + "own": 585, + "ice": 586, + "▁part": 587, + "ition": 588, + "ile": 589, + "▁An": 590, + "▁It": 591, + "▁He": 592, + "▁man": 593, + "▁app": 594, + "ach": 595, + "hed": 596, + "▁other": 597, + "ree": 598, + "▁pre": 599, + "▁201": 600, + "▁rec": 601, + "▁bec": 602, + "▁out": 603, + "ens": 604, + "▁been": 605, + "▁ne": 606, + "▁–": 607, + "▁4": 608, + "ren": 609, + "▁ag": 610, + "man": 611, + "▁go": 612, + "ep": 613, + "▁Al": 614, + "ress": 615, + "vel": 616, + "ang": 617, + "oll": 618, + "ite": 619, + "▁more": 620, + "ric": 621, + "ory": 622, + "▁5": 623, + "able": 624, + "▁year": 625, + "ey": 626, + "ount": 627, + "▁ro": 628, + "erv": 629, + "ind": 630, + "▁two": 631, + "clud": 632, + "▁;": 633, + "▁sa": 634, + "▁Y": 635, + "▁des": 636, + "uring": 637, + "▁up": 638, + "▁over": 639, + "ace": 640, + "ents": 641, + "▁18": 642, + "te": 643, + "ade": 644, + "▁ev": 645, + "▁-": 646, + "ark": 647, + "ild": 648, + "ase": 649, + "▁Un": 650, + "▁you": 651, + "▁tr": 652, + "ors": 653, + "▁gr": 654, + "▁into": 655, + "▁time": 656, + "ates": 657, + "ced": 658, + "▁would": 659, + "▁includ": 660, + "▁comm": 661, + "ose": 662, + "ces": 663, + "ck": 664, + "int": 665, + "we": 666, + "▁work": 667, + "wn": 668, + "▁att": 669, + "ake": 670, + "reat": 671, + "▁me": 672, + "port": 673, + "▁after": 674, + "aus": 675, + "ph": 676, + "ons": 677, + "land": 678, + "one": 679, + "form": 680, + "rough": 681, + "les": 682, + "ings": 683, + "amp": 684, + "▁inter": 685, + ".@": 686, + "▁@.@": 687, + "▁when": 688, + "ood": 689, + "▁so": 690, + "▁about": 691, + "▁play": 692, + "▁them": 693, + "▁On": 694, + "urn": 695, + "▁fe": 696, + "▁off": 697, + "ased": 698, + "▁bet": 699, + "ied": 700, + "ail": 701, + "▁do": 702, + "▁new": 703, + "▁6": 704, + "▁co": 705, + "▁than": 706, + "▁tra": 707, + ",@": 708, + "▁@,@": 709, + "ious": 710, + "oy": 711, + "▁rel": 712, + "old": 713, + "ited": 714, + "▁ra": 715, + "▁qu": 716, + "▁nan": 717, + "ward": 718, + "▁she": 719, + "▁kn": 720, + "▁most": 721, + "▁cons": 722, + "▁pe": 723, + "iss": 724, + "▁him": 725, + "ick": 726, + "ob": 727, + "als": 728, + "▁fl": 729, + "rib": 730, + "ict": 731, + "▁This": 732, + "▁sy": 733, + "gan": 734, + "ays": 735, + "ft": 736, + "▁only": 737, + "▁under": 738, + "very": 739, + "ook": 740, + "▁act": 741, + "▁As": 742, + "▁will": 743, + "▁rem": 744, + "▁gen": 745, + "oth": 746, + "▁produ": 747, + "ational": 748, + "▁7": 749, + "ubl": 750, + "ath": 751, + "▁sec": 752, + "▁199": 753, + "▁Mar": 754, + "▁some": 755, + "lect": 756, + "ween": 757, + "▁there": 758, + "▁Ar": 759, + "▁acc": 760, + "att": 761, + "rop": 762, + "▁pr": 763, + "ve": 764, + "red": 765, + "▁inc": 766, + "▁through": 767, + "ember": 768, + "fore": 769, + "▁ear": 770, + "aw": 771, + "tern": 772, + "▁ind": 773, + "ever": 774, + "▁En": 775, + "▁stud": 776, + "▁between": 777, + "ating": 778, + "orld": 779, + "ike": 780, + "▁during": 781, + "ning": 782, + "▁po": 783, + "ular": 784, + "▁ass": 785, + "▁such": 786, + "ilm": 787, + "ts": 788, + "▁bl": 789, + "ollow": 790, + "▁8": 791, + "▁Re": 792, + "▁reg": 793, + "ific": 794, + "ks": 795, + "▁pos": 796, + "▁am": 797, + "▁cent": 798, + "ix": 799, + "▁De": 800, + "▁9": 801, + "ran": 802, + "▁again": 803, + "ron": 804, + "inal": 805, + "yon": 806, + "olog": 807, + "ual": 808, + "▁num": 809, + "▁sub": 810, + "orth": 811, + "hip": 812, + "hen": 813, + "ause": 814, + "meric": 815, + "▁where": 816, + "▁New": 817, + "ason": 818, + "▁ret": 819, + "▁used": 820, + "▁spec": 821, + "iew": 822, + "▁form": 823, + "▁Se": 824, + "▁bu": 825, + "velop": 826, + "hes": 827, + "▁Americ": 828, + "ower": 829, + "ject": 830, + "▁ac": 831, + "▁end": 832, + "ug": 833, + "ople": 834, + "ics": 835, + "▁ep": 836, + "▁char": 837, + "▁dif": 838, + "ted": 839, + "▁col": 840, + "▁your": 841, + "io": 842, + "▁Le": 843, + "▁three": 844, + "▁sur": 845, + "▁film": 846, + "▁mon": 847, + "000": 848, + "ins": 849, + "▁may": 850, + "▁Wh": 851, + "▁while": 852, + "gr": 853, + "ily": 854, + "▁years": 855, + "ities": 856, + "▁supp": 857, + "ock": 858, + "▁rele": 859, + "orn": 860, + "▁exp": 861, + "▁imp": 862, + "▁Com": 863, + "ise": 864, + "ros": 865, + "▁no": 866, + "▁inv": 867, + "outh": 868, + "▁def": 869, + "▁made": 870, + "ident": 871, + "▁high": 872, + "ten": 873, + "ral": 874, + "ton": 875, + "ool": 876, + "az": 877, + "▁how": 878, + "▁add": 879, + "▁follow": 880, + "way": 881, + "▁prov": 882, + "▁lar": 883, + "oup": 884, + "erm": 885, + "ier": 886, + "▁later": 887, + "▁these": 888, + "▁game": 889, + "▁develop": 890, + "▁mov": 891, + "iet": 892, + "▁pres": 893, + "▁well": 894, + "oh": 895, + "▁many": 896, + "▁em": 897, + "iel": 898, + "▁then": 899, + "▁before": 900, + "▁writ": 901, + "▁any": 902, + "▁dec": 903, + "▁“": 904, + "▁people": 905, + "▁call": 906, + "ife": 907, + "ful": 908, + "ures": 909, + "ll": 910, + "ivers": 911, + "ision": 912, + "ished": 913, + "other": 914, + "▁ent": 915, + "▁publ": 916, + "▁eff": 917, + "stem": 918, + "▁being": 919, + "▁use": 920, + "▁10": 921, + "ived": 922, + "▁Sp": 923, + "▁rep": 924, + "ines": 925, + "ative": 926, + "▁serv": 927, + "▁second": 928, + "▁met": 929, + "▁loc": 930, + "its": 931, + "aj": 932, + "▁ser": 933, + "▁found": 934, + "ert": 935, + "▁song": 936, + "▁dep": 937, + "▁ob": 938, + "ames": 939, + "▁mus": 940, + "▁ph": 941, + "ale": 942, + "yen": 943, + "row": 944, + "▁set": 945, + "▁car": 946, + "son": 947, + "ered": 948, + "▁At": 949, + "▁could": 950, + "▁four": 951, + "ather": 952, + "▁pol": 953, + "ury": 954, + "elf": 955, + "▁lead": 956, + "▁long": 957, + "ement": 958, + "yp": 959, + "▁record": 960, + "▁inf": 961, + "▁sm": 962, + "▁show": 963, + "au": 964, + "▁number": 965, + "vern": 966, + "ature": 967, + "ince": 968, + "ved": 969, + "▁Sh": 970, + "air": 971, + "ode": 972, + "▁inst": 973, + "ane": 974, + "▁back": 975, + "▁cre": 976, + "ys": 977, + "▁both": 978, + "ually": 979, + "▁trans": 980, + "▁sever": 981, + "ogra": 982, + "eral": 983, + "ism": 984, + "ract": 985, + "ting": 986, + "ments": 987, + "▁Sc": 988, + "▁Con": 989, + "▁said": 990, + "led": 991, + "ained": 992, + "▁min": 993, + "chool": 994, + "ible": 995, + "▁How": 996, + "▁ext": 997, + "cept": 998, + "asyon": 999, + "▁main": 1000, + "▁198": 1001, + "▁including": 1002, + "▁hel": 1003, + "▁team": 1004, + "▁like": 1005, + "ined": 1006, + "ution": 1007, + "ient": 1008, + "▁against": 1009, + "▁system": 1010, + "▁if": 1011, + "▁season": 1012, + "uch": 1013, + "▁est": 1014, + "▁sign": 1015, + "ble": 1016, + "ern": 1017, + "ann": 1018, + "▁17": 1019, + "erson": 1020, + "aking": 1021, + "..": 1022, + "ists": 1023, + "▁war": 1024, + "ink": 1025, + "▁/": 1026, + "any": 1027, + "▁pop": 1028, + "ility": 1029, + "▁what": 1030, + "▁did": 1031, + "▁rev": 1032, + "▁resp": 1033, + "ange": 1034, + "▁bel": 1035, + "iver": 1036, + "ah": 1037, + "cy": 1038, + "▁000": 1039, + "▁op": 1040, + "▁child": 1041, + "▁charact": 1042, + "▁disc": 1043, + "ired": 1044, + "xt": 1045, + "▁—": 1046, + "bum": 1047, + "▁Cl": 1048, + "▁mod": 1049, + "irect": 1050, + "▁differ": 1051, + "▁Ind": 1052, + "ris": 1053, + "▁dist": 1054, + "ross": 1055, + "ober": 1056, + "ared": 1057, + "▁count": 1058, + "vent": 1059, + "ty": 1060, + "▁12": 1061, + "▁15": 1062, + "▁United": 1063, + "▁sim": 1064, + "ized": 1065, + "▁art": 1066, + "▁0": 1067, + "▁own": 1068, + "▁comple": 1069, + "▁perform": 1070, + "▁Z": 1071, + "ank": 1072, + "imes": 1073, + "▁Eng": 1074, + "▁contin": 1075, + "▁Brit": 1076, + "ants": 1077, + "▁sing": 1078, + "▁because": 1079, + "▁For": 1080, + "ield": 1081, + "▁became": 1082, + "und": 1083, + "▁help": 1084, + "ash": 1085, + "▁After": 1086, + "apt": 1087, + "ird": 1088, + "▁196": 1089, + "▁mat": 1090, + "▁air": 1091, + "ouse": 1092, + "▁fam": 1093, + "▁ed": 1094, + "uc": 1095, + "▁mill": 1096, + "▁Joh": 1097, + "▁known": 1098, + "▁design": 1099, + "▁day": 1100, + "ars": 1101, + "▁album": 1102, + "ially": 1103, + "▁American": 1104, + "get": 1105, + "▁197": 1106, + "▁desc": 1107, + "▁sl": 1108, + "ven": 1109, + "▁med": 1110, + "▁result": 1111, + "alth": 1112, + "▁epis": 1113, + "▁=": 1114, + "ised": 1115, + "▁group": 1116, + "ues": 1117, + "▁She": 1118, + "▁down": 1119, + "▁dr": 1120, + "ek": 1121, + "▁194": 1122, + "▁orig": 1123, + "▁several": 1124, + "ically": 1125, + "▁bro": 1126, + "ives": 1127, + "▁same": 1128, + "gg": 1129, + "though": 1130, + "ruct": 1131, + "▁need": 1132, + "▁called": 1133, + "▁br": 1134, + "▁var": 1135, + "▁John": 1136, + "▁rece": 1137, + "▁ins": 1138, + "▁series": 1139, + "▁16": 1140, + "ural": 1141, + "▁world": 1142, + "▁support": 1143, + "ley": 1144, + "▁each": 1145, + "ger": 1146, + "ided": 1147, + "ull": 1148, + "til": 1149, + "▁fin": 1150, + "▁just": 1151, + "▁They": 1152, + "ax": 1153, + "ness": 1154, + "ccess": 1155, + "ene": 1156, + "ium": 1157, + "▁det": 1158, + ").": 1159, + "▁partic": 1160, + "▁water": 1161, + "emb": 1162, + "▁early": 1163, + "▁point": 1164, + "▁pass": 1165, + "ience": 1166, + "▁Is": 1167, + "▁Bl": 1168, + "▁11": 1169, + "els": 1170, + "▁aut": 1171, + "osed": 1172, + "ove": 1173, + "▁govern": 1174, + "iam": 1175, + "▁hist": 1176, + "▁We": 1177, + "▁incre": 1178, + "▁near": 1179, + "▁land": 1180, + "▁Ad": 1181, + "▁direct": 1182, + "▁str": 1183, + "▁make": 1184, + "▁occ": 1185, + "▁around": 1186, + "▁start": 1187, + "une": 1188, + "▁run": 1189, + "omet": 1190, + "anc": 1191, + "ued": 1192, + "▁Pro": 1193, + "▁small": 1194, + "ets": 1195, + "oot": 1196, + "▁gu": 1197, + "▁until": 1198, + "▁Aust": 1199, + "▁mil": 1200, + "▁ship": 1201, + "my": 1202, + "uss": 1203, + "cess": 1204, + "▁return": 1205, + "▁though": 1206, + "▁class": 1207, + "▁const": 1208, + "▁even": 1209, + "▁US": 1210, + "ajor": 1211, + "▁Be": 1212, + "▁Te": 1213, + "▁open": 1214, + "▁effect": 1215, + "▁consid": 1216, + "▁began": 1217, + "▁ant": 1218, + "arch": 1219, + "enn": 1220, + "▁War": 1221, + "ke": 1222, + "▁Ed": 1223, + "oss": 1224, + "▁much": 1225, + "▁very": 1226, + "▁our": 1227, + "▁along": 1228, + "pr": 1229, + "▁life": 1230, + "iving": 1231, + "▁However": 1232, + "▁report": 1233, + "▁crit": 1234, + "app": 1235, + "ody": 1236, + "ages": 1237, + "▁oper": 1238, + "▁Gr": 1239, + "ner": 1240, + "▁contro": 1241, + "tle": 1242, + "ended": 1243, + "aving": 1244, + "▁requ": 1245, + "▁exper": 1246, + "▁Q": 1247, + "▁those": 1248, + "ilt": 1249, + "▁All": 1250, + "ute": 1251, + "▁million": 1252, + "▁school": 1253, + "▁episode": 1254, + "▁build": 1255, + "erman": 1256, + "esp": 1257, + "▁Col": 1258, + "▁li": 1259, + "▁should": 1260, + "rist": 1261, + "▁May": 1262, + "ina": 1263, + "▁success": 1264, + "▁av": 1265, + "ately": 1266, + "ont": 1267, + "▁adv": 1268, + "▁men": 1269, + "▁$": 1270, + "▁person": 1271, + "▁state": 1272, + "▁different": 1273, + "▁way": 1274, + "▁Car": 1275, + "▁States": 1276, + "▁offic": 1277, + "▁music": 1278, + "▁13": 1279, + "▁power": 1280, + "▁ak": 1281, + "▁ele": 1282, + "▁right": 1283, + "ret": 1284, + "▁expl": 1285, + "ains": 1286, + "ne": 1287, + "▁public": 1288, + "▁There": 1289, + "▁conc": 1290, + "ize": 1291, + "▁conf": 1292, + "ected": 1293, + "▁area": 1294, + "▁import": 1295, + "ional": 1296, + "▁describ": 1297, + "ean": 1298, + "▁hum": 1299, + "▁Ph": 1300, + "▁yo": 1301, + "▁following": 1302, + "ology": 1303, + "▁British": 1304, + "▁lit": 1305, + "▁ref": 1306, + "▁allow": 1307, + "gy": 1308, + "ians": 1309, + "▁[": 1310, + "▁character": 1311, + "▁And": 1312, + "▁la": 1313, + "▁When": 1314, + "▁typ": 1315, + "▁bo": 1316, + "▁prom": 1317, + "▁head": 1318, + "chn": 1319, + "▁prot": 1320, + "▁released": 1321, + "ording": 1322, + "▁14": 1323, + "ital": 1324, + "▁195": 1325, + "gin": 1326, + "ively": 1327, + "iversity": 1328, + "omin": 1329, + "▁By": 1330, + "▁Pl": 1331, + "▁attack": 1332, + "▁rest": 1333, + "▁now": 1334, + "iven": 1335, + "▁place": 1336, + "▁major": 1337, + "▁elect": 1338, + "inc": 1339, + "▁Br": 1340, + "▁pat": 1341, + "▁order": 1342, + "▁large": 1343, + "▁appear": 1344, + "amed": 1345, + "arm": 1346, + "▁poss": 1347, + "eb": 1348, + "▁refer": 1349, + "ission": 1350, + "▁book": 1351, + "▁World": 1352, + "▁appro": 1353, + "lish": 1354, + "wa": 1355, + "▁Aug": 1356, + "▁every": 1357, + "▁cur": 1358, + "▁Can": 1359, + "▁yon": 1360, + "ified": 1361, + "▁sk": 1362, + "eng": 1363, + "onom": 1364, + "▁hand": 1365, + "aced": 1366, + "urch": 1367, + "▁organ": 1368, + "wards": 1369, + "▁German": 1370, + "▁Ju": 1371, + "▁Sept": 1372, + "▁last": 1373, + "▁Comm": 1374, + "hern": 1375, + "▁since": 1376, + "gram": 1377, + "▁fact": 1378, + "▁August": 1379, + "▁bre": 1380, + "▁century": 1381, + "▁ann": 1382, + "▁soc": 1383, + "▁took": 1384, + "▁level": 1385, + "▁another": 1386, + "▁193": 1387, + "▁my": 1388, + "▁191": 1389, + "▁September": 1390, + "raft": 1391, + "over": 1392, + "▁commun": 1393, + "▁care": 1394, + "▁six": 1395, + "▁vis": 1396, + "iti": 1397, + "ats": 1398, + "▁get": 1399, + "ases": 1400, + "ored": 1401, + "ences": 1402, + "▁turn": 1403, + "med": 1404, + "▁Austral": 1405, + "▁win": 1406, + "ves": 1407, + "itions": 1408, + "▁dem": 1409, + "▁batt": 1410, + "▁km": 1411, + "▁often": 1412, + "▁York": 1413, + "▁Ay": 1414, + "▁gener": 1415, + "▁cour": 1416, + "▁five": 1417, + "▁government": 1418, + "▁mar": 1419, + "iod": 1420, + "▁city": 1421, + "▁leg": 1422, + "▁old": 1423, + "ulation": 1424, + "▁great": 1425, + "ried": 1426, + "ently": 1427, + "▁eng": 1428, + "▁Oct": 1429, + "ices": 1430, + "reen": 1431, + "▁North": 1432, + "▁still": 1433, + "▁Nov": 1434, + "orp": 1435, + "omen": 1436, + "ged": 1437, + "ides": 1438, + "▁prev": 1439, + "▁north": 1440, + "▁month": 1441, + "▁take": 1442, + "▁term": 1443, + "▁home": 1444, + "▁based": 1445, + "ata": 1446, + "),": 1447, + "▁due": 1448, + "▁best": 1449, + "▁know": 1450, + "read": 1451, + "▁iss": 1452, + "▁cap": 1453, + "▁received": 1454, + "▁mark": 1455, + "▁good": 1456, + "oint": 1457, + "▁belie": 1458, + "ior": 1459, + "▁within": 1460, + "▁find": 1461, + "akes": 1462, + "▁single": 1463, + "isyen": 1464, + "oci": 1465, + "▁Eu": 1466, + "▁vers": 1467, + "▁Ge": 1468, + "aim": 1469, + "▁par": 1470, + "▁left": 1471, + "▁children": 1472, + "ling": 1473, + "▁name": 1474, + "▁opp": 1475, + "▁family": 1476, + "▁Pr": 1477, + "▁30": 1478, + "▁short": 1479, + "▁caus": 1480, + "▁October": 1481, + "▁spe": 1482, + "ection": 1483, + "▁read": 1484, + "▁less": 1485, + "▁Jan": 1486, + "▁real": 1487, + "▁et": 1488, + "ales": 1489, + "▁top": 1490, + "▁line": 1491, + "ining": 1492, + "▁equ": 1493, + "▁Will": 1494, + "▁stand": 1495, + "▁Me": 1496, + "▁King": 1497, + "▁process": 1498, + "ilar": 1499, + "▁gl": 1500, + "▁Christ": 1501, + "▁few": 1502, + "▁using": 1503, + "urther": 1504, + "▁death": 1505, + "▁June": 1506, + "arn": 1507, + "me": 1508, + "▁fun": 1509, + "hest": 1510, + "▁present": 1511, + "iety": 1512, + "▁health": 1513, + "▁arr": 1514, + "ote": 1515, + "iron": 1516, + "▁Or": 1517, + "▁Gu": 1518, + "ense": 1519, + "▁South": 1520, + "▁rese": 1521, + "ms": 1522, + "▁won": 1523, + "▁infl": 1524, + "empt": 1525, + "alf": 1526, + "▁species": 1527, + "hor": 1528, + "▁...": 1529, + "▁techn": 1530, + "▁final": 1531, + "▁event": 1532, + "▁sol": 1533, + "▁beh": 1534, + "▁addition": 1535, + "oad": 1536, + "▁July": 1537, + "▁Har": 1538, + "yl": 1539, + "▁inform": 1540, + "▁25": 1541, + "▁see": 1542, + "▁period": 1543, + "▁ke": 1544, + "▁Apr": 1545, + "que": 1546, + "ured": 1547, + "ott": 1548, + "uary": 1549, + "oman": 1550, + "▁program": 1551, + "▁If": 1552, + "hing": 1553, + "▁March": 1554, + "▁important": 1555, + "▁del": 1556, + "▁common": 1557, + "▁Mc": 1558, + "▁kò": 1559, + "▁Fl": 1560, + "ards": 1561, + "▁April": 1562, + "by": 1563, + "▁aff": 1564, + "▁Europ": 1565, + "▁port": 1566, + "▁view": 1567, + "▁November": 1568, + "ony": 1569, + "atic": 1570, + "idge": 1571, + "▁story": 1572, + "▁dam": 1573, + "▁Pol": 1574, + "ries": 1575, + "▁These": 1576, + "▁without": 1577, + "▁During": 1578, + "▁non": 1579, + "▁&": 1580, + "▁band": 1581, + "▁does": 1582, + "▁Em": 1583, + "bs": 1584, + "20": 1585, + "▁Tr": 1586, + "ample": 1587, + "aken": 1588, + "ox": 1589, + "mber": 1590, + "rent": 1591, + "▁National": 1592, + "▁val": 1593, + "▁plan": 1594, + "apan": 1595, + "alk": 1596, + "▁kill": 1597, + "avy": 1598, + "▁third": 1599, + "▁included": 1600, + "▁next": 1601, + "▁el": 1602, + "lev": 1603, + "▁south": 1604, + "▁]": 1605, + "▁camp": 1606, + "▁law": 1607, + "▁II": 1608, + "▁Am": 1609, + "let": 1610, + "▁che": 1611, + "▁test": 1612, + "▁memb": 1613, + "▁Japan": 1614, + "▁chang": 1615, + "▁look": 1616, + "sp": 1617, + "vers": 1618, + "ery": 1619, + "▁tem": 1620, + "▁prof": 1621, + "rote": 1622, + "▁among": 1623, + "▁%": 1624, + "ister": 1625, + "ator": 1626, + "▁want": 1627, + "▁ec": 1628, + "hel": 1629, + "▁polit": 1630, + "▁become": 1631, + "▁Man": 1632, + "ival": 1633, + "▁University": 1634, + "▁days": 1635, + "rodu": 1636, + "▁previous": 1637, + "ipp": 1638, + "▁La": 1639, + "com": 1640, + "▁Fran": 1641, + "cember": 1642, + "riend": 1643, + "▁cle": 1644, + "▁review": 1645, + "▁post": 1646, + "ple": 1647, + "ring": 1648, + "▁div": 1649, + "▁led": 1650, + "▁local": 1651, + "▁repl": 1652, + "par": 1653, + "▁rad": 1654, + "▁December": 1655, + "aren": 1656, + "▁fre": 1657, + "ances": 1658, + "▁list": 1659, + "▁His": 1660, + "ones": 1661, + "line": 1662, + "▁proble": 1663, + "▁January": 1664, + "ograf": 1665, + "urs": 1666, + "ched": 1667, + "▁One": 1668, + "ourn": 1669, + "▁cond": 1670, + "▁tit": 1671, + "▁estab": 1672, + "self": 1673, + "sh": 1674, + "ency": 1675, + "▁wrote": 1676, + "▁light": 1677, + "▁fore": 1678, + "▁prop": 1679, + "▁ide": 1680, + "▁You": 1681, + "aining": 1682, + "▁track": 1683, + "▁somet": 1684, + "aster": 1685, + "ague": 1686, + "▁invol": 1687, + "▁grow": 1688, + "▁however": 1689, + "▁role": 1690, + "▁body": 1691, + "augh": 1692, + "▁vide": 1693, + "ead": 1694, + "▁control": 1695, + "to": 1696, + "▁played": 1697, + "▁described": 1698, + "▁attempt": 1699, + "▁Bro": 1700, + "rench": 1701, + "▁Gen": 1702, + "▁similar": 1703, + "▁eas": 1704, + "ots": 1705, + "▁project": 1706, + "▁Par": 1707, + "▁include": 1708, + "ached": 1709, + "▁sit": 1710, + "▁members": 1711, + "oon": 1712, + "▁dest": 1713, + "▁side": 1714, + "▁Ex": 1715, + "▁But": 1716, + "▁Mus": 1717, + "▁activ": 1718, + "▁manag": 1719, + "ention": 1720, + "▁2010": 1721, + "▁bas": 1722, + "iness": 1723, + "ograph": 1724, + "itive": 1725, + "▁hig": 1726, + "▁mid": 1727, + "▁study": 1728, + "cent": 1729, + "▁El": 1730, + "▁100": 1731, + "▁redu": 1732, + "▁lang": 1733, + "ration": 1734, + "▁low": 1735, + "▁development": 1736, + "▁came": 1737, + "▁interest": 1738, + "ality": 1739, + "▁command": 1740, + "▁built": 1741, + "▁Cent": 1742, + "▁named": 1743, + "▁Ist": 1744, + "▁kòm": 1745, + "ole": 1746, + "ches": 1747, + "▁wind": 1748, + "▁particular": 1749, + "▁With": 1750, + "▁deb": 1751, + "ories": 1752, + "ball": 1753, + "▁original": 1754, + "▁X": 1755, + "▁To": 1756, + "▁stat": 1757, + "▁vil": 1758, + "rew": 1759, + "▁trad": 1760, + "▁anim": 1761, + "eter": 1762, + "resent": 1763, + "ggest": 1764, + "▁suggest": 1765, + "▁capt": 1766, + "▁tw": 1767, + "ruction": 1768, + "side": 1769, + "day": 1770, + "irc": 1771, + "▁further": 1772, + "oung": 1773, + "tal": 1774, + "▁gun": 1775, + "ivid": 1776, + "uted": 1777, + "▁late": 1778, + "▁food": 1779, + "▁cover": 1780, + "▁country": 1781, + "ours": 1782, + "▁having": 1783, + "▁Kib": 1784, + "▁21": 1785, + "ization": 1786, + "▁bus": 1787, + "▁French": 1788, + "▁2011": 1789, + "▁given": 1790, + "▁Geor": 1791, + "yn": 1792, + "▁history": 1793, + "▁No": 1794, + "ords": 1795, + "osp": 1796, + "▁Feb": 1797, + "▁held": 1798, + "▁students": 1799, + "itary": 1800, + "▁although": 1801, + "▁human": 1802, + "▁Istwa": 1803, + "▁sent": 1804, + "▁2009": 1805, + "▁lim": 1806, + "▁treat": 1807, + "ini": 1808, + "ably": 1809, + "na": 1810, + "ination": 1811, + "▁production": 1812, + "▁English": 1813, + "ges": 1814, + "▁cr": 1815, + "▁mag": 1816, + "▁considered": 1817, + "▁2008": 1818, + "ruary": 1819, + "▁comb": 1820, + "cer": 1821, + "ript": 1822, + "▁say": 1823, + "rain": 1824, + "▁let": 1825, + "ografi": 1826, + "▁press": 1827, + "▁influ": 1828, + "▁sold": 1829, + "▁February": 1830, + "▁times": 1831, + "▁week": 1832, + "ploy": 1833, + "▁strong": 1834, + "▁games": 1835, + "ument": 1836, + "ids": 1837, + "▁impro": 1838, + "▁cor": 1839, + "▁claim": 1840, + "▁24": 1841, + "▁Ab": 1842, + "▁West": 1843, + "stand": 1844, + "▁ident": 1845, + "▁William": 1846, + "▁tri": 1847, + "ese": 1848, + "estern": 1849, + "▁While": 1850, + "▁Af": 1851, + "▁house": 1852, + "ering": 1853, + "▁example": 1854, + "▁former": 1855, + "▁never": 1856, + "▁pract": 1857, + "ertain": 1858, + "▁Acc": 1859, + "▁making": 1860, + "fic": 1861, + "▁190": 1862, + "eth": 1863, + "▁half": 1864, + "ung": 1865, + "ler": 1866, + "▁Cal": 1867, + "▁mater": 1868, + "viron": 1869, + "ape": 1870, + "ops": 1871, + "▁Jew": 1872, + "work": 1873, + "here": 1874, + "▁signific": 1875, + "isc": 1876, + "▁town": 1877, + "▁Char": 1878, + "▁video": 1879, + "▁too": 1880, + "atter": 1881, + "iment": 1882, + "▁cult": 1883, + "▁2012": 1884, + "▁must": 1885, + "ither": 1886, + "▁sw": 1887, + "▁Although": 1888, + "esc": 1889, + "▁192": 1890, + "▁pain": 1891, + "▁women": 1892, + "br": 1893, + "ham": 1894, + "ille": 1895, + "▁2007": 1896, + "ison": 1897, + "elt": 1898, + "▁author": 1899, + "▁individ": 1900, + "▁Dav": 1901, + "oms": 1902, + "oute": 1903, + "ential": 1904, + "▁information": 1905, + "▁sound": 1906, + "ront": 1907, + "▁ris": 1908, + "▁Fr": 1909, + "uck": 1910, + "cing": 1911, + "▁surv": 1912, + "▁position": 1913, + "▁Ne": 1914, + "▁storm": 1915, + "ergy": 1916, + "ways": 1917, + "▁areas": 1918, + "▁sym": 1919, + "▁Min": 1920, + "▁Bar": 1921, + "idence": 1922, + "▁release": 1923, + "▁able": 1924, + "▁cost": 1925, + "▁continued": 1926, + "▁match": 1927, + "raw": 1928, + "▁obs": 1929, + "▁Ear": 1930, + "▁intern": 1931, + "ression": 1932, + "sequ": 1933, + "▁England": 1934, + "ells": 1935, + "▁Mich": 1936, + "ai": 1937, + "bo": 1938, + "▁feat": 1939, + "▁Ang": 1940, + "mit": 1941, + "rie": 1942, + "▁Her": 1943, + "▁field": 1944, + "reet": 1945, + "▁Li": 1946, + "▁road": 1947, + "▁Canad": 1948, + "▁published": 1949, + "atch": 1950, + "ae": 1951, + "ending": 1952, + "▁fail": 1953, + "▁research": 1954, + "▁nat": 1955, + "▁friend": 1956, + "min": 1957, + "hers": 1958, + "▁Ass": 1959, + "▁written": 1960, + "yle": 1961, + "▁material": 1962, + "abor": 1963, + "▁Go": 1964, + "less": 1965, + "ope": 1966, + "ify": 1967, + "▁vol": 1968, + "▁company": 1969, + "▁total": 1970, + "▁building": 1971, + "▁put": 1972, + "▁Park": 1973, + "▁suff": 1974, + "▁Count": 1975, + "▁Co": 1976, + "▁across": 1977, + "ropical": 1978, + "▁lik": 1979, + "19": 1980, + "ogn": 1981, + "▁represent": 1982, + "uel": 1983, + "▁fire": 1984, + "olution": 1985, + "▁gra": 1986, + "▁Sy": 1987, + "▁City": 1988, + "ivil": 1989, + "▁quest": 1990, + "aul": 1991, + "▁jo": 1992, + "▁educ": 1993, + "▁ground": 1994, + "af": 1995, + "▁struct": 1996, + "▁fac": 1997, + "▁significant": 1998, + "▁22": 1999, + "▁23": 2000, + "▁little": 2001, + "▁away": 2002, + "▁appe": 2003, + "lic": 2004, + "▁larg": 2005, + "ological": 2006, + "▁change": 2007, + "▁Rep": 2008, + "▁age": 2009, + "ee": 2010, + "vironment": 2011, + "▁various": 2012, + "roy": 2013, + "▁According": 2014, + "▁origin": 2015, + "▁River": 2016, + "▁decl": 2017, + "ondon": 2018, + "▁data": 2019, + "duct": 2020, + "ford": 2021, + "ye": 2022, + "used": 2023, + "▁dev": 2024, + "utes": 2025, + "▁foot": 2026, + "▁Rober": 2027, + "▁reported": 2028, + "▁developed": 2029, + "most": 2030, + "▁colle": 2031, + "▁moved": 2032, + "▁econom": 2033, + "aff": 2034, + "▁relations": 2035, + "▁feature": 2036, + "▁proper": 2037, + "▁50": 2038, + "▁phys": 2039, + "▁sour": 2040, + "▁others": 2041, + "▁produced": 2042, + "▁2013": 2043, + "▁sum": 2044, + "▁conn": 2045, + "▁begin": 2046, + "▁z": 2047, + "▁London": 2048, + "ream": 2049, + "▁avail": 2050, + "▁2006": 2051, + "▁version": 2052, + "▁ren": 2053, + "▁popular": 2054, + "▁prim": 2055, + "ama": 2056, + "ensive": 2057, + "▁er": 2058, + "ps": 2059, + "▁west": 2060, + "▁Air": 2061, + "èk": 2062, + "craft": 2063, + "▁compet": 2064, + "▁Sm": 2065, + "▁national": 2066, + "▁introdu": 2067, + "▁red": 2068, + "▁full": 2069, + "▁east": 2070, + "ief": 2071, + "reg": 2072, + "omb": 2073, + "iting": 2074, + "▁Ag": 2075, + "▁ter": 2076, + "▁social": 2077, + "ington": 2078, + "▁went": 2079, + "hod": 2080, + "▁Mon": 2081, + "▁product": 2082, + "alt": 2083, + "ills": 2084, + "▁di": 2085, + "▁special": 2086, + "▁Some": 2087, + "oph": 2088, + "▁meas": 2089, + "▁service": 2090, + "▁Afric": 2091, + "ney": 2092, + "▁pot": 2093, + "▁vict": 2094, + "▁case": 2095, + "▁cast": 2096, + "▁months": 2097, + "▁might": 2098, + "▁lost": 2099, + "▁Med": 2100, + "▁seen": 2101, + "▁gave": 2102, + "▁init": 2103, + "▁histor": 2104, + "▁think": 2105, + "stit": 2106, + "▁Res": 2107, + "▁invest": 2108, + "▁America": 2109, + "▁Ayiti": 2110, + "▁enc": 2111, + "▁created": 2112, + "▁circ": 2113, + "▁don": 2114, + "▁Sec": 2115, + "▁dise": 2116, + "▁telev": 2117, + "▁High": 2118, + "▁young": 2119, + "▁exist": 2120, + "▁Comp": 2121, + "▁offer": 2122, + "▁associ": 2123, + "▁current": 2124, + "▁What": 2125, + "rest": 2126, + "▁ve": 2127, + "ublic": 2128, + "icle": 2129, + "▁God": 2130, + "ien": 2131, + "▁possible": 2132, + "ators": 2133, + "▁2004": 2134, + "ficult": 2135, + "▁better": 2136, + "▁State": 2137, + "▁ste": 2138, + "▁cy": 2139, + "▁toget": 2140, + "▁general": 2141, + "▁together": 2142, + "ability": 2143, + "▁announ": 2144, + "▁Gl": 2145, + "▁keep": 2146, + "▁military": 2147, + "▁political": 2148, + "▁population": 2149, + "▁forces": 2150, + "▁player": 2151, + "▁Dr": 2152, + "▁foc": 2153, + "▁difficult": 2154, + "▁indust": 2155, + "▁mult": 2156, + "ana": 2157, + "▁cross": 2158, + "asing": 2159, + "▁40": 2160, + "▁black": 2161, + "▁percent": 2162, + "elling": 2163, + "pect": 2164, + "aged": 2165, + "▁occur": 2166, + "▁ask": 2167, + "rick": 2168, + "▁fight": 2169, + "▁Sw": 2170, + "ask": 2171, + "rict": 2172, + "▁free": 2173, + "▁27": 2174, + "▁Pres": 2175, + "▁taken": 2176, + "ressed": 2177, + "ald": 2178, + "▁range": 2179, + "▁force": 2180, + "aps": 2181, + "▁Div": 2182, + "▁super": 2183, + "imate": 2184, + "ened": 2185, + "▁club": 2186, + "▁returned": 2187, + "aper": 2188, + "▁eight": 2189, + "▁himself": 2190, + "aly": 2191, + "▁28": 2192, + "▁nort": 2193, + ".”": 2194, + "▁performance": 2195, + "▁ten": 2196, + "▁father": 2197, + "gen": 2198, + "▁meet": 2199, + "▁available": 2200, + "▁night": 2201, + "sc": 2202, + "▁Kiba": 2203, + "▁wid": 2204, + "▁langu": 2205, + "▁aver": 2206, + "▁becom": 2207, + "▁mean": 2208, + "omm": 2209, + "outhern": 2210, + "aign": 2211, + "lands": 2212, + "orts": 2213, + "▁tre": 2214, + "▁mot": 2215, + "▁thought": 2216, + "▁squ": 2217, + "▁defe": 2218, + "▁2014": 2219, + "▁observ": 2220, + "ampions": 2221, + "▁Batt": 2222, + "▁throughout": 2223, + "▁creat": 2224, + "imately": 2225, + "view": 2226, + "▁26": 2227, + "aut": 2228, + "▁coll": 2229, + "▁tour": 2230, + "▁once": 2231, + "oid": 2232, + "ows": 2233, + "▁learn": 2234, + "▁feel": 2235, + "▁Australia": 2236, + "▁profess": 2237, + "▁successful": 2238, + "▁writing": 2239, + "▁bar": 2240, + "▁conv": 2241, + "▁stated": 2242, + "▁recorded": 2243, + "▁hard": 2244, + "▁2005": 2245, + "▁fem": 2246, + "▁fav": 2247, + "▁Qu": 2248, + "▁Phil": 2249, + "▁Sim": 2250, + "▁least": 2251, + "sel": 2252, + "▁pred": 2253, + "▁fall": 2254, + "▁Russ": 2255, + "rey": 2256, + "▁died": 2257, + "▁Per": 2258, + "▁arg": 2259, + "▁business": 2260, + "ades": 2261, + "urb": 2262, + "epend": 2263, + "▁working": 2264, + "▁cut": 2265, + "▁Act": 2266, + "ving": 2267, + "▁General": 2268, + "▁entire": 2269, + "▁James": 2270, + "▁rather": 2271, + "▁far": 2272, + "▁white": 2273, + "oice": 2274, + "▁rock": 2275, + "▁Et": 2276, + "▁Im": 2277, + "istic": 2278, + "▁pri": 2279, + "▁loss": 2280, + "▁official": 2281, + "▁Pe": 2282, + "▁Rec": 2283, + "ude": 2284, + "aves": 2285, + "▁modern": 2286, + "of": 2287, + "▁cop": 2288, + "▁son": 2289, + "lex": 2290, + "▁Ste": 2291, + "den": 2292, + "dom": 2293, + "▁object": 2294, + "ush": 2295, + "▁destroy": 2296, + "onst": 2297, + "▁star": 2298, + "▁energy": 2299, + "face": 2300, + "▁Jack": 2301, + "▁battle": 2302, + "▁arch": 2303, + "ament": 2304, + "▁site": 2305, + "▁caused": 2306, + "dle": 2307, + "ze": 2308, + "▁come": 2309, + "▁career": 2310, + "▁ships": 2311, + "▁Ser": 2312, + "▁bi": 2313, + "▁works": 2314, + "oyal": 2315, + "▁earl": 2316, + "▁189": 2317, + "lished": 2318, + "▁prevent": 2319, + "▁ill": 2320, + "go": 2321, + "▁ay": 2322, + "ique": 2323, + "ett": 2324, + "▁hold": 2325, + "▁Intern": 2326, + "▁live": 2327, + "▁sou": 2328, + "▁provide": 2329, + "▁Reg": 2330, + "lected": 2331, + "umb": 2332, + "▁environment": 2333, + "tt": 2334, + "aching": 2335, + "uture": 2336, + "▁Rel": 2337, + "▁Bo": 2338, + "ecess": 2339, + "oring": 2340, + "ael": 2341, + "▁hy": 2342, + "tè": 2343, + "▁aircraft": 2344, + "iol": 2345, + "▁cal": 2346, + "▁Part": 2347, + "▁upon": 2348, + "▁ki": 2349, + "nd": 2350, + "ming": 2351, + "▁access": 2352, + "▁action": 2353, + "chie": 2354, + "▁epi": 2355, + "cil": 2356, + "▁either": 2357, + "▁ayisyen": 2358, + "▁Mor": 2359, + "▁understand": 2360, + "urg": 2361, + "ems": 2362, + "▁2000": 2363, + "▁relationship": 2364, + "▁tradition": 2365, + "▁neg": 2366, + "▁critic": 2367, + "▁remained": 2368, + "▁past": 2369, + "▁respons": 2370, + "▁happ": 2371, + "urric": 2372, + "▁blood": 2373, + "▁established": 2374, + "▁recogn": 2375, + "▁esp": 2376, + "upp": 2377, + "▁followed": 2378, + "▁bene": 2379, + "ising": 2380, + "ex": 2381, + "aur": 2382, + "▁Army": 2383, + "▁clear": 2384, + "▁mass": 2385, + "rought": 2386, + "▁Mad": 2387, + "▁plant": 2388, + "▁aud": 2389, + "▁started": 2390, + "▁Sch": 2391, + "ster": 2392, + "cial": 2393, + "ateg": 2394, + "ara": 2395, + "▁cause": 2396, + "▁feet": 2397, + "▁points": 2398, + "▁title": 2399, + "▁almost": 2400, + "▁front": 2401, + "ification": 2402, + "▁campaign": 2403, + "acy": 2404, + "▁particip": 2405, + "▁2015": 2406, + "▁chart": 2407, + "▁Hen": 2408, + "▁Japanese": 2409, + "▁employ": 2410, + "▁noted": 2411, + "▁County": 2412, + "▁mor": 2413, + "hem": 2414, + "▁characters": 2415, + "play": 2416, + "▁fund": 2417, + "▁agre": 2418, + ".,": 2419, + "be": 2420, + "▁broad": 2421, + "10": 2422, + "rag": 2423, + "▁indic": 2424, + "▁songs": 2425, + "medi": 2426, + "iers": 2427, + "▁coun": 2428, + "bert": 2429, + "ements": 2430, + "irl": 2431, + "▁East": 2432, + "▁method": 2433, + "▁certain": 2434, + "▁tro": 2435, + "▁Thom": 2436, + "▁added": 2437, + "ware": 2438, + "▁reached": 2439, + "▁separ": 2440, + "▁quick": 2441, + "▁lower": 2442, + "▁29": 2443, + "atory": 2444, + "cle": 2445, + "▁felt": 2446, + "▁instead": 2447, + "▁David": 2448, + "▁ever": 2449, + "ino": 2450, + "▁arm": 2451, + "▁lack": 2452, + "▁above": 2453, + "▁pur": 2454, + "▁contrib": 2455, + "iation": 2456, + "▁School": 2457, + "▁Indian": 2458, + "▁performed": 2459, + "▁features": 2460, + "▁miles": 2461, + "iding": 2462, + "▁That": 2463, + "uk": 2464, + "▁Hol": 2465, + "▁coast": 2466, + "▁mix": 2467, + "▁close": 2468, + "▁inj": 2469, + "▁pers": 2470, + "ceed": 2471, + "iff": 2472, + "▁type": 2473, + "eks": 2474, + "▁region": 2475, + "ffic": 2476, + "▁George": 2477, + "▁My": 2478, + "▁amount": 2479, + "▁enough": 2480, + "men": 2481, + "▁pa": 2482, + "▁engine": 2483, + "cast": 2484, + "▁Rich": 2485, + "▁provided": 2486, + "▁give": 2487, + "▁usually": 2488, + "etwork": 2489, + "▁fr": 2490, + "▁seven": 2491, + "ius": 2492, + "▁accept": 2493, + "▁determ": 2494, + "▁ap": 2495, + "por": 2496, + "ilities": 2497, + "50": 2498, + "erc": 2499, + "▁served": 2500, + "ought": 2501, + "ecially": 2502, + "▁pra": 2503, + "reek": 2504, + "▁damage": 2505, + "▁Europe": 2506, + "▁killed": 2507, + "orpor": 2508, + "▁style": 2509, + "▁going": 2510, + "▁community": 2511, + "▁station": 2512, + "▁key": 2513, + "▁located": 2514, + "▁means": 2515, + "▁opt": 2516, + "▁natural": 2517, + "▁member": 2518, + "▁future": 2519, + "▁subject": 2520, + "▁account": 2521, + "▁nov": 2522, + "▁|": 2523, + "▁clos": 2524, + "lin": 2525, + "▁space": 2526, + "▁respect": 2527, + "ump": 2528, + "▁scient": 2529, + "amm": 2530, + "ray": 2531, + "▁ft": 2532, + "▁Division": 2533, + "head": 2534, + "▁Do": 2535, + "▁behind": 2536, + "artment": 2537, + "▁stri": 2538, + "▁announced": 2539, + "▁average": 2540, + "▁tru": 2541, + "now": 2542, + "ume": 2543, + "aces": 2544, + "ampionship": 2545, + "▁rul": 2546, + "field": 2547, + "▁conduct": 2548, + "oe": 2549, + "▁exam": 2550, + "▁Tra": 2551, + "▁hon": 2552, + "▁consist": 2553, + "▁risk": 2554, + "uation": 2555, + "azini": 2556, + "▁Black": 2557, + "xic": 2558, + "▁Street": 2559, + "▁formed": 2560, + "▁Other": 2561, + "ctor": 2562, + "erous": 2563, + "▁Dep": 2564, + "▁increased": 2565, + "▁saf": 2566, + "▁discuss": 2567, + "iction": 2568, + "tain": 2569, + "▁born": 2570, + "emy": 2571, + "▁Ak": 2572, + "▁sex": 2573, + "▁saw": 2574, + "▁achie": 2575, + "▁hom": 2576, + "▁So": 2577, + "▁fig": 2578, + "▁hours": 2579, + "▁relig": 2580, + "▁Road": 2581, + "▁television": 2582, + "▁hit": 2583, + "▁Stud": 2584, + "▁ess": 2585, + "▁eventually": 2586, + "sy": 2587, + "▁according": 2588, + "ica": 2589, + "▁base": 2590, + "▁problems": 2591, + "▁changes": 2592, + "▁mother": 2593, + "▁try": 2594, + "ready": 2595, + "▁especially": 2596, + "amb": 2597, + "▁League": 2598, + "▁leading": 2599, + "▁San": 2600, + "▁host": 2601, + "▁stage": 2602, + "▁players": 2603, + "▁ball": 2604, + "▁dou": 2605, + "▁miss": 2606, + "▁designed": 2607, + "▁disease": 2608, + "hib": 2609, + "▁mount": 2610, + "for": 2611, + "pped": 2612, + "gress": 2613, + "ength": 2614, + "▁Etazini": 2615, + "▁ce": 2616, + "▁Wash": 2617, + "▁break": 2618, + "▁events": 2619, + "ights": 2620, + "▁decided": 2621, + "▁Paul": 2622, + "▁likely": 2623, + "▁reve": 2624, + "▁generally": 2625, + "▁prob": 2626, + "ibility": 2627, + "▁abs": 2628, + "▁House": 2629, + "▁appeared": 2630, + "▁weeks": 2631, + "de": 2632, + "ule": 2633, + "▁priv": 2634, + "ounds": 2635, + "▁Vil": 2636, + "▁assist": 2637, + "▁course": 2638, + "▁create": 2639, + "▁towards": 2640, + "èt": 2641, + "▁language": 2642, + "▁increase": 2643, + "rown": 2644, + "▁Australian": 2645, + "▁groups": 2646, + "aval": 2647, + "▁involved": 2648, + "▁states": 2649, + "urricane": 2650, + "▁temper": 2651, + "▁training": 2652, + "▁tropical": 2653, + "||": 2654, + "▁regular": 2655, + "▁vir": 2656, + "▁France": 2657, + "▁esc": 2658, + "▁2003": 2659, + "▁effects": 2660, + "asc": 2661, + "▁race": 2662, + "ters": 2663, + "▁imm": 2664, + "▁From": 2665, + "▁regard": 2666, + "▁construction": 2667, + "▁brought": 2668, + "ites": 2669, + "▁always": 2670, + "▁things": 2671, + "ortun": 2672, + "▁188": 2673, + "val": 2674, + "▁already": 2675, + "▁experience": 2676, + "▁higher": 2677, + "▁impact": 2678, + "ores": 2679, + "selves": 2680, + "▁consider": 2681, + "▁Bill": 2682, + "▁something": 2683, + "▁’": 2684, + "ires": 2685, + "oted": 2686, + "▁lane": 2687, + "etic": 2688, + "ands": 2689, + "▁required": 2690, + "▁mm": 2691, + "osition": 2692, + "▁threat": 2693, + "▁evidence": 2694, + "▁remov": 2695, + "arc": 2696, + "anks": 2697, + "▁pay": 2698, + "overed": 2699, + "oor": 2700, + "▁worked": 2701, + "▁here": 2702, + "▁vill": 2703, + "▁mem": 2704, + "▁186": 2705, + "▁phot": 2706, + "▁heavy": 2707, + "▁paren": 2708, + "▁Red": 2709, + "▁Robert": 2710, + "▁countries": 2711, + "▁award": 2712, + "ned": 2713, + "▁completed": 2714, + "▁Vir": 2715, + "▁Rob": 2716, + "ma": 2717, + "clus": 2718, + "▁particularly": 2719, + "▁fle": 2720, + "▁taking": 2721, + "▁itself": 2722, + "▁parts": 2723, + "▁self": 2724, + "▁surface": 2725, + "the": 2726, + "▁Washington": 2727, + "▁European": 2728, + "▁insp": 2729, + "▁travel": 2730, + "igned": 2731, + "èn": 2732, + "▁polic": 2733, + "▁bill": 2734, + "▁grad": 2735, + "▁soon": 2736, + "▁President": 2737, + "aring": 2738, + "▁pou": 2739, + "▁frequ": 2740, + "▁laun": 2741, + "▁route": 2742, + "▁levels": 2743, + "▁king": 2744, + "thing": 2745, + "▁Port": 2746, + "▁Val": 2747, + "itch": 2748, + "▁allowed": 2749, + "▁31": 2750, + "▁stop": 2751, + "agn": 2752, + "lying": 2753, + "▁big": 2754, + "▁market": 2755, + "▁!": 2756, + "▁playing": 2757, + "▁party": 2758, + "▁First": 2759, + "▁move": 2760, + "off": 2761, + "▁Mart": 2762, + "▁Bel": 2763, + "▁heart": 2764, + "▁Royal": 2765, + "itar": 2766, + "ishing": 2767, + "orse": 2768, + "reng": 2769, + "incip": 2770, + "itor": 2771, + "▁estim": 2772, + "▁Dan": 2773, + "▁placed": 2774, + "▁conditions": 2775, + "wood": 2776, + "▁says": 2777, + "▁Soc": 2778, + "ellow": 2779, + "▁Jos": 2780, + "▁goal": 2781, + "▁exc": 2782, + "▁brother": 2783, + "▁2001": 2784, + "▁mer": 2785, + "▁ens": 2786, + "▁Don": 2787, + ",”": 2788, + "▁commit": 2789, + "▁comment": 2790, + "rison": 2791, + "NA": 2792, + "▁wall": 2793, + "▁Lou": 2794, + "▁idea": 2795, + "▁Sup": 2796, + "uter": 2797, + "▁‘": 2798, + "▁Michael": 2799, + "▁pressure": 2800, + "yr": 2801, + "rem": 2802, + "▁tou": 2803, + "ental": 2804, + "▁Dev": 2805, + "▁whether": 2806, + "unk": 2807, + "onse": 2808, + "iles": 2809, + "▁fif": 2810, + "ership": 2811, + "▁stru": 2812, + "▁love": 2813, + "▁reb": 2814, + "▁eta": 2815, + "▁doc": 2816, + "▁length": 2817, + "▁Cour": 2818, + "▁size": 2819, + "▁treatment": 2820, + "▁positive": 2821, + "arily": 2822, + "▁Most": 2823, + "▁opened": 2824, + "▁individual": 2825, + "▁disp": 2826, + "▁subsequ": 2827, + "▁Ke": 2828, + "▁Great": 2829, + "▁crew": 2830, + "▁outside": 2831, + "ients": 2832, + "▁education": 2833, + "▁dom": 2834, + "▁wanted": 2835, + "▁India": 2836, + "▁minutes": 2837, + "▁done": 2838, + "▁exec": 2839, + "▁problem": 2840, + "▁norm": 2841, + "▁chall": 2842, + "▁largest": 2843, + "▁Squ": 2844, + "▁appoint": 2845, + "▁Henry": 2846, + "ournal": 2847, + "▁Cont": 2848, + "▁anal": 2849, + "▁concern": 2850, + "▁money": 2851, + "▁rank": 2852, + "▁Colle": 2853, + "▁central": 2854, + "▁contract": 2855, + "▁viol": 2856, + "aled": 2857, + "▁commer": 2858, + "▁really": 2859, + "▁focus": 2860, + "▁Desp": 2861, + "omp": 2862, + "rated": 2863, + "ference": 2864, + "▁speed": 2865, + "▁2002": 2866, + "▁liter": 2867, + "▁office": 2868, + "▁independ": 2869, + "antic": 2870, + "▁cann": 2871, + "▁originally": 2872, + "board": 2873, + "▁187": 2874, + "▁Many": 2875, + "▁immedi": 2876, + "▁lab": 2877, + "▁believed": 2878, + "▁Mary": 2879, + "▁sil": 2880, + "▁necess": 2881, + "▁detail": 2882, + "ends": 2883, + "▁Pal": 2884, + "▁Hist": 2885, + "▁model": 2886, + "▁streng": 2887, + "iforn": 2888, + "▁peak": 2889, + "rug": 2890, + "▁rights": 2891, + "fact": 2892, + "▁Mal": 2893, + "▁Roman": 2894, + "▁Church": 2895, + "▁Ac": 2896, + "ift": 2897, + "▁poor": 2898, + "▁emer": 2899, + "▁makes": 2900, + "▁shows": 2901, + "ios": 2902, + "▁Art": 2903, + "▁voc": 2904, + "▁earlier": 2905, + "▁lay": 2906, + "uals": 2907, + "lement": 2908, + "ky": 2909, + "▁Ber": 2910, + "▁inn": 2911, + "▁personal": 2912, + "vert": 2913, + "▁Christian": 2914, + "▁concept": 2915, + "▁react": 2916, + "▁sequ": 2917, + "yal": 2918, + "▁court": 2919, + "bor": 2920, + "minist": 2921, + "▁guns": 2922, + "▁living": 2923, + "▁Que": 2924, + "▁related": 2925, + "▁moun": 2926, + "▁sat": 2927, + "▁themselves": 2928, + "▁?": 2929, + "▁Californ": 2930, + "▁Wil": 2931, + "▁tar": 2932, + "▁words": 2933, + "▁Canada": 2934, + "▁issue": 2935, + "uff": 2936, + "ago": 2937, + "ville": 2938, + "▁function": 2939, + "oud": 2940, + "▁Pat": 2941, + "irth": 2942, + "asion": 2943, + "co": 2944, + "rap": 2945, + "onn": 2946, + "van": 2947, + "ikasyon": 2948, + "▁wife": 2949, + "ams": 2950, + "▁Two": 2951, + "ula": 2952, + "▁protect": 2953, + "oura": 2954, + "▁specific": 2955, + "▁Despite": 2956, + "▁International": 2957, + "▁Refer": 2958, + "▁army": 2959, + "▁reason": 2960, + "sw": 2961, + "The": 2962, + "▁dig": 2963, + "▁international": 2964, + "▁sometimes": 2965, + "▁fourth": 2966, + "▁troops": 2967, + "▁pw": 2968, + "▁systems": 2969, + "osing": 2970, + "▁scene": 2971, + "ples": 2972, + "▁rap": 2973, + "▁multip": 2974, + "▁island": 2975, + "▁lyen": 2976, + "▁kind": 2977, + "asons": 2978, + "odes": 2979, + "▁California": 2980, + "▁Thomas": 2981, + "utions": 2982, + "▁Kèk": 2983, + "ander": 2984, + "▁complex": 2985, + "▁Charles": 2986, + "▁emb": 2987, + "▁Follow": 2988, + "òn": 2989, + "▁desp": 2990, + "▁referans": 2991, + "▁church": 2992, + "▁500": 2993, + "▁highest": 2994, + "▁president": 2995, + "▁elements": 2996, + "▁round": 2997, + "▁saying": 2998, + "▁question": 2999, + "▁structure": 3000, + "▁told": 3001, + "▁today": 3002, + "▁rail": 3003, + "het": 3004, + "azine": 3005, + "▁behav": 3006, + "▁Mac": 3007, + "▁complete": 3008, + "▁Nor": 3009, + "▁network": 3010, + "eck": 3011, + "▁increasing": 3012, + "▁Ayisyen": 3013, + "▁Associ": 3014, + "▁beginning": 3015, + "▁Angel": 3016, + "oke": 3017, + "ibr": 3018, + "aries": 3019, + "icles": 3020, + "ening": 3021, + "▁deal": 3022, + "ledge": 3023, + "inn": 3024, + "ida": 3025, + "▁response": 3026, + "ederal": 3027, + "▁associated": 3028, + "▁passed": 3029, + "▁1996": 3030, + "▁results": 3031, + "▁nature": 3032, + "▁longer": 3033, + "ols": 3034, + "▁farm": 3035, + "▁southern": 3036, + "▁lo": 3037, + "▁whose": 3038, + "▁quickly": 3039, + "▁hous": 3040, + "▁below": 3041, + "▁mi": 3042, + "▁Bra": 3043, + "▁cases": 3044, + "oper": 3045, + "▁Mid": 3046, + "▁sea": 3047, + "▁whole": 3048, + "▁civil": 3049, + "▁additional": 3050, + "▁Best": 3051, + "▁section": 3052, + "▁Star": 3053, + "▁Sl": 3054, + "▁jew": 3055, + "ij": 3056, + "▁Earth": 3057, + "▁deep": 3058, + "▁scen": 3059, + "▁joined": 3060, + "▁runs": 3061, + "▁word": 3062, + "ault": 3063, + "▁Cong": 3064, + "ctions": 3065, + "urity": 3066, + "▁issues": 3067, + "fall": 3068, + "imin": 3069, + "vi": 3070, + "west": 3071, + "▁needed": 3072, + "▁Republic": 3073, + "▁White": 3074, + "▁Alex": 3075, + "aker": 3076, + "▁wood": 3077, + "inem": 3078, + "▁benef": 3079, + "BC": 3080, + "▁park": 3081, + "anned": 3082, + "▁ly": 3083, + "▁turned": 3084, + "▁lines": 3085, + "▁replaced": 3086, + "▁services": 3087, + "amer": 3088, + "▁rate": 3089, + "▁Govern": 3090, + "▁lear": 3091, + "▁featured": 3092, + "▁Jewografi": 3093, + "▁require": 3094, + "▁60": 3095, + "▁science": 3096, + "▁nar": 3097, + "▁Referans": 3098, + "round": 3099, + "▁cred": 3100, + "▁Hall": 3101, + "utive": 3102, + "▁300": 3103, + "▁relasyon": 3104, + "▁Atl": 3105, + "ears": 3106, + "▁slow": 3107, + "▁text": 3108, + "▁oil": 3109, + "▁bird": 3110, + "eum": 3111, + "ulated": 3112, + "▁anti": 3113, + "▁mach": 3114, + "▁cru": 3115, + "▁movement": 3116, + "▁forced": 3117, + "ha": 3118, + "▁scored": 3119, + "ysis": 3120, + ",000": 3121, + "▁Mil": 3122, + "▁director": 3123, + "isl": 3124, + "▁units": 3125, + "▁draw": 3126, + "▁northern": 3127, + "▁bring": 3128, + "▁Relasyon": 3129, + "bers": 3130, + "▁investig": 3131, + "▁except": 3132, + "▁larger": 3133, + "▁rain": 3134, + "aters": 3135, + "▁Union": 3136, + "rol": 3137, + "fl": 3138, + "rian": 3139, + "aint": 3140, + "▁Following": 3141, + "zy": 3142, + "▁1990": 3143, + "order": 3144, + "olic": 3145, + "▁quality": 3146, + "▁mind": 3147, + "▁Sam": 3148, + "▁opening": 3149, + "airs": 3150, + "▁asked": 3151, + "iter": 3152, + "atin": 3153, + "back": 3154, + "ption": 3155, + "▁More": 3156, + "▁Sen": 3157, + "▁Ek": 3158, + "▁job": 3159, + "chan": 3160, + "▁novel": 3161, + "▁Richard": 3162, + "▁purp": 3163, + "▁terms": 3164, + "mp": 3165, + "tee": 3166, + "ror": 3167, + "▁critics": 3168, + "erve": 3169, + "▁face": 3170, + "ully": 3171, + "rel": 3172, + "aughter": 3173, + "▁Virgin": 3174, + "▁sus": 3175, + "▁includes": 3176, + "rack": 3177, + "▁tax": 3178, + "▁decision": 3179, + "▁beg": 3180, + "▁center": 3181, + "▁learning": 3182, + "ography": 3183, + "atively": 3184, + "ises": 3185, + "ques": 3186, + "imum": 3187, + "unt": 3188, + "izing": 3189, + "▁chem": 3190, + "ension": 3191, + "itation": 3192, + ".\"": 3193, + "▁princip": 3194, + "▁Germany": 3195, + "▁Day": 3196, + "▁shot": 3197, + "▁screen": 3198, + "aches": 3199, + "▁practice": 3200, + "▁potential": 3201, + "▁pen": 3202, + "▁prior": 3203, + "sych": 3204, + "ication": 3205, + "rast": 3206, + "▁Scott": 3207, + "▁gre": 3208, + "▁Met": 3209, + "▁complet": 3210, + "▁gold": 3211, + "itz": 3212, + "anced": 3213, + "▁finished": 3214, + "▁anc": 3215, + "▁App": 3216, + "▁Aktè": 3217, + "▁ability": 3218, + "▁deg": 3219, + "aily": 3220, + "▁target": 3221, + "▁transport": 3222, + "▁transfer": 3223, + "▁Bay": 3224, + "▁recomm": 3225, + "▁victory": 3226, + "▁cat": 3227, + "▁bur": 3228, + "▁Mexic": 3229, + "▁yet": 3230, + "eds": 3231, + "▁limited": 3232, + "hood": 3233, + "enced": 3234, + "▁compan": 3235, + "▁remain": 3236, + "▁Ant": 3237, + "▁Just": 3238, + "bon": 3239, + "che": 3240, + "▁Play": 3241, + "ston": 3242, + "rief": 3243, + "▁source": 3244, + "▁Island": 3245, + "▁Smith": 3246, + "▁Battle": 3247, + "▁appearance": 3248, + "ging": 3249, + "▁Court": 3250, + "uth": 3251, + "ux": 3252, + "▁previously": 3253, + "▁famil": 3254, + "▁occup": 3255, + "▁lot": 3256, + "▁Vict": 3257, + "owers": 3258, + "iled": 3259, + "adron": 3260, + "▁thus": 3261, + "▁resour": 3262, + "▁der": 3263, + "▁compared": 3264, + "▁studies": 3265, + "ulf": 3266, + "▁spent": 3267, + "▁Mark": 3268, + "30": 3269, + "▁physical": 3270, + "▁probably": 3271, + "▁wide": 3272, + "▁initially": 3273, + "▁Tex": 3274, + "▁cells": 3275, + "▁produce": 3276, + "▁Brown": 3277, + "▁activity": 3278, + "elled": 3279, + "use": 3280, + "▁bomb": 3281, + "atives": 3282, + "▁media": 3283, + "isions": 3284, + "abit": 3285, + "▁Mount": 3286, + "oses": 3287, + "▁Ben": 3288, + "▁35": 3289, + "▁UK": 3290, + "▁sens": 3291, + "uit": 3292, + "ests": 3293, + "▁adult": 3294, + "▁applic": 3295, + "▁ended": 3296, + "rial": 3297, + "▁industry": 3298, + "▁Edikasyon": 3299, + "▁Sing": 3300, + "▁shown": 3301, + "ground": 3302, + "▁Western": 3303, + "▁1999": 3304, + "▁distrib": 3305, + "inct": 3306, + "heast": 3307, + "▁cycl": 3308, + "▁Sant": 3309, + "▁summer": 3310, + "▁step": 3311, + "anish": 3312, + "▁friends": 3313, + "▁influence": 3314, + "gar": 3315, + "▁Since": 3316, + "ils": 3317, + "▁Up": 3318, + "▁Polit": 3319, + "antry": 3320, + "▁why": 3321, + "▁McC": 3322, + "▁2016": 3323, + "▁nearly": 3324, + "▁Coun": 3325, + "▁construct": 3326, + "▁stay": 3327, + "iences": 3328, + "▁mph": 3329, + "▁Frank": 3330, + "alled": 3331, + "▁approx": 3332, + "ender": 3333, + "▁Kingdom": 3334, + "mon": 3335, + "▁establish": 3336, + "▁China": 3337, + "ties": 3338, + "▁introduced": 3339, + "▁technology": 3340, + "▁syn": 3341, + "▁dark": 3342, + "▁College": 3343, + "uments": 3344, + "berg": 3345, + "▁plants": 3346, + "▁surround": 3347, + "▁Company": 3348, + "arter": 3349, + "▁visit": 3350, + "▁Navy": 3351, + "▁female": 3352, + "▁jud": 3353, + "idents": 3354, + "▁adapt": 3355, + "▁capital": 3356, + "ects": 3357, + "▁Rock": 3358, + "▁actually": 3359, + "▁cell": 3360, + "▁whom": 3361, + "▁economic": 3362, + "▁date": 3363, + "▁despite": 3364, + "▁Over": 3365, + "leg": 3366, + "▁nomin": 3367, + "▁Peter": 3368, + "eal": 3369, + "▁overall": 3370, + "▁interview": 3371, + "▁opportun": 3372, + "▁standard": 3373, + "▁90": 3374, + "▁acqu": 3375, + "▁animals": 3376, + "kn": 3377, + "▁carried": 3378, + "ucle": 3379, + "inese": 3380, + "▁room": 3381, + "▁Long": 3382, + "▁contact": 3383, + "▁financ": 3384, + "▁value": 3385, + "ranch": 3386, + "obal": 3387, + "▁ordered": 3388, + "▁paper": 3389, + "▁river": 3390, + "▁prec": 3391, + "▁takes": 3392, + "▁cho": 3393, + "ables": 3394, + "▁consum": 3395, + "▁subst": 3396, + "▁den": 3397, + "▁1980": 3398, + "mar": 3399, + "▁commercial": 3400, + "▁failed": 3401, + "▁estimated": 3402, + "edy": 3403, + "▁growth": 3404, + "▁°": 3405, + "mitted": 3406, + "▁signed": 3407, + "urt": 3408, + "▁highway": 3409, + "▁Dem": 3410, + "▁Music": 3411, + "ocr": 3412, + "▁Tom": 3413, + "▁approach": 3414, + "▁1970": 3415, + "▁dro": 3416, + "▁nine": 3417, + "▁remains": 3418, + "▁ult": 3419, + "▁trib": 3420, + "iece": 3421, + "eding": 3422, + "ulations": 3423, + "▁activities": 3424, + "▁sal": 3425, + "▁becoming": 3426, + "▁dead": 3427, + "▁types": 3428, + "òl": 3429, + "▁Gold": 3430, + "▁i": 3431, + "rab": 3432, + "▁du": 3433, + "▁Center": 3434, + "▁staff": 3435, + "▁Not": 3436, + "hy": 3437, + "▁attention": 3438, + "▁fort": 3439, + "▁collect": 3440, + "▁Ham": 3441, + "▁flood": 3442, + "▁Les": 3443, + "▁Chinese": 3444, + "▁Game": 3445, + "▁80": 3446, + "▁radio": 3447, + "▁purch": 3448, + "lo": 3449, + "▁1998": 3450, + "change": 3451, + "▁Cup": 3452, + "▁minor": 3453, + "▁medical": 3454, + "▁drug": 3455, + "▁ang": 3456, + "▁Sal": 3457, + "anded": 3458, + "▁ge": 3459, + "porary": 3460, + "sec": 3461, + "ki": 3462, + "▁woman": 3463, + "▁altern": 3464, + "ession": 3465, + "▁Africa": 3466, + "like": 3467, + "▁Britain": 3468, + "hold": 3469, + "▁private": 3470, + "▁numbers": 3471, + "▁meaning": 3472, + "▁Jean": 3473, + "▁Grand": 3474, + "enth": 3475, + "▁Louis": 3476, + "12": 3477, + "joy": 3478, + "orial": 3479, + "ety": 3480, + "ider": 3481, + "▁studio": 3482, + "cean": 3483, + "▁Times": 3484, + "▁winds": 3485, + "oviet": 3486, + "▁Association": 3487, + "▁girl": 3488, + "▁prem": 3489, + "▁serious": 3490, + "▁Sun": 3491, + "AS": 3492, + "▁schools": 3493, + "itude": 3494, + "▁western": 3495, + "▁seem": 3496, + "▁Green": 3497, + "▁avoid": 3498, + "▁Inter": 3499, + "▁running": 3500, + "ado": 3501, + "II": 3502, + "▁primary": 3503, + "▁link": 3504, + "▁praised": 3505, + "wh": 3506, + "▁Pac": 3507, + "ospital": 3508, + "ga": 3509, + "▁Another": 3510, + "▁hurricane": 3511, + "tained": 3512, + "▁birth": 3513, + "▁Flor": 3514, + "▁prep": 3515, + "eph": 3516, + "ivity": 3517, + "▁Hill": 3518, + "▁Je": 3519, + "ply": 3520, + "▁student": 3521, + "▁got": 3522, + "▁traditional": 3523, + "pire": 3524, + "▁colon": 3525, + "▁Soviet": 3526, + "▁Lu": 3527, + "▁Victor": 3528, + "ena": 3529, + "▁carry": 3530, + "▁directed": 3531, + "▁Mont": 3532, + "uries": 3533, + "enty": 3534, + "▁changed": 3535, + "irit": 3536, + "▁tim": 3537, + "ously": 3538, + "irm": 3539, + "▁parents": 3540, + "▁Spanish": 3541, + "▁pil": 3542, + "▁Tour": 3543, + "▁ways": 3544, + "▁variety": 3545, + "▁Texas": 3546, + "icro": 3547, + "▁36": 3548, + "▁adop": 3549, + "▁territ": 3550, + "▁Championship": 3551, + "▁Mill": 3552, + "▁mom": 3553, + "▁Mag": 3554, + "▁teac": 3555, + "▁critical": 3556, + "▁path": 3557, + "▁score": 3558, + "▁Ev": 3559, + "▁Miss": 3560, + "eder": 3561, + "▁cele": 3562, + "▁active": 3563, + "▁Serv": 3564, + "stitute": 3565, + "▁confl": 3566, + "rate": 3567, + "▁forest": 3568, + "▁Cons": 3569, + "▁favor": 3570, + "emic": 3571, + "▁bad": 3572, + "▁Pop": 3573, + "▁block": 3574, + "▁hop": 3575, + "▁diss": 3576, + "▁brief": 3577, + "▁Under": 3578, + "▁claimed": 3579, + "▁arrived": 3580, + "▁knowledge": 3581, + "iy": 3582, + "▁Mr": 3583, + "▁Ir": 3584, + "iant": 3585, + "▁Fre": 3586, + "▁books": 3587, + "omer": 3588, + "▁location": 3589, + "▁cannot": 3590, + "▁films": 3591, + "▁Bec": 3592, + "▁contains": 3593, + "uing": 3594, + "▁fit": 3595, + "▁continue": 3596, + "▁via": 3597, + "▁society": 3598, + "aging": 3599, + "▁Ma": 3600, + "▁suggested": 3601, + "▁green": 3602, + "▁needs": 3603, + "umn": 3604, + "iring": 3605, + "fect": 3606, + "anm": 3607, + "▁£": 3608, + "▁cust": 3609, + "▁unc": 3610, + "▁comes": 3611, + "▁police": 3612, + "▁article": 3613, + "▁greater": 3614, + "▁leave": 3615, + "ims": 3616, + "▁forms": 3617, + "▁forward": 3618, + "▁veh": 3619, + "▁hot": 3620, + "▁Council": 3621, + "▁Law": 3622, + "▁brain": 3623, + "liam": 3624, + "18": 3625, + "▁uses": 3626, + "▁bridge": 3627, + "▁Du": 3628, + "▁NY": 3629, + "▁(19": 3630, + "▁Del": 3631, + "▁professional": 3632, + "▁effective": 3633, + "▁recent": 3634, + "▁instr": 3635, + "amin": 3636, + "▁administ": 3637, + "▁1997": 3638, + "▁Franc": 3639, + "oul": 3640, + "▁helped": 3641, + "▁remaining": 3642, + "▁proposed": 3643, + "undred": 3644, + "igan": 3645, + "▁intended": 3646, + "astic": 3647, + "▁approximately": 3648, + "▁enjoy": 3649, + "▁Chic": 3650, + "▁ple": 3651, + "▁mechan": 3652, + "alion": 3653, + "▁reviews": 3654, + "ders": 3655, + "▁football": 3656, + "oti": 3657, + "▁condition": 3658, + "▁ː": 3659, + "▁latter": 3660, + "vention": 3661, + "▁kil": 3662, + "reme": 3663, + "▁Trans": 3664, + "▁gas": 3665, + "ees": 3666, + "▁heav": 3667, + "▁eastern": 3668, + "can": 3669, + "liament": 3670, + "▁majority": 3671, + "▁nation": 3672, + "▁sense": 3673, + "aught": 3674, + "▁1960": 3675, + "▁supported": 3676, + "▁recording": 3677, + "▁highly": 3678, + "▁resist": 3679, + "▁content": 3680, + "▁Award": 3681, + "▁Los": 3682, + "▁prison": 3683, + "ovens": 3684, + "▁talk": 3685, + "▁45": 3686, + "▁cancer": 3687, + "▁document": 3688, + "▁Ter": 3689, + "▁Virginia": 3690, + "▁reach": 3691, + "▁directly": 3692, + "▁status": 3693, + "ste": 3694, + "▁leaving": 3695, + "▁32": 3696, + "icted": 3697, + "▁sch": 3698, + "icient": 3699, + "nel": 3700, + "▁mostly": 3701, + "▁print": 3702, + "▁70": 3703, + "▁184": 3704, + "▁discovered": 3705, + "▁immediately": 3706, + "▁election": 3707, + "▁weight": 3708, + "light": 3709, + "▁operations": 3710, + "▁Second": 3711, + "▁Lord": 3712, + "ptoms": 3713, + "hester": 3714, + "▁Cast": 3715, + "▁pattern": 3716, + "▁board": 3717, + "▁matter": 3718, + "11": 3719, + "▁African": 3720, + "▁conclud": 3721, + "▁bow": 3722, + "▁trade": 3723, + "▁true": 3724, + "▁Congress": 3725, + "▁domin": 3726, + "▁Bur": 3727, + "▁stars": 3728, + "▁demonst": 3729, + "▁musical": 3730, + "▁rapid": 3731, + "▁smaller": 3732, + "▁rout": 3733, + "▁intens": 3734, + "uge": 3735, + "▁Hot": 3736, + "▁sen": 3737, + "▁buildings": 3738, + "▁Force": 3739, + "▁prote": 3740, + "▁inside": 3741, + "▁mess": 3742, + "▁Mo": 3743, + "▁arrang": 3744, + "▁boy": 3745, + "leep": 3746, + "▁Pri": 3747, + "ips": 3748, + "ipl": 3749, + "▁appears": 3750, + "ufact": 3751, + "▁plans": 3752, + "▁mention": 3753, + "▁expected": 3754, + "▁spread": 3755, + "▁religious": 3756, + "__": 3757, + "▁Both": 3758, + "▁goals": 3759, + "lled": 3760, + "eyi": 3761, + "▁culture": 3762, + "▁entered": 3763, + "odies": 3764, + "ari": 3765, + "ronic": 3766, + "lor": 3767, + "▁Pre": 3768, + "▁Department": 3769, + "▁poll": 3770, + "▁Resear": 3771, + "▁individuals": 3772, + "▁lif": 3773, + "▁Dis": 3774, + "▁Gra": 3775, + "onna": 3776, + "▁destroyed": 3777, + "▁pwovens": 3778, + "▁share": 3779, + "ken": 3780, + "▁Fin": 3781, + "▁initial": 3782, + "ominote": 3783, + "▁dog": 3784, + "▁moving": 3785, + "▁shoot": 3786, + "▁color": 3787, + "▁simple": 3788, + "▁Carol": 3789, + "▁log": 3790, + "▁necessary": 3791, + "▁removed": 3792, + "▁Old": 3793, + "4.": 3794, + "▁policy": 3795, + "▁dire": 3796, + "▁Pet": 3797, + "▁fast": 3798, + "▁Ol": 3799, + "lied": 3800, + "▁Bet": 3801, + "ww": 3802, + "▁products": 3803, + "▁cit": 3804, + "▁middle": 3805, + "illed": 3806, + "▁debut": 3807, + "▁sources": 3808, + "▁sett": 3809, + "▁management": 3810, + "▁earth": 3811, + "▁Route": 3812, + "orps": 3813, + "AA": 3814, + "rics": 3815, + "▁measure": 3816, + "▁writer": 3817, + "▁Sa": 3818, + "▁sust": 3819, + "▁teams": 3820, + "▁magazine": 3821, + "itect": 3822, + "▁counter": 3823, + "olk": 3824, + "▁Kh": 3825, + "▁webs": 3826, + "▁promot": 3827, + "▁flu": 3828, + "▁har": 3829, + "▁reduce": 3830, + "bit": 3831, + "▁daughter": 3832, + "▁185": 3833, + "▁Cam": 3834, + "▁Kore": 3835, + "▁appointed": 3836, + "aded": 3837, + "▁companies": 3838, + "▁concent": 3839, + "mir": 3840, + "▁conflict": 3841, + "rect": 3842, + "▁married": 3843, + "▁commission": 3844, + "astern": 3845, + "▁nucle": 3846, + "▁Pacific": 3847, + "▁division": 3848, + "▁multiple": 3849, + "▁Sol": 3850, + "▁soft": 3851, + "▁provides": 3852, + "▁emot": 3853, + "▁script": 3854, + "▁leader": 3855, + "vement": 3856, + "▁constit": 3857, + "▁doing": 3858, + "▁univers": 3859, + "▁numerous": 3860, + "▁agreed": 3861, + "▁1995": 3862, + "▁Ro": 3863, + "rd": 3864, + "▁mission": 3865, + "▁ey": 3866, + "▁voice": 3867, + "▁pit": 3868, + "▁Chicago": 3869, + "▁max": 3870, + "▁Cro": 3871, + "▁lives": 3872, + "▁electric": 3873, + "▁box": 3874, + "▁magn": 3875, + "▁Rev": 3876, + "▁Its": 3877, + "▁(2": 3878, + "ria": 3879, + "▁Party": 3880, + "▁league": 3881, + "▁Ital": 3882, + "uz": 3883, + "▁Mer": 3884, + "upper": 3885, + "▁stra": 3886, + "▁weap": 3887, + "▁lived": 3888, + "ested": 3889, + "▁symb": 3890, + "sen": 3891, + "▁peyi": 3892, + "▁Tur": 3893, + "▁uns": 3894, + "▁write": 3895, + "▁Jackson": 3896, + "▁defeated": 3897, + "▁extra": 3898, + "▁analysis": 3899, + "▁interact": 3900, + "ech": 3901, + "▁cand": 3902, + "▁theory": 3903, + "▁sun": 3904, + "▁efforts": 3905, + "▁legal": 3906, + "▁Lake": 3907, + "▁computer": 3908, + "▁slight": 3909, + "iser": 3910, + "▁unit": 3911, + "▁connect": 3912, + "▁qual": 3913, + "▁meeting": 3914, + "▁responsible": 3915, + "▁image": 3916, + "▁thous": 3917, + "▁ver": 3918, + "▁soldiers": 3919, + "▁hundred": 3920, + "▁Inf": 3921, + "rong": 3922, + "ita": 3923, + "▁progress": 3924, + "▁offered": 3925, + "oes": 3926, + "teen": 3927, + "▁giving": 3928, + "▁pict": 3929, + "asy": 3930, + "riage": 3931, + "▁depression": 3932, + "imal": 3933, + "ricult": 3934, + "▁vac": 3935, + "▁effort": 3936, + "▁fell": 3937, + "▁rare": 3938, + "osis": 3939, + "▁names": 3940, + "▁financial": 3941, + "▁Because": 3942, + "lymp": 3943, + "▁referred": 3944, + "iest": 3945, + "▁captured": 3946, + "well": 3947, + "▁display": 3948, + "▁Off": 3949, + "▁reduced": 3950, + "▁simply": 3951, + "▁exerc": 3952, + "▁ir": 3953, + "▁ox": 3954, + "▁answ": 3955, + "ares": 3956, + "▁walk": 3957, + "▁Des": 3958, + "abet": 3959, + "andon": 3960, + "▁attract": 3961, + "▁Kominote": 3962, + "▁skin": 3963, + "▁Edward": 3964, + "▁Sea": 3965, + "▁Olymp": 3966, + "▁Tor": 3967, + "enge": 3968, + "▁male": 3969, + "▁Central": 3970, + "▁ran": 3971, + "ny": 3972, + "▁situation": 3973, + "▁legisl": 3974, + "▁extended": 3975, + "▁becomes": 3976, + ",\"": 3977, + "ibly": 3978, + "▁withd": 3979, + "cel": 3980, + "▁ut": 3981, + "▁Cor": 3982, + "▁respond": 3983, + "▁hour": 3984, + "▁Florida": 3985, + "ancy": 3986, + "▁Sever": 3987, + "▁Cr": 3988, + "▁village": 3989, + "▁fleet": 3990, + "▁patients": 3991, + "bre": 3992, + "▁neigh": 3993, + "▁Health": 3994, + "onomi": 3995, + "▁psych": 3996, + "▁symptoms": 3997, + "▁grant": 3998, + "▁fru": 3999, + "▁Johnson": 4000, + "▁planned": 4001, + "ellig": 4002, + "▁raised": 4003, + "▁upper": 4004, + "▁attacks": 4005, + "▁winning": 4006, + "▁letter": 4007, + "▁resources": 4008, + "▁scenes": 4009, + "▁occurred": 4010, + "▁believe": 4011, + "▁Cath": 4012, + "...": 4013, + "▁Fle": 4014, + "▁grand": 4015, + "ero": 4016, + "ship": 4017, + "▁mixed": 4018, + "▁covered": 4019, + "bour": 4020, + "▁manufact": 4021, + "▁hyd": 4022, + "▁broadcast": 4023, + "▁Camp": 4024, + "▁researc": 4025, + "▁normal": 4026, + "▁property": 4027, + "cher": 4028, + "▁secret": 4029, + "rupt": 4030, + "▁Add": 4031, + "▁cm": 4032, + "▁pick": 4033, + "▁bal": 4034, + "▁Mat": 4035, + "▁thr": 4036, + "▁Their": 4037, + "win": 4038, + "▁Politik": 4039, + "▁Russian": 4040, + "acter": 4041, + "overy": 4042, + "▁Arch": 4043, + "▁inte": 4044, + "▁episodes": 4045, + "▁interp": 4046, + "▁37": 4047, + "▁instit": 4048, + "▁issued": 4049, + "15": 4050, + "▁repe": 4051, + "igade": 4052, + "▁Ekonomi": 4053, + "▁Sur": 4054, + "▁Big": 4055, + "▁Dist": 4056, + "▁Kn": 4057, + "16": 4058, + "vin": 4059, + "aling": 4060, + "uated": 4061, + "▁climate": 4062, + "▁Canadian": 4063, + "▁tow": 4064, + "▁plat": 4065, + "load": 4066, + "▁Penn": 4067, + "òt": 4068, + "ervation": 4069, + "▁sure": 4070, + "▁Fort": 4071, + "▁finally": 4072, + "▁Sk": 4073, + "▁hol": 4074, + "▁improve": 4075, + "▁operation": 4076, + "▁therefore": 4077, + "▁hands": 4078, + "▁showed": 4079, + "▁mur": 4080, + "▁replace": 4081, + "▁Us": 4082, + "▁thing": 4083, + "▁contain": 4084, + "istry": 4085, + "put": 4086, + "cript": 4087, + "mission": 4088, + "▁pi": 4089, + "▁Atlantic": 4090, + "ona": 4091, + "▁temperature": 4092, + "▁Scot": 4093, + "▁growing": 4094, + "▁search": 4095, + "▁Wood": 4096, + "▁separate": 4097, + "▁awarded": 4098, + "inema": 4099, + "▁bit": 4100, + "istics": 4101, + "▁eth": 4102, + "onic": 4103, + "▁challeng": 4104, + "▁depart": 4105, + "▁largely": 4106, + "▁burn": 4107, + "▁revealed": 4108, + "▁suffered": 4109, + "▁1994": 4110, + "▁presented": 4111, + "▁presence": 4112, + "▁meant": 4113, + "room": 4114, + "down": 4115, + "▁coup": 4116, + "▁Group": 4117, + "▁fat": 4118, + "▁quarter": 4119, + "▁strength": 4120, + "icated": 4121, + "▁Bu": 4122, + "wide": 4123, + "▁dang": 4124, + "▁sem": 4125, + "▁fifth": 4126, + "lection": 4127, + "▁75": 4128, + "▁Test": 4129, + "▁Cle": 4130, + "▁Later": 4131, + "▁direction": 4132, + "▁federal": 4133, + "▁susp": 4134, + "▁Here": 4135, + "▁questions": 4136, + "▁flight": 4137, + "▁Enter": 4138, + "aped": 4139, + "ying": 4140, + "▁wild": 4141, + "▁Club": 4142, + "▁wa": 4143, + "▁Nort": 4144, + "ota": 4145, + "▁news": 4146, + "bed": 4147, + "▁Mel": 4148, + "za": 4149, + "burg": 4150, + "▁Mass": 4151, + "▁Americans": 4152, + "iber": 4153, + "gypt": 4154, + "▁Song": 4155, + "eed": 4156, + "▁flag": 4157, + "▁metal": 4158, + "arent": 4159, + "▁double": 4160, + "▁records": 4161, + "▁Out": 4162, + "▁33": 4163, + "icip": 4164, + "▁calc": 4165, + "rier": 4166, + "▁watch": 4167, + "▁skills": 4168, + "▁TV": 4169, + "▁Jim": 4170, + "▁pack": 4171, + "ette": 4172, + "▁Hel": 4173, + "▁damaged": 4174, + "▁trees": 4175, + "▁assess": 4176, + "ingu": 4177, + "▁officers": 4178, + "▁guitar": 4179, + "80": 4180, + "òp": 4181, + "▁dra": 4182, + "▁transl": 4183, + "▁Rad": 4184, + "▁sn": 4185, + "▁accomp": 4186, + "▁Oper": 4187, + "▁selected": 4188, + "▁global": 4189, + "▁collection": 4190, + "arden": 4191, + "▁adj": 4192, + "house": 4193, + "▁ideas": 4194, + "▁rule": 4195, + "▁animal": 4196, + "▁aspect": 4197, + "▁Fore": 4198, + "isation": 4199, + "▁tons": 4200, + "▁Jul": 4201, + "▁strugg": 4202, + "ulate": 4203, + "▁Love": 4204, + "▁Society": 4205, + "nes": 4206, + "▁defin": 4207, + "▁touch": 4208, + "▁rat": 4209, + "▁1992": 4210, + "▁manager": 4211, + "▁bank": 4212, + "▁diet": 4213, + "▁compl": 4214, + "▁Of": 4215, + "▁powerful": 4216, + "▁Film": 4217, + "▁eye": 4218, + "▁architect": 4219, + "èl": 4220, + "▁corn": 4221, + "la": 4222, + "▁completely": 4223, + "▁Martin": 4224, + "ropri": 4225, + "iance": 4226, + "▁harm": 4227, + "▁fish": 4228, + "▁stories": 4229, + "▁fans": 4230, + "▁annual": 4231, + "▁Work": 4232, + "viw": 4233, + "▁copies": 4234, + "▁resulting": 4235, + "▁Greek": 4236, + "▁launched": 4237, + "▁contem": 4238, + "▁materials": 4239, + "▁Step": 4240, + "▁Sir": 4241, + "▁Acad": 4242, + "▁ice": 4243, + "▁Tod": 4244, + "▁Egypt": 4245, + "▁relatively": 4246, + "▁composed": 4247, + "▁conducted": 4248, + "ding": 4249, + "▁laws": 4250, + "▁cer": 4251, + "▁Queen": 4252, + "▁1950": 4253, + "ibrary": 4254, + "yò": 4255, + "haps": 4256, + "▁scale": 4257, + "ònman": 4258, + "▁thick": 4259, + "▁foreign": 4260, + "▁minute": 4261, + "ada": 4262, + "èm": 4263, + "▁equip": 4264, + "▁respectively": 4265, + "illa": 4266, + "▁tracks": 4267, + "▁III": 4268, + "▁piece": 4269, + "▁Mexico": 4270, + "▁Av": 4271, + "viwònman": 4272, + "▁college": 4273, + "▁Mur": 4274, + "▁Town": 4275, + "33": 4276, + "ady": 4277, + "oo": 4278, + "▁Ros": 4279, + "▁listed": 4280, + "▁genyen": 4281, + "▁observed": 4282, + "rael": 4283, + "▁Book": 4284, + "▁check": 4285, + "▁bound": 4286, + "▁exhib": 4287, + "▁audience": 4288, + "▁distance": 4289, + "▁Mod": 4290, + "▁closed": 4291, + "▁winter": 4292, + "▁capac": 4293, + "▁notes": 4294, + "overs": 4295, + "gn": 4296, + "▁pan": 4297, + "▁actions": 4298, + "▁looking": 4299, + "▁resulted": 4300, + "▁1993": 4301, + "▁34": 4302, + "▁reading": 4303, + "▁disapp": 4304, + "▁1991": 4305, + "▁Research": 4306, + "ipped": 4307, + "▁schol": 4308, + "▁address": 4309, + "ocks": 4310, + "▁online": 4311, + "▁Devl": 4312, + "▁advance": 4313, + "▁subsequently": 4314, + "▁contrast": 4315, + "▁Anviwònman": 4316, + "▁Hum": 4317, + "▁Ap": 4318, + "▁Empire": 4319, + "bury": 4320, + "▁Ox": 4321, + "òpman": 4322, + "▁spl": 4323, + "▁Kent": 4324, + "mark": 4325, + "▁causes": 4326, + "▁Boy": 4327, + "2,": 4328, + "▁Const": 4329, + "▁older": 4330, + "▁clean": 4331, + "▁Er": 4332, + "▁Devlòpman": 4333, + "▁weather": 4334, + "izasyon": 4335, + "▁nut": 4336, + "road": 4337, + "▁tree": 4338, + "▁developing": 4339, + "AT": 4340, + "▁plot": 4341, + "gl": 4342, + "▁unable": 4343, + "▁inspired": 4344, + "▁Jac": 4345, + "ype": 4346, + "▁00": 4347, + "estival": 4348, + "▁incorpor": 4349, + "ogue": 4350, + "▁Even": 4351, + "▁vari": 4352, + "▁Institute": 4353, + "▁Ann": 4354, + "agon": 4355, + "ka": 4356, + "▁battles": 4357, + "▁workers": 4358, + "▁newsp": 4359, + "▁iron": 4360, + "▁organization": 4361, + "ications": 4362, + "▁decre": 4363, + "▁Awards": 4364, + "▁journal": 4365, + "▁dut": 4366, + "ifying": 4367, + "ception": 4368, + "▁collabor": 4369, + "▁starting": 4370, + "▁chemical": 4371, + "eces": 4372, + "▁Che": 4373, + "▁batter": 4374, + "▁wear": 4375, + "▁blue": 4376, + "▁citiz": 4377, + "▁affected": 4378, + "▁kept": 4379, + "▁integr": 4380, + "▁coming": 4381, + "▁Your": 4382, + "▁fa": 4383, + "▁supply": 4384, + "▁Commun": 4385, + "AR": 4386, + "ether": 4387, + "▁begins": 4388, + "ani": 4389, + "▁factors": 4390, + "▁figure": 4391, + "▁Oh": 4392, + "▁ded": 4393, + "▁Italian": 4394, + "inary": 4395, + "▁celebr": 4396, + "▁typically": 4397, + "▁ast": 4398, + "▁Aut": 4399, + "▁fighting": 4400, + "▁chief": 4401, + "▁Paris": 4402, + "▁understanding": 4403, + "▁peace": 4404, + "▁alone": 4405, + "▁morning": 4406, + "inent": 4407, + "▁deyò": 4408, + "▁website": 4409, + "▁fev": 4410, + "▁sales": 4411, + "▁180": 4412, + "▁quite": 4413, + "acing": 4414, + "fully": 4415, + "onents": 4416, + "▁leaves": 4417, + "▁Jes": 4418, + "▁continues": 4419, + "tered": 4420, + "aine": 4421, + "▁identified": 4422, + "▁Viet": 4423, + "alite": 4424, + "▁Sil": 4425, + "izes": 4426, + "▁Lyen": 4427, + "▁bul": 4428, + "▁Billboard": 4429, + "resh": 4430, + "▁equipment": 4431, + "▁elected": 4432, + "▁tried": 4433, + "▁Angeles": 4434, + "▁flow": 4435, + "force": 4436, + "▁assigned": 4437, + "▁programs": 4438, + "▁+": 4439, + "▁Child": 4440, + "▁inters": 4441, + "arters": 4442, + "▁security": 4443, + "▁rein": 4444, + "hens": 4445, + "▁purs": 4446, + "oration": 4447, + "▁advant": 4448, + "gu": 4449, + "▁train": 4450, + "▁Joseph": 4451, + "inson": 4452, + "▁producer": 4453, + "bridge": 4454, + "urban": 4455, + "▁basis": 4456, + "▁Science": 4457, + "utch": 4458, + "aby": 4459, + "▁purpose": 4460, + "▁toward": 4461, + "▁allowing": 4462, + "▁severe": 4463, + "enant": 4464, + "▁distinct": 4465, + "▁attempted": 4466, + "▁negative": 4467, + "alle": 4468, + "▁Inst": 4469, + "▁getting": 4470, + "▁Latin": 4471, + "▁System": 4472, + "band": 4473, + "▁Year": 4474, + "▁families": 4475, + "▁independent": 4476, + "▁accepted": 4477, + "▁jewografi": 4478, + "▁experiment": 4479, + "fort": 4480, + "▁Dar": 4481, + "known": 4482, + "▁News": 4483, + "▁declared": 4484, + "▁Matt": 4485, + "▁Time": 4486, + "▁spirit": 4487, + "▁Fer": 4488, + "▁depi": 4489, + "▁Sum": 4490, + "usion": 4491, + "arian": 4492, + "▁labor": 4493, + "2.": 4494, + "▁centre": 4495, + "▁attacked": 4496, + "▁unique": 4497, + "▁Each": 4498, + "▁competition": 4499, + "▁trying": 4500, + "▁vot": 4501, + "▁Lit": 4502, + "▁Georg": 4503, + "olf": 4504, + "▁artist": 4505, + "ube": 4506, + "▁encoura": 4507, + "▁safety": 4508, + "▁Rail": 4509, + "ram": 4510, + "ighter": 4511, + "▁mel": 4512, + "▁Det": 4513, + "▁daily": 4514, + "▁tend": 4515, + "▁tur": 4516, + "▁habit": 4517, + "▁Pè": 4518, + "▁nothing": 4519, + "▁degree": 4520, + "▁creating": 4521, + "▁Di": 4522, + "▁soil": 4523, + "▁Several": 4524, + "▁widely": 4525, + "▁Zeal": 4526, + "▁settle": 4527, + "▁Israel": 4528, + "ilti": 4529, + "▁BC": 4530, + "▁candid": 4531, + "▁Ver": 4532, + "▁Also": 4533, + "itable": 4534, + "▁cities": 4535, + "▁reject": 4536, + "▁abandon": 4537, + "▁Jer": 4538, + "▁lyrics": 4539, + "▁amb": 4540, + "▁categ": 4541, + "ped": 4542, + "▁dry": 4543, + "▁ancient": 4544, + "1.": 4545, + "▁researchers": 4546, + "▁allows": 4547, + "▁methods": 4548, + "▁serve": 4549, + "▁swe": 4550, + "▁vess": 4551, + "▁38": 4552, + "▁Spec": 4553, + "▁1940": 4554, + "▁easily": 4555, + "▁seek": 4556, + "▁nearby": 4557, + "▁experien": 4558, + "▁retire": 4559, + "▁Haw": 4560, + "▁constructed": 4561, + "▁table": 4562, + "rical": 4563, + "enc": 4564, + "▁carbon": 4565, + "▁Sar": 4566, + "▁heat": 4567, + "▁inches": 4568, + "▁affect": 4569, + "▁Like": 4570, + "17": 4571, + "▁planet": 4572, + "▁birds": 4573, + "imb": 4574, + "▁primarily": 4575, + "ER": 4576, + "▁ranked": 4577, + "▁Ret": 4578, + "▁1.": 4579, + "▁imag": 4580, + "▁kilomet": 4581, + "▁cas": 4582, + "umed": 4583, + "▁defeat": 4584, + "▁aware": 4585, + "▁bey": 4586, + "▁Are": 4587, + "▁causing": 4588, + "isp": 4589, + "▁spot": 4590, + "mosp": 4591, + "MS": 4592, + "olved": 4593, + "▁officer": 4594, + "▁Before": 4595, + "▁behavior": 4596, + "▁phil": 4597, + "▁implement": 4598, + "▁beyond": 4599, + "▁machine": 4600, + "▁managed": 4601, + "▁Vol": 4602, + "▁twenty": 4603, + "▁horse": 4604, + "▁refused": 4605, + "estic": 4606, + "iplom": 4607, + "ented": 4608, + "▁environmental": 4609, + "▁Michigan": 4610, + "▁sides": 4611, + "▁sleep": 4612, + "▁Zealand": 4613, + "iling": 4614, + "ansion": 4615, + "pass": 4616, + "▁places": 4617, + "▁portray": 4618, + "rye": 4619, + "▁draft": 4620, + "▁square": 4621, + "▁fully": 4622, + "--": 4623, + "▁positions": 4624, + "▁combat": 4625, + "▁Museum": 4626, + "13": 4627, + "40": 4628, + "▁Super": 4629, + "▁Wales": 4630, + "phas": 4631, + "▁houses": 4632, + "▁billion": 4633, + "▁theme": 4634, + "▁Dou": 4635, + "▁basic": 4636, + "60": 4637, + "▁yards": 4638, + "▁Corps": 4639, + "udd": 4640, + "irmed": 4641, + "▁enter": 4642, + "▁Cap": 4643, + "▁earned": 4644, + "▁pet": 4645, + "▁Sat": 4646, + "atik": 4647, + "adium": 4648, + "▁mainly": 4649, + "▁Highway": 4650, + "▁fuel": 4651, + "▁moment": 4652, + "▁lin": 4653, + "cers": 4654, + "▁portion": 4655, + "ih": 4656, + "▁49": 4657, + "▁pair": 4658, + "▁receive": 4659, + "▁waters": 4660, + "een": 4661, + "VD": 4662, + "▁gives": 4663, + "▁Minister": 4664, + "▁marriage": 4665, + "▁load": 4666, + "set": 4667, + "▁combined": 4668, + "▁Commit": 4669, + "igr": 4670, + "▁sister": 4671, + "▁marked": 4672, + "ura": 4673, + "▁Arab": 4674, + "▁beaut": 4675, + "lam": 4676, + "ounded": 4677, + "▁Def": 4678, + "▁onto": 4679, + "rik": 4680, + "▁Jo": 4681, + "▁traffic": 4682, + "▁shall": 4683, + "ishop": 4684, + "▁Four": 4685, + "uous": 4686, + "ili": 4687, + "▁fair": 4688, + "▁Tw": 4689, + "▁initi": 4690, + "▁leaders": 4691, + "uses": 4692, + "▁seg": 4693, + "▁diagn": 4694, + "▁scientific": 4695, + "▁Commission": 4696, + "lies": 4697, + "rative": 4698, + "uate": 4699, + "▁protection": 4700, + "▁recently": 4701, + "▁Now": 4702, + "▁compos": 4703, + "sonalite": 4704, + "▁Pan": 4705, + "ading": 4706, + "▁1930": 4707, + "▁slightly": 4708, + "clusion": 4709, + "▁sexual": 4710, + "yo": 4711, + "▁page": 4712, + "▁stress": 4713, + "▁pal": 4714, + "▁overs": 4715, + "ef": 4716, + "▁compar": 4717, + "▁Kiben": 4718, + "▁element": 4719, + "▁Kenn": 4720, + "▁Edu": 4721, + "▁fevrye": 4722, + "▁wor": 4723, + "right": 4724, + "▁capacity": 4725, + "▁Three": 4726, + "▁divided": 4727, + "▁humans": 4728, + "▁dat": 4729, + "▁someone": 4730, + "▁maximum": 4731, + "▁paid": 4732, + "▁historical": 4733, + "▁Wall": 4734, + "▁eyes": 4735, + "▁ago": 4736, + "ds": 4737, + "▁mis": 4738, + "▁speech": 4739, + "▁Squadron": 4740, + "▁reflect": 4741, + "▁Bow": 4742, + "▁Press": 4743, + "▁platform": 4744, + "▁controvers": 4745, + "▁Carl": 4746, + "unction": 4747, + "more": 4748, + "ES": 4749, + "▁bott": 4750, + "▁edition": 4751, + "▁demand": 4752, + "▁cultural": 4753, + "▁Wal": 4754, + "▁doub": 4755, + "▁graph": 4756, + "▁easy": 4757, + "▁hun": 4758, + "▁reports": 4759, + "▁dw": 4760, + "otic": 4761, + "▁rough": 4762, + "▁Care": 4763, + "orter": 4764, + "▁hospital": 4765, + "▁Secret": 4766, + "▁exact": 4767, + "▁People": 4768, + "▁speak": 4769, + "▁Den": 4770, + "iques": 4771, + "▁conver": 4772, + "▁Class": 4773, + "▁Democr": 4774, + "▁charge": 4775, + "▁hor": 4776, + "▁express": 4777, + "isted": 4778, + "▁prepar": 4779, + "▁Moun": 4780, + "▁sevent": 4781, + "▁diplom": 4782, + "▁injury": 4783, + "▁Service": 4784, + "▁ur": 4785, + "▁native": 4786, + "▁pun": 4787, + "▁gar": 4788, + "antly": 4789, + "itt": 4790, + "isms": 4791, + "▁royal": 4792, + "och": 4793, + "itan": 4794, + "▁Ten": 4795, + "ules": 4796, + "▁39": 4797, + "▁mob": 4798, + "▁deliver": 4799, + "cles": 4800, + "▁Leg": 4801, + "▁IS": 4802, + "▁400": 4803, + "▁commonly": 4804, + "▁Saint": 4805, + "▁commander": 4806, + "claim": 4807, + "▁dyn": 4808, + "ersey": 4809, + "umber": 4810, + "▁reform": 4811, + "▁Columb": 4812, + "▁founded": 4813, + "▁Post": 4814, + "▁trial": 4815, + "▁Capt": 4816, + "▁murder": 4817, + "▁survey": 4818, + "▁Once": 4819, + "▁attend": 4820, + "▁Southern": 4821, + "25": 4822, + "▁officials": 4823, + "▁reference": 4824, + "▁179": 4825, + "▁greatest": 4826, + "14": 4827, + "▁dism": 4828, + "▁card": 4829, + "▁Through": 4830, + "▁commented": 4831, + "▁Good": 4832, + "come": 4833, + "▁correct": 4834, + "▁IM": 4835, + "mas": 4836, + "▁singer": 4837, + "▁ensure": 4838, + "▁fran": 4839, + "▁movie": 4840, + "▁setting": 4841, + "ceeded": 4842, + "ners": 4843, + "ID": 4844, + "▁chap": 4845, + "uls": 4846, + "annel": 4847, + "//": 4848, + "▁seems": 4849, + "atre": 4850, + "▁enemy": 4851, + "▁1989": 4852, + "water": 4853, + "▁emphas": 4854, + "rig": 4855, + "▁tell": 4856, + "▁CO": 4857, + "▁Catholic": 4858, + "▁Committee": 4859, + "anda": 4860, + "▁cold": 4861, + "▁prefer": 4862, + "▁impl": 4863, + "▁perfect": 4864, + "▁opin": 4865, + "▁task": 4866, + "▁Tre": 4867, + "▁extrem": 4868, + "▁illust": 4869, + "▁Op": 4870, + "▁Sub": 4871, + "key": 4872, + "▁Direct": 4873, + "▁arrest": 4874, + "▁frequently": 4875, + "peror": 4876, + "://": 4877, + "▁Van": 4878, + "stein": 4879, + "▁plays": 4880, + "omers": 4881, + "▁sites": 4882, + "▁eat": 4883, + "▁choice": 4884, + "olec": 4885, + "stitution": 4886, + "▁Daniel": 4887, + "▁Bob": 4888, + "hi": 4889, + "▁Wind": 4890, + "edom": 4891, + "▁spect": 4892, + "▁cerem": 4893, + "▁attended": 4894, + "▁Gar": 4895, + "▁Histor": 4896, + "▁anything": 4897, + "▁Cross": 4898, + "▁Life": 4899, + "▁opportunity": 4900, + "▁Scotland": 4901, + "▁Max": 4902, + "▁weak": 4903, + "▁egg": 4904, + "▁didn": 4905, + "▁currently": 4906, + "▁Oxford": 4907, + "▁explained": 4908, + "St": 4909, + "ela": 4910, + "▁acad": 4911, + "▁Bre": 4912, + "▁ultimately": 4913, + "▁Bost": 4914, + "▁acid": 4915, + "▁god": 4916, + "▁Jewish": 4917, + "▁Kar": 4918, + "inet": 4919, + "iders": 4920, + "▁agricult": 4921, + "▁Ire": 4922, + "▁scientists": 4923, + "▁Jones": 4924, + "▁Jeff": 4925, + "iny": 4926, + "▁providing": 4927, + "▁rang": 4928, + "▁stone": 4929, + "▁convers": 4930, + "isher": 4931, + "▁DVD": 4932, + "resp": 4933, + "inter": 4934, + "ola": 4935, + "born": 4936, + "▁Water": 4937, + "inking": 4938, + "nam": 4939, + "▁Ireland": 4940, + "▁rob": 4941, + "▁reasons": 4942, + "▁atmosp": 4943, + "▁cool": 4944, + "atures": 4945, + "▁projects": 4946, + "▁183": 4947, + "apers": 4948, + "▁famous": 4949, + "▁Stan": 4950, + "▁bud": 4951, + "shire": 4952, + "eway": 4953, + "▁residents": 4954, + "▁fix": 4955, + "▁ending": 4956, + "osure": 4957, + "▁suc": 4958, + "▁matches": 4959, + "▁aim": 4960, + "oma": 4961, + "▁spring": 4962, + "▁digital": 4963, + "▁dropped": 4964, + "▁attempts": 4965, + "▁Creek": 4966, + "▁therap": 4967, + "▁ones": 4968, + "imens": 4969, + "hat": 4970, + "▁rise": 4971, + "▁Government": 4972, + "heless": 4973, + "▁communities": 4974, + "▁hyp": 4975, + "▁pieces": 4976, + "▁intellig": 4977, + "èv": 4978, + "ias": 4979, + "▁Fox": 4980, + "▁wing": 4981, + "▁Ha": 4982, + "▁Further": 4983, + "▁Prot": 4984, + "▁suggests": 4985, + "▁writers": 4986, + "▁economy": 4987, + "▁Chris": 4988, + "▁expect": 4989, + "▁Hy": 4990, + "▁apparent": 4991, + "▁hus": 4992, + "▁Luc": 4993, + "▁Academy": 4994, + "icine": 4995, + "▁bodies": 4996, + "▁Though": 4997, + "▁mut": 4998, + "▁concluded": 4999, + "writ": 5000, + "▁formation": 5001, + "izations": 5002, + "▁Gal": 5003, + "▁visual": 5004, + "▁accur": 5005, + "▁Williams": 5006, + "▁expressed": 5007, + "▁Esp": 5008, + "miral": 5009, + "▁doll": 5010, + "▁existing": 5011, + "▁Lee": 5012, + "▁tail": 5013, + "thur": 5014, + "▁fresh": 5015, + "▁rules": 5016, + "▁importance": 5017, + "▁150": 5018, + "iced": 5019, + "▁mouth": 5020, + "▁homes": 5021, + "▁Italy": 5022, + "▁worth": 5023, + "bl": 5024, + "ón": 5025, + "▁safe": 5026, + "iments": 5027, + "▁sche": 5028, + "▁advanced": 5029, + "▁Tim": 5030, + "▁dance": 5031, + "vest": 5032, + "▁shape": 5033, + "▁Parliament": 5034, + "▁joint": 5035, + "▁mo": 5036, + "▁hero": 5037, + "anes": 5038, + "▁Middle": 5039, + "▁micro": 5040, + "▁Land": 5041, + "onent": 5042, + "▁philos": 5043, + "while": 5044, + "▁veget": 5045, + "▁era": 5046, + "▁attrib": 5047, + "▁Conf": 5048, + "▁instrument": 5049, + "▁appropri": 5050, + "▁authority": 5051, + "▁Nat": 5052, + "▁poet": 5053, + "▁Tem": 5054, + "án": 5055, + "illery": 5056, + "ss": 5057, + "▁sac": 5058, + "▁transform": 5059, + "▁und": 5060, + "▁47": 5061, + "ieut": 5062, + "▁beat": 5063, + "ez": 5064, + "osen": 5065, + "▁feed": 5066, + "▁heard": 5067, + "thlet": 5068, + "▁owned": 5069, + "▁stating": 5070, + "▁Little": 5071, + "perial": 5072, + "▁Tri": 5073, + "orses": 5074, + "▁yard": 5075, + "ois": 5076, + "ograp": 5077, + "▁wit": 5078, + "In": 5079, + "ras": 5080, + "▁failure": 5081, + "▁goes": 5082, + "▁cry": 5083, + "▁doesn": 5084, + "antasy": 5085, + "▁healthy": 5086, + "▁Jesus": 5087, + "▁determine": 5088, + "▁border": 5089, + "▁Team": 5090, + "▁influenced": 5091, + "▁Aven": 5092, + "▁Boston": 5093, + "▁images": 5094, + "▁Clark": 5095, + "▁hair": 5096, + "▁crow": 5097, + "▁transferred": 5098, + "▁floor": 5099, + "▁sought": 5100, + "▁master": 5101, + "EA": 5102, + "book": 5103, + "▁concert": 5104, + "▁metres": 5105, + "▁Form": 5106, + "▁Ram": 5107, + "▁join": 5108, + "▁Final": 5109, + "▁surrounding": 5110, + "▁Stone": 5111, + "▁#": 5112, + "▁drop": 5113, + "▁Civil": 5114, + "▁Swed": 5115, + "▁difference": 5116, + "▁History": 5117, + "▁models": 5118, + "▁cert": 5119, + "▁consequ": 5120, + "pro": 5121, + "hips": 5122, + "▁tells": 5123, + "▁artists": 5124, + "▁Northern": 5125, + "▁couple": 5126, + "▁quant": 5127, + "▁drive": 5128, + "▁48": 5129, + "▁industrial": 5130, + "▁seconds": 5131, + "▁thir": 5132, + "TV": 5133, + "awn": 5134, + "▁tal": 5135, + "▁Hung": 5136, + "▁Charl": 5137, + "▁represented": 5138, + "▁bra": 5139, + "ancing": 5140, + "▁2.": 5141, + "▁benefits": 5142, + "▁follows": 5143, + "▁Int": 5144, + "rogen": 5145, + "▁costs": 5146, + "▁figures": 5147, + "▁Way": 5148, + "entially": 5149, + "iano": 5150, + "▁1988": 5151, + "ologist": 5152, + "▁regions": 5153, + "iat": 5154, + "▁Educ": 5155, + "▁drum": 5156, + "▁district": 5157, + "▁Ill": 5158, + "▁claims": 5159, + "▁Public": 5160, + "▁strateg": 5161, + "▁55": 5162, + "▁county": 5163, + "▁belief": 5164, + "▁everything": 5165, + "▁Mic": 5166, + "▁bacter": 5167, + "▁defined": 5168, + "▁autom": 5169, + "▁Jud": 5170, + "▁acting": 5171, + "▁confirmed": 5172, + "rich": 5173, + "▁Penns": 5174, + "▁Norm": 5175, + "▁walls": 5176, + "under": 5177, + "ifically": 5178, + "ogen": 5179, + "▁Prince": 5180, + "oles": 5181, + "abeth": 5182, + "▁Writ": 5183, + "▁perhaps": 5184, + "▁rot": 5185, + "▁citizens": 5186, + "time": 5187, + "rad": 5188, + "▁gained": 5189, + "▁weaken": 5190, + "▁pale": 5191, + "▁proved": 5192, + "▁1987": 5193, + "phy": 5194, + "ieutenant": 5195, + "▁Infantry": 5196, + "▁unf": 5197, + "rog": 5198, + "▁Chief": 5199, + "▁Carolina": 5200, + "▁Manc": 5201, + "▁inh": 5202, + "▁ahead": 5203, + "▁improved": 5204, + "▁calling": 5205, + "▁determined": 5206, + "▁tun": 5207, + "▁mentioned": 5208, + "▁Ott": 5209, + "▁essential": 5210, + "▁1942": 5211, + "▁passing": 5212, + "▁subsequent": 5213, + "▁worldwide": 5214, + "▁remark": 5215, + "▁inch": 5216, + "▁Major": 5217, + "▁shell": 5218, + "ici": 5219, + "▁gain": 5220, + "ayer": 5221, + "ylvan": 5222, + "▁coach": 5223, + "▁Pers": 5224, + "▁coal": 5225, + "ibl": 5226, + "atched": 5227, + "IS": 5228, + "▁structures": 5229, + "▁Ec": 5230, + "▁camer": 5231, + "▁nuclear": 5232, + "▁virt": 5233, + "▁sand": 5234, + "▁Fe": 5235, + "▁perman": 5236, + "▁performances": 5237, + "▁capture": 5238, + "▁significantly": 5239, + "embly": 5240, + "adel": 5241, + "▁1920": 5242, + "ingly": 5243, + "▁Valley": 5244, + "▁reaching": 5245, + "▁Ray": 5246, + "▁Fall": 5247, + "▁Mem": 5248, + "anna": 5249, + "ushed": 5250, + "▁selling": 5251, + "▁household": 5252, + "▁65": 5253, + "▁maintain": 5254, + "▁Young": 5255, + "▁limit": 5256, + "▁chance": 5257, + "▁applied": 5258, + "▁creation": 5259, + "ouv": 5260, + "▁UN": 5261, + "iar": 5262, + "▁Brad": 5263, + "mond": 5264, + "▁Far": 5265, + "▁akt": 5266, + "▁straight": 5267, + "gal": 5268, + "gest": 5269, + "▁Philipp": 5270, + "▁designated": 5271, + "▁1986": 5272, + "▁background": 5273, + "vis": 5274, + "▁label": 5275, + "org": 5276, + "▁sout": 5277, + "▁note": 5278, + "▁Elect": 5279, + "▁broke": 5280, + "hew": 5281, + "▁Foot": 5282, + "▁advantage": 5283, + "▁instruct": 5284, + "lers": 5285, + "▁twice": 5286, + "-2": 5287, + "▁Arm": 5288, + "erved": 5289, + "▁Records": 5290, + "▁Top": 5291, + "▁Men": 5292, + "▁urban": 5293, + "▁store": 5294, + "▁Games": 5295, + "▁mist": 5296, + "▁resistance": 5297, + "▁brown": 5298, + "wise": 5299, + "▁Hal": 5300, + "▁occurs": 5301, + "▁elev": 5302, + "▁objects": 5303, + "▁planning": 5304, + "▁1945": 5305, + "▁struck": 5306, + "▁Ell": 5307, + "tic": 5308, + "osaur": 5309, + "▁Eliz": 5310, + "▁Madonna": 5311, + "▁save": 5312, + "izyon": 5313, + "track": 5314, + "iana": 5315, + "▁Inc": 5316, + "▁Fim": 5317, + "▁Asia": 5318, + "▁cyclone": 5319, + "ella": 5320, + "▁weapons": 5321, + "▁Captain": 5322, + "▁equal": 5323, + "stone": 5324, + "▁occasion": 5325, + "▁Develop": 5326, + "▁contemporary": 5327, + "prise": 5328, + "▁vocal": 5329, + "▁42": 5330, + "▁journ": 5331, + "▁Ocean": 5332, + "agement": 5333, + "▁Rod": 5334, + "▁territory": 5335, + "illing": 5336, + "▁university": 5337, + "▁Light": 5338, + "▁1944": 5339, + "▁stre": 5340, + "▁castle": 5341, + "▁Rom": 5342, + "▁heavily": 5343, + "rec": 5344, + "respond": 5345, + "▁Bus": 5346, + "▁alongside": 5347, + "igg": 5348, + "▁Pier": 5349, + "▁husband": 5350, + "▁Let": 5351, + "▁crop": 5352, + "▁unknown": 5353, + "range": 5354, + "▁ring": 5355, + "coh": 5356, + "▁prominent": 5357, + "uting": 5358, + "▁titled": 5359, + "▁helps": 5360, + "▁defense": 5361, + "▁Stephen": 5362, + "ym": 5363, + "rid": 5364, + "▁championship": 5365, + "▁hope": 5366, + "▁fruit": 5367, + "▁yellow": 5368, + "▁price": 5369, + "▁chosen": 5370, + "iful": 5371, + "ala": 5372, + "▁propos": 5373, + "\".": 5374, + "▁delay": 5375, + "▁Bridge": 5376, + "▁Rog": 5377, + "▁Prof": 5378, + "ishes": 5379, + "ournament": 5380, + "▁adopted": 5381, + "▁Bat": 5382, + "▁defend": 5383, + "▁proced": 5384, + "▁Our": 5385, + "▁pilot": 5386, + "▁remember": 5387, + "▁diam": 5388, + "aven": 5389, + "▁arms": 5390, + "▁accident": 5391, + "▁memory": 5392, + "▁viewers": 5393, + "▁Journal": 5394, + "▁experienced": 5395, + "▁kat": 5396, + "▁column": 5397, + "▁1941": 5398, + "▁Dutch": 5399, + "▁analy": 5400, + "▁auth": 5401, + "AC": 5402, + "▁select": 5403, + "▁Bern": 5404, + "cious": 5405, + "pris": 5406, + "oking": 5407, + "▁techniques": 5408, + "▁adults": 5409, + "▁maintained": 5410, + "▁contained": 5411, + "▁BBC": 5412, + "▁belong": 5413, + "▁Dam": 5414, + "▁grew": 5415, + "ographic": 5416, + "▁featuring": 5417, + "▁lic": 5418, + "▁elimin": 5419, + "▁bed": 5420, + "tar": 5421, + "▁Dec": 5422, + "▁Mu": 5423, + "quarters": 5424, + "orped": 5425, + "▁narrow": 5426, + "▁Bas": 5427, + "▁connected": 5428, + "▁laid": 5429, + "▁invasion": 5430, + "▁doctor": 5431, + "▁rating": 5432, + "▁termin": 5433, + "▁44": 5434, + "▁sequence": 5435, + "aming": 5436, + "▁alternative": 5437, + "▁height": 5438, + "▁Victoria": 5439, + "▁molec": 5440, + "inder": 5441, + "▁mental": 5442, + "ylvania": 5443, + "▁possibly": 5444, + "▁aid": 5445, + "▁Mean": 5446, + "▁captain": 5447, + "▁Fam": 5448, + "ucky": 5449, + "▁controlled": 5450, + "roll": 5451, + "▁volume": 5452, + "▁Tay": 5453, + "AF": 5454, + "▁Addition": 5455, + "▁Admiral": 5456, + "▁agreement": 5457, + "iday": 5458, + "▁peaked": 5459, + "▁prepared": 5460, + "▁64": 5461, + "ounger": 5462, + "bur": 5463, + "▁learned": 5464, + "ato": 5465, + "ev": 5466, + "sect": 5467, + "▁literature": 5468, + "▁Common": 5469, + "aved": 5470, + "▁Plan": 5471, + "▁resc": 5472, + "▁ign": 5473, + "▁tank": 5474, + "▁scoring": 5475, + "isco": 5476, + "▁teaching": 5477, + "▁describes": 5478, + "▁senior": 5479, + "ba": 5480, + "▁MD": 5481, + "▁Line": 5482, + "chest": 5483, + "▁achieved": 5484, + "▁x": 5485, + "▁offers": 5486, + "ora": 5487, + "ocked": 5488, + "▁argued": 5489, + "▁District": 5490, + "▁code": 5491, + "vious": 5492, + "▁Series": 5493, + "▁rates": 5494, + "aga": 5495, + "▁values": 5496, + "▁ends": 5497, + "▁budget": 5498, + "▁teeth": 5499, + "▁Battalion": 5500, + "▁43": 5501, + "▁Christmas": 5502, + "▁rich": 5503, + "▁Early": 5504, + "▁IMD": 5505, + "▁Ohio": 5506, + "▁Harrison": 5507, + "▁sports": 5508, + "▁Spain": 5509, + "▁glass": 5510, + "▁leadership": 5511, + "▁etc": 5512, + "▁vote": 5513, + "▁naval": 5514, + "▁Cla": 5515, + "attle": 5516, + "▁Su": 5517, + "ban": 5518, + "▁nor": 5519, + "▁1943": 5520, + "ordin": 5521, + "issions": 5522, + "ipe": 5523, + "▁repeated": 5524, + "da": 5525, + "▁promoted": 5526, + "▁Corn": 5527, + "▁actor": 5528, + "▁Manchester": 5529, + "▁core": 5530, + "▁isol": 5531, + "▁Russia": 5532, + "▁versions": 5533, + "▁Techn": 5534, + "▁sort": 5535, + "stream": 5536, + "▁visited": 5537, + "78": 5538, + "▁fear": 5539, + "▁items": 5540, + "):": 5541, + "▁CD": 5542, + "▁Eastern": 5543, + "ager": 5544, + "▁sets": 5545, + "▁extensive": 5546, + "▁Ra": 5547, + "▁consec": 5548, + "ta": 5549, + "▁Today": 5550, + "▁Sand": 5551, + "▁emerg": 5552, + "▁About": 5553, + "▁46": 5554, + "▁centuries": 5555, + "▁extremely": 5556, + "▁Ko": 5557, + "▁tiss": 5558, + "▁faced": 5559, + "▁containing": 5560, + "▁Croat": 5561, + "▁details": 5562, + "▁hall": 5563, + "▁differences": 5564, + "iken": 5565, + "▁correspond": 5566, + "▁Exp": 5567, + "▁Then": 5568, + "▁protein": 5569, + "mes": 5570, + "▁Dun": 5571, + "▁encoun": 5572, + "▁northeast": 5573, + "itors": 5574, + "omew": 5575, + "▁Lar": 5576, + "▁focused": 5577, + "othes": 5578, + "inger": 5579, + "▁depend": 5580, + "▁roll": 5581, + "▁properties": 5582, + "▁executive": 5583, + "▁*": 5584, + "▁Chap": 5585, + "▁motion": 5586, + "▁reaction": 5587, + "▁motor": 5588, + "eller": 5589, + "▁shortly": 5590, + "▁lands": 5591, + "osa": 5592, + "▁Irish": 5593, + "ighth": 5594, + "▁opposed": 5595, + "essions": 5596, + "▁horses": 5597, + "▁exped": 5598, + "▁escape": 5599, + "▁trust": 5600, + "▁launch": 5601, + "▁violence": 5602, + "▁dial": 5603, + "▁trav": 5604, + "▁vehicles": 5605, + "town": 5606, + "▁lov": 5607, + "▁htt": 5608, + "▁firm": 5609, + "▁prompt": 5610, + "▁successfully": 5611, + "▁seasons": 5612, + "▁stations": 5613, + "▁split": 5614, + "ya": 5615, + "▁administration": 5616, + "pson": 5617, + "amber": 5618, + "▁torped": 5619, + "▁negoti": 5620, + "▁sixth": 5621, + "▁combination": 5622, + "▁sam": 5623, + "▁statement": 5624, + "▁Avenue": 5625, + "▁Os": 5626, + "▁52": 5627, + "▁Brigade": 5628, + "rat": 5629, + "era": 5630, + "▁serving": 5631, + "▁1985": 5632, + "▁officially": 5633, + "▁Orig": 5634, + "▁evolution": 5635, + "▁newly": 5636, + "▁regarding": 5637, + "▁stream": 5638, + "▁wave": 5639, + "standing": 5640, + "reyòl": 5641, + "▁Among": 5642, + "▁broken": 5643, + "▁displ": 5644, + "ji": 5645, + "isters": 5646, + "▁kg": 5647, + "▁symbol": 5648, + "▁measures": 5649, + "▁editor": 5650, + "▁vocals": 5651, + "▁existence": 5652, + "▁Show": 5653, + "arts": 5654, + "lines": 5655, + "▁Albert": 5656, + "▁Home": 5657, + "▁Field": 5658, + "▁AD": 5659, + "▁Hard": 5660, + "▁tests": 5661, + "ricket": 5662, + "▁Elizabeth": 5663, + "▁honor": 5664, + "▁Cat": 5665, + "▁entirely": 5666, + "▁testing": 5667, + "▁accompan": 5668, + "▁thin": 5669, + "▁useful": 5670, + "yan": 5671, + "▁paralle": 5672, + "uration": 5673, + "▁decades": 5674, + "▁Ob": 5675, + "▁shared": 5676, + "umes": 5677, + "▁liber": 5678, + "▁solar": 5679, + "ima": 5680, + ".)": 5681, + "▁facilities": 5682, + "▁organized": 5683, + "▁everyone": 5684, + "▁returning": 5685, + "▁Marsh": 5686, + "▁patient": 5687, + "▁protected": 5688, + "▁authorities": 5689, + "▁Nic": 5690, + "▁rainfall": 5691, + "▁enh": 5692, + "oured": 5693, + "▁thousands": 5694, + "▁rapidly": 5695, + "▁wealth": 5696, + "ads": 5697, + "▁Cub": 5698, + "▁faith": 5699, + "▁Musl": 5700, + "▁closely": 5701, + "elve": 5702, + "erse": 5703, + "▁Regiment": 5704, + "▁Alexander": 5705, + "▁Lew": 5706, + "▁actual": 5707, + "70": 5708, + "▁Card": 5709, + "rence": 5710, + "▁Bey": 5711, + "▁Pen": 5712, + "▁northwest": 5713, + "▁finding": 5714, + "▁turns": 5715, + "▁standards": 5716, + "▁dram": 5717, + "▁deploy": 5718, + "erate": 5719, + "pping": 5720, + "▁pul": 5721, + "▁Gre": 5722, + "▁consists": 5723, + "66": 5724, + "TC": 5725, + "▁Revolution": 5726, + "▁behavi": 5727, + "▁install": 5728, + "▁NH": 5729, + "▁mort": 5730, + "▁Rem": 5731, + "▁Jon": 5732, + "▁Cur": 5733, + "▁descript": 5734, + "▁Week": 5735, + "▁expansion": 5736, + "▁clin": 5737, + "kin": 5738, + "▁innings": 5739, + "▁orders": 5740, + "▁sched": 5741, + "▁wick": 5742, + "▁Andrew": 5743, + "▁exercise": 5744, + "▁recognized": 5745, + "▁lat": 5746, + "▁thinking": 5747, + "▁guard": 5748, + "▁Gall": 5749, + "▁franse": 5750, + "zil": 5751, + "omy": 5752, + "va": 5753, + "▁standing": 5754, + "ii": 5755, + "3.": 5756, + "▁artillery": 5757, + "▁pregn": 5758, + "▁Ep": 5759, + "arp": 5760, + "▁Hu": 5761, + "▁row": 5762, + "▁silver": 5763, + "▁consisted": 5764, + "orship": 5765, + "▁1984": 5766, + "▁182": 5767, + "▁Every": 5768, + "▁Office": 5769, + "▁Board": 5770, + "▁reign": 5771, + "▁Prov": 5772, + "▁Short": 5773, + "▁examples": 5774, + "▁Entertain": 5775, + "▁roles": 5776, + "▁IMDb": 5777, + "ati": 5778, + "▁recommended": 5779, + "met": 5780, + "▁distribution": 5781, + "▁teacher": 5782, + "▁eval": 5783, + "▁neut": 5784, + "▁Upon": 5785, + "▁income": 5786, + "▁600": 5787, + "ext": 5788, + "rons": 5789, + "▁chose": 5790, + "▁Ul": 5791, + "▁nominated": 5792, + "▁Only": 5793, + "eration": 5794, + "▁bottom": 5795, + "▁letters": 5796, + "▁Wilson": 5797, + "istan": 5798, + "▁substant": 5799, + "▁Blue": 5800, + "oz": 5801, + "icate": 5802, + "▁collected": 5803, + "▁Thus": 5804, + "▁Colon": 5805, + "ava": 5806, + "▁device": 5807, + "▁fired": 5808, + "ca": 5809, + "▁message": 5810, + "▁Roll": 5811, + "inity": 5812, + "▁losing": 5813, + "unte": 5814, + "▁solution": 5815, + "▁benefit": 5816, + "▁aspects": 5817, + "▁opposition": 5818, + "▁vary": 5819, + "rows": 5820, + "▁din": 5821, + "ksyon": 5822, + "vant": 5823, + "▁challenge": 5824, + "orders": 5825, + "kins": 5826, + "rance": 5827, + "▁Coast": 5828, + "▁regarded": 5829, + "▁dedicated": 5830, + "▁answer": 5831, + "▁application": 5832, + "▁Sund": 5833, + "▁roof": 5834, + "▁selection": 5835, + "▁1968": 5836, + "ocated": 5837, + "rete": 5838, + "▁Lab": 5839, + "uled": 5840, + "▁Due": 5841, + "add": 5842, + "▁calls": 5843, + "▁herself": 5844, + "▁generation": 5845, + "▁Liber": 5846, + "▁Bond": 5847, + "▁warm": 5848, + "▁phase": 5849, + "ping": 5850, + "▁religion": 5851, + "▁internal": 5852, + "ouri": 5853, + "akers": 5854, + "▁kont": 5855, + "▁roads": 5856, + "▁Jersey": 5857, + "ashion": 5858, + "▁locations": 5859, + "-19": 5860, + "▁Fleet": 5861, + "▁newspaper": 5862, + "outs": 5863, + "based": 5864, + "▁picture": 5865, + "illy": 5866, + "▁passes": 5867, + "▁Die": 5868, + "▁operated": 5869, + "encies": 5870, + "▁operating": 5871, + "▁knew": 5872, + "▁DNA": 5873, + "▁Guard": 5874, + "▁flying": 5875, + "▁Taylor": 5876, + "▁unus": 5877, + "▁Entertainment": 5878, + "▁Pennsylvania": 5879, + "▁Bul": 5880, + "▁Scient": 5881, + "▁younger": 5882, + "▁historian": 5883, + "▁Polish": 5884, + "▁kids": 5885, + "▁steel": 5886, + "▁increasingly": 5887, + "ns": 5888, + "etts": 5889, + "▁request": 5890, + "▁killing": 5891, + "oir": 5892, + "▁identify": 5893, + "▁communication": 5894, + "▁Zèv": 5895, + "▁Governor": 5896, + "▁tren": 5897, + "▁Women": 5898, + "▁alcoh": 5899, + "▁menm": 5900, + "▁Never": 5901, + "▁street": 5902, + "ano": 5903, + "▁council": 5904, + "enger": 5905, + "▁SS": 5906, + "pton": 5907, + "▁1979": 5908, + "oral": 5909, + "AN": 5910, + "▁secondary": 5911, + "▁rom": 5912, + "▁introduction": 5913, + "pir": 5914, + "▁solid": 5915, + "inth": 5916, + "ophy": 5917, + "▁Ven": 5918, + "azz": 5919, + "▁Gi": 5920, + "▁Germ": 5921, + "▁assault": 5922, + "▁granted": 5923, + "▁strike": 5924, + "▁supporting": 5925, + "osy": 5926, + "▁Girl": 5927, + "▁vo": 5928, + "▁concerns": 5929, + "▁powers": 5930, + "▁Att": 5931, + "ports": 5932, + "isa": 5933, + "▁showing": 5934, + "pool": 5935, + "▁casual": 5936, + "ua": 5937, + "itis": 5938, + "equ": 5939, + "▁Senate": 5940, + "▁fan": 5941, + "▁wrong": 5942, + "▁youth": 5943, + "▁Found": 5944, + "▁promote": 5945, + "▁requires": 5946, + "▁mountain": 5947, + "▁absor": 5948, + "▁1967": 5949, + "▁Crit": 5950, + "▁governor": 5951, + "▁fellow": 5952, + "▁Islands": 5953, + "▁reality": 5954, + "▁depth": 5955, + "▁edge": 5956, + "▁abandoned": 5957, + "▁else": 5958, + "▁Scottish": 5959, + "hemat": 5960, + "▁Duke": 5961, + "▁connection": 5962, + "▁chair": 5963, + "▁scholars": 5964, + "▁waste": 5965, + "▁Project": 5966, + "▁Conn": 5967, + "▁incident": 5968, + "▁producers": 5969, + "▁map": 5970, + "▁kid": 5971, + "iot": 5972, + "iable": 5973, + "ilasyon": 5974, + "pective": 5975, + "▁Education": 5976, + "▁revolution": 5977, + "▁Mir": 5978, + "▁populations": 5979, + "▁wounded": 5980, + "▁ven": 5981, + "▁distingu": 5982, + "▁1983": 5983, + "▁boat": 5984, + "▁paint": 5985, + "▁interested": 5986, + "▁rear": 5987, + "▁teachers": 5988, + "▁cloud": 5989, + "▁Instead": 5990, + "gian": 5991, + "▁Tro": 5992, + "▁advert": 5993, + "▁sufficient": 5994, + "▁strik": 5995, + "▁Who": 5996, + "vey": 5997, + "▁adding": 5998, + "▁caught": 5999, + "90": 6000, + "▁seat": 6001, + "▁soundtrack": 6002, + "▁journey": 6003, + "▁vacc": 6004, + "▁fim": 6005, + "▁achieve": 6006, + "▁Wild": 6007, + "▁Review": 6008, + "▁feeling": 6009, + "▁mal": 6010, + "▁Bank": 6011, + "ternal": 6012, + "▁2017": 6013, + "▁classes": 6014, + "1,": 6015, + "▁Web": 6016, + "risis": 6017, + "▁albums": 6018, + "antine": 6019, + "▁Georgia": 6020, + "▁acquired": 6021, + "▁Az": 6022, + "IV": 6023, + "▁armed": 6024, + "▁trou": 6025, + "▁Stand": 6026, + "▁software": 6027, + "▁circum": 6028, + "▁expanded": 6029, + "▁infection": 6030, + "▁ready": 6031, + "utation": 6032, + "▁islands": 6033, + "oln": 6034, + "▁explos": 6035, + "▁Bart": 6036, + "▁views": 6037, + "▁Cop": 6038, + "▁95": 6039, + "▁intensity": 6040, + "▁exchange": 6041, + "▁myth": 6042, + "▁Hurricane": 6043, + "ceived": 6044, + "BA": 6045, + "▁Cambridge": 6046, + "▁criticized": 6047, + "▁fields": 6048, + "▁nob": 6049, + "▁opinion": 6050, + "▁fiction": 6051, + "IN": 6052, + "▁stages": 6053, + "▁specifically": 6054, + "ycl": 6055, + "▁deaths": 6056, + "▁Est": 6057, + "▁practices": 6058, + "▁recommend": 6059, + "▁fought": 6060, + "▁tools": 6061, + "▁cart": 6062, + "▁Night": 6063, + "zen": 6064, + "▁Columbia": 6065, + "▁Rome": 6066, + "▁reyal": 6067, + "▁Ric": 6068, + "▁participated": 6069, + "▁Holly": 6070, + "▁Joe": 6071, + "▁appearances": 6072, + "▁Homer": 6073, + "▁1969": 6074, + "▁Francisco": 6075, + "▁appropriate": 6076, + "▁freedom": 6077, + "rann": 6078, + "▁witness": 6079, + "▁parallel": 6080, + "▁finds": 6081, + "▁Key": 6082, + "heim": 6083, + "▁buy": 6084, + "ockey": 6085, + "▁studied": 6086, + "▁manner": 6087, + "▁kick": 6088, + "▁receiving": 6089, + "ologies": 6090, + "ructure": 6091, + "raction": 6092, + "▁Brazil": 6093, + "apes": 6094, + "▁Mah": 6095, + "▁1982": 6096, + "power": 6097, + "▁Rh": 6098, + "▁guest": 6099, + "onc": 6100, + "▁somew": 6101, + "▁holding": 6102, + "▁debuted": 6103, + "▁Space": 6104, + "ective": 6105, + "▁Bru": 6106, + "▁die": 6107, + "orough": 6108, + "▁experiences": 6109, + "▁ha": 6110, + "▁diseases": 6111, + "▁Mov": 6112, + "▁doct": 6113, + "▁breat": 6114, + "intend": 6115, + "▁drawn": 6116, + "idel": 6117, + "▁treated": 6118, + "▁Meanwhile": 6119, + "adelph": 6120, + "▁fine": 6121, + "▁Well": 6122, + "pper": 6123, + "▁Harry": 6124, + "▁insect": 6125, + "▁foods": 6126, + "eless": 6127, + "▁deck": 6128, + "▁contributed": 6129, + "▁End": 6130, + "▁cars": 6131, + "▁Treat": 6132, + "render": 6133, + "▁Hon": 6134, + "▁instance": 6135, + "orage": 6136, + "▁museum": 6137, + "▁Nan": 6138, + "▁actors": 6139, + "▁1975": 6140, + "▁evac": 6141, + "▁120": 6142, + "rations": 6143, + "▁Pot": 6144, + "▁Down": 6145, + "gent": 6146, + "▁aired": 6147, + "▁WW": 6148, + "▁stret": 6149, + "ampion": 6150, + "ilding": 6151, + "▁divers": 6152, + "▁vision": 6153, + "thes": 6154, + "▁1976": 6155, + "▁Telev": 6156, + "▁branch": 6157, + "▁concer": 6158, + "▁producing": 6159, + "gery": 6160, + "▁interpret": 6161, + "▁pret": 6162, + "aste": 6163, + "▁Beat": 6164, + "▁Allied": 6165, + "▁domestic": 6166, + "uro": 6167, + "▁genetic": 6168, + "▁Gil": 6169, + "▁exposure": 6170, + "nic": 6171, + "iform": 6172, + "▁domèn": 6173, + "▁3.": 6174, + "▁engaged": 6175, + "▁Jews": 6176, + "▁rival": 6177, + "▁Festival": 6178, + "▁atmosphere": 6179, + "avig": 6180, + "rim": 6181, + "ician": 6182, + "▁resident": 6183, + "▁Lind": 6184, + "▁Philadelph": 6185, + "▁vent": 6186, + "▁committee": 6187, + "▁excess": 6188, + "▁secure": 6189, + "▁approved": 6190, + "▁mile": 6191, + "▁Gree": 6192, + "▁Football": 6193, + "▁choose": 6194, + "▁effectively": 6195, + "▁Arthur": 6196, + "▁innov": 6197, + "▁factor": 6198, + "▁dismiss": 6199, + "▁capable": 6200, + "▁tower": 6201, + "▁withdraw": 6202, + "▁offensive": 6203, + "▁1939": 6204, + "▁sport": 6205, + "▁tom": 6206, + "life": 6207, + "▁util": 6208, + "▁Ash": 6209, + "▁Hit": 6210, + "▁session": 6211, + "rome": 6212, + "ushing": 6213, + "▁identity": 6214, + "▁landing": 6215, + "▁parties": 6216, + "manuel": 6217, + "▁battery": 6218, + "▁Linc": 6219, + "tor": 6220, + "▁rejected": 6221, + "▁signs": 6222, + "ignment": 6223, + "▁interesting": 6224, + "▁Tech": 6225, + "pe": 6226, + "▁1964": 6227, + "aph": 6228, + "char": 6229, + "▁wel": 6230, + "▁1965": 6231, + "▁Mike": 6232, + "▁rural": 6233, + "▁85": 6234, + "▁railway": 6235, + "▁Secretary": 6236, + "mun": 6237, + "▁foss": 6238, + "▁illness": 6239, + "▁Point": 6240, + "▁Children": 6241, + "▁Mos": 6242, + "PA": 6243, + "▁depict": 6244, + "rees": 6245, + "break": 6246, + "BN": 6247, + "▁hear": 6248, + "▁twelve": 6249, + "▁authors": 6250, + "▁drugs": 6251, + "greg": 6252, + "onia": 6253, + "▁Castle": 6254, + "ivite": 6255, + "▁consecutive": 6256, + "▁Marc": 6257, + "▁ek": 6258, + "▁flat": 6259, + "uzz": 6260, + "▁1973": 6261, + "▁unp": 6262, + "▁typical": 6263, + "▁Philadelphia": 6264, + "ira": 6265, + "▁54": 6266, + "▁tournament": 6267, + "▁tele": 6268, + "▁1974": 6269, + "▁painting": 6270, + "▁poem": 6271, + "isers": 6272, + "ivalent": 6273, + "▁Sus": 6274, + "▁devices": 6275, + "▁huge": 6276, + "▁employed": 6277, + "elle": 6278, + "és": 6279, + "▁publication": 6280, + "▁temperatures": 6281, + "▁complic": 6282, + "▁filled": 6283, + "▁performing": 6284, + "▁Naz": 6285, + "▁Bal": 6286, + "▁discover": 6287, + "▁singles": 6288, + "asty": 6289, + "igen": 6290, + "yles": 6291, + "▁genus": 6292, + "▁cycle": 6293, + "▁catch": 6294, + "orus": 6295, + "▁1972": 6296, + "▁virus": 6297, + "▁Lincoln": 6298, + "▁academic": 6299, + "ansas": 6300, + "▁AC": 6301, + "▁constitution": 6302, + "▁Burn": 6303, + "▁1966": 6304, + "▁trip": 6305, + "itled": 6306, + "imet": 6307, + "▁Var": 6308, + "▁Coll": 6309, + "▁anyone": 6310, + "▁Sher": 6311, + "▁Operation": 6312, + "itage": 6313, + "▁crossing": 6314, + "rm": 6315, + "icit": 6316, + "▁san": 6317, + "▁--": 6318, + "▁Gade": 6319, + "ygen": 6320, + "▁Special": 6321, + "▁purchased": 6322, + "▁organizations": 6323, + "▁gets": 6324, + "▁accompanied": 6325, + "▁Head": 6326, + "▁driving": 6327, + "▁Power": 6328, + "▁Lang": 6329, + "▁undert": 6330, + "▁acts": 6331, + "bar": 6332, + "agan": 6333, + "▁aktivite": 6334, + "▁briefly": 6335, + "▁Republican": 6336, + "▁obtained": 6337, + "▁crowd": 6338, + "▁favour": 6339, + "▁tall": 6340, + "▁leads": 6341, + "▁shel": 6342, + "▁Six": 6343, + "▁processes": 6344, + "▁heads": 6345, + "▁occupied": 6346, + "umin": 6347, + "▁viewed": 6348, + "iate": 6349, + "▁sustain": 6350, + "▁conference": 6351, + "▁53": 6352, + "uan": 6353, + "achus": 6354, + "▁Live": 6355, + "istered": 6356, + "jo": 6357, + "▁Why": 6358, + "▁balance": 6359, + "▁finish": 6360, + "▁kon": 6361, + "▁unl": 6362, + "▁truth": 6363, + "▁composition": 6364, + "▁1971": 6365, + "▁Bi": 6366, + "▁gross": 6367, + "eper": 6368, + "▁Turn": 6369, + "▁Mot": 6370, + "theless": 6371, + "iger": 6372, + "▁Jenn": 6373, + "▁•": 6374, + "▁Hun": 6375, + "rates": 6376, + "▁apart": 6377, + "▁context": 6378, + "▁grass": 6379, + "▁Islam": 6380, + "▁Development": 6381, + "ès": 6382, + "▁overl": 6383, + "▁stock": 6384, + "▁1978": 6385, + "▁decade": 6386, + "▁Engine": 6387, + "▁Indust": 6388, + "▁Social": 6389, + "▁strate": 6390, + "▁roughly": 6391, + "▁recru": 6392, + "▁fashion": 6393, + "formation": 6394, + "then": 6395, + "▁starts": 6396, + "▁strategy": 6397, + "▁Square": 6398, + "nce": 6399, + "▁Ca": 6400, + "▁turning": 6401, + "▁concerned": 6402, + "▁rhy": 6403, + "▁intelligence": 6404, + "▁retired": 6405, + "▁gall": 6406, + "▁56": 6407, + "othing": 6408, + "▁essay": 6409, + "▁technical": 6410, + "▁Program": 6411, + "▁phen": 6412, + "▁consult": 6413, + "IC": 6414, + "▁Lear": 6415, + "▁Doctor": 6416, + "▁Studios": 6417, + "▁responsibility": 6418, + "awa": 6419, + "▁Hay": 6420, + "ifications": 6421, + "▁1981": 6422, + "▁relative": 6423, + "▁missing": 6424, + "▁surrender": 6425, + "FA": 6426, + "▁800": 6427, + "▁Conference": 6428, + "▁arrival": 6429, + "▁ocean": 6430, + "idden": 6431, + "▁cab": 6432, + "▁ri": 6433, + "▁Sound": 6434, + "▁vit": 6435, + "▁snow": 6436, + "ensus": 6437, + "▁kilometres": 6438, + "osite": 6439, + "▁expand": 6440, + "▁applications": 6441, + "▁supplies": 6442, + "▁patterns": 6443, + "▁emotional": 6444, + "ologists": 6445, + "▁Ast": 6446, + "▁Fantasy": 6447, + "▁178": 6448, + "▁See": 6449, + "▁predict": 6450, + "lig": 6451, + "onym": 6452, + "▁agent": 6453, + "▁increases": 6454, + "▁remove": 6455, + "▁Jr": 6456, + "BS": 6457, + "achusetts": 6458, + "▁losses": 6459, + "roc": 6460, + "▁technique": 6461, + "▁Brook": 6462, + "▁infantry": 6463, + "▁advent": 6464, + "ulpt": 6465, + "▁singing": 6466, + "▁enl": 6467, + "▁eating": 6468, + "▁Po": 6469, + "▁download": 6470, + "enses": 6471, + "▁Bell": 6472, + "▁upgr": 6473, + "▁Massachusetts": 6474, + "▁flooding": 6475, + "▁van": 6476, + "▁alcohol": 6477, + "olt": 6478, + "▁Earl": 6479, + "▁Lewis": 6480, + "OR": 6481, + "ée": 6482, + "rum": 6483, + "▁squadron": 6484, + "iciency": 6485, + "▁functions": 6486, + "▁relationships": 6487, + "▁Ok": 6488, + "▁ty": 6489, + "▁liqu": 6490, + "▁door": 6491, + "▁satis": 6492, + "▁pè": 6493, + "▁Liver": 6494, + "▁ord": 6495, + "▁vul": 6496, + "elly": 6497, + "▁Michel": 6498, + "▁Miller": 6499, + "going": 6500, + "▁alle": 6501, + "▁headquarters": 6502, + "▁Gulf": 6503, + "▁Prime": 6504, + "▁soul": 6505, + "▁themes": 6506, + "▁vehicle": 6507, + "urance": 6508, + "▁1914": 6509, + "▁carrying": 6510, + "▁Pu": 6511, + "ilton": 6512, + "▁permanent": 6513, + "▁Wars": 6514, + "▁Korean": 6515, + "▁Command": 6516, + "▁explain": 6517, + "▁Shak": 6518, + "▁indicated": 6519, + "▁Mul": 6520, + "▁Human": 6521, + "unicip": 6522, + "▁infect": 6523, + "▁commissioned": 6524, + "▁steps": 6525, + "▁filmed": 6526, + "▁41": 6527, + "agues": 6528, + "▁Ari": 6529, + "EC": 6530, + "▁policies": 6531, + "▁Between": 6532, + "abil": 6533, + "▁Supreme": 6534, + "▁otherwise": 6535, + "▁garden": 6536, + "▁eggs": 6537, + "▁Forest": 6538, + "▁filming": 6539, + "▁bond": 6540, + "avalry": 6541, + "▁transition": 6542, + "▁Anderson": 6543, + "erg": 6544, + "atically": 6545, + "▁Roberto": 6546, + "▁independence": 6547, + "▁Bad": 6548, + "▁Tam": 6549, + "▁aer": 6550, + "bal": 6551, + "▁surpris": 6552, + "▁steam": 6553, + "▁sounds": 6554, + "▁merch": 6555, + "▁dangerous": 6556, + "▁ban": 6557, + "▁1918": 6558, + "▁seventh": 6559, + "▁designs": 6560, + "▁Balt": 6561, + "▁dens": 6562, + "icians": 6563, + "cknow": 6564, + "▁linked": 6565, + "▁sections": 6566, + "▁bass": 6567, + "▁vessels": 6568, + "IT": 6569, + "▁1977": 6570, + "▁earliest": 6571, + "▁gradually": 6572, + "igration": 6573, + "▁drama": 6574, + "▁Profess": 6575, + "▁Id": 6576, + "75": 6577, + "▁crime": 6578, + "▁relief": 6579, + "▁grade": 6580, + "▁slowly": 6581, + "▁Frit": 6582, + "▁characteristics": 6583, + "ooth": 6584, + "▁regional": 6585, + "▁interests": 6586, + "▁sole": 6587, + "▁athlet": 6588, + "▁Gro": 6589, + "▁fly": 6590, + "▁von": 6591, + "▁scheduled": 6592, + "▁Back": 6593, + "ikal": 6594, + "▁decline": 6595, + "▁ori": 6596, + "box": 6597, + "▁IV": 6598, + "▁boats": 6599, + "▁titles": 6600, + "▁wonder": 6601, + "▁bright": 6602, + "▁exposed": 6603, + "▁interchange": 6604, + "▁Budd": 6605, + "▁reprodu": 6606, + "▁regularly": 6607, + "ivered": 6608, + "ía": 6609, + "▁emergency": 6610, + "▁teach": 6611, + "ector": 6612, + "▁Bon": 6613, + "▁Tropical": 6614, + "▁upd": 6615, + "▁Spring": 6616, + "▁camera": 6617, + "icide": 6618, + "▁Nap": 6619, + "▁mounted": 6620, + "▁derived": 6621, + "▁Organ": 6622, + "▁entry": 6623, + "gers": 6624, + "ipping": 6625, + "▁ceremony": 6626, + "lee": 6627, + "▁changing": 6628, + "una": 6629, + "▁Cas": 6630, + "worth": 6631, + "mann": 6632, + "oli": 6633, + "▁defence": 6634, + "▁shark": 6635, + "▁landsc": 6636, + "uations": 6637, + "▁renew": 6638, + "▁expedition": 6639, + "▁Davis": 6640, + "▁users": 6641, + "ossible": 6642, + "▁Ve": 6643, + "▁baby": 6644, + "▁credit": 6645, + "▁exclus": 6646, + "▁sed": 6647, + "▁arc": 6648, + "▁Grant": 6649, + "▁personnel": 6650, + "▁(200": 6651, + "▁possibility": 6652, + "idges": 6653, + "athan": 6654, + "▁tick": 6655, + "▁pric": 6656, + "▁solo": 6657, + "▁76": 6658, + "▁torpedo": 6659, + "▁shaped": 6660, + "apore": 6661, + "▁formal": 6662, + "▁buried": 6663, + "▁bacteria": 6664, + "▁corpor": 6665, + "etball": 6666, + "ED": 6667, + "don": 6668, + "▁Whe": 6669, + "▁Ty": 6670, + "▁alt": 6671, + "▁web": 6672, + "▁ISBN": 6673, + "espread": 6674, + "▁Constitution": 6675, + "▁zone": 6676, + "ila": 6677, + "▁proceed": 6678, + "▁raise": 6679, + "▁coastal": 6680, + "unch": 6681, + "wall": 6682, + "▁funds": 6683, + "▁Germans": 6684, + "▁criticism": 6685, + "▁kèk": 6686, + "▁Univers": 6687, + "▁sell": 6688, + "ador": 6689, + "▁delivered": 6690, + "▁Ross": 6691, + "▁converted": 6692, + "▁lap": 6693, + "▁Federal": 6694, + "▁Independ": 6695, + "▁politics": 6696, + "▁acres": 6697, + "▁speaking": 6698, + "▁1,": 6699, + "▁Ur": 6700, + "edia": 6701, + "▁colour": 6702, + "▁Walter": 6703, + "▁Broad": 6704, + "▁describe": 6705, + "▁Moon": 6706, + "▁notable": 6707, + "▁Age": 6708, + "▁Ta": 6709, + "taining": 6710, + "▁SR": 6711, + "▁send": 6712, + "▁oxygen": 6713, + "lan": 6714, + "22": 6715, + "▁possess": 6716, + "▁defensive": 6717, + "▁Singapore": 6718, + "▁acknow": 6719, + "vements": 6720, + "▁Order": 6721, + "▁frag": 6722, + "▁convent": 6723, + "▁semi": 6724, + "▁58": 6725, + "▁Ken": 6726, + "▁taught": 6727, + "▁subs": 6728, + "champ": 6729, + "▁astron": 6730, + "▁250": 6731, + "▁Steve": 6732, + "organ": 6733, + "▁Kentucky": 6734, + "▁Fair": 6735, + "▁debate": 6736, + "▁assistance": 6737, + "▁gwo": 6738, + "▁Lady": 6739, + "▁enjoyed": 6740, + "▁Pass": 6741, + "obe": 6742, + "▁2018": 6743, + "▁option": 6744, + "▁movements": 6745, + "▁occas": 6746, + "▁purchase": 6747, + "ante": 6748, + "▁ò": 6749, + "▁sculpt": 6750, + "▁Emperor": 6751, + "ito": 6752, + "▁discovery": 6753, + "upt": 6754, + "▁attached": 6755, + "▁Dark": 6756, + "iveness": 6757, + "▁franch": 6758, + "▁comedy": 6759, + "▁popularity": 6760, + "mouth": 6761, + "▁excell": 6762, + "▁settlement": 6763, + "▁equivalent": 6764, + "▁ancest": 6765, + "▁volunte": 6766, + "▁pure": 6767, + "▁Fritz": 6768, + "▁brothers": 6769, + "▁1917": 6770, + "▁installed": 6771, + "ompl": 6772, + "emble": 6773, + "▁visible": 6774, + "▁cited": 6775, + "ulating": 6776, + "▁battalion": 6777, + "▁Lat": 6778, + "▁flo": 6779, + "▁1915": 6780, + "iro": 6781, + "▁investigation": 6782, + "RA": 6783, + "ibb": 6784, + "▁helping": 6785, + "▁males": 6786, + "▁constant": 6787, + "aina": 6788, + "▁massive": 6789, + "▁Liverpool": 6790, + "aked": 6791, + "rets": 6792, + "▁1916": 6793, + "▁clearly": 6794, + "▁highlight": 6795, + "▁suffering": 6796, + "▁shut": 6797, + "opher": 6798, + "▁Democratic": 6799, + "▁breeding": 6800, + "▁jump": 6801, + "▁writes": 6802, + "▁opposite": 6803, + "▁Nations": 6804, + "▁guide": 6805, + "▁sud": 6806, + "▁girls": 6807, + "▁educational": 6808, + "▁looked": 6809, + "▁orchest": 6810, + "▁Director": 6811, + "ione": 6812, + "▁Disc": 6813, + "▁piano": 6814, + "▁estate": 6815, + "▁meters": 6816, + "▁stopped": 6817, + "▁compris": 6818, + "▁degrees": 6819, + "burgh": 6820, + "urally": 6821, + "ènman": 6822, + "▁Supp": 6823, + "raph": 6824, + "eline": 6825, + "▁Barb": 6826, + "9.": 6827, + "▁injured": 6828, + "▁PC": 6829, + "▁recognition": 6830, + "▁Daily": 6831, + "state": 6832, + "▁sugar": 6833, + "▁principal": 6834, + "▁involving": 6835, + "▁department": 6836, + "▁funding": 6837, + "▁66": 6838, + "▁Carey": 6839, + "▁efficient": 6840, + "▁1963": 6841, + "▁accompl": 6842, + "▁Walk": 6843, + "▁bands": 6844, + "▁extent": 6845, + "▁Olympic": 6846, + "▁disturb": 6847, + "▁fal": 6848, + "▁widespread": 6849, + "▁(20": 6850, + "▁Fire": 6851, + "▁Additionally": 6852, + "aser": 6853, + "aka": 6854, + "▁detailed": 6855, + "▁components": 6856, + "▁isn": 6857, + "▁Kir": 6858, + "▁1948": 6859, + "▁Vietnam": 6860, + "ali": 6861, + "sey": 6862, + "▁Ren": 6863, + "▁Emmanuel": 6864, + "▁injuries": 6865, + "▁crown": 6866, + "▁Ba": 6867, + "▁fè": 6868, + "▁shooting": 6869, + "▁od": 6870, + "▁mode": 6871, + "▁hearing": 6872, + "▁tool": 6873, + "▁greatly": 6874, + "▁Brian": 6875, + "▁Vill": 6876, + "▁engineering": 6877, + "▁dream": 6878, + "▁therapy": 6879, + "▁languages": 6880, + "friend": 6881, + "▁accounts": 6882, + "▁Storm": 6883, + "▁Anton": 6884, + "regon": 6885, + "▁reputation": 6886, + "▁Str": 6887, + "▁1946": 6888, + "▁evening": 6889, + "▁declined": 6890, + "▁indicate": 6891, + "▁ped": 6892, + "▁submar": 6893, + "▁hundreds": 6894, + "▁pig": 6895, + "▁Summer": 6896, + "▁females": 6897, + "▁57": 6898, + "▁Radio": 6899, + "▁Main": 6900, + "iminal": 6901, + "▁purposes": 6902, + "▁owner": 6903, + "rane": 6904, + "asure": 6905, + "▁conqu": 6906, + "roke": 6907, + "▁shop": 6908, + "▁towns": 6909, + "▁trains": 6910, + "▁committed": 6911, + "cop": 6912, + "▁duty": 6913, + "▁Offic": 6914, + "▁layer": 6915, + "hered": 6916, + "▁supposed": 6917, + "▁Lieutenant": 6918, + "▁Ball": 6919, + "▁volcan": 6920, + "FL": 6921, + "▁Han": 6922, + "tenance": 6923, + "▁Color": 6924, + "èz": 6925, + "▁difficulty": 6926, + "▁Alf": 6927, + "issance": 6928, + "▁storage": 6929, + "▁considerable": 6930, + "▁discussed": 6931, + "▁rated": 6932, + "▁rive": 6933, + "bell": 6934, + "▁clim": 6935, + "▁casualties": 6936, + "dy": 6937, + "ieval": 6938, + "▁pitch": 6939, + "▁keeping": 6940, + "▁tact": 6941, + "▁160": 6942, + "lets": 6943, + "▁corner": 6944, + "▁Rey": 6945, + "▁Hart": 6946, + "▁opportunities": 6947, + "uct": 6948, + "▁sik": 6949, + "▁Oregon": 6950, + "rehens": 6951, + "▁requirements": 6952, + "▁Kim": 6953, + "▁rebu": 6954, + "ader": 6955, + "▁ment": 6956, + "▁bone": 6957, + "▁throw": 6958, + "oster": 6959, + "▁desire": 6960, + "▁Gord": 6961, + "▁Station": 6962, + "▁fil": 6963, + "▁advice": 6964, + "▁extreme": 6965, + "ieties": 6966, + "▁cou": 6967, + "inois": 6968, + "▁library": 6969, + "unior": 6970, + "▁proport": 6971, + "▁refers": 6972, + "▁satell": 6973, + "▁Justice": 6974, + "ilation": 6975, + "▁touchdown": 6976, + "adow": 6977, + "▁sustained": 6978, + "▁Last": 6979, + "▁threatened": 6980, + "▁hired": 6981, + "▁Arts": 6982, + "aska": 6983, + "▁periods": 6984, + "ework": 6985, + "▁sudden": 6986, + "▁crisis": 6987, + "▁les": 6988, + "real": 6989, + "▁happened": 6990, + "▁Ly": 6991, + "▁Ple": 6992, + "riers": 6993, + "▁surgery": 6994, + "▁Confeder": 6995, + "manse": 6996, + "▁Mars": 6997, + "▁Pierre": 6998, + "▁ògan": 6999, + "olis": 7000, + "▁Byz": 7001, + "▁goods": 7002, + "▁Poland": 7003, + "▁candidate": 7004, + "▁charts": 7005, + "▁voy": 7006, + "▁dates": 7007, + "oto": 7008, + "ographer": 7009, + "▁74": 7010, + "ragon": 7011, + "▁99": 7012, + "▁professor": 7013, + "▁Library": 7014, + "atters": 7015, + "▁stands": 7016, + "▁uncle": 7017, + "▁chapter": 7018, + "▁southeast": 7019, + "▁kou": 7020, + "▁passage": 7021, + "▁seeing": 7022, + "▁gal": 7023, + "▁Greg": 7024, + "eman": 7025, + "▁Syd": 7026, + "▁Anth": 7027, + "▁Pict": 7028, + "▁Nintend": 7029, + "▁Disney": 7030, + "▁preced": 7031, + "aria": 7032, + "erted": 7033, + "▁destruction": 7034, + "▁trail": 7035, + "yer": 7036, + "▁Get": 7037, + "col": 7038, + "▁1962": 7039, + "▁engines": 7040, + "abilities": 7041, + "▁Robaina": 7042, + "▁challenges": 7043, + "ON": 7044, + "▁Nintendo": 7045, + "▁strongly": 7046, + "▁succeeded": 7047, + "udes": 7048, + "▁Lo": 7049, + "▁intersection": 7050, + "▁2004.": 7051, + "iration": 7052, + "▁neighbor": 7053, + "body": 7054, + "▁nick": 7055, + "www": 7056, + "▁Album": 7057, + "▁comic": 7058, + "▁Free": 7059, + "▁seed": 7060, + "wing": 7061, + "uccess": 7062, + "▁Popilasyon": 7063, + "lav": 7064, + "zyèm": 7065, + "▁Simon": 7066, + "▁sector": 7067, + "▁Labor": 7068, + "▁matem": 7069, + "▁headed": 7070, + "▁ju": 7071, + "▁Hollywood": 7072, + "▁immediate": 7073, + "aret": 7074, + "▁drew": 7075, + "▁Sunday": 7076, + "▁bought": 7077, + "roid": 7078, + "▁Abb": 7079, + "▁entrance": 7080, + "rine": 7081, + "▁Foundation": 7082, + "▁reserv": 7083, + "▁breed": 7084, + "▁entitled": 7085, + "▁Serb": 7086, + "▁appeal": 7087, + "▁dress": 7088, + "IA": 7089, + "▁arranged": 7090, + "▁tissue": 7091, + "▁temple": 7092, + "____": 7093, + "eler": 7094, + "emies": 7095, + "uable": 7096, + "▁neither": 7097, + "ommod": 7098, + "▁watched": 7099, + "▁spok": 7100, + "wen": 7101, + "▁depending": 7102, + "7.": 7103, + "ja": 7104, + "▁nest": 7105, + "insula": 7106, + "▁inner": 7107, + "ache": 7108, + "▁options": 7109, + "▁Norway": 7110, + "èf": 7111, + "▁hang": 7112, + "abled": 7113, + "▁Portug": 7114, + "▁Holy": 7115, + "▁Ron": 7116, + "ranean": 7117, + "▁51": 7118, + "▁Leon": 7119, + "▁Vide": 7120, + "ouvènman": 7121, + "▁contest": 7122, + "▁amounts": 7123, + "no": 7124, + "▁stick": 7125, + "▁charged": 7126, + "▁southwest": 7127, + "place": 7128, + "rieved": 7129, + "▁awards": 7130, + "▁responded": 7131, + "point": 7132, + "abetes": 7133, + "▁association": 7134, + "▁discussion": 7135, + "▁none": 7136, + "▁Golden": 7137, + "▁obvious": 7138, + "▁alf": 7139, + "▁chain": 7140, + "▁survived": 7141, + "▁user": 7142, + "▁Maria": 7143, + "▁minimum": 7144, + "▁alman": 7145, + "▁lose": 7146, + "▁Low": 7147, + "▁exactly": 7148, + "▁Maryland": 7149, + "▁bringing": 7150, + "▁stim": 7151, + "▁fèt": 7152, + "▁argument": 7153, + "ervative": 7154, + "▁decisions": 7155, + "▁craft": 7156, + "▁wet": 7157, + "▁Environment": 7158, + "▁disorder": 7159, + "▁cricket": 7160, + "▁Jane": 7161, + "▁ruled": 7162, + "ocal": 7163, + "▁outbreak": 7164, + "▁synd": 7165, + "▁oldest": 7166, + "▁decor": 7167, + "▁poly": 7168, + "▁photograph": 7169, + "▁swim": 7170, + "▁employees": 7171, + "▁bask": 7172, + "▁Chart": 7173, + "▁beautiful": 7174, + "▁electricity": 7175, + "▁mathemat": 7176, + "▁consumption": 7177, + "▁grown": 7178, + "▁59": 7179, + "▁Dig": 7180, + "▁sight": 7181, + "▁Tout": 7182, + "osh": 7183, + "▁comfort": 7184, + "▁Francis": 7185, + "engers": 7186, + "▁timoun": 7187, + "▁Cape": 7188, + "▁unusual": 7189, + "▁moral": 7190, + "▁subjects": 7191, + "▁Internet": 7192, + "rep": 7193, + "▁antib": 7194, + "▁spin": 7195, + "▁Similar": 7196, + "▁62": 7197, + "▁televizyon": 7198, + "▁NAS": 7199, + "▁McG": 7200, + "▁generated": 7201, + "ureau": 7202, + "▁Nick": 7203, + "▁nations": 7204, + "▁bear": 7205, + "orrow": 7206, + "▁stem": 7207, + "▁gather": 7208, + "▁Circ": 7209, + "▁extension": 7210, + "▁architecture": 7211, + "▁partner": 7212, + "▁serves": 7213, + "▁shif": 7214, + "▁Konst": 7215, + "▁Patrick": 7216, + "▁exception": 7217, + "OS": 7218, + "▁medium": 7219, + "▁amer": 7220, + "▁Domin": 7221, + "▁Adam": 7222, + "▁reserve": 7223, + "▁proposal": 7224, + "▁72": 7225, + "▁campus": 7226, + "▁entering": 7227, + "term": 7228, + "ashed": 7229, + "oked": 7230, + "Station": 7231, + "▁dezyèm": 7232, + "▁unsuccess": 7233, + "▁HMS": 7234, + "▁wrest": 7235, + "▁Railway": 7236, + "▁signal": 7237, + "amental": 7238, + "▁grounds": 7239, + "▁Ka": 7240, + "▁gone": 7241, + "▁teen": 7242, + "▁biggest": 7243, + "▁reducing": 7244, + "▁Cra": 7245, + "▁fer": 7246, + "▁depos": 7247, + "▁Pak": 7248, + "▁seemed": 7249, + "hus": 7250, + "▁restaur": 7251, + "▁tanks": 7252, + "▁vert": 7253, + "▁Dat": 7254, + "▁prisoners": 7255, + "▁Indiana": 7256, + "▁Imperial": 7257, + "▁breast": 7258, + "▁vulner": 7259, + "▁childhood": 7260, + "▁PlayStation": 7261, + "▁institutions": 7262, + "▁literary": 7263, + "▁approached": 7264, + "▁Hug": 7265, + "▁aw": 7266, + "▁chronic": 7267, + "iversary": 7268, + "▁1956": 7269, + "▁Dream": 7270, + "irt": 7271, + "▁1938": 7272, + "▁phr": 7273, + "▁assistant": 7274, + "oard": 7275, + "▁settled": 7276, + "▁ham": 7277, + "▁conclusion": 7278, + "▁Sel": 7279, + "anger": 7280, + "▁normally": 7281, + "▁articles": 7282, + "iated": 7283, + "▁mir": 7284, + "▁Sab": 7285, + "▁absol": 7286, + "arant": 7287, + "▁notice": 7288, + "ses": 7289, + "bound": 7290, + "▁lies": 7291, + "▁meat": 7292, + "▁chans": 7293, + "▁Roger": 7294, + "▁pull": 7295, + "bec": 7296, + "ko": 7297, + "▁lasted": 7298, + "▁Such": 7299, + "▁piti": 7300, + "▁universe": 7301, + "▁renamed": 7302, + "▁63": 7303, + "pat": 7304, + "asks": 7305, + "▁spons": 7306, + "▁closer": 7307, + "rell": 7308, + "▁Run": 7309, + "▁Network": 7310, + "▁expression": 7311, + "ails": 7312, + "fe": 7313, + "▁outer": 7314, + "▁ille": 7315, + "▁yield": 7316, + "▁Dougl": 7317, + "▁Colonel": 7318, + "▁mic": 7319, + "▁plate": 7320, + "▁retained": 7321, + "▁nonm": 7322, + "▁measured": 7323, + "▁neck": 7324, + "▁anx": 7325, + "▁strengthen": 7326, + "leton": 7327, + "▁1961": 7328, + "▁folk": 7329, + "▁USA": 7330, + "inton": 7331, + "▁Rhod": 7332, + "▁Moore": 7333, + "▁driven": 7334, + "▁medicine": 7335, + "▁Unlike": 7336, + "bi": 7337, + "▁warning": 7338, + "▁73": 7339, + "▁adapted": 7340, + "▁agricultural": 7341, + "▁facility": 7342, + "ogy": 7343, + "▁Ira": 7344, + "▁apply": 7345, + "▁circulation": 7346, + "▁somewhat": 7347, + "▁dynam": 7348, + "▁700": 7349, + "▁Barn": 7350, + "▁equipped": 7351, + "▁happen": 7352, + "▁Sydney": 7353, + "▁òganizasyon": 7354, + "resents": 7355, + "▁circumst": 7356, + "▁wearing": 7357, + "▁accommod": 7358, + "▁definition": 7359, + "ais": 7360, + "▁Dab": 7361, + "owa": 7362, + "▁Ext": 7363, + "▁Tel": 7364, + "▁tooth": 7365, + "ardo": 7366, + "weight": 7367, + "▁Ottoman": 7368, + "onot": 7369, + "▁familiar": 7370, + "hetic": 7371, + "▁Anne": 7372, + "▁1958": 7373, + "▁holds": 7374, + "▁moves": 7375, + "▁weakened": 7376, + "▁spiritual": 7377, + "▁Base": 7378, + "▁squad": 7379, + "▁trained": 7380, + "▁consisting": 7381, + "Ar": 7382, + "We": 7383, + "▁principles": 7384, + "▁68": 7385, + "▁Jord": 7386, + "▁veter": 7387, + "▁assumed": 7388, + "▁Es": 7389, + "rett": 7390, + "▁rose": 7391, + "▁apprec": 7392, + "▁Gill": 7393, + "▁operate": 7394, + "ester": 7395, + "▁http": 7396, + "▁0.": 7397, + "eri": 7398, + "▁Within": 7399, + "▁duties": 7400, + "▁sample": 7401, + "▁Lin": 7402, + "▁Illinois": 7403, + "▁routes": 7404, + "▁Rose": 7405, + "▁Cab": 7406, + "▁Roy": 7407, + "aware": 7408, + "andom": 7409, + "▁explains": 7410, + "▁Longchamp": 7411, + "eenth": 7412, + "▁Espò": 7413, + "▁happy": 7414, + "riksyon": 7415, + "▁Indones": 7416, + "▁underst": 7417, + "▁restrict": 7418, + "bra": 7419, + "▁Whit": 7420, + "▁mamm": 7421, + "▁archae": 7422, + "achel": 7423, + "▁ideal": 7424, + "▁NHL": 7425, + "▁dogs": 7426, + "istans": 7427, + "▁category": 7428, + "izin": 7429, + "▁Prem": 7430, + "▁otor": 7431, + "icy": 7432, + "▁Stew": 7433, + "▁lake": 7434, + "▁motiv": 7435, + "iva": 7436, + "oys": 7437, + "▁fert": 7438, + "▁creative": 7439, + "▁feelings": 7440, + "▁output": 7441, + "do": 7442, + "atè": 7443, + "▁Bir": 7444, + "aid": 7445, + "▁thousand": 7446, + "ribed": 7447, + "con": 7448, + "after": 7449, + "▁habitat": 7450, + "SA": 7451, + "▁window": 7452, + "▁Ped": 7453, + "▁maintenance": 7454, + "▁sivil": 7455, + "orous": 7456, + "▁1962,": 7457, + "Th": 7458, + "orney": 7459, + "▁sisp": 7460, + "▁pages": 7461, + "▁credited": 7462, + "▁legislation": 7463, + "thm": 7464, + "▁partn": 7465, + "▁navig": 7466, + "▁represents": 7467, + "▁convin": 7468, + "▁legs": 7469, + "▁impossible": 7470, + "▁radyo": 7471, + "▁Family": 7472, + "▁begun": 7473, + "▁easier": 7474, + "▁96": 7475, + "where": 7476, + "borne": 7477, + "▁promotion": 7478, + "▁Ale": 7479, + "▁Again": 7480, + "▁130": 7481, + "▁genre": 7482, + "▁ax": 7483, + "active": 7484, + "arsh": 7485, + "▁spend": 7486, + "▁Kat": 7487, + "▁returns": 7488, + "▁Kilti": 7489, + "▁establishment": 7490, + "▁77": 7491, + "andy": 7492, + "▁hits": 7493, + "▁looks": 7494, + "▁1936": 7495, + "▁actress": 7496, + "▁Nether": 7497, + "▁instruments": 7498, + "ić": 7499, + "▁invited": 7500, + "▁describing": 7501, + "wan": 7502, + "▁kontak": 7503, + "▁classified": 7504, + "▁medikal": 7505, + "▁segment": 7506, + "▁file": 7507, + "▁otorite": 7508, + "▁distributed": 7509, + "▁Korea": 7510, + "▁Kreyòl": 7511, + "▁perspective": 7512, + "▁Hitler": 7513, + "▁faster": 7514, + "▁profession": 7515, + "▁Sante": 7516, + "▁78": 7517, + "elye": 7518, + "CC": 7519, + "▁bag": 7520, + "▁Pur": 7521, + "▁sispann": 7522, + "using": 7523, + "▁businesses": 7524, + "▁franchise": 7525, + "▁separated": 7526, + "▁replacement": 7527, + "rikilti": 7528, + "▁Kong": 7529, + "▁simpl": 7530, + "▁Minnes": 7531, + "▁expert": 7532, + "▁Hamilton": 7533, + "▁Gib": 7534, + "iterranean": 7535, + "▁absence": 7536, + "BI": 7537, + "▁Cre": 7538, + "▁4.": 7539, + "▁1959": 7540, + "asters": 7541, + "ami": 7542, + "▁surf": 7543, + "▁1904.": 7544, + "▁radiation": 7545, + "▁Laure": 7546, + "▁sessions": 7547, + "▁Feder": 7548, + "▁ing": 7549, + "▁Gouvènman": 7550, + "aug": 7551, + "▁emerged": 7552, + "▁1957": 7553, + "▁Missouri": 7554, + "▁diplomatik": 7555, + "oncé": 7556, + "▁adjust": 7557, + "▁format": 7558, + "▁emissions": 7559, + "▁owners": 7560, + "▁wed": 7561, + "▁cooper": 7562, + "▁Sav": 7563, + "▁intention": 7564, + "▁Corpor": 7565, + "▁admitted": 7566, + "rant": 7567, + "▁favorite": 7568, + "▁Alb": 7569, + "▁conscious": 7570, + "▁1919": 7571, + "▁reven": 7572, + "zon": 7573, + "▁Mountain": 7574, + "▁baseball": 7575, + "acher": 7576, + "▁1947": 7577, + "▁estasyon": 7578, + "▁historic": 7579, + "▁rub": 7580, + "▁posted": 7581, + "orted": 7582, + "▁phenomen": 7583, + "oming": 7584, + "▁crossed": 7585, + "▁Bush": 7586, + "▁Kooper": 7587, + "▁Turk": 7588, + "▁Staff": 7589, + "uts": 7590, + "▁immune": 7591, + "omic": 7592, + "▁courts": 7593, + "▁Mediterranean": 7594, + "▁Gordon": 7595, + "▁Indians": 7596, + "▁expensive": 7597, + "itter": 7598, + "iqu": 7599, + "21": 7600, + "▁conservation": 7601, + "▁pp": 7602, + "▁persu": 7603, + "▁excellent": 7604, + "▁gameplay": 7605, + "chang": 7606, + "▁Olympics": 7607, + "ching": 7608, + "▁agree": 7609, + "▁Sinema": 7610, + "▁forming": 7611, + "▁storyline": 7612, + "▁);": 7613, + "▁Agrikilti": 7614, + "▁1953": 7615, + "▁asistans": 7616, + "▁1955": 7617, + "▁Know": 7618, + "▁dwèt": 7619, + "▁Naval": 7620, + "▁Assembly": 7621, + "▁Adams": 7622, + "▁breaking": 7623, + "▁Howard": 7624, + "▁Heart": 7625, + "▁Touris": 7626, + "▁mand": 7627, + "▁alfabet": 7628, + "▁Beyoncé": 7629, + "▁lb": 7630, + "▁jobs": 7631, + "▁Pèsonalite": 7632, + "▁Airport": 7633, + "”.": 7634, + "▁Pit": 7635, + "▁hal": 7636, + "▁encouraged": 7637, + "▁reprann": 7638, + "ellect": 7639, + "inction": 7640, + "▁arrested": 7641, + "▁worst": 7642, + "▁deleg": 7643, + "▁Konstriksyon": 7644, + "▁69": 7645, + "▁vast": 7646, + "▁alfabetizasyon": 7647, + "OT": 7648, + "▁trials": 7649, + "▁koumanse": 7650, + "▁pèsonalite": 7651, + "▁OEA": 7652, + "▁Pèch": 7653, + "▁300000": 7654, + "▁stadium": 7655, + "▁Centre": 7656, + "▁ethnic": 7657, + "▁chanselye": 7658, + "onotik": 7659, + "▁Five": 7660, + "ewonotik": 7661, + "▁Dabòn": 7662, + "▁survive": 7663, + "▁Author": 7664, + "▁Kooperasyon": 7665, + "▁Therefore": 7666, + "▁modified": 7667, + "▁Jay": 7668, + "uster": 7669, + "▁Aewonotik": 7670, + "▁ble": 7671, + "▁Asian": 7672, + "iller": 7673, + "▁spr": 7674, + "▁177": 7675, + "▁classic": 7676, + "▁Shortly": 7677, + "▁participate": 7678, + "▁colonial": 7679, + "▁dating": 7680, + "▁sail": 7681, + "▁protest": 7682, + "▁Sym": 7683, + "▁ca": 7684, + "athy": 7685, + "▁suitable": 7686, + "▁Dra": 7687, + "▁1910": 7688, + "▁drinking": 7689, + "▁attributed": 7690, + "western": 7691, + "▁programme": 7692, + "incess": 7693, + "▁prey": 7694, + "▁victims": 7695, + "▁involves": 7696, + "ewhere": 7697, + "▁whereas": 7698, + "▁Kennedy": 7699, + "▁province": 7700, + "▁Pear": 7701, + "▁stable": 7702, + "▁VII": 7703, + "▁Hawai": 7704, + "nings": 7705, + "related": 7706, + "▁thirty": 7707, + "▁Minnesota": 7708, + "▁plane": 7709, + "▁Band": 7710, + "▁Temple": 7711, + "GN": 7712, + "▁ameriken": 7713, + "▁Der": 7714, + "hedral": 7715, + "▁detect": 7716, + "zer": 7717, + "▁shore": 7718, + "▁comments": 7719, + "▁yourself": 7720, + "▁Non": 7721, + "▁minister": 7722, + "PS": 7723, + "▁temporary": 7724, + "▁phone": 7725, + "itid": 7726, + "▁hill": 7727, + "▁Where": 7728, + "elson": 7729, + "▁superior": 7730, + "▁Memorial": 7731, + "▁Throughout": 7732, + "▁resemb": 7733, + "▁participants": 7734, + "spec": 7735, + "▁forests": 7736, + "▁drawing": 7737, + "▁Marg": 7738, + "▁Mexican": 7739, + "▁synthes": 7740, + "▁informed": 7741, + "45": 7742, + "▁root": 7743, + "▁organic": 7744, + "olo": 7745, + "▁Jacob": 7746, + "▁stood": 7747, + "▁retreat": 7748, + "acent": 7749, + "▁penal": 7750, + "▁falling": 7751, + "▁copy": 7752, + "▁ru": 7753, + "▁Hou": 7754, + "▁Eric": 7755, + "▁Bos": 7756, + "ificial": 7757, + "▁Use": 7758, + "▁struggle": 7759, + "▁reduction": 7760, + "▁”": 7761, + "▁Alan": 7762, + "▁voted": 7763, + "iley": 7764, + "▁enemies": 7765, + "▁prepare": 7766, + "▁Those": 7767, + "ctic": 7768, + "▁description": 7769, + "▁charges": 7770, + "ré": 7771, + "▁premier": 7772, + "▁electronic": 7773, + "▁Bang": 7774, + "war": 7775, + "▁liquid": 7776, + "▁Nes": 7777, + "burn": 7778, + "▁Douglas": 7779, + "▁67": 7780, + "otes": 7781, + "wick": 7782, + "▁Beach": 7783, + "▁Ele": 7784, + "▁Using": 7785, + "▁documents": 7786, + "▁concrete": 7787, + "▁refuge": 7788, + "▁110": 7789, + "▁cul": 7790, + "▁1937": 7791, + "▁Marine": 7792, + "ultane": 7793, + "heastern": 7794, + "indu": 7795, + "▁sons": 7796, + "▁Third": 7797, + "hire": 7798, + "▁Jordan": 7799, + "▁regiment": 7800, + "chen": 7801, + "▁Bab": 7802, + "▁Cart": 7803, + "emed": 7804, + "▁Marie": 7805, + "▁findings": 7806, + "▁parliament": 7807, + "▁repair": 7808, + "▁flowers": 7809, + "olas": 7810, + "▁custom": 7811, + "▁McK": 7812, + "▁pin": 7813, + "iac": 7814, + "▁Master": 7815, + "▁1954": 7816, + "▁believes": 7817, + "▁certified": 7818, + "▁Hor": 7819, + "▁milk": 7820, + "▁manage": 7821, + "▁Matthew": 7822, + "▁Phys": 7823, + "▁Tony": 7824, + "apping": 7825, + "iox": 7826, + "▁incorporated": 7827, + "apse": 7828, + "▁Argent": 7829, + "▁accused": 7830, + "▁facing": 7831, + "iege": 7832, + "▁streets": 7833, + "coming": 7834, + "aks": 7835, + "▁dated": 7836, + "▁Rhodes": 7837, + "racy": 7838, + "▁fict": 7839, + "▁Santa": 7840, + "ints": 7841, + "▁Gab": 7842, + "▁roots": 7843, + "▁CE": 7844, + "esis": 7845, + "▁Lyn": 7846, + "▁foundation": 7847, + "▁98": 7848, + "inding": 7849, + "▁Ho": 7850, + "▁occasionally": 7851, + "ografik": 7852, + "▁Hospital": 7853, + "ture": 7854, + "vens": 7855, + "▁frequent": 7856, + "▁Bh": 7857, + "▁milit": 7858, + "▁remainder": 7859, + "▁landfall": 7860, + "▁winner": 7861, + "▁stead": 7862, + "wich": 7863, + "▁grav": 7864, + "▁sacr": 7865, + "aki": 7866, + "▁tied": 7867, + "▁Food": 7868, + "▁Ford": 7869, + "bro": 7870, + "▁spoke": 7871, + "▁Medical": 7872, + "▁advoc": 7873, + "cho": 7874, + "▁alter": 7875, + "ete": 7876, + "▁reinforce": 7877, + "ivals": 7878, + "▁Gh": 7879, + "bourne": 7880, + "▁Muslim": 7881, + "▁portrayed": 7882, + "6.": 7883, + "▁freeway": 7884, + "▁channel": 7885, + "▁Magazine": 7886, + "▁missions": 7887, + "▁Iraq": 7888, + "▁recalled": 7889, + "▁controversy": 7890, + "itye": 7891, + "ailed": 7892, + "▁Stra": 7893, + "▁Iowa": 7894, + "▁municip": 7895, + "▁electrical": 7896, + "ulum": 7897, + "▁Bou": 7898, + "▁sick": 7899, + "▁soti": 7900, + "alities": 7901, + "▁bom": 7902, + "▁housing": 7903, + "erald": 7904, + "uv": 7905, + "▁Nob": 7906, + "▁monit": 7907, + "▁−": 7908, + "▁suit": 7909, + "roph": 7910, + "▁rooms": 7911, + "▁union": 7912, + "▁interior": 7913, + "▁explan": 7914, + "▁sale": 7915, + "▁denied": 7916, + "▁intense": 7917, + "▁involvement": 7918, + "▁intent": 7919, + "él": 7920, + "▁Bol": 7921, + "▁Songs": 7922, + "▁bon": 7923, + "▁Dog": 7924, + "35": 7925, + "▁Conc": 7926, + "▁classical": 7927, + "▁hip": 7928, + "▁Ut": 7929, + "▁moderate": 7930, + "▁88": 7931, + "▁jewografik": 7932, + "▁Bry": 7933, + "▁pounds": 7934, + "▁sin": 7935, + "▁175": 7936, + "otype": 7937, + "err": 7938, + "psons": 7939, + "▁references": 7940, + "DA": 7941, + "▁Freder": 7942, + "phone": 7943, + "▁explore": 7944, + "▁ash": 7945, + "▁external": 7946, + "exp": 7947, + "▁colony": 7948, + "urches": 7949, + "▁waves": 7950, + "▁frequency": 7951, + "acc": 7952, + "▁Iron": 7953, + "▁adopt": 7954, + "▁Open": 7955, + "▁prol": 7956, + "▁concentration": 7957, + "ogether": 7958, + "▁Simpsons": 7959, + "cont": 7960, + "▁Alab": 7961, + "▁brand": 7962, + "▁opera": 7963, + "uther": 7964, + "▁narrative": 7965, + "▁historians": 7966, + "▁Video": 7967, + "erto": 7968, + "▁Modern": 7969, + "▁spending": 7970, + "▁almanak": 7971, + "▁Rain": 7972, + "▁Nich": 7973, + "▁hotel": 7974, + "▁memorial": 7975, + "▁explo": 7976, + "claimed": 7977, + "▁Ever": 7978, + "▁render": 7979, + "olar": 7980, + "▁noting": 7981, + "▁gene": 7982, + "▁listen": 7983, + "inations": 7984, + "▁continuing": 7985, + "▁prohib": 7986, + "▁visitors": 7987, + "▁Gun": 7988, + "night": 7989, + "▁Micro": 7990, + "▁proteins": 7991, + "▁covers": 7992, + "▁recovered": 7993, + "▁multi": 7994, + "▁knots": 7995, + "▁Theatre": 7996, + "▁Mississ": 7997, + "▁assessment": 7998, + "▁Lim": 7999, + "▁agents": 8000, + "▁uniform": 8001, + "opes": 8002, + "▁samples": 8003, + "▁torn": 8004, + "▁giant": 8005, + "▁certainly": 8006, + "▁Kr": 8007, + "▁Obs": 8008, + "▁Somet": 8009, + "▁Alabama": 8010, + "▁acknowled": 8011, + "onto": 8012, + "▁scheme": 8013, + "▁coordin": 8014, + "▁justice": 8015, + "▁Od": 8016, + "▁Administ": 8017, + "▁FA": 8018, + "▁uncertain": 8019, + "▁MTV": 8020, + "▁cryst": 8021, + "aws": 8022, + "▁prices": 8023, + "▁É": 8024, + "je": 8025, + "olitan": 8026, + "icon": 8027, + "dule": 8028, + "itzer": 8029, + "ersed": 8030, + "tes": 8031, + "▁substantial": 8032, + "▁surrounded": 8033, + "▁wants": 8034, + "▁salt": 8035, + "▁Ult": 8036, + "EN": 8037, + "▁Bowl": 8038, + "▁practical": 8039, + "▁Having": 8040, + "kes": 8041, + "▁gender": 8042, + "▁missed": 8043, + "▁Vis": 8044, + "osm": 8045, + "▁Prior": 8046, + "▁fixed": 8047, + "▁completion": 8048, + "▁1949": 8049, + "▁kingdom": 8050, + "MA": 8051, + "ilit": 8052, + "▁supporters": 8053, + "▁mine": 8054, + "▁muscle": 8055, + "▁tested": 8056, + "ère": 8057, + "▁attracted": 8058, + "▁leta": 8059, + "▁cup": 8060, + "▁ske": 8061, + "igenous": 8062, + "▁component": 8063, + "▁1900": 8064, + "▁judge": 8065, + "▁circuit": 8066, + "▁investment": 8067, + "▁bot": 8068, + "▁topic": 8069, + "▁readers": 8070, + "▁disappoint": 8071, + "▁Native": 8072, + "▁Any": 8073, + "▁eighth": 8074, + "eld": 8075, + "▁94": 8076, + "▁ere": 8077, + "▁poison": 8078, + "▁persons": 8079, + "▁passengers": 8080, + "▁Cook": 8081, + "▁Philip": 8082, + "▁NC": 8083, + "▁Mit": 8084, + "▁diameter": 8085, + "▁relie": 8086, + "▁intellect": 8087, + "▁tub": 8088, + "▁AI": 8089, + "▁willing": 8090, + "▁classification": 8091, + "▁Bah": 8092, + "▁crash": 8093, + "▁rarely": 8094, + "lye": 8095, + "po": 8096, + "▁1935": 8097, + "uma": 8098, + "▁alleged": 8099, + "▁inher": 8100, + "▁Around": 8101, + "▁behaviour": 8102, + "▁rivers": 8103, + "▁pointed": 8104, + "▁Professor": 8105, + "▁89": 8106, + "▁medieval": 8107, + "ker": 8108, + "▁circumstances": 8109, + "aya": 8110, + "▁pron": 8111, + "aza": 8112, + "▁1952": 8113, + "▁entertain": 8114, + "▁Tru": 8115, + "▁percentage": 8116, + "▁Init": 8117, + "zi": 8118, + "▁isolated": 8119, + "▁Netherlands": 8120, + "anth": 8121, + "usal": 8122, + "teenth": 8123, + "8.": 8124, + "▁pretty": 8125, + "▁crops": 8126, + "▁criminal": 8127, + "reck": 8128, + "ori": 8129, + "▁1933": 8130, + "▁inhabit": 8131, + "▁obtain": 8132, + "▁surviv": 8133, + "▁poetry": 8134, + "▁79": 8135, + "▁Raj": 8136, + "pet": 8137, + "estyle": 8138, + "▁vital": 8139, + "▁representing": 8140, + "ocol": 8141, + "apped": 8142, + "▁Tal": 8143, + "▁Norwe": 8144, + "gus": 8145, + "grad": 8146, + "cell": 8147, + "▁controll": 8148, + "▁restored": 8149, + "▁Media": 8150, + "▁Kevin": 8151, + "▁nerv": 8152, + "arr": 8153, + "▁87": 8154, + "▁dollars": 8155, + "▁PA": 8156, + "atever": 8157, + "▁surviving": 8158, + "▁Transport": 8159, + "▁abund": 8160, + "▁Sweden": 8161, + "▁hosted": 8162, + "▁hunting": 8163, + "▁Sin": 8164, + "▁sitye": 8165, + "▁Rights": 8166, + "▁stayed": 8167, + "osaurus": 8168, + "▁plastic": 8169, + "▁Maur": 8170, + "ht": 8171, + "▁Stat": 8172, + "▁rig": 8173, + "▁nutri": 8174, + "ials": 8175, + "▁Mulder": 8176, + "▁comparison": 8177, + "▁difficulties": 8178, + "▁lect": 8179, + "▁smooth": 8180, + "etime": 8181, + "▁resolution": 8182, + "emor": 8183, + "aints": 8184, + "onomic": 8185, + "▁inspiration": 8186, + "▁tot": 8187, + "agle": 8188, + "▁governments": 8189, + "▁Fig": 8190, + "▁82": 8191, + "uty": 8192, + "▁sees": 8193, + "▁curren": 8194, + "▁mobile": 8195, + "iner": 8196, + "▁diabetes": 8197, + "▁weapon": 8198, + "ogle": 8199, + "▁deter": 8200, + "han": 8201, + "▁Dick": 8202, + "▁seeking": 8203, + "▁pup": 8204, + "▁flex": 8205, + "▁Juan": 8206, + "▁elections": 8207, + "▁styles": 8208, + "▁falls": 8209, + "▁nurs": 8210, + "▁preferred": 8211, + "▁driver": 8212, + "▁UTC": 8213, + "▁Allen": 8214, + "iyografi": 8215, + "▁boys": 8216, + "▁Cooper": 8217, + "▁CR": 8218, + "▁Merc": 8219, + "▁composer": 8220, + "▁videos": 8221, + "▁farmers": 8222, + "▁properly": 8223, + "▁bes": 8224, + "▁playoff": 8225, + "▁turb": 8226, + "▁Hand": 8227, + "▁Cult": 8228, + "▁fill": 8229, + "year": 8230, + "▁Ryan": 8231, + "▁unn": 8232, + "▁shots": 8233, + "duction": 8234, + "▁1951": 8235, + "▁Cost": 8236, + "▁plus": 8237, + "endment": 8238, + "▁fur": 8239, + "▁Bruce": 8240, + "▁valid": 8241, + "▁institution": 8242, + "▁Colorado": 8243, + "▁nit": 8244, + "▁Chèf": 8245, + "▁Lanc": 8246, + "CA": 8247, + "▁Channel": 8248, + "▁anniversary": 8249, + "▁Trib": 8250, + "▁Mississipp": 8251, + "▁Stadium": 8252, + "▁Berlin": 8253, + "▁Retrieved": 8254, + "olve": 8255, + "▁lung": 8256, + "▁Dor": 8257, + "▁nomination": 8258, + "▁accurate": 8259, + "▁watching": 8260, + "ng": 8261, + "▁AR": 8262, + "▁Finally": 8263, + "▁asc": 8264, + "senal": 8265, + "▁painted": 8266, + "▁parent": 8267, + "▁apparently": 8268, + "▁Hell": 8269, + "▁false": 8270, + "▁Morgan": 8271, + "▁simultane": 8272, + "▁neighborhood": 8273, + "▁bones": 8274, + "▁Phill": 8275, + "▁brigade": 8276, + "▁Call": 8277, + "▁technologies": 8278, + "▁talking": 8279, + "▁champion": 8280, + "▁wings": 8281, + "▁Fred": 8282, + "▁97": 8283, + "▁aged": 8284, + "▁string": 8285, + "▁Along": 8286, + "▁concepts": 8287, + "▁partnership": 8288, + "▁commanded": 8289, + "veland": 8290, + "▁Greece": 8291, + "▁switch": 8292, + "▁Robinson": 8293, + "nold": 8294, + "▁Guide": 8295, + "▁restric": 8296, + "▁gard": 8297, + "▁asking": 8298, + "\",": 8299, + "agonist": 8300, + "▁divisions": 8301, + "▁Row": 8302, + "▁demonstrated": 8303, + "▁<": 8304, + "▁Toronto": 8305, + "▁tempor": 8306, + "ET": 8307, + "▁Ger": 8308, + "▁NASA": 8309, + "▁Students": 8310, + "▁Nelson": 8311, + "▁medal": 8312, + "-20": 8313, + "▁departure": 8314, + "elsh": 8315, + "▁angle": 8316, + "▁windows": 8317, + "▁clinical": 8318, + "▁fishing": 8319, + "▁reveals": 8320, + "▁demol": 8321, + "▁engage": 8322, + "▁wire": 8323, + "rastructure": 8324, + "elli": 8325, + "▁impress": 8326, + "▁Stanley": 8327, + "▁wooden": 8328, + "▁neutral": 8329, + "▁wasn": 8330, + "▁Kansas": 8331, + "▁Lisa": 8332, + "▁electron": 8333, + "chers": 8334, + "▁adaptation": 8335, + "phoon": 8336, + "▁hoped": 8337, + "▁à": 8338, + "▁doubt": 8339, + "▁Gard": 8340, + "▁Bible": 8341, + "▁tries": 8342, + "▁Samuel": 8343, + "▁personality": 8344, + "▁haz": 8345, + "▁toxic": 8346, + "▁comprehens": 8347, + "▁Publ": 8348, + "▁Aff": 8349, + "▁existed": 8350, + "▁Military": 8351, + "▁Imp": 8352, + "ods": 8353, + "▁potentially": 8354, + "▁Cru": 8355, + "▁aggress": 8356, + "▁fled": 8357, + "▁Vinc": 8358, + "▁orbit": 8359, + "▁collaboration": 8360, + "▁bay": 8361, + "▁IGN": 8362, + "▁convinced": 8363, + "▁votes": 8364, + "▁arts": 8365, + "▁José": 8366, + "▁cultiv": 8367, + "▁Belg": 8368, + "▁earthqu": 8369, + "iere": 8370, + "▁Mach": 8371, + "▁praise": 8372, + "▁Bishop": 8373, + "ST": 8374, + "òd": 8375, + "▁patrol": 8376, + "▁downtown": 8377, + "▁Cleveland": 8378, + "▁Hop": 8379, + "pan": 8380, + "▁sailed": 8381, + "▁unless": 8382, + "▁Norman": 8383, + "▁lowest": 8384, + "▁valuable": 8385, + "▁meets": 8386, + "▁armor": 8387, + "cription": 8388, + "olph": 8389, + "riven": 8390, + "▁approaches": 8391, + "ér": 8392, + "▁delayed": 8393, + "▁Norwegian": 8394, + "▁recover": 8395, + "▁obst": 8396, + "▁subt": 8397, + "▁DE": 8398, + "▁Born": 8399, + "▁controversial": 8400, + "rix": 8401, + "uters": 8402, + "▁Mort": 8403, + "▁particles": 8404, + "sole": 8405, + "▁Andy": 8406, + "▁awareness": 8407, + "▁coff": 8408, + "▁permission": 8409, + "▁Brist": 8410, + "-3": 8411, + "▁preparation": 8412, + "▁Rick": 8413, + "▁gap": 8414, + "▁kit": 8415, + "▁Biyografi": 8416, + "▁orb": 8417, + "▁TH": 8418, + "▁input": 8419, + "▁monarch": 8420, + "▁railroad": 8421, + "It": 8422, + "▁requested": 8423, + "▁strategies": 8424, + "▁Mississippi": 8425, + "▁gat": 8426, + "▁Contin": 8427, + "én": 8428, + "▁disaster": 8429, + "▁agency": 8430, + "▁situations": 8431, + "▁Blood": 8432, + "ishment": 8433, + "▁evil": 8434, + "▁tone": 8435, + "rition": 8436, + "▁alien": 8437, + "▁2020": 8438, + "▁Yank": 8439, + "▁wheel": 8440, + "ifies": 8441, + "▁Front": 8442, + "▁Jam": 8443, + "▁rescue": 8444, + "▁rising": 8445, + "atherine": 8446, + "amps": 8447, + "▁Chron": 8448, + "▁Furthermore": 8449, + "▁toler": 8450, + "▁philosophy": 8451, + "▁Nevertheless": 8452, + "iens": 8453, + "▁drink": 8454, + "▁sharp": 8455, + "▁dominated": 8456, + "▁solutions": 8457, + "xual": 8458, + "osystem": 8459, + "▁assemb": 8460, + "igrants": 8461, + "▁fewer": 8462, + "▁offering": 8463, + "▁fictional": 8464, + "▁84": 8465, + "▁Brun": 8466, + "▁Real": 8467, + "▁oblig": 8468, + "▁abuse": 8469, + "omes": 8470, + "▁rid": 8471, + "▁climb": 8472, + "rans": 8473, + "▁dissip": 8474, + "▁experts": 8475, + "▁accum": 8476, + "▁animated": 8477, + "▁attempting": 8478, + "▁pictures": 8479, + "▁Natural": 8480, + "▁clubs": 8481, + "▁decide": 8482, + "▁HIV": 8483, + "▁tight": 8484, + "▁enthus": 8485, + "▁vessel": 8486, + "▁landscape": 8487, + "▁bran": 8488, + "▁indicates": 8489, + "▁principle": 8490, + "▁dub": 8491, + "alo": 8492, + "achment": 8493, + "▁controls": 8494, + "▁banks": 8495, + "uman": 8496, + "yard": 8497, + "▁survival": 8498, + "▁Morris": 8499, + "▁ben": 8500, + "▁Bor": 8501, + "▁frame": 8502, + "▁flower": 8503, + "AAF": 8504, + "▁err": 8505, + "▁Tar": 8506, + "▁Weekly": 8507, + "▁Ts": 8508, + "▁theatre": 8509, + "▁processing": 8510, + "azing": 8511, + "▁covering": 8512, + "▁offices": 8513, + "▁influences": 8514, + "▁discip": 8515, + "▁targets": 8516, + "▁loyal": 8517, + "▁understood": 8518, + "▁colleagues": 8519, + "▁Bird": 8520, + "▁Energy": 8521, + "▁Welsh": 8522, + "▁Tun": 8523, + "▁satellite": 8524, + "▁Lenn": 8525, + "▁encourage": 8526, + "▁contribute": 8527, + "▁1913": 8528, + "fire": 8529, + "▁Sarah": 8530, + "▁moon": 8531, + "▁representative": 8532, + "▁Ah": 8533, + "▁schedule": 8534, + "▁Lane": 8535, + "-0": 8536, + "rating": 8537, + "▁Guy": 8538, + "▁influential": 8539, + "▁usual": 8540, + "9,": 8541, + "itudes": 8542, + "▁id": 8543, + "wealth": 8544, + "▁finishing": 8545, + "▁93": 8546, + "emet": 8547, + "▁seeds": 8548, + "▁festival": 8549, + "ls": 8550, + "▁Exper": 8551, + "▁predecess": 8552, + "▁prog": 8553, + "▁precip": 8554, + "▁walking": 8555, + "▁(1": 8556, + "▁Studies": 8557, + "▁cutting": 8558, + "▁aboard": 8559, + "hist": 8560, + "▁eleven": 8561, + "▁86": 8562, + "ronze": 8563, + "▁anticip": 8564, + "▁penalty": 8565, + "ibilities": 8566, + "▁tum": 8567, + "▁jur": 8568, + "▁deemed": 8569, + "▁Origin": 8570, + "▁residential": 8571, + "▁conventional": 8572, + "▁×": 8573, + "▁net": 8574, + "▁erect": 8575, + "▁claiming": 8576, + "▁Fa": 8577, + "orph": 8578, + "▁arrangement": 8579, + "▁Sn": 8580, + "gi": 8581, + "▁musicians": 8582, + "aux": 8583, + "▁Palest": 8584, + "▁Tok": 8585, + "▁Much": 8586, + "▁Less": 8587, + "▁marks": 8588, + "▁blocks": 8589, + "oyd": 8590, + "▁Scully": 8591, + "omot": 8592, + "▁Bristol": 8593, + "▁biological": 8594, + "▁Aud": 8595, + "agu": 8596, + "fish": 8597, + "stic": 8598, + "▁mac": 8599, + "▁throne": 8600, + "unc": 8601, + "▁recovery": 8602, + "nest": 8603, + "▁NBA": 8604, + "▁consistent": 8605, + "▁documentary": 8606, + "avery": 8607, + "▁els": 8608, + "▁feeding": 8609, + "▁experiments": 8610, + "ennis": 8611, + "▁truck": 8612, + "▁rit": 8613, + "▁DC": 8614, + "▁marine": 8615, + "▁Pope": 8616, + "▁reception": 8617, + "▁flank": 8618, + "▁papers": 8619, + "▁remn": 8620, + "▁horiz": 8621, + "atinum": 8622, + "▁cavalry": 8623, + "▁remix": 8624, + "lyn": 8625, + "▁executed": 8626, + "▁depicted": 8627, + "▁pushed": 8628, + "▁Rolling": 8629, + "▁terminus": 8630, + "▁Dal": 8631, + "▁elsewhere": 8632, + "▁Winter": 8633, + "zing": 8634, + "▁longest": 8635, + "▁characterized": 8636, + "▁prevented": 8637, + "ocracy": 8638, + "▁abilities": 8639, + "▁satisf": 8640, + "▁valley": 8641, + "▁Story": 8642, + "▁fitted": 8643, + "▁fossil": 8644, + "▁limits": 8645, + "icks": 8646, + "▁shift": 8647, + "▁landed": 8648, + "emetery": 8649, + "▁insects": 8650, + "▁observations": 8651, + "otton": 8652, + "▁Da": 8653, + "▁Mas": 8654, + "▁hem": 8655, + "▁Lam": 8656, + "▁friendly": 8657, + "▁Armen": 8658, + "▁delivery": 8659, + "▁Thompson": 8660, + "▁Corporation": 8661, + "▁sequel": 8662, + "▁links": 8663, + "noon": 8664, + "▁sky": 8665, + "▁prosp": 8666, + "uscript": 8667, + "▁afterwards": 8668, + "▁Ot": 8669, + "▁mit": 8670, + "▁hyper": 8671, + "▁ride": 8672, + "▁objective": 8673, + "▁Technology": 8674, + "▁Brother": 8675, + "▁races": 8676, + "ancer": 8677, + "ographical": 8678, + "▁Bernard": 8679, + "▁reconst": 8680, + "▁Wright": 8681, + "▁agriculture": 8682, + "▁density": 8683, + "▁matters": 8684, + "▁liver": 8685, + "5.": 8686, + "ilst": 8687, + "oly": 8688, + "pòt": 8689, + "▁beach": 8690, + "▁Carter": 8691, + "▁Russell": 8692, + "▁Jacques": 8693, + "▁telling": 8694, + "▁Finn": 8695, + "otyp": 8696, + "▁WWE": 8697, + "▁procedure": 8698, + "▁invent": 8699, + "▁Nesans": 8700, + "24": 8701, + "▁Kal": 8702, + "gas": 8703, + "▁audio": 8704, + "▁Nature": 8705, + "▁Saf": 8706, + "▁cod": 8707, + "▁Spe": 8708, + "ruption": 8709, + "▁Cry": 8710, + "▁flash": 8711, + "anta": 8712, + "▁danger": 8713, + "▁hydrogen": 8714, + "▁belt": 8715, + "▁ratings": 8716, + "▁recip": 8717, + "▁Ark": 8718, + "▁tex": 8719, + "▁prove": 8720, + "▁appearing": 8721, + "▁rum": 8722, + "éd": 8723, + "▁strict": 8724, + "ixon": 8725, + "▁diverse": 8726, + "▁bat": 8727, + "▁partly": 8728, + "li": 8729, + "▁ST": 8730, + "care": 8731, + "▁1934": 8732, + "▁adm": 8733, + "oga": 8734, + "▁Anthony": 8735, + "▁graphics": 8736, + "fare": 8737, + "▁Wat": 8738, + "▁deployed": 8739, + "▁presidential": 8740, + "▁indeed": 8741, + "▁assass": 8742, + "ui": 8743, + "ika": 8744, + "▁Sax": 8745, + "▁wish": 8746, + "▁monument": 8747, + "▁Nar": 8748, + "▁alg": 8749, + "▁disag": 8750, + "ivan": 8751, + "▁compounds": 8752, + "▁basketball": 8753, + "▁Dean": 8754, + "▁decrease": 8755, + "▁outl": 8756, + "ti": 8757, + "▁Puerto": 8758, + "▁pound": 8759, + "tre": 8760, + "▁colors": 8761, + "▁terror": 8762, + "▁happens": 8763, + "▁Police": 8764, + "▁Alexand": 8765, + "▁mountains": 8766, + "▁passenger": 8767, + "▁random": 8768, + "▁scenar": 8769, + "▁Ministry": 8770, + "▁Win": 8771, + "▁sup": 8772, + "▁ages": 8773, + "▁supplement": 8774, + "▁tasks": 8775, + "▁guarant": 8776, + "▁surprise": 8777, + "▁moist": 8778, + "▁advis": 8779, + "▁Mes": 8780, + "▁Death": 8781, + "▁infrastructure": 8782, + "rot": 8783, + "Ch": 8784, + "▁Las": 8785, + "▁aimed": 8786, + "▁coins": 8787, + "adi": 8788, + "▁paintings": 8789, + "▁Harris": 8790, + "▁verse": 8791, + "▁crosses": 8792, + "▁secured": 8793, + "▁airport": 8794, + "▁unlike": 8795, + "▁Read": 8796, + "▁enters": 8797, + "▁Roberts": 8798, + "▁fundamental": 8799, + "26": 8800, + "▁hypothes": 8801, + "jan": 8802, + "▁Control": 8803, + "▁convention": 8804, + "▁sweet": 8805, + "▁Hans": 8806, + "▁fasc": 8807, + "▁recur": 8808, + "▁61": 8809, + "▁1912": 8810, + "eas": 8811, + "▁chest": 8812, + "▁churches": 8813, + "▁violent": 8814, + "▁manufacturing": 8815, + "▁risks": 8816, + "▁Houston": 8817, + "▁AS": 8818, + "▁chorus": 8819, + "umps": 8820, + "▁carrier": 8821, + "▁Look": 8822, + "▁overw": 8823, + "▁suffer": 8824, + "▁Commonwealth": 8825, + "▁accompany": 8826, + "▁mart": 8827, + "▁Beatles": 8828, + "oslav": 8829, + "▁relevant": 8830, + "▁manufactur": 8831, + "▁Kelly": 8832, + "▁markets": 8833, + "▁resource": 8834, + "see": 8835, + "▁empt": 8836, + "▁displayed": 8837, + "lah": 8838, + "ortunately": 8839, + "▁Rab": 8840, + "▁partially": 8841, + "▁bats": 8842, + "▁trouble": 8843, + "▁dismissed": 8844, + "▁romantic": 8845, + "▁USS": 8846, + "▁exists": 8847, + "▁dialogue": 8848, + "▁elder": 8849, + "▁vic": 8850, + "▁Make": 8851, + "▁Hend": 8852, + "▁engineer": 8853, + "▁founder": 8854, + "▁Diego": 8855, + "▁villages": 8856, + "▁demands": 8857, + "▁140": 8858, + "▁putting": 8859, + "▁Fact": 8860, + "▁Building": 8861, + "▁recre": 8862, + "▁Quest": 8863, + "▁minimal": 8864, + "▁sav": 8865, + "lie": 8866, + "▁Horn": 8867, + "▁attacking": 8868, + "▁skill": 8869, + "asp": 8870, + "mad": 8871, + "rin": 8872, + "▁territories": 8873, + "▁coin": 8874, + "▁Byzantine": 8875, + "▁consequences": 8876, + "▁Small": 8877, + "ded": 8878, + "▁wickets": 8879, + "▁artificial": 8880, + "▁Arsenal": 8881, + "espe": 8882, + "▁Son": 8883, + "iks": 8884, + "▁Trust": 8885, + "▁extract": 8886, + "rus": 8887, + "vy": 8888, + "roit": 8889, + "▁Trad": 8890, + "▁liv": 8891, + "▁pip": 8892, + "▁Benj": 8893, + "23": 8894, + "▁crucial": 8895, + "owder": 8896, + "▁efficiency": 8897, + "▁Late": 8898, + "enh": 8899, + "▁ray": 8900, + "▁Design": 8901, + "▁coverage": 8902, + "▁Hindu": 8903, + "▁slaves": 8904, + "▁ongoing": 8905, + "▁1927": 8906, + "▁printed": 8907, + "itals": 8908, + "onies": 8909, + "▁vice": 8910, + "earing": 8911, + "▁stores": 8912, + "▁Set": 8913, + "▁reyalize": 8914, + "tery": 8915, + "▁improvement": 8916, + "▁5.": 8917, + "▁Parker": 8918, + "▁Garden": 8919, + "FC": 8920, + "▁suicide": 8921, + "▁tel": 8922, + "ounced": 8923, + "▁clothing": 8924, + "oen": 8925, + "▁sentence": 8926, + "▁preserved": 8927, + "▁genes": 8928, + "▁dramatic": 8929, + "▁picked": 8930, + "▁profit": 8931, + "▁formerly": 8932, + "▁Dur": 8933, + "▁lists": 8934, + "ocking": 8935, + "▁dies": 8936, + "eor": 8937, + "attered": 8938, + "▁mining": 8939, + "▁Murray": 8940, + ");": 8941, + "▁evolved": 8942, + "inces": 8943, + "▁commemor": 8944, + "ource": 8945, + "name": 8946, + "▁1932": 8947, + "imore": 8948, + "▁Palace": 8949, + "▁anxiety": 8950, + "fit": 8951, + "rav": 8952, + "▁dominant": 8953, + "▁MS": 8954, + "▁syndrome": 8955, + "▁gay": 8956, + "▁interpre": 8957, + "▁afternoon": 8958, + "▁disorders": 8959, + "obile": 8960, + "▁forg": 8961, + "ourage": 8962, + "▁neighb": 8963, + "arth": 8964, + "bb": 8965, + "▁1911": 8966, + "▁Premier": 8967, + "▁aqu": 8968, + "▁Mess": 8969, + "▁therm": 8970, + "aired": 8971, + "▁boil": 8972, + "▁panel": 8973, + "▁Marshall": 8974, + "▁1926": 8975, + "▁considering": 8976, + "▁Cuba": 8977, + "▁pace": 8978, + "▁Anna": 8979, + "▁bombard": 8980, + "▁approval": 8981, + "▁summ": 8982, + "▁encounter": 8983, + "▁encountered": 8984, + "▁Singles": 8985, + "onsin": 8986, + "▁Swedish": 8987, + "▁strip": 8988, + "▁Wy": 8989, + "▁tribes": 8990, + "▁releases": 8991, + "▁Advent": 8992, + "▁tag": 8993, + "oven": 8994, + "▁Psych": 8995, + "▁collapse": 8996, + "▁Area": 8997, + "▁diagnosis": 8998, + "▁intervention": 8999, + "òm": 9000, + "rator": 9001, + "▁cogn": 9002, + "▁battleships": 9003, + "▁adjacent": 9004, + "▁Data": 9005, + "▁quiet": 9006, + "▁announce": 9007, + "▁notably": 9008, + "acle": 9009, + "▁colonies": 9010, + "▁Take": 9011, + "▁Turkish": 9012, + "▁forth": 9013, + "44": 9014, + "▁pap": 9015, + "ibbean": 9016, + "▁Business": 9017, + "▁Ban": 9018, + "agen": 9019, + "▁Pin": 9020, + "▁continu": 9021, + "▁Jess": 9022, + "▁Silver": 9023, + "▁merely": 9024, + "sters": 9025, + "▁vertical": 9026, + "isconsin": 9027, + "▁Lon": 9028, + "otten": 9029, + "▁dimens": 9030, + "▁interaction": 9031, + "eu": 9032, + "▁courses": 9033, + "▁Oliv": 9034, + "yd": 9035, + "▁os": 9036, + "▁Mario": 9037, + "isd": 9038, + "▁firing": 9039, + "bòl": 9040, + "-8": 9041, + "▁Austria": 9042, + "▁Wrest": 9043, + "▁traveled": 9044, + "▁appointment": 9045, + "▁Fame": 9046, + "▁pollution": 9047, + "▁Fem": 9048, + "fficient": 9049, + "ropolitan": 9050, + "▁span": 9051, + "▁removal": 9052, + "acon": 9053, + "▁surge": 9054, + "▁employment": 9055, + "verty": 9056, + "▁Wisconsin": 9057, + "▁ninth": 9058, + "▁legend": 9059, + "▁hat": 9060, + "▁vel": 9061, + "▁Iran": 9062, + "▁Tenness": 9063, + "irèl": 9064, + "▁ratio": 9065, + "▁Clinton": 9066, + "arked": 9067, + "▁Egyptian": 9068, + "▁inflamm": 9069, + "▁circle": 9070, + "▁tekn": 9071, + "▁diversity": 9072, + "▁facts": 9073, + "▁Caribbean": 9074, + "▁Hud": 9075, + "▁submarine": 9076, + "▁transportation": 9077, + "▁rhythm": 9078, + "▁Hungarian": 9079, + "▁underground": 9080, + "ét": 9081, + "▁Ariz": 9082, + "▁classroom": 9083, + "▁specimens": 9084, + "▁manuscript": 9085, + "▁compens": 9086, + "▁debt": 9087, + "away": 9088, + "▁saved": 9089, + "▁fighter": 9090, + "▁ou": 9091, + "▁retirement": 9092, + "▁Buck": 9093, + "▁Lawrence": 9094, + "espeare": 9095, + "▁Connect": 9096, + "anny": 9097, + "utor": 9098, + "▁loan": 9099, + "▁scholar": 9100, + "▁successor": 9101, + "▁infections": 9102, + "nt": 9103, + "▁extend": 9104, + "▁poverty": 9105, + "OC": 9106, + "▁afford": 9107, + "▁vulnerable": 9108, + "eign": 9109, + "▁Croatian": 9110, + "▁AN": 9111, + "▁facilit": 9112, + "▁Apple": 9113, + "▁programming": 9114, + "▁fab": 9115, + "▁push": 9116, + "▁songwrit": 9117, + "▁Expl": 9118, + "▁Nazi": 9119, + "▁ranging": 9120, + "orious": 9121, + "▁dust": 9122, + "▁ecosystem": 9123, + "▁reflected": 9124, + "▁170": 9125, + "▁Management": 9126, + "▁estimates": 9127, + "▁confidence": 9128, + "▁Oak": 9129, + "▁pump": 9130, + "▁restoration": 9131, + "▁1921": 9132, + "▁au": 9133, + "▁convection": 9134, + "▁Christopher": 9135, + "▁blog": 9136, + "▁formally": 9137, + "▁canal": 9138, + "▁Tennessee": 9139, + "iami": 9140, + "▁mainstream": 9141, + "▁Sports": 9142, + "▁Bed": 9143, + "aration": 9144, + "▁journalist": 9145, + "haust": 9146, + "▁spaces": 9147, + "▁waiting": 9148, + "▁novels": 9149, + "forced": 9150, + "▁wider": 9151, + "▁rebell": 9152, + "idelines": 9153, + "▁Community": 9154, + "▁ownership": 9155, + "▁registered": 9156, + "▁bridges": 9157, + "▁alive": 9158, + "▁mechanical": 9159, + "names": 9160, + "▁Cold": 9161, + "hol": 9162, + "▁latest": 9163, + "▁avèk": 9164, + "▁enzy": 9165, + "▁Stock": 9166, + "▁Harv": 9167, + "▁Fern": 9168, + "▁oral": 9169, + "hess": 9170, + "▁marketing": 9171, + "▁contributions": 9172, + "▁wait": 9173, + "▁Categ": 9174, + "▁Report": 9175, + "▁deliber": 9176, + "imeter": 9177, + "▁Franklin": 9178, + "▁premiere": 9179, + "▁Commander": 9180, + "▁Baltimore": 9181, + "▁vs": 9182, + "▁Event": 9183, + "zz": 9184, + "▁MP": 9185, + "▁leaf": 9186, + "▁wins": 9187, + "rupted": 9188, + "amework": 9189, + "▁1931": 9190, + "▁superv": 9191, + "▁Express": 9192, + "▁imprison": 9193, + "▁continuous": 9194, + "▁connections": 9195, + "▁assum": 9196, + "▁Alfred": 9197, + "▁Queens": 9198, + "ando": 9199, + "▁ridge": 9200, + "▁studying": 9201, + "▁Lock": 9202, + "▁chairman": 9203, + "▁Magn": 9204, + "▁collaps": 9205, + "▁Type": 9206, + "▁radical": 9207, + "▁prosec": 9208, + "aft": 9209, + "erb": 9210, + "▁1929": 9211, + "▁maintaining": 9212, + "▁Niel": 9213, + "▁error": 9214, + "▁Writing": 9215, + "▁asks": 9216, + "▁diff": 9217, + "▁Yet": 9218, + "▁handed": 9219, + "▁Benjamin": 9220, + "▁moments": 9221, + "▁900": 9222, + "▁fluid": 9223, + "▁Oklah": 9224, + "▁horm": 9225, + "▁Digital": 9226, + "▁exclud": 9227, + "atty": 9228, + "▁elabor": 9229, + "▁recept": 9230, + "▁occupation": 9231, + "▁lob": 9232, + "▁cruiser": 9233, + "velt": 9234, + "▁unsuccessful": 9235, + "▁concur": 9236, + "▁forecast": 9237, + "▁candidates": 9238, + "▁2019": 9239, + "owed": 9240, + "▁pool": 9241, + "▁divor": 9242, + "idd": 9243, + "▁Jason": 9244, + "▁Rio": 9245, + "▁Bureau": 9246, + "encing": 9247, + "▁immun": 9248, + "▁planets": 9249, + "▁submitted": 9250, + "▁tack": 9251, + "▁1890": 9252, + "▁Arizona": 9253, + "▁Ye": 9254, + "weet": 9255, + "idal": 9256, + "▁storms": 9257, + "▁illegal": 9258, + "▁reactions": 9259, + "▁Near": 9260, + "▁Ga": 9261, + "▁Eff": 9262, + "ficial": 9263, + "▁stronger": 9264, + "▁metab": 9265, + "▁truly": 9266, + "▁households": 9267, + "▁sitting": 9268, + "quir": 9269, + "▁treaty": 9270, + "67": 9271, + "▁manif": 9272, + "▁Miami": 9273, + "▁Eth": 9274, + "▁Next": 9275, + "TS": 9276, + "▁prime": 9277, + "LA": 9278, + "▁interpretation": 9279, + "▁Canal": 9280, + "▁organisms": 9281, + "▁es": 9282, + "itely": 9283, + "▁Person": 9284, + "▁theat": 9285, + "onymous": 9286, + "rip": 9287, + "▁texts": 9288, + "▁fault": 9289, + "▁ton": 9290, + "▁Treaty": 9291, + "▁furn": 9292, + "▁enpòt": 9293, + "obi": 9294, + "▁Hem": 9295, + "▁Oklahoma": 9296, + "▁Television": 9297, + "▁batting": 9298, + "▁Stewart": 9299, + "▁negotiations": 9300, + "▁Vice": 9301, + "▁march": 9302, + "▁engagement": 9303, + "asm": 9304, + "▁Plant": 9305, + "▁propag": 9306, + "▁seats": 9307, + "▁loved": 9308, + "owing": 9309, + "▁portra": 9310, + "▁toll": 9311, + "▁Chamber": 9312, + "▁produces": 9313, + "▁compete": 9314, + "▁animation": 9315, + "▁Shakespeare": 9316, + "osph": 9317, + "▁Spirit": 9318, + "▁defended": 9319, + "rooms": 9320, + "▁handle": 9321, + "▁overwhel": 9322, + "▁mechanism": 9323, + "▁starred": 9324, + "▁Anglo": 9325, + "▁Satur": 9326, + "▁Detroit": 9327, + "▁param": 9328, + "▁Windows": 9329, + "▁83": 9330, + "28": 9331, + "oca": 9332, + "rac": 9333, + "▁naturally": 9334, + "▁opponents": 9335, + "▁Rub": 9336, + "▁Napole": 9337, + "▁frust": 9338, + "▁stored": 9339, + "icop": 9340, + "▁thoughts": 9341, + "▁Face": 9342, + "▁Princess": 9343, + "▁List": 9344, + "▁suggesting": 9345, + "▁hidden": 9346, + "▁Frederick": 9347, + "▁possession": 9348, + "arf": 9349, + "isyon": 9350, + "▁Hamp": 9351, + "▁excav": 9352, + "▁Sky": 9353, + "osevelt": 9354, + "erals": 9355, + "▁Cy": 9356, + "▁sensitive": 9357, + "▁reviewer": 9358, + "ogan": 9359, + "▁Kl": 9360, + "▁Benn": 9361, + "nal": 9362, + "▁slavery": 9363, + "▁kinds": 9364, + "iah": 9365, + "unes": 9366, + "▁forcing": 9367, + "▁Services": 9368, + "▁reaches": 9369, + "▁Malays": 9370, + "▁Melbourne": 9371, + "▁flew": 9372, + "▁centers": 9373, + "▁amongst": 9374, + "sk": 9375, + "rage": 9376, + "▁drivers": 9377, + "▁sinema": 9378, + "▁topics": 9379, + "▁fulf": 9380, + "▁Soon": 9381, + "vironments": 9382, + "▁feels": 9383, + "▁siege": 9384, + "▁improving": 9385, + "LC": 9386, + "▁perceived": 9387, + "▁laboratory": 9388, + "▁Evans": 9389, + "▁Knight": 9390, + "▁nom": 9391, + "▁Country": 9392, + "▁Beck": 9393, + "▁powered": 9394, + "▁Fund": 9395, + "▁descend": 9396, + "▁1922": 9397, + "▁Pakistan": 9398, + "▁bath": 9399, + "▁spir": 9400, + "▁enpòtan": 9401, + "▁natirèl": 9402, + "asts": 9403, + "pha": 9404, + "race": 9405, + "▁Tower": 9406, + "▁Bulgar": 9407, + "▁newspapers": 9408, + "▁tube": 9409, + "▁Seattle": 9410, + "▁McD": 9411, + "▁1928": 9412, + "▁networks": 9413, + "uda": 9414, + "▁adequ": 9415, + "▁gent": 9416, + "▁designer": 9417, + "27": 9418, + "▁Prop": 9419, + "sts": 9420, + "▁FI": 9421, + "▁sequences": 9422, + "▁agencies": 9423, + "▁inhib": 9424, + "▁Yug": 9425, + "▁Holl": 9426, + "▁crack": 9427, + "ensions": 9428, + "izer": 9429, + "asant": 9430, + "▁Medicine": 9431, + "▁weekend": 9432, + "oret": 9433, + "▁Croatia": 9434, + "▁Roosevelt": 9435, + "▁worship": 9436, + "▁worse": 9437, + "▁thereafter": 9438, + "attan": 9439, + "▁blind": 9440, + "▁rocks": 9441, + "▁Pa": 9442, + "▁predomin": 9443, + "▁Gon": 9444, + "▁branches": 9445, + "▁restricted": 9446, + "izatè": 9447, + "▁survivors": 9448, + "ifer": 9449, + "▁Pap": 9450, + "▁millions": 9451, + "▁tie": 9452, + "▁Syn": 9453, + "▁Comb": 9454, + "▁joining": 9455, + "▁affairs": 9456, + "orms": 9457, + "▁copper": 9458, + "▁femin": 9459, + "▁garrison": 9460, + "▁Administration": 9461, + "▁Initially": 9462, + "▁predicted": 9463, + "▁Gram": 9464, + "▁sad": 9465, + "▁eliminated": 9466, + "▁Represent": 9467, + "▁Meth": 9468, + "▁bases": 9469, + "▁premiered": 9470, + "▁Charlie": 9471, + "▁desert": 9472, + "angle": 9473, + "▁Hind": 9474, + "▁poorly": 9475, + "▁presentation": 9476, + "▁inhabitants": 9477, + "▁1925": 9478, + "▁reportedly": 9479, + "▁participation": 9480, + "aro": 9481, + "▁polar": 9482, + "▁seriously": 9483, + "▁2,": 9484, + "▁Sign": 9485, + "▁imperial": 9486, + "▁mature": 9487, + "▁Mond": 9488, + "▁impressed": 9489, + "▁NFL": 9490, + "▁Camer": 9491, + "▁emperor": 9492, + "▁Inn": 9493, + "cient": 9494, + "▁conven": 9495, + "▁Information": 9496, + "▁Raw": 9497, + "▁radar": 9498, + "seri": 9499, + "▁operational": 9500, + "▁Hong": 9501, + "▁Gilbert": 9502, + "▁relation": 9503, + "▁pregnancy": 9504, + "▁transmission": 9505, + "▁indu": 9506, + "otal": 9507, + "▁muscles": 9508, + "▁burning": 9509, + "▁exhaust": 9510, + "▁Dak": 9511, + "▁chrom": 9512, + "▁experimental": 9513, + "▁fairly": 9514, + "▁Anim": 9515, + "▁celeb": 9516, + "▁smart": 9517, + "▁skull": 9518, + "▁emphasis": 9519, + "▁abol": 9520, + "▁Mother": 9521, + "ubb": 9522, + "▁Mrs": 9523, + "▁alleg": 9524, + "▁Simpson": 9525, + "▁resigned": 9526, + "▁Tan": 9527, + "▁Liter": 9528, + "▁knows": 9529, + "▁situated": 9530, + "▁occasions": 9531, + "lain": 9532, + "ullivan": 9533, + "▁Mun": 9534, + "▁lessons": 9535, + "▁improvements": 9536, + "▁argues": 9537, + "▁NBC": 9538, + "▁boost": 9539, + "▁publicly": 9540, + "▁taste": 9541, + "ico": 9542, + "▁reveal": 9543, + "▁hole": 9544, + "▁(199": 9545, + "▁anth": 9546, + "▁Category": 9547, + "▁customers": 9548, + "▁revenue": 9549, + "▁recognize": 9550, + "▁pros": 9551, + "▁Crown": 9552, + "▁smoke": 9553, + "▁regulations": 9554, + "▁Philippines": 9555, + "▁cyl": 9556, + "▁Friend": 9557, + "▁Ll": 9558, + "▁Warner": 9559, + "▁environments": 9560, + "▁succeed": 9561, + "mates": 9562, + "father": 9563, + "▁Australians": 9564, + "▁1924": 9565, + "zed": 9566, + "▁instruction": 9567, + "▁judg": 9568, + "istent": 9569, + "▁pione": 9570, + "▁raising": 9571, + "▁molecules": 9572, + "anne": 9573, + "rolled": 9574, + "▁Somers": 9575, + "▁Yugoslav": 9576, + "▁Belgium": 9577, + "▁behalf": 9578, + "▁maps": 9579, + "▁exceed": 9580, + "▁dischar": 9581, + "▁dynasty": 9582, + "▁resign": 9583, + "▁Security": 9584, + "▁retail": 9585, + "▁footage": 9586, + "▁slave": 9587, + "▁enhance": 9588, + "▁locomot": 9589, + "▁procedures": 9590, + "▁exhibition": 9591, + "▁Rap": 9592, + "▁phrase": 9593, + "▁categories": 9594, + "▁uncom": 9595, + "▁Father": 9596, + "▁Moh": 9597, + "▁mood": 9598, + "▁Fried": 9599, + "▁Fal": 9600, + "▁Wolf": 9601, + "▁plain": 9602, + "gans": 9603, + "imen": 9604, + "chell": 9605, + "▁reward": 9606, + "▁konte": 9607, + "▁Batman": 9608, + "▁theories": 9609, + "▁doctors": 9610, + "▁realized": 9611, + "▁proportion": 9612, + "▁Sem": 9613, + "▁pregnant": 9614, + "▁lad": 9615, + "▁comprom": 9616, + "yright": 9617, + "▁AM": 9618, + "▁Ess": 9619, + "▁administrative": 9620, + "olid": 9621, + "▁boundary": 9622, + "ilty": 9623, + "▁physics": 9624, + "▁attitude": 9625, + "acks": 9626, + "avor": 9627, + "rez": 9628, + "▁inject": 9629, + "▁Farm": 9630, + "▁Franç": 9631, + "car": 9632, + "▁acted": 9633, + "▁overt": 9634, + "▁supports": 9635, + "▁loop": 9636, + "▁scr": 9637, + "▁celebrated": 9638, + "odox": 9639, + "aver": 9640, + "▁optim": 9641, + "▁prompted": 9642, + "▁fra": 9643, + "▁profile": 9644, + "▁Horse": 9645, + "ocation": 9646, + "hr": 9647, + "▁simultaneously": 9648, + "▁Forces": 9649, + "▁meetings": 9650, + "▁poems": 9651, + "otte": 9652, + "onds": 9653, + "▁marry": 9654, + "▁depends": 9655, + "▁substance": 9656, + "▁vegetables": 9657, + "▁forty": 9658, + "▁contribution": 9659, + "▁beauty": 9660, + "▁please": 9661, + "▁subsid": 9662, + "incial": 9663, + "▁trend": 9664, + "▁Dead": 9665, + "▁anch": 9666, + "▁underw": 9667, + "SP": 9668, + "▁Ice": 9669, + "▁monitoring": 9670, + "itarian": 9671, + "▁Stevens": 9672, + "borough": 9673, + "▁labour": 9674, + "▁dispute": 9675, + "▁athletes": 9676, + "▁tunnel": 9677, + "occ": 9678, + "▁curric": 9679, + "aron": 9680, + "avel": 9681, + "▁bypass": 9682, + "ocy": 9683, + "▁Si": 9684, + "▁machines": 9685, + "▁artistic": 9686, + "▁shorter": 9687, + "▁bid": 9688, + "eness": 9689, + "▁Lith": 9690, + "▁infected": 9691, + "”,": 9692, + "▁Buff": 9693, + "▁enforce": 9694, + "▁1923": 9695, + "▁RAAF": 9696, + "▁fallen": 9697, + "▁Peninsula": 9698, + "▁Manh": 9699, + "▁arrive": 9700, + "rox": 9701, + "▁lie": 9702, + "▁grey": 9703, + "▁Heavy": 9704, + "▁Start": 9705, + "▁conversion": 9706, + "bird": 9707, + "▁Agency": 9708, + "ova": 9709, + "▁legit": 9710, + "▁visiting": 9711, + "▁chemicals": 9712, + "▁shear": 9713, + "▁translation": 9714, + "▁AP": 9715, + "▁Bull": 9716, + "▁manip": 9717, + "▁Khan": 9718, + "▁RAF": 9719, + "▁junior": 9720, + "▁flows": 9721, + "▁bare": 9722, + "▁stuff": 9723, + "▁sharing": 9724, + "▁departed": 9725, + "▁Ku": 9726, + "▁implemented": 9727, + "▁Without": 9728, + "▁residence": 9729, + "▁essentially": 9730, + "rary": 9731, + "ghan": 9732, + "▁shield": 9733, + "▁feud": 9734, + "▁impacts": 9735, + "▁distinguished": 9736, + "soft": 9737, + "▁1908": 9738, + "heric": 9739, + "▁decay": 9740, + "▁significance": 9741, + "▁treatments": 9742, + "▁hybr": 9743, + "▁(3": 9744, + "gs": 9745, + "▁creator": 9746, + "▁gro": 9747, + "▁tip": 9748, + "èzbòl": 9749, + "▁bèzbòl": 9750, + "▁resid": 9751, + "▁insurance": 9752, + "izòd": 9753, + "▁vitamin": 9754, + "▁Friday": 9755, + "uits": 9756, + "▁Alice": 9757, + "anium": 9758, + "▁pulled": 9759, + "▁wedding": 9760, + "utt": 9761, + "▁Hills": 9762, + "▁fifty": 9763, + "▁Chem": 9764, + "illo": 9765, + "▁beliefs": 9766, + "▁Vincent": 9767, + "pled": 9768, + "▁Louisiana": 9769, + "essed": 9770, + "▁Dave": 9771, + "▁layers": 9772, + "omed": 9773, + "▁closing": 9774, + "▁travelled": 9775, + "▁Ru": 9776, + "sequently": 9777, + "▁lanm": 9778, + "▁lights": 9779, + "ashes": 9780, + "ulty": 9781, + "▁bulk": 9782, + "Sp": 9783, + "low": 9784, + "alysis": 9785, + "▁parish": 9786, + "▁cards": 9787, + "▁af": 9788, + "ourag": 9789, + "▁variable": 9790, + "▁Kings": 9791, + "▁origins": 9792, + "imm": 9793, + "▁Nielsen": 9794, + "▁1880": 9795, + "▁mines": 9796, + "▁twin": 9797, + "▁Industry": 9798, + "▁duration": 9799, + "▁severely": 9800, + "▁replacing": 9801, + "▁Claude": 9802, + "▁racial": 9803, + "▁distinctive": 9804, + "LL": 9805, + "▁VI": 9806, + "▁shells": 9807, + "▁gathered": 9808, + "iph": 9809, + "▁withdrew": 9810, + "estone": 9811, + "▁tu": 9812, + "▁proof": 9813, + "▁lòt": 9814, + "▁aggreg": 9815, + "plete": 9816, + "norm": 9817, + "▁Cole": 9818, + "▁Shel": 9819, + "▁assisted": 9820, + "▁intercept": 9821, + "acles": 9822, + "▁Walker": 9823, + "▁instrumental": 9824, + "OM": 9825, + "sex": 9826, + "▁rac": 9827, + "▁minim": 9828, + "▁mos": 9829, + "▁restaurant": 9830, + "▁Saturday": 9831, + "▁reun": 9832, + "▁Christians": 9833, + "▁retain": 9834, + "▁vaccine": 9835, + "rost": 9836, + "die": 9837, + "▁08": 9838, + "▁investigate": 9839, + "namese": 9840, + "▁accessible": 9841, + "dale": 9842, + "▁arriving": 9843, + "▁dealing": 9844, + "▁Environmental": 9845, + "▁Margaret": 9846, + "▁generate": 9847, + "▁equally": 9848, + "▁structural": 9849, + "eur": 9850, + "▁Isa": 9851, + "▁clar": 9852, + "ín": 9853, + "▁inaug": 9854, + "▁email": 9855, + "▁pilots": 9856, + "▁convoy": 9857, + "▁Historic": 9858, + "This": 9859, + "▁kings": 9860, + "▁magnetic": 9861, + "▁whatever": 9862, + "▁Christianity": 9863, + "▁hull": 9864, + "▁creates": 9865, + "▁plis": 9866, + "▁tort": 9867, + "▁provision": 9868, + "▁recall": 9869, + "▁examination": 9870, + "▁establishing": 9871, + "▁tenth": 9872, + "▁ranking": 9873, + "▁176": 9874, + "▁Somerset": 9875, + "▁Construction": 9876, + "▁Vietnamese": 9877, + "▁Harvard": 9878, + "▁assembly": 9879, + "▁strategic": 9880, + "▁1909": 9881, + "atisyen": 9882, + "onder": 9883, + "▁stom": 9884, + "▁(18": 9885, + "▁Dest": 9886, + "▁exit": 9887, + "▁drain": 9888, + "▁wine": 9889, + "▁condem": 9890, + "inea": 9891, + "▁71": 9892, + "▁upgraded": 9893, + "eria": 9894, + "▁helicop": 9895, + "▁factory": 9896, + "▁datab": 9897, + "▁annually": 9898, + "▁characteristic": 9899, + "▁clock": 9900, + "▁margin": 9901, + "ricts": 9902, + "▁raid": 9903, + "bes": 9904, + "▁Nik": 9905, + "iary": 9906, + "rose": 9907, + "▁admin": 9908, + "200": 9909, + "▁Have": 9910, + "▁Senator": 9911, + "▁raw": 9912, + "▁Similarly": 9913, + "▁Wing": 9914, + "▁completing": 9915, + "▁recognised": 9916, + "▁honour": 9917, + "inian": 9918, + "▁battleship": 9919, + "▁fighters": 9920, + "▁partial": 9921, + "▁Peace": 9922, + "▁Snow": 9923, + "▁glac": 9924, + "▁Obama": 9925, + "▁Princip": 9926, + "▁Ou": 9927, + "▁Campbell": 9928, + "▁suspended": 9929, + "▁gate": 9930, + "▁1870": 9931, + "▁tribute": 9932, + "▁une": 9933, + "▁aren": 9934, + "▁aggressive": 9935, + "usic": 9936, + "eland": 9937, + "▁victim": 9938, + "▁sket": 9939, + "▁complicated": 9940, + "idae": 9941, + "▁reverse": 9942, + "▁traditions": 9943, + "ensed": 9944, + "▁penet": 9945, + "▁compound": 9946, + "▁constantly": 9947, + "▁designation": 9948, + "▁Did": 9949, + "▁Gene": 9950, + "▁neu": 9951, + "▁encl": 9952, + "mn": 9953, + "▁conservative": 9954, + "4,": 9955, + "▁Gaga": 9956, + "▁Zh": 9957, + "▁Global": 9958, + "▁industries": 9959, + "▁cub": 9960, + "▁devast": 9961, + "DS": 9962, + "▁chamber": 9963, + "▁reviewers": 9964, + "▁challenging": 9965, + "▁fifteen": 9966, + "▁Guardian": 9967, + "▁06": 9968, + "▁Equ": 9969, + "berry": 9970, + "istèm": 9971, + "▁cargo": 9972, + "▁Persian": 9973, + "▁fract": 9974, + "▁convey": 9975, + "▁abst": 9976, + "cribed": 9977, + "▁emotions": 9978, + "▁internet": 9979, + "oons": 9980, + "▁representation": 9981, + "odore": 9982, + "▁Prim": 9983, + "▁Xbox": 9984, + "38": 9985, + "eli": 9986, + "▁signals": 9987, + "▁temporarily": 9988, + "▁regime": 9989, + "gro": 9990, + "▁Works": 9991, + "▁dollar": 9992, + "▁explosion": 9993, + "▁Hero": 9994, + "▁Still": 9995, + "▁usage": 9996, + "▁recordings": 9997, + "oa": 9998, + "▁Dom": 9999, + "▁Chen": 10000, + "▁rice": 10001, + "▁weigh": 10002, + "▁communications": 10003, + "▁Sciences": 10004, + "▁variation": 10005, + "▁instructions": 10006, + "▁Section": 10007, + "eing": 10008, + "angers": 10009, + "▁cous": 10010, + "▁coinc": 10011, + "▁pursue": 10012, + "mate": 10013, + "▁sustainable": 10014, + "▁1905": 10015, + "▁diver": 10016, + "ulous": 10017, + "▁statue": 10018, + "▁Hungary": 10019, + "▁cruisers": 10020, + "▁photographs": 10021, + "icut": 10022, + "oples": 10023, + "▁alignment": 10024, + "▁paras": 10025, + "▁repeatedly": 10026, + "▁rej": 10027, + "▁Ward": 10028, + "▁universal": 10029, + "sea": 10030, + "▁pitched": 10031, + "part": 10032, + "irty": 10033, + "▁Catherine": 10034, + "▁Manhattan": 10035, + "48": 10036, + "▁Convention": 10037, + "▁entertainment": 10038, + "ige": 10039, + "▁dim": 10040, + "ikely": 10041, + "▁digest": 10042, + "▁dependent": 10043, + "eping": 10044, + "▁reader": 10045, + "▁taxes": 10046, + "▁observation": 10047, + "▁comprehensive": 10048, + "sa": 10049, + "▁zero": 10050, + "▁cultures": 10051, + "▁Lennon": 10052, + "▁settlers": 10053, + "▁computers": 10054, + "orer": 10055, + "odge": 10056, + "▁click": 10057, + "▁photos": 10058, + "▁thorough": 10059, + "▁Bert": 10060, + "▁81": 10061, + "▁export": 10062, + "▁indicating": 10063, + "uating": 10064, + "▁Steven": 10065, + "▁Spears": 10066, + "▁Perform": 10067, + "di": 10068, + "▁stones": 10069, + "▁Depression": 10070, + "▁choices": 10071, + "▁Ian": 10072, + "▁altered": 10073, + "lè": 10074, + "▁flights": 10075, + "▁rounds": 10076, + "okes": 10077, + "▁tor": 10078, + "▁conversation": 10079, + "▁hab": 10080, + "icious": 10081, + "▁lesson": 10082, + "▁involve": 10083, + "▁stere": 10084, + "▁brings": 10085, + "ateur": 10086, + "onnaissance": 10087, + "▁Switzer": 10088, + "▁myst": 10089, + "▁affects": 10090, + "▁Lad": 10091, + "ylan": 10092, + "▁platinum": 10093, + "▁explanation": 10094, + "eton": 10095, + "zech": 10096, + "alions": 10097, + "▁Cov": 10098, + "▁memor": 10099, + "▁Banks": 10100, + "▁nose": 10101, + "▁Township": 10102, + "▁audiences": 10103, + "▁feather": 10104, + "▁Fel": 10105, + "▁shipping": 10106, + "tha": 10107, + "anted": 10108, + "inated": 10109, + "▁Beh": 10110, + "▁spoken": 10111, + "▁1907": 10112, + "▁whilst": 10113, + "▁clothes": 10114, + "▁Pil": 10115, + "▁mild": 10116, + "▁faces": 10117, + "ources": 10118, + "▁galax": 10119, + "▁09": 10120, + "▁Recording": 10121, + "▁cattle": 10122, + "icing": 10123, + "▁ingred": 10124, + "▁criticised": 10125, + "▁concerts": 10126, + "▁Ref": 10127, + "▁favorable": 10128, + "▁framework": 10129, + "▁105": 10130, + "▁sod": 10131, + "▁ranges": 10132, + "▁Cob": 10133, + "▁fold": 10134, + "▁lighting": 10135, + "ulates": 10136, + "ocratic": 10137, + "▁ruling": 10138, + "munition": 10139, + "agh": 10140, + "▁Hotel": 10141, + "▁liked": 10142, + "pent": 10143, + "▁Hab": 10144, + "▁identical": 10145, + "-5": 10146, + "▁visits": 10147, + "▁Tit": 10148, + "▁Mack": 10149, + "▁Dance": 10150, + "itively": 10151, + "▁noise": 10152, + "▁gang": 10153, + "▁Lucas": 10154, + "▁Prom": 10155, + "▁125": 10156, + "▁Islamic": 10157, + "▁Learning": 10158, + "tario": 10159, + "▁sistèm": 10160, + "▁explicit": 10161, + "▁fruits": 10162, + "▁bearing": 10163, + "▁lifestyle": 10164, + "inals": 10165, + "▁decreased": 10166, + "▁carefully": 10167, + "▁91": 10168, + "▁addressed": 10169, + "mund": 10170, + "▁signing": 10171, + "▁Switzerland": 10172, + "▁kidney": 10173, + "▁Josh": 10174, + "▁Nag": 10175, + "▁counties": 10176, + "▁remote": 10177, + "olves": 10178, + "▁Record": 10179, + "▁protagonist": 10180, + "▁Emer": 10181, + "▁concerning": 10182, + "36": 10183, + "rently": 10184, + "▁Heb": 10185, + "▁filed": 10186, + "▁Return": 10187, + "▁enable": 10188, + "▁sending": 10189, + "▁striking": 10190, + "bow": 10191, + "▁psychological": 10192, + "▁Jonathan": 10193, + "▁exercises": 10194, + "▁organisation": 10195, + "iffer": 10196, + "▁escaped": 10197, + "▁destroyers": 10198, + "▁cir": 10199, + "▁unw": 10200, + "▁Portland": 10201, + "aping": 10202, + "▁turrets": 10203, + "ulus": 10204, + "▁Carlos": 10205, + "▁statements": 10206, + "▁dict": 10207, + "▁tab": 10208, + "▁horn": 10209, + "29": 10210, + "▁10.": 10211, + "▁repairs": 10212, + "▁heritage": 10213, + "TA": 10214, + "▁trick": 10215, + "▁soph": 10216, + "▁Warren": 10217, + "▁Ontario": 10218, + "▁reluct": 10219, + "▁Confederate": 10220, + "din": 10221, + "igger": 10222, + "▁Dylan": 10223, + "▁Darwin": 10224, + "▁caps": 10225, + "▁coat": 10226, + "isk": 10227, + "▁focuses": 10228, + "▁Czech": 10229, + "▁trading": 10230, + "▁matematik": 10231, + "olly": 10232, + "usalem": 10233, + "andal": 10234, + "▁weekly": 10235, + "▁μ": 10236, + "▁tips": 10237, + "-1": 10238, + "▁ninet": 10239, + "asive": 10240, + "▁conj": 10241, + "mo": 10242, + "▁Kurt": 10243, + "▁credits": 10244, + "▁attendance": 10245, + "▁Fab": 10246, + "▁deterior": 10247, + "▁sheet": 10248, + "▁Albums": 10249, + "▁varied": 10250, + "▁Montreal": 10251, + "▁passion": 10252, + "▁Gabri": 10253, + "▁shares": 10254, + "▁Nash": 10255, + "▁junction": 10256, + "ienn": 10257, + "yself": 10258, + "▁originated": 10259, + "amine": 10260, + "▁Antonio": 10261, + "▁evident": 10262, + "▁placing": 10263, + "PR": 10264, + "▁necessarily": 10265, + "cycl": 10266, + "▁routine": 10267, + "dess": 10268, + "illes": 10269, + "▁beam": 10270, + "▁graduate": 10271, + "ugby": 10272, + "▁portions": 10273, + "▁bombers": 10274, + "ieth": 10275, + "▁Trek": 10276, + "▁developers": 10277, + "▁Chand": 10278, + "▁Jup": 10279, + "comes": 10280, + "▁ranks": 10281, + "▁earthquake": 10282, + "▁Phoen": 10283, + "▁citing": 10284, + "▁formula": 10285, + "▁estimate": 10286, + "▁Ins": 10287, + "▁USD": 10288, + "▁Giants": 10289, + "▁deeply": 10290, + "▁promised": 10291, + "▁ammunition": 10292, + "ele": 10293, + "▁pand": 10294, + "▁Afghan": 10295, + "iatric": 10296, + "▁artwork": 10297, + "▁fib": 10298, + "▁connecting": 10299, + "▁restore": 10300, + "▁Seven": 10301, + "▁personally": 10302, + "▁similarly": 10303, + "▁empire": 10304, + "▁victories": 10305, + "orge": 10306, + "▁cash": 10307, + "▁rect": 10308, + "▁Cher": 10309, + "heimer": 10310, + "EM": 10311, + "▁scores": 10312, + "▁qualified": 10313, + "rams": 10314, + "▁Cyr": 10315, + "▁Fat": 10316, + "▁finals": 10317, + "▁Support": 10318, + "▁wore": 10319, + "▁butter": 10320, + "▁Mult": 10321, + "▁Heritage": 10322, + "▁outcome": 10323, + "▁accord": 10324, + "▁cra": 10325, + "▁canc": 10326, + "▁cook": 10327, + "▁Based": 10328, + "▁360": 10329, + "▁intellectual": 10330, + "▁Gran": 10331, + "▁infer": 10332, + "▁serial": 10333, + "▁emotion": 10334, + "▁resumed": 10335, + "ums": 10336, + "▁indigenous": 10337, + "cha": 10338, + "▁hockey": 10339, + "▁finale": 10340, + "▁thanks": 10341, + "▁badly": 10342, + "akh": 10343, + "▁inland": 10344, + "▁1906": 10345, + "▁hook": 10346, + "▁execution": 10347, + "▁Tag": 10348, + "▁Prize": 10349, + "▁hence": 10350, + "▁Flight": 10351, + "An": 10352, + "▁ML": 10353, + "▁minority": 10354, + "uez": 10355, + "▁puzz": 10356, + "▁Mountains": 10357, + "▁AT": 10358, + "▁tubes": 10359, + "▁Mitchell": 10360, + "ania": 10361, + "▁Kap": 10362, + "▁jurisd": 10363, + "▁Andre": 10364, + "▁sunk": 10365, + "▁Luis": 10366, + "▁fastest": 10367, + "▁Alaska": 10368, + "▁Graham": 10369, + "appy": 10370, + "sky": 10371, + "▁opponent": 10372, + "▁solve": 10373, + "▁unlikely": 10374, + "erk": 10375, + "▁Sud": 10376, + "onnen": 10377, + "▁competitive": 10378, + "▁Connecticut": 10379, + "▁concentrated": 10380, + "aire": 10381, + "▁palace": 10382, + "▁McL": 10383, + "aughters": 10384, + "▁Bes": 10385, + "angel": 10386, + "▁Jerusalem": 10387, + "▁magnitude": 10388, + "▁liberal": 10389, + "▁Na": 10390, + "▁merchant": 10391, + "▁Sullivan": 10392, + "▁representatives": 10393, + "▁Territ": 10394, + "uese": 10395, + "▁intensified": 10396, + "bu": 10397, + "▁Labour": 10398, + "▁thereby": 10399, + "▁Neb": 10400, + "▁Angle": 10401, + "ensively": 10402, + "▁Byografi": 10403, + "ski": 10404, + "▁Agricult": 10405, + "▁Code": 10406, + "▁Fif": 10407, + "▁allies": 10408, + "▁wealthy": 10409, + "▁integrated": 10410, + "▁alliance": 10411, + "▁partners": 10412, + "▁permitted": 10413, + "▁stomach": 10414, + "ifice": 10415, + "▁civilian": 10416, + "▁Independent": 10417, + "▁occurring": 10418, + "▁Math": 10419, + "▁batteries": 10420, + "ican": 10421, + "▁Books": 10422, + "▁camps": 10423, + "ouses": 10424, + "atus": 10425, + "▁monitor": 10426, + "▁electro": 10427, + "▁preventing": 10428, + "iology": 10429, + "▁avo": 10430, + "▁messages": 10431, + "onnes": 10432, + "▁pairs": 10433, + "▁threats": 10434, + "▁stroke": 10435, + "▁gray": 10436, + "▁Denmark": 10437, + "▁presents": 10438, + "▁districts": 10439, + "▁Ald": 10440, + "▁decides": 10441, + "▁volumes": 10442, + "▁grows": 10443, + "▁sisters": 10444, + "▁veloc": 10445, + "▁shoulder": 10446, + "▁empty": 10447, + "▁funeral": 10448, + "▁Bros": 10449, + "▁Kit": 10450, + "▁lying": 10451, + "▁urg": 10452, + "▁config": 10453, + "▁drove": 10454, + "▁meter": 10455, + "ucks": 10456, + "▁Cass": 10457, + "▁guilty": 10458, + "acre": 10459, + "RI": 10460, + "▁diagnosed": 10461, + "▁Adv": 10462, + "▁mixture": 10463, + "vereign": 10464, + "▁Protest": 10465, + "▁Dise": 10466, + "▁publications": 10467, + "▁Griff": 10468, + "▁mini": 10469, + "▁bronze": 10470, + "▁burned": 10471, + "▁Dw": 10472, + "▁Article": 10473, + "▁Microsoft": 10474, + "▁lifetime": 10475, + "▁ABC": 10476, + "▁bull": 10477, + "aman": 10478, + "▁generations": 10479, + "▁tornado": 10480, + "▁elevation": 10481, + "▁stability": 10482, + "▁6.": 10483, + "▁outd": 10484, + "▁Ni": 10485, + "▁translated": 10486, + "▁initiated": 10487, + "kh": 10488, + "▁Roc": 10489, + "▁chick": 10490, + "▁Originally": 10491, + "▁epid": 10492, + "▁platforms": 10493, + "▁é": 10494, + "▁Ton": 10495, + "▁Jupiter": 10496, + "▁spotted": 10497, + "▁preparing": 10498, + "▁engineers": 10499, + "▁Eventually": 10500, + "▁Vik": 10501, + "agger": 10502, + "▁Baby": 10503, + "▁math": 10504, + "▁wreck": 10505, + "▁photo": 10506, + "▁Rest": 10507, + "▁boundaries": 10508, + "▁Ara": 10509, + "terior": 10510, + "▁brill": 10511, + "▁reviewed": 10512, + "▁sovereign": 10513, + "▁escort": 10514, + "ello": 10515, + "▁Cow": 10516, + "▁swimming": 10517, + "▁assists": 10518, + "▁confirm": 10519, + "how": 10520, + "▁patron": 10521, + "▁molecular": 10522, + "▁Patt": 10523, + "▁enorm": 10524, + "▁tiny": 10525, + "▁underlying": 10526, + "aze": 10527, + "▁Portuguese": 10528, + "▁earning": 10529, + "▁nutrients": 10530, + "▁brick": 10531, + "10.": 10532, + "oom": 10533, + "ulin": 10534, + "▁92": 10535, + "roscop": 10536, + "mented": 10537, + "▁Rachel": 10538, + "▁Living": 10539, + "▁soldier": 10540, + "▁EU": 10541, + "▁epizòd": 10542, + "▁beneath": 10543, + "▁rebuilt": 10544, + "▁Dyn": 10545, + "▁sank": 10546, + "fr": 10547, + "▁Ridge": 10548, + "▁closest": 10549, + "▁NO": 10550, + "▁Gonz": 10551, + "....": 10552, + "▁coffee": 10553, + "▁lem": 10554, + "▁Isab": 10555, + "▁advertising": 10556, + "▁wal": 10557, + "▁05": 10558, + "▁Lib": 10559, + "▁jazz": 10560, + "▁interactions": 10561, + "▁Wilhel": 10562, + "mi": 10563, + "▁Rand": 10564, + "▁holes": 10565, + "▁ow": 10566, + "hard": 10567, + "▁Mand": 10568, + "▁tension": 10569, + "gate": 10570, + "▁Len": 10571, + "▁cats": 10572, + "▁Billy": 10573, + "AM": 10574, + "iture": 10575, + "▁edited": 10576, + "▁competed": 10577, + "▁Opp": 10578, + "▁Constant": 10579, + "▁carriers": 10580, + "▁rib": 10581, + "▁Maj": 10582, + "3,": 10583, + "orith": 10584, + "▁confident": 10585, + "▁precipitation": 10586, + "▁examined": 10587, + "opp": 10588, + "▁Jefferson": 10589, + "▁promise": 10590, + "▁erupt": 10591, + "anche": 10592, + "ometric": 10593, + "▁supplied": 10594, + "▁curriculum": 10595, + "iki": 10596, + "▁demanded": 10597, + "▁merc": 10598, + "▁demonstrate": 10599, + "tra": 10600, + "igs": 10601, + "imp": 10602, + "ridge": 10603, + "▁defeating": 10604, + "▁functional": 10605, + "emen": 10606, + "▁Amy": 10607, + "▁earn": 10608, + "▁shock": 10609, + "▁Karl": 10610, + "▁index": 10611, + "▁distant": 10612, + "CS": 10613, + "▁Mong": 10614, + "▁Lithuan": 10615, + "▁suspect": 10616, + "▁campaigns": 10617, + "▁directors": 10618, + "▁Lov": 10619, + "▁Sid": 10620, + "shore": 10621, + "▁Dragon": 10622, + "▁ordinary": 10623, + "oned": 10624, + "▁alternate": 10625, + "sor": 10626, + "▁lacked": 10627, + "▁Esc": 10628, + "▁Pedro": 10629, + "▁nervous": 10630, + "▁worn": 10631, + "▁maneu": 10632, + "ista": 10633, + "▁files": 10634, + "▁responses": 10635, + "▁detected": 10636, + "▁fever": 10637, + "▁Kan": 10638, + "▁Federation": 10639, + "rh": 10640, + "▁tea": 10641, + "ocket": 10642, + "▁tomb": 10643, + "▁que": 10644, + "▁conce": 10645, + "▁dimin": 10646, + "▁affair": 10647, + "bishop": 10648, + "▁Brig": 10649, + "lights": 10650, + "▁flour": 10651, + "▁Player": 10652, + "▁gods": 10653, + "▁Blues": 10654, + "▁founding": 10655, + "▁suddenly": 10656, + "▁Google": 10657, + "▁racing": 10658, + "▁holiday": 10659, + "▁rif": 10660, + "expected": 10661, + "anner": 10662, + "▁adventure": 10663, + "▁Liz": 10664, + "▁Il": 10665, + "onomy": 10666, + "▁pill": 10667, + "▁magic": 10668, + "aris": 10669, + "▁horror": 10670, + "▁mush": 10671, + "▁konnen": 10672, + "▁Mend": 10673, + "▁erected": 10674, + "▁Lt": 10675, + "▁Tokyo": 10676, + "▁remnants": 10677, + "▁Local": 10678, + "▁Overall": 10679, + "▁Championships": 10680, + "▁publishing": 10681, + "▁preserve": 10682, + "ontal": 10683, + "▁relax": 10684, + "▁Barry": 10685, + "▁exclusively": 10686, + "▁compilation": 10687, + "▁Cit": 10688, + "etary": 10689, + "▁Years": 10690, + "▁coron": 10691, + "▁Harvey": 10692, + "ène": 10693, + "▁gift": 10694, + "▁Villa": 10695, + "▁chron": 10696, + "▁Eug": 10697, + "▁Nixon": 10698, + "▁chemistry": 10699, + "opl": 10700, + "ugg": 10701, + "ospel": 10702, + "▁Mission": 10703, + "▁challenged": 10704, + "▁Edge": 10705, + "▁orange": 10706, + ".;": 10707, + "chi": 10708, + "▁Hom": 10709, + "▁funded": 10710, + "▁heading": 10711, + "▁elig": 10712, + "lete": 10713, + "▁incred": 10714, + "95": 10715, + "▁Grey": 10716, + "▁crews": 10717, + "sm": 10718, + "▁voiced": 10719, + "erts": 10720, + "▁Creat": 10721, + "▁Pas": 10722, + "▁Atlanta": 10723, + "▁preval": 10724, + "▁virtually": 10725, + "▁breaks": 10726, + "▁promoting": 10727, + "▁165": 10728, + "atist": 10729, + "▁Æ": 10730, + "▁wound": 10731, + "▁Begin": 10732, + "▁desired": 10733, + "▁phenomenon": 10734, + "▁carries": 10735, + "▁measuring": 10736, + "▁Austrian": 10737, + "▁Sometimes": 10738, + "▁knee": 10739, + "▁filter": 10740, + "▁lieutenant": 10741, + "▁talks": 10742, + "▁watershed": 10743, + "▁1904": 10744, + "▁Delaware": 10745, + "▁encourag": 10746, + "▁traveling": 10747, + "▁diox": 10748, + "▁fisher": 10749, + "adesh": 10750, + "▁Ring": 10751, + "▁Grammy": 10752, + "▁ye": 10753, + "▁acknowledged": 10754, + "▁ports": 10755, + "▁Hudson": 10756, + "▁weakness": 10757, + "▁grid": 10758, + "species": 10759, + "▁Tamil": 10760, + "▁acids": 10761, + "▁Interstate": 10762, + "case": 10763, + "▁Mind": 10764, + "▁threw": 10765, + "▁tap": 10766, + "▁membership": 10767, + "AD": 10768, + "apy": 10769, + "▁Moreover": 10770, + "▁overseas": 10771, + "▁neighbour": 10772, + "CO": 10773, + "▁1000": 10774, + "▁Hamm": 10775, + "▁harvest": 10776, + "▁militia": 10777, + "run": 10778, + "▁armies": 10779, + "▁Priv": 10780, + "▁Hockey": 10781, + "tage": 10782, + "▁sang": 10783, + "▁Rez": 10784, + "▁drums": 10785, + "▁withdrawal": 10786, + "▁dent": 10787, + "▁Reserve": 10788, + "▁smoking": 10789, + "▁dancing": 10790, + "▁Training": 10791, + "▁settings": 10792, + "phony": 10793, + "▁115": 10794, + "▁thro": 10795, + "path": 10796, + "▁troub": 10797, + "▁universities": 10798, + "▁Py": 10799, + "▁mes": 10800, + "▁attained": 10801, + "▁pel": 10802, + "▁Laboratory": 10803, + "▁oxid": 10804, + "ptic": 10805, + "▁approaching": 10806, + "▁basin": 10807, + "▁borrow": 10808, + "▁Universal": 10809, + "irus": 10810, + "▁Sac": 10811, + "▁boss": 10812, + "▁Perry": 10813, + "▁variations": 10814, + "▁Place": 10815, + "▁Nation": 10816, + "▁Hampshire": 10817, + "▁referring": 10818, + "▁consideration": 10819, + "urd": 10820, + "▁cognitive": 10821, + "▁Ral": 10822, + "▁cock": 10823, + "▁myster": 10824, + "vo": 10825, + "▁morph": 10826, + "▁nerve": 10827, + "▁believing": 10828, + "lock": 10829, + "▁mainland": 10830, + "▁Foreign": 10831, + "▁travels": 10832, + "▁handling": 10833, + "▁fertil": 10834, + "▁Critics": 10835, + "▁constitutional": 10836, + "class": 10837, + "▁Ali": 10838, + "▁Invest": 10839, + "▁Donald": 10840, + "▁Abd": 10841, + "▁Beng": 10842, + "▁imagery": 10843, + "▁remind": 10844, + "embers": 10845, + "▁wildlife": 10846, + "▁displays": 10847, + "▁requiring": 10848, + "uage": 10849, + "▁discont": 10850, + "▁IP": 10851, + "▁Napoleon": 10852, + "MI": 10853, + "isons": 10854, + "▁obsc": 10855, + "▁triple": 10856, + "▁sung": 10857, + "▁Box": 10858, + "▁Medal": 10859, + "▁adds": 10860, + "iden": 10861, + "▁legislature": 10862, + "rapped": 10863, + "▁secretary": 10864, + "▁forget": 10865, + "▁bears": 10866, + "▁Amb": 10867, + "▁stops": 10868, + "azines": 10869, + "sis": 10870, + "▁Turkey": 10871, + "▁reporting": 10872, + "▁frig": 10873, + "▁Mik": 10874, + "eling": 10875, + "idance": 10876, + "99": 10877, + "▁atomic": 10878, + "ishers": 10879, + "▁voting": 10880, + "▁unclear": 10881, + "▁feedback": 10882, + "▁attending": 10883, + "▁bio": 10884, + "▁Indies": 10885, + "ouch": 10886, + "▁lots": 10887, + "▁Baker": 10888, + "▁backed": 10889, + "▁vig": 10890, + "▁verte": 10891, + "▁confusion": 10892, + "istical": 10893, + "▁hosp": 10894, + "ipher": 10895, + "▁armored": 10896, + "▁Yellow": 10897, + "▁strongest": 10898, + "itative": 10899, + "▁IN": 10900, + "verse": 10901, + "▁humanity": 10902, + "▁commitment": 10903, + "▁volunteers": 10904, + "▁chant": 10905, + "▁dense": 10906, + "oria": 10907, + "▁cuts": 10908, + "▁theater": 10909, + "▁Organization": 10910, + "▁CS": 10911, + "▁prox": 10912, + "▁hosts": 10913, + "▁documented": 10914, + "▁struggled": 10915, + "▁07": 10916, + "▁parks": 10917, + "▁strengthened": 10918, + "apolis": 10919, + "▁Pitts": 10920, + "▁exhibit": 10921, + "▁Poll": 10922, + "yram": 10923, + "asa": 10924, + "▁Product": 10925, + "emia": 10926, + "▁dental": 10927, + "▁removing": 10928, + "▁Mi": 10929, + "▁EP": 10930, + "▁Joy": 10931, + "itated": 10932, + "▁scientist": 10933, + "agers": 10934, + "▁lasting": 10935, + "▁cosm": 10936, + "zo": 10937, + "ancell": 10938, + "▁scattered": 10939, + "▁Say": 10940, + "▁creatures": 10941, + "▁millimet": 10942, + "▁Murphy": 10943, + "▁Century": 10944, + "▁objectives": 10945, + "▁implementation": 10946, + "DF": 10947, + "iffs": 10948, + "▁fires": 10949, + "▁Athlet": 10950, + "▁Rico": 10951, + "cut": 10952, + "▁Fu": 10953, + "▁Kra": 10954, + "▁linear": 10955, + "▁backing": 10956, + "▁Utah": 10957, + "▁architectural": 10958, + "▁guidelines": 10959, + "ni": 10960, + "▁tribe": 10961, + "▁conspir": 10962, + "▁acceler": 10963, + "▁Ze": 10964, + "▁arguments": 10965, + "▁env": 10966, + "▁Mans": 10967, + "▁surfaces": 10968, + "▁movies": 10969, + "▁listening": 10970, + "▁Conservation": 10971, + "eyer": 10972, + "▁Hann": 10973, + "outing": 10974, + "47": 10975, + "▁kW": 10976, + "▁respective": 10977, + "adal": 10978, + "▁grain": 10979, + "▁answers": 10980, + "▁insisted": 10981, + "▁Wed": 10982, + "▁warship": 10983, + "AP": 10984, + "rov": 10985, + "thodox": 10986, + "▁argue": 10987, + "▁Johnny": 10988, + "▁Dub": 10989, + "▁farming": 10990, + "rimination": 10991, + "▁intermedi": 10992, + "▁printing": 10993, + "▁Sig": 10994, + "▁Lion": 10995, + "▁honey": 10996, + "▁quad": 10997, + "▁cotton": 10998, + "▁organs": 10999, + "▁Mosc": 11000, + "▁advised": 11001, + "▁cancelled": 11002, + "▁disagre": 11003, + "▁priest": 11004, + "▁McM": 11005, + "▁Apoll": 11006, + "▁golden": 11007, + "▁Full": 11008, + "▁1901": 11009, + "▁confron": 11010, + "oub": 11011, + "▁1860": 11012, + "▁Jun": 11013, + "▁Tob": 11014, + "▁sect": 11015, + "▁wors": 11016, + "▁Arnold": 11017, + "ammar": 11018, + "▁peoples": 11019, + "▁communicate": 11020, + "▁arrangements": 11021, + "▁>": 11022, + "▁disl": 11023, + "▁Railroad": 11024, + "▁cow": 11025, + "▁Kirk": 11026, + "▁Muham": 11027, + "rise": 11028, + "▁bombs": 11029, + "▁knowing": 11030, + "▁monaster": 11031, + "▁Wol": 11032, + "▁rely": 11033, + "▁focusing": 11034, + "▁banned": 11035, + "▁confront": 11036, + "▁birthday": 11037, + "▁exclusive": 11038, + "▁ov": 11039, + "OL": 11040, + "▁Haz": 11041, + "▁Grade": 11042, + "▁corporate": 11043, + "▁vegetation": 11044, + "▁apartment": 11045, + "▁Sony": 11046, + "employ": 11047, + "enov": 11048, + "▁Wag": 11049, + "▁Syria": 11050, + "▁interpreted": 11051, + "enda": 11052, + "▁Exec": 11053, + "icular": 11054, + "irs": 11055, + "eared": 11056, + "▁Jimmy": 11057, + "▁fabric": 11058, + "▁Philippe": 11059, + "▁pole": 11060, + "▁unexpected": 11061, + "▁terrain": 11062, + "enberg": 11063, + "▁helpful": 11064, + "ouver": 11065, + "▁initiative": 11066, + "irts": 11067, + "anton": 11068, + "▁attorney": 11069, + "▁relatives": 11070, + "▁talent": 11071, + "▁impression": 11072, + "▁sq": 11073, + "▁lanmè": 11074, + "▁Diam": 11075, + "▁stretch": 11076, + "▁queen": 11077, + "▁crimes": 11078, + "▁aerial": 11079, + "▁excessive": 11080, + "▁gust": 11081, + "▁affili": 11082, + "▁DS": 11083, + "▁da": 11084, + "▁Desc": 11085, + "▁conflicts": 11086, + "▁Fish": 11087, + "▁autobi": 11088, + "▁predecessor": 11089, + "▁fed": 11090, + "▁mad": 11091, + "▁Chang": 11092, + "▁Indonesia": 11093, + "▁surprised": 11094, + "olving": 11095, + "▁calculated": 11096, + "▁Ey": 11097, + "▁Deep": 11098, + "roe": 11099, + "▁northward": 11100, + "▁professionals": 11101, + "oded": 11102, + "▁isot": 11103, + "▁algorith": 11104, + "▁noticed": 11105, + "▁riders": 11106, + "▁transp": 11107, + "▁westward": 11108, + "2)": 11109, + "onian": 11110, + "▁warming": 11111, + "▁beneficial": 11112, + "▁restrictions": 11113, + "▁authen": 11114, + "▁mechanisms": 11115, + "▁shallow": 11116, + "▁mathematics": 11117, + "▁orn": 11118, + "▁lanes": 11119, + "ribe": 11120, + "▁Muslims": 11121, + "▁touring": 11122, + "▁Race": 11123, + "▁Hawaii": 11124, + "▁Leslie": 11125, + "usc": 11126, + "othy": 11127, + "▁doors": 11128, + "ennium": 11129, + "▁chlor": 11130, + "▁Lost": 11131, + "▁Edwards": 11132, + "46": 11133, + "▁Halo": 11134, + "▁recycl": 11135, + "▁reliable": 11136, + "▁Note": 11137, + "▁Monte": 11138, + "▁Reading": 11139, + "▁absolute": 11140, + "etheless": 11141, + "▁dying": 11142, + "▁license": 11143, + "▁Stu": 11144, + "▁deeper": 11145, + "▁organised": 11146, + "▁considers": 11147, + "▁realize": 11148, + "RC": 11149, + "with": 11150, + "▁recon": 11151, + "ght": 11152, + "▁renov": 11153, + "▁fate": 11154, + "▁assign": 11155, + "▁dioxide": 11156, + "▁ekriven": 11157, + "▁overcome": 11158, + "▁myself": 11159, + "▁surpass": 11160, + "▁battalions": 11161, + "▁consciousness": 11162, + "▁remarked": 11163, + "▁specimen": 11164, + "▁gardens": 11165, + "rous": 11166, + "▁Beaut": 11167, + "IDS": 11168, + "anz": 11169, + "▁ion": 11170, + "▁Pic": 11171, + "▁Gary": 11172, + "▁emerging": 11173, + "acco": 11174, + "angered": 11175, + "37": 11176, + "gov": 11177, + "▁bread": 11178, + "▁acou": 11179, + "▁Survey": 11180, + "▁Ted": 11181, + "▁1903": 11182, + "▁tract": 11183, + "▁Pearl": 11184, + "idity": 11185, + "AL": 11186, + "▁pink": 11187, + "▁Phoenix": 11188, + "▁subspecies": 11189, + "▁corresponding": 11190, + "▁Sit": 11191, + "▁Chel": 11192, + "▁Lem": 11193, + "▁assembled": 11194, + "▁rebellion": 11195, + "▁loud": 11196, + "▁couldn": 11197, + "ictionary": 11198, + "irms": 11199, + "▁assert": 11200, + "▁hopes": 11201, + "▁devoted": 11202, + "▁enlisted": 11203, + "▁flagship": 11204, + "mingham": 11205, + "▁magazines": 11206, + "▁medications": 11207, + "▁transported": 11208, + "▁inclusion": 11209, + "cially": 11210, + "88": 11211, + "▁bombing": 11212, + "▁Broadway": 11213, + "▁separation": 11214, + "ascular": 11215, + "▁Flore": 11216, + "▁abnorm": 11217, + "▁introduce": 11218, + "▁Israeli": 11219, + "▁gif": 11220, + "▁donated": 11221, + "uki": 11222, + "▁155": 11223, + "▁Past": 11224, + "▁dressed": 11225, + "▁competing": 11226, + "nik": 11227, + "rible": 11228, + "▁pent": 11229, + "▁catal": 11230, + "▁youngest": 11231, + "WC": 11232, + "▁paj": 11233, + "▁Victorian": 11234, + "▁Ran": 11235, + "bel": 11236, + "▁ruler": 11237, + "▁physically": 11238, + "RE": 11239, + "▁Watch": 11240, + "▁enthusi": 11241, + "▁Antar": 11242, + "▁casting": 11243, + "▁fo": 11244, + "▁updated": 11245, + "▁graduated": 11246, + "ür": 11247, + "▁measurements": 11248, + "olen": 11249, + "strong": 11250, + "▁cens": 11251, + "▁Girls": 11252, + "▁Som": 11253, + "▁enact": 11254, + "▁ane": 11255, + "▁Others": 11256, + "hand": 11257, + "uded": 11258, + "▁shaft": 11259, + "lesh": 11260, + "▁Turner": 11261, + "▁voices": 11262, + "▁targeted": 11263, + "▁Bath": 11264, + "▁bell": 11265, + "▁armour": 11266, + "▁Engineering": 11267, + "▁Nicholas": 11268, + "▁managing": 11269, + "▁Keith": 11270, + "ortion": 11271, + "▁phosph": 11272, + "▁circular": 11273, + "▁armament": 11274, + "▁Muhammad": 11275, + "aders": 11276, + "▁Henri": 11277, + "▁prize": 11278, + "isy": 11279, + "▁1902": 11280, + "artney": 11281, + "▁Until": 11282, + "▁Argentina": 11283, + "▁predators": 11284, + "▁Goth": 11285, + "▁Sche": 11286, + "▁marg": 11287, + "utely": 11288, + "▁Trade": 11289, + "▁Peters": 11290, + "▁sulf": 11291, + "▁dynamic": 11292, + "▁mammals": 11293, + "▁reconnaissance": 11294, + "▁breathing": 11295, + "▁interviews": 11296, + "▁Ent": 11297, + "▁Sout": 11298, + "▁chapel": 11299, + "▁dy": 11300, + "cies": 11301, + "▁Soul": 11302, + "▁Hur": 11303, + "▁Maine": 11304, + "▁Todd": 11305, + "icial": 11306, + "▁Hold": 11307, + "▁Solar": 11308, + "▁Lex": 11309, + "▁velocity": 11310, + "▁Amendment": 11311, + "osion": 11312, + "▁failing": 11313, + "▁spacecraft": 11314, + "▁overlook": 11315, + "bing": 11316, + "aments": 11317, + "▁Collins": 11318, + "▁350": 11319, + "ascar": 11320, + "▁anlè": 11321, + "▁posts": 11322, + "▁screening": 11323, + "▁Fil": 11324, + "▁Nine": 11325, + "▁columns": 11326, + "▁Together": 11327, + "▁lawyer": 11328, + "uras": 11329, + "▁Market": 11330, + "▁Luke": 11331, + "▁finger": 11332, + "▁defending": 11333, + "nia": 11334, + "▁bab": 11335, + "▁Wor": 11336, + "▁celebrate": 11337, + "▁comfortable": 11338, + "▁Kam": 11339, + "▁spots": 11340, + "▁cam": 11341, + "▁collapsed": 11342, + "▁Abbey": 11343, + "▁Study": 11344, + "▁Upper": 11345, + "▁assume": 11346, + "▁paying": 11347, + "▁Oliver": 11348, + "▁autumn": 11349, + "oric": 11350, + "folk": 11351, + "isition": 11352, + "▁assets": 11353, + "▁cad": 11354, + "▁Hugh": 11355, + "▁exploration": 11356, + "▁iP": 11357, + "▁Kon": 11358, + "▁teknik": 11359, + "▁Inv": 11360, + "▁accuracy": 11361, + "ultan": 11362, + "▁Shaw": 11363, + "ancouver": 11364, + "▁educated": 11365, + "▁counsel": 11366, + "atoes": 11367, + "annels": 11368, + "▁sheep": 11369, + "yler": 11370, + "ocent": 11371, + "▁salv": 11372, + "▁writings": 11373, + "▁Birmingham": 11374, + "▁alarm": 11375, + "▁mayor": 11376, + "▁noble": 11377, + "▁legislative": 11378, + "49": 11379, + "▁1850": 11380, + "▁proven": 11381, + "▁honest": 11382, + "▁François": 11383, + "▁Unf": 11384, + "▁bowling": 11385, + "▁daughters": 11386, + "▁announcement": 11387, + "▁clay": 11388, + "▁corps": 11389, + "▁absent": 11390, + "▁receives": 11391, + "math": 11392, + "▁Resp": 11393, + "▁Maya": 11394, + "atra": 11395, + "▁Sug": 11396, + "▁swit": 11397, + "▁cancel": 11398, + "▁prosper": 11399, + "ourse": 11400, + "▁nice": 11401, + "itic": 11402, + "▁Lev": 11403, + "▁virtual": 11404, + "▁Tu": 11405, + "▁Action": 11406, + "▁fee": 11407, + "▁kiss": 11408, + "▁provinces": 11409, + "▁Rud": 11410, + "▁Communist": 11411, + "regular": 11412, + "▁mineral": 11413, + "feld": 11414, + "▁extending": 11415, + "▁mèt": 11416, + "▁Dakota": 11417, + "▁charter": 11418, + "▁demolished": 11419, + "▁traditionally": 11420, + "▁directions": 11421, + "isman": 11422, + "▁warri": 11423, + "85": 11424, + "▁lock": 11425, + "▁scar": 11426, + "▁Wayne": 11427, + "seud": 11428, + "▁enabled": 11429, + "▁provincial": 11430, + "▁revised": 11431, + "▁highways": 11432, + "thel": 11433, + "▁Gray": 11434, + "rection": 11435, + "▁Vancouver": 11436, + "▁cere": 11437, + "▁funny": 11438, + "▁Jar": 11439, + "▁plates": 11440, + "▁Ori": 11441, + "▁Electric": 11442, + "▁Ches": 11443, + "▁friendship": 11444, + "▁tonnes": 11445, + "inks": 11446, + "pler": 11447, + "▁commentary": 11448, + "▁requirement": 11449, + "▁Files": 11450, + "▁aside": 11451, + "ilyen": 11452, + "▁steep": 11453, + "▁Aqu": 11454, + "▁expectations": 11455, + "venth": 11456, + "▁Typ": 11457, + "▁Pars": 11458, + "65": 11459, + "▁Bapt": 11460, + "▁Edin": 11461, + "▁Madag": 11462, + "▁define": 11463, + "▁wicket": 11464, + "▁handled": 11465, + "▁Bak": 11466, + "▁opens": 11467, + "▁endors": 11468, + "▁rational": 11469, + "eff": 11470, + "▁Dall": 11471, + "▁jury": 11472, + "tegr": 11473, + "▁Bach": 11474, + "▁Drive": 11475, + "Al": 11476, + "▁dual": 11477, + "cru": 11478, + "▁Village": 11479, + "▁Enterprise": 11480, + "▁curve": 11481, + "▁outcomes": 11482, + "▁destroying": 11483, + "▁hybrid": 11484, + "▁immigrants": 11485, + "oting": 11486, + "▁typhoon": 11487, + "fly": 11488, + "inery": 11489, + "inted": 11490, + "▁Fight": 11491, + "▁actively": 11492, + "ulatory": 11493, + "▁seized": 11494, + "onald": 11495, + "▁grave": 11496, + "aneous": 11497, + "▁varying": 11498, + "▁Abra": 11499, + "▁bishop": 11500, + "▁consumers": 11501, + "▁prel": 11502, + "cience": 11503, + "▁identification": 11504, + "lu": 11505, + "erver": 11506, + "▁protecting": 11507, + "▁regardless": 11508, + "▁item": 11509, + "▁congreg": 11510, + "▁locally": 11511, + "▁achievement": 11512, + "▁musician": 11513, + "▁1800": 11514, + "cyclop": 11515, + "▁Chile": 11516, + "▁prevention": 11517, + "▁Moscow": 11518, + "▁Had": 11519, + "▁mask": 11520, + "▁collections": 11521, + "ewise": 11522, + "▁Allies": 11523, + "▁Pam": 11524, + "▁wake": 11525, + "▁brilliant": 11526, + "▁explaining": 11527, + "▁developments": 11528, + "▁panels": 11529, + "▁recommendations": 11530, + "▁Online": 11531, + "▁debris": 11532, + "▁gran": 11533, + "▁errors": 11534, + "▁telesc": 11535, + "▁hypothesis": 11536, + "▁pray": 11537, + "▁metals": 11538, + "▁register": 11539, + "oker": 11540, + "▁Pad": 11541, + "▁orchestra": 11542, + "zes": 11543, + "▁Uk": 11544, + "▁Swiss": 11545, + "▁compliment": 11546, + "osaurs": 11547, + "▁followers": 11548, + "▁analys": 11549, + "▁console": 11550, + "▁eliminate": 11551, + ".5": 11552, + "kt": 11553, + "▁Craig": 11554, + "▁upset": 11555, + "▁Din": 11556, + "▁Ekip": 11557, + "▁peaking": 11558, + "▁blocked": 11559, + "▁Canter": 11560, + "▁versus": 11561, + "▁adequate": 11562, + "owski": 11563, + "▁Original": 11564, + "DP": 11565, + "reens": 11566, + "▁Pruss": 11567, + "▁beings": 11568, + "▁statistics": 11569, + "elfare": 11570, + "▁978": 11571, + "▁Cycl": 11572, + "▁varies": 11573, + "▁Ralph": 11574, + "▁Democrats": 11575, + "▁accompanying": 11576, + "▁Honor": 11577, + "atis": 11578, + "▁charity": 11579, + "▁Tai": 11580, + "ctive": 11581, + "isode": 11582, + "▁Boys": 11583, + "▁enormous": 11584, + "▁View": 11585, + "▁mail": 11586, + "▁permit": 11587, + "▁guidance": 11588, + "▁impressive": 11589, + "▁rede": 11590, + "▁priority": 11591, + "igation": 11592, + "▁saving": 11593, + "▁aktè": 11594, + "har": 11595, + "abul": 11596, + "gon": 11597, + "▁fest": 11598, + "▁py": 11599, + "▁dys": 11600, + "▁engaging": 11601, + "▁farms": 11602, + "▁rejyon": 11603, + "▁Fisher": 11604, + "▁riding": 11605, + "▁quarterback": 11606, + "▁effectiveness": 11607, + "▁database": 11608, + "▁Trail": 11609, + "▁hills": 11610, + "▁replied": 11611, + "▁varieties": 11612, + "▁amph": 11613, + "▁tale": 11614, + "iper": 11615, + "▁Hob": 11616, + "▁Spart": 11617, + "▁Figure": 11618, + "▁Manuel": 11619, + "net": 11620, + "▁boot": 11621, + "hin": 11622, + "izers": 11623, + "▁stationed": 11624, + "▁Ancient": 11625, + "▁hitting": 11626, + "▁Walt": 11627, + "ayan": 11628, + "rust": 11629, + "tains": 11630, + "ussion": 11631, + "▁Commons": 11632, + "▁Osc": 11633, + "▁Rih": 11634, + "orig": 11635, + "annon": 11636, + "▁dubbed": 11637, + "osexual": 11638, + "▁pibl": 11639, + "▁calcium": 11640, + "▁Edinburgh": 11641, + "▁domain": 11642, + "▁lift": 11643, + "▁wars": 11644, + "▁Twitter": 11645, + "▁Ry": 11646, + "▁Nev": 11647, + "▁gaining": 11648, + "▁kreyòl": 11649, + "▁associate": 11650, + "▁substitute": 11651, + "▁Bald": 11652, + "▁Tree": 11653, + "▁Aer": 11654, + "▁trigg": 11655, + "▁suspected": 11656, + "▁questioned": 11657, + "rawn": 11658, + "▁indirect": 11659, + "▁tactics": 11660, + "▁Defence": 11661, + "▁harmful": 11662, + "▁Celt": 11663, + "▁Tracy": 11664, + "▁Morrison": 11665, + "▁bonus": 11666, + "▁theoret": 11667, + "▁mud": 11668, + "▁Chapter": 11669, + "▁inflammation": 11670, + "▁provisions": 11671, + "▁Table": 11672, + "▁cleared": 11673, + "▁jet": 11674, + "▁tape": 11675, + "▁https": 11676, + "▁Om": 11677, + "▁ta": 11678, + "▁raids": 11679, + "▁ceased": 11680, + "▁consumer": 11681, + "aja": 11682, + "▁Pract": 11683, + "▁Campaign": 11684, + "▁Soph": 11685, + "▁faculty": 11686, + "▁warfare": 11687, + "▁Tank": 11688, + "▁Rihanna": 11689, + "▁evacuated": 11690, + "▁blow": 11691, + "▁cinem": 11692, + "assador": 11693, + "▁Woman": 11694, + "▁examine": 11695, + "▁channels": 11696, + "▁succession": 11697, + "▁fantasy": 11698, + "▁Wa": 11699, + "▁Vel": 11700, + "▁cable": 11701, + "ationally": 11702, + "▁Baseball": 11703, + "autical": 11704, + "▁consolid": 11705, + "▁displaced": 11706, + "▁absorbed": 11707, + "▁Ax": 11708, + "▁Gate": 11709, + "▁Term": 11710, + "▁Finland": 11711, + "▁everyday": 11712, + "▁politicians": 11713, + "▁consequence": 11714, + "irates": 11715, + "▁conceived": 11716, + "▁discovers": 11717, + "▁Charlotte": 11718, + "▁NS": 11719, + "arest": 11720, + "▁anywhere": 11721, + "▁criteria": 11722, + "▁Hebrew": 11723, + "▁migration": 11724, + "▁segments": 11725, + "▁Dod": 11726, + "▁Bomb": 11727, + "▁Right": 11728, + "▁Canterbury": 11729, + "eto": 11730, + "leans": 11731, + "▁Defense": 11732, + "▁Madagascar": 11733, + "▁Marx": 11734, + "▁Has": 11735, + "▁cousin": 11736, + "▁Gang": 11737, + "uto": 11738, + "▁highlighted": 11739, + "▁considerably": 11740, + "▁HD": 11741, + "▁publisher": 11742, + "▁navy": 11743, + "▁ticket": 11744, + "▁thunder": 11745, + "▁petition": 11746, + "▁Newton": 11747, + "▁distinction": 11748, + "▁Mint": 11749, + "▁Á": 11750, + "▁Queensland": 11751, + "acked": 11752, + "▁lakes": 11753, + "▁reforms": 11754, + "onium": 11755, + "▁celebration": 11756, + "▁trem": 11757, + "▁extensively": 11758, + "▁forb": 11759, + "▁Computer": 11760, + "▁elevated": 11761, + "▁habitats": 11762, + "43": 11763, + "▁avoided": 11764, + "▁Curt": 11765, + "▁Bobby": 11766, + "▁Hope": 11767, + "ambers": 11768, + "▁accommodate": 11769, + "▁ol": 11770, + "▁medication": 11771, + "▁ho": 11772, + "▁Serge": 11773, + "makers": 11774, + "▁Altern": 11775, + "▁physician": 11776, + "rup": 11777, + "umph": 11778, + "▁Garc": 11779, + "▁constitu": 11780, + "▁flooded": 11781, + "aton": 11782, + "iche": 11783, + "▁genu": 11784, + "parts": 11785, + "▁venue": 11786, + "▁privile": 11787, + "▁Authority": 11788, + "▁worker": 11789, + "uis": 11790, + "▁Potter": 11791, + "▁thirteen": 11792, + "▁expanding": 11793, + "▁1898": 11794, + "▁Mason": 11795, + "▁dinner": 11796, + "▁operates": 11797, + "▁protests": 11798, + "▁Jama": 11799, + "▁ma": 11800, + "▁starring": 11801, + "rene": 11802, + "▁convert": 11803, + "▁illustrated": 11804, + "▁Please": 11805, + "▁photography": 11806, + "▁warnings": 11807, + "▁Pay": 11808, + "▁1896": 11809, + "king": 11810, + "▁cannon": 11811, + "igious": 11812, + "▁signature": 11813, + "HA": 11814, + "gie": 11815, + "▁Eight": 11816, + "▁defences": 11817, + "▁manifest": 11818, + "▁dread": 11819, + "▁contamin": 11820, + "arks": 11821, + "▁ski": 11822, + "▁payment": 11823, + "cott": 11824, + "▁acute": 11825, + "▁Standard": 11826, + "▁chances": 11827, + "▁proposals": 11828, + "auc": 11829, + "▁Tig": 11830, + "▁opinions": 11831, + "arma": 11832, + "▁Susan": 11833, + "▁genet": 11834, + "▁substances": 11835, + "enovela": 11836, + "unning": 11837, + "▁fortress": 11838, + "▁CP": 11839, + "quiry": 11840, + "▁beats": 11841, + "▁Occ": 11842, + "▁Harbor": 11843, + "▁Wallace": 11844, + "▁Wrestling": 11845, + "▁Map": 11846, + "▁worksh": 11847, + "▁underwent": 11848, + "▁dissipated": 11849, + "1)": 11850, + "endar": 11851, + "▁Lower": 11852, + "oux": 11853, + "▁amazing": 11854, + "▁dwarf": 11855, + "▁thrown": 11856, + "▁Protection": 11857, + "▁jilyen": 11858, + "▁Richmond": 11859, + "boy": 11860, + "▁orient": 11861, + "▁playoffs": 11862, + "▁Brothers": 11863, + "▁decorated": 11864, + "▁Kid": 11865, + "▁tough": 11866, + "raine": 11867, + "▁contributing": 11868, + "▁jack": 11869, + "▁meth": 11870, + "gom": 11871, + "▁tong": 11872, + "▁offs": 11873, + "▁Arctic": 11874, + "▁shifted": 11875, + "▁mortality": 11876, + "▁Kate": 11877, + "▁fant": 11878, + "▁voye": 11879, + "▁shelter": 11880, + "▁literally": 11881, + "Tube": 11882, + "▁bapt": 11883, + "▁towers": 11884, + "▁turret": 11885, + "▁rings": 11886, + "▁regulation": 11887, + "▁ampl": 11888, + "▁extinct": 11889, + "rising": 11890, + "▁audition": 11891, + "▁Lloyd": 11892, + "▁abroad": 11893, + "▁Put": 11894, + "ubble": 11895, + "▁clouds": 11896, + "ricks": 11897, + "▁Cer": 11898, + "▁Falls": 11899, + "▁guitarist": 11900, + "▁IC": 11901, + "▁Blu": 11902, + "▁gentle": 11903, + "▁Orleans": 11904, + "▁nitrogen": 11905, + "▁Vers": 11906, + "▁quar": 11907, + "▁Players": 11908, + "▁Independence": 11909, + "▁offense": 11910, + "▁realistic": 11911, + "▁Spr": 11912, + "▁census": 11913, + "▁acclaim": 11914, + "4)": 11915, + "adier": 11916, + "▁symbols": 11917, + "▁Cad": 11918, + "▁Must": 11919, + "▁heating": 11920, + "▁reinforced": 11921, + "▁topped": 11922, + "ilder": 11923, + "▁Grace": 11924, + "▁Scientology": 11925, + "▁independently": 11926, + "▁spectrum": 11927, + "▁Sweet": 11928, + "oves": 11929, + "atural": 11930, + "▁medic": 11931, + "▁distinguish": 11932, + "▁UC": 11933, + "▁THE": 11934, + "▁Hughes": 11935, + "▁habits": 11936, + "▁Exam": 11937, + "▁carb": 11938, + "eters": 11939, + "▁enhanced": 11940, + "▁punk": 11941, + "▁Edition": 11942, + "▁revolutionary": 11943, + "▁Camb": 11944, + "▁inherited": 11945, + "udi": 11946, + "▁altitude": 11947, + "▁remarkable": 11948, + "▁theatrical": 11949, + "isive": 11950, + "alia": 11951, + "isdom": 11952, + "omon": 11953, + "▁encom": 11954, + "▁irregular": 11955, + "▁Jerry": 11956, + "▁humor": 11957, + "▁gh": 11958, + "▁Pink": 11959, + "▁traded": 11960, + "▁coc": 11961, + "restrial": 11962, + "ME": 11963, + "nan": 11964, + "▁YouTube": 11965, + "▁affecting": 11966, + "via": 11967, + "▁shapes": 11968, + "▁innovative": 11969, + "eries": 11970, + "▁Link": 11971, + "idency": 11972, + "▁array": 11973, + "legraph": 11974, + "▁intake": 11975, + "▁consistently": 11976, + "▁Barbara": 11977, + "ema": 11978, + "▁Keep": 11979, + "▁gest": 11980, + "▁Track": 11981, + "▁Maurice": 11982, + "▁109": 11983, + "▁allerg": 11984, + "▁gravity": 11985, + "▁ties": 11986, + "angular": 11987, + "▁buff": 11988, + "▁progressive": 11989, + "ologically": 11990, + "39": 11991, + "▁evaluation": 11992, + "ellar": 11993, + "▁pier": 11994, + "▁Eve": 11995, + "▁RNA": 11996, + "▁availability": 11997, + "word": 11998, + "▁Executive": 11999, + "lon": 12000, + "▁PM": 12001, + "▁brig": 12002, + "▁arrives": 12003, + "▁observe": 12004, + "▁lip": 12005, + "▁ignored": 12006, + "▁healthcare": 12007, + "pling": 12008, + "▁speeds": 12009, + "▁SP": 12010, + "icking": 12011, + "▁Yam": 12012, + "▁lun": 12013, + "US": 12014, + "▁ultimate": 12015, + "gged": 12016, + "▁Ernest": 12017, + "▁confused": 12018, + "piece": 12019, + "▁Austin": 12020, + "▁disrupt": 12021, + "▁deposits": 12022, + "mm": 12023, + "onica": 12024, + "▁patri": 12025, + "▁McCartney": 12026, + "▁sculpture": 12027, + "▁comed": 12028, + "▁descent": 12029, + "▁scenario": 12030, + "ulture": 12031, + "isting": 12032, + "▁Yankees": 12033, + "▁rever": 12034, + "▁aest": 12035, + "▁trough": 12036, + "▁rehe": 12037, + "▁Dwight": 12038, + "itory": 12039, + "aha": 12040, + "rien": 12041, + "▁Liberal": 12042, + "▁pm": 12043, + "alin": 12044, + "▁aims": 12045, + "▁protective": 12046, + "child": 12047, + "▁exciting": 12048, + "▁moisture": 12049, + "layer": 12050, + "▁kills": 12051, + "yè": 12052, + "▁keeps": 12053, + "▁solely": 12054, + "▁shr": 12055, + "▁syans": 12056, + "▁sel": 12057, + "▁Indeed": 12058, + "▁Lé": 12059, + "archy": 12060, + "▁Quebec": 12061, + "▁tenure": 12062, + "▁cooperation": 12063, + "free": 12064, + "ennial": 12065, + "▁contrad": 12066, + "▁discussions": 12067, + "▁·": 12068, + "▁Orange": 12069, + "▁learns": 12070, + "▁Abraham": 12071, + "▁eleph": 12072, + "▁capabilities": 12073, + "▁Salt": 12074, + "imony": 12075, + "▁hier": 12076, + "▁seas": 12077, + "▁Being": 12078, + "▁Province": 12079, + "▁qualities": 12080, + "rod": 12081, + "▁promin": 12082, + "aque": 12083, + "▁Abu": 12084, + "▁angry": 12085, + "▁arguing": 12086, + "▁Mick": 12087, + "▁hurt": 12088, + "▁bigger": 12089, + "action": 12090, + "▁sword": 12091, + "urse": 12092, + "▁timber": 12093, + "▁civilians": 12094, + "▁acoustic": 12095, + "▁minerals": 12096, + "▁salary": 12097, + "▁currency": 12098, + "▁Ferr": 12099, + "▁Verm": 12100, + "▁mig": 12101, + "▁judges": 12102, + "▁trigger": 12103, + "▁Armstrong": 12104, + "▁strain": 12105, + "▁consumed": 12106, + "▁kilometers": 12107, + "idan": 12108, + "rolog": 12109, + "▁neuro": 12110, + "▁proceeded": 12111, + "?”": 12112, + "▁loose": 12113, + "▁Pi": 12114, + "▁Clay": 12115, + "entieth": 12116, + "▁Apollo": 12117, + "▁amateur": 12118, + "urricanes": 12119, + "apters": 12120, + "▁hardware": 12121, + "100": 12122, + "uce": 12123, + "▁zones": 12124, + "▁similarities": 12125, + "▁communist": 12126, + "▁settlements": 12127, + "elta": 12128, + "86": 12129, + "ulsion": 12130, + "▁Transportation": 12131, + "ikes": 12132, + "ancers": 12133, + "▁discipline": 12134, + "▁Sep": 12135, + "press": 12136, + "▁migr": 12137, + "▁Televizyon": 12138, + "▁Oil": 12139, + "ión": 12140, + "▁Yorkshire": 12141, + "▁Outstanding": 12142, + "ashi": 12143, + "▁supern": 12144, + "▁colours": 12145, + "▁Guinea": 12146, + "▁fu": 12147, + "▁Pul": 12148, + "▁harsh": 12149, + "▁Talk": 12150, + "42": 12151, + "▁Clin": 12152, + "▁fourteen": 12153, + "avia": 12154, + "▁Marcel": 12155, + "iko": 12156, + "▁neur": 12157, + "▁imposed": 12158, + "ratropical": 12159, + "▁sponsored": 12160, + "89": 12161, + "▁1893": 12162, + "▁advances": 12163, + "▁volcanic": 12164, + "▁Eis": 12165, + "oloji": 12166, + "▁Deb": 12167, + "usters": 12168, + "▁colored": 12169, + "▁hide": 12170, + "through": 12171, + "▁remembered": 12172, + "▁strange": 12173, + "▁Pittsburgh": 12174, + "▁Affairs": 12175, + "▁continent": 12176, + "▁Cut": 12177, + "▁Try": 12178, + "▁complement": 12179, + "▁Malaysia": 12180, + "▁conducting": 12181, + "▁rebels": 12182, + "▁viruses": 12183, + "▁sixteen": 12184, + "▁pour": 12185, + "▁elaborate": 12186, + "▁joy": 12187, + "▁democracy": 12188, + "▁3,": 12189, + "▁Stef": 12190, + "▁surrendered": 12191, + "▁width": 12192, + "▁JT": 12193, + "iratory": 12194, + "▁quantity": 12195, + "▁shed": 12196, + "▁poster": 12197, + "▁je": 12198, + "▁Wel": 12199, + "▁pharm": 12200, + "].": 12201, + "▁Johann": 12202, + "▁burial": 12203, + "▁precise": 12204, + "▁jurisdiction": 12205, + "▁transformed": 12206, + "▁PS": 12207, + "▁spur": 12208, + "▁contracts": 12209, + "ipper": 12210, + "▁dozen": 12211, + "▁aftermath": 12212, + "hma": 12213, + "▁Month": 12214, + "▁Triple": 12215, + "ao": 12216, + "▁Steel": 12217, + "▁quantities": 12218, + "0.": 12219, + "nut": 12220, + "▁positively": 12221, + "var": 12222, + "▁nutrition": 12223, + "▁grandfather": 12224, + "rels": 12225, + "minster": 12226, + "▁resolved": 12227, + "ido": 12228, + "▁Alt": 12229, + "▁culmin": 12230, + "▁societies": 12231, + "▁Historical": 12232, + "onge": 12233, + "▁uranium": 12234, + "▁Syl": 12235, + "▁Half": 12236, + "▁Fleming": 12237, + "▁Officer": 12238, + "onde": 12239, + "▁aft": 12240, + "▁reass": 12241, + "▁Ages": 12242, + "▁1899": 12243, + "▁Davies": 12244, + "▁7.": 12245, + "▁notion": 12246, + "▁Beginning": 12247, + "iksyon": 12248, + "▁warned": 12249, + "▁reduces": 12250, + "▁Mayor": 12251, + "▁doi": 12252, + "▁readily": 12253, + "▁Danish": 12254, + "▁definitely": 12255, + "▁Pow": 12256, + "▁extratropical": 12257, + "lem": 12258, + "▁Yes": 12259, + "▁Geoff": 12260, + "▁Vl": 12261, + "▁Belgian": 12262, + "▁discrimination": 12263, + "▁melody": 12264, + "hum": 12265, + "▁fier": 12266, + "celand": 12267, + "▁Hardy": 12268, + "▁stabil": 12269, + "▁detection": 12270, + "▁participating": 12271, + "▁Check": 12272, + "▁Bennett": 12273, + "▁Thunder": 12274, + "▁trapped": 12275, + "▁PR": 12276, + "▁summit": 12277, + "▁exchang": 12278, + "▁telephone": 12279, + "▁Cho": 12280, + "▁Days": 12281, + "▁Given": 12282, + "▁lacking": 12283, + "▁AL": 12284, + "▁automatically": 12285, + "roduction": 12286, + "ogram": 12287, + "isations": 12288, + "▁productions": 12289, + "▁pref": 12290, + "▁WH": 12291, + "▁Bren": 12292, + "▁Tang": 12293, + "▁cartoon": 12294, + "▁punishment": 12295, + "▁Nord": 12296, + "▁ease": 12297, + "▁Impact": 12298, + "▁induct": 12299, + "▁mate": 12300, + "▁Safety": 12301, + "▁healing": 12302, + "▁advertis": 12303, + "iya": 12304, + "▁NAT": 12305, + "▁lib": 12306, + "▁breath": 12307, + "▁Chronicle": 12308, + "▁perception": 12309, + "▁Wilhelm": 12310, + "▁Facebook": 12311, + "▁mathematical": 12312, + "▁anger": 12313, + "▁cooking": 12314, + "▁abundant": 12315, + "mers": 12316, + "▁Guitar": 12317, + "▁Cred": 12318, + "itivity": 12319, + "▁stake": 12320, + "▁Portugal": 12321, + "7,": 12322, + "▁epic": 12323, + "▁feathers": 12324, + "▁divine": 12325, + "▁anime": 12326, + "▁prisoner": 12327, + "III": 12328, + "alg": 12329, + "▁hospitals": 12330, + "▁Norfolk": 12331, + "▁puts": 12332, + "▁sacred": 12333, + "▁Luther": 12334, + "▁undertaken": 12335, + "otypes": 12336, + "▁Malt": 12337, + "▁careful": 12338, + "▁tissues": 12339, + "▁rotation": 12340, + "▁controlling": 12341, + "▁champions": 12342, + "▁Neil": 12343, + "▁parad": 12344, + "▁repet": 12345, + "▁Unfortunately": 12346, + "▁Vern": 12347, + "▁pupils": 12348, + "lez": 12349, + "▁por": 12350, + "▁Flying": 12351, + "▁Gallery": 12352, + "▁cabinet": 12353, + "▁streams": 12354, + "▁authorized": 12355, + "▁Larry": 12356, + "▁Glen": 12357, + "▁accomplished": 12358, + "▁voters": 12359, + "umble": 12360, + "▁portrayal": 12361, + "atches": 12362, + "▁Titan": 12363, + "▁Harold": 12364, + "▁constra": 12365, + "▁refugees": 12366, + "▁biology": 12367, + "▁finance": 12368, + "▁Collection": 12369, + "▁gear": 12370, + "▁inhab": 12371, + "▁redes": 12372, + "▁Cameron": 12373, + "▁zye": 12374, + "▁Howe": 12375, + "▁Wik": 12376, + "▁irrit": 12377, + "▁parody": 12378, + "▁voyage": 12379, + "▁Greater": 12380, + "▁scope": 12381, + "▁commercially": 12382, + "▁Meg": 12383, + "▁Ib": 12384, + "▁Daw": 12385, + "alling": 12386, + "hu": 12387, + "olin": 12388, + "▁pursuit": 12389, + "▁searching": 12390, + "azon": 12391, + "▁lighter": 12392, + "▁revolt": 12393, + "▁reinforcements": 12394, + "rium": 12395, + "▁Bour": 12396, + "▁Fourth": 12397, + "▁divorce": 12398, + "▁wished": 12399, + "▁Minor": 12400, + "▁Champion": 12401, + "▁Lonj": 12402, + "istant": 12403, + "▁calm": 12404, + "▁Freedom": 12405, + "▁imper": 12406, + "▁promotional": 12407, + "▁Detay": 12408, + "▁feared": 12409, + "▁commanders": 12410, + "▁Afghanistan": 12411, + "eta": 12412, + "▁Swift": 12413, + "▁commenced": 12414, + "quest": 12415, + "▁ritual": 12416, + "▁Latitid": 12417, + "▁Got": 12418, + "▁cord": 12419, + "▁Method": 12420, + "▁Lonjitid": 12421, + "▁Owen": 12422, + "▁acceptance": 12423, + "▁ramp": 12424, + "herent": 12425, + "▁radi": 12426, + "▁fiber": 12427, + "▁safely": 12428, + "▁reh": 12429, + "actic": 12430, + "▁withdrawn": 12431, + "▁occasional": 12432, + "▁tout": 12433, + "▁Protestant": 12434, + "▁TNA": 12435, + "▁advancing": 12436, + "▁NCAA": 12437, + "▁hoping": 12438, + "▁assignment": 12439, + "▁blues": 12440, + "▁Burton": 12441, + "anas": 12442, + "flow": 12443, + "▁spawn": 12444, + "found": 12445, + "▁reorgan": 12446, + "▁quarters": 12447, + "ION": 12448, + "▁meal": 12449, + "hyd": 12450, + "ocene": 12451, + "▁Rena": 12452, + "▁borders": 12453, + "▁Bud": 12454, + "▁Regional": 12455, + "▁CH": 12456, + "▁duo": 12457, + "grade": 12458, + "▁acre": 12459, + "▁outdoor": 12460, + "▁horizontal": 12461, + "▁Tak": 12462, + "▁encompass": 12463, + "utton": 12464, + "▁Commer": 12465, + "▁trunk": 12466, + "▁Brazilian": 12467, + "asha": 12468, + "▁Intellig": 12469, + "▁Lore": 12470, + "▁miz": 12471, + "▁hostile": 12472, + "▁Wells": 12473, + "cons": 12474, + "▁Page": 12475, + "▁ourselves": 12476, + "ilia": 12477, + "backs": 12478, + "list": 12479, + "▁doctrine": 12480, + "uri": 12481, + "▁Language": 12482, + "▁Cathedral": 12483, + "rang": 12484, + "arded": 12485, + "▁Cand": 12486, + "ING": 12487, + "▁Stuart": 12488, + "▁1895": 12489, + "▁sid": 12490, + "cht": 12491, + "▁historically": 12492, + "ho": 12493, + "▁summar": 12494, + "▁infant": 12495, + "▁package": 12496, + "▁ib": 12497, + "▁Legisl": 12498, + "▁RP": 12499, + "▁disturbance": 12500, + "▁Terry": 12501, + "▁Register": 12502, + "▁battlecru": 12503, + "▁perpet": 12504, + "▁Iceland": 12505, + "▁terminal": 12506, + "▁hung": 12507, + "▁Bradman": 12508, + "▁Republicans": 12509, + "neum": 12510, + "▁herb": 12511, + "▁barrier": 12512, + "▁worry": 12513, + "▁Production": 12514, + "GB": 12515, + "beat": 12516, + "▁Vit": 12517, + "▁choosing": 12518, + "▁interven": 12519, + "▁numbered": 12520, + "▁installation": 12521, + "▁03": 12522, + "▁powder": 12523, + "▁philosoph": 12524, + "▁Salv": 12525, + "▁maybe": 12526, + "EL": 12527, + "lings": 12528, + "▁Joint": 12529, + "iminary": 12530, + "▁fro": 12531, + "▁consent": 12532, + "▁goddess": 12533, + "▁viewing": 12534, + "▁enlar": 12535, + "hn": 12536, + "▁invented": 12537, + "▁Constantin": 12538, + "▁Crow": 12539, + "▁legacy": 12540, + "▁wouldn": 12541, + "▁Gay": 12542, + "utors": 12543, + "▁Ré": 12544, + "▁Beth": 12545, + "▁mas": 12546, + "ublin": 12547, + "▁Ruth": 12548, + "▁traits": 12549, + "▁Picture": 12550, + "▁Skin": 12551, + "ailing": 12552, + "▁Number": 12553, + "▁drown": 12554, + "▁Dallas": 12555, + "▁unemploy": 12556, + "▁collecting": 12557, + "held": 12558, + "▁marking": 12559, + "bast": 12560, + "▁boilers": 12561, + "iga": 12562, + "▁totally": 12563, + "▁ballad": 12564, + "▁perm": 12565, + "estock": 12566, + "▁Click": 12567, + "▁matematisyen": 12568, + "amation": 12569, + "▁wrestling": 12570, + "EP": 12571, + "olia": 12572, + "▁cha": 12573, + "clusive": 12574, + "▁rendered": 12575, + "iors": 12576, + "▁juven": 12577, + "▁citizen": 12578, + "▁opposing": 12579, + "▁innovation": 12580, + "rays": 12581, + "▁strikes": 12582, + "▁pwod": 12583, + "▁Rangers": 12584, + "NC": 12585, + "▁ka": 12586, + "▁cream": 12587, + "▁Disease": 12588, + "▁ingredients": 12589, + "pine": 12590, + "UC": 12591, + "cope": 12592, + "▁insu": 12593, + "▁crest": 12594, + "ieu": 12595, + "▁seal": 12596, + "▁commanding": 12597, + "▁threatening": 12598, + "▁Cancer": 12599, + "▁bin": 12600, + "▁reserved": 12601, + "itime": 12602, + "IP": 12603, + "▁1897": 12604, + "▁Future": 12605, + "oline": 12606, + "▁fing": 12607, + "otherapy": 12608, + "▁ic": 12609, + "▁bowl": 12610, + "erated": 12611, + "▁prototype": 12612, + "▁concentrations": 12613, + "▁EC": 12614, + "▁specialized": 12615, + "▁1:": 12616, + "holders": 12617, + "which": 12618, + "▁sized": 12619, + "▁compare": 12620, + "▁perfectly": 12621, + "ensis": 12622, + "▁airfield": 12623, + "▁relating": 12624, + "oirs": 12625, + "making": 12626, + "▁Find": 12627, + "▁archaeological": 12628, + "6,": 12629, + "izz": 12630, + "▁»": 12631, + "amas": 12632, + "▁Hispan": 12633, + "▁Saturn": 12634, + "▁beating": 12635, + "▁mysterious": 12636, + "▁Mater": 12637, + "▁reson": 12638, + "abulary": 12639, + "atistik": 12640, + "▁recurring": 12641, + "▁Saxon": 12642, + "▁tables": 12643, + "▁subsc": 12644, + "▁thermal": 12645, + "▁upcoming": 12646, + "▁portrait": 12647, + "▁laugh": 12648, + "▁hazard": 12649, + "anim": 12650, + "▁fungus": 12651, + "▁Stars": 12652, + "77": 12653, + "isan": 12654, + "▁cav": 12655, + "▁Montana": 12656, + "▁:2": 12657, + "▁client": 12658, + "itted": 12659, + "▁reef": 12660, + "ön": 12661, + "▁Hav": 12662, + "being": 12663, + "▁metabol": 12664, + "▁Marvel": 12665, + "▁fame": 12666, + "▁prayer": 12667, + "esity": 12668, + "▁Isaac": 12669, + "▁Johnston": 12670, + "▁diplomatic": 12671, + "▁Observ": 12672, + "▁housed": 12673, + "▁atmospheric": 12674, + "▁Sak": 12675, + "▁desper": 12676, + "▁Craw": 12677, + "▁cant": 12678, + "▁Chair": 12679, + "▁overwhelming": 12680, + "eston": 12681, + "▁atoms": 12682, + "▁behaviors": 12683, + "▁Oslo": 12684, + "▁dece": 12685, + "▁fron": 12686, + "▁Pictures": 12687, + "▁favourite": 12688, + "▁happening": 12689, + "▁Access": 12690, + "▁limitations": 12691, + "▁FBI": 12692, + "▁Rezime": 12693, + "▁congress": 12694, + "▁southeastern": 12695, + "▁tours": 12696, + "▁Æthel": 12697, + "▁advantages": 12698, + "▁Reich": 12699, + "▁oriented": 12700, + "▁Alban": 12701, + "▁Bryan": 12702, + "▁depicts": 12703, + "▁compiled": 12704, + "nels": 12705, + "▁tob": 12706, + "▁Nancy": 12707, + "▁comparing": 12708, + "HS": 12709, + "▁Lis": 12710, + "▁Sad": 12711, + "▁jaw": 12712, + "▁unt": 12713, + "▁Mall": 12714, + "▁Herald": 12715, + "▁Against": 12716, + "▁creature": 12717, + "▁Athens": 12718, + "▁elite": 12719, + "▁accomplish": 12720, + "ults": 12721, + "▁Lead": 12722, + "▁fossils": 12723, + "▁mythology": 12724, + "▁relocated": 12725, + "▁pupp": 12726, + "▁Patri": 12727, + "▁estatistik": 12728, + "▁travelling": 12729, + "Ne": 12730, + "▁Cort": 12731, + "▁prest": 12732, + "▁Hyd": 12733, + "▁Georges": 12734, + "enders": 12735, + "▁superst": 12736, + "dam": 12737, + "mat": 12738, + "▁cave": 12739, + "▁mystery": 12740, + "▁Champions": 12741, + "▁intelligent": 12742, + "▁discussing": 12743, + "gomery": 12744, + "▁Agu": 12745, + "▁Unit": 12746, + "▁edges": 12747, + "oba": 12748, + "Grain": 12749, + "▁proud": 12750, + "eda": 12751, + "inis": 12752, + "▁Level": 12753, + "▁Youth": 12754, + "istence": 12755, + "ounters": 12756, + "▁Crus": 12757, + "▁rejo": 12758, + "▁explored": 12759, + "ordinary": 12760, + "▁speaker": 12761, + "▁Hunter": 12762, + "▁Vo": 12763, + "▁Pra": 12764, + "▁sailing": 12765, + "▁damaging": 12766, + "VID": 12767, + "itting": 12768, + "▁nominations": 12769, + "▁correctly": 12770, + "▁thickness": 12771, + "▁dil": 12772, + "▁scrap": 12773, + "elihood": 12774, + "▁sacrifice": 12775, + "▁Lud": 12776, + "▁Costa": 12777, + "onso": 12778, + "▁Zone": 12779, + "acular": 12780, + "▁confer": 12781, + "▁treating": 12782, + "▁consensus": 12783, + "assium": 12784, + "▁nautical": 12785, + "▁disappeared": 12786, + "▁CBS": 12787, + "▁Friends": 12788, + "unct": 12789, + "▁memories": 12790, + "▁identifying": 12791, + "▁sharks": 12792, + "rand": 12793, + "▁Nav": 12794, + "thening": 12795, + "▁Word": 12796, + "▁Montgomery": 12797, + "wer": 12798, + "hill": 12799, + "▁busy": 12800, + "igo": 12801, + "▁202": 12802, + "▁fatal": 12803, + "▁anticipated": 12804, + "▁bonds": 12805, + "▁Clarke": 12806, + "▁Prix": 12807, + "▁tracking": 12808, + "▁airline": 12809, + "▁outstanding": 12810, + "▁Ivan": 12811, + "---": 12812, + "InGrain": 12813, + "▁intersects": 12814, + "▁FallInGrain": 12815, + "▁metric": 12816, + "▁belonging": 12817, + "▁wonderful": 12818, + "▁Body": 12819, + "▁harder": 12820, + "▁Brooks": 12821, + "▁beaten": 12822, + "master": 12823, + "▁Cricket": 12824, + "▁elderly": 12825, + "▁renewed": 12826, + "▁UE": 12827, + "▁Mig": 12828, + "ingham": 12829, + "▁distract": 12830, + "▁Performance": 12831, + "rub": 12832, + "▁collective": 12833, + "▁Fitz": 12834, + "▁Robin": 12835, + "▁breeds": 12836, + "▁attractive": 12837, + "▁creek": 12838, + "▁Trophy": 12839, + "▁rays": 12840, + "▁extends": 12841, + "▁reserves": 12842, + "oda": 12843, + "▁Nebr": 12844, + "▁urged": 12845, + "▁guests": 12846, + "▁abstract": 12847, + "-200": 12848, + "▁Economic": 12849, + "▁Pent": 12850, + "▁rivalry": 12851, + "▁corruption": 12852, + "▁incl": 12853, + "reated": 12854, + "▁Marge": 12855, + "enson": 12856, + "Arthur": 12857, + "’.": 12858, + "▁rod": 12859, + "▁cleaning": 12860, + "▁erosion": 12861, + "▁Insp": 12862, + "▁capturing": 12863, + "▁Stein": 12864, + "arents": 12865, + "▁praising": 12866, + "▁Rou": 12867, + "▁spar": 12868, + "▁mistake": 12869, + "▁destroyer": 12870, + "▁Metropolitan": 12871, + "▁Wii": 12872, + "utter": 12873, + "▁undergo": 12874, + "▁Churchill": 12875, + "▁stolen": 12876, + "▁voltage": 12877, + "▁territorial": 12878, + "orrect": 12879, + "▁Attorney": 12880, + "▁cheap": 12881, + "▁toured": 12882, + "▁discontin": 12883, + "▁Shah": 12884, + "▁plenty": 12885, + ".|": 12886, + "cester": 12887, + "blem": 12888, + "igue": 12889, + "▁pine": 12890, + "iotics": 12891, + "▁lesser": 12892, + "▁incorporate": 12893, + "▁Laura": 12894, + "▁acquire": 12895, + "▁mice": 12896, + "▁essays": 12897, + "hea": 12898, + "▁administered": 12899, + "enz": 12900, + "▁disk": 12901, + "▁fears": 12902, + "▁gluc": 12903, + "▁arose": 12904, + "▁kitchen": 12905, + "▁Pel": 12906, + "▁tent": 12907, + "▁unh": 12908, + "apor": 12909, + "▁rains": 12910, + "raid": 12911, + "▁Alliance": 12912, + "▁Resources": 12913, + "▁reasonable": 12914, + "pes": 12915, + "▁flesh": 12916, + "▁eventual": 12917, + "▁Constantine": 12918, + "agram": 12919, + "▁reyalizatè": 12920, + "▁Nebraska": 12921, + "▁guy": 12922, + "▁vin": 12923, + "▁Raymond": 12924, + "fast": 12925, + "▁recruited": 12926, + "▁sophistic": 12927, + "▁240": 12928, + "▁Rat": 12929, + "▁Urban": 12930, + "▁biography": 12931, + "▁evolutionary": 12932, + "rators": 12933, + "▁merged": 12934, + "▁Classic": 12935, + "▁1861": 12936, + "▁Coal": 12937, + "instein": 12938, + "▁copyright": 12939, + "not": 12940, + "urst": 12941, + "▁Change": 12942, + "▁«": 12943, + "engu": 12944, + "▁Sic": 12945, + "▁ancestors": 12946, + "▁absolutely": 12947, + "enza": 12948, + "▁thy": 12949, + "onial": 12950, + "▁verses": 12951, + "▁throwing": 12952, + "▁perf": 12953, + "▁experiencing": 12954, + "▁dose": 12955, + "▁complications": 12956, + "▁quoted": 12957, + "▁04": 12958, + "▁Aren": 12959, + "▁Branch": 12960, + "▁Valent": 12961, + "▁Wonder": 12962, + "▁circles": 12963, + "▁incidents": 12964, + "aco": 12965, + "▁OF": 12966, + "icity": 12967, + "▁Kane": 12968, + "osal": 12969, + "▁cinema": 12970, + "▁Testament": 12971, + "▁specialist": 12972, + "▁Burns": 12973, + "arians": 12974, + "▁gathering": 12975, + "▁Krist": 12976, + "▁Thanks": 12977, + "▁Kaiser": 12978, + "▁scales": 12979, + "▁Sheff": 12980, + "▁Dublin": 12981, + "quer": 12982, + "▁Pant": 12983, + "▁cure": 12984, + "abling": 12985, + "auge": 12986, + "▁ears": 12987, + "plant": 12988, + "keeper": 12989, + "▁Rather": 12990, + "lington": 12991, + "omical": 12992, + "▁develops": 12993, + "▁Flag": 12994, + "hell": 12995, + "landers": 12996, + "▁Nad": 12997, + "▁Perhaps": 12998, + "▁staying": 12999, + "▁tobacco": 13000, + "▁intermediate": 13001, + "▁Mix": 13002, + "▁nineteenth": 13003, + "mont": 13004, + "▁predominantly": 13005, + "▁nam": 13006, + "▁Archae": 13007, + "▁aux": 13008, + "▁Monday": 13009, + "▁achieving": 13010, + "▁Romans": 13011, + "ña": 13012, + "▁bore": 13013, + "▁eligible": 13014, + "▁whales": 13015, + "pike": 13016, + "▁Sex": 13017, + "▁sor": 13018, + "▁Oscar": 13019, + "▁Buffalo": 13020, + "orf": 13021, + "▁reflects": 13022, + "▁screens": 13023, + "ahl": 13024, + "▁María": 13025, + "▁pursued": 13026, + "▁Scar": 13027, + "ifferent": 13028, + "▁complained": 13029, + "▁Sri": 13030, + "leted": 13031, + "▁libr": 13032, + "▁rocket": 13033, + "▁rehears": 13034, + "▁blast": 13035, + "isely": 13036, + "▁Tol": 13037, + "▁Cyrus": 13038, + "istically": 13039, + "▁persuaded": 13040, + "▁sentenced": 13041, + "▁dimensions": 13042, + "▁Globe": 13043, + "▁modest": 13044, + "▁cyclones": 13045, + "▁companion": 13046, + "▁Does": 13047, + "▁garn": 13048, + "▁Judge": 13049, + "▁imagine": 13050, + "acts": 13051, + "▁JTWC": 13052, + "▁thread": 13053, + "▁specified": 13054, + "▁tune": 13055, + "▁Dj": 13056, + "ucker": 13057, + "▁planted": 13058, + "▁Sheffield": 13059, + "▁centered": 13060, + "▁releasing": 13061, + "▁sizes": 13062, + "▁manufactured": 13063, + "▁Wes": 13064, + "thetic": 13065, + "▁Climate": 13066, + "▁cathedral": 13067, + "▁drafted": 13068, + "▁employee": 13069, + "enos": 13070, + "▁UEFA": 13071, + "▁Madison": 13072, + "▁Cemetery": 13073, + "etta": 13074, + "iop": 13075, + "▁fluor": 13076, + "▁releg": 13077, + "▁odd": 13078, + "▁deals": 13079, + "▁authentic": 13080, + "ierra": 13081, + "▁digit": 13082, + "▁spite": 13083, + "▁chapters": 13084, + "chy": 13085, + "▁Justin": 13086, + "iang": 13087, + "▁Vic": 13088, + "adows": 13089, + "▁Kids": 13090, + "▁repeat": 13091, + "asma": 13092, + "ften": 13093, + "levard": 13094, + "▁walked": 13095, + "▁Chan": 13096, + "▁assessed": 13097, + "▁connects": 13098, + "▁Indonesian": 13099, + "▁Studio": 13100, + "▁oct": 13101, + "boards": 13102, + "▁masses": 13103, + "iste": 13104, + "assy": 13105, + "▁chore": 13106, + "▁manufacturers": 13107, + "▁tends": 13108, + "otion": 13109, + "▁Boat": 13110, + "▁invaded": 13111, + "▁Baron": 13112, + "▁manga": 13113, + "▁sings": 13114, + "▁nevertheless": 13115, + "▁1889": 13116, + "▁Mann": 13117, + "▁kidn": 13118, + "▁Side": 13119, + "▁lyr": 13120, + "▁misc": 13121, + "▁tendency": 13122, + "▁unve": 13123, + "▁Gabriel": 13124, + "OW": 13125, + "▁Sultan": 13126, + "▁judgment": 13127, + "▁critically": 13128, + "▁fragments": 13129, + "ourt": 13130, + "▁Princ": 13131, + "▁corrid": 13132, + "▁killer": 13133, + "▁comprised": 13134, + "▁Representatives": 13135, + "▁CEO": 13136, + "dan": 13137, + "ometry": 13138, + "▁Tab": 13139, + "▁loaded": 13140, + "▁silent": 13141, + "▁suggestion": 13142, + "Is": 13143, + "ogs": 13144, + "▁epit": 13145, + "ocaust": 13146, + "▁Liberty": 13147, + "▁Industrial": 13148, + "pin": 13149, + "ulator": 13150, + "guard": 13151, + "eps": 13152, + "▁eaten": 13153, + "▁imprisoned": 13154, + "▁NATO": 13155, + "▁Maced": 13156, + "▁biographer": 13157, + "▁qualifying": 13158, + "quis": 13159, + "andro": 13160, + "▁implications": 13161, + "▁McKin": 13162, + "inating": 13163, + "▁parking": 13164, + "▁struggling": 13165, + "rice": 13166, + "urated": 13167, + "▁Junior": 13168, + "▁Leonard": 13169, + "enburg": 13170, + "▁gases": 13171, + "▁diamond": 13172, + "▁technological": 13173, + "And": 13174, + "ović": 13175, + "urer": 13176, + "▁landmark": 13177, + "▁Toy": 13178, + "ovic": 13179, + "▁Rogers": 13180, + "▁pleased": 13181, + "▁tracked": 13182, + "▁Chelsea": 13183, + "▁municipal": 13184, + "▁complexity": 13185, + "▁greenhouse": 13186, + "▁measurement": 13187, + "▁robot": 13188, + "▁Reagan": 13189, + "iolet": 13190, + "▁Mercury": 13191, + "▁Caes": 13192, + "▁Merced": 13193, + "fim": 13194, + "▁throat": 13195, + "▁conquest": 13196, + "▁interface": 13197, + "thal": 13198, + "▁Danny": 13199, + "▁navigation": 13200, + "des": 13201, + "▁membrane": 13202, + "▁Palestine": 13203, + "▁1888": 13204, + "▁Emmy": 13205, + "▁anne": 13206, + "▁Scots": 13207, + "▁nep": 13208, + "▁grossing": 13209, + "▁mouse": 13210, + "▁spell": 13211, + "▁carved": 13212, + "▁welfare": 13213, + "iblical": 13214, + "▁knocked": 13215, + "ieg": 13216, + "▁Ana": 13217, + "vet": 13218, + "▁subtle": 13219, + "▁dancers": 13220, + "▁OS": 13221, + "inate": 13222, + "▁recruit": 13223, + "RS": 13224, + "▁gains": 13225, + "▁button": 13226, + "▁trends": 13227, + "▁pitcher": 13228, + "▁tourist": 13229, + "▁murdered": 13230, + "▁frog": 13231, + "▁promising": 13232, + "mel": 13233, + "▁steady": 13234, + "atts": 13235, + "ovak": 13236, + "▁Pick": 13237, + "▁Claud": 13238, + "▁radius": 13239, + "▁rescued": 13240, + "alties": 13241, + "▁cooling": 13242, + "▁compositions": 13243, + "▁styl": 13244, + "▁Systems": 13245, + "▁Tradition": 13246, + "▁ward": 13247, + "▁Fun": 13248, + "▁Parsons": 13249, + "▁sentiment": 13250, + "▁accidentally": 13251, + "htm": 13252, + "▁customer": 13253, + "▁volunt": 13254, + "▁Alberta": 13255, + "▁veteran": 13256, + "keley": 13257, + "▁Nevada": 13258, + "▁Arabic": 13259, + "jud": 13260, + "▁1894": 13261, + "▁Pain": 13262, + "▁drives": 13263, + "▁monthly": 13264, + "▁ba": 13265, + "▁AIDS": 13266, + "▁contents": 13267, + "▁fet": 13268, + "▁Total": 13269, + "▁101": 13270, + "▁Sean": 13271, + "▁fraud": 13272, + "▁icon": 13273, + "▁embarked": 13274, + "▁Serbian": 13275, + "▁permanently": 13276, + "▁speculation": 13277, + "▁Nou": 13278, + "▁regist": 13279, + "500": 13280, + "▁Arc": 13281, + "▁Cardiff": 13282, + "93": 13283, + "▁Gregory": 13284, + "▁Ps": 13285, + "mother": 13286, + "▁bills": 13287, + "▁Bright": 13288, + "▁trace": 13289, + "▁satisfact": 13290, + "▁endangered": 13291, + "-6": 13292, + "▁450": 13293, + "▁cig": 13294, + "▁Nova": 13295, + "asury": 13296, + "lessly": 13297, + "▁Brand": 13298, + "▁Sear": 13299, + "▁drag": 13300, + "OU": 13301, + "bage": 13302, + "▁viral": 13303, + "▁vicinity": 13304, + "▁Model": 13305, + "▁alumin": 13306, + "▁judicial": 13307, + "▁competitions": 13308, + "ampton": 13309, + "▁enforcement": 13310, + "▁Room": 13311, + "▁bars": 13312, + "▁Additional": 13313, + "▁pas": 13314, + "achute": 13315, + "▁Greatest": 13316, + "▁inspect": 13317, + "avi": 13318, + "▁bitter": 13319, + "▁mutual": 13320, + "▁shopping": 13321, + "▁girlfriend": 13322, + "haw": 13323, + "▁Saw": 13324, + "▁Burke": 13325, + "▁Stre": 13326, + "▁dish": 13327, + "▁steadily": 13328, + "▁CN": 13329, + "ellers": 13330, + "▁Large": 13331, + "▁Orthodox": 13332, + "▁positioned": 13333, + "▁Hunt": 13334, + "▁Sherman": 13335, + "iov": 13336, + "▁BCE": 13337, + "▁prospect": 13338, + "▁homeless": 13339, + "osity": 13340, + "▁expense": 13341, + "▁ensuring": 13342, + "▁disappear": 13343, + "▁104": 13344, + "▁harbour": 13345, + "▁tickets": 13346, + "▁evacuation": 13347, + "mill": 13348, + "itate": 13349, + "▁mold": 13350, + "castle": 13351, + "colm": 13352, + "▁Laz": 13353, + "▁hur": 13354, + "▁reconstruction": 13355, + "New": 13356, + "▁amino": 13357, + "▁binding": 13358, + "tye": 13359, + "▁Chall": 13360, + "▁tasked": 13361, + "▁127": 13362, + "▁wheat": 13363, + "▁Capital": 13364, + "▁speakers": 13365, + "▁weakening": 13366, + "▁rivals": 13367, + "▁revival": 13368, + "rians": 13369, + "▁Taiwan": 13370, + "▁Princeton": 13371, + "▁Machine": 13372, + "▁1891": 13373, + "▁gast": 13374, + "osyete": 13375, + "▁135": 13376, + "▁intact": 13377, + "▁Miles": 13378, + "▁balls": 13379, + "▁Baltic": 13380, + "▁clergy": 13381, + "▁disabled": 13382, + "▁CC": 13383, + "amount": 13384, + "▁mg": 13385, + "▁Leaf": 13386, + "▁progression": 13387, + "olesc": 13388, + "▁axis": 13389, + "ogenic": 13390, + "▁entert": 13391, + "▁Tyler": 13392, + "▁mechanics": 13393, + "▁respiratory": 13394, + "mye": 13395, + "▁tongue": 13396, + "ilda": 13397, + "▁echo": 13398, + "▁drought": 13399, + "▁squadrons": 13400, + "▁determining": 13401, + "▁fol": 13402, + "▁destination": 13403, + "▁insufficient": 13404, + "uns": 13405, + "▁quantum": 13406, + "▁Whether": 13407, + "▁twentieth": 13408, + "▁Ask": 13409, + "ipedia": 13410, + "grounds": 13411, + "print": 13412, + "▁encounters": 13413, + "▁theoretical": 13414, + "▁Jose": 13415, + "▁drummer": 13416, + "▁graphic": 13417, + "▁ecological": 13418, + "▁Cond": 13419, + "▁Ship": 13420, + "▁adoption": 13421, + "▁tourists": 13422, + "inite": 13423, + "▁Sans": 13424, + "▁crust": 13425, + "▁exile": 13426, + "▁mentions": 13427, + "▁offshore": 13428, + "▁witnessed": 13429, + "▁Fac": 13430, + "▁1865": 13431, + "▁attraction": 13432, + "▁achievements": 13433, + "▁Actor": 13434, + "▁ghost": 13435, + "▁distances": 13436, + "▁seiz": 13437, + "▁Spect": 13438, + "▁Policy": 13439, + "▁submit": 13440, + "▁Soft": 13441, + "▁Things": 13442, + "▁Genesis": 13443, + "itol": 13444, + "inz": 13445, + "▁gly": 13446, + "▁Weather": 13447, + "▁dissolved": 13448, + "▁vibr": 13449, + "▁scholarship": 13450, + "▁mim": 13451, + "▁brut": 13452, + "▁rounded": 13453, + "advant": 13454, + "▁consume": 13455, + "▁sentences": 13456, + "▁compromise": 13457, + "adequ": 13458, + "▁delight": 13459, + "▁gut": 13460, + "oding": 13461, + "▁demo": 13462, + "▁Researchers": 13463, + "▁220": 13464, + "▁Eld": 13465, + "ancellor": 13466, + "▁instances": 13467, + "▁machinery": 13468, + "ulu": 13469, + "▁Voy": 13470, + "ostic": 13471, + "▁Inside": 13472, + "▁Rodrig": 13473, + "▁ank": 13474, + "▁Sega": 13475, + "leys": 13476, + "▁Omar": 13477, + "▁temples": 13478, + "▁airing": 13479, + "▁variables": 13480, + "encer": 13481, + "▁Zero": 13482, + "isphere": 13483, + "▁Yon": 13484, + "▁1885": 13485, + "▁Shiva": 13486, + "▁walks": 13487, + "▁Nam": 13488, + "▁Gener": 13489, + "▁blank": 13490, + "olester": 13491, + "▁commenting": 13492, + "▁Bark": 13493, + "▁Progress": 13494, + "▁integration": 13495, + "32": 13496, + "▁transmit": 13497, + "▁flav": 13498, + "▁Strong": 13499, + "▁ashore": 13500, + "▁encouraging": 13501, + "▁hunt": 13502, + "▁Helen": 13503, + "elia": 13504, + "▁beer": 13505, + "▁Arist": 13506, + "▁chromos": 13507, + "▁crashed": 13508, + "ordination": 13509, + "gart": 13510, + "▁grace": 13511, + "▁Boeing": 13512, + "▁1892": 13513, + "▁suited": 13514, + "▁Mang": 13515, + "lett": 13516, + "▁streak": 13517, + "▁insight": 13518, + "afe": 13519, + "airy": 13520, + "▁lingu": 13521, + "ailable": 13522, + "▁pleasure": 13523, + "▁extinction": 13524, + "▁songwriter": 13525, + "’,": 13526, + "▁uncon": 13527, + "▁preceding": 13528, + "▁multiplayer": 13529, + "▁investigated": 13530, + "▁Chad": 13531, + "EF": 13532, + "▁1840": 13533, + "▁demographic": 13534, + "▁parliamentary": 13535, + "▁differently": 13536, + "GM": 13537, + "▁Besides": 13538, + "▁prolong": 13539, + "▁transformation": 13540, + "▁Nobel": 13541, + "▁Warri": 13542, + "▁Remember": 13543, + "▁Nas": 13544, + "▁trap": 13545, + "front": 13546, + "▁alert": 13547, + "uates": 13548, + "▁grants": 13549, + "▁mothers": 13550, + "▁www": 13551, + "▁livestock": 13552, + "▁Aber": 13553, + "▁Region": 13554, + "▁convince": 13555, + "▁Malcolm": 13556, + "▁republic": 13557, + "▁Hus": 13558, + "imity": 13559, + "▁inev": 13560, + "▁Rivers": 13561, + "▁decomp": 13562, + "▁sediment": 13563, + "▁intr": 13564, + "cluding": 13565, + "▁Barnes": 13566, + "▁agg": 13567, + "▁Eddie": 13568, + "▁Constantinople": 13569, + "▁Prest": 13570, + "olith": 13571, + "▁fanm": 13572, + "▁Delta": 13573, + "▁buying": 13574, + "▁convicted": 13575, + "▁XX": 13576, + "▁slower": 13577, + "▁glob": 13578, + "iously": 13579, + "▁4,": 13580, + "just": 13581, + "▁Micha": 13582, + "▁suscept": 13583, + "▁Arkansas": 13584, + "▁reconstruct": 13585, + "GS": 13586, + "anka": 13587, + "▁Mak": 13588, + "owned": 13589, + "▁Diet": 13590, + "▁Parks": 13591, + "▁Chapel": 13592, + "▁Edmund": 13593, + "▁laser": 13594, + "▁trips": 13595, + "opard": 13596, + "▁Beau": 13597, + "▁drainage": 13598, + "oning": 13599, + "▁pseud": 13600, + "lements": 13601, + "▁Regard": 13602, + "▁Cavalry": 13603, + "▁editions": 13604, + "▁depicting": 13605, + "amic": 13606, + "works": 13607, + "▁unst": 13608, + "▁suspension": 13609, + "▁mirror": 13610, + "▁courage": 13611, + "▁excited": 13612, + "▁witnesses": 13613, + "hl": 13614, + "▁admit": 13615, + "▁licensed": 13616, + "TM": 13617, + "▁Than": 13618, + "▁comparable": 13619, + "▁CM": 13620, + "▁warships": 13621, + "empl": 13622, + "▁Leo": 13623, + "▁Brooklyn": 13624, + "▁mere": 13625, + "ictions": 13626, + "▁masc": 13627, + "▁penn": 13628, + "▁charted": 13629, + "▁contrary": 13630, + "▁managers": 13631, + "▁isolation": 13632, + "▁canon": 13633, + "▁spray": 13634, + "▁Source": 13635, + "▁Bask": 13636, + "▁Schum": 13637, + "▁swing": 13638, + "▁profound": 13639, + "▁Marines": 13640, + "▁Him": 13641, + "▁progressed": 13642, + "-4": 13643, + "▁imported": 13644, + "▁compat": 13645, + "▁Orchest": 13646, + "▁Incre": 13647, + "▁exterior": 13648, + "▁~": 13649, + "▁Tib": 13650, + "▁triumph": 13651, + "wright": 13652, + "▁preservation": 13653, + "▁ber": 13654, + "▁Core": 13655, + "▁mant": 13656, + "▁Nathan": 13657, + "▁resolve": 13658, + "▁continental": 13659, + "iago": 13660, + "▁Buddhist": 13661, + "div": 13662, + "▁Joan": 13663, + "▁deriv": 13664, + "▁Ground": 13665, + "▁dropping": 13666, + "▁heavier": 13667, + "▁plug": 13668, + "▁Florence": 13669, + "▁Sey": 13670, + "▁soap": 13671, + "idia": 13672, + "▁Kyle": 13673, + "▁Northwest": 13674, + "▁Bot": 13675, + "▁propaganda": 13676, + "ocolate": 13677, + "▁rab": 13678, + "▁Cryst": 13679, + "▁chase": 13680, + "▁Movement": 13681, + "▁literacy": 13682, + "▁defenders": 13683, + "▁monastery": 13684, + "▁Kenneth": 13685, + "▁Symphony": 13686, + "▁(5": 13687, + "▁8.": 13688, + "▁Shep": 13689, + "▁Learn": 13690, + "▁editing": 13691, + "▁Gates": 13692, + "▁interf": 13693, + "▁LP": 13694, + "ifier": 13695, + "riages": 13696, + "▁André": 13697, + "▁peninsula": 13698, + "▁Tow": 13699, + "▁sear": 13700, + "▁Vienn": 13701, + "▁Publishing": 13702, + "▁amphib": 13703, + "▁naming": 13704, + "▁avoiding": 13705, + "▁Territory": 13706, + "▁seemingly": 13707, + "▁democratic": 13708, + "osphere": 13709, + "▁₹": 13710, + "▁Sor": 13711, + "▁VIII": 13712, + "▁Herbert": 13713, + "atial": 13714, + "WA": 13715, + "-18": 13716, + "▁Thames": 13717, + "▁cameras": 13718, + "gow": 13719, + "▁tourism": 13720, + "31": 13721, + "▁COVID": 13722, + "▁minds": 13723, + "▁particle": 13724, + "ril": 13725, + "▁whale": 13726, + "▁metall": 13727, + "▁projected": 13728, + "avier": 13729, + "▁symmet": 13730, + "istle": 13731, + "▁Philos": 13732, + "▁Self": 13733, + "▁drunk": 13734, + "enez": 13735, + "▁MacArthur": 13736, + "oths": 13737, + "▁intest": 13738, + "▁dramatically": 13739, + "▁shadow": 13740, + "but": 13741, + "▁venture": 13742, + "▁condemned": 13743, + "▁persec": 13744, + "plex": 13745, + "-7": 13746, + "▁145": 13747, + "▁Duc": 13748, + "▁Phot": 13749, + "▁Continental": 13750, + "▁descendants": 13751, + "▁Cloud": 13752, + "▁Glas": 13753, + "▁anthrop": 13754, + "▁sleeping": 13755, + "▁electrons": 13756, + "▁helicopter": 13757, + "▁Planet": 13758, + "▁transmitted": 13759, + "▁′": 13760, + "▁wart": 13761, + "▁civilization": 13762, + "rock": 13763, + "▁Wildlife": 13764, + "graduate": 13765, + "▁conjunction": 13766, + "▁Hi": 13767, + "veill": 13768, + "▁cement": 13769, + "▁trauma": 13770, + "▁deliberately": 13771, + "▁holy": 13772, + "ishops": 13773, + "▁Sport": 13774, + "▁wishes": 13775, + "▁namely": 13776, + "▁accurately": 13777, + "dest": 13778, + "▁bol": 13779, + "▁stern": 13780, + "▁Working": 13781, + "▁Claire": 13782, + "▁Season": 13783, + "▁Emma": 13784, + "▁pneum": 13785, + "▁Dale": 13786, + "▁deputy": 13787, + "▁transit": 13788, + "▁Doc": 13789, + "▁bees": 13790, + "▁closure": 13791, + "▁swept": 13792, + "cliff": 13793, + "▁darker": 13794, + "▁Hood": 13795, + "▁variant": 13796, + "▁floating": 13797, + "▁damages": 13798, + "agles": 13799, + "▁welcome": 13800, + "▁nickname": 13801, + "▁Pok": 13802, + "▁Impro": 13803, + "▁underwater": 13804, + "▁Renaissance": 13805, + "yramid": 13806, + "▁wisdom": 13807, + "▁meteor": 13808, + "▁SC": 13809, + "▁correl": 13810, + "▁extraordinary": 13811, + "gary": 13812, + "pring": 13813, + "▁Niger": 13814, + "▁Round": 13815, + "▁cemetery": 13816, + "▁Various": 13817, + "▁Cornwall": 13818, + "▁balanced": 13819, + "▁legitimate": 13820, + "▁psychology": 13821, + "▁Chester": 13822, + "▁Jen": 13823, + "▁Clara": 13824, + "▁Magic": 13825, + "umberland": 13826, + "▁interference": 13827, + "▁Kaz": 13828, + "▁Log": 13829, + "▁Lòt": 13830, + "ischer": 13831, + "mentation": 13832, + "▁highlights": 13833, + "▁acquisition": 13834, + "olars": 13835, + "▁arth": 13836, + "olesterol": 13837, + "▁Iss": 13838, + "ringe": 13839, + "▁Voice": 13840, + "▁sinking": 13841, + "▁acceptable": 13842, + "▁asserted": 13843, + "▁invention": 13844, + "▁01": 13845, + "▁Julian": 13846, + "▁1830": 13847, + "▁Vick": 13848, + "87": 13849, + "racks": 13850, + "▁antye": 13851, + "▁pushing": 13852, + "▁Schools": 13853, + "ushes": 13854, + "▁practition": 13855, + "▁arbit": 13856, + "▁favored": 13857, + "▁mixing": 13858, + "▁marched": 13859, + "▁rushing": 13860, + "▁Airlines": 13861, + "▁revealing": 13862, + "▁synthesis": 13863, + "▁contacted": 13864, + "8,": 13865, + "▁accidents": 13866, + "▁accounting": 13867, + "▁Pack": 13868, + "If": 13869, + "ritis": 13870, + "▁Cinc": 13871, + "▁anat": 13872, + "▁chim": 13873, + "▁tempo": 13874, + "▁wages": 13875, + "▁Legend": 13876, + "izard": 13877, + "▁costume": 13878, + "▁darkness": 13879, + "97": 13880, + "▁ferry": 13881, + "▁compass": 13882, + "▁Movie": 13883, + "▁Wagner": 13884, + "▁lengths": 13885, + "▁discharge": 13886, + "▁atop": 13887, + "world": 13888, + "uption": 13889, + "▁freely": 13890, + "▁automatic": 13891, + "avan": 13892, + "▁evaluate": 13893, + "▁possessed": 13894, + "▁embry": 13895, + "▁Spider": 13896, + "▁interc": 13897, + "▁Frances": 13898, + "▁Miz": 13899, + "▁flexible": 13900, + "▁politician": 13901, + "alis": 13902, + "▁Venus": 13903, + "▁bench": 13904, + "▁agrees": 13905, + "▁sunlight": 13906, + "▁Aj": 13907, + "▁Slav": 13908, + "oni": 13909, + "ventions": 13910, + "▁reporter": 13911, + "zh": 13912, + "▁depr": 13913, + "▁Greeks": 13914, + "▁ceremonies": 13915, + "▁pronounced": 13916, + "▁separately": 13917, + "▁Kel": 13918, + "▁nephew": 13919, + "▁conspiracy": 13920, + "▁internationally": 13921, + "▁admir": 13922, + "▁secular": 13923, + "▁compensation": 13924, + "erving": 13925, + "▁curved": 13926, + "▁Formation": 13927, + "eded": 13928, + "forest": 13929, + "▁heaven": 13930, + "▁relieved": 13931, + "pathy": 13932, + "▁villain": 13933, + "▁Lie": 13934, + "▁Midd": 13935, + "▁rulers": 13936, + "▁belonged": 13937, + "▁eruption": 13938, + "▁demonstration": 13939, + "vae": 13940, + "▁DJ": 13941, + "▁imagination": 13942, + "quet": 13943, + "▁Gibral": 13944, + "▁butt": 13945, + "▁Lords": 13946, + "▁Sonic": 13947, + "ijing": 13948, + "▁dealt": 13949, + "▁drops": 13950, + "▁submer": 13951, + "amo": 13952, + "▁Friedrich": 13953, + "▁Consequently": 13954, + "▁genres": 13955, + "▁applying": 13956, + "pit": 13957, + "▁MC": 13958, + "▁abb": 13959, + "▁Gust": 13960, + "▁Ronald": 13961, + "▁Holocaust": 13962, + "-12": 13963, + "▁cubic": 13964, + "▁empower": 13965, + "▁airborne": 13966, + "cyclopedia": 13967, + "ashing": 13968, + "▁immigration": 13969, + "▁Evil": 13970, + "▁monkey": 13971, + "Re": 13972, + "▁ants": 13973, + "▁Miguel": 13974, + "▁disability": 13975, + "▁ERA": 13976, + "41": 13977, + "▁Paper": 13978, + "acht": 13979, + "▁Reed": 13980, + "▁arena": 13981, + "▁motif": 13982, + "▁incorrect": 13983, + "▁comprising": 13984, + "▁confined": 13985, + "▁garnered": 13986, + "▁lawsuit": 13987, + "▁publish": 13988, + "▁Pete": 13989, + "▁Athen": 13990, + "▁irrig": 13991, + "▁reads": 13992, + "▁compact": 13993, + "▁wounds": 13994, + "▁Num": 13995, + "▁Meyer": 13996, + "▁Tribune": 13997, + "▁seasonal": 13998, + "▁proximity": 13999, + "▁analog": 14000, + "▁economics": 14001, + "▁Tests": 14002, + "▁blamed": 14003, + "▁pestic": 14004, + "▁Revolutionary": 14005, + "▁Adri": 14006, + "▁Burg": 14007, + "▁bombardment": 14008, + "abe": 14009, + "▁Cu": 14010, + "▁Dennis": 14011, + "▁finest": 14012, + "▁demanding": 14013, + "▁eagle": 14014, + "▁apolog": 14015, + "▁Nut": 14016, + "▁GameSp": 14017, + "iability": 14018, + "▁Ky": 14019, + "▁chains": 14020, + "▁lean": 14021, + "formed": 14022, + "▁centimet": 14023, + "▁accordance": 14024, + "▁facilitate": 14025, + "▁functioning": 14026, + "cul": 14027, + "ettes": 14028, + "▁caution": 14029, + "▁Armenian": 14030, + "▁introducing": 14031, + "▁battlefield": 14032, + "atern": 14033, + "▁refere": 14034, + "▁inadequ": 14035, + "▁Anat": 14036, + "▁profits": 14037, + "▁laps": 14038, + "▁keyboard": 14039, + "▁Gibraltar": 14040, + "▁inver": 14041, + "yers": 14042, + "▁attributes": 14043, + "hart": 14044, + "▁Waters": 14045, + "eo": 14046, + "ikh": 14047, + "ighed": 14048, + "▁Cant": 14049, + "▁Produ": 14050, + "▁resur": 14051, + "▁preliminary": 14052, + "issa": 14053, + "▁turbines": 14054, + "▁disappointed": 14055, + "▁journalists": 14056, + "▁aspir": 14057, + "▁worried": 14058, + "eches": 14059, + "▁equality": 14060, + "hm": 14061, + "ahn": 14062, + "▁metre": 14063, + "▁Watson": 14064, + "▁strings": 14065, + "▁111": 14066, + "▁Chamberlain": 14067, + "avian": 14068, + "▁Bradley": 14069, + "▁heir": 14070, + "▁relied": 14071, + "▁sciences": 14072, + "neath": 14073, + "▁Draft": 14074, + "▁resemble": 14075, + "▁renewable": 14076, + "ochem": 14077, + "▁Laf": 14078, + "▁lux": 14079, + "este": 14080, + "▁cort": 14081, + "odied": 14082, + "▁Canyon": 14083, + "▁Hearts": 14084, + "▁Fighter": 14085, + "▁Ltd": 14086, + "▁meals": 14087, + "▁calendar": 14088, + "▁Boulevard": 14089, + "▁processed": 14090, + "▁embed": 14091, + "ourable": 14092, + "▁displace": 14093, + "▁thunderst": 14094, + "gé": 14095, + "▁Herm": 14096, + "▁medals": 14097, + "oland": 14098, + "▁Fanm": 14099, + "▁Olivia": 14100, + "▁Actress": 14101, + "▁websites": 14102, + "▁Tas": 14103, + "▁annex": 14104, + "mph": 14105, + "▁SH": 14106, + "▁Case": 14107, + "▁insulin": 14108, + "▁routing": 14109, + "▁proclaimed": 14110, + "▁Led": 14111, + "▁1862": 14112, + "itects": 14113, + "▁brows": 14114, + "▁thinks": 14115, + "▁attitudes": 14116, + "iked": 14117, + "long": 14118, + "oids": 14119, + "post": 14120, + "▁escorted": 14121, + "ente": 14122, + "▁Rus": 14123, + "▁1864": 14124, + "▁dive": 14125, + "▁freed": 14126, + "▁obesity": 14127, + "▁Grow": 14128, + "▁Pand": 14129, + "▁prince": 14130, + "▁trailer": 14131, + "▁scandal": 14132, + "▁commands": 14133, + "▁spreading": 14134, + "▁orientation": 14135, + "▁illustrations": 14136, + "aba": 14137, + "▁Berkeley": 14138, + "ël": 14139, + "▁Made": 14140, + "▁Rush": 14141, + "ructive": 14142, + "▁Celtic": 14143, + "▁Imm": 14144, + "▁Almost": 14145, + "▁Towns": 14146, + "▁washed": 14147, + "inely": 14148, + "▁schem": 14149, + "▁Santiago": 14150, + "▁continuously": 14151, + "▁RI": 14152, + "▁Want": 14153, + "▁Conserv": 14154, + "▁Agriculture": 14155, + "▁hind": 14156, + "▁Franco": 14157, + "▁Serbia": 14158, + "▁babies": 14159, + "▁combine": 14160, + "▁declaration": 14161, + "mod": 14162, + "▁FIFA": 14163, + "▁revel": 14164, + "▁Beijing": 14165, + "▁decisive": 14166, + "htt": 14167, + "▁Was": 14168, + "▁peers": 14169, + "clusions": 14170, + "▁operator": 14171, + "fold": 14172, + "▁pod": 14173, + "veillance": 14174, + "elin": 14175, + "▁complaints": 14176, + "berto": 14177, + "▁Sox": 14178, + "rimin": 14179, + "▁gates": 14180, + "original": 14181, + "▁tv": 14182, + "▁clients": 14183, + "▁Archbishop": 14184, + "▁02": 14185, + "olics": 14186, + "▁Duch": 14187, + "▁manual": 14188, + "flu": 14189, + "mans": 14190, + "▁optical": 14191, + "▁colleges": 14192, + "▁oz": 14193, + "▁thank": 14194, + "▁Fifth": 14195, + "▁lover": 14196, + "▁abd": 14197, + "▁logic": 14198, + "▁fi": 14199, + "▁Aub": 14200, + "sezon": 14201, + "▁Guild": 14202, + "▁⁄": 14203, + "▁rugby": 14204, + "▁106": 14205, + "▁ministers": 14206, + "▁Westminster": 14207, + "▁Buddh": 14208, + "▁incom": 14209, + "anyòl": 14210, + "▁Newcastle": 14211, + "▁planes": 14212, + "▁configuration": 14213, + "▁organisations": 14214, + "ci": 14215, + "▁chicken": 14216, + "▁inning": 14217, + "▁tribal": 14218, + "▁eastward": 14219, + "fight": 14220, + "▁Allah": 14221, + "maker": 14222, + "▁Money": 14223, + "atorial": 14224, + "lication": 14225, + "▁Cincinn": 14226, + "▁enrolled": 14227, + "▁prohibited": 14228, + "▁oswa": 14229, + "▁politically": 14230, + "HD": 14231, + "▁exploring": 14232, + "▁Metro": 14233, + "▁artif": 14234, + "▁mobil": 14235, + "▁sufficiently": 14236, + "▁Sleep": 14237, + "▁ambit": 14238, + "▁Morning": 14239, + "▁collaborated": 14240, + "▁execut": 14241, + "uka": 14242, + "▁Wang": 14243, + "▁Stanford": 14244, + "▁Theodore": 14245, + "ritic": 14246, + "▁nurse": 14247, + "▁Members": 14248, + "▁Cec": 14249, + "▁Butler": 14250, + "▁Comedy": 14251, + "▁grades": 14252, + "▁phases": 14253, + "gio": 14254, + "fits": 14255, + "▁Analysis": 14256, + "▁reflection": 14257, + "▁guards": 14258, + "▁volunteer": 14259, + "▁alk": 14260, + "34": 14261, + "Cl": 14262, + "▁Site": 14263, + "▁warrant": 14264, + "▁Caroline": 14265, + "▁utilized": 14266, + "ounce": 14267, + "aceous": 14268, + "▁aster": 14269, + "MC": 14270, + "▁unre": 14271, + "▁burden": 14272, + "▁determination": 14273, + "▁termed": 14274, + "▁Tint": 14275, + "▁peer": 14276, + "▁Volume": 14277, + "▁shipped": 14278, + "▁elementary": 14279, + "stan": 14280, + "▁Pine": 14281, + "▁sacrific": 14282, + "▁homosexual": 14283, + "odia": 14284, + "Americ": 14285, + "▁Individ": 14286, + "▁Mobile": 14287, + "▁auto": 14288, + "▁Apart": 14289, + "▁onset": 14290, + "▁suggestions": 14291, + "achers": 14292, + "▁Leban": 14293, + "▁Gothic": 14294, + "▁teammate": 14295, + "▁disadvant": 14296, + "▁ster": 14297, + "▁Mercedes": 14298, + "▁exhibited": 14299, + "stage": 14300, + "▁Venice": 14301, + "▁Scientists": 14302, + "▁Conservative": 14303, + "arium": 14304, + "▁Vegas": 14305, + "▁barely": 14306, + "▁thesis": 14307, + "▁Kill": 14308, + "▁Anti": 14309, + "▁comics": 14310, + "▁veterans": 14311, + "▁Kil": 14312, + "▁gauge": 14313, + "▁bomber": 14314, + "▁pled": 14315, + "▁cluster": 14316, + "▁Matem": 14317, + "▁suppl": 14318, + "▁Panzer": 14319, + "▁plum": 14320, + "▁Alpha": 14321, + "▁draws": 14322, + "▁loyalty": 14323, + "▁Culture": 14324, + "▁Carr": 14325, + "▁sailors": 14326, + "bery": 14327, + "▁autism": 14328, + "▁broader": 14329, + "▁restaurants": 14330, + "▁102": 14331, + "▁Scientific": 14332, + "▁Intelligence": 14333, + "▁MV": 14334, + "▁crystal": 14335, + "bach": 14336, + "▁atis": 14337, + "▁Range": 14338, + "▁Denver": 14339, + "▁Desert": 14340, + "▁bacterial": 14341, + "immer": 14342, + "▁substantially": 14343, + "DI": 14344, + "fulness": 14345, + "▁pedest": 14346, + "▁Marshal": 14347, + "▁castles": 14348, + "▁martial": 14349, + "Hg": 14350, + "boat": 14351, + "▁Heat": 14352, + "▁keen": 14353, + "▁Holland": 14354, + ".1": 14355, + "▁Alej": 14356, + "agraph": 14357, + "ounted": 14358, + "▁oak": 14359, + "▁....": 14360, + "▁sodium": 14361, + "▁scan": 14362, + "▁Hence": 14363, + "▁Romney": 14364, + "abad": 14365, + "▁quit": 14366, + "▁locate": 14367, + "LE": 14368, + "esium": 14369, + "▁Lamb": 14370, + "▁symbolic": 14371, + "▁screenplay": 14372, + "▁addiction": 14373, + "▁manufacturer": 14374, + "ede": 14375, + "▁unnecess": 14376, + "▁hect": 14377, + "▁pist": 14378, + "▁Treatment": 14379, + "▁abundance": 14380, + "▁boyfriend": 14381, + "asia": 14382, + "▁Circle": 14383, + "▁interfer": 14384, + "ppe": 14385, + "iane": 14386, + "ylum": 14387, + "▁till": 14388, + "▁Louise": 14389, + "▁unders": 14390, + "offic": 14391, + "iological": 14392, + "▁LS": 14393, + "urop": 14394, + "thlete": 14395, + "▁haven": 14396, + "▁Cincinnati": 14397, + "▁irre": 14398, + "▁investors": 14399, + "▁sophisticated": 14400, + "▁Ker": 14401, + "▁flown": 14402, + "▁Kaw": 14403, + "▁gamb": 14404, + "ppers": 14405, + "achelor": 14406, + "gence": 14407, + "▁amid": 14408, + "▁guarantee": 14409, + "▁Gren": 14410, + "▁urine": 14411, + "▁designers": 14412, + "96": 14413, + "▁lan": 14414, + "▁Barcel": 14415, + "▁poisoning": 14416, + "yll": 14417, + "edar": 14418, + "▁hormone": 14419, + "OP": 14420, + "▁Trinity": 14421, + "▁Mol": 14422, + "thood": 14423, + "▁surveys": 14424, + "▁Jur": 14425, + "▁Activ": 14426, + "▁sensitivity": 14427, + "imer": 14428, + "▁Task": 14429, + "▁Ghost": 14430, + "▁delegates": 14431, + "▁Tir": 14432, + "commun": 14433, + "▁Guadal": 14434, + "▁researcher": 14435, + "▁Foster": 14436, + "What": 14437, + "▁Aur": 14438, + "▁Nass": 14439, + "▁united": 14440, + "▁Springfield": 14441, + "▁regen": 14442, + "▁maintains": 14443, + "iodiversity": 14444, + "▁Um": 14445, + "▁Raf": 14446, + "▁Pasc": 14447, + "▁Ottawa": 14448, + "▁nutrit": 14449, + "arthy": 14450, + "▁woods": 14451, + "▁equation": 14452, + "▁Riv": 14453, + "▁swall": 14454, + "▁Java": 14455, + "▁spont": 14456, + "▁Heaven": 14457, + "ju": 14458, + "▁aging": 14459, + "▁mounts": 14460, + "▁Andal": 14461, + "▁tired": 14462, + "▁beds": 14463, + "▁fart": 14464, + "books": 14465, + "▁marsh": 14466, + "▁Springs": 14467, + "▁wartime": 14468, + "▁resistant": 14469, + "named": 14470, + "▁unity": 14471, + "▁galaxy": 14472, + "▁Which": 14473, + "▁departments": 14474, + "▁ceiling": 14475, + "▁aggregate": 14476, + "▁batted": 14477, + "▁guided": 14478, + "tees": 14479, + "▁Fly": 14480, + "▁clip": 14481, + "▁----": 14482, + "▁Mull": 14483, + "▁chord": 14484, + "▁infants": 14485, + "▁Bonn": 14486, + "▁monster": 14487, + "▁Orchestra": 14488, + "▁preparations": 14489, + "plate": 14490, + "▁Tell": 14491, + "▁lion": 14492, + "________": 14493, + "▁enables": 14494, + "▁switched": 14495, + "▁dawn": 14496, + "▁Columbus": 14497, + "▁strengthening": 14498, + "▁Bangl": 14499, + "▁assassination": 14500, + "▁disin": 14501, + "▁Amazon": 14502, + "▁adverse": 14503, + "▁ambitious": 14504, + "▁ethical": 14505, + "▁revenge": 14506, + "▁Political": 14507, + "▁publicity": 14508, + "▁enzyme": 14509, + "▁incent": 14510, + "▁revers": 14511, + "▁117": 14512, + "▁Break": 14513, + "▁soils": 14514, + "▁whenever": 14515, + "foot": 14516, + "▁hatch": 14517, + "▁cylinder": 14518, + "▁tox": 14519, + "▁boxes": 14520, + "▁AA": 14521, + "▁pipe": 14522, + "▁retrie": 14523, + "▁lengthy": 14524, + "▁intersect": 14525, + "▁Come": 14526, + "▁submarines": 14527, + "acking": 14528, + "▁arist": 14529, + "▁centres": 14530, + "▁fox": 14531, + "▁disb": 14532, + "▁stall": 14533, + "▁cruise": 14534, + "▁directing": 14535, + "▁shops": 14536, + "▁inaugural": 14537, + "arted": 14538, + "oro": 14539, + "▁1863": 14540, + "▁Isle": 14541, + "▁nearest": 14542, + "▁Bears": 14543, + "▁presum": 14544, + "▁230": 14545, + "▁allied": 14546, + "bul": 14547, + "▁basically": 14548, + ".’": 14549, + "umi": 14550, + "▁Mut": 14551, + "▁facial": 14552, + "▁timing": 14553, + "▁interactive": 14554, + "▁floods": 14555, + "imination": 14556, + "▁aviation": 14557, + "hall": 14558, + "▁bottle": 14559, + "▁organize": 14560, + "▁Name": 14561, + "▁Berg": 14562, + "▁Surv": 14563, + "▁northeastern": 14564, + "OD": 14565, + "▁Price": 14566, + "▁Ferdin": 14567, + "▁Vienna": 14568, + "▁capability": 14569, + "agi": 14570, + "▁formations": 14571, + "yt": 14572, + "▁Bass": 14573, + "▁deer": 14574, + "▁painful": 14575, + "▁advocate": 14576, + "iktè": 14577, + "▁productive": 14578, + "▁GM": 14579, + "▁True": 14580, + "▁Tommy": 14581, + "▁collision": 14582, + "▁potassium": 14583, + "▁Mom": 14584, + "core": 14585, + "▁verb": 14586, + "actions": 14587, + "▁Martha": 14588, + "▁fitness": 14589, + "▁descriptions": 14590, + "▁cro": 14591, + "▁modes": 14592, + "▁Solomon": 14593, + "▁retreated": 14594, + "inqu": 14595, + "▁aug": 14596, + "▁Decl": 14597, + "▁accus": 14598, + "▁lunch": 14599, + "▁Drug": 14600, + "▁dign": 14601, + "Un": 14602, + "onesans": 14603, + "▁filt": 14604, + "▁aided": 14605, + "asting": 14606, + "▁sanct": 14607, + "bus": 14608, + "▁Easter": 14609, + "▁Critical": 14610, + "▁peripher": 14611, + "▁Ms": 14612, + "▁heter": 14613, + "▁lungs": 14614, + "▁rises": 14615, + "▁manages": 14616, + "▁Yugoslavia": 14617, + "amma": 14618, + "▁gifts": 14619, + "▁ruins": 14620, + "▁Beyond": 14621, + "▁conced": 14622, + "ielder": 14623, + "▁populated": 14624, + "Le": 14625, + "kout": 14626, + "▁embra": 14627, + "▁Jake": 14628, + "▁zinc": 14629, + "▁discl": 14630, + "▁robust": 14631, + "▁Glass": 14632, + "▁unanim": 14633, + "▁Broadcast": 14634, + "▁emphasized": 14635, + "essa": 14636, + "houses": 14637, + "▁Patric": 14638, + "▁lifted": 14639, + "▁relate": 14640, + "▁roadway": 14641, + "▁Hey": 14642, + "▁Nak": 14643, + "▁Cool": 14644, + "▁incons": 14645, + "▁winners": 14646, + "▁Richardson": 14647, + "98": 14648, + "atar": 14649, + "agnetic": 14650, + "▁genuine": 14651, + "▁suppress": 14652, + ".2": 14653, + "▁reproductive": 14654, + "▁Berm": 14655, + "heads": 14656, + "ungle": 14657, + "▁Sierra": 14658, + "▁silence": 14659, + "▁bleeding": 14660, + "▁Cox": 14661, + "▁Dud": 14662, + "▁sphere": 14663, + "▁nursing": 14664, + "orne": 14665, + "▁fails": 14666, + "▁stuck": 14667, + "▁coupled": 14668, + "▁Ig": 14669, + "▁Qual": 14670, + "▁smallest": 14671, + "▁probability": 14672, + "▁liner": 14673, + "▁server": 14674, + "▁postp": 14675, + "▁manufacture": 14676, + "kind": 14677, + "▁Malta": 14678, + "inus": 14679, + "▁Leeds": 14680, + "▁motivated": 14681, + "▁Belle": 14682, + "▁Lakes": 14683, + "▁explosive": 14684, + "▁keys": 14685, + "▁fusion": 14686, + "▁imaging": 14687, + "VA": 14688, + "pre": 14689, + "▁Too": 14690, + "▁Athletic": 14691, + "sl": 14692, + "▁cholesterol": 14693, + "▁nas": 14694, + "▁owing": 14695, + "▁worlds": 14696, + "▁possibilities": 14697, + "▁Tax": 14698, + "▁Milan": 14699, + "▁nucleus": 14700, + "▁Moz": 14701, + "▁Winn": 14702, + "▁kons": 14703, + "▁2:": 14704, + "▁spo": 14705, + "▁Speed": 14706, + "▁Lett": 14707, + "▁Motor": 14708, + "▁onwards": 14709, + "amination": 14710, + "▁barriers": 14711, + "ateral": 14712, + "▁summary": 14713, + "▁productivity": 14714, + "▁tut": 14715, + "ptical": 14716, + "▁southwestern": 14717, + "He": 14718, + "birds": 14719, + "▁magnet": 14720, + "onal": 14721, + "▁tribut": 14722, + "▁Glasgow": 14723, + "▁Normandy": 14724, + "level": 14725, + "▁presenting": 14726, + "▁Hern": 14727, + "▁resort": 14728, + "▁successive": 14729, + "▁segreg": 14730, + "▁tradem": 14731, + "▁median": 14732, + "▁gallery": 14733, + "▁romance": 14734, + "omal": 14735, + "▁Mail": 14736, + "▁globe": 14737, + "▁rebel": 14738, + "▁Herman": 14739, + "▁coaches": 14740, + "▁drawings": 14741, + "▁reluctant": 14742, + "▁Belie": 14743, + "▁rehabil": 14744, + "▁Jennifer": 14745, + "▁(10": 14746, + "trans": 14747, + "▁1887": 14748, + "▁Adela": 14749, + "▁troop": 14750, + "atories": 14751, + "3)": 14752, + "▁fees": 14753, + "▁dispar": 14754, + "▁Delhi": 14755, + "▁physic": 14756, + "arus": 14757, + "Brien": 14758, + "▁numer": 14759, + "▁boards": 14760, + "ustain": 14761, + "▁Catal": 14762, + "▁indoor": 14763, + "▁requests": 14764, + "▁investigations": 14765, + "▁surg": 14766, + "▁refuses": 14767, + "▁prompting": 14768, + "▁customs": 14769, + "▁Wit": 14770, + "▁Need": 14771, + "▁underm": 14772, + "▁relieve": 14773, + "▁deployment": 14774, + "▁1886": 14775, + "uum": 14776, + "▁relay": 14777, + "▁Duncan": 14778, + "▁larvae": 14779, + "▁missile": 14780, + "▁Operations": 14781, + "odic": 14782, + "▁attachment": 14783, + "▁moder": 14784, + "▁Animal": 14785, + "▁canceled": 14786, + "▁Devil": 14787, + "▁talked": 14788, + "vol": 14789, + "▁Anto": 14790, + "▁Hull": 14791, + "▁sexually": 14792, + "▁Dry": 14793, + "▁Truth": 14794, + "▁prone": 14795, + "▁pointing": 14796, + "▁vocabulary": 14797, + "Down": 14798, + "ceans": 14799, + "▁degen": 14800, + "▁afraid": 14801, + "▁forever": 14802, + "▁advocated": 14803, + "▁reminis": 14804, + "▁armoured": 14805, + "▁surprising": 14806, + "▁fortifications": 14807, + "▁bankrupt": 14808, + "▁Millennium": 14809, + "▁Dh": 14810, + "▁Student": 14811, + "ffe": 14812, + "▁carn": 14813, + "▁Albany": 14814, + "▁unaware": 14815, + "▁certific": 14816, + "▁eighteen": 14817, + "cor": 14818, + "▁hiding": 14819, + "▁skilled": 14820, + "ierre": 14821, + "▁cease": 14822, + "▁Shield": 14823, + "▁provider": 14824, + "▁Thurs": 14825, + "▁analyzed": 14826, + "mitt": 14827, + "▁Plat": 14828, + "▁Collect": 14829, + "▁touchdowns": 14830, + "èb": 14831, + "▁Colin": 14832, + "unciation": 14833, + "▁ecosystems": 14834, + "▁MA": 14835, + "bone": 14836, + "ilis": 14837, + "▁fatigue": 14838, + "▁Imag": 14839, + "▁blame": 14840, + "▁Powell": 14841, + "▁Vlad": 14842, + "▁lens": 14843, + "▁logo": 14844, + "▁noun": 14845, + "▁instructed": 14846, + "ijyon": 14847, + "▁CT": 14848, + "asures": 14849, + "▁Opera": 14850, + "▁enzymes": 14851, + "▁SA": 14852, + "▁Drake": 14853, + "▁Examples": 14854, + "▁depiction": 14855, + "▁750": 14856, + "▁Henderson": 14857, + "▁Convers": 14858, + "▁Kle": 14859, + "▁athletic": 14860, + "▁subordin": 14861, + "▁Southeast": 14862, + "▁breakdown": 14863, + "▁CA": 14864, + "▁Rear": 14865, + "▁enabling": 14866, + "ocese": 14867, + "▁Stories": 14868, + "▁Barcelona": 14869, + "▁Ja": 14870, + "▁Gaz": 14871, + "▁Woods": 14872, + "▁glucose": 14873, + "▁uncertainty": 14874, + "istance": 14875, + "▁placement": 14876, + "olan": 14877, + "▁Eagle": 14878, + "▁explicitly": 14879, + "ivic": 14880, + "▁maxim": 14881, + "▁aktris": 14882, + "▁firms": 14883, + "▁Angelou": 14884, + "▁developer": 14885, + "▁1875": 14886, + "▁Nothing": 14887, + "▁bold": 14888, + "▁Torres": 14889, + "▁ID": 14890, + "ás": 14891, + "▁Hig": 14892, + "▁ecl": 14893, + "▁Bear": 14894, + "▁dans": 14895, + "▁Former": 14896, + "▁planting": 14897, + "▁Electronic": 14898, + "▁ép": 14899, + "alid": 14900, + "unge": 14901, + "▁166": 14902, + "arity": 14903, + "▁tensions": 14904, + "▁konesans": 14905, + "▁struggles": 14906, + "▁jam": 14907, + "▁cran": 14908, + "▁Julie": 14909, + "▁curves": 14910, + "▁activated": 14911, + "Sh": 14912, + "▁Wald": 14913, + "▁Stalin": 14914, + "▁Kin": 14915, + "▁Au": 14916, + "▁Ow": 14917, + "▁Ellen": 14918, + "▁emerge": 14919, + "▁volcano": 14920, + "▁mistakes": 14921, + "oved": 14922, + "▁lymph": 14923, + "▁shoes": 14924, + "▁Colomb": 14925, + "▁floors": 14926, + "▁expenses": 14927, + "▁Alman": 14928, + "▁Bod": 14929, + "▁Cell": 14930, + "▁testimony": 14931, + "▁Poe": 14932, + "▁genera": 14933, + "▁laying": 14934, + "▁harbor": 14935, + "▁categor": 14936, + "▁Chi": 14937, + "▁Cena": 14938, + "▁dreadn": 14939, + "▁telescope": 14940, + "▁167": 14941, + "▁coalition": 14942, + "▁Gat": 14943, + "▁1876": 14944, + "▁pose": 14945, + "▁contempor": 14946, + "▁Gor": 14947, + "▁Mills": 14948, + "▁greet": 14949, + "▁Astron": 14950, + "▁jan": 14951, + "▁lacks": 14952, + "▁nests": 14953, + "aku": 14954, + "rolling": 14955, + "▁careers": 14956, + "▁fingers": 14957, + "lia": 14958, + "heres": 14959, + "▁Bris": 14960, + "amins": 14961, + "▁Marl": 14962, + "▁golf": 14963, + "▁allocated": 14964, + "▁Monroe": 14965, + "▁harass": 14966, + "▁Hopkins": 14967, + "ptom": 14968, + "▁tended": 14969, + "▁Sebast": 14970, + "▁jumping": 14971, + "▁Brid": 14972, + "▁dock": 14973, + "▁bite": 14974, + "▁drinks": 14975, + "▁loading": 14976, + "▁coastline": 14977, + "hend": 14978, + "▁Aaron": 14979, + "▁beet": 14980, + "rained": 14981, + "▁utility": 14982, + "▁Dictionary": 14983, + "▁Kol": 14984, + "▁cel": 14985, + "▁Store": 14986, + "▁codes": 14987, + "▁listing": 14988, + "ruit": 14989, + "▁submerged": 14990, + "▁Female": 14991, + "▁Holmes": 14992, + "▁disputed": 14993, + "▁pH": 14994, + "thon": 14995, + "scale": 14996, + "▁Chin": 14997, + "▁rider": 14998, + "▁consequently": 14999, + "itus": 15000, + "▁gover": 15001, + "▁fraction": 15002, + "enne": 15003, + "▁Twenty": 15004, + "▁priests": 15005, + "Fig": 15006, + "vor": 15007, + "▁Often": 15008, + "▁cabin": 15009, + "umbered": 15010, + "▁unrest": 15011, + "▁respected": 15012, + "ão": 15013, + "▁revol": 15014, + "▁spores": 15015, + "▁integrity": 15016, + "▁presidency": 15017, + "▁rolling": 15018, + "▁intim": 15019, + "▁inherit": 15020, + "▁disputes": 15021, + "▁inflation": 15022, + "▁statistical": 15023, + "▁Lav": 15024, + "flies": 15025, + "▁Moses": 15026, + "▁regiments": 15027, + "▁championships": 15028, + "uru": 15029, + "imir": 15030, + "▁prescribed": 15031, + "▁Sha": 15032, + "▁cataly": 15033, + "▁Theater": 15034, + "▁Bene": 15035, + "▁neighboring": 15036, + "▁delays": 15037, + "RT": 15038, + "matic": 15039, + "▁Kepler": 15040, + "▁governing": 15041, + "▁parameters": 15042, + "▁philosophical": 15043, + "▁cylind": 15044, + "▁distress": 15045, + "▁Hubb": 15046, + "▁calories": 15047, + "ohyd": 15048, + "oton": 15049, + "▁Jamaica": 15050, + "▁pandemic": 15051, + "▁acclaimed": 15052, + "▁comprises": 15053, + "▁incomplete": 15054, + "▁Help": 15055, + "▁interviewed": 15056, + "▁hanging": 15057, + "▁resignation": 15058, + "ör": 15059, + "▁rows": 15060, + "▁Grove": 15061, + "▁substit": 15062, + "ogg": 15063, + "▁Universe": 15064, + "▁deciding": 15065, + "▁Heavyweight": 15066, + "irable": 15067, + "▁nights": 15068, + "▁weighed": 15069, + "▁Phillips": 15070, + "▁Prevention": 15071, + "▁clan": 15072, + "▁Path": 15073, + "▁Tintin": 15074, + "▁Diamond": 15075, + "▁Đ": 15076, + "▁arise": 15077, + "▁runner": 15078, + "▁Typhoon": 15079, + "▁amendment": 15080, + "ampa": 15081, + "▁Ident": 15082, + "▁openly": 15083, + "▁commerce": 15084, + "▁disabilities": 15085, + "atem": 15086, + "▁Neg": 15087, + "▁sle": 15088, + "▁Isles": 15089, + "▁Stage": 15090, + "▁guess": 15091, + "▁torpedoes": 15092, + "▁XI": 15093, + "iotic": 15094, + "▁flies": 15095, + "▁venues": 15096, + "▁piblikasyon": 15097, + "issioned": 15098, + "▁inquiry": 15099, + "▁mistaken": 15100, + "▁dimensional": 15101, + "▁Citiz": 15102, + "zens": 15103, + "otto": 15104, + "▁Luft": 15105, + "▁Screen": 15106, + "▁denomin": 15107, + "▁Bent": 15108, + "rington": 15109, + "phal": 15110, + "▁studios": 15111, + "▁momentum": 15112, + "▁tolerance": 15113, + "uli": 15114, + "▁Laurent": 15115, + "▁Olivier": 15116, + "avil": 15117, + "▁Cha": 15118, + "▁sperm": 15119, + "▁merchants": 15120, + "▁posed": 15121, + "▁dietary": 15122, + "▁McCarthy": 15123, + "▁reversed": 15124, + "▁Bruno": 15125, + "▁cloth": 15126, + "▁Primary": 15127, + "55": 15128, + "ohn": 15129, + "▁Stop": 15130, + "▁bias": 15131, + "arrass": 15132, + "▁modifications": 15133, + "ripp": 15134, + "uity": 15135, + "▁naked": 15136, + "▁dreams": 15137, + "▁conting": 15138, + "▁lyrical": 15139, + "▁addresses": 15140, + "mal": 15141, + "▁1884": 15142, + "▁averaged": 15143, + "ensing": 15144, + "▁Meteor": 15145, + "▁burst": 15146, + "▁inducted": 15147, + "▁Bulgarian": 15148, + "PC": 15149, + "▁ok": 15150, + "▁Pon": 15151, + "There": 15152, + "verage": 15153, + "▁realm": 15154, + "▁stair": 15155, + "▁concludes": 15156, + "▁Carn": 15157, + "▁conform": 15158, + "leased": 15159, + "▁Austro": 15160, + "▁rubber": 15161, + "▁Starting": 15162, + "▁executives": 15163, + "ups": 15164, + "▁depress": 15165, + "▁coaching": 15166, + "▁Catholics": 15167, + "▁Basin": 15168, + "▁Wednes": 15169, + "▁Otto": 15170, + "▁Sold": 15171, + "▁divide": 15172, + "▁ric": 15173, + "▁choir": 15174, + "▁loans": 15175, + "▁summon": 15176, + "▁peaceful": 15177, + "▁preference": 15178, + "▁escal": 15179, + "▁spine": 15180, + "▁Bengal": 15181, + "▁Madrid": 15182, + "ribution": 15183, + "▁Tigers": 15184, + "▁improv": 15185, + "▁patch": 15186, + "▁Hubbard": 15187, + "▁providers": 15188, + "▁hurricanes": 15189, + "▁induced": 15190, + "▁Hok": 15191, + "▁Mis": 15192, + "▁electoral": 15193, + "▁expertise": 15194, + "▁persistent": 15195, + "▁Rif": 15196, + "▁dug": 15197, + "▁disbanded": 15198, + "▁monuments": 15199, + "▁CB": 15200, + "▁Suz": 15201, + "▁Pros": 15202, + "▁Bri": 15203, + "▁Compan": 15204, + "▁subtropical": 15205, + "cock": 15206, + "▁defenses": 15207, + "ograms": 15208, + "▁accel": 15209, + "▁gaming": 15210, + "▁layout": 15211, + "▁Process": 15212, + "▁tremend": 15213, + "▁Gent": 15214, + "▁proceeds": 15215, + "imo": 15216, + "▁beta": 15217, + "▁everywhere": 15218, + "▁trio": 15219, + "▁leather": 15220, + "▁foundations": 15221, + "▁Hass": 15222, + "▁mansion": 15223, + "▁severity": 15224, + "▁embarrass": 15225, + "▁legally": 15226, + "▁Tele": 15227, + "▁Travel": 15228, + "▁Cou": 15229, + "▁adolesc": 15230, + "▁servants": 15231, + "▁ups": 15232, + "▁reop": 15233, + "▁Castro": 15234, + "▁reasoning": 15235, + "▁buck": 15236, + "▁maneuver": 15237, + "▁precisely": 15238, + "▁vamp": 15239, + "season": 15240, + "▁pride": 15241, + "outed": 15242, + "▁rushed": 15243, + "▁payments": 15244, + "▁inHg": 15245, + "▁betray": 15246, + "▁filling": 15247, + "▁eg": 15248, + "▁Liv": 15249, + "▁Tasman": 15250, + "▁lava": 15251, + "▁satisfied": 15252, + "▁RO": 15253, + "ported": 15254, + "▁awa": 15255, + "▁Myst": 15256, + "▁terrible": 15257, + "▁McN": 15258, + "called": 15259, + "ountain": 15260, + "▁attain": 15261, + "▁speaks": 15262, + "▁pressed": 15263, + "▁analyses": 15264, + "bian": 15265, + "▁fut": 15266, + "▁Marcus": 15267, + "▁genome": 15268, + "lane": 15269, + "uana": 15270, + "▁hardly": 15271, + "▁Telegraph": 15272, + "▁locomotives": 15273, + "▁wage": 15274, + "▁Scholar": 15275, + "▁theaters": 15276, + "lla": 15277, + "▁Poly": 15278, + "▁Kath": 15279, + "▁traged": 15280, + "▁Shan": 15281, + "▁sixty": 15282, + "▁descended": 15283, + "aurus": 15284, + "ographed": 15285, + "▁dinosaurs": 15286, + "▁Crime": 15287, + "▁staged": 15288, + "▁Ultimately": 15289, + "▁SN": 15290, + "▁inability": 15291, + "▁associations": 15292, + "fa": 15293, + "chw": 15294, + "▁108": 15295, + "▁Dum": 15296, + "aline": 15297, + "▁lecture": 15298, + "▁operators": 15299, + "MP": 15300, + "▁citizenship": 15301, + "▁Pé": 15302, + "▁Mine": 15303, + "▁sketch": 15304, + "icating": 15305, + "▁asthma": 15306, + "▁matrix": 15307, + "ño": 15308, + "iri": 15309, + "▁Adventure": 15310, + "▁Percy": 15311, + "▁mouri": 15312, + "▁Ferdinand": 15313, + "icia": 15314, + "▁oxide": 15315, + "▁wanting": 15316, + "▁composers": 15317, + "▁(2)": 15318, + "▁Flood": 15319, + "▁Comics": 15320, + "▁Proper": 15321, + "▁borough": 15322, + "▁instant": 15323, + "▁frontier": 15324, + "▁designing": 15325, + "▁zo": 15326, + "▁Lil": 15327, + "▁Pun": 15328, + "▁Fischer": 15329, + "▁tumor": 15330, + "▁themed": 15331, + "▁stopping": 15332, + "▁1877": 15333, + "▁Crist": 15334, + "▁chantè": 15335, + "enes": 15336, + "▁flowing": 15337, + "▁Hond": 15338, + "▁Very": 15339, + "▁climbing": 15340, + "▁deficiency": 15341, + "▁Yard": 15342, + "▁McDonald": 15343, + "▁activists": 15344, + "▁contracted": 15345, + "aho": 15346, + "wig": 15347, + "cler": 15348, + "▁Bast": 15349, + "▁Hoff": 15350, + "▁dried": 15351, + "▁ekri": 15352, + "▁outs": 15353, + "mith": 15354, + "▁Gibson": 15355, + "▁estates": 15356, + "▁altogether": 15357, + "▁viv": 15358, + "▁Cultural": 15359, + "▁performers": 15360, + "▁autobiography": 15361, + "arte": 15362, + "health": 15363, + "▁widow": 15364, + "RNA": 15365, + "▁sectors": 15366, + "▁mobility": 15367, + "▁Newman": 15368, + "ugs": 15369, + "such": 15370, + "▁Enc": 15371, + "music": 15372, + "▁coloured": 15373, + "▁container": 15374, + "ucc": 15375, + "rano": 15376, + "isans": 15377, + "▁Choice": 15378, + "▁reflecting": 15379, + "zig": 15380, + "▁Hugo": 15381, + "▁computing": 15382, + "▁Glee": 15383, + "▁lith": 15384, + "▁smell": 15385, + "▁repaired": 15386, + "▁Sau": 15387, + "▁germ": 15388, + "▁monks": 15389, + "▁frozen": 15390, + "▁Crystal": 15391, + "▁malaria": 15392, + "▁McKinley": 15393, + "▁flee": 15394, + "▁pocket": 15395, + "cat": 15396, + "▁sink": 15397, + "▁generating": 15398, + "▁thoroughly": 15399, + "▁Schumacher": 15400, + "▁Ern": 15401, + "▁maj": 15402, + "elles": 15403, + "▁rats": 15404, + "▁logical": 15405, + "▁Fur": 15406, + "▁spinal": 15407, + "ographers": 15408, + "FS": 15409, + "▁Ellis": 15410, + "▁primitive": 15411, + "gett": 15412, + "▁Ply": 15413, + "▁undertook": 15414, + "▁1881": 15415, + "▁Shin": 15416, + "▁rifle": 15417, + "▁mushroom": 15418, + "iman": 15419, + "▁Singh": 15420, + "▁Kem": 15421, + "▁bind": 15422, + "▁silk": 15423, + "▁stems": 15424, + "▁Truman": 15425, + "▁1883": 15426, + "▁Browns": 15427, + "▁Veronica": 15428, + "▁recommendation": 15429, + "▁gum": 15430, + "▁Maxim": 15431, + "▁thrust": 15432, + "otted": 15433, + "▁Give": 15434, + "▁inequ": 15435, + "▁fatalities": 15436, + "pres": 15437, + "ishn": 15438, + "grim": 15439, + "▁perc": 15440, + "▁subjected": 15441, + "▁Thr": 15442, + "▁Spencer": 15443, + "▁dispatched": 15444, + "HL": 15445, + "asi": 15446, + "idad": 15447, + "▁Alz": 15448, + "uzzle": 15449, + "▁Julia": 15450, + "▁alike": 15451, + "▁bullet": 15452, + "▁Romanian": 15453, + "▁Generation": 15454, + "▁Tibet": 15455, + "▁Harper": 15456, + "▁labels": 15457, + "▁blockade": 15458, + "▁limestone": 15459, + "▁tens": 15460, + "▁Turks": 15461, + "▁fights": 15462, + "▁labeled": 15463, + "▁fare": 15464, + "▁Malay": 15465, + "▁ridic": 15466, + "effective": 15467, + "▁MLB": 15468, + "▁Cruz": 15469, + "▁Glou": 15470, + "▁Senior": 15471, + "▁integral": 15472, + "▁maturity": 15473, + "▁introduces": 15474, + "▁passages": 15475, + "▁inhabited": 15476, + "▁rush": 15477, + "▁Panama": 15478, + "▁intensive": 15479, + "▁corp": 15480, + "▁Orton": 15481, + "▁Block": 15482, + "▁insert": 15483, + "▁patent": 15484, + "▁answered": 15485, + "▁Mega": 15486, + "▁underneath": 15487, + "▁Blair": 15488, + "▁Sed": 15489, + "▁1869": 15490, + "▁Bott": 15491, + "▁happiness": 15492, + "abl": 15493, + "▁grains": 15494, + "▁antiqu": 15495, + "▁clusters": 15496, + "▁Gas": 15497, + "phabet": 15498, + "▁solving": 15499, + "▁triggered": 15500, + "appa": 15501, + "▁Lag": 15502, + "▁Lan": 15503, + "▁tide": 15504, + "▁joins": 15505, + "▁outline": 15506, + "▁Ost": 15507, + "▁dragon": 15508, + "▁Certain": 15509, + "▁Species": 15510, + "▁meks": 15511, + "▁terrestrial": 15512, + "▁Seri": 15513, + "▁melan": 15514, + "▁absorb": 15515, + "phan": 15516, + "▁Physical": 15517, + "▁concentrate": 15518, + "▁costumes": 15519, + "▁variants": 15520, + "▁Bangladesh": 15521, + "▁appreciated": 15522, + "▁Juliet": 15523, + "▁incomp": 15524, + "▁overth": 15525, + "▁unveiled": 15526, + "▁eldest": 15527, + "▁aquatic": 15528, + "▁Lac": 15529, + "▁defining": 15530, + "▁investigating": 15531, + "oqu": 15532, + "▁FM": 15533, + "▁1871": 15534, + "▁Scout": 15535, + "▁stiff": 15536, + "▁Va": 15537, + "▁Tall": 15538, + "▁incorporates": 15539, + "▁Chuck": 15540, + "▁Better": 15541, + "▁emission": 15542, + "▁reproduction": 15543, + "▁syll": 15544, + "▁tear": 15545, + "▁ware": 15546, + "▁Gonzá": 15547, + "▁gusts": 15548, + "▁Deputy": 15549, + "▁Circuit": 15550, + "▁Telenovela": 15551, + "icus": 15552, + "▁jen": 15553, + "ioxid": 15554, + "▁Buch": 15555, + "▁Harm": 15556, + "▁Smack": 15557, + "▁Contem": 15558, + "▁influenza": 15559, + "▁NL": 15560, + "▁Hawaiian": 15561, + "▁Nicolas": 15562, + "GA": 15563, + "oft": 15564, + "▁tan": 15565, + "atile": 15566, + "emics": 15567, + "▁Soviets": 15568, + "▁plaque": 15569, + "▁forgotten": 15570, + "ouk": 15571, + "▁Gru": 15572, + "▁hell": 15573, + "▁rally": 15574, + "▁cater": 15575, + "▁disgu": 15576, + "▁vector": 15577, + "artz": 15578, + "▁reper": 15579, + "▁tackle": 15580, + "▁somewhere": 15581, + "cin": 15582, + "ères": 15583, + "▁Neu": 15584, + "▁Exped": 15585, + "▁Palmer": 15586, + "▁heroes": 15587, + "▁valued": 15588, + "▁OC": 15589, + "▁JNA": 15590, + "▁entity": 15591, + "ados": 15592, + "▁Kru": 15593, + "▁Nept": 15594, + "▁dorm": 15595, + "▁Emily": 15596, + "▁Making": 15597, + "▁frames": 15598, + "▁revived": 15599, + "▁incorporating": 15600, + "▁sympat": 15601, + "▁Phillies": 15602, + "▁absorption": 15603, + "▁Assess": 15604, + "▁bark": 15605, + "▁Illust": 15606, + "▁González": 15607, + "▁©": 15608, + "stock": 15609, + "▁purple": 15610, + "▁ensuing": 15611, + "icals": 15612, + "▁Suff": 15613, + "▁wool": 15614, + "▁seeks": 15615, + "▁theor": 15616, + "ometer": 15617, + "▁heated": 15618, + "▁Michelle": 15619, + "▁pad": 15620, + "▁adul": 15621, + "▁Steam": 15622, + "▁observing": 15623, + "▁speculated": 15624, + "▁Chet": 15625, + "▁fatty": 15626, + "▁Guatem": 15627, + "▁appealed": 15628, + "len": 15629, + "▁Dup": 15630, + "▁intrig": 15631, + "▁sporting": 15632, + "▁addressing": 15633, + "urbs": 15634, + "armed": 15635, + "▁Curtis": 15636, + "▁Flanders": 15637, + "émon": 15638, + "▁qualify": 15639, + "▁regards": 15640, + "▁offspring": 15641, + "▁1/": 15642, + "▁2)": 15643, + "▁UB": 15644, + "▁ally": 15645, + "▁fake": 15646, + "▁shirt": 15647, + "▁Tucker": 15648, + "▁cycles": 15649, + "▁update": 15650, + "▁unnecessary": 15651, + "▁peas": 15652, + "retion": 15653, + "▁Films": 15654, + "▁dors": 15655, + "ashire": 15656, + "rens": 15657, + "▁5,": 15658, + "stad": 15659, + "▁1866": 15660, + "▁Headquarters": 15661, + "▁terr": 15662, + "asaki": 15663, + "erves": 15664, + "▁paved": 15665, + "▁counts": 15666, + "▁receiver": 15667, + "iovascular": 15668, + "▁surpassed": 15669, + "▁Virt": 15670, + "veloped": 15671, + "▁conquered": 15672, + "▁unusually": 15673, + "▁107": 15674, + "▁Cabinet": 15675, + "▁systematic": 15676, + "opol": 15677, + "▁EPA": 15678, + "stown": 15679, + "▁Cann": 15680, + "▁dairy": 15681, + "▁Should": 15682, + "▁remake": 15683, + "▁speeches": 15684, + "eward": 15685, + "vanced": 15686, + "▁Member": 15687, + "▁Crawford": 15688, + "▁exhibits": 15689, + "▁prolonged": 15690, + "▁cyt": 15691, + "▁interrupted": 15692, + "PV": 15693, + "▁maid": 15694, + "▁phon": 15695, + "ètisman": 15696, + "▁Basketball": 15697, + "▁Mam": 15698, + "ochond": 15699, + "▁Bron": 15700, + "▁Middles": 15701, + "▁breakthrough": 15702, + "df": 15703, + "py": 15704, + "that": 15705, + "▁slope": 15706, + "▁Wellington": 15707, + "▁proceedings": 15708, + "▁Gw": 15709, + "▁Pont": 15710, + "▁lobby": 15711, + "▁Hamb": 15712, + "▁1867": 15713, + "▁1882": 15714, + "▁Fergus": 15715, + "▁phenomena": 15716, + "▁custody": 15717, + "▁competitors": 15718, + "▁devastating": 15719, + "agne": 15720, + "▁chess": 15721, + "▁diary": 15722, + "ription": 15723, + "▁Prison": 15724, + "▁Romania": 15725, + "▁contacts": 15726, + "▁Cardinals": 15727, + "▁Eb": 15728, + "▁organism": 15729, + "▁Sr": 15730, + "idian": 15731, + "▁landings": 15732, + "▁Robb": 15733, + "▁Seas": 15734, + "▁applies": 15735, + "▁Interest": 15736, + "▁Tournament": 15737, + "▁radioactive": 15738, + "▁bless": 15739, + "▁motivation": 15740, + "asse": 15741, + "mail": 15742, + "▁haul": 15743, + "▁opined": 15744, + "You": 15745, + "▁Yo": 15746, + "▁1873": 15747, + "▁privacy": 15748, + "▁singers": 15749, + "▁Thursday": 15750, + "▁everybody": 15751, + "▁Lancashire": 15752, + "▁reminiscent": 15753, + "▁tet": 15754, + "▁hub": 15755, + "▁deadly": 15756, + "▁jersey": 15757, + "▁marginal": 15758, + "▁captivity": 15759, + "▁ambassador": 15760, + "-10": 15761, + "new": 15762, + "▁Mile": 15763, + "▁strictly": 15764, + "▁Clear": 15765, + "▁fitting": 15766, + "icester": 15767, + "▁blacks": 15768, + "▁rebounds": 15769, + "▁spark": 15770, + "▁witch": 15771, + "▁lon": 15772, + "▁Parad": 15773, + "▁eject": 15774, + "▁Antarctic": 15775, + "▁9.": 15776, + "▁Calvin": 15777, + "▁Jeremy": 15778, + "▁festivals": 15779, + "▁practiced": 15780, + "mid": 15781, + "▁yd": 15782, + "produ": 15783, + "▁shar": 15784, + "▁Edwin": 15785, + "onomous": 15786, + "▁ranged": 15787, + "▁roster": 15788, + "▁securing": 15789, + "▁algorithm": 15790, + "▁privately": 15791, + "lay": 15792, + "amous": 15793, + "▁genius": 15794, + "▁plasma": 15795, + "itational": 15796, + "▁sovereignty": 15797, + "▁unsuccessfully": 15798, + "text": 15799, + "uclear": 15800, + "▁locked": 15801, + "▁sends": 15802, + "▁governed": 15803, + "▁tactical": 15804, + "▁Hat": 15805, + "▁concess": 15806, + "▁Adelaide": 15807, + "▁Michaels": 15808, + "illon": 15809, + "ulative": 15810, + "▁analyze": 15811, + "▁joke": 15812, + "▁Masters": 15813, + "▁Alzheimer": 15814, + "▁Cos": 15815, + "▁Dawn": 15816, + "gestion": 15817, + "▁angles": 15818, + "▁grammar": 15819, + "▁savings": 15820, + "▁Russians": 15821, + "▁Cav": 15822, + "▁René": 15823, + "▁default": 15824, + "▁Bé": 15825, + "▁Une": 15826, + "▁Gand": 15827, + "▁Official": 15828, + "▁expressing": 15829, + "zac": 15830, + "▁1)": 15831, + "▁stance": 15832, + "▁unemployment": 15833, + "asses": 15834, + "▁knock": 15835, + "▁inadequate": 15836, + "▁investments": 15837, + "▁Floyd": 15838, + "Go": 15839, + "▁jail": 15840, + "ptions": 15841, + "▁Tues": 15842, + "▁leak": 15843, + "▁arter": 15844, + "▁convinc": 15845, + "▁magical": 15846, + "▁occurrence": 15847, + "osely": 15848, + "kinson": 15849, + "▁Edgar": 15850, + "▁neighbouring": 15851, + "aye": 15852, + "eut": 15853, + "▁1878": 15854, + "criptions": 15855, + "▁limiting": 15856, + "▁Relations": 15857, + "nery": 15858, + "odon": 15859, + "▁Meet": 15860, + "▁promises": 15861, + "▁surveillance": 15862, + "oping": 15863, + "▁Caesar": 15864, + "▁painter": 15865, + "atsu": 15866, + "▁purely": 15867, + "▁Aviation": 15868, + "▁exceeded": 15869, + "▁recreational": 15870, + "lake": 15871, + "▁10,": 15872, + "▁excluded": 15873, + "irk": 15874, + "▁Loc": 15875, + "▁Haiti": 15876, + "▁Metac": 15877, + "▁toile": 15878, + "▁metropolitan": 15879, + "▁ti": 15880, + "▁cellular": 15881, + "▁complimented": 15882, + "▁entries": 15883, + "▁geographical": 15884, + "▁hes": 15885, + "reced": 15886, + "▁bureau": 15887, + "▁salmon": 15888, + "▁enacted": 15889, + "▁sensors": 15890, + "IR": 15891, + "▁thres": 15892, + "▁hate": 15893, + "▁Smart": 15894, + "▁microscop": 15895, + "▁156": 15896, + "▁los": 15897, + "▁athlete": 15898, + "▁tunnels": 15899, + "▁Viol": 15900, + "▁grat": 15901, + "▁slopes": 15902, + "▁embedded": 15903, + "▁scenarios": 15904, + "▁proc": 15905, + "▁Rocky": 15906, + "▁ram": 15907, + "▁lunar": 15908, + "▁rook": 15909, + "▁Squad": 15910, + "▁instrumentation": 15911, + "IL": 15912, + "▁Scand": 15913, + "ultural": 15914, + "âtre": 15915, + "Music": 15916, + "▁backup": 15917, + "▁liberty": 15918, + "▁whites": 15919, + "chard": 15920, + "▁Syans": 15921, + "▁skeleton": 15922, + "▁nuts": 15923, + "▁snake": 15924, + "▁Single": 15925, + "▁delegation": 15926, + "elfth": 15927, + "▁anten": 15928, + "imental": 15929, + "▁matched": 15930, + "▁shortage": 15931, + "▁Blake": 15932, + "▁Baldwin": 15933, + "▁Fernando": 15934, + "plane": 15935, + "▁occupy": 15936, + "▁honorary": 15937, + "▁supporter": 15938, + "▁Fra": 15939, + "▁Clif": 15940, + "▁freight": 15941, + "▁horsepower": 15942, + "ulent": 15943, + "▁paths": 15944, + "▁triangle": 15945, + "▁paragraph": 15946, + "▁dump": 15947, + "▁Engineers": 15948, + "▁Bog": 15949, + "▁Cuban": 15950, + "▁stressed": 15951, + "▁contested": 15952, + "Tunes": 15953, + "▁Instit": 15954, + "▁Eye": 15955, + "▁tender": 15956, + "▁Geoffrey": 15957, + "▁Job": 15958, + "▁playable": 15959, + "▁declaring": 15960, + "▁nationally": 15961, + "▁purchasing": 15962, + "idi": 15963, + "▁tennis": 15964, + "▁worthy": 15965, + "lar": 15966, + "▁exempl": 15967, + "▁corridor": 15968, + "▁maternal": 15969, + "▁spectators": 15970, + "▁mosqu": 15971, + "▁discusses": 15972, + "ovsky": 15973, + "▁Paraly": 15974, + "▁conclusions": 15975, + "As": 15976, + "▁Import": 15977, + "▁orchestral": 15978, + "%)": 15979, + "beit": 15980, + "▁resembles": 15981, + "▁Linda": 15982, + "▁Theory": 15983, + "▁Leicester": 15984, + "▁Essex": 15985, + "▁loves": 15986, + "▁1868": 15987, + "▁Wednesday": 15988, + "umar": 15989, + "▁interventions": 15990, + "iasm": 15991, + "▁Calgary": 15992, + "▁SmackDown": 15993, + "▁ore": 15994, + "▁farmer": 15995, + "▁essence": 15996, + "▁synthetic": 15997, + "▁initiatives": 15998, + "▁Grad": 15999, + "▁Knights": 16000, + "▁counted": 16001, + "▁generals": 16002, + "▁IB": 16003, + "▁Annie": 16004, + "▁halted": 16005, + "▁phones": 16006, + "▁antibiotics": 16007, + "▁Hil": 16008, + "▁Sue": 16009, + "▁Brain": 16010, + "▁Galile": 16011, + "▁ironcl": 16012, + "▁chocolate": 16013, + "▁Commissioner": 16014, + "sover": 16015, + "▁cope": 16016, + "▁Tiger": 16017, + "▁utter": 16018, + "▁faction": 16019, + "▁Monster": 16020, + "▁Kos": 16021, + "▁Pall": 16022, + "▁Blanc": 16023, + "▁Chairman": 16024, + "▁combining": 16025, + "▁obviously": 16026, + "zan": 16027, + "ichi": 16028, + "aston": 16029, + "example": 16030, + "▁dynamics": 16031, + "▁meditation": 16032, + "amy": 16033, + "spe": 16034, + "▁Arena": 16035, + "clamation": 16036, + "▁Plymouth": 16037, + "▁memorable": 16038, + "opy": 16039, + "obic": 16040, + "▁RBI": 16041, + "▁vag": 16042, + "brates": 16043, + "▁Plate": 16044, + "▁susceptible": 16045, + "apa": 16046, + "illion": 16047, + "▁massacre": 16048, + "eros": 16049, + "▁Brew": 16050, + "▁frigate": 16051, + "▁currents": 16052, + "▁Declaration": 16053, + "érard": 16054, + "▁toss": 16055, + "▁Norse": 16056, + "▁uncons": 16057, + "▁surgical": 16058, + "/20": 16059, + "▁lig": 16060, + "▁tears": 16061, + "▁congregation": 16062, + "▁vom": 16063, + "▁Rosa": 16064, + "▁wash": 16065, + "▁Adrian": 16066, + "ellation": 16067, + "▁Newport": 16068, + "▁Parkway": 16069, + "▁declining": 16070, + "▁Tales": 16071, + "▁Ster": 16072, + "▁unpreced": 16073, + "▁Fant": 16074, + "esters": 16075, + "▁overh": 16076, + "▁uprising": 16077, + "▁commentators": 16078, + "▁1872": 16079, + "▁Berry": 16080, + "▁Karen": 16081, + "▁anthem": 16082, + "▁pressures": 16083, + "▁unprecedented": 16084, + "ilize": 16085, + "▁Faith": 16086, + "▁Barrett": 16087, + "▁inscription": 16088, + "▁neighborhoods": 16089, + "▁dup": 16090, + "▁sty": 16091, + "▁spare": 16092, + "▁upgrade": 16093, + "iggins": 16094, + "▁flags": 16095, + "▁inferior": 16096, + "▁Byzant": 16097, + "▁editors": 16098, + "▁intentions": 16099, + "▁mbar": 16100, + "▁Metal": 16101, + "▁bowled": 16102, + "▁performs": 16103, + "▁allegations": 16104, + "▁developmental": 16105, + "▁Joshua": 16106, + "▁honored": 16107, + "▁Resident": 16108, + "▁northwestern": 16109, + "Pa": 16110, + "about": 16111, + "▁Paralymp": 16112, + "▁prevents": 16113, + "▁RS": 16114, + "▁menu": 16115, + "▁diving": 16116, + "▁premye": 16117, + "ceptions": 16118, + "▁exagger": 16119, + "uj": 16120, + "▁Annual": 16121, + "ebe": 16122, + "unting": 16123, + "▁limbs": 16124, + "▁lined": 16125, + "▁patrols": 16126, + "▁Alc": 16127, + "▁gig": 16128, + "▁ambig": 16129, + "▁iTunes": 16130, + "▁packed": 16131, + "▁accepting": 16132, + "▁exceptional": 16133, + "▁Lic": 16134, + "▁rape": 16135, + "▁repr": 16136, + "ailand": 16137, + "▁botan": 16138, + "▁Canucks": 16139, + "rews": 16140, + "html": 16141, + "Med": 16142, + "nar": 16143, + "penter": 16144, + "▁reconcil": 16145, + "▁Expedition": 16146, + "▁Drag": 16147, + "▁Enix": 16148, + "▁Quarter": 16149, + "lim": 16150, + "▁fluct": 16151, + "appropri": 16152, + "▁Pokémon": 16153, + "▁IT": 16154, + "iast": 16155, + "▁barn": 16156, + "▁trop": 16157, + "▁juice": 16158, + "▁Baptist": 16159, + "▁Maxwell": 16160, + "▁informal": 16161, + "▁prevalent": 16162, + "▁Doll": 16163, + "▁viable": 16164, + "▁Newfound": 16165, + "qual": 16166, + "▁116": 16167, + "▁Leigh": 16168, + "▁impacted": 16169, + "▁violation": 16170, + "▁obl": 16171, + "▁auction": 16172, + "▁editorial": 16173, + "▁Manager": 16174, + "▁linking": 16175, + "vals": 16176, + "▁fungi": 16177, + "▁trails": 16178, + "▁neurons": 16179, + "▁flexibility": 16180, + "EE": 16181, + "▁atom": 16182, + "▁stepped": 16183, + "▁Augustus": 16184, + "▁instructor": 16185, + "▁mast": 16186, + "▁furniture": 16187, + "tz": 16188, + "▁metap": 16189, + "▁vault": 16190, + "▁roller": 16191, + "▁posthum": 16192, + "pa": 16193, + "▁Lucy": 16194, + "iliary": 16195, + "▁sne": 16196, + "▁trucks": 16197, + "▁precurs": 16198, + "▁270": 16199, + "▁nic": 16200, + "lette": 16201, + "▁sits": 16202, + "▁regulate": 16203, + "▁decreases": 16204, + "▁Nonetheless": 16205, + "eren": 16206, + "▁deton": 16207, + "▁fuels": 16208, + "avelength": 16209, + "inters": 16210, + "▁monarchy": 16211, + "▁meaningful": 16212, + "▁fond": 16213, + "▁Previous": 16214, + "endum": 16215, + "▁Bermuda": 16216, + "▁bicy": 16217, + "▁plag": 16218, + "▁regulatory": 16219, + "NS": 16220, + "▁Cyclone": 16221, + "▁lowered": 16222, + "▁Ti": 16223, + "dict": 16224, + "hero": 16225, + "▁Riley": 16226, + "▁sheets": 16227, + "▁behavioral": 16228, + "▁feas": 16229, + "iblings": 16230, + "▁Koreans": 16231, + "▁Looking": 16232, + "▁nicknamed": 16233, + "▁Veter": 16234, + "▁Shelley": 16235, + "▁successes": 16236, + "oan": 16237, + "▁lawyers": 16238, + "▁Wikipedia": 16239, + "anga": 16240, + "▁Ide": 16241, + "▁Cohen": 16242, + "lectric": 16243, + "▁Capitol": 16244, + "▁Contemporary": 16245, + "ndez": 16246, + "▁Advanced": 16247, + "ogens": 16248, + "▁artic": 16249, + "▁antibodies": 16250, + "▁nationwide": 16251, + "▁accelerated": 16252, + "▁sustainability": 16253, + "▁HM": 16254, + "▁quot": 16255, + "▁belongs": 16256, + "▁Chandler": 16257, + "umer": 16258, + "itars": 16259, + "▁suspic": 16260, + "author": 16261, + "▁tales": 16262, + "▁schemes": 16263, + "▁warriors": 16264, + "▁WWF": 16265, + "▁Heath": 16266, + "▁infectious": 16267, + "cip": 16268, + "won": 16269, + "▁vow": 16270, + "▁Hanc": 16271, + "▁annoy": 16272, + "▁slide": 16273, + "▁na": 16274, + "▁Jin": 16275, + "▁Sah": 16276, + "▁illeg": 16277, + "▁Dudley": 16278, + "▁Motion": 16279, + "oi": 16280, + "▁Dy": 16281, + "▁discipl": 16282, + "▁undergraduate": 16283, + "▁Rah": 16284, + "▁Chop": 16285, + "▁catalog": 16286, + "▁physicians": 16287, + "usty": 16288, + "▁admission": 16289, + "▁ga": 16290, + "▁unde": 16291, + "▁Bosnia": 16292, + "star": 16293, + "▁Rice": 16294, + "▁bout": 16295, + "▁conviction": 16296, + "nolds": 16297, + "▁Left": 16298, + "urable": 16299, + "▁Saints": 16300, + "▁cooler": 16301, + "▁libraries": 16302, + "▁Newfoundland": 16303, + "92": 16304, + "▁creativity": 16305, + "▁counterparts": 16306, + "▁ul": 16307, + "▁phyl": 16308, + "▁enthusiastic": 16309, + "▁Rot": 16310, + "▁Crom": 16311, + "▁Fear": 16312, + "▁orbital": 16313, + "▁redesign": 16314, + "▁XV": 16315, + "▁Written": 16316, + "ugu": 16317, + "orpe": 16318, + "inee": 16319, + "▁gym": 16320, + "ifting": 16321, + "▁cheese": 16322, + "▁joints": 16323, + "▁midnight": 16324, + "riet": 16325, + "▁Rav": 16326, + "anzas": 16327, + "▁Below": 16328, + "▁Diana": 16329, + "▁Rhode": 16330, + "▁fortune": 16331, + "▁Treasury": 16332, + "ár": 16333, + "oktè": 16334, + "▁impair": 16335, + "▁Vermont": 16336, + "▁mercury": 16337, + "▁disposal": 16338, + "PD": 16339, + "rob": 16340, + "arin": 16341, + "▁Viv": 16342, + "▁slowed": 16343, + "▁preceded": 16344, + "▁Rare": 16345, + "▁Gross": 16346, + "▁shifts": 16347, + "▁Lay": 16348, + "▁oste": 16349, + "▁Cord": 16350, + "▁Yang": 16351, + "▁Taking": 16352, + "rared": 16353, + "▁buses": 16354, + "▁dolph": 16355, + "▁observers": 16356, + "▁engra": 16357, + "▁newer": 16358, + "▁texture": 16359, + "roximately": 16360, + "▁Busch": 16361, + "▁programmes": 16362, + "doms": 16363, + "▁jwe": 16364, + "▁displacement": 16365, + "adder": 16366, + "▁Adult": 16367, + "▁obstacles": 16368, + "ools": 16369, + "▁deceased": 16370, + "▁agreements": 16371, + "▁adaptations": 16372, + "▁Janet": 16373, + "▁discontinued": 16374, + "Os": 16375, + "▁plut": 16376, + "▁dozens": 16377, + "▁stripped": 16378, + "▁Associated": 16379, + "gra": 16380, + "▁si": 16381, + "▁traces": 16382, + "▁crowned": 16383, + "▁Logan": 16384, + "▁Alejandro": 16385, + "▁Period": 16386, + "enhower": 16387, + "▁Visual": 16388, + "▁Neither": 16389, + "▁Schw": 16390, + "▁opted": 16391, + "▁melting": 16392, + "▁AND": 16393, + "▁missiles": 16394, + "▁consuming": 16395, + "▁invitation": 16396, + "affe": 16397, + "rors": 16398, + "izable": 16399, + "▁pec": 16400, + "▁rent": 16401, + "▁Chase": 16402, + "▁crowds": 16403, + "▁1879": 16404, + "▁ende": 16405, + "▁Damage": 16406, + "▁Surrey": 16407, + "▁sexuality": 16408, + "ishna": 16409, + "disc": 16410, + "holm": 16411, + "rina": 16412, + "ocate": 16413, + "▁Combat": 16414, + "▁implies": 16415, + "▁Thailand": 16416, + "▁continually": 16417, + "▁expressions": 16418, + "▁Ord": 16419, + "▁palm": 16420, + "▁registration": 16421, + "rosse": 16422, + "▁Private": 16423, + "▁ensemble": 16424, + "▁allegedly": 16425, + "ea": 16426, + "▁Punk": 16427, + "▁brit": 16428, + "▁lady": 16429, + "▁doses": 16430, + "soon": 16431, + "▁Kom": 16432, + "▁Chick": 16433, + "▁irrigation": 16434, + "éâtre": 16435, + "▁Fraser": 16436, + "▁activist": 16437, + "▁Lancaster": 16438, + "▁3:": 16439, + "▁157": 16440, + "▁Kes": 16441, + "▁Lot": 16442, + "lance": 16443, + "▁Franse": 16444, + "▁phrases": 16445, + "mega": 16446, + "▁210": 16447, + "▁anarch": 16448, + "oxide": 16449, + "▁Panyòl": 16450, + "▁psy": 16451, + "▁Birth": 16452, + "▁Saudi": 16453, + "▁cameo": 16454, + "▁renowned": 16455, + "▁contaminated": 16456, + "▁Rams": 16457, + "▁Plaza": 16458, + "▁Gérard": 16459, + "▁Mechan": 16460, + "▁decent": 16461, + "▁siblings": 16462, + "▁feminist": 16463, + "▁factories": 16464, + "hot": 16465, + "▁suburb": 16466, + "▁doubled": 16467, + "▁Advance": 16468, + "▁likelihood": 16469, + "ipel": 16470, + "▁Vul": 16471, + "▁Gospel": 16472, + "▁Places": 16473, + "▁Timber": 16474, + "▁stamp": 16475, + "▁conductor": 16476, + "atri": 16477, + "▁boom": 16478, + "agonal": 16479, + "▁Bened": 16480, + "▁Shadow": 16481, + "▁Hancock": 16482, + "ilogy": 16483, + "▁hydro": 16484, + "▁racism": 16485, + "▁103": 16486, + "▁sic": 16487, + "▁Starr": 16488, + "▁emergence": 16489, + "▁evaluated": 16490, + "formula": 16491, + "▁conclude": 16492, + "▁Qur": 16493, + "sburg": 16494, + "▁likes": 16495, + "pectives": 16496, + "▁molecule": 16497, + "▁Encyclopedia": 16498, + "▁honors": 16499, + "▁static": 16500, + "due": 16501, + "▁1848": 16502, + "▁Peru": 16503, + "▁Think": 16504, + "▁wheels": 16505, + "▁handful": 16506, + "▁minimize": 16507, + "▁Eisenhower": 16508, + "▁accumulated": 16509, + "▁Lor": 16510, + "▁Pos": 16511, + "▁juvenile": 16512, + "▁nutrient": 16513, + "▁Gerald": 16514, + "▁lectures": 16515, + "▁Male": 16516, + "▁inex": 16517, + "▁Lynch": 16518, + "▁consp": 16519, + "▁Daniels": 16520, + "▁caliber": 16521, + "▁realizes": 16522, + "▁teachings": 16523, + "fam": 16524, + "auses": 16525, + "gency": 16526, + "▁costly": 16527, + "▁indication": 16528, + "▁spatial": 16529, + "▁enthusiasm": 16530, + "▁incredible": 16531, + "▁correspondence": 16532, + "▁128": 16533, + "▁Agre": 16534, + "▁wise": 16535, + "asis": 16536, + "ayette": 16537, + "▁Mounted": 16538, + "▁antioxid": 16539, + "group": 16540, + "▁electr": 16541, + "▁incidence": 16542, + "9)": 16543, + "▁pounder": 16544, + "▁disliked": 16545, + "▁backgrounds": 16546, + "ovich": 16547, + "▁enlarged": 16548, + "▁innocent": 16549, + "▁cree": 16550, + "▁Irving": 16551, + "▁commod": 16552, + "▁Architect": 16553, + "▁Nashville": 16554, + "▁Adventures": 16555, + "▁Cyp": 16556, + "▁expend": 16557, + "▁guides": 16558, + "▁leagues": 16559, + "kan": 16560, + "▁module": 16561, + "▁Fan": 16562, + "iscal": 16563, + "▁2021": 16564, + "▁dirt": 16565, + "▁Words": 16566, + "▁Preston": 16567, + "▁batsman": 16568, + "▁punct": 16569, + "▁inserted": 16570, + "waffe": 16571, + "▁whereby": 16572, + "▁tang": 16573, + "▁Beautiful": 16574, + "▁aesthetic": 16575, + "▁fortified": 16576, + "iev": 16577, + "adic": 16578, + "oise": 16579, + "▁Glenn": 16580, + "▁detached": 16581, + "▁recycling": 16582, + "plus": 16583, + "▁Lik": 16584, + "otilla": 16585, + "▁Wolver": 16586, + "▁delivering": 16587, + "5,": 16588, + "▁ps": 16589, + "leaf": 16590, + "chron": 16591, + "▁Spin": 16592, + "▁Wool": 16593, + "igrant": 16594, + "▁certification": 16595, + "role": 16596, + "auer": 16597, + "▁brass": 16598, + "▁teens": 16599, + "▁vitamins": 16600, + "▁negotiate": 16601, + "pay": 16602, + "▁flaw": 16603, + "opular": 16604, + "▁jokes": 16605, + "▁skelet": 16606, + "▁Bulgaria": 16607, + "▁Finnish": 16608, + "▁Tuesday": 16609, + "▁entertaining": 16610, + "▁NE": 16611, + "▁lav": 16612, + "▁Pred": 16613, + "▁blown": 16614, + "▁Select": 16615, + "%.": 16616, + "▁coral": 16617, + "▁teenage": 16618, + "▁168": 16619, + "▁Manning": 16620, + "▁gasoline": 16621, + "bral": 16622, + "▁generic": 16623, + "▁maritime": 16624, + "▁convenient": 16625, + "▁Sharp": 16626, + "▁guitars": 16627, + "▁Kub": 16628, + "▁aven": 16629, + "▁Venez": 16630, + "▁saves": 16631, + "▁dominance": 16632, + "▁cov": 16633, + "onnell": 16634, + "▁Present": 16635, + "▁brush": 16636, + "▁advers": 16637, + "▁coordination": 16638, + "▁odds": 16639, + "▁intra": 16640, + "▁diesel": 16641, + "▁126": 16642, + "▁Popular": 16643, + "▁pursuing": 16644, + "▁Balk": 16645, + "éric": 16646, + "▁Armenia": 16647, + "▁philosopher": 16648, + "▁Subsequently": 16649, + "ths": 16650, + "▁113": 16651, + "ologic": 16652, + "▁Warsaw": 16653, + "▁exempt": 16654, + "▁locomotive": 16655, + "▁dishes": 16656, + "gic": 16657, + "▁Element": 16658, + "▁grandson": 16659, + "▁ost": 16660, + "itian": 16661, + "▁Kerr": 16662, + "▁panic": 16663, + "▁trout": 16664, + "letcher": 16665, + "▁comparisons": 16666, + "6)": 16667, + "▁PhD": 16668, + "iances": 16669, + "▁farther": 16670, + "▁referee": 16671, + "▁Consider": 16672, + "▁Metacritic": 16673, + "▁eager": 16674, + "▁catast": 16675, + "▁retros": 16676, + "▁sensor": 16677, + "▁Jeffrey": 16678, + "▁nesting": 16679, + "▁strains": 16680, + "▁carbohyd": 16681, + "▁nobility": 16682, + "▁RPG": 16683, + "▁beaches": 16684, + "▁abolished": 16685, + "▁manuscripts": 16686, + "▁unconscious": 16687, + "▁religions": 16688, + "hev": 16689, + "▁TO": 16690, + "▁regained": 16691, + "bin": 16692, + "▁Double": 16693, + "▁Por": 16694, + "▁whit": 16695, + "▁BL": 16696, + "▁Sacr": 16697, + "▁olive": 16698, + "▁orbits": 16699, + "▁chambers": 16700, + "▁112": 16701, + "▁tier": 16702, + "▁agenda": 16703, + "▁Current": 16704, + "▁immunity": 16705, + "▁Admiralty": 16706, + "▁alternatives": 16707, + "ambo": 16708, + "▁relates": 16709, + "▁Monument": 16710, + "▁vegetable": 16711, + "krit": 16712, + "▁Wis": 16713, + "▁saint": 16714, + "▁Image": 16715, + "▁constraints": 16716, + "▁Legion": 16717, + "▁Luftwaffe": 16718, + "ioned": 16719, + "▁Comment": 16720, + "▁remarks": 16721, + "▁Introduction": 16722, + "anan": 16723, + "▁Franz": 16724, + "▁Griffin": 16725, + "▁retaining": 16726, + "▁geographic": 16727, + "ibal": 16728, + "▁ibn": 16729, + "▁Mons": 16730, + "▁gaps": 16731, + "▁virtue": 16732, + "▁rituals": 16733, + "ags": 16734, + "lew": 16735, + "quin": 16736, + "▁Tat": 16737, + "▁steal": 16738, + "▁Gardens": 16739, + "▁nickel": 16740, + "▁declare": 16741, + "▁grossed": 16742, + "▁spirits": 16743, + "▁wavelength": 16744, + "ovo": 16745, + "3333": 16746, + "vous": 16747, + "▁Munich": 16748, + "▁hollow": 16749, + "▁obtaining": 16750, + "▁pir": 16751, + "▁1820": 16752, + "▁Wings": 16753, + "▁imprisonment": 16754, + "▁gw": 16755, + "asco": 16756, + "uble": 16757, + "▁pulling": 16758, + "▁battlecruisers": 16759, + "▁suck": 16760, + "▁electrom": 16761, + "chant": 16762, + "▁Perth": 16763, + "▁Physics": 16764, + "▁Assistant": 16765, + "▁Doug": 16766, + "▁Porter": 16767, + "▁suburban": 16768, + "▁mutations": 16769, + "▁u": 16770, + "vwa": 16771, + "▁lemurs": 16772, + "▁rewrit": 16773, + "▁fulfill": 16774, + "elong": 16775, + "▁Arabia": 16776, + "▁differs": 16777, + "▁epidemic": 16778, + "▁invested": 16779, + "▁metaphor": 16780, + "▁necessity": 16781, + "atha": 16782, + "bial": 16783, + "▁orth": 16784, + "alm": 16785, + "olithic": 16786, + "riction": 16787, + "▁marble": 16788, + "▁Chapman": 16789, + "▁realised": 16790, + "▁fantastic": 16791, + "▁precision": 16792, + "official": 16793, + "▁Skinner": 16794, + "▁toys": 16795, + "▁Clean": 16796, + "▁lease": 16797, + "▁vacuum": 16798, + "▁harmony": 16799, + "▁borrowed": 16800, + "▁uncommon": 16801, + "▁countryside": 16802, + "ancial": 16803, + "▁Aguil": 16804, + "▁Windsor": 16805, + "▁Dere": 16806, + "ière": 16807, + "▁Ming": 16808, + "ealous": 16809, + "giving": 16810, + "▁Syrian": 16811, + "web": 16812, + "▁Wake": 16813, + "▁outfit": 16814, + "▁Different": 16815, + "▁supplements": 16816, + "▁CF": 16817, + "▁CG": 16818, + "▁Dart": 16819, + "▁Grande": 16820, + "▁albeit": 16821, + "▁disturbed": 16822, + "ilib": 16823, + "umatic": 16824, + "▁loses": 16825, + "▁regret": 16826, + "▁revenues": 16827, + "ride": 16828, + "▁lod": 16829, + "▁dull": 16830, + "▁1⁄": 16831, + "▁heal": 16832, + "astics": 16833, + "▁transf": 16834, + "▁Brigadier": 16835, + "▁nationalist": 16836, + "▁supervision": 16837, + "▁Yale": 16838, + "phones": 16839, + "▁anonymous": 16840, + "▁appreciate": 16841, + "quez": 16842, + "▁anchor": 16843, + "▁Hispanic": 16844, + "▁ancestor": 16845, + "▁colleague": 16846, + "▁Dire": 16847, + "▁Birds": 16848, + "▁Scandin": 16849, + "▁metabolic": 16850, + "▁pwo": 16851, + "▁vocalist": 16852, + "▁tremendous": 16853, + "comed": 16854, + "▁Search": 16855, + "▁binary": 16856, + "rological": 16857, + "▁accommodation": 16858, + "rè": 16859, + "isle": 16860, + "▁Winc": 16861, + "▁Leader": 16862, + "▁corners": 16863, + "▁clearing": 16864, + "ulk": 16865, + "▁clever": 16866, + "▁vaccines": 16867, + "▁Wid": 16868, + "▁Kiss": 16869, + "▁spelling": 16870, + "▁Devon": 16871, + "▁Angela": 16872, + "Ex": 16873, + "▁Municip": 16874, + "▁confronted": 16875, + "▁sab": 16876, + "▁poets": 16877, + "▁Burger": 16878, + "▁Dynasty": 16879, + "inas": 16880, + "urred": 16881, + "▁demon": 16882, + "▁traced": 16883, + "▁artifacts": 16884, + "oka": 16885, + "▁Og": 16886, + "onne": 16887, + "▁Index": 16888, + "▁Powers": 16889, + "▁Complete": 16890, + "▁graduating": 16891, + "▁negotiated": 16892, + "▁Priest": 16893, + "▁guaranteed": 16894, + "▁demonstrates": 16895, + "pil": 16896, + "▁AU": 16897, + "▁Rid": 16898, + "▁Wend": 16899, + "▁judged": 16900, + "CP": 16901, + "Gen": 16902, + "▁Joel": 16903, + "▁crypt": 16904, + "▁frustrated": 16905, + "entric": 16906, + "▁Sugar": 16907, + "▁firmly": 16908, + "▁6,": 16909, + "▁Ved": 16910, + "▁gospel": 16911, + "▁Senators": 16912, + "▁eleg": 16913, + "▁entrep": 16914, + "▁Lithuania": 16915, + "▁appreciation": 16916, + "▁scrapped": 16917, + "▁succ": 16918, + "▁Aguilera": 16919, + "▁Petersburg": 16920, + "▁Productions": 16921, + "Ad": 16922, + "▁Doct": 16923, + "▁rept": 16924, + "▁torture": 16925, + "▁basement": 16926, + "▁dome": 16927, + "▁outlets": 16928, + "▁matching": 16929, + "▁Palestinian": 16930, + "▁biodiversity": 16931, + "taker": 16932, + "▁Hergé": 16933, + "▁Ports": 16934, + "▁wireless": 16935, + "▁percussion": 16936, + "▁Oz": 16937, + "▁2004,": 16938, + "▁Eugene": 16939, + "▁Ferguson": 16940, + "▁digestive": 16941, + "NT": 16942, + "iji": 16943, + "▁Kang": 16944, + "▁inspection": 16945, + "▁patches": 16946, + "▁Drum": 16947, + "▁altar": 16948, + "▁fright": 16949, + "▁grandmother": 16950, + "▁cardiovascular": 16951, + "▁Spy": 16952, + "▁herald": 16953, + "',": 16954, + "omys": 16955, + "▁Sag": 16956, + "▁Planning": 16957, + "▁MVP": 16958, + "▁Dominican": 16959, + "▁assumption": 16960, + "▁abolition": 16961, + "▁defines": 16962, + "▁Emergency": 16963, + "▁Philippine": 16964, + "▁cultivated": 16965, + "▁kap": 16966, + "▁hormones": 16967, + "▁€": 16968, + "function": 16969, + "▁definitions": 16970, + "▁elimination": 16971, + "monton": 16972, + "▁Avoid": 16973, + "▁Chancellor": 16974, + "/0": 16975, + "iency": 16976, + "▁dorsal": 16977, + "▁optimal": 16978, + "▁controller": 16979, + "idays": 16980, + "▁Multip": 16981, + "▁welcomed": 16982, + "▁Currently": 16983, + "▁architects": 16984, + "▁Aw": 16985, + "▁Zoo": 16986, + "▁1874": 16987, + "▁ions": 16988, + "▁overnight": 16989, + "▁reviewing": 16990, + "unted": 16991, + "▁ought": 16992, + "▁Butter": 16993, + "▁graduation": 16994, + "arre": 16995, + "▁Hed": 16996, + "▁Sib": 16997, + "▁Formula": 16998, + "▁Reynolds": 16999, + "uchi": 17000, + "▁Spit": 17001, + "▁Habana": 17002, + "▁abrupt": 17003, + "▁Johns": 17004, + "▁Contact": 17005, + "▁Pearson": 17006, + "▁Americas": 17007, + "▁hipp": 17008, + "▁stip": 17009, + "▁Europeans": 17010, + "▁Cel": 17011, + "▁Cele": 17012, + "graded": 17013, + "▁cruel": 17014, + "▁galaxies": 17015, + "▁educators": 17016, + "▁AF": 17017, + "herd": 17018, + "▁iconic": 17019, + "▁Tradiksyon": 17020, + "▁exceptions": 17021, + "▁financially": 17022, + "esty": 17023, + "▁Usher": 17024, + "▁predecessors": 17025, + "▁Nicole": 17026, + "▁Net": 17027, + "▁Train": 17028, + "▁woodland": 17029, + "atics": 17030, + "anza": 17031, + "▁Lut": 17032, + "▁Hayes": 17033, + "▁prosperity": 17034, + "▁fascinating": 17035, + "▁Wu": 17036, + "oupe": 17037, + "▁Selena": 17038, + "▁breakfast": 17039, + "▁municipality": 17040, + "▁surroundings": 17041, + "▁Sent": 17042, + "▁forts": 17043, + "▁puzzles": 17044, + "▁astronaut": 17045, + "BO": 17046, + "▁Palm": 17047, + "▁Wals": 17048, + "▁Joyce": 17049, + "▁Moving": 17050, + "▁Pierce": 17051, + "▁crystall": 17052, + "▁metabolism": 17053, + "aca": 17054, + "▁280": 17055, + "▁Idaho": 17056, + "▁pipes": 17057, + "▁Hallow": 17058, + "▁supervis": 17059, + "asted": 17060, + "▁1200": 17061, + "▁learners": 17062, + "dal": 17063, + "ario": 17064, + "▁meantime": 17065, + "▁dedication": 17066, + "isch": 17067, + "rency": 17068, + "▁Mathemat": 17069, + "▁narrator": 17070, + "▁sampling": 17071, + "she": 17072, + "▁Drama": 17073, + "▁shoulders": 17074, + "▁roofs": 17075, + "▁Tunnel": 17076, + "▁thirds": 17077, + "▁Alexandria": 17078, + "▁straw": 17079, + "▁Object": 17080, + "▁identifies": 17081, + "▁Mé": 17082, + "anti": 17083, + "▁Hein": 17084, + "▁grab": 17085, + "▁blend": 17086, + "▁relat": 17087, + "▁muzzle": 17088, + "▁oceans": 17089, + "▁sealed": 17090, + "▁bishops": 17091, + "▁servant": 17092, + "arms": 17093, + "▁Shen": 17094, + "▁LED": 17095, + "▁seize": 17096, + "▁bike": 17097, + "▁118": 17098, + "▁ans": 17099, + "▁Bowie": 17100, + "▁popilasyon": 17101, + "▁destructive": 17102, + "cr": 17103, + "fires": 17104, + "▁Serbs": 17105, + "▁crimin": 17106, + "▁extant": 17107, + "▁deficit": 17108, + "▁trademark": 17109, + "▁decreasing": 17110, + "Pierre": 17111, + "▁exhausted": 17112, + "brook": 17113, + "owners": 17114, + "▁compelling": 17115, + "▁negatively": 17116, + "▁cheer": 17117, + "onnected": 17118, + "▁Wheeler": 17119, + "▁broadly": 17120, + "aud": 17121, + "ipse": 17122, + "▁slip": 17123, + "▁GameSpot": 17124, + "▁Milton": 17125, + "▁abnormal": 17126, + "▁endorsed": 17127, + "linary": 17128, + "▁sulfur": 17129, + "aran": 17130, + "iral": 17131, + "▁Nep": 17132, + "▁:22.": 17133, + "▁Azerb": 17134, + "▁Econom": 17135, + "▁accent": 17136, + "▁illustrate": 17137, + "▁referendum": 17138, + "▁Spee": 17139, + "pm": 17140, + "berger": 17141, + "▁Census": 17142, + "▁kicked": 17143, + "andra": 17144, + "isible": 17145, + "▁inflicted": 17146, + "▁prevalence": 17147, + "▁practitioners": 17148, + "DR": 17149, + "iggs": 17150, + "▁Happy": 17151, + "▁prejud": 17152, + "▁trophy": 17153, + "▁touched": 17154, + "▁ministry": 17155, + "▁260": 17156, + "▁Azerbai": 17157, + "▁recipient": 17158, + "▁stretched": 17159, + "inf": 17160, + "▁Yah": 17161, + "▁lyric": 17162, + "▁Arabian": 17163, + "erget": 17164, + "ersion": 17165, + "ivated": 17166, + "▁clause": 17167, + "▁accessed": 17168, + "▁Principal": 17169, + "▁sympathetic": 17170, + "▁collectively": 17171, + "linwa": 17172, + "–19": 17173, + "▁Vie": 17174, + "green": 17175, + "anners": 17176, + "▁Randy": 17177, + "EG": 17178, + "anol": 17179, + "▁Hutch": 17180, + "▁Spiel": 17181, + "▁Edmonton": 17182, + "▁Fletcher": 17183, + "▁prosecution": 17184, + "▁Shank": 17185, + "▁Kur": 17186, + "▁Sou": 17187, + "▁cler": 17188, + "▁Flames": 17189, + "▁decomm": 17190, + "▁accounted": 17191, + "isi": 17192, + "airo": 17193, + "▁Hess": 17194, + "▁hamlet": 17195, + "▁operas": 17196, + "▁disappointment": 17197, + "▁Kas": 17198, + "▁Text": 17199, + "▁satir": 17200, + "▁scripts": 17201, + "▁Airborne": 17202, + "▁invasive": 17203, + "▁IX": 17204, + "▁11,": 17205, + "▁Shir": 17206, + "▁Ilinwa": 17207, + "▁persuade": 17208, + "▁efficiently": 17209, + "pen": 17210, + "arat": 17211, + "▁retro": 17212, + "▁Guards": 17213, + "▁screened": 17214, + "▁incredibly": 17215, + "eg": 17216, + "GBT": 17217, + "▁HV": 17218, + "▁Thor": 17219, + "▁Paramount": 17220, + "▁supposedly": 17221, + "▁tram": 17222, + "ewater": 17223, + "▁ballot": 17224, + "▁enclosed": 17225, + "▁conversations": 17226, + "▁Hip": 17227, + "▁Fast": 17228, + "▁Tren": 17229, + "American": 17230, + "▁Cornell": 17231, + "For": 17232, + "mour": 17233, + "▁surgeon": 17234, + "▁contamination": 17235, + "emi": 17236, + "giene": 17237, + "▁excit": 17238, + "▁assured": 17239, + "▁escapes": 17240, + "iking": 17241, + "▁viewer": 17242, + "▁reply": 17243, + "▁Strait": 17244, + "▁merger": 17245, + "▁regain": 17246, + "▁Ukraine": 17247, + "▁illumin": 17248, + "▁diminished": 17249, + "▁problematic": 17250, + "TH": 17251, + "drop": 17252, + "▁Warwick": 17253, + "▁launching": 17254, + "▁governance": 17255, + "▁rectangular": 17256, + "clesiast": 17257, + "▁blocking": 17258, + "▁Jak": 17259, + "▁bil": 17260, + "▁quote": 17261, + "▁scratch": 17262, + "▁Patricia": 17263, + "▁calculate": 17264, + "otta": 17265, + "▁infilt": 17266, + "▁apprent": 17267, + "▁celebrations": 17268, + "UP": 17269, + "▁elephant": 17270, + "hematic": 17271, + "▁secretly": 17272, + "pop": 17273, + "▁Brandon": 17274, + "▁specially": 17275, + "▁extraction": 17276, + "▁Kens": 17277, + "▁cliff": 17278, + "▁banking": 17279, + "eca": 17280, + "▁vib": 17281, + "▁explores": 17282, + "▁fierce": 17283, + "▁doubles": 17284, + "▁Salvador": 17285, + "bet": 17286, + "antom": 17287, + "▁Cust": 17288, + "▁pige": 17289, + "▁Limited": 17290, + "▁persisted": 17291, + "▁satellites": 17292, + "▁bags": 17293, + "▁Booth": 17294, + "▁Norton": 17295, + "▁affection": 17296, + "▁caut": 17297, + "▁vine": 17298, + "usions": 17299, + "▁Animals": 17300, + "▁lightning": 17301, + "▁companions": 17302, + "ggy": 17303, + "▁McCain": 17304, + "▁mammal": 17305, + "▁gradual": 17306, + "esh": 17307, + "▁1851": 17308, + "▁Synd": 17309, + "▁Artist": 17310, + "▁likewise": 17311, + "▁unpopular": 17312, + "rophic": 17313, + "▁Anglic": 17314, + "▁revision": 17315, + "▁illnesses": 17316, + "▁reservoir": 17317, + "awk": 17318, + "▁Idol": 17319, + "▁deny": 17320, + "▁landsl": 17321, + "▁failures": 17322, + "ablo": 17323, + "▁filters": 17324, + "▁crystals": 17325, + "oshi": 17326, + "▁Antoine": 17327, + "▁teammates": 17328, + "rí": 17329, + "▁Volunte": 17330, + "▁runners": 17331, + "▁Rhodesia": 17332, + "▁pub": 17333, + "▁ensured": 17334, + "▁humidity": 17335, + "▁voluntary": 17336, + "ouzi": 17337, + "▁kin": 17338, + "pered": 17339, + "ophone": 17340, + "▁Outside": 17341, + "▁swelling": 17342, + "▁Financial": 17343, + "▁eliminating": 17344, + "▁protocol": 17345, + "▁JG": 17346, + "▁ignor": 17347, + "▁Gav": 17348, + "▁Hast": 17349, + "▁nurses": 17350, + "▁Cay": 17351, + "▁Lanka": 17352, + "▁Sponge": 17353, + "inguished": 17354, + "▁helicopters": 17355, + "dish": 17356, + "iott": 17357, + "▁ethics": 17358, + "▁colonel": 17359, + "efficient": 17360, + "▁Robertson": 17361, + "▁genetically": 17362, + "▁Professional": 17363, + "▁spokes": 17364, + "▁lord": 17365, + "▁makers": 17366, + "▁periodic": 17367, + "▁flavor": 17368, + "enny": 17369, + "opal": 17370, + "ogene": 17371, + "▁Bran": 17372, + "▁greg": 17373, + "▁pian": 17374, + "▁Omaha": 17375, + "▁Reven": 17376, + "▁grams": 17377, + "▁preview": 17378, + "▁Vent": 17379, + "▁lawn": 17380, + "ysical": 17381, + "▁spawned": 17382, + "▁celebrity": 17383, + "▁premature": 17384, + "▁Garfield": 17385, + "▁workplace": 17386, + "dition": 17387, + "▁Sicily": 17388, + "▁Effects": 17389, + "▁Jessica": 17390, + "▁ordering": 17391, + "▁Agreement": 17392, + "▁individually": 17393, + "edu": 17394, + "▁gren": 17395, + "▁sept": 17396, + "▁Coron": 17397, + "▁Lope": 17398, + "▁isotopes": 17399, + "▁shelters": 17400, + "isure": 17401, + "opoly": 17402, + "▁Ober": 17403, + "▁bred": 17404, + "▁prophe": 17405, + "▁northwestward": 17406, + "alie": 17407, + "▁Buddha": 17408, + "▁garage": 17409, + "▁Argentine": 17410, + "▁interfere": 17411, + "▁Mk": 17412, + "▁Arn": 17413, + "▁Trin": 17414, + "▁García": 17415, + "▁Giant": 17416, + "▁eleventh": 17417, + "▁beef": 17418, + "▁Thorn": 17419, + "▁insights": 17420, + "▁Sanct": 17421, + "▁workshop": 17422, + "▁Fi": 17423, + "▁Haven": 17424, + "▁traff": 17425, + "▁Andalouzi": 17426, + "▁dimension": 17427, + "▁aligned": 17428, + ":10.": 17429, + "oche": 17430, + "▁halt": 17431, + "▁plots": 17432, + "ivation": 17433, + "omorph": 17434, + "rawl": 17435, + "▁Crane": 17436, + "▁expelled": 17437, + "▁158": 17438, + "assic": 17439, + "attery": 17440, + "▁shade": 17441, + "▁cheaper": 17442, + "▁adventures": 17443, + "▁corporation": 17444, + "hurst": 17445, + "▁Denis": 17446, + "▁warmer": 17447, + "▁tragedy": 17448, + "▁Indigenous": 17449, + "vas": 17450, + "▁valve": 17451, + "▁Jennings": 17452, + "IM": 17453, + "lore": 17454, + "uming": 17455, + "▁mall": 17456, + "▁Scotia": 17457, + "▁luck": 17458, + "▁Lebanon": 17459, + "▁colonists": 17460, + "esy": 17461, + "▁Nu": 17462, + "▁Chal": 17463, + "▁rhet": 17464, + "▁slee": 17465, + "▁trump": 17466, + "▁Mirror": 17467, + "▁unstable": 17468, + "ijuana": 17469, + "▁Arabs": 17470, + "▁Betty": 17471, + "▁Superman": 17472, + "▁Generally": 17473, + "▁Yok": 17474, + "▁rapper": 17475, + "▁unhappy": 17476, + "▁Bio": 17477, + "▁Alam": 17478, + "▁pets": 17479, + "▁guilt": 17480, + "▁ES": 17481, + "▁Lithuanian": 17482, + "▁spectacular": 17483, + "▁Communications": 17484, + "▁plutonium": 17485, + "▁eighteenth": 17486, + "▁Carbon": 17487, + "▁astronomers": 17488, + "oque": 17489, + "adian": 17490, + "stead": 17491, + "▁Aside": 17492, + "▁Andrea": 17493, + "▁Success": 17494, + "▁defeats": 17495, + "▁employers": 17496, + "▁electronics": 17497, + "elic": 17498, + "▁Bav": 17499, + "▁PDF": 17500, + "▁aliens": 17501, + "▁uncomfort": 17502, + "▁discoveries": 17503, + "▁knife": 17504, + "▁hearts": 17505, + "▁Gardner": 17506, + "▁mitochond": 17507, + "▁crus": 17508, + "▁Chemical": 17509, + "▁counteratt": 17510, + "▁Wyoming": 17511, + "▁neighbors": 17512, + "patitis": 17513, + "▁beside": 17514, + "▁alphabet": 17515, + "▁dé": 17516, + "▁1812": 17517, + "forward": 17518, + "including": 17519, + "▁Ned": 17520, + "▁edit": 17521, + "rah": 17522, + "▁Cock": 17523, + "▁Behind": 17524, + "aru": 17525, + "▁Marco": 17526, + "▁watches": 17527, + "▁intervals": 17528, + "▁medicines": 17529, + "▁Strat": 17530, + "▁admired": 17531, + "▁suburbs": 17532, + "▁encourages": 17533, + "▁Lopez": 17534, + "▁Zel": 17535, + "▁Bloom": 17536, + "94": 17537, + "yat": 17538, + "▁Dre": 17539, + "▁helium": 17540, + "▁subdiv": 17541, + "▁examining": 17542, + "rite": 17543, + "▁Bailey": 17544, + "▁seventeen": 17545, + "chez": 17546, + "▁None": 17547, + "▁Monica": 17548, + "▁touching": 17549, + "▁1859": 17550, + "▁Weber": 17551, + "▁captive": 17552, + "oya": 17553, + "▁LGBT": 17554, + "▁Manila": 17555, + "▁spider": 17556, + "▁confess": 17557, + "▁structured": 17558, + ".'": 17559, + "▁Swan": 17560, + "▁Marion": 17561, + "▁passive": 17562, + "▁merchand": 17563, + "▁Approximately": 17564, + "▁cyber": 17565, + "▁fairy": 17566, + "▁overlap": 17567, + "▁slaughter": 17568, + "uke": 17569, + "▁Mumb": 17570, + "▁panc": 17571, + "▁besie": 17572, + "▁concluding": 17573, + "How": 17574, + "▁152": 17575, + "usive": 17576, + "ropolis": 17577, + "▁Recent": 17578, + "▁afterward": 17579, + "▁7,": 17580, + "▁compuls": 17581, + "▁twelfth": 17582, + "atal": 17583, + "▁bits": 17584, + "▁puls": 17585, + "▁Manor": 17586, + "century": 17587, + "▁hosting": 17588, + "▁(17": 17589, + "▁Crisis": 17590, + "▁unnamed": 17591, + "▁Practice": 17592, + "▁deposited": 17593, + "▁Southampton": 17594, + "▁fog": 17595, + "▁Dame": 17596, + "▁neural": 17597, + "▁1,000": 17598, + "▁Patton": 17599, + "▁Engineer": 17600, + "igma": 17601, + "▁bund": 17602, + "▁duck": 17603, + "▁Sussex": 17604, + "axy": 17605, + "▁Ny": 17606, + "▁137": 17607, + "▁las": 17608, + "▁rumors": 17609, + "▁dangers": 17610, + "▁combinations": 17611, + "▁ESP": 17612, + "▁storylines": 17613, + "▁toy": 17614, + "▁oversee": 17615, + "velopment": 17616, + "▁steering": 17617, + "▁treasure": 17618, + "▁ecc": 17619, + "▁Trip": 17620, + "▁brigades": 17621, + "▁Evolution": 17622, + "▁Emb": 17623, + "▁Armed": 17624, + "▁chaos": 17625, + "▁scream": 17626, + "▁importantly": 17627, + "▁Coul": 17628, + "▁Roth": 17629, + "▁nost": 17630, + "▁explor": 17631, + "▁nerves": 17632, + "▁employer": 17633, + "▁stro": 17634, + "▁tuber": 17635, + "▁Durham": 17636, + "▁gravel": 17637, + "▁reactor": 17638, + "▁dinosaur": 17639, + "Bob": 17640, + "▁barb": 17641, + "▁Sword": 17642, + "▁resil": 17643, + "▁Willis": 17644, + "▁couples": 17645, + "aceut": 17646, + "▁Reform": 17647, + "▁shortened": 17648, + "igon": 17649, + "words": 17650, + "▁Shore": 17651, + "▁mills": 17652, + "▁corporations": 17653, + "?\"": 17654, + "▁Egg": 17655, + "▁Own": 17656, + "▁Coch": 17657, + "▁Humph": 17658, + "ircraft": 17659, + "▁Hamburg": 17660, + "▁organizing": 17661, + "],": 17662, + "hey": 17663, + "▁ot": 17664, + "astically": 17665, + "▁Requ": 17666, + "▁Morton": 17667, + "▁Sustain": 17668, + "▁devised": 17669, + "▁Ign": 17670, + "▁sew": 17671, + "isyèl": 17672, + "▁DO": 17673, + "▁meksiken": 17674, + "ardi": 17675, + "▁Bolton": 17676, + "▁pyramid": 17677, + "▁sensory": 17678, + "▁Georgian": 17679, + "▁presumably": 17680, + "▁similarity": 17681, + "etics": 17682, + "▁swift": 17683, + "▁unions": 17684, + "▁lateral": 17685, + "▁Lightning": 17686, + "▁detachment": 17687, + "8)": 17688, + "▁biom": 17689, + "▁lesbian": 17690, + "ighthouse": 17691, + "▁emotionally": 17692, + "pts": 17693, + "otle": 17694, + "eways": 17695, + "illas": 17696, + "▁Fell": 17697, + "building": 17698, + "▁factions": 17699, + "▁socialist": 17700, + "▁Hous": 17701, + "▁hire": 17702, + "▁rode": 17703, + "▁Whitney": 17704, + "▁Spielberg": 17705, + "▁cultivation": 17706, + "▁Broadcasting": 17707, + "▁socio": 17708, + "▁runway": 17709, + "▁gravitational": 17710, + "rys": 17711, + "odynam": 17712, + "▁Congo": 17713, + "▁Buddhism": 17714, + "▁regulated": 17715, + "▁innovations": 17716, + "▁Bess": 17717, + "▁Sara": 17718, + "▁Forbes": 17719, + "▁breach": 17720, + "▁abortion": 17721, + "▁Pw": 17722, + "▁131": 17723, + "▁constitute": 17724, + "irie": 17725, + "oxic": 17726, + "isbury": 17727, + "redited": 17728, + "▁Minogue": 17729, + "▁murders": 17730, + "▁Mü": 17731, + "▁NG": 17732, + "agonists": 17733, + "orde": 17734, + "▁Rup": 17735, + "▁Hunting": 17736, + "▁enterprise": 17737, + "amus": 17738, + "▁tourn": 17739, + "▁Hannah": 17740, + "▁checked": 17741, + "▁targeting": 17742, + "nor": 17743, + "page": 17744, + "▁Sang": 17745, + "reb": 17746, + "omans": 17747, + "▁Presley": 17748, + "▁profitable": 17749, + "▁SE": 17750, + "etti": 17751, + "▁Fol": 17752, + "▁Kot": 17753, + "▁ump": 17754, + "▁Boyd": 17755, + "▁disg": 17756, + "▁pipeline": 17757, + "pez": 17758, + "ibles": 17759, + "▁cough": 17760, + "▁conventions": 17761, + "▁370": 17762, + "▁Jesse": 17763, + "▁robots": 17764, + "stop": 17765, + "▁Quinn": 17766, + "▁guerr": 17767, + "▁symptom": 17768, + "▁utilize": 17769, + "▁perimeter": 17770, + "RL": 17771, + "▁Bun": 17772, + "▁Austen": 17773, + "▁thyroid": 17774, + "▁sting": 17775, + "anni": 17776, + "http": 17777, + "▁Dol": 17778, + "▁Yu": 17779, + "▁Ach": 17780, + "▁Advis": 17781, + "▁alpha": 17782, + "▁glory": 17783, + "▁Artillery": 17784, + "▁MIT": 17785, + "▁mating": 17786, + "▁monetary": 17787, + "▁Cret": 17788, + "▁Allan": 17789, + "▁Guerr": 17790, + "▁GDP": 17791, + "▁prominence": 17792, + "▁Cran": 17793, + "▁Symptoms": 17794, + "▁pneumonia": 17795, + "▁stretching": 17796, + "▁bee": 17797, + "▁guys": 17798, + "▁Immedi": 17799, + "än": 17800, + "▁prints": 17801, + "▁verbal": 17802, + "▁138": 17803, + "▁glut": 17804, + "▁faithful": 17805, + "ifa": 17806, + "rush": 17807, + "▁Nem": 17808, + "▁Lomb": 17809, + "▁Bever": 17810, + "▁hinder": 17811, + "▁Complex": 17812, + "▁Software": 17813, + "▁Venezuel": 17814, + "▁upt": 17815, + "▁threshold": 17816, + "▁Fow": 17817, + "▁Technical": 17818, + "▁donations": 17819, + "▁maneuvers": 17820, + "agus": 17821, + "eous": 17822, + "▁Derek": 17823, + "▁shocked": 17824, + "▁Till": 17825, + "▁rocky": 17826, + "▁itilize": 17827, + "▁Derby": 17828, + "▁Hammer": 17829, + "▁nobody": 17830, + "▁Ard": 17831, + "▁Rebec": 17832, + "▁reapp": 17833, + "▁Hundred": 17834, + "▁Christine": 17835, + "market": 17836, + "▁feder": 17837, + "▁pioneer": 17838, + "▁morality": 17839, + "▁assessments": 17840, + "▁fragment": 17841, + "opter": 17842, + "▁Kenny": 17843, + "▁domest": 17844, + "▁morale": 17845, + "▁snakes": 17846, + "▁refined": 17847, + "▁mandatory": 17848, + "▁subsidiary": 17849, + "roft": 17850, + "rones": 17851, + "▁beans": 17852, + "▁foster": 17853, + "▁precious": 17854, + "▁Parachute": 17855, + ".0": 17856, + "▁medi": 17857, + "▁Basil": 17858, + "▁Folk": 17859, + "▁Poor": 17860, + "▁Recre": 17861, + "▁Anders": 17862, + "▁enroll": 17863, + "▁monsters": 17864, + "▁SM": 17865, + "▁Ens": 17866, + "▁Hank": 17867, + "▁Pitt": 17868, + "▁spear": 17869, + "▁sosyete": 17870, + "▁motorway": 17871, + "▁desperate": 17872, + "▁CL": 17873, + "▁Journ": 17874, + "▁libert": 17875, + "▁Variety": 17876, + "▁crushed": 17877, + "opus": 17878, + "▁Hod": 17879, + "court": 17880, + "▁Kind": 17881, + "ulators": 17882, + "▁Evidence": 17883, + "Pro": 17884, + "▁ts": 17885, + "opold": 17886, + "▁welding": 17887, + "▁depressed": 17888, + "▁convincing": 17889, + "▁miners": 17890, + "▁premise": 17891, + "▁therapeut": 17892, + "▁enf": 17893, + "▁Pirates": 17894, + "▁energet": 17895, + "▁Fro": 17896, + "▁Euro": 17897, + "▁soup": 17898, + "▁stir": 17899, + "ophers": 17900, + "▁defic": 17901, + "▁exotic": 17902, + "▁Junction": 17903, + "▁Spl": 17904, + "▁Eighth": 17905, + "▁Ethiop": 17906, + "▁phylogen": 17907, + "▁psychiat": 17908, + "▁downstream": 17909, + "▁nutritional": 17910, + "▁photographer": 17911, + "▁PL": 17912, + "▁Pale": 17913, + "▁Steph": 17914, + "▁Roads": 17915, + "▁modification": 17916, + "boro": 17917, + "▁blo": 17918, + "▁Elder": 17919, + "▁Borough": 17920, + "▁Salisbury": 17921, + "uf": 17922, + "▁cavity": 17923, + "▁Allmusic": 17924, + "▁packaging": 17925, + "▁IL": 17926, + "▁fins": 17927, + "▁Flash": 17928, + "▁weren": 17929, + "▁troubles": 17930, + "nas": 17931, + "oyle": 17932, + "holder": 17933, + "pi": 17934, + "anto": 17935, + "woman": 17936, + "▁Wilm": 17937, + "umbers": 17938, + "▁dwell": 17939, + "▁Tankou": 17940, + "▁dialect": 17941, + "▁favoured": 17942, + "▁possessions": 17943, + "oped": 17944, + "▁Vitamin": 17945, + "▁cancers": 17946, + "▁acknowledge": 17947, + "dr": 17948, + "▁SD": 17949, + "▁stup": 17950, + "▁diarr": 17951, + "ilibrium": 17952, + "▁hectares": 17953, + "nez": 17954, + "▁seam": 17955, + "alizatè": 17956, + "▁contra": 17957, + "▁parade": 17958, + "▁Britt": 17959, + "▁boarding": 17960, + "▁lè": 17961, + "▁defects": 17962, + "▁heights": 17963, + "▁statues": 17964, + "▁moderately": 17965, + "▁ni": 17966, + "oire": 17967, + "▁tech": 17968, + "▁visuals": 17969, + "▁Democrat": 17970, + "▁injection": 17971, + "▁notorious": 17972, + "appropriate": 17973, + "▁containers": 17974, + "▁Ug": 17975, + "enter": 17976, + "ainted": 17977, + "▁incon": 17978, + "▁builds": 17979, + "ught": 17980, + "▁dams": 17981, + "▁trim": 17982, + "▁Clement": 17983, + "▁refusal": 17984, + "▁eccentric": 17985, + "zel": 17986, + "▁Nurs": 17987, + "▁justified": 17988, + "ishi": 17989, + "▁320": 17990, + "swick": 17991, + "▁Dana": 17992, + "▁unwilling": 17993, + "▁cott": 17994, + "▁planetary": 17995, + "▁showc": 17996, + "mass": 17997, + "umni": 17998, + "▁formats": 17999, + "▁portraits": 18000, + "▁Lodge": 18001, + "▁lac": 18002, + "▁Hers": 18003, + "▁tempt": 18004, + "▁Lak": 18005, + "▁Marian": 18006, + "▁conception": 18007, + "▁contradict": 18008, + "▁Understanding": 18009, + "abi": 18010, + "▁gam": 18011, + "▁Deal": 18012, + "▁Credit": 18013, + "addy": 18014, + "▁lag": 18015, + "canal": 18016, + "▁Goeb": 18017, + "▁cage": 18018, + "▁yields": 18019, + "rike": 18020, + "▁Rosen": 18021, + "▁wives": 18022, + "▁attach": 18023, + "▁puzzle": 18024, + "▁barracks": 18025, + "▁museums": 18026, + "▁tankou": 18027, + "▁Pou": 18028, + "chair": 18029, + "ilian": 18030, + "cliffe": 18031, + "ovakia": 18032, + "writer": 18033, + "▁Shawn": 18034, + "▁crazy": 18035, + "▁glands": 18036, + "▁ideology": 18037, + "▁calculations": 18038, + "ylon": 18039, + "ifiers": 18040, + "▁allev": 18041, + "▁reddish": 18042, + "▁washing": 18043, + "▁deity": 18044, + "▁Finals": 18045, + "▁endemic": 18046, + "▁sharply": 18047, + "▁economically": 18048, + "Far": 18049, + "▁Fen": 18050, + "▁Karn": 18051, + "▁admits": 18052, + "▁Elliott": 18053, + "▁affiliated": 18054, + "▁contemporaries": 18055, + "ovan": 18056, + "xter": 18057, + "▁Ley": 18058, + "▁Rugby": 18059, + "▁Musical": 18060, + "wind": 18061, + "▁refuse": 18062, + "▁Neptune": 18063, + "▁conserv": 18064, + "▁freshwater": 18065, + ".3": 18066, + "yss": 18067, + "ooks": 18068, + "▁Sanskrit": 18069, + "▁UV": 18070, + "from": 18071, + "inos": 18072, + "▁épisode": 18073, + "▁assuming": 18074, + "▁disrupted": 18075, + "▁waterline": 18076, + "ohl": 18077, + "▁mol": 18078, + "enary": 18079, + "▁rope": 18080, + "points": 18081, + "▁locals": 18082, + "▁storyt": 18083, + "▁complaint": 18084, + "▁Myc": 18085, + "▁vest": 18086, + "▁marker": 18087, + "▁poles": 18088, + "▁Buenos": 18089, + "▁mortar": 18090, + "▁Halloween": 18091, + "▁Acts": 18092, + "▁Integr": 18093, + "mic": 18094, + "etry": 18095, + "oufl": 18096, + "▁kote": 18097, + "▁Jacqu": 18098, + "▁elong": 18099, + "▁remed": 18100, + "▁Bom": 18101, + "ifted": 18102, + "▁lasts": 18103, + "▁muc": 18104, + "▁Sens": 18105, + "▁theology": 18106, + "▁Arms": 18107, + "▁perce": 18108, + "▁sounded": 18109, + "▁statute": 18110, + "▁probable": 18111, + "91": 18112, + "▁1857": 18113, + "▁Gael": 18114, + "▁somehow": 18115, + "gradation": 18116, + "▁averaging": 18117, + "▁meanwhile": 18118, + "▁bush": 18119, + "acious": 18120, + "▁Mumbai": 18121, + "▁corrupt": 18122, + "▁gambling": 18123, + "▁Io": 18124, + "ttes": 18125, + "▁institutional": 18126, + "▁Few": 18127, + "▁Newark": 18128, + "▁debates": 18129, + "▁Everything": 18130, + "▁illustration": 18131, + "▁Adolf": 18132, + "▁ceremonial": 18133, + "▁PH": 18134, + "▁Cardinal": 18135, + "▁Gaza": 18136, + "▁Einstein": 18137, + "▁ech": 18138, + "▁yoga": 18139, + "▁Bacon": 18140, + "▁neglect": 18141, + "▁rendering": 18142, + "fol": 18143, + "anic": 18144, + "eted": 18145, + "▁Auto": 18146, + "▁reiss": 18147, + "▁geometry": 18148, + "▁publishers": 18149, + "▁Jag": 18150, + "▁Kay": 18151, + "▁Liu": 18152, + "▁appl": 18153, + "▁mock": 18154, + "▁Canber": 18155, + "▁Ultimate": 18156, + "▁mushrooms": 18157, + "▁Gore": 18158, + "▁Uran": 18159, + "▁horns": 18160, + "▁bedroom": 18161, + "▁uncomfortable": 18162, + "oken": 18163, + "▁CIA": 18164, + "▁cher": 18165, + "itating": 18166, + "▁Danube": 18167, + "▁Strateg": 18168, + "▁Lindwall": 18169, + "El": 18170, + "▁align": 18171, + "▁frequencies": 18172, + "atum": 18173, + "▁Vas": 18174, + "rique": 18175, + "▁Alonso": 18176, + "▁shifting": 18177, + "oler": 18178, + "▁Pinar": 18179, + "▁debated": 18180, + "▁Sunder": 18181, + "▁Stefani": 18182, + "▁AllMusic": 18183, + "▁terrorist": 18184, + "▁surn": 18185, + "▁Snake": 18186, + "▁Guadalcanal": 18187, + "▁Ful": 18188, + "▁Sul": 18189, + "▁Distinguished": 18190, + "▁146": 18191, + "▁550": 18192, + "▁Viking": 18193, + "▁modeling": 18194, + "estershire": 18195, + "▁shipments": 18196, + "▁Pengu": 18197, + "▁equity": 18198, + "▁interrog": 18199, + "▁rehabilitation": 18200, + "▁SpongeBob": 18201, + "rer": 18202, + "▁Rever": 18203, + "▁ancestry": 18204, + "▁intercepted": 18205, + "umm": 18206, + "▁Kor": 18207, + "onduct": 18208, + "▁midst": 18209, + "▁homage": 18210, + "▁plural": 18211, + "▁Workers": 18212, + "▁freshman": 18213, + "Hz": 18214, + "▁Gone": 18215, + "▁Mahar": 18216, + "▁ignore": 18217, + "▁teaches": 18218, + "risk": 18219, + "▁Ferrari": 18220, + "▁Numerous": 18221, + "▁Turnpike": 18222, + "▁musc": 18223, + "▁Hanna": 18224, + "▁probe": 18225, + "▁rebuilding": 18226, + "wald": 18227, + "▁shale": 18228, + "▁Moroc": 18229, + "▁pressing": 18230, + "▁strengths": 18231, + "▁simulation": 18232, + "nae": 18233, + "▁Lois": 18234, + "▁safer": 18235, + "▁brains": 18236, + "▁hunger": 18237, + "attering": 18238, + "▁legendary": 18239, + "oryen": 18240, + "▁Erie": 18241, + "▁chip": 18242, + "▁Course": 18243, + "▁violin": 18244, + "▁resting": 18245, + "▁autonomy": 18246, + "▁autonomous": 18247, + "▁Morm": 18248, + "▁duet": 18249, + "ificent": 18250, + "▁receptors": 18251, + "lot": 18252, + "▁bust": 18253, + "▁croc": 18254, + "▁Initi": 18255, + "▁totaled": 18256, + "▁Interior": 18257, + "▁Hag": 18258, + "▁hazards": 18259, + "▁socially": 18260, + "▁substrate": 18261, + "▁Dew": 18262, + "▁rud": 18263, + "prises": 18264, + "▁makeup": 18265, + "▁jointly": 18266, + "▁Griffith": 18267, + "▁singular": 18268, + "▁(1)": 18269, + "▁Pret": 18270, + "▁Wick": 18271, + "▁Wander": 18272, + "▁shoots": 18273, + "▁compliance": 18274, + "▁Vij": 18275, + "▁piv": 18276, + "aceae": 18277, + "avirus": 18278, + "▁Trump": 18279, + "▁rookie": 18280, + "▁farmland": 18281, + "amics": 18282, + "lando": 18283, + "racted": 18284, + "▁hammer": 18285, + "▁Coalition": 18286, + "▁rigid": 18287, + "▁recreation": 18288, + "La": 18289, + "iler": 18290, + "▁NOK": 18291, + "▁Rhys": 18292, + "▁pigs": 18293, + "▁diagram": 18294, + "▁picking": 18295, + "anus": 18296, + "▁Dim": 18297, + "unker": 18298, + "▁1845": 18299, + "▁oath": 18300, + "▁mould": 18301, + "▁compost": 18302, + "▁averages": 18303, + "▁monitored": 18304, + "▁rejection": 18305, + "▁discovering": 18306, + "▁Jorge": 18307, + "▁fats": 18308, + "▁oils": 18309, + "▁gland": 18310, + "▁vapor": 18311, + "▁barrel": 18312, + "activity": 18313, + "▁improves": 18314, + "▁instinct": 18315, + "▁receptor": 18316, + "▁Fine": 18317, + "▁Plains": 18318, + "▁Willie": 18319, + "▁businessman": 18320, + "▁songwriting": 18321, + "abs": 18322, + "try": 18323, + "▁Coc": 18324, + "▁FDA": 18325, + "▁Rut": 18326, + "▁Plus": 18327, + "▁Espay": 18328, + "▁polls": 18329, + "▁lineup": 18330, + "▁Prussia": 18331, + "▁commemorate": 18332, + "inae": 18333, + "▁Question": 18334, + "▁combines": 18335, + "▁nonetheless": 18336, + "▁330": 18337, + "▁Dover": 18338, + "▁Covenant": 18339, + "▁narrowly": 18340, + "▁pitching": 18341, + "▁parasites": 18342, + "▁penalties": 18343, + "▁Euras": 18344, + "▁confrontation": 18345, + "▁Eva": 18346, + "loaded": 18347, + "▁Honey": 18348, + "▁favourable": 18349, + "▁Els": 18350, + "▁hotels": 18351, + "▁Copyright": 18352, + "▁overview": 18353, + "▁sometime": 18354, + "▁advocates": 18355, + "▁composite": 18356, + "▁sandstone": 18357, + "▁northbound": 18358, + "▁Observatory": 18359, + "▁Biology": 18360, + "▁workshe": 18361, + "▁MI": 18362, + "▁Rein": 18363, + "▁arcade": 18364, + "▁gallons": 18365, + "▁portrays": 18366, + "▁Challenge": 18367, + "▁fus": 18368, + "▁Calc": 18369, + "dominal": 18370, + "▁Historian": 18371, + "ilem": 18372, + "▁Zion": 18373, + "▁fool": 18374, + "▁dining": 18375, + "▁seated": 18376, + "▁Nigeria": 18377, + "ité": 18378, + "▁Writers": 18379, + "▁vertebra": 18380, + "▁equations": 18381, + "occup": 18382, + "▁Brah": 18383, + "▁wolf": 18384, + "▁Minne": 18385, + "▁Shack": 18386, + "▁mitig": 18387, + "▁letting": 18388, + "▁Kingston": 18389, + "▁Likewise": 18390, + "▁sculptures": 18391, + "▁Underground": 18392, + "▁BM": 18393, + "▁SAS": 18394, + "atche": 18395, + "▁Kend": 18396, + "▁natives": 18397, + "▁exploitation": 18398, + "▁fals": 18399, + "▁vein": 18400, + "▁theft": 18401, + "▁Gustav": 18402, + "hoe": 18403, + "achi": 18404, + "▁spans": 18405, + "▁Nuclear": 18406, + "amel": 18407, + "▁Kenya": 18408, + "▁Lesser": 18409, + "▁princess": 18410, + "▁Fey": 18411, + "▁transc": 18412, + "▁envision": 18413, + "▁1854": 18414, + "▁Kash": 18415, + "ipelago": 18416, + "▁pesticides": 18417, + "fig": 18418, + "raul": 18419, + "▁sap": 18420, + "▁Wong": 18421, + "▁Stern": 18422, + "▁feeds": 18423, + "▁Sebastian": 18424, + "▁8,": 18425, + "▁Greene": 18426, + "▁Letter": 18427, + "▁biblical": 18428, + "▁nin": 18429, + "tures": 18430, + "▁boiler": 18431, + "▁Banksia": 18432, + "▁characterised": 18433, + "▁OK": 18434, + "▁650": 18435, + "athon": 18436, + "▁Risk": 18437, + "▁Rhine": 18438, + "▁imped": 18439, + "▁Ashley": 18440, + "▁offset": 18441, + "▁ofisyèl": 18442, + "▁Gem": 18443, + "▁Axis": 18444, + "▁Reid": 18445, + "▁Nazis": 18446, + "▁Sharon": 18447, + "▁poetic": 18448, + "▁soccer": 18449, + "▁weaker": 18450, + "▁deadline": 18451, + "▁aggression": 18452, + "▁Institution": 18453, + "▁vaccination": 18454, + "anor": 18455, + "▁pathway": 18456, + "▁kilograms": 18457, + "jin": 18458, + "▁Ri": 18459, + "▁sug": 18460, + "screen": 18461, + "▁mapping": 18462, + "▁Bradford": 18463, + "▁millimeter": 18464, + "▁millimetres": 18465, + "acerb": 18466, + "▁Hear": 18467, + "▁Pari": 18468, + "▁instantly": 18469, + "usp": 18470, + "amph": 18471, + "ifax": 18472, + "▁stunt": 18473, + "▁Webster": 18474, + "▁wrapped": 18475, + "▁Lun": 18476, + "▁Evan": 18477, + "▁Lenin": 18478, + "hibition": 18479, + "▁Letters": 18480, + "▁spiders": 18481, + "▁Brighton": 18482, + "▁persecution": 18483, + "rio": 18484, + "▁Krishna": 18485, + "▁Exchange": 18486, + "▁performer": 18487, + "▁Kann": 18488, + "▁cris": 18489, + "▁Valentine": 18490, + "ahon": 18491, + "▁seri": 18492, + "▁catches": 18493, + "omo": 18494, + "▁(4": 18495, + "▁chor": 18496, + "▁Parents": 18497, + "▁switching": 18498, + "▁uncovered": 18499, + "▁considerations": 18500, + "▁Diane": 18501, + "▁prose": 18502, + "▁Hendrix": 18503, + "▁visually": 18504, + "▁repetitive": 18505, + "▁coordinated": 18506, + "urate": 18507, + "▁Tong": 18508, + "▁outlined": 18509, + "▁thriller": 18510, + "▁riot": 18511, + "▁Pradesh": 18512, + "▁oxidation": 18513, + "▁compassion": 18514, + "▁obligations": 18515, + "uy": 18516, + "▁Ble": 18517, + "▁eks": 18518, + "▁Aires": 18519, + "▁Negro": 18520, + "▁punish": 18521, + "▁114": 18522, + "▁yes": 18523, + "▁flatt": 18524, + "ressive": 18525, + "▁fibers": 18526, + "▁baptism": 18527, + "▁technically": 18528, + "anik": 18529, + "▁Cros": 18530, + "▁Glac": 18531, + "▁Build": 18532, + "▁Loren": 18533, + "▁refit": 18534, + "▁AB": 18535, + "▁valleys": 18536, + "▁Mongol": 18537, + "▁additions": 18538, + "▁appealing": 18539, + "▁lev": 18540, + "▁Savage": 18541, + "▁raises": 18542, + "▁masters": 18543, + "▁starter": 18544, + "▁implementing": 18545, + "▁Stark": 18546, + "tingham": 18547, + "▁leaked": 18548, + "▁traders": 18549, + "ographies": 18550, + "▁veto": 18551, + "urtles": 18552, + "▁Brock": 18553, + "▁intimid": 18554, + "▁disagreed": 18555, + "vani": 18556, + "idium": 18557, + "▁pagan": 18558, + "▁sorts": 18559, + "▁Singer": 18560, + "▁jungle": 18561, + "▁Account": 18562, + "▁Creative": 18563, + "Ps": 18564, + "comp": 18565, + "▁Sandy": 18566, + "▁undergoing": 18567, + "▁aluminum": 18568, + "▁Greenland": 18569, + "▁dispersed": 18570, + "fin": 18571, + "▁Hipp": 18572, + "iosity": 18573, + "roleum": 18574, + "▁Ruther": 18575, + "▁adjusted": 18576, + "▁Depending": 18577, + "▁Portsmouth": 18578, + "▁inevitable": 18579, + "▁strips": 18580, + "▁besides": 18581, + "▁Southwest": 18582, + "▁extracted": 18583, + "bane": 18584, + "▁ink": 18585, + "avior": 18586, + "▁Hort": 18587, + "▁accepts": 18588, + "▁teenagers": 18589, + "▁Ló": 18590, + "rying": 18591, + "▁dirty": 18592, + "▁markers": 18593, + "▁diagnostic": 18594, + "▁fiz": 18595, + "▁pow": 18596, + "▁fiscal": 18597, + "▁observer": 18598, + "▁frustration": 18599, + "ál": 18600, + "ogl": 18601, + "▁2015.": 18602, + "lessness": 18603, + "▁inherent": 18604, + "▁contributes": 18605, + "gage": 18606, + "byter": 18607, + "▁predictions": 18608, + "IF": 18609, + "agogue": 18610, + "▁jealous": 18611, + "▁hazardous": 18612, + "▁consultant": 18613, + "▁cum": 18614, + "▁Jazz": 18615, + "▁Rochester": 18616, + "▁Aboriginal": 18617, + "▁balloon": 18618, + "▁posting": 18619, + "▁turbine": 18620, + "▁rolled": 18621, + "▁shower": 18622, + "▁Canberra": 18623, + "▁evacuate": 18624, + "▁analyt": 18625, + "▁Destiny": 18626, + "CH": 18627, + "▁luxury": 18628, + "▁Brunswick": 18629, + "▁practicing": 18630, + "psy": 18631, + "▁Print": 18632, + "▁caves": 18633, + "▁Compet": 18634, + "rubs": 18635, + "▁Maple": 18636, + "▁terra": 18637, + "▁Rip": 18638, + "▁slot": 18639, + "ooting": 18640, + "rology": 18641, + "▁2000,": 18642, + "▁calib": 18643, + "▁cooked": 18644, + "▁Dob": 18645, + "▁bord": 18646, + "▁Crazy": 18647, + "▁Iraqi": 18648, + "▁confisc": 18649, + "▁globally": 18650, + "▁certificate": 18651, + "DC": 18652, + "▁komin": 18653, + "▁bassist": 18654, + "▁eternal": 18655, + "▁entities": 18656, + "7)": 18657, + "▁Iv": 18658, + "iker": 18659, + "made": 18660, + "▁Cham": 18661, + "▁Sophie": 18662, + "▁climax": 18663, + "▁interl": 18664, + "▁Winston": 18665, + "WR": 18666, + "▁1500": 18667, + "▁Dayton": 18668, + "▁decommissioned": 18669, + "▁q": 18670, + "▁BP": 18671, + "▁121": 18672, + "▁Linux": 18673, + "▁debts": 18674, + "▁Orlando": 18675, + "▁visitor": 18676, + "▁metallic": 18677, + "olon": 18678, + "▁Drew": 18679, + "▁2011.": 18680, + "▁exacerb": 18681, + "▁(6": 18682, + "elyn": 18683, + "requ": 18684, + "doors": 18685, + "▁Metall": 18686, + "ivia": 18687, + "▁CDC": 18688, + "▁algae": 18689, + "▁solved": 18690, + "▁foul": 18691, + "▁anyway": 18692, + "▁intimate": 18693, + "WS": 18694, + "icz": 18695, + "▁Abs": 18696, + "▁sparked": 18697, + "▁Teaching": 18698, + "▁weighing": 18699, + "▁recovering": 18700, + "▁supernatural": 18701, + "▁Editor": 18702, + "▁graves": 18703, + "▁Presidential": 18704, + "▁Bag": 18705, + "▁Kun": 18706, + "▁ankle": 18707, + "▁depot": 18708, + "▁relies": 18709, + "▁collector": 18710, + "▁constructing": 18711, + "union": 18712, + "contin": 18713, + "▁López": 18714, + "▁burns": 18715, + "▁updates": 18716, + "▁financing": 18717, + "▁conceptual": 18718, + "▁installment": 18719, + "enic": 18720, + "opot": 18721, + "imated": 18722, + "▁Bahamas": 18723, + "▁emphasize": 18724, + "GE": 18725, + "omi": 18726, + "▁RC": 18727, + "▁Rama": 18728, + "▁XIII": 18729, + "▁glasses": 18730, + "\")": 18731, + "law": 18732, + "oeuv": 18733, + "clair": 18734, + "▁Conv": 18735, + "▁unav": 18736, + "▁determines": 18737, + "arta": 18738, + "▁Answ": 18739, + "▁amor": 18740, + "▁recalls": 18741, + "▁inventory": 18742, + "▁recommends": 18743, + "▁advertisement": 18744, + "▁tumors": 18745, + "▁unified": 18746, + "elage": 18747, + "▁Woll": 18748, + "▁Traff": 18749, + "▁stays": 18750, + "▁wears": 18751, + "▁compatible": 18752, + "▁transplant": 18753, + "▁deteriorated": 18754, + "▁governmental": 18755, + "1-": 18756, + "▁prost": 18757, + "gun": 18758, + "uba": 18759, + "▁Hammond": 18760, + "▁overhaul": 18761, + "▁retiring": 18762, + "▁explanations": 18763, + "TP": 18764, + "▁Gir": 18765, + "▁Boul": 18766, + "▁cruc": 18767, + "urities": 18768, + "▁presumed": 18769, + "▁exchanged": 18770, + "▁ATP": 18771, + "▁Defin": 18772, + "▁crude": 18773, + "enstein": 18774, + "ometown": 18775, + "▁centimetres": 18776, + "FR": 18777, + "▁Lions": 18778, + "▁Moreno": 18779, + "▁Pix": 18780, + "▁cuis": 18781, + "!”": 18782, + "Or": 18783, + "isen": 18784, + "walk": 18785, + "ández": 18786, + "▁Gould": 18787, + "fs": 18788, + "undy": 18789, + "▁Rox": 18790, + "▁bip": 18791, + "▁harv": 18792, + "▁jewel": 18793, + "▁Vision": 18794, + "▁mosque": 18795, + "▁platoon": 18796, + "▁charging": 18797, + "into": 18798, + "itia": 18799, + "ocial": 18800, + "▁Solid": 18801, + "▁apple": 18802, + "▁latitude": 18803, + "▁Methodist": 18804, + "▁parallels": 18805, + "▁applicable": 18806, + "▁wr": 18807, + "▁insult": 18808, + "▁skiing": 18809, + "▁documentation": 18810, + "isse": 18811, + "thesis": 18812, + "▁Angels": 18813, + "▁intric": 18814, + "▁metaph": 18815, + "▁teenager": 18816, + "▁Guatemala": 18817, + "gos": 18818, + "haus": 18819, + "▁civic": 18820, + "▁Wrestle": 18821, + "▁immense": 18822, + "▁delicate": 18823, + "▁Statistics": 18824, + "indergart": 18825, + "▁infrared": 18826, + "▁supportive": 18827, + "▁gwoup": 18828, + "▁pathways": 18829, + "▁algorithms": 18830, + "▁Hindi": 18831, + "▁Jenna": 18832, + "'.": 18833, + "bot": 18834, + "▁Federer": 18835, + "▁committees": 18836, + "eterm": 18837, + "▁ammon": 18838, + "▁Thirty": 18839, + "▁ridges": 18840, + "▁Academic": 18841, + "▁Benedict": 18842, + "▁relegated": 18843, + "On": 18844, + "▁1858": 18845, + "▁Fo": 18846, + "▁counting": 18847, + "▁visibility": 18848, + "▁Agricultural": 18849, + "▁satisfaction": 18850, + "▁Ans": 18851, + "kward": 18852, + "chester": 18853, + "▁insurg": 18854, + "▁Something": 18855, + "▁qualification": 18856, + "UCN": 18857, + "▁Andr": 18858, + "▁Glad": 18859, + "▁blade": 18860, + "▁shame": 18861, + "▁iPh": 18862, + "▁incap": 18863, + "▁Afterwards": 18864, + "anie": 18865, + "▁asym": 18866, + "▁Usually": 18867, + "igne": 18868, + "last": 18869, + "▁Blaine": 18870, + "▁testified": 18871, + "▁Pod": 18872, + "▁1856": 18873, + "▁Tina": 18874, + "▁frontal": 18875, + "▁journals": 18876, + "▁inflammatory": 18877, + "▁Bit": 18878, + "opath": 18879, + "▁Aircraft": 18880, + "▁Teachers": 18881, + "▁promotes": 18882, + "▁protects": 18883, + "▁commended": 18884, + "▁Reyalizatè": 18885, + "▁counterpart": 18886, + "aternity": 18887, + "▁overlooked": 18888, + "▁Immediately": 18889, + "▁surprisingly": 18890, + "▁Gö": 18891, + "acker": 18892, + "▁mizisyen": 18893, + "olds": 18894, + "▁jou": 18895, + "▁rotating": 18896, + "▁intentionally": 18897, + "esa": 18898, + "arez": 18899, + "ilies": 18900, + "▁Thir": 18901, + "▁suite": 18902, + "▁monsoon": 18903, + "▁posture": 18904, + "▁tidal": 18905, + "▁Therap": 18906, + "▁charting": 18907, + "▁concurrent": 18908, + "▁southbound": 18909, + "acies": 18910, + "▁throws": 18911, + "▁Evening": 18912, + "▁browser": 18913, + "▁earthquakes": 18914, + "▁ineffective": 18915, + "UR": 18916, + "▁mars": 18917, + "▁recapt": 18918, + "▁enjoyable": 18919, + "DT": 18920, + "▁Date": 18921, + "▁Kant": 18922, + "▁spill": 18923, + "▁deleted": 18924, + "▁electromagnetic": 18925, + "▁Š": 18926, + "resses": 18927, + "▁dominate": 18928, + "▁fertility": 18929, + "▁FC": 18930, + "▁1849": 18931, + "▁ruined": 18932, + "olescent": 18933, + "▁neutron": 18934, + "▁interval": 18935, + "▁overtime": 18936, + "▁goalkeeper": 18937, + "▁prestigious": 18938, + "ahan": 18939, + "antè": 18940, + "inda": 18941, + "iatus": 18942, + "▁manor": 18943, + "▁Halifax": 18944, + "▁hygiene": 18945, + "▁propeller": 18946, + "▁landscapes": 18947, + "▁136": 18948, + "▁pest": 18949, + "▁basal": 18950, + "asyonal": 18951, + "ublished": 18952, + "▁dressing": 18953, + "inh": 18954, + "esome": 18955, + "▁sued": 18956, + "▁Claren": 18957, + "▁Carroll": 18958, + "▁Classical": 18959, + "▁submission": 18960, + "bath": 18961, + "▁Away": 18962, + "▁gills": 18963, + "▁Compar": 18964, + "ogenesis": 18965, + "▁justify": 18966, + "▁Prussian": 18967, + "▁frigates": 18968, + "▁classrooms": 18969, + "▁Zag": 18970, + "▁Rank": 18971, + "▁hast": 18972, + "▁micros": 18973, + "▁scorer": 18974, + "▁dismant": 18975, + "clesiastical": 18976, + "▁Dock": 18977, + "▁prez": 18978, + "▁Charter": 18979, + "▁advisory": 18980, + "▁somebody": 18981, + "▁underway": 18982, + "▁Sé": 18983, + "azar": 18984, + "▁Nim": 18985, + "▁lemur": 18986, + "▁loving": 18987, + "▁RIAA": 18988, + "▁duct": 18989, + "▁Achie": 18990, + "▁semif": 18991, + "▁cu": 18992, + "▁Lans": 18993, + "▁Root": 18994, + "▁Teen": 18995, + "▁Beast": 18996, + "▁amend": 18997, + "▁Jet": 18998, + "ablish": 18999, + "▁resume": 19000, + "▁spiral": 19001, + "▁remnant": 19002, + "▁hierarchy": 19003, + "Ph": 19004, + "ilus": 19005, + "▁MacD": 19006, + "▁cerv": 19007, + "▁satisfy": 19008, + "▁refrig": 19009, + "▁circuits": 19010, + "▁refusing": 19011, + "▁Phase": 19012, + "▁clerk": 19013, + "▁Hollow": 19014, + "▁knight": 19015, + "▁embrace": 19016, + "▁amounted": 19017, + "▁Standards": 19018, + "▁advertisements": 19019, + "▁mint": 19020, + "▁wires": 19021, + "▁bicycle": 19022, + "berries": 19023, + "▁brutal": 19024, + "▁cancell": 19025, + "▁Bil": 19026, + "▁coordinate": 19027, + "%,": 19028, + ".).": 19029, + "▁Mental": 19030, + "aternal": 19031, + "▁Lich": 19032, + "avilion": 19033, + "▁awkward": 19034, + "▁solitary": 19035, + "▁exploit": 19036, + "▁Archives": 19037, + "ikk": 19038, + "▁Myster": 19039, + "economic": 19040, + "▁Literature": 19041, + "▁acet": 19042, + "▁wells": 19043, + "▁supreme": 19044, + "▁bou": 19045, + "▁vie": 19046, + "▁Spot": 19047, + "rowing": 19048, + "▁pulse": 19049, + "▁demolition": 19050, + "▁questioning": 19051, + "weed": 19052, + "▁Falk": 19053, + "ementia": 19054, + "▁hunters": 19055, + "▁Stafford": 19056, + "▁relijyon": 19057, + "wi": 19058, + "bat": 19059, + "▁..": 19060, + "fied": 19061, + "▁osi": 19062, + "▁Troy": 19063, + "▁sake": 19064, + "▁plantation": 19065, + "▁iv": 19066, + "bred": 19067, + "odont": 19068, + "▁ESPN": 19069, + "rescent": 19070, + "▁Duchess": 19071, + "▁meanings": 19072, + "▁LC": 19073, + "▁Zimb": 19074, + "▁dentist": 19075, + "▁superhero": 19076, + "▁conscience": 19077, + "▁victorious": 19078, + "▁workshops": 19079, + "ław": 19080, + "nant": 19081, + "▁consort": 19082, + "▁Sunderland": 19083, + "erns": 19084, + "▁Oppen": 19085, + "▁ordin": 19086, + "▁Fuller": 19087, + "▁crater": 19088, + "▁legitim": 19089, + "▁backdrop": 19090, + "▁therapeutic": 19091, + "▁missionaries": 19092, + "▁^": 19093, + "▁rabb": 19094, + "▁uter": 19095, + "▁effic": 19096, + "▁loads": 19097, + "▁devotion": 19098, + "▁promptly": 19099, + "▁readings": 19100, + "▁listeners": 19101, + "▁Doktè": 19102, + "▁Rafael": 19103, + "▁Perfect": 19104, + "▁constituted": 19105, + "unta": 19106, + "▁needle": 19107, + "▁reunited": 19108, + "▁Rutherford": 19109, + "hal": 19110, + "ocide": 19111, + "▁mimic": 19112, + "▁Fiction": 19113, + "▁infinite": 19114, + ".6": 19115, + "▁Lec": 19116, + "▁Pike": 19117, + "▁magnesium": 19118, + "▁proportions": 19119, + "▁rou": 19120, + "flamm": 19121, + "▁Corp": 19122, + "▁Beauty": 19123, + "▁Hoffman": 19124, + "▁Character": 19125, + "▁inscriptions": 19126, + "geon": 19127, + "▁Smy": 19128, + "▁gel": 19129, + "▁Draw": 19130, + "▁Webber": 19131, + "▁Scholars": 19132, + "▁toxicity": 19133, + "▁Discovery": 19134, + "▁geography": 19135, + "▁soy": 19136, + "▁Eyes": 19137, + "apeake": 19138, + "▁Always": 19139, + "▁tragic": 19140, + "▁predator": 19141, + "▁Questions": 19142, + "▁partition": 19143, + "All": 19144, + "boats": 19145, + "▁scrut": 19146, + "▁Barber": 19147, + "▁overhead": 19148, + "HC": 19149, + "vie": 19150, + "▁(\"": 19151, + "aird": 19152, + "▁Reds": 19153, + "▁Comic": 19154, + "▁manned": 19155, + "▁hometown": 19156, + "▁bottles": 19157, + "▁drowned": 19158, + "▁discarded": 19159, + "▁postponed": 19160, + "urnal": 19161, + "▁ADHD": 19162, + "stones": 19163, + "▁cables": 19164, + "▁restra": 19165, + "▁abdomen": 19166, + "▁tournaments": 19167, + "▁Upd": 19168, + "▁Wade": 19169, + "▁wilder": 19170, + "▁crafts": 19171, + "▁mankind": 19172, + "▁degradation": 19173, + "▁practically": 19174, + "▁interpretations": 19175, + "jord": 19176, + "▁spy": 19177, + "agara": 19178, + "▁eman": 19179, + "▁paired": 19180, + "▁issuing": 19181, + "▁unchang": 19182, + "▁warrior": 19183, + "▁Anglican": 19184, + "▁economies": 19185, + "▁damp": 19186, + "▁Adriatic": 19187, + "days": 19188, + "unton": 19189, + "▁glaciers": 19190, + "▁accusations": 19191, + "▁resemblance": 19192, + "When": 19193, + "▁osc": 19194, + "▁rer": 19195, + "▁Coach": 19196, + "▁Britney": 19197, + "▁Assessment": 19198, + "▁:-8": 19199, + "▁Hawk": 19200, + "▁popul": 19201, + "▁weird": 19202, + "TR": 19203, + "uber": 19204, + "▁pitit": 19205, + "▁Multiple": 19206, + "bands": 19207, + "▁Fresh": 19208, + "▁Flu": 19209, + "▁Vaugh": 19210, + "ifiable": 19211, + "▁Nearly": 19212, + "▁divorced": 19213, + "▁associates": 19214, + "▁psychiatric": 19215, + "En": 19216, + "estial": 19217, + "▁tailed": 19218, + "▁Indianapolis": 19219, + "▁nu": 19220, + "romb": 19221, + "▁Osw": 19222, + "ardon": 19223, + "▁embassy": 19224, + "▁upstream": 19225, + "▁temperate": 19226, + "BL": 19227, + "▁lumin": 19228, + "▁Eagles": 19229, + "▁sensation": 19230, + "▁resembling": 19231, + "bank": 19232, + "▁Knox": 19233, + "▁funk": 19234, + "▁appar": 19235, + "▁indef": 19236, + "▁Rivera": 19237, + "▁invisible": 19238, + "▁dissatis": 19239, + "▁acquiring": 19240, + "▁Filip": 19241, + "▁Holden": 19242, + "▁shrine": 19243, + "▁deities": 19244, + "▁oversaw": 19245, + "▁daylight": 19246, + "▁Minneapolis": 19247, + "▁expeditions": 19248, + "▁extr": 19249, + "▁urging": 19250, + "▁genetics": 19251, + "cover": 19252, + "ensen": 19253, + "▁Neigh": 19254, + "▁Sudan": 19255, + "▁appet": 19256, + "▁reporters": 19257, + "ignant": 19258, + "▁forbidden": 19259, + "▁perspectives": 19260, + "▁wand": 19261, + "▁Dodgers": 19262, + "human": 19263, + "▁Cauc": 19264, + "urgical": 19265, + "▁Lafayette": 19266, + "say": 19267, + "▁Dorothy": 19268, + "▁rebuild": 19269, + "▁Observer": 19270, + "▁broadcasting": 19271, + "▁Sté": 19272, + "▁scal": 19273, + "▁Higher": 19274, + "▁Harbour": 19275, + "▁Literary": 19276, + "▁±": 19277, + "awi": 19278, + "kill": 19279, + "unts": 19280, + "▁Sask": 19281, + "▁mentor": 19282, + "▁precursor": 19283, + "▁LA": 19284, + "▁Sci": 19285, + "▁Download": 19286, + "▁automobile": 19287, + "▁thunderstorms": 19288, + "2).": 19289, + "▁Gut": 19290, + "rague": 19291, + "▁Gret": 19292, + "▁IUCN": 19293, + "▁Employ": 19294, + "▁checks": 19295, + "▁Cert": 19296, + "otechn": 19297, + "▁lords": 19298, + "▁downed": 19299, + "▁Lambert": 19300, + "intendent": 19301, + "▁sque": 19302, + "▁kingdoms": 19303, + "▁Stockholm": 19304, + "▁Chesapeake": 19305, + "▁culminated": 19306, + "▁deliberate": 19307, + "▁inheritance": 19308, + "sterdam": 19309, + "breaking": 19310, + "▁desirable": 19311, + "▁reliability": 19312, + "▁Gy": 19313, + "▁Lynn": 19314, + "▁Quick": 19315, + "▁hairs": 19316, + "▁Geneva": 19317, + "▁Scouting": 19318, + "▁overturn": 19319, + "▁discrimin": 19320, + "uder": 19321, + "▁Laur": 19322, + "▁Julius": 19323, + "▁resear": 19324, + "▁excluding": 19325, + "▁decoration": 19326, + "▁straightforward": 19327, + "ept": 19328, + "pole": 19329, + "▁talented": 19330, + "▁Bea": 19331, + "▁pulp": 19332, + "▁Across": 19333, + "▁disast": 19334, + "▁detective": 19335, + "▁tornadoes": 19336, + "pox": 19337, + "ctica": 19338, + "▁obey": 19339, + "ivorous": 19340, + "▁devote": 19341, + "▁grouped": 19342, + "▁mountainous": 19343, + "Wh": 19344, + "1).": 19345, + "abwe": 19346, + "tail": 19347, + "andan": 19348, + "▁pond": 19349, + "▁Jackie": 19350, + "▁Wesley": 19351, + "▁coined": 19352, + "▁helmet": 19353, + "▁instability": 19354, + "▁congressional": 19355, + "ahu": 19356, + "obil": 19357, + "▁Bend": 19358, + "▁Cecil": 19359, + "▁Winchester": 19360, + "▁BS": 19361, + "▁owns": 19362, + "▁chips": 19363, + "▁inacc": 19364, + "▁pronunciation": 19365, + "ancies": 19366, + "▁pollen": 19367, + "▁trilogy": 19368, + "▁Richards": 19369, + "▁contempl": 19370, + "▁NME": 19371, + "▁Basic": 19372, + "imi": 19373, + "ogo": 19374, + "▁3)": 19375, + "aland": 19376, + "azed": 19377, + "▁122": 19378, + "▁oppose": 19379, + "▁Sergeant": 19380, + "▁butterfly": 19381, + "▁Timberlake": 19382, + "▁transparent": 19383, + "grass": 19384, + "▁potent": 19385, + "▁excitement": 19386, + "shine": 19387, + "uliar": 19388, + "▁burnt": 19389, + "▁derives": 19390, + "▁compensate": 19391, + "▁devastated": 19392, + "▁Pole": 19393, + "▁1847": 19394, + "▁clad": 19395, + "mental": 19396, + "▁camoufl": 19397, + "▁Donna": 19398, + "▁heroic": 19399, + "▁disasters": 19400, + "▁additionally": 19401, + "Mar": 19402, + "▁execute": 19403, + "▁Middlesex": 19404, + "▁compose": 19405, + "▁Ivy": 19406, + "▁Kre": 19407, + "▁asset": 19408, + "▁equilibrium": 19409, + "aden": 19410, + "▁Close": 19411, + "▁sided": 19412, + "▁energetic": 19413, + "▁Louisville": 19414, + "CE": 19415, + "fu": 19416, + "▁Bj": 19417, + "▁Nig": 19418, + "▁Tud": 19419, + "icides": 19420, + "▁flame": 19421, + "atz": 19422, + "profit": 19423, + "▁sweep": 19424, + "▁depths": 19425, + "▁climbed": 19426, + "▁convoys": 19427, + "▁empir": 19428, + "▁Gaelic": 19429, + "▁monitors": 19430, + "▁superstructure": 19431, + "▁Miy": 19432, + "▁Guam": 19433, + "▁plains": 19434, + "▁Rebecca": 19435, + "▁obscure": 19436, + "▁prescription": 19437, + "▁cents": 19438, + "▁skirm": 19439, + "▁Damasc": 19440, + "▁discom": 19441, + "▁Clinical": 19442, + "beth": 19443, + "rank": 19444, + "▁Fav": 19445, + "veston": 19446, + "▁riots": 19447, + "ificant": 19448, + "▁plumage": 19449, + "▁objected": 19450, + "▁sketches": 19451, + "▁Commodore": 19452, + "▁selecting": 19453, + "▁Diss": 19454, + "ilight": 19455, + "▁twist": 19456, + "▁McMahon": 19457, + "▁reproduce": 19458, + "▁Keys": 19459, + "▁Jamie": 19460, + "fielder": 19461, + "▁clinic": 19462, + "▁Journey": 19463, + "▁Leopold": 19464, + "▁polymer": 19465, + "▁creators": 19466, + "▁Carpenter": 19467, + "▁unrelated": 19468, + "▁transactions": 19469, + "▁hob": 19470, + "gebra": 19471, + "▁para": 19472, + "▁goalt": 19473, + "▁screw": 19474, + "▁hunter": 19475, + "▁exports": 19476, + "▁trusted": 19477, + "▁Manufact": 19478, + "▁portraying": 19479, + "azi": 19480, + "lined": 19481, + "▁2010.": 19482, + "▁mentally": 19483, + "str": 19484, + "culosis": 19485, + "▁surplus": 19486, + "▁bullying": 19487, + "▁televised": 19488, + "▁spor": 19489, + "▁stellar": 19490, + "▁continuation": 19491, + "pur": 19492, + "▁Ses": 19493, + "ugged": 19494, + "▁stealing": 19495, + "▁Cly": 19496, + "▁Leh": 19497, + "▁thor": 19498, + "▁Crash": 19499, + "▁fluids": 19500, + "▁Matanzas": 19501, + "▁northeastward": 19502, + "orie": 19503, + "▁née": 19504, + "▁peaks": 19505, + "olation": 19506, + "▁criminals": 19507, + "▁accordingly": 19508, + "They": 19509, + "▁Tampa": 19510, + "▁Script": 19511, + "▁Compton": 19512, + "▁geological": 19513, + ".7": 19514, + "▁lets": 19515, + "▁Prophet": 19516, + "▁Italians": 19517, + "▁revelation": 19518, + "▁constellation": 19519, + "▁demonstrations": 19520, + "asterly": 19521, + "▁excavated": 19522, + "UN": 19523, + "▁luc": 19524, + "▁bugs": 19525, + "▁courty": 19526, + "abis": 19527, + "ollen": 19528, + "▁Laws": 19529, + "▁gastro": 19530, + "▁shirts": 19531, + "05": 19532, + "ég": 19533, + "caster": 19534, + "▁dehyd": 19535, + "▁Zimbabwe": 19536, + "izards": 19537, + "▁Guest": 19538, + "▁combust": 19539, + "▁cycling": 19540, + "▁permits": 19541, + "thy": 19542, + "▁4:": 19543, + "igion": 19544, + "▁senses": 19545, + "▁Gazette": 19546, + "▁restoring": 19547, + "▁minorities": 19548, + "▁Sz": 19549, + "▁Dow": 19550, + "▁1846": 19551, + "▁melt": 19552, + "▁seaf": 19553, + "monary": 19554, + "▁occupying": 19555, + "▁Communication": 19556, + "ocus": 19557, + "▁sitcom": 19558, + "▁implied": 19559, + "▁scholarly": 19560, + "▁ON": 19561, + "▁1855": 19562, + "▁toxins": 19563, + "▁Regular": 19564, + "▁differed": 19565, + "▁earnings": 19566, + "▁Rhodesian": 19567, + "▁arthritis": 19568, + "▁dependence": 19569, + "▁diets": 19570, + "▁tides": 19571, + "▁thrive": 19572, + "▁inspire": 19573, + "▁trenches": 19574, + "▁unpro": 19575, + "▁Augustine": 19576, + "▁referenced": 19577, + "arck": 19578, + "chev": 19579, + "▁cinemat": 19580, + "▁troubled": 19581, + "opsy": 19582, + "Mania": 19583, + "antis": 19584, + "arius": 19585, + "imson": 19586, + "solete": 19587, + "▁Essay": 19588, + "▁gorge": 19589, + "▁realism": 19590, + "▁Galveston": 19591, + "▁Recreation": 19592, + "▁prominently": 19593, + "▁humanitarian": 19594, + "▁Cul": 19595, + "▁nou": 19596, + "▁grief": 19597, + "▁dances": 19598, + "▁Everyone": 19599, + "▁Amsterdam": 19600, + "▁definitive": 19601, + "▁fence": 19602, + "▁nasal": 19603, + "▁waited": 19604, + "▁lightly": 19605, + "QL": 19606, + "▁1⁄2": 19607, + "▁cros": 19608, + "▁incub": 19609, + "▁pamph": 19610, + "▁settling": 19611, + "▁exceeding": 19612, + "▁adolescents": 19613, + "chel": 19614, + "alore": 19615, + "amorph": 19616, + "▁bowler": 19617, + "▁lauded": 19618, + "▁navigate": 19619, + "▁undertake": 19620, + "unks": 19621, + "▁veins": 19622, + "▁vomiting": 19623, + "▁impaired": 19624, + "▁decorative": 19625, + "▁rh": 19626, + "irming": 19627, + "specific": 19628, + "▁modeled": 19629, + "▁abdominal": 19630, + "IG": 19631, + "▁merit": 19632, + "De": 19633, + "▁drift": 19634, + "▁graduates": 19635, + "▁neglected": 19636, + "▁affordable": 19637, + "▁Giov": 19638, + "▁imèn": 19639, + "▁iPhone": 19640, + "▁honours": 19641, + "▁sympath": 19642, + "▁teknoloji": 19643, + "▁Loch": 19644, + "▁rav": 19645, + "▁Prote": 19646, + "▁Bronze": 19647, + "▁Hampton": 19648, + "▁miniature": 19649, + "oscop": 19650, + "▁1790": 19651, + "▁bulb": 19652, + "▁semic": 19653, + "▁Dawson": 19654, + "▁Rovers": 19655, + "▁hydraul": 19656, + "▁marketed": 19657, + "▁astronomy": 19658, + "▁linguistic": 19659, + "azy": 19660, + "▁Lap": 19661, + "amped": 19662, + "giate": 19663, + "▁Hyper": 19664, + "▁Barton": 19665, + "▁Hutton": 19666, + "▁Alberto": 19667, + "▁personalities": 19668, + "hous": 19669, + "▁123": 19670, + "▁Von": 19671, + "▁Maybe": 19672, + "▁Wyatt": 19673, + "▁seism": 19674, + "▁trench": 19675, + "hou": 19676, + "ESCO": 19677, + "othe": 19678, + "▁147": 19679, + "storm": 19680, + "▁Sons": 19681, + "▁Eleanor": 19682, + "▁envelop": 19683, + "▁erupted": 19684, + "▁stain": 19685, + "▁Divine": 19686, + "▁Racing": 19687, + "▁oscill": 19688, + "iliation": 19689, + "▁Philosophy": 19690, + ".-": 19691, + "▁Sixth": 19692, + "▁grazing": 19693, + "▁motorcy": 19694, + "▁celebrating": 19695, + "mare": 19696, + "▁lent": 19697, + "▁fundra": 19698, + "▁wetlands": 19699, + "▁AV": 19700, + "ecraft": 19701, + "thouse": 19702, + "▁casem": 19703, + "▁informs": 19704, + "▁lifelong": 19705, + "▁progresses": 19706, + "Ed": 19707, + "orns": 19708, + "▁Cyn": 19709, + "▁hex": 19710, + "▁eruptions": 19711, + "ango": 19712, + "▁bree": 19713, + "arette": 19714, + "▁comply": 19715, + "▁Lexington": 19716, + "▁wrestlers": 19717, + "▁bankruptcy": 19718, + "▁contingent": 19719, + "▁displaying": 19720, + "▁Alternative": 19721, + "uddy": 19722, + "▁hed": 19723, + "▁Bard": 19724, + "▁Marqu": 19725, + "▁quotes": 19726, + "▁talents": 19727, + "▁rejoined": 19728, + "-17": 19729, + "itud": 19730, + "▁Ibn": 19731, + "orate": 19732, + "▁athe": 19733, + "▁Lauren": 19734, + "▁Trinidad": 19735, + "▁friction": 19736, + "▁Canadians": 19737, + "▁continuity": 19738, + "300": 19739, + "dep": 19740, + "▁9,": 19741, + "▁catching": 19742, + "▁entirety": 19743, + "▁railways": 19744, + "▁sounding": 19745, + "▁composing": 19746, + "▁stap": 19747, + "▁Thank": 19748, + "▁lenses": 19749, + "▁surveyed": 19750, + "▁1852": 19751, + "ilvani": 19752, + "▁encry": 19753, + "▁Plants": 19754, + "▁modify": 19755, + "▁Cambodia": 19756, + "▁spanning": 19757, + "▁meg": 19758, + "▁1832": 19759, + "▁Carne": 19760, + "▁anpil": 19761, + "▁repris": 19762, + "arnation": 19763, + "▁Knowles": 19764, + "▁interim": 19765, + "▁enforced": 19766, + "▁(197": 19767, + "▁Fork": 19768, + "▁Plans": 19769, + "▁Worth": 19770, + "▁tense": 19771, + "▁commence": 19772, + "ghai": 19773, + "mind": 19774, + "▁Avon": 19775, + "▁Battery": 19776, + "▁Colombia": 19777, + "▁portable": 19778, + "▁converting": 19779, + "▁stocks": 19780, + "▁asteroid": 19781, + "▁survives": 19782, + "▁Supporting": 19783, + "bye": 19784, + "▁Eugen": 19785, + "▁educate": 19786, + "▁allergic": 19787, + "▁stationary": 19788, + "-15": 19789, + "vex": 19790, + "▁Pascal": 19791, + "▁Rupert": 19792, + "▁anchored": 19793, + "idy": 19794, + "▁Ki": 19795, + "▁Rac": 19796, + "▁dinò": 19797, + "▁halls": 19798, + "▁announcing": 19799, + "▁Zo": 19800, + "▁methane": 19801, + "▁newborn": 19802, + "▁Damascus": 19803, + "auke": 19804, + "▁Aus": 19805, + "▁Rib": 19806, + "acity": 19807, + "inski": 19808, + "▁Jain": 19809, + "▁adhe": 19810, + "▁integrate": 19811, + "▁shortages": 19812, + "▁southward": 19813, + "-9": 19814, + "ENT": 19815, + "cos": 19816, + "▁GP": 19817, + "writing": 19818, + "▁immigrant": 19819, + "▁specialists": 19820, + "uer": 19821, + "▁Ez": 19822, + "insky": 19823, + "▁aids": 19824, + "▁Tunis": 19825, + "▁violated": 19826, + "▁TS": 19827, + "orum": 19828, + "▁Occup": 19829, + "▁Timothy": 19830, + "▁grounded": 19831, + "▁gregoryen": 19832, + "▁superiority": 19833, + "▁Vi": 19834, + "white": 19835, + "ocence": 19836, + "▁Apost": 19837, + "▁tiger": 19838, + "▁appeals": 19839, + "▁simpler": 19840, + "▁authored": 19841, + "▁spinning": 19842, + "▁mathematic": 19843, + "▁amalg": 19844, + "▁Archer": 19845, + "▁loosely": 19846, + "▁compression": 19847, + "▁12,": 19848, + "▁backs": 19849, + "▁comprise": 19850, + "▁Byrd": 19851, + "▁smugg": 19852, + "▁immort": 19853, + "▁deposit": 19854, + "▁manoeuv": 19855, + "▁Belt": 19856, + "▁Seth": 19857, + "▁suits": 19858, + "▁Pennsilvani": 19859, + "▁Quint": 19860, + "▁Vishn": 19861, + "▁boring": 19862, + "▁wilderness": 19863, + "▁overwhelmed": 19864, + "▁ballet": 19865, + "▁Georget": 19866, + "To": 19867, + "▁lor": 19868, + "enhagen": 19869, + "tension": 19870, + "▁Vernon": 19871, + "▁Personal": 19872, + "▁contributor": 19873, + "aic": 19874, + "▁(“": 19875, + "▁tran": 19876, + "▁Cherry": 19877, + "▁Brisbane": 19878, + "▁verdict": 19879, + "▁Persians": 19880, + "▁mutation": 19881, + "▁peculiar": 19882, + "usk": 19883, + "▁1853": 19884, + "▁Nina": 19885, + "▁ruin": 19886, + "▁Iranian": 19887, + "▁Norwich": 19888, + "▁retrieve": 19889, + "▁Shar": 19890, + "▁seating": 19891, + "▁defender": 19892, + "▁password": 19893, + "▁MW": 19894, + "▁119": 19895, + "▁eyew": 19896, + "▁urgent": 19897, + "▁curious": 19898, + "▁Buckingham": 19899, + "fi": 19900, + "▁Wi": 19901, + "opia": 19902, + "▁gad": 19903, + "▁wag": 19904, + "▁Dent": 19905, + "▁corros": 19906, + "onstruction": 19907, + "▁Cretaceous": 19908, + "▁disastrous": 19909, + "edo": 19910, + "▁sè": 19911, + "riye": 19912, + "▁evolve": 19913, + "▁Vladimir": 19914, + "▁attracting": 19915, + "lass": 19916, + "▁travers": 19917, + "▁disappro": 19918, + "▁misunder": 19919, + "▁Elementary": 19920, + "amba": 19921, + "▁fits": 19922, + "▁transm": 19923, + "▁Guerrero": 19924, + "▁consolidated": 19925, + "▁assim": 19926, + "▁lions": 19927, + "▁edible": 19928, + "▁Hastings": 19929, + "▁backwards": 19930, + "▁antagonist": 19931, + "lord": 19932, + "▁hay": 19933, + "▁porn": 19934, + "▁springs": 19935, + "▁Azerbaijan": 19936, + "No": 19937, + "kon": 19938, + "iban": 19939, + "pend": 19940, + "step": 19941, + "▁Tomb": 19942, + "▁seab": 19943, + "headed": 19944, + "▁lining": 19945, + "may": 19946, + "▁Oakland": 19947, + "▁Heinrich": 19948, + "ilated": 19949, + "ounding": 19950, + "▁peasants": 19951, + "▁uniforms": 19952, + "▁Gloucester": 19953, + "▁vulnerability": 19954, + "rities": 19955, + "▁litter": 19956, + "▁Towards": 19957, + "▁lumber": 19958, + "▁psyched": 19959, + "▁suspicion": 19960, + "▁Diệ": 19961, + "▁Pablo": 19962, + "▁energ": 19963, + "▁Socialist": 19964, + "▁prediction": 19965, + "▁calculation": 19966, + "unal": 19967, + "▁Exerc": 19968, + "▁ethanol": 19969, + "▁keyboards": 19970, + "▁selective": 19971, + "▁Ferry": 19972, + "▁Corner": 19973, + "▁dissent": 19974, + "▁Tasmania": 19975, + "arbon": 19976, + "▁Diệm": 19977, + "▁hered": 19978, + "▁humour": 19979, + "▁yielded": 19980, + "▁township": 19981, + "Be": 19982, + "itism": 19983, + "umbent": 19984, + "▁Located": 19985, + "▁Speaker": 19986, + "▁generator": 19987, + "▁Mau": 19988, + "▁tiles": 19989, + "▁leisure": 19990, + "▁Isabella": 19991, + "▁Traditional": 19992, + "▁umb": 19993, + "▁stalk": 19994, + "▁wholly": 19995, + "▁Commerce": 19996, + "osl": 19997, + "▁Rous": 19998, + "letion": 19999, + "▁Notre": 20000, + "▁tablets": 20001, + "▁auxiliary": 20002, + "▁expresses": 20003, + "cal": 20004, + "izoph": 20005, + "▁overc": 20006, + "lighten": 20007, + "olutions": 20008, + "▁seventy": 20009, + "indergarten": 20010, + "▁recruiting": 20011, + "▁cooperative": 20012, + "thms": 20013, + "▁Happ": 20014, + "arettes": 20015, + "▁circulated": 20016, + "▁desk": 20017, + "▁Rough": 20018, + "▁outdoors": 20019, + "▁confusing": 20020, + "▁spontaneous": 20021, + "▁transports": 20022, + "▁inappropriate": 20023, + "sta": 20024, + "elman": 20025, + "▁sher": 20026, + "▁Alien": 20027, + "▁belly": 20028, + "▁vivid": 20029, + "▁Antarctica": 20030, + "▁archbishop": 20031, + "▁obligation": 20032, + "usa": 20033, + "▁ACC": 20034, + "▁McCl": 20035, + "▁tire": 20036, + "▁abbey": 20037, + "▁ideals": 20038, + "▁obsolete": 20039, + "▁expecting": 20040, + "▁filmmakers": 20041, + "òk": 20042, + "▁Ing": 20043, + "▁zoo": 20044, + "▁Amor": 20045, + "▁glad": 20046, + "▁Breat": 20047, + "▁immin": 20048, + "▁Julien": 20049, + "▁persona": 20050, + "▁disruption": 20051, + "non": 20052, + "▁Moss": 20053, + "▁serm": 20054, + "▁Jenny": 20055, + "▁Vince": 20056, + "▁granite": 20057, + "▁adopting": 20058, + "▁Alexandra": 20059, + "▁discomfort": 20060, + "▁propulsion": 20061, + "▁WrestleMania": 20062, + "▁Heming": 20063, + "▁margins": 20064, + "▁airplane": 20065, + "▁municipalities": 20066, + "▁Flow": 20067, + "▁Capcom": 20068, + "▁Conversely": 20069, + "▁assumptions": 20070, + "▁Mered": 20071, + "▁missionary": 20072, + "guez": 20073, + "▁NOT": 20074, + "ermat": 20075, + "ussels": 20076, + "▁Abbas": 20077, + "izophren": 20078, + "▁workforce": 20079, + "▁divètisman": 20080, + "▁Representative": 20081, + "opt": 20082, + "enna": 20083, + "▁jumped": 20084, + "▁Harding": 20085, + "▁plantations": 20086, + "▁consultation": 20087, + "▁demonstrating": 20088, + "sche": 20089, + "icism": 20090, + "▁Lars": 20091, + "▁toilet": 20092, + "▁Experience": 20093, + "▁disciplines": 20094, + "ozo": 20095, + "▁shy": 20096, + "▁stal": 20097, + "▁2012.": 20098, + "▁abbre": 20099, + "▁Fringe": 20100, + "▁Transit": 20101, + "▁premium": 20102, + "▁exploded": 20103, + "▁markings": 20104, + "▁resonance": 20105, + "▁consulting": 20106, + "▁BR": 20107, + "seen": 20108, + "ledon": 20109, + "ropic": 20110, + "▁Herze": 20111, + "▁Yankovic": 20112, + "▁granting": 20113, + "▁migrants": 20114, + "▁collaborative": 20115, + "▁AG": 20116, + "▁Rule": 20117, + "▁frogs": 20118, + "▁pupil": 20119, + "▁brands": 20120, + "▁Believe": 20121, + "▁inscribed": 20122, + "▁2010,": 20123, + "▁Oldham": 20124, + "▁Reports": 20125, + "▁conceded": 20126, + "▁summoned": 20127, + "▁recognise": 20128, + "▁congestion": 20129, + "▁biz": 20130, + "▁bor": 20131, + "▁hij": 20132, + "▁Mits": 20133, + "▁arches": 20134, + "▁pollut": 20135, + "▁Chambers": 20136, + "▁Whatever": 20137, + "▁labelled": 20138, + "▁capitalism": 20139, + "▁responding": 20140, + "▁bru": 20141, + "ietal": 20142, + "alford": 20143, + "▁Concert": 20144, + "▁ecology": 20145, + "▁rendition": 20146, + "▁administer": 20147, + "kar": 20148, + "blems": 20149, + "ríguez": 20150, + "▁Above": 20151, + "▁Felix": 20152, + "▁Reyes": 20153, + "▁unint": 20154, + "igrated": 20155, + "▁asleep": 20156, + "▁desimal": 20157, + "▁chloride": 20158, + "▁marijuana": 20159, + "▁indirectly": 20160, + "▁recognizes": 20161, + "▁dissipating": 20162, + "tene": 20163, + "idable": 20164, + "▁Verde": 20165, + "▁Zhang": 20166, + "▁myths": 20167, + "iencies": 20168, + "▁Bergen": 20169, + "▁Heights": 20170, + "expl": 20171, + "gone": 20172, + "▁Gwen": 20173, + "▁Eston": 20174, + "▁Nolan": 20175, + "▁Plain": 20176, + "▁arrow": 20177, + "▁routed": 20178, + "▁surely": 20179, + "▁dignity": 20180, + "▁Meredith": 20181, + "imon": 20182, + "▁Rhy": 20183, + "▁Tet": 20184, + "▁float": 20185, + "▁potatoes": 20186, + "ophe": 20187, + "quel": 20188, + "▁kits": 20189, + "▁pays": 20190, + "▁Isabel": 20191, + "56": 20192, + "shi": 20193, + "▁Kau": 20194, + "amour": 20195, + "▁risen": 20196, + "▁elephants": 20197, + "loo": 20198, + "raged": 20199, + "▁Kamp": 20200, + "▁vacant": 20201, + "▁indicator": 20202, + "▁Pomp": 20203, + "▁ethn": 20204, + "▁Title": 20205, + "▁doubts": 20206, + "▁prehist": 20207, + "▁supervised": 20208, + ".4": 20209, + "dd": 20210, + "orem": 20211, + "marine": 20212, + "▁Victory": 20213, + "▁assumes": 20214, + "▁reconstructed": 20215, + "▁132": 20216, + "▁Shear": 20217, + "▁Artists": 20218, + "▁Rodríguez": 20219, + "▁Copenhagen": 20220, + "▁Amer": 20221, + "▁Darren": 20222, + "uding": 20223, + "▁detr": 20224, + "▁lamp": 20225, + "umbled": 20226, + "▁arrange": 20227, + "▁ambition": 20228, + "▁sixteenth": 20229, + "▁peripheral": 20230, + "▁confirmation": 20231, + "erner": 20232, + "▁Gandhi": 20233, + "▁Typically": 20234, + "evo": 20235, + "▁1844": 20236, + "▁Font": 20237, + "▁herd": 20238, + "▁Shanghai": 20239, + "▁numerical": 20240, + "▁omn": 20241, + "▁Coastal": 20242, + "▁patronage": 20243, + "▁perfection": 20244, + "obia": 20245, + "▁3000": 20246, + "▁dispro": 20247, + "▁differing": 20248, + "▁unofficial": 20249, + "▁Oppenheimer": 20250, + "▁alterations": 20251, + "▁cancellation": 20252, + "abel": 20253, + "stru": 20254, + "▁Hyp": 20255, + "▁SMS": 20256, + "▁Bret": 20257, + "▁Thous": 20258, + "▁seals": 20259, + "▁Streets": 20260, + "▁stained": 20261, + "▁segregation": 20262, + "▁Stay": 20263, + "osures": 20264, + "▁batsmen": 20265, + "▁pumps": 20266, + "▁proves": 20267, + "▁yearly": 20268, + "▁Andrews": 20269, + "▁senator": 20270, + "ulse": 20271, + "▁Save": 20272, + "▁turtle": 20273, + "children": 20274, + "ivo": 20275, + "▁Rita": 20276, + "▁funnel": 20277, + "▁upward": 20278, + "▁pilgrim": 20279, + "▁premises": 20280, + "▁ARIA": 20281, + "▁Bism": 20282, + "▁aiming": 20283, + "▁lament": 20284, + "▁nobles": 20285, + "▁fertile": 20286, + "▁engineered": 20287, + "▁renovation": 20288, + "▁astronomical": 20289, + "log": 20290, + "idas": 20291, + "phis": 20292, + "érie": 20293, + "▁append": 20294, + "▁inclined": 20295, + "▁melodies": 20296, + "agua": 20297, + "▁Thorpe": 20298, + "▁Eg": 20299, + "▁Cedar": 20300, + "▁Going": 20301, + "▁backst": 20302, + "▁sacked": 20303, + "▁membran": 20304, + "▁recipes": 20305, + "▁activation": 20306, + "▁correlation": 20307, + "▁ventilation": 20308, + "▁Matematisyen": 20309, + "pos": 20310, + "mons": 20311, + "▁Tek": 20312, + "orman": 20313, + "▁1776": 20314, + "▁Coff": 20315, + "▁erad": 20316, + "▁lifesp": 20317, + "▁Published": 20318, + "▁nons": 20319, + "Google": 20320, + "▁magist": 20321, + "▁silicon": 20322, + "▁tightly": 20323, + "▁Extension": 20324, + "wy": 20325, + "▁Opt": 20326, + "▁ate": 20327, + "▁Garcia": 20328, + "▁Medieval": 20329, + "▁suspicious": 20330, + "▁travay": 20331, + "▁Episode": 20332, + "▁attribute": 20333, + "card": 20334, + "▁Leip": 20335, + "▁endeav": 20336, + "One": 20337, + "ayed": 20338, + "▁pits": 20339, + "▁sprint": 20340, + "▁barrels": 20341, + "▁Particip": 20342, + "▁Mansfield": 20343, + "▁employing": 20344, + "▁fundament": 20345, + "Te": 20346, + "▁Hack": 20347, + "▁Jill": 20348, + "▁boxing": 20349, + "▁Forever": 20350, + "▁coaster": 20351, + "▁halfway": 20352, + "▁seizures": 20353, + "▁stranded": 20354, + "imensional": 20355, + "▁Secondary": 20356, + "▁TB": 20357, + "ococc": 20358, + "▁Peak": 20359, + "▁vend": 20360, + "▁Pitch": 20361, + "leading": 20362, + "▁hydrox": 20363, + "▁propose": 20364, + "▁holidays": 20365, + "▁vacation": 20366, + "▁Presbyter": 20367, + "esta": 20368, + "▁monk": 20369, + "▁prospects": 20370, + "▁excavations": 20371, + "▁1837": 20372, + "▁Stewie": 20373, + "▁induce": 20374, + "▁fathers": 20375, + "▁terminated": 20376, + "▁reinst": 20377, + "▁Quality": 20378, + "▁antibody": 20379, + "▁objections": 20380, + "Qu": 20381, + "aniel": 20382, + "▁recycled": 20383, + "▁Providence": 20384, + "▁worms": 20385, + "▁Carmen": 20386, + "▁inflict": 20387, + "▁Germanic": 20388, + "▁Moor": 20389, + "ánchez": 20390, + "▁caring": 20391, + "▁opener": 20392, + "▁carriage": 20393, + "▁inequality": 20394, + "▁liberation": 20395, + "inch": 20396, + "▁Pir": 20397, + "▁defendant": 20398, + "NG": 20399, + "▁Tolk": 20400, + "▁medley": 20401, + "▁Legal": 20402, + "▁Berger": 20403, + "▁orphan": 20404, + "▁horizon": 20405, + "▁Leonardo": 20406, + "▁volcanoes": 20407, + "▁GR": 20408, + "arse": 20409, + "▁Webb": 20410, + "▁humorous": 20411, + "▁Sut": 20412, + "▁Locke": 20413, + "▁pests": 20414, + "▁Inform": 20415, + "▁Davidson": 20416, + "las": 20417, + "▁BA": 20418, + "girl": 20419, + "▁Kiel": 20420, + "▁Dixon": 20421, + "▁Navig": 20422, + "▁poses": 20423, + "▁employs": 20424, + "▁isotope": 20425, + "▁Programme": 20426, + "▁automated": 20427, + "igm": 20428, + "vić": 20429, + "ongo": 20430, + "▁Dot": 20431, + "▁Lip": 20432, + "▁Krak": 20433, + "▁Style": 20434, + "▁Carson": 20435, + "▁ND": 20436, + "haven": 20437, + "▁1836": 20438, + "▁Abdul": 20439, + "▁Parkinson": 20440, + "▁administrator": 20441, + "ixed": 20442, + "▁nodes": 20443, + "▁hiring": 20444, + "▁asserts": 20445, + "▁WHO": 20446, + "▁pear": 20447, + "▁Seymour": 20448, + "▁inverte": 20449, + "▁Worcester": 20450, + "▁storytelling": 20451, + "fax": 20452, + "▁3-": 20453, + "oval": 20454, + "▁bod": 20455, + "amoto": 20456, + "emann": 20457, + "▁Dexter": 20458, + "▁overly": 20459, + "▁relying": 20460, + "▁Trafford": 20461, + "Co": 20462, + "▁Hyde": 20463, + "▁UNESCO": 20464, + "▁Reviews": 20465, + "▁amp": 20466, + "▁asylum": 20467, + "▁Filming": 20468, + "▁Finance": 20469, + "▁founders": 20470, + "▁spectral": 20471, + "ben": 20472, + "▁pic": 20473, + "▁wax": 20474, + "oresc": 20475, + "▁Nile": 20476, + "▁physicist": 20477, + "▁withstand": 20478, + "▁discharged": 20479, + "▁Mats": 20480, + "▁limb": 20481, + "▁Witch": 20482, + "▁Madanm": 20483, + "▁vi": 20484, + "ngel": 20485, + "▁dop": 20486, + "▁Bols": 20487, + "▁bail": 20488, + "hetics": 20489, + "▁clips": 20490, + "▁papal": 20491, + "▁Conrad": 20492, + "▁outward": 20493, + "▁penetrate": 20494, + "▁subordinate": 20495, + "▁downloadable": 20496, + "oit": 20497, + "▁ladder": 20498, + "▁expired": 20499, + "▁treason": 20500, + "▁Aristotle": 20501, + "▁assignments": 20502, + "▁141": 20503, + "▁Lines": 20504, + "▁therapies": 20505, + "▁Python": 20506, + "▁Belarus": 20507, + "▁imminent": 20508, + "erie": 20509, + "▁dos": 20510, + "▁Yosh": 20511, + "govina": 20512, + "▁Cairo": 20513, + "continental": 20514, + "▁colorful": 20515, + "▁simplicity": 20516, + "▁Å": 20517, + "▁tying": 20518, + "▁nominee": 20519, + "▁quadrup": 20520, + "▁Colonial": 20521, + "▁enjoying": 20522, + "week": 20523, + "antan": 20524, + "▁Autom": 20525, + "▁scler": 20526, + "▁preserving": 20527, + "▁Jed": 20528, + "▁Boot": 20529, + "▁Wimb": 20530, + "▁Ukrain": 20531, + "▁dementia": 20532, + "▁pleasant": 20533, + "leen": 20534, + "▁EMI": 20535, + "▁Lif": 20536, + "▁Lux": 20537, + "▁Wey": 20538, + "family": 20539, + "▁strat": 20540, + "▁Campus": 20541, + "▁Fields": 20542, + "▁bloody": 20543, + "▁anxious": 20544, + "▁threaten": 20545, + "▁participant": 20546, + "▁posthumously": 20547, + "▁:-": 20548, + "gging": 20549, + "▁Hale": 20550, + "▁Hour": 20551, + "wèb": 20552, + "▁15,": 20553, + "▁Amazing": 20554, + "▁censorship": 20555, + "▁constituency": 20556, + "omas": 20557, + "▁Graph": 20558, + "▁Lester": 20559, + "atas": 20560, + "ithe": 20561, + "▁thumb": 20562, + "▁unfair": 20563, + "▁2013.": 20564, + "▁smile": 20565, + "▁replica": 20566, + "▁2014.": 20567, + "▁Maggie": 20568, + "▁bubble": 20569, + "▁stimulate": 20570, + "eke": 20571, + "▁Tul": 20572, + "▁Dors": 20573, + "▁feast": 20574, + "▁sexes": 20575, + "▁spore": 20576, + "▁Investig": 20577, + "▁reopened": 20578, + "odus": 20579, + "▁148": 20580, + "▁Hew": 20581, + "▁Emil": 20582, + "ocytes": 20583, + "▁Analy": 20584, + "▁Warriors": 20585, + "▁compares": 20586, + "▁complexes": 20587, + "▁accumulation": 20588, + "▁MB": 20589, + "▁Hog": 20590, + "▁Host": 20591, + "quarter": 20592, + "▁chords": 20593, + "ERS": 20594, + "▁||": 20595, + "harm": 20596, + "ensity": 20597, + "▁Known": 20598, + "▁Pilot": 20599, + "▁behave": 20600, + "▁sticks": 20601, + "▁reformed": 20602, + "look": 20603, + "▁bog": 20604, + "▁Shop": 20605, + "èle": 20606, + "▁1841": 20607, + "▁Write": 20608, + "▁Thomson": 20609, + "▁anatomy": 20610, + "▁Kön": 20611, + "▁tin": 20612, + "▁Hook": 20613, + "▁Mold": 20614, + "▁bend": 20615, + "▁hiatus": 20616, + "▁Freeway": 20617, + "▁Virtual": 20618, + "▁reacted": 20619, + "▁intermitt": 20620, + "▁unchanged": 20621, + "▁seventeenth": 20622, + "▁trafficking": 20623, + "UT": 20624, + "▁UP": 20625, + "▁Cubs": 20626, + "▁stab": 20627, + "▁maker": 20628, + "▁Fowler": 20629, + "▁Lionel": 20630, + "oin": 20631, + "▁Worlds": 20632, + "▁satisfying": 20633, + "ów": 20634, + "beck": 20635, + "sten": 20636, + "▁Okin": 20637, + "▁Trou": 20638, + "▁Guill": 20639, + "▁slender": 20640, + "▁freezing": 20641, + "smith": 20642, + "▁Mell": 20643, + "▁bulbs": 20644, + "▁sheer": 20645, + "▁Montene": 20646, + "▁academy": 20647, + "▁advisor": 20648, + "9).": 20649, + "vic": 20650, + "ricken": 20651, + "▁comet": 20652, + "▁Welles": 20653, + "▁5:": 20654, + "adar": 20655, + "oney": 20656, + "▁Rise": 20657, + "▁expans": 20658, + "▁hailed": 20659, + "▁Tonight": 20660, + "▁coached": 20661, + "▁relaxed": 20662, + "top": 20663, + "nsic": 20664, + "▁Wess": 20665, + "ateful": 20666, + "▁alloy": 20667, + "▁desires": 20668, + "▁Cumberland": 20669, + "▁Psychology": 20670, + "▁violations": 20671, + "▁dysfunction": 20672, + "▁Ely": 20673, + "▁shouldn": 20674, + "▁Johannes": 20675, + "▁enduring": 20676, + "▁consulted": 20677, + "▁SK": 20678, + "▁plague": 20679, + "▁legends": 20680, + "▁omitted": 20681, + "ART": 20682, + "▁Galaxy": 20683, + "▁exh": 20684, + "▁Frost": 20685, + "▁tombs": 20686, + "▁Barack": 20687, + "oran": 20688, + "▁yeast": 20689, + "▁Gloria": 20690, + "▁scarce": 20691, + "▁generous": 20692, + "▁separating": 20693, + "▁supervisor": 20694, + "▁ling": 20695, + "▁Extra": 20696, + "▁comeb": 20697, + "▁inert": 20698, + "▁Sánchez": 20699, + "▁residences": 20700, + "▁DA": 20701, + "rill": 20702, + "▁Cave": 20703, + "▁Pluto": 20704, + "▁Shane": 20705, + "▁decree": 20706, + "▁Tolkien": 20707, + "▁ambient": 20708, + "▁crossover": 20709, + "▁flowering": 20710, + "rs": 20711, + "urai": 20712, + "▁khi": 20713, + "▁Parish": 20714, + "▁Fighting": 20715, + "▁marching": 20716, + "▁intervene": 20717, + "▁Centers": 20718, + "▁Imagine": 20719, + "▁kilometre": 20720, + "▁investigators": 20721, + "▁Brussels": 20722, + "▁α": 20723, + "▁Ork": 20724, + "imedia": 20725, + "forcing": 20726, + "▁resisted": 20727, + "▁privileges": 20728, + "ogly": 20729, + "▁Jets": 20730, + "initely": 20731, + "▁Vishnu": 20732, + "▁fluoride": 20733, + "▁searched": 20734, + "▁hepatitis": 20735, + "▁excavation": 20736, + "bourg": 20737, + "▁Poul": 20738, + "▁Bates": 20739, + "▁allergies": 20740, + "▁Rook": 20741, + "▁grie": 20742, + "▁Cinema": 20743, + "▁Effect": 20744, + "▁Shannon": 20745, + "▁angular": 20746, + "▁validity": 20747, + "▁methodology": 20748, + "ovny": 20749, + "▁Duff": 20750, + "▁Twin": 20751, + "▁cass": 20752, + "▁insign": 20753, + "▁nominal": 20754, + "▁dissolution": 20755, + "mb": 20756, + "▁Fréd": 20757, + "▁exams": 20758, + "healthy": 20759, + "▁quietly": 20760, + "▁Kee": 20761, + "ropods": 20762, + "▁rooted": 20763, + "▁crowded": 20764, + "▁Canadiens": 20765, + "▁salvation": 20766, + "fat": 20767, + "gard": 20768, + "▁shelf": 20769, + "▁Cities": 20770, + "▁Duchovny": 20771, + "▁Sinclair": 20772, + "▁Dartmouth": 20773, + "▁marriages": 20774, + "▁Surviv": 20775, + "▁Xavier": 20776, + "▁translations": 20777, + "▁neo": 20778, + "third": 20779, + "▁hood": 20780, + "▁sinc": 20781, + "▁Agent": 20782, + "▁adulthood": 20783, + "▁exercised": 20784, + "hardt": 20785, + "Figure": 20786, + "▁Trent": 20787, + "▁leased": 20788, + "▁freestyle": 20789, + "▁argu": 20790, + "▁Beatty": 20791, + "ilingual": 20792, + "▁sanctuary": 20793, + "▁Nottingham": 20794, + "riz": 20795, + "▁Zelda": 20796, + "▁addict": 20797, + "▁mascul": 20798, + "▁healthier": 20799, + "▁institute": 20800, + "▁vertebrae": 20801, + "▁Hemisphere": 20802, + "▁Legislative": 20803, + "▁commitments": 20804, + "3).": 20805, + "pdf": 20806, + "▁Hir": 20807, + "▁Pione": 20808, + "▁twins": 20809, + "▁Wilder": 20810, + "▁cosmic": 20811, + "▁disqual": 20812, + "▁stunning": 20813, + "▁governors": 20814, + ")||": 20815, + "gue": 20816, + "midt": 20817, + "▁1815": 20818, + "▁Pérez": 20819, + "▁Consid": 20820, + "▁turtles": 20821, + "▁Randolph": 20822, + "▁rewarded": 20823, + "▁willingness": 20824, + "▁Venet": 20825, + "▁Battles": 20826, + "▁thirteenth": 20827, + "▁1.5": 20828, + "▁JMA": 20829, + "▁Monthly": 20830, + "▁sympathy": 20831, + "▁Returning": 20832, + "4).": 20833, + "▁overd": 20834, + "▁folded": 20835, + "▁obliged": 20836, + "▁Dund": 20837, + "lation": 20838, + "▁Hamlet": 20839, + "▁Sidney": 20840, + "▁amphibious": 20841, + "▁cylindrical": 20842, + "▁Ket": 20843, + "▁Marina": 20844, + "▁expose": 20845, + "▁Colbert": 20846, + "▁financed": 20847, + "▁stretches": 20848, + "▁projection": 20849, + "▁Tah": 20850, + "▁frans": 20851, + "▁Coming": 20852, + "▁Shackleton": 20853, + "obs": 20854, + "olding": 20855, + "▁faint": 20856, + "ouraged": 20857, + "▁Speaking": 20858, + "▁reminded": 20859, + "▁pharmaceut": 20860, + "cs": 20861, + "best": 20862, + "▁oval": 20863, + "▁crocod": 20864, + "▁defect": 20865, + "itations": 20866, + "▁bladder": 20867, + "▁protested": 20868, + "shaped": 20869, + "▁Manit": 20870, + "▁Rules": 20871, + "▁Siber": 20872, + "▁ditch": 20873, + "▁herbs": 20874, + "▁Colony": 20875, + "▁remedy": 20876, + "cestershire": 20877, + "aldi": 20878, + "▁splits": 20879, + "▁advocacy": 20880, + "▁coincided": 20881, + "▁celebrities": 20882, + "še": 20883, + "▁Rum": 20884, + "space": 20885, + "utory": 20886, + "▁rust": 20887, + "▁Milky": 20888, + "▁Touch": 20889, + "▁mantle": 20890, + "▁conquer": 20891, + "▁dispers": 20892, + "▁villagers": 20893, + "▁broadcasts": 20894, + "arb": 20895, + "▁(3)": 20896, + "orient": 20897, + "▁Warrior": 20898, + "▁tallest": 20899, + "ôme": 20900, + "rots": 20901, + "▁Attack": 20902, + "▁grasses": 20903, + "▁alternating": 20904, + "▁Meteorological": 20905, + "baum": 20906, + "istani": 20907, + "▁Influ": 20908, + "▁lifting": 20909, + "▁suffers": 20910, + "▁digitally": 20911, + "▁spokesman": 20912, + "▁distribute": 20913, + "▁generators": 20914, + "▁protesters": 20915, + "nian": 20916, + "pers": 20917, + "inished": 20918, + "▁Roland": 20919, + "▁Terror": 20920, + "▁mandate": 20921, + "▁Knowledge": 20922, + "utz": 20923, + "▁2016.": 20924, + "▁mates": 20925, + "▁Bottom": 20926, + "▁canopy": 20927, + "▁checking": 20928, + "▁Herzegovina": 20929, + "▁Glory": 20930, + "▁Joker": 20931, + "▁Bolshev": 20932, + "▁cardiac": 20933, + "▁seizure": 20934, + "▁disagree": 20935, + "▁hampered": 20936, + ".),": 20937, + "awak": 20938, + "▁Boh": 20939, + "▁mosa": 20940, + "▁Shakira": 20941, + "▁persist": 20942, + "▁vampire": 20943, + "▁Northumb": 20944, + "▁Hemingway": 20945, + "▁Ras": 20946, + "utable": 20947, + "▁masks": 20948, + "▁jacket": 20949, + "▁Highland": 20950, + "▁possesses": 20951, + "▁GA": 20952, + "ribing": 20953, + "▁Bullet": 20954, + "▁Freeman": 20955, + "▁appetite": 20956, + "▁Initiative": 20957, + "▁allegiance": 20958, + "▁overlooking": 20959, + "▁Kab": 20960, + "▁bent": 20961, + "▁upwards": 20962, + "▁exaggerated": 20963, + "Conn": 20964, + "▁sax": 20965, + "iliar": 20966, + "▁Includ": 20967, + "▁shorts": 20968, + "▁Warning": 20969, + "▁Laurence": 20970, + "But": 20971, + "▁Shepherd": 20972, + "▁tutorial": 20973, + "▁Educational": 20974, + "▁unm": 20975, + "▁pall": 20976, + "▁Antilles": 20977, + "▁terrorism": 20978, + "▁Hes": 20979, + "▁Syrac": 20980, + "olecular": 20981, + "▁arguably": 20982, + "▁hemisphere": 20983, + "▁preferences": 20984, + "▁supplemented": 20985, + "▁Iz": 20986, + "omme": 20987, + "▁Jump": 20988, + "▁Wilf": 20989, + "▁downloads": 20990, + "iao": 20991, + "▁Pond": 20992, + "▁Willy": 20993, + "▁trait": 20994, + "▁memoirs": 20995, + "▁upright": 20996, + "▁Citizens": 20997, + "▁provoked": 20998, + "aukee": 20999, + "▁smok": 21000, + "▁Wilde": 21001, + "▁Congressional": 21002, + "whe": 21003, + "borg": 21004, + "▁clues": 21005, + "▁Jeanne": 21006, + "▁canals": 21007, + "▁harness": 21008, + "▁depictions": 21009, + "shot": 21010, + "▁460": 21011, + "▁Appro": 21012, + "▁vinyl": 21013, + "▁Hokies": 21014, + "▁Sheriff": 21015, + "▁Voyager": 21016, + "▁reperto": 21017, + "▁embraced": 21018, + "▁synchron": 21019, + "▁histories": 21020, + "▁envisioned": 21021, + "▁beams": 21022, + "▁exert": 21023, + "▁Sloven": 21024, + "▁motors": 21025, + "▁steals": 21026, + "▁inspiring": 21027, + "▁SF": 21028, + "ibli": 21029, + "iston": 21030, + "oubted": 21031, + "▁Gentle": 21032, + "▁ecclesiastical": 21033, + "òb": 21034, + "antal": 21035, + "▁echoed": 21036, + "▁privilege": 21037, + "▁prevailing": 21038, + "oj": 21039, + "▁Nin": 21040, + "uling": 21041, + "▁Aval": 21042, + "▁aunt": 21043, + "▁Watts": 21044, + "▁comedian": 21045, + "▁definite": 21046, + "▁gradient": 21047, + "▁charitable": 21048, + "aji": 21049, + "▁Tact": 21050, + "▁devil": 21051, + "▁shipyard": 21052, + "▁Individual": 21053, + "▁gri": 21054, + "▁til": 21055, + "▁demise": 21056, + "▁domains": 21057, + "▁retains": 21058, + "▁consistency": 21059, + "▁Ace": 21060, + "ansen": 21061, + "▁lucky": 21062, + "▁Madame": 21063, + "▁Styles": 21064, + "▁prayers": 21065, + "vye": 21066, + "▁Xen": 21067, + "ingle": 21068, + "▁tast": 21069, + "▁cuisine": 21070, + "▁overweight": 21071, + "▁hostilities": 21072, + "▁oun": 21073, + "▁iPad": 21074, + "▁Silva": 21075, + "▁flames": 21076, + "▁Doggett": 21077, + "▁Nero": 21078, + "letter": 21079, + "lywood": 21080, + "▁Aston": 21081, + "ventional": 21082, + "▁Carnegie": 21083, + "▁Christina": 21084, + "▁representations": 21085, + "▁apps": 21086, + "▁Innov": 21087, + "tr": 21088, + "oso": 21089, + "▁50%": 21090, + "▁Ernst": 21091, + "▁Nicol": 21092, + "▁monkeys": 21093, + "▁Regarding": 21094, + "▁wip": 21095, + "chain": 21096, + "enzie": 21097, + "nance": 21098, + "▁Lyon": 21099, + "▁foli": 21100, + "▁Vatic": 21101, + "▁rewards": 21102, + "▁anticipation": 21103, + "umen": 21104, + "▁satire": 21105, + "▁Ricardo": 21106, + "▁shooter": 21107, + "▁wrestler": 21108, + "▁campaigned": 21109, + "▁disagreement": 21110, + "▁Nos": 21111, + "▁XII": 21112, + "aspor": 21113, + "cephal": 21114, + "▁assisting": 21115, + "▁appointments": 21116, + "rella": 21117, + "▁Champ": 21118, + "▁pix": 21119, + "▁owed": 21120, + "▁Auburn": 21121, + "▁sanction": 21122, + "▁twe": 21123, + "▁brew": 21124, + "▁musk": 21125, + "▁flora": 21126, + "▁Covent": 21127, + "▁diamonds": 21128, + "▁bombarded": 21129, + "▁Legislature": 21130, + "Bl": 21131, + "alan": 21132, + "▁1835": 21133, + "▁Appe": 21134, + "▁Forum": 21135, + "▁Libert": 21136, + "▁besieged": 21137, + "▁Sacrament": 21138, + "▁dismissal": 21139, + "cill": 21140, + "rongh": 21141, + "▁Gaul": 21142, + "▁Irene": 21143, + "▁Satan": 21144, + "▁Uncle": 21145, + "▁locks": 21146, + "▁souls": 21147, + "▁hatred": 21148, + "▁bron": 21149, + "▁Graves": 21150, + "▁fragile": 21151, + "▁proving": 21152, + "▁Belgrade": 21153, + "▁Syracuse": 21154, + ")|": 21155, + "also": 21156, + "▁1839": 21157, + "▁Carm": 21158, + "▁Memphis": 21159, + "▁→": 21160, + "eye": 21161, + "gado": 21162, + "▁Gob": 21163, + "▁Lob": 21164, + "erative": 21165, + "▁fuselage": 21166, + "Ind": 21167, + "note": 21168, + "marks": 21169, + "ubMed": 21170, + "▁cites": 21171, + "▁Chiefs": 21172, + "▁Silvia": 21173, + "▁124": 21174, + "▁tuned": 21175, + "▁banner": 21176, + "▁affiliate": 21177, + "▁Mec": 21178, + "orthy": 21179, + "▁1819": 21180, + "▁Lass": 21181, + "▁collar": 21182, + "▁Wimbledon": 21183, + "▁incumbent": 21184, + "▁passionate": 21185, + "-11": 21186, + "▁MR": 21187, + "elius": 21188, + "▁intu": 21189, + "▁Barrow": 21190, + "▁Telugu": 21191, + "▁bachelor": 21192, + "▁comeback": 21193, + "▁dividing": 21194, + "▁Nom": 21195, + "▁billed": 21196, + "▁hungry": 21197, + "▁Goldman": 21198, + "▁cartoons": 21199, + "▁exploited": 21200, + "▁Cosm": 21201, + "▁horr": 21202, + "▁logs": 21203, + "▁Sally": 21204, + "▁disco": 21205, + "▁fleeing": 21206, + "▁diarrhea": 21207, + "▁Chemistry": 21208, + "▁highlighting": 21209, + "▁administrators": 21210, + "▁specifications": 21211, + "▁Bombay": 21212, + ".8": 21213, + "▁Saff": 21214, + "▁tops": 21215, + "▁Alleg": 21216, + "▁Sales": 21217, + "herical": 21218, + "overing": 21219, + "▁invade": 21220, + "▁pencil": 21221, + "▁endured": 21222, + "▁secrets": 21223, + "▁Ottomans": 21224, + "▁Animation": 21225, + "▁Pakistani": 21226, + "▁collectors": 21227, + "▁attractions": 21228, + "▁14,": 21229, + "▁oton": 21230, + "▁racist": 21231, + "▁routinely": 21232, + "▁merchandise": 21233, + "Neill": 21234, + "▁venom": 21235, + "fork": 21236, + "mium": 21237, + "▁Mercy": 21238, + "▁aston": 21239, + "▁norms": 21240, + "▁hunted": 21241, + "esterday": 21242, + "▁Martine": 21243, + "▁plaster": 21244, + "▁Commercial": 21245, + "▁MGM": 21246, + "▁grip": 21247, + "access": 21248, + "rusted": 21249, + "▁Males": 21250, + "▁Katherine": 21251, + "▁coronation": 21252, + "dad": 21253, + "▁cake": 21254, + "▁heel": 21255, + "▁Carte": 21256, + "▁interrupt": 21257, + "▁retreating": 21258, + "▁Historically": 21259, + "▁Lü": 21260, + "▁Bly": 21261, + "▁Maz": 21262, + "▁jar": 21263, + "▁Brom": 21264, + "▁Alain": 21265, + "▁digging": 21266, + "▁headaches": 21267, + "▁utilizing": 21268, + "▁Ambassador": 21269, + "▁morphology": 21270, + "▁philosophers": 21271, + "▁Belf": 21272, + "▁Khrush": 21273, + "▁disreg": 21274, + "▁Combined": 21275, + "▁proposes": 21276, + "▁courtyard": 21277, + "▁weaknesses": 21278, + "ohan": 21279, + "phae": 21280, + "epers": 21281, + "▁Casc": 21282, + "▁Could": 21283, + "▁duplic": 21284, + "▁outpost": 21285, + "▁Blackburn": 21286, + "▁Hutchinson": 21287, + "▁millimeters": 21288, + "▁480": 21289, + "▁charm": 21290, + "▁insec": 21291, + "▁Temper": 21292, + "▁Metroid": 21293, + "▁breathe": 21294, + "▁analyzing": 21295, + "▁exclusion": 21296, + "▁Moff": 21297, + "▁Bohem": 21298, + "▁Silent": 21299, + "▁blades": 21300, + "▁Clarkson": 21301, + "▁Czechosl": 21302, + "▁surfaced": 21303, + "▁oub": 21304, + "▁Joey": 21305, + "▁sore": 21306, + "▁Noble": 21307, + "▁drill": 21308, + "▁gason": 21309, + "▁Sandra": 21310, + "▁dancer": 21311, + "▁shores": 21312, + "▁McLaren": 21313, + "▁Pauline": 21314, + "▁melodic": 21315, + "▁Behavior": 21316, + "▁consoles": 21317, + "▁illusion": 21318, + "▁muscular": 21319, + "▁Hep": 21320, + "▁kom": 21321, + "▁Sina": 21322, + "itches": 21323, + "▁Thing": 21324, + "▁scarc": 21325, + "emption": 21326, + "▁Summit": 21327, + "▁recruits": 21328, + "ismatic": 21329, + "▁spends": 21330, + "▁conning": 21331, + "onte": 21332, + "type": 21333, + "▁205": 21334, + "▁1838": 21335, + "▁Revel": 21336, + "▁grasp": 21337, + "edience": 21338, + "▁Orkney": 21339, + "▁Seventh": 21340, + "iza": 21341, + "urers": 21342, + "▁Pere": 21343, + "▁lips": 21344, + "▁Aberde": 21345, + "▁ensued": 21346, + "▁Miranda": 21347, + "▁Townsend": 21348, + "▁imagined": 21349, + "▁prolific": 21350, + "▁Khrushchev": 21351, + "▁conditioning": 21352, + "dig": 21353, + "▁ensures": 21354, + "▁lineage": 21355, + "▁Brittany": 21356, + "LS": 21357, + "nie": 21358, + "uta": 21359, + "▁305": 21360, + "▁heaviest": 21361, + "▁longtime": 21362, + "PP": 21363, + "▁Jab": 21364, + "▁Sev": 21365, + "▁Nest": 21366, + "▁Booker": 21367, + "▁Horror": 21368, + "▁Zagreb": 21369, + "▁Resolution": 21370, + "KO": 21371, + "▁pase": 21372, + "▁brack": 21373, + "otechnology": 21374, + "base": 21375, + "▁Quant": 21376, + "▁oubyen": 21377, + "▁foremost": 21378, + "▁searches": 21379, + "▁confronts": 21380, + "ajo": 21381, + "▁DM": 21382, + "ongs": 21383, + "▁mul": 21384, + "▁Gott": 21385, + "illary": 21386, + "powder": 21387, + "▁Cunning": 21388, + "▁surname": 21389, + "▁pathogens": 21390, + "▁suppressed": 21391, + "▁disappointing": 21392, + "vara": 21393, + "ammed": 21394, + "orical": 21395, + "▁synth": 21396, + "▁manman": 21397, + "▁rented": 21398, + "▁folklore": 21399, + "▁prestige": 21400, + "anj": 21401, + "▁Rican": 21402, + "▁difize": 21403, + "ynthesis": 21404, + "▁downward": 21405, + "▁headache": 21406, + "▁RF": 21407, + "iciary": 21408, + "▁Europa": 21409, + "▁Midway": 21410, + "▁tricks": 21411, + "▁senaris": 21412, + "▁Smithson": 21413, + "▁mounting": 21414, + "▁Structure": 21415, + "▁clearance": 21416, + "▁intensification": 21417, + "resc": 21418, + "▁careg": 21419, + "▁paran": 21420, + "▁inexper": 21421, + "▁recount": 21422, + "▁Chau": 21423, + "▁Rout": 21424, + "▁2011,": 21425, + "▁Raven": 21426, + "▁Theod": 21427, + "▁Tudor": 21428, + "▁derivative": 21429, + "▁Dé": 21430, + "ermo": 21431, + "▁lapt": 21432, + "▁puff": 21433, + "▁Instr": 21434, + "▁Exeter": 21435, + "▁Naples": 21436, + "▁gently": 21437, + "▁listened": 21438, + "▁illustrates": 21439, + "udge": 21440, + "otional": 21441, + "▁sezon": 21442, + "▁ladies": 21443, + "▁pottery": 21444, + "▁foraging": 21445, + "exts": 21446, + "lyss": 21447, + "▁moons": 21448, + "estinal": 21449, + "section": 21450, + "▁wherever": 21451, + "onders": 21452, + "▁humid": 21453, + "▁protoc": 21454, + "▁Kannada": 21455, + "▁posters": 21456, + "▁resembled": 21457, + "▁Ree": 21458, + "▁pac": 21459, + "▁1831": 21460, + "glades": 21461, + "▁eighty": 21462, + "▁universally": 21463, + "▁Zach": 21464, + "▁ital": 21465, + "▁Brett": 21466, + "▁wrist": 21467, + "▁lifespan": 21468, + "▁cos": 21469, + "▁nause": 21470, + "▁wherein": 21471, + "▁unexpectedly": 21472, + "his": 21473, + "▁Guer": 21474, + "▁Pill": 21475, + "skirts": 21476, + "▁cheek": 21477, + "▁reefs": 21478, + "▁traps": 21479, + "▁Kapoor": 21480, + "▁Empress": 21481, + "▁novelist": 21482, + "▁Bono": 21483, + "ockets": 21484, + "▁2012,": 21485, + "▁Clare": 21486, + "▁trash": 21487, + "▁Patients": 21488, + "▁suspects": 21489, + "▁fisheries": 21490, + "ulance": 21491, + "▁tones": 21492, + "▁upheld": 21493, + "▁Matilda": 21494, + "▁outrage": 21495, + "▁improper": 21496, + "▁Byzantines": 21497, + "▁Regardless": 21498, + "irling": 21499, + "▁Robot": 21500, + "▁Walsh": 21501, + "▁Farmer": 21502, + "▁Sinatra": 21503, + "▁greeted": 21504, + "▁responds": 21505, + "TO": 21506, + "▁warn": 21507, + "waukee": 21508, + "▁Fruit": 21509, + "▁wolves": 21510, + "▁councils": 21511, + "lov": 21512, + "▁Mare": 21513, + "▁Pend": 21514, + "▁Said": 21515, + "▁Issue": 21516, + "▁Factory": 21517, + "▁Leipzig": 21518, + "mentioned": 21519, + "▁Giovanni": 21520, + "▁benefited": 21521, + "▁ingredient": 21522, + "!!": 21523, + "▁Noah": 21524, + "▁hasn": 21525, + "▁Helena": 21526, + "▁otonòm": 21527, + "▁storey": 21528, + "▁Titanic": 21529, + "▁pharmac": 21530, + "▁diverted": 21531, + "▁reasonably": 21532, + "chus": 21533, + "yards": 21534, + "flower": 21535, + "▁fishermen": 21536, + "▁restriction": 21537, + "birth": 21538, + "ivores": 21539, + "opathy": 21540, + "umbering": 21541, + "▁Panthers": 21542, + "▁antibiotic": 21543, + "atl": 21544, + "dez": 21545, + "onnie": 21546, + "▁Albion": 21547, + "▁Prague": 21548, + "▁harmon": 21549, + "▁impose": 21550, + "▁rankings": 21551, + "eno": 21552, + "jou": 21553, + "▁129": 21554, + "▁outn": 21555, + "▁Cotton": 21556, + "▁Fellow": 21557, + "▁janvye": 21558, + "▁suprem": 21559, + "▁Goodman": 21560, + "▁strongh": 21561, + "▁Everglades": 21562, + "▁repertoire": 21563, + "▁144": 21564, + "▁Sale": 21565, + "▁pile": 21566, + "▁Rebell": 21567, + "▁lovers": 21568, + "▁Charleston": 21569, + "ouard": 21570, + "▁Myth": 21571, + "▁frost": 21572, + "▁airports": 21573, + "▁drilling": 21574, + "▁Ng": 21575, + "ikèn": 21576, + "isha": 21577, + "▁1775": 21578, + "ifully": 21579, + "▁Caucas": 21580, + "▁pinned": 21581, + "ondition": 21582, + "▁sponsor": 21583, + "▁jw": 21584, + "▁absurd": 21585, + "raviolet": 21586, + "▁exported": 21587, + "▁triggers": 21588, + "▁dye": 21589, + "▁Crosby": 21590, + "▁Internal": 21591, + "▁parental": 21592, + "▁template": 21593, + "▁outskirts": 21594, + "▁WA": 21595, + "▁kar": 21596, + "heart": 21597, + "▁Juda": 21598, + "▁seldom": 21599, + "▁ballads": 21600, + "▁donation": 21601, + "▁destinations": 21602, + "▁inconsistent": 21603, + "▁gloss": 21604, + "▁Dreams": 21605, + "▁bathroom": 21606, + "▁contexts": 21607, + "▁ancestral": 21608, + "▁commissioner": 21609, + "iae": 21610, + "ylene": 21611, + "quality": 21612, + "▁Android": 21613, + "atro": 21614, + "ouss": 21615, + "▁1842": 21616, + "▁Lance": 21617, + "▁outflow": 21618, + "▁rhythms": 21619, + "▁warehouse": 21620, + "▁epile": 21621, + "▁Soundtrack": 21622, + "wyn": 21623, + "▁HS": 21624, + "▁bricks": 21625, + "▁evangel": 21626, + "bard": 21627, + "▁Dang": 21628, + "▁artery": 21629, + "▁Randall": 21630, + "DOT": 21631, + "▁Volt": 21632, + "▁gale": 21633, + "▁buttons": 21634, + "▁Veterans": 21635, + "▁850": 21636, + "▁Excell": 21637, + "▁Airways": 21638, + "▁Egyptians": 21639, + "▁simplified": 21640, + "▁homosexuality": 21641, + "undo": 21642, + "▁Built": 21643, + "▁discs": 21644, + "▁Telesc": 21645, + "▁Smoking": 21646, + "▁Matthews": 21647, + "pendicular": 21648, + "▁gem": 21649, + "alley": 21650, + "fields": 21651, + "▁Alger": 21652, + "▁teyat": 21653, + "▁Bahrain": 21654, + "▁Glacier": 21655, + "▁lithium": 21656, + "▁fò": 21657, + "▁380": 21658, + "▁anest": 21659, + "▁femme": 21660, + "▁reliance": 21661, + "▁showcase": 21662, + "▁OR": 21663, + "pill": 21664, + "proof": 21665, + "tingu": 21666, + "▁Huff": 21667, + "▁pant": 21668, + "▁indul": 21669, + "ocative": 21670, + "▁copied": 21671, + "▁foliage": 21672, + "▁archives": 21673, + "▁archipelago": 21674, + "▁lam": 21675, + "▁emblem": 21676, + "▁vigorous": 21677, + "▁accession": 21678, + "▁dictionary": 21679, + "▁suppression": 21680, + "▁neurological": 21681, + "gil": 21682, + "▁idol": 21683, + "▁Photo": 21684, + "▁Rising": 21685, + "▁Trevor": 21686, + "▁holder": 21687, + "▁Criminal": 21688, + "▁Northeast": 21689, + "▁synagogue": 21690, + "far": 21691, + "fes": 21692, + "▁Cage": 21693, + "▁Luck": 21694, + "▁reint": 21695, + "▁chicks": 21696, + "▁fracture": 21697, + "▁medicinal": 21698, + "gets": 21699, + "stick": 21700, + "▁Hert": 21701, + "▁Carlo": 21702, + "▁facto": 21703, + "▁Initial": 21704, + "▁chimney": 21705, + "▁Venezuela": 21706, + "▁Reformation": 21707, + "▁magnificent": 21708, + "▁Clem": 21709, + "▁Foss": 21710, + "▁Fitzg": 21711, + "▁Barker": 21712, + "▁Magnus": 21713, + "▁Appeals": 21714, + "▁beloved": 21715, + "▁augmented": 21716, + "▁starboard": 21717, + "ondo": 21718, + "▁cows": 21719, + "▁totals": 21720, + "▁fountain": 21721, + "▁trustees": 21722, + "identified": 21723, + "▁compelled": 21724, + "▁recruitment": 21725, + "▁transaction": 21726, + "▁16,": 21727, + "▁Tsar": 21728, + "▁pools": 21729, + "▁10,000": 21730, + "▁dialog": 21731, + "▁anybody": 21732, + "izational": 21733, + "▁tuberculosis": 21734, + "▁Kw": 21735, + "▁clot": 21736, + "▁trunc": 21737, + "▁Monkey": 21738, + "▁Sophia": 21739, + "▁convex": 21740, + "▁unbeat": 21741, + "iplinary": 21742, + "▁gunfire": 21743, + "▁pension": 21744, + "▁Gilm": 21745, + "▁pope": 21746, + "▁2009,": 21747, + "▁Martí": 21748, + "lightenment": 21749, + "▁recognizing": 21750, + "-16": 21751, + "▁410": 21752, + "▁Scale": 21753, + "▁vigil": 21754, + "▁Create": 21755, + "▁alumni": 21756, + "▁Britann": 21757, + "▁Morocco": 21758, + "▁gesture": 21759, + "▁portfol": 21760, + "▁delivers": 21761, + "▁finances": 21762, + "▁astronomer": 21763, + "▁respondents": 21764, + "oop": 21765, + "ourg": 21766, + "▁Milk": 21767, + "▁burg": 21768, + "itudinal": 21769, + "▁strained": 21770, + "▁translate": 21771, + "anya": 21772, + "grat": 21773, + "▁MCC": 21774, + "iasis": 21775, + "▁Border": 21776, + "▁demons": 21777, + "▁repuls": 21778, + "▁plateau": 21779, + "▁Religion": 21780, + "▁licensing": 21781, + "lean": 21782, + "will": 21783, + "▁Tip": 21784, + "▁Yuc": 21785, + "▁caf": 21786, + "vance": 21787, + "▁1825": 21788, + "▁Eden": 21789, + "▁Loss": 21790, + "▁deaf": 21791, + "ectors": 21792, + "waters": 21793, + "worthy": 21794, + "▁plaza": 21795, + "▁recipe": 21796, + "▁coinage": 21797, + "▁lowering": 21798, + "▁explosives": 21799, + "▁bug": 21800, + "▁Hits": 21801, + "▁odor": 21802, + "▁rall": 21803, + "▁picks": 21804, + "▁offerings": 21805, + "iyè": 21806, + "hole": 21807, + "▁SEC": 21808, + "▁Kell": 21809, + "▁Ruby": 21810, + "▁Siege": 21811, + "▁catalogue": 21812, + "▁Parliamentary": 21813, + "▁bunch": 21814, + "▁rumours": 21815, + "▁proclaim": 21816, + "▁treaties": 21817, + "5)": 21818, + "▁Dram": 21819, + "▁nave": 21820, + "▁Threat": 21821, + "agements": 21822, + "▁carbohydrates": 21823, + "ysics": 21824, + "▁exiled": 21825, + "▁outright": 21826, + "▁Reviewers": 21827, + "▁westbound": 21828, + "▁exceptionally": 21829, + "▁installations": 21830, + "ís": 21831, + "iaz": 21832, + "▁Phel": 21833, + "▁cracks": 21834, + "▁Persona": 21835, + "▁photographed": 21836, + "fal": 21837, + "▁173": 21838, + "▁chat": 21839, + "▁Elvis": 21840, + "▁Torch": 21841, + "▁shrubs": 21842, + "▁Théâtre": 21843, + "▁Interactive": 21844, + "▁Tz": 21845, + "iola": 21846, + "icates": 21847, + "▁Lands": 21848, + "▁boots": 21849, + "▁stricken": 21850, + "ío": 21851, + "▁1829": 21852, + "▁Himm": 21853, + "▁Weston": 21854, + "oubtedly": 21855, + "▁Stanton": 21856, + "▁Available": 21857, + "▁Georgetown": 21858, + "▁interchang": 21859, + "aje": 21860, + "igny": 21861, + "▁18,": 21862, + "▁afore": 21863, + "▁apost": 21864, + "▁mercy": 21865, + "ourning": 21866, + "▁Relief": 21867, + "▁culminating": 21868, + "▁schizophren": 21869, + "jm": 21870, + "▁SW": 21871, + "▁Nit": 21872, + "ienced": 21873, + "▁Byron": 21874, + "▁Sanders": 21875, + "▁anymore": 21876, + "▁corresponds": 21877, + "▁WS": 21878, + "onut": 21879, + "opic": 21880, + "▁jun": 21881, + "ombat": 21882, + "▁Chat": 21883, + "▁Hiros": 21884, + "▁incentives": 21885, + "▁Yar": 21886, + "▁Hitch": 21887, + "▁retal": 21888, + "engeance": 21889, + "▁timeline": 21890, + "▁elongated": 21891, + "''": 21892, + "brate": 21893, + "▁bast": 21894, + "▁sandy": 21895, + "▁nod": 21896, + "alach": 21897, + "aryn": 21898, + "▁Rit": 21899, + "enium": 21900, + "▁flaws": 21901, + "▁hards": 21902, + "▁countless": 21903, + "▁optimistic": 21904, + "▁unfinished": 21905, + "▁dreadnought": 21906, + "wal": 21907, + "▁IF": 21908, + "▁Era": 21909, + "▁Gear": 21910, + "▁fork": 21911, + "▁noon": 21912, + "▁uniqu": 21913, + "▁crashes": 21914, + "▁kidneys": 21915, + "▁modules": 21916, + "▁concurrently": 21917, + "▁functionality": 21918, + "▁rack": 21919, + "▁whis": 21920, + "▁resent": 21921, + "▁remaster": 21922, + "▁Tuls": 21923, + "imetime": 21924, + "▁Primetime": 21925, + "▁discourse": 21926, + "▁preschool": 21927, + "▁pedestrian": 21928, + "osc": 21929, + "owship": 21930, + "▁dolphins": 21931, + "▁dwelling": 21932, + "▁♭": 21933, + "▁Marin": 21934, + "▁Vander": 21935, + "▁refurb": 21936, + "▁denounced": 21937, + "▁retention": 21938, + "ête": 21939, + "eking": 21940, + "▁literal": 21941, + "▁escaping": 21942, + "▁1814": 21943, + "▁void": 21944, + "▁generates": 21945, + "▁harvested": 21946, + "▁chromosome": 21947, + "▁undertaking": 21948, + "▁proportional": 21949, + "encia": 21950, + "itius": 21951, + "▁1833": 21952, + "finger": 21953, + "▁cohes": 21954, + "▁subpl": 21955, + "▁Mozamb": 21956, + "▁Shirley": 21957, + "▁fevriye": 21958, + "icultural": 21959, + "▁homework": 21960, + "▁Expressway": 21961, + "film": 21962, + "ummy": 21963, + "▁Sof": 21964, + "annah": 21965, + "▁bubb": 21966, + "iating": 21967, + "itives": 21968, + "▁Romeo": 21969, + "▁Wisden": 21970, + "▁pandan": 21971, + "▁implant": 21972, + "▁striker": 21973, + "▁textile": 21974, + "▁fertilizer": 21975, + "Ds": 21976, + "ecd": 21977, + "▁Wyn": 21978, + "▁Kemp": 21979, + "▁noir": 21980, + "▁poul": 21981, + "▁Schne": 21982, + "▁Til": 21983, + "▁Baja": 21984, + "▁evid": 21985, + "▁Rockef": 21986, + "▁overhe": 21987, + "▁Frédéric": 21988, + "▁intensify": 21989, + "▁advisories": 21990, + "▁Catholicism": 21991, + "▁225": 21992, + "▁Zhou": 21993, + "▁Caliph": 21994, + "▁Slayer": 21995, + "▁Utt": 21996, + "▁1843": 21997, + "▁Macdon": 21998, + "▁Paradise": 21999, + "▁cerebral": 22000, + "▁papa": 22001, + "▁2009.": 22002, + "▁Broken": 22003, + "▁rework": 22004, + "▁examines": 22005, + "▁235": 22006, + "grims": 22007, + "▁bells": 22008, + "▁staging": 22009, + "▁weights": 22010, + "▁physiological": 22011, + "fus": 22012, + "▁nec": 22013, + "▁Mana": 22014, + "govern": 22015, + "istice": 22016, + "▁apparatus": 22017, + "▁Presbyterian": 22018, + "▁Prayer": 22019, + "▁Dru": 22020, + "▁orch": 22021, + "unders": 22022, + "▁carcin": 22023, + "▁framed": 22024, + "▁nuclei": 22025, + "▁spells": 22026, + "▁Clarence": 22027, + "▁diagnose": 22028, + "▁harvesting": 22029, + "▁Yuk": 22030, + "antha": 22031, + "▁gotten": 22032, + "▁neglig": 22033, + "▁paradox": 22034, + "▁Bismarck": 22035, + "arro": 22036, + "▁Gul": 22037, + "▁scout": 22038, + "▁Million": 22039, + "▁advancement": 22040, + "▁conferences": 22041, + "▁disappearance": 22042, + "▁iOS": 22043, + "▁indo": 22044, + "▁Sounds": 22045, + "▁sophom": 22046, + "▁likened": 22047, + "▁divisional": 22048, + "▁engagements": 22049, + "▁Northumberland": 22050, + "▁Bf": 22051, + "▁Arj": 22052, + "▁Vamp": 22053, + "▁Levine": 22054, + "▁Sesame": 22055, + "▁Speech": 22056, + "▁overthrow": 22057, + "fle": 22058, + "▁Rhe": 22059, + "▁Eval": 22060, + "prints": 22061, + "manship": 22062, + "▁Hubble": 22063, + "▁sighted": 22064, + "▁Document": 22065, + "▁Cunningham": 22066, + "ija": 22067, + "akov": 22068, + "herly": 22069, + "▁adjo": 22070, + "▁Chess": 22071, + "▁Eliot": 22072, + "▁borne": 22073, + "▁focal": 22074, + "▁Nutrition": 22075, + "▁noticeable": 22076, + "▁1810": 22077, + "▁blew": 22078, + "▁Himal": 22079, + "▁fauna": 22080, + "▁Ladies": 22081, + "▁Mickey": 22082, + "▁Scouts": 22083, + "▁Galileo": 22084, + "▁Romantic": 22085, + "▁criticizing": 22086, + "antes": 22087, + "▁Slam": 22088, + "▁Bryant": 22089, + "▁denial": 22090, + "▁hyphae": 22091, + "▁Advisory": 22092, + "▁observes": 22093, + "▁Wanderers": 22094, + "▁archaeologists": 22095, + "▁dip": 22096, + "▁Torn": 22097, + "▁worsh": 22098, + "▁Highlands": 22099, + "▁pediatric": 22100, + "▁predictable": 22101, + "▁TR": 22102, + "inge": 22103, + "unda": 22104, + "▁Alg": 22105, + "▁Cull": 22106, + "▁Nikol": 22107, + "▁runoff": 22108, + "▁intrins": 22109, + "▁Thanksgiving": 22110, + "▁Taft": 22111, + "▁extras": 22112, + "▁centred": 22113, + "▁sickness": 22114, + "▁Municipal": 22115, + "vre": 22116, + "fill": 22117, + "▁Kyl": 22118, + "frame": 22119, + "▁unac": 22120, + "▁Twilight": 22121, + "kov": 22122, + "ounty": 22123, + "▁Resc": 22124, + "▁swamp": 22125, + "▁Factor": 22126, + "▁refugee": 22127, + "ardin": 22128, + "person": 22129, + "▁Manual": 22130, + "▁Winnipe": 22131, + "▁imports": 22132, + "▁depended": 22133, + "▁priorities": 22134, + "gain": 22135, + "owitz": 22136, + "▁Stoke": 22137, + "▁secre": 22138, + "▁corpse": 22139, + "▁bizarre": 22140, + "▁conspic": 22141, + "▁indicators": 22142, + "----": 22143, + "▁ego": 22144, + "▁Beta": 22145, + "▁Erin": 22146, + "▁pert": 22147, + "inement": 22148, + "▁Simple": 22149, + "▁teamed": 22150, + "▁Getting": 22151, + "▁MacDonald": 22152, + "▁Undertaker": 22153, + "▁transcript": 22154, + "him": 22155, + "uve": 22156, + "▁Vocal": 22157, + "▁Playing": 22158, + "▁Whereas": 22159, + "▁Rodriguez": 22160, + "▁canvas": 22161, + "▁uncont": 22162, + "▁approve": 22163, + "▁initiate": 22164, + "▁detention": 22165, + "▁eastbound": 22166, + "▁invite": 22167, + "▁ambitions": 22168, + "▁concurrency": 22169, + "▁Dix": 22170, + "ospace": 22171, + "▁Herod": 22172, + "▁mason": 22173, + "▁Corinth": 22174, + "▁Everett": 22175, + "▁Sabbath": 22176, + "▁fulfilled": 22177, + "▁adequately": 22178, + "uh": 22179, + "amon": 22180, + "▁punt": 22181, + "▁Match": 22182, + "▁respects": 22183, + "▁groundwater": 22184, + "▁transferring": 22185, + "good": 22186, + "▁1780": 22187, + "▁coding": 22188, + "▁dissem": 22189, + "▁Antio": 22190, + "▁brave": 22191, + "artments": 22192, + "▁Albania": 22193, + "intestinal": 22194, + "▁endurance": 22195, + "▁requesting": 22196, + "ées": 22197, + "▁SO": 22198, + "shop": 22199, + "▁groom": 22200, + "▁unsure": 22201, + "▁depleted": 22202, + "▁evolving": 22203, + "▁Milwaukee": 22204, + "▁broadside": 22205, + "▁realizing": 22206, + "▁masterpiece": 22207, + "▁simultaneous": 22208, + "▁acidic": 22209, + "▁disorgan": 22210, + "▁precedent": 22211, + "▁tributary": 22212, + "▁triangular": 22213, + "▁RA": 22214, + "▁17,": 22215, + "▁openings": 22216, + "▁subsidies": 22217, + "▁camouflage": 22218, + "▁pollutants": 22219, + "icho": 22220, + "ithm": 22221, + "▁cockpit": 22222, + "▁efficacy": 22223, + "▁Cornwallis": 22224, + "▁lighthouse": 22225, + "▁intersecting": 22226, + "▁accomplishments": 22227, + "▁Tac": 22228, + "▁1799": 22229, + "▁Paragu": 22230, + "ablished": 22231, + "▁Okinawa": 22232, + "▁Proceed": 22233, + "▁analogy": 22234, + "▁outbreaks": 22235, + "▁Continuing": 22236, + "▁instituted": 22237, + "▁compromised": 22238, + "▁variability": 22239, + "▁correspondent": 22240, + "▁ˈ": 22241, + "uffs": 22242, + "▁Petit": 22243, + "▁Wheel": 22244, + "▁excer": 22245, + "▁unrel": 22246, + "▁Majesty": 22247, + "▁reigning": 22248, + "▁Ukrainian": 22249, + "▁repeating": 22250, + "▁(16": 22251, + "▁AIF": 22252, + "▁Noel": 22253, + "▁fost": 22254, + "▁Ganes": 22255, + "▁Would": 22256, + "Farlane": 22257, + "iferous": 22258, + "▁stalled": 22259, + "▁stripes": 22260, + "▁hPa": 22261, + "▁Chir": 22262, + "▁Ahmad": 22263, + "▁lesions": 22264, + "▁Material": 22265, + "▁monopoly": 22266, + "▁discretion": 22267, + "▁Herc": 22268, + "▁crick": 22269, + "▁Wemble": 22270, + "▁Landing": 22271, + "▁pianist": 22272, + "▁servers": 22273, + "▁kilogram": 22274, + "▁compulsory": 22275, + "▁defendants": 22276, + "▁sacrifices": 22277, + "ARS": 22278, + "club": 22279, + "▁Wet": 22280, + "▁rans": 22281, + "▁Mortal": 22282, + "▁affirm": 22283, + "▁rowing": 22284, + "▁Wembley": 22285, + "▁extingu": 22286, + "▁Cromwell": 22287, + "▁Companies": 22288, + "igi": 22289, + "you": 22290, + "inar": 22291, + "▁149": 22292, + "agher": 22293, + "opotam": 22294, + "▁Brent": 22295, + "▁inputs": 22296, + "▁Compared": 22297, + "▁traumatic": 22298, + "lynn": 22299, + "oglob": 22300, + "uties": 22301, + "▁Peggy": 22302, + "▁memorials": 22303, + "boys": 22304, + "Frans": 22305, + "▁1801": 22306, + "▁Bian": 22307, + "ouncing": 22308, + "▁superb": 22309, + "▁Results": 22310, + "itness": 22311, + "▁bride": 22312, + "▁Heroes": 22313, + "▁Monter": 22314, + "▁elegant": 22315, + "▁garbage": 22316, + "▁numbering": 22317, + "▁symbolism": 22318, + "▁Illustrated": 22319, + "▁13,": 22320, + "▁Humphrey": 22321, + "▁Winnipeg": 22322, + "▁homeland": 22323, + "▁anthology": 22324, + "▁millennium": 22325, + "1/": 22326, + "▁(8": 22327, + "▁asp": 22328, + "▁Hole": 22329, + "▁sins": 22330, + "▁Spike": 22331, + "▁bowel": 22332, + "▁Memory": 22333, + "▁Motors": 22334, + "▁blowing": 22335, + "▁logging": 22336, + "▁pumping": 22337, + "▁taxation": 22338, + "▁academics": 22339, + "▁theological": 22340, + "▁standardized": 22341, + "EV": 22342, + "▁Ae": 22343, + "▁DR": 22344, + "oused": 22345, + "▁fuck": 22346, + "▁geology": 22347, + "▁wrought": 22348, + "▁upgrades": 22349, + "▁Achievement": 22350, + "oku": 22351, + "▁Indo": 22352, + "▁cripp": 22353, + "▁contempt": 22354, + "▁celestial": 22355, + "▁Smithsonian": 22356, + "arel": 22357, + "▁Eri": 22358, + "▁merge": 22359, + "▁Divisions": 22360, + "▁Mathematics": 22361, + "gre": 22362, + "opa": 22363, + "▁Muss": 22364, + "▁jumps": 22365, + "▁Railways": 22366, + "▁liability": 22367, + "▁Rockefeller": 22368, + "▁20,": 22369, + "araoh": 22370, + "▁Loyal": 22371, + "▁Twelve": 22372, + "▁gifted": 22373, + "▁curtain": 22374, + "▁symmetry": 22375, + "▁deposition": 22376, + "▁Mao": 22377, + "amboo": 22378, + "aspora": 22379, + "▁squir": 22380, + "▁Devils": 22381, + "▁Madras": 22382, + "▁nursery": 22383, + "▁remixes": 22384, + "▁Dominique": 22385, + "▁Das": 22386, + "▁Olga": 22387, + "▁Ride": 22388, + "illard": 22389, + "▁Shell": 22390, + "▁packs": 22391, + "▁Estate": 22392, + "▁fortunes": 22393, + "▁Restoration": 22394, + "def": 22395, + "▁Ya": 22396, + "vana": 22397, + "▁Arr": 22398, + "ilage": 22399, + "▁imply": 22400, + "▁motifs": 22401, + "▁temporal": 22402, + "▁Jol": 22403, + "▁USSR": 22404, + "▁cues": 22405, + "▁Klein": 22406, + "▁amended": 22407, + "▁biomass": 22408, + "▁identities": 22409, + "gem": 22410, + "pret": 22411, + "▁Ambro": 22412, + "▁Casey": 22413, + "▁Libya": 22414, + "▁bored": 22415, + "▁citation": 22416, + "▁hereditary": 22417, + "etus": 22418, + "▁flux": 22419, + "▁2015,": 22420, + "▁Judith": 22421, + "▁Phantom": 22422, + "▁finishes": 22423, + "▁Economics": 22424, + "▁petroleum": 22425, + "76": 22426, + "▁Pòt": 22427, + "▁amass": 22428, + "▁hydraulic": 22429, + "▁disturbing": 22430, + "omac": 22431, + "▁215": 22432, + "▁Pav": 22433, + "▁1809": 22434, + "▁Poles": 22435, + "▁knees": 22436, + "▁Active": 22437, + "▁Grammar": 22438, + "▁elastic": 22439, + "▁britanik": 22440, + "▁appropriately": 22441, + "▁Erik": 22442, + "▁mound": 22443, + "▁cliffs": 22444, + "▁neuros": 22445, + "▁reunion": 22446, + "▁collided": 22447, + "▁Ce": 22448, + "arine": 22449, + "redict": 22450, + "▁Finding": 22451, + "▁useless": 22452, + "▁incoming": 22453, + "▁kidnapped": 22454, + "▁competitor": 22455, + "▁unanimously": 22456, + "▁FS": 22457, + "acha": 22458, + "▁Alm": 22459, + "▁Bagh": 22460, + "▁Lindsay": 22461, + "▁Habsburg": 22462, + "▁(198": 22463, + "tering": 22464, + "illaume": 22465, + "▁Sitwèb": 22466, + "▁localized": 22467, + "leigh": 22468, + "▁reck": 22469, + "▁Breck": 22470, + "▁Tracks": 22471, + "▁faults": 22472, + "▁Manitoba": 22473, + "▁acquaint": 22474, + "▁counterattack": 22475, + "▁Mt": 22476, + "▁qui": 22477, + "▁Gibbs": 22478, + "▁criticisms": 22479, + "▁relegation": 22480, + "▁prospective": 22481, + "▁stereotypes": 22482, + "eroy": 22483, + "thia": 22484, + "pless": 22485, + "▁conson": 22486, + "▁lethal": 22487, + "ribes": 22488, + "▁Easy": 22489, + "▁donor": 22490, + "▁Borneo": 22491, + "▁Eminem": 22492, + "▁chooses": 22493, + "▁backward": 22494, + "▁Suk": 22495, + "▁pran": 22496, + "▁unto": 22497, + "▁enjoys": 22498, + "▁explorer": 22499, + "▁feasible": 22500, + "▁Macdonald": 22501, + "▁goaltender": 22502, + "▁stimulation": 22503, + "ycle": 22504, + "▁Bede": 22505, + "▁Chak": 22506, + "esterly": 22507, + "▁Clayton": 22508, + "▁Sarawak": 22509, + "▁Bertrand": 22510, + "▁Fitzgerald": 22511, + "▁Marlborough": 22512, + "▁volunteered": 22513, + "▁environmentally": 22514, + "▁Mys": 22515, + "▁Helm": 22516, + "▁Schu": 22517, + "sequent": 22518, + "treated": 22519, + "▁ambush": 22520, + "▁divert": 22521, + "▁equator": 22522, + "▁reptiles": 22523, + "▁assessing": 22524, + "▁geometric": 22525, + "▁travelers": 22526, + "▁stakeholders": 22527, + "▁transporting": 22528, + "▁‐": 22529, + "nell": 22530, + "▁worm": 22531, + "▁2005,": 22532, + "▁Frans": 22533, + "▁Horiz": 22534, + "▁nineteen": 22535, + "▁Patterson": 22536, + "▁inception": 22537, + "▁recession": 22538, + "▁NA": 22539, + "▁hymn": 22540, + "▁noct": 22541, + "▁Paula": 22542, + "▁Wilkinson": 22543, + "▁convenience": 22544, + "▁Gé": 22545, + "▁Eat": 22546, + "▁Mog": 22547, + "▁Bedford": 22548, + "▁invalid": 22549, + "▁randomly": 22550, + "▁retrospective": 22551, + "ián": 22552, + "▁pie": 22553, + "▁Tate": 22554, + "▁gonna": 22555, + "▁Horses": 22556, + "▁Santos": 22557, + "▁Chaplin": 22558, + "▁biochem": 22559, + "▁theatres": 22560, + "▁barometric": 22561, + "ooney": 22562, + "▁snap": 22563, + "▁2008,": 22564, + "▁gamma": 22565, + "▁Delgado": 22566, + "▁membranes": 22567, + "scape": 22568, + "▁Stam": 22569, + "▁puppet": 22570, + "▁turkey": 22571, + "▁nowhere": 22572, + "▁disciples": 22573, + "▁Geological": 22574, + "▁Myers": 22575, + "▁waist": 22576, + "verages": 22577, + "▁squares": 22578, + "▁ambiguous": 22579, + "phs": 22580, + "onny": 22581, + "urus": 22582, + "▁Lok": 22583, + "▁Rex": 22584, + "notes": 22585, + "▁adject": 22586, + "▁finite": 22587, + "▁microw": 22588, + "▁wheelchair": 22589, + "owl": 22590, + "rar": 22591, + "▁1789": 22592, + "▁cups": 22593, + "▁Atlas": 22594, + "▁rolls": 22595, + "▁Krusty": 22596, + "▁Creation": 22597, + "▁critique": 22598, + "▁enhancing": 22599, + "▁eponymous": 22600, + "▁prohibition": 22601, + "▁Azt": 22602, + "reras": 22603, + "▁Concord": 22604, + "▁fixture": 22605, + "▁diffusion": 22606, + "▁impairment": 22607, + "▁coordinates": 22608, + "oser": 22609, + "▁Lup": 22610, + "▁americ": 22611, + "▁alcoholic": 22612, + "▁spherical": 22613, + "▁Population": 22614, + "▁insulation": 22615, + "ekt": 22616, + "▁IOC": 22617, + "opsis": 22618, + "▁Boris": 22619, + "▁Macbeth": 22620, + "▁Articles": 22621, + "▁Rebellion": 22622, + "rices": 22623, + "▁Pist": 22624, + "▁inad": 22625, + "▁McCle": 22626, + "ository": 22627, + "▁advise": 22628, + "▁unbeaten": 22629, + "▁Macedonia": 22630, + "uga": 22631, + "uria": 22632, + "▁Hair": 22633, + "▁Lect": 22634, + "▁Alcoh": 22635, + "▁disintegr": 22636, + "ighty": 22637, + "▁Kawolin": 22638, + "▁Aberdeen": 22639, + "adh": 22640, + "▁este": 22641, + "gement": 22642, + "▁Grass": 22643, + "▁Coleman": 22644, + "▁Eurasian": 22645, + "▁differentiate": 22646, + "▁encouragement": 22647, + "▁neighbourhood": 22648, + "▁Tin": 22649, + "▁towed": 22650, + "▁Keynes": 22651, + "▁Vatican": 22652, + "▁Africans": 22653, + "▁Middleton": 22654, + "▁chromosomes": 22655, + "▁comparative": 22656, + "unn": 22657, + "▁iod": 22658, + "▁Gamb": 22659, + "▁Mini": 22660, + "▁rested": 22661, + "▁Allison": 22662, + "▁Revival": 22663, + "▁splitting": 22664, + "▁journalism": 22665, + "▁manipulation": 22666, + "ilo": 22667, + "cats": 22668, + "hrer": 22669, + "▁riv": 22670, + "▁neon": 22671, + "▁taxi": 22672, + "abetic": 22673, + "▁2008.": 22674, + "▁deprived": 22675, + "iu": 22676, + "apo": 22677, + "grove": 22678, + "▁Dogs": 22679, + "▁Grim": 22680, + "▁congrat": 22681, + "▁needing": 22682, + "▁paternal": 22683, + "▁Lep": 22684, + "▁macro": 22685, + "▁Walton": 22686, + "▁removes": 22687, + "▁Alexandre": 22688, + "nis": 22689, + "▁Frequ": 22690, + "idelity": 22691, + "▁Volcan": 22692, + "▁convict": 22693, + "▁convened": 22694, + "▁hypertension": 22695, + "▁Kah": 22696, + "▁Hang": 22697, + "▁Odys": 22698, + "▁Rash": 22699, + "▁Hubert": 22700, + "▁maiden": 22701, + "▁Sisters": 22702, + "▁Dickinson": 22703, + "▁competent": 22704, + "staff": 22705, + "▁1804": 22706, + "▁Gian": 22707, + "▁Salam": 22708, + "▁traject": 22709, + "▁summarized": 22710, + "▁tributaries": 22711, + "▁periodically": 22712, + "RO": 22713, + "▁Agg": 22714, + "▁hack": 22715, + "▁Payne": 22716, + "▁arises": 22717, + "▁Teacher": 22718, + "▁concealed": 22719, + "7).": 22720, + "was": 22721, + "ajan": 22722, + "atham": 22723, + "▁1798": 22724, + "▁Marty": 22725, + "▁Salem": 22726, + "▁vague": 22727, + "▁Amanda": 22728, + "▁Ludwig": 22729, + "▁Rainbow": 22730, + "▁holders": 22731, + "▁reductions": 22732, + "▁martyr": 22733, + "▁sculptor": 22734, + "▁battlecruiser": 22735, + "ersh": 22736, + "roys": 22737, + "▁1794": 22738, + "▁Cald": 22739, + "▁Cory": 22740, + "▁Toul": 22741, + "▁Were": 22742, + "▁unfam": 22743, + "▁Persia": 22744, + "▁crying": 22745, + "▁outlook": 22746, + "▁attackers": 22747, + "▁distorted": 22748, + "▁Raz": 22749, + "▁rupt": 22750, + "▁coasts": 22751, + "▁keeper": 22752, + "▁Subsequent": 22753, + "fri": 22754, + "▁SL": 22755, + "ller": 22756, + "▁arid": 22757, + "▁peat": 22758, + "▁Marse": 22759, + "▁inund": 22760, + "idships": 22761, + "▁Destroy": 22762, + "▁Platinum": 22763, + "▁variously": 22764, + "▁coordinator": 22765, + "dia": 22766, + "▁Gam": 22767, + "▁Shi": 22768, + "aguar": 22769, + "▁toes": 22770, + "oughts": 22771, + "oulder": 22772, + "▁Blind": 22773, + "▁Oswald": 22774, + "▁influx": 22775, + "▁drained": 22776, + "▁Pitchfork": 22777, + "▁justification": 22778, + "afi": 22779, + "ummer": 22780, + "▁Nicar": 22781, + "▁punch": 22782, + "▁Gaming": 22783, + "▁Harald": 22784, + "▁desanm": 22785, + "▁glacial": 22786, + "▁shuttle": 22787, + "▁prostate": 22788, + "▁descending": 22789, + "▁Bie": 22790, + "▁Dion": 22791, + "▁rage": 22792, + "▁wholes": 22793, + "forestation": 22794, + "rea": 22795, + "▁Lina": 22796, + "Connor": 22797, + "▁portal": 22798, + "▁infring": 22799, + "▁migrate": 22800, + "▁impending": 22801, + "▁researched": 22802, + "▁EM": 22803, + "heed": 22804, + "▁clo": 22805, + "▁Orion": 22806, + "▁Yucat": 22807, + "▁bagay": 22808, + "▁indie": 22809, + "ondheim": 22810, + "▁Guillaume": 22811, + "▁Tou": 22812, + "anges": 22813, + "▁USAF": 22814, + "▁pati": 22815, + "▁Hipper": 22816, + "▁bowlers": 22817, + "▁stresses": 22818, + "▁emphasizes": 22819, + "ipal": 22820, + "ayana": 22821, + "▁Lanm": 22822, + "▁Wire": 22823, + "rances": 22824, + "▁Benson": 22825, + "▁notices": 22826, + "▁columnist": 22827, + "▁professors": 22828, + "mile": 22829, + "▁ROK": 22830, + "rants": 22831, + "▁imagin": 22832, + "▁raiding": 22833, + "▁touches": 22834, + "▁Peterson": 22835, + "▁suffrage": 22836, + "▁Slant": 22837, + "▁Brooke": 22838, + "▁oversh": 22839, + "▁Niagara": 22840, + "▁cannons": 22841, + "▁Superior": 22842, + "▁Materials": 22843, + "nai": 22844, + "▁Bac": 22845, + "iosis": 22846, + "▁Mode": 22847, + "▁Dante": 22848, + "▁revis": 22849, + "▁shrub": 22850, + "▁printer": 22851, + "▁railroads": 22852, + "▁ale": 22853, + "▁wra": 22854, + "anson": 22855, + "orned": 22856, + "▁Peck": 22857, + "▁leng": 22858, + "▁Pratt": 22859, + "▁Sergio": 22860, + "▁dragged": 22861, + "▁endless": 22862, + "▁Reverend": 22863, + "▁communicating": 22864, + "▁Hib": 22865, + "▁Kod": 22866, + "ATION": 22867, + "ienne": 22868, + "▁Hick": 22869, + "▁Martín": 22870, + "▁senators": 22871, + "▁cinematic": 22872, + "▁saturated": 22873, + "▁signaling": 22874, + "▁NES": 22875, + "▁Colt": 22876, + "▁Thai": 22877, + "▁Wise": 22878, + "▁Paulo": 22879, + "▁clade": 22880, + "▁imbal": 22881, + "▁Potomac": 22882, + "▁kominote": 22883, + "▁admiral": 22884, + "▁Wollston": 22885, + "▁amidships": 22886, + "▁electroly": 22887, + "▁interacting": 22888, + "▁Wollstonecraft": 22889, + "400": 22890, + "▁CNN": 22891, + "▁Mant": 22892, + "▁figur": 22893, + "▁Bosnian": 22894, + "▁cantata": 22895, + "▁reprinted": 22896, + "▁protagonists": 22897, + "Am": 22898, + "uxe": 22899, + "▁Bax": 22900, + "▁Role": 22901, + "▁soda": 22902, + "sworth": 22903, + "▁exits": 22904, + "▁Recogn": 22905, + "▁intricate": 22906, + "▁threatens": 22907, + "▁accidental": 22908, + "▁catastrophic": 22909, + "▁comparatively": 22910, + "▁progressively": 22911, + "Ol": 22912, + "▁Flem": 22913, + "ellite": 22914, + "▁Amber": 22915, + "▁Outer": 22916, + "▁chiefs": 22917, + "▁drying": 22918, + "▁rematch": 22919, + "▁Honduras": 22920, + "▁compress": 22921, + "▁ideological": 22922, + "itably": 22923, + "▁Cliff": 22924, + "▁symph": 22925, + "▁ultra": 22926, + "keeping": 22927, + "▁Stones": 22928, + "▁handic": 22929, + "esperson": 22930, + "▁Martínez": 22931, + "▁athletics": 22932, + "onda": 22933, + "▁angel": 22934, + "▁Morales": 22935, + "▁Recently": 22936, + "▁perceive": 22937, + "dem": 22938, + "iem": 22939, + "ussy": 22940, + "▁Rao": 22941, + "▁node": 22942, + "▁stub": 22943, + "▁Janeiro": 22944, + "▁Bachelor": 22945, + "▁Jurassic": 22946, + "▁Standing": 22947, + "▁destroys": 22948, + "▁purchases": 22949, + "▁Mozambique": 22950, + "▁nationalism": 22951, + "▁renumbering": 22952, + "▁differential": 22953, + "anu": 22954, + "tax": 22955, + "yèl": 22956, + "▁plac": 22957, + "▁stew": 22958, + "angles": 22959, + "▁Writer": 22960, + "▁minded": 22961, + "▁Ekriven": 22962, + "▁Heather": 22963, + "▁sequels": 22964, + "Our": 22965, + "▁cane": 22966, + "street": 22967, + "uction": 22968, + "▁avril": 22969, + "▁forage": 22970, + "▁Hanover": 22971, + "▁ornament": 22972, + "▁Confederacy": 22973, + "At": 22974, + "uo": 22975, + "amen": 22976, + "▁Joa": 22977, + "aines": 22978, + "▁1793": 22979, + "▁Bound": 22980, + "▁Therm": 22981, + "▁brake": 22982, + "▁saints": 22983, + "▁Belfast": 22984, + "dimensional": 22985, + "▁campaigning": 22986, + "▁psychedelic": 22987, + "▁340": 22988, + "▁Chrys": 22989, + "▁Diagn": 22990, + "▁Running": 22991, + "▁sparrow": 22992, + "▁Exc": 22993, + "▁sans": 22994, + "▁Lesnar": 22995, + "▁awaken": 22996, + "▁flattened": 22997, + "ataka": 22998, + "unami": 22999, + "▁Brady": 23000, + "▁uneven": 23001, + "▁walled": 23002, + "▁Cheroke": 23003, + "▁trainer": 23004, + "▁declines": 23005, + "▁SI": 23006, + "urrection": 23007, + "▁succeeding": 23008, + "ibi": 23009, + "offs": 23010, + "▁Ich": 23011, + "aceans": 23012, + "▁Istan": 23013, + "▁prophet": 23014, + "▁expectation": 23015, + "▁142": 23016, + "▁Ling": 23017, + "▁stairs": 23018, + "▁acceleration": 23019, + "ruz": 23020, + "▁neat": 23021, + "▁outlet": 23022, + "friendly": 23023, + "▁exposing": 23024, + "▁explosions": 23025, + "▁tam": 23026, + "▁Assy": 23027, + "nation": 23028, + "▁Bayern": 23029, + "▁Legacy": 23030, + "▁Earlier": 23031, + "▁Monitor": 23032, + "▁Politics": 23033, + "▁capitalist": 23034, + "▁Publications": 23035, + "ovar": 23036, + "▁IBM": 23037, + "▁Daven": 23038, + "▁stack": 23039, + "▁captains": 23040, + "▁escorting": 23041, + "▁Reconstruction": 23042, + "cia": 23043, + "▁knights": 23044, + "▁widened": 23045, + "▁choreography": 23046, + "tw": 23047, + "orio": 23048, + "▁stole": 23049, + "quartered": 23050, + "▁ironclad": 23051, + "èy": 23052, + "itas": 23053, + "umat": 23054, + "▁Dul": 23055, + "▁Wer": 23056, + "▁narr": 23057, + "▁Biden": 23058, + "▁fined": 23059, + "▁fishes": 23060, + "▁offence": 23061, + "▁hearings": 23062, + "▁combustion": 23063, + "▁ré": 23064, + "ifts": 23065, + "▁PopM": 23066, + "▁Bella": 23067, + "▁emitted": 23068, + "▁reminder": 23069, + "mie": 23070, + "rops": 23071, + "▁badge": 23072, + "▁Females": 23073, + "ipes": 23074, + "▁Prob": 23075, + "▁font": 23076, + "▁nect": 23077, + "tefact": 23078, + "▁Flint": 23079, + "▁Mayer": 23080, + "▁hypot": 23081, + "▁Medina": 23082, + "▁arrows": 23083, + "▁basics": 23084, + "▁virgin": 23085, + "▁Salford": 23086, + "▁intoler": 23087, + "▁discount": 23088, + "▁Stevenson": 23089, + "▁Ó": 23090, + "ARD": 23091, + "▁leuk": 23092, + "▁sewage": 23093, + "▁algebra": 23094, + "▁Metallica": 23095, + "▁Previously": 23096, + "▁accelerate": 23097, + ".:": 23098, + "Us": 23099, + "▁Mih": 23100, + "▁pwodui": 23101, + "▁insists": 23102, + "▁Elements": 23103, + "pert": 23104, + "▁Meh": 23105, + "▁Mou": 23106, + "▁owl": 23107, + "▁Alma": 23108, + "▁Argy": 23109, + "▁Tale": 23110, + "▁adviser": 23111, + "▁pledged": 23112, + "▁Istanbul": 23113, + "▁turnpike": 23114, + "▁villains": 23115, + "▁empirical": 23116, + "▁astronauts": 23117, + "orb": 23118, + "▁solic": 23119, + "▁feudal": 23120, + "▁purity": 23121, + "▁blessing": 23122, + "▁mosquito": 23123, + "▁prehistoric": 23124, + "IST": 23125, + "▁Vid": 23126, + "▁duel": 23127, + "▁Nasser": 23128, + "▁Batista": 23129, + "▁paleont": 23130, + "▁detailing": 23131, + "▁digestion": 23132, + "▁prejudice": 23133, + "▁neighbours": 23134, + "lv": 23135, + "iba": 23136, + "oco": 23137, + "▁10%": 23138, + "▁133": 23139, + "▁Adapt": 23140, + "▁Rapids": 23141, + "▁Related": 23142, + "▁captures": 23143, + "▁propelled": 23144, + "▁cigarettes": 23145, + "▁collaborate": 23146, + ":||": 23147, + "chem": 23148, + "fried": 23149, + "▁2022": 23150, + "▁Nell": 23151, + "▁hint": 23152, + "reneurs": 23153, + "▁angered": 23154, + "▁Religious": 23155, + "2-": 23156, + "▁Dear": 23157, + "▁Lone": 23158, + "▁Whig": 23159, + "ailles": 23160, + "ippers": 23161, + "▁Arrow": 23162, + "▁Kumar": 23163, + "▁Determ": 23164, + "▁alleviate": 23165, + "64": 23166, + "Paul": 23167, + "▁Mob": 23168, + "▁Prinz": 23169, + "▁Rouge": 23170, + "▁Images": 23171, + "▁Picard": 23172, + "▁arising": 23173, + "▁Biblical": 23174, + "▁Ethiopia": 23175, + "▁concession": 23176, + "▁redesigned": 23177, + "▁Ci": 23178, + "frey": 23179, + "izza": 23180, + "▁1600": 23181, + "▁Phon": 23182, + "▁olds": 23183, + "▁amendments": 23184, + "pack": 23185, + "▁(15": 23186, + "▁Byr": 23187, + "▁Koh": 23188, + "▁Shock": 23189, + "▁ramps": 23190, + "▁obstacle": 23191, + "▁enclosure": 23192, + "▁hostility": 23193, + "▁Chronicles": 23194, + "▁okt": 23195, + "▁Nadu": 23196, + "▁motto": 23197, + "▁polym": 23198, + "▁Holiday": 23199, + "utational": 23200, + "▁compressed": 23201, + "▁microscope": 23202, + "▁contrasting": 23203, + "iably": 23204, + "▁airplay": 23205, + "▁princes": 23206, + "yg": 23207, + "▁cone": 23208, + "chwader": 23209, + "▁Canning": 23210, + "▁priorit": 23211, + "▁unanimous": 23212, + "▁11.": 23213, + "▁275": 23214, + "▁Fou": 23215, + "▁rhin": 23216, + "▁Strike": 23217, + "▁disgust": 23218, + "▁pending": 23219, + "▁pulmonary": 23220, + "▁committing": 23221, + "▁PD": 23222, + "▁Types": 23223, + "▁appla": 23224, + "▁cervical": 23225, + "▁fifteenth": 23226, + "▁Sas": 23227, + "▁Echo": 23228, + "▁Guin": 23229, + "stidia": 23230, + "▁capita": 23231, + "▁furious": 23232, + "▁painters": 23233, + "▁chemotherapy": 23234, + "UM": 23235, + "▁ket": 23236, + "adays": 23237, + "▁1816": 23238, + "▁Wine": 23239, + "aparte": 23240, + "▁inexp": 23241, + "▁Judaism": 23242, + "▁hardest": 23243, + "▁relinqu": 23244, + "été": 23245, + "▁Rw": 23246, + "artet": 23247, + "elope": 23248, + "ankton": 23249, + "▁Remix": 23250, + "▁Sioux": 23251, + "▁bombed": 23252, + "▁Crowley": 23253, + "▁customary": 23254, + "▁pioneering": 23255, + "▁conflicting": 23256, + "esi": 23257, + "▁Bug": 23258, + "▁Brest": 23259, + "▁Megan": 23260, + "▁antis": 23261, + "▁decks": 23262, + "▁embark": 23263, + "▁Discuss": 23264, + "▁Emerson": 23265, + "▁sheriff": 23266, + "▁delegate": 23267, + "▁scrutiny": 23268, + "▁strikeouts": 23269, + "▁undoubtedly": 23270, + "▁RT": 23271, + "gang": 23272, + "▁1821": 23273, + "▁arom": 23274, + "liest": 23275, + "▁2017.": 23276, + "atchewan": 23277, + "▁gunnery": 23278, + "▁punished": 23279, + "▁corrosion": 23280, + "▁facilitated": 23281, + "▁jaws": 23282, + "▁Boone": 23283, + "▁clash": 23284, + "▁shake": 23285, + "▁groove": 23286, + "▁scroll": 23287, + "▁Neville": 23288, + "▁pillars": 23289, + "▁Terminal": 23290, + "▁climates": 23291, + "▁PV": 23292, + "▁Kad": 23293, + "ariat": 23294, + "▁Barr": 23295, + "▁Lara": 23296, + "▁Mamm": 23297, + "▁setup": 23298, + "▁arbitrary": 23299, + "▁Ö": 23300, + "▁sop": 23301, + "▁Nigel": 23302, + "usement": 23303, + "▁Ranger": 23304, + "▁freeze": 23305, + "▁Mauritius": 23306, + "▁Telescope": 23307, + "▁innocence": 23308, + "▁Christophe": 23309, + "▁Dust": 23310, + "▁salts": 23311, + "▁slate": 23312, + "inflamm": 23313, + "▁extrav": 23314, + "▁pistol": 23315, + "▁Hepburn": 23316, + "▁occupies": 23317, + "▁rehearsal": 23318, + "▁socialism": 23319, + "HO": 23320, + "▁Pride": 23321, + "▁Epstein": 23322, + "▁bald": 23323, + "▁Eleph": 23324, + "▁Samar": 23325, + "▁Jerome": 23326, + "▁lovely": 23327, + "▁Changes": 23328, + "▁Testing": 23329, + "▁apology": 23330, + "▁trillion": 23331, + "▁Offensive": 23332, + "68": 23333, + "▁(9,": 23334, + "▁Gol": 23335, + "▁Bois": 23336, + "▁raft": 23337, + "▁Rodgers": 23338, + "▁chiefly": 23339, + "▁1805": 23340, + "▁narc": 23341, + "▁opio": 23342, + "▁Atomic": 23343, + "▁Calder": 23344, + "▁impuls": 23345, + "▁motives": 23346, + "represent": 23347, + "▁Malaysian": 23348, + "▁GPS": 23349, + "▁Mate": 23350, + "icable": 23351, + "▁prefers": 23352, + "▁anterior": 23353, + "▁trunkline": 23354, + "▁extensions": 23355, + "▁translates": 23356, + "ilon": 23357, + "▁Feel": 23358, + "▁quiz": 23359, + "▁enrich": 23360, + "▁Eduardo": 23361, + "▁inclusive": 23362, + "▁adolescent": 23363, + "▁procession": 23364, + "▁exhibitions": 23365, + "emis": 23366, + "gren": 23367, + "▁Eps": 23368, + "▁harb": 23369, + "▁Areas": 23370, + "▁Comet": 23371, + "▁Faust": 23372, + "▁climbs": 23373, + "▁reside": 23374, + "▁Notable": 23375, + "▁narratives": 23376, + "▁disadvantage": 23377, + "▁Dee": 23378, + "▁Dahl": 23379, + "▁tunes": 23380, + "▁Casino": 23381, + "▁Rotten": 23382, + "▁rabbit": 23383, + "▁interception": 23384, + "úl": 23385, + "gel": 23386, + "itsu": 23387, + "isson": 23388, + "▁impr": 23389, + "▁McCoy": 23390, + "▁Nichol": 23391, + "ependent": 23392, + "▁Anatomy": 23393, + "▁barrage": 23394, + "▁adaptive": 23395, + "▁Davenport": 23396, + "▁drastically": 23397, + "▁6:": 23398, + "erat": 23399, + "ppen": 23400, + "▁169": 23401, + "▁Eddy": 23402, + "▁Jules": 23403, + "▁suppose": 23404, + "▁Resource": 23405, + "▁optional": 23406, + "▁packages": 23407, + "▁correction": 23408, + "▁networking": 23409, + "▁repetition": 23410, + "▁sentiments": 23411, + "▁substituted": 23412, + "▁BY": 23413, + "full": 23414, + "▁Ono": 23415, + "▁outc": 23416, + "umbling": 23417, + "▁outlaw": 23418, + "▁wooded": 23419, + "▁switches": 23420, + "▁distracted": 23421, + "▁Them": 23422, + "▁Clair": 23423, + "▁Whilst": 23424, + "▁stanza": 23425, + "▁primates": 23426, + "▁volatile": 23427, + "▁impedance": 23428, + "▁Sacramento": 23429, + "▁communists": 23430, + "▁regeneration": 23431, + "lash": 23432, + "▁1792": 23433, + "▁Lives": 23434, + "▁rails": 23435, + "▁Phillip": 23436, + "▁undergone": 23437, + "ewood": 23438, + "▁Herr": 23439, + "▁Vett": 23440, + "arency": 23441, + "▁recei": 23442, + "▁warns": 23443, + "▁halluc": 23444, + "▁Sources": 23445, + "▁MO": 23446, + "ihan": 23447, + "▁VHS": 23448, + "▁Bridg": 23449, + "▁presc": 23450, + "▁unequ": 23451, + "▁densely": 23452, + "▁fearing": 23453, + "▁restart": 23454, + "▁telenovela": 23455, + "▁Fortunately": 23456, + "▁experimentation": 23457, + "Bi": 23458, + "eka": 23459, + "atta": 23460, + "sein": 23461, + "▁1824": 23462, + "▁Koch": 23463, + "▁Elena": 23464, + "▁Reserv": 23465, + "▁treats": 23466, + "▁Activity": 23467, + "▁microphone": 23468, + "alli": 23469, + "erun": 23470, + "▁Dif": 23471, + "▁apt": 23472, + "▁1818": 23473, + "▁Groves": 23474, + "▁diocese": 23475, + "▁rockets": 23476, + "organisms": 23477, + "▁Lutheran": 23478, + "▁destined": 23479, + "▁injected": 23480, + "▁gratitude": 23481, + "▁remarkably": 23482, + "▁researching": 23483, + "▁Bras": 23484, + "▁lone": 23485, + "▁nude": 23486, + "▁mizik": 23487, + "▁truce": 23488, + "▁flanks": 23489, + "▁boarded": 23490, + "▁Saskatchewan": 23491, + "lé": 23492, + "▁Lyr": 23493, + "orian": 23494, + "▁leap": 23495, + "perors": 23496, + "▁Rings": 23497, + "▁Regina": 23498, + "▁derive": 23499, + "▁guarded": 23500, + "▁licence": 23501, + "▁certainty": 23502, + "stitutional": 23503, + "▁ridiculous": 23504, + "▁Sustainable": 23505, + "▁Constitutional": 23506, + "jar": 23507, + "▁NK": 23508, + "▁ub": 23509, + "▁Pig": 23510, + "areth": 23511, + "banks": 23512, + "▁(10,": 23513, + "▁Tick": 23514, + "▁Clyde": 23515, + "▁Inner": 23516, + "▁replay": 23517, + "▁tablet": 23518, + "▁Gillian": 23519, + "▁Suffolk": 23520, + "▁poultry": 23521, + "▁recipients": 23522, + "That": 23523, + "▁Kou": 23524, + "▁MRI": 23525, + "▁Doub": 23526, + "▁gill": 23527, + "▁Hansen": 23528, + "▁apples": 23529, + "▁weighs": 23530, + "▁Vikings": 23531, + "My": 23532, + "lease": 23533, + "▁Wein": 23534, + "itious": 23535, + "▁Ahmed": 23536, + "▁Bench": 23537, + "▁rendez": 23538, + "▁Baroque": 23539, + "▁Albanian": 23540, + "▁courtesy": 23541, + "▁landowners": 23542, + "▁19,": 23543, + "▁203": 23544, + "▁Herb": 23545, + "faction": 23546, + "▁Chronic": 23547, + "▁fission": 23548, + "▁Problems": 23549, + "▁Released": 23550, + "▁Activities": 23551, + "▁manipulate": 23552, + "▁quantitative": 23553, + "▁curs": 23554, + "▁Mitch": 23555, + "▁rifles": 23556, + "▁Concern": 23557, + "▁Version": 23558, + "▁airlines": 23559, + "▁Alec": 23560, + "▁null": 23561, + "▁Notes": 23562, + "▁auditioned": 23563, + "▁postseason": 23564, + "▁transforming": 23565, + "!)": 23566, + "-13": 23567, + "▁GB": 23568, + "▁va": 23569, + "6667": 23570, + "this": 23571, + "▁290": 23572, + "gment": 23573, + "▁Punj": 23574, + "▁Barth": 23575, + "▁Wheat": 23576, + "▁Moffat": 23577, + "▁boiling": 23578, + "▁Hartford": 23579, + "▁sediments": 23580, + "▁Wilmington": 23581, + "eason": 23582, + "▁MacL": 23583, + "▁curse": 23584, + "▁Credits": 23585, + "▁Evangel": 23586, + "▁Harriet": 23587, + "▁Midwest": 23588, + "▁shoreline": 23589, + "▁archaeology": 23590, + "▁unavailable": 23591, + "▁Burma": 23592, + "▁Example": 23593, + "▁continents": 23594, + "afia": 23595, + "ande": 23596, + "▁Kne": 23597, + "apper": 23598, + "▁militar": 23599, + "▁parasite": 23600, + "▁accumulate": 23601, + "▁advertised": 23602, + "fo": 23603, + "▁Chip": 23604, + "▁helm": 23605, + "▁tatt": 23606, + "▁arteries": 23607, + "▁dopamine": 23608, + "▁Schneider": 23609, + "▁unfamiliar": 23610, + "▁Architecture": 23611, + "ysc": 23612, + "angu": 23613, + "mere": 23614, + "▁310": 23615, + "ctory": 23616, + "▁2013,": 23617, + "▁Lanmò": 23618, + "▁folks": 23619, + "▁Gilles": 23620, + "▁Nordic": 23621, + "▁analysts": 23622, + "▁admiration": 23623, + "▁Yellowstone": 23624, + "▁dreadnoughts": 23625, + "▁206": 23626, + "▁Gle": 23627, + "▁NHC": 23628, + "aguey": 23629, + "▁100%": 23630, + "▁Mets": 23631, + "▁Pound": 23632, + "▁oktòb": 23633, + "iscopal": 23634, + "▁Schwar": 23635, + "▁Gateway": 23636, + "▁Therapy": 23637, + "▁reciproc": 23638, + "▁beverages": 23639, + "▁curiosity": 23640, + "▁commissions": 23641, + "▁bic": 23642, + "▁Amph": 23643, + "asurer": 23644, + "▁rabbits": 23645, + "▁cannabis": 23646, + "▁corrected": 23647, + "▁confiscated": 23648, + "▁reservations": 23649, + "uckle": 23650, + "▁bites": 23651, + "eliness": 23652, + "▁Blacks": 23653, + "▁Flower": 23654, + "▁equals": 23655, + "▁nausea": 23656, + "▁Vickers": 23657, + "▁cleaned": 23658, + "▁detained": 23659, + "▁outlines": 23660, + "▁butterflies": 23661, + "▁reconciliation": 23662, + "sch": 23663, + "tti": 23664, + "orrh": 23665, + "sted": 23666, + "▁dod": 23667, + "▁rip": 23668, + "falls": 23669, + "▁Gris": 23670, + "▁gums": 23671, + "▁seap": 23672, + "▁visc": 23673, + "▁sticky": 23674, + "▁Taunton": 23675, + "▁piercing": 23676, + "▁processor": 23677, + "▁constitutes": 23678, + "oko": 23679, + "plan": 23680, + "▁Asc": 23681, + "▁Monk": 23682, + "▁Hyder": 23683, + "▁Pharm": 23684, + "▁Kombat": 23685, + "▁potato": 23686, + "cipation": 23687, + "▁overrun": 23688, + "▁monastic": 23689, + "▁resilience": 23690, + "rue": 23691, + "uen": 23692, + "imus": 23693, + "▁NWA": 23694, + "ellan": 23695, + "▁Giro": 23696, + "▁Gerard": 23697, + "▁plunder": 23698, + "▁communal": 23699, + "▁scripted": 23700, + "▁perceptions": 23701, + ",’": 23702, + "ei": 23703, + "▁risky": 23704, + "▁cocaine": 23705, + "▁killings": 23706, + "▁contention": 23707, + "▁Luk": 23708, + "▁Aurora": 23709, + "▁staple": 23710, + "▁strand": 23711, + "▁Buchanan": 23712, + "▁activate": 23713, + "▁Detective": 23714, + "adin": 23715, + "empo": 23716, + "▁dur": 23717, + "enden": 23718, + "▁Duck": 23719, + "▁2016,": 23720, + "▁batch": 23721, + "▁Mormon": 23722, + "▁injust": 23723, + "▁Soldier": 23724, + "▁patrons": 23725, + "▁deserted": 23726, + "▁departing": 23727, + "▁protocols": 23728, + "▁retailers": 23729, + "▁sophomore": 23730, + "▁unpredict": 23731, + "▁commentator": 23732, + "shaw": 23733, + "▁kan": 23734, + "▁1795": 23735, + "▁Medic": 23736, + "▁eroded": 23737, + "▁stupid": 23738, + "▁Meeting": 23739, + "▁fransèz": 23740, + "▁rhythmic": 23741, + "▁improvised": 23742, + "▁reflective": 23743, + ".9": 23744, + "vik": 23745, + "rugu": 23746, + "▁Gert": 23747, + "▁STEM": 23748, + "feeding": 23749, + "▁Copper": 23750, + "▁conflu": 23751, + "▁inspir": 23752, + "▁prizes": 23753, + "▁Himmler": 23754, + "▁Survivor": 23755, + "▁presentations": 23756, + "1–": 23757, + "ðr": 23758, + "”)": 23759, + "athed": 23760, + "▁todd": 23761, + "isodes": 23762, + "ausible": 23763, + "▁monasteries": 23764, + "▁Dres": 23765, + "▁benz": 23766, + "▁Refuge": 23767, + "▁Hassett": 23768, + "▁tackles": 23769, + "▁agreeing": 23770, + "▁posterior": 23771, + "roads": 23772, + "▁Ferm": 23773, + "▁Abyss": 23774, + "▁Crete": 23775, + "▁grapes": 23776, + "▁Kashmir": 23777, + "▁allergy": 23778, + "▁declares": 23779, + "▁formidable": 23780, + "▁naturalist": 23781, + "▁Confederation": 23782, + "stadt": 23783, + "▁wast": 23784, + "▁unple": 23785, + "▁clarity": 23786, + "▁outages": 23787, + "▁spelled": 23788, + "▁skeletal": 23789, + "▁perpendicular": 23790, + "élé": 23791, + "▁ail": 23792, + "▁fug": 23793, + "onnect": 23794, + "▁tactic": 23795, + "▁migrated": 23796, + "▁transcription": 23797, + "▁sèl": 23798, + "▁Nobody": 23799, + "▁discern": 23800, + "▁septanm": 23801, + "▁Samantha": 23802, + "▁contractor": 23803, + "awks": 23804, + "▁134": 23805, + "tland": 23806, + "▁notified": 23807, + "▁sweeping": 23808, + "▁Individuals": 23809, + "▁commercials": 23810, + "▁decorations": 23811, + "▁ITV": 23812, + "rosis": 23813, + "▁1700": 23814, + "income": 23815, + "omencl": 23816, + "▁tails": 23817, + "▁timely": 23818, + "▁legitimacy": 23819, + "VN": 23820, + "zt": 23821, + "ogical": 23822, + "▁Ebert": 23823, + "▁Weiss": 23824, + "ivities": 23825, + "hetamine": 23826, + "▁coating": 23827, + "▁Northwestern": 23828, + "▁commemorated": 23829, + "▁Dad": 23830, + "▁Gett": 23831, + "ortunate": 23832, + "▁crafted": 23833, + "▁plagued": 23834, + "▁robotic": 23835, + "▁charming": 23836, + "▁shipment": 23837, + "▁skeptical": 23838, + "▁circulating": 23839, + "▁Investigation": 23840, + "▁redevelopment": 23841, + "▁ER": 23842, + "▁Soci": 23843, + "▁Ariel": 23844, + "▁Leafs": 23845, + "▁Mariah": 23846, + "▁Salmon": 23847, + "▁valves": 23848, + "▁forested": 23849, + "▁aluminium": 23850, + "▁adjustments": 23851, + "▁153": 23852, + "▁Biz": 23853, + "▁1806": 23854, + "▁Jude": 23855, + "▁Sikh": 23856, + "▁riff": 23857, + "▁Kerry": 23858, + "▁Torah": 23859, + "▁wagon": 23860, + "▁strokes": 23861, + "▁feminine": 23862, + "▁forecasts": 23863, + "PM": 23864, + "▁Bae": 23865, + "▁Soil": 23866, + "lining": 23867, + "unkers": 23868, + "▁Hogan": 23869, + "▁Portra": 23870, + "▁animators": 23871, + "▁deception": 23872, + "▁schooling": 23873, + "▁motorcycle": 23874, + "▁principally": 23875, + "ophon": 23876, + "▁foll": 23877, + "▁subm": 23878, + "▁Sexual": 23879, + "▁artefact": 23880, + "▁rhetoric": 23881, + "▁Athletics": 23882, + "▁fractures": 23883, + "▁§": 23884, + "ayas": 23885, + "▁Fry": 23886, + "▁nem": 23887, + "iesel": 23888, + "▁Gale": 23889, + "▁Georgie": 23890, + "▁Protocol": 23891, + "▁objection": 23892, + "▁signatures": 23893, + "▁abnormalities": 23894, + "▁21,": 23895, + "▁Tyr": 23896, + "▁silly": 23897, + "affeine": 23898, + "▁Alamos": 23899, + "▁Teresa": 23900, + "▁pepper": 23901, + "▁replen": 23902, + "aneously": 23903, + "▁Important": 23904, + "▁subjective": 23905, + "▁microscopic": 23906, + "▁Tea": 23907, + "uffed": 23908, + "▁Zack": 23909, + "vester": 23910, + "▁Lakers": 23911, + "▁splend": 23912, + "▁Hermann": 23913, + "▁Rockets": 23914, + "▁shields": 23915, + "▁rigorous": 23916, + "bbing": 23917, + "▁Kart": 23918, + "▁abruptly": 23919, + "▁orbiting": 23920, + "▁renovated": 23921, + "▁synthesized": 23922, + "▁(7": 23923, + "▁toe": 23924, + "▁Solo": 23925, + "lysses": 23926, + "▁2007,": 23927, + "▁revive": 23928, + "▁sampled": 23929, + "▁inactive": 23930, + "▁statutory": 23931, + "▁descendant": 23932, + "▁encompasses": 23933, + "▁Specifically": 23934, + "▁deterioration": 23935, + "UD": 23936, + "▁Aid": 23937, + "▁intend": 23938, + "▁Clifton": 23939, + "▁Matematik": 23940, + "ECT": 23941, + "gins": 23942, + "oter": 23943, + "▁RAR": 23944, + "▁Amar": 23945, + "inners": 23946, + "▁prens": 23947, + "▁Dental": 23948, + "▁Strange": 23949, + "▁cottage": 23950, + "▁soluble": 23951, + "▁smallpox": 23952, + "▁tolerate": 23953, + "▁interchanges": 23954, + "▁commissioning": 23955, + "educ": 23956, + "▁Boss": 23957, + "▁Cogn": 23958, + "▁beak": 23959, + "▁niche": 23960, + "▁Nassau": 23961, + "▁Healthy": 23962, + "▁ceramic": 23963, + "▁Bonaparte": 23964, + "▁overlapping": 23965, + "▁spokesperson": 23966, + "▁IR": 23967, + "phane": 23968, + "▁fused": 23969, + "▁Nickel": 23970, + "▁specify": 23971, + "▁Tomatoes": 23972, + "▁Mesopotam": 23973, + "▁incorrectly": 23974, + "▁authenticity": 23975, + "▁Gibb": 23976, + "▁lact": 23977, + "▁Dorset": 23978, + "▁heroin": 23979, + "▁refres": 23980, + "▁mirrors": 23981, + "▁beautifully": 23982, + "▁NI": 23983, + "▁154": 23984, + "▁440": 23985, + "▁McE": 23986, + "▁1834": 23987, + "angled": 23988, + "▁disid": 23989, + "▁scary": 23990, + "▁raided": 23991, + "▁Consult": 23992, + "▁Traffic": 23993, + "▁Industries": 23994, + "▁contrasted": 23995, + "▁forthcoming": 23996, + "1),": 23997, + "▁Hak": 23998, + "▁cyan": 23999, + "▁reset": 24000, + "▁sweat": 24001, + "▁Killer": 24002, + "▁Travis": 24003, + "▁Ulysses": 24004, + "▁Producer": 24005, + "▁polished": 24006, + "four": 24007, + "ervis": 24008, + "▁Judy": 24009, + "▁Doyle": 24010, + "▁Miche": 24011, + "▁Problem": 24012, + "▁inventor": 24013, + "▁textbook": 24014, + "▁transfers": 24015, + "▁enrollment": 24016, + "yps": 24017, + "▁ug": 24018, + "▁Berk": 24019, + "▁Clan": 24020, + "▁emerges": 24021, + "▁Liberation": 24022, + "▁phosphorus": 24023, + "▁approximate": 24024, + "6).": 24025, + "onyms": 24026, + "▁Bure": 24027, + "charge": 24028, + "▁Omega": 24029, + "▁styled": 24030, + "▁chasing": 24031, + "▁renewal": 24032, + "▁systemic": 24033, + "▁ignorance": 24034, + "axis": 24035, + "▁Gan": 24036, + "▁Safe": 24037, + "ermost": 24038, + "▁airst": 24039, + "▁Vaughan": 24040, + "▁Exercise": 24041, + "▁foreigners": 24042, + "▁successors": 24043, + "Bs": 24044, + "mus": 24045, + "▁Sis": 24046, + "otism": 24047, + "▁Used": 24048, + "▁fibr": 24049, + "▁jiyè": 24050, + "▁rash": 24051, + "reneur": 24052, + "tlement": 24053, + "▁enamel": 24054, + "▁gloves": 24055, + "arya": 24056, + "icked": 24057, + "▁1828": 24058, + "▁Cobb": 24059, + "▁chop": 24060, + "▁Urugu": 24061, + "▁chased": 24062, + "▁nectar": 24063, + "▁Ambrose": 24064, + "▁adjoining": 24065, + "▁discouraged": 24066, + "olit": 24067, + "regor": 24068, + "▁1797": 24069, + "▁Auck": 24070, + "arious": 24071, + "▁Conan": 24072, + "▁remod": 24073, + "▁thigh": 24074, + "▁wield": 24075, + "▁cooled": 24076, + "▁invertebrates": 24077, + "End": 24078, + "fan": 24079, + "▁XL": 24080, + "roqu": 24081, + "▁610": 24082, + "▁hen": 24083, + "▁forum": 24084, + "▁Waterloo": 24085, + "▁induction": 24086, + "▁judgement": 24087, + "▁milestone": 24088, + "▁therapist": 24089, + "▁disturbances": 24090, + "▁redesignated": 24091, + "ça": 24092, + "▁Loy": 24093, + "illus": 24094, + "▁Savoy": 24095, + "▁Braves": 24096, + "▁Measure": 24097, + "▁steamer": 24098, + "▁cautious": 24099, + "▁pilgrimage": 24100, + "▁headquartered": 24101, + "▁schizophrenia": 24102, + "▁Jav": 24103, + "▁dot": 24104, + "▁glee": 24105, + "▁Cinem": 24106, + "▁Rural": 24107, + "▁proceeding": 24108, + "8).": 24109, + "acio": 24110, + "wave": 24111, + "ifolia": 24112, + "levant": 24113, + "▁loops": 24114, + "▁Reporter": 24115, + "▁diversion": 24116, + "▁gentleman": 24117, + "▁Cie": 24118, + "▁Coke": 24119, + "▁Vale": 24120, + "▁zomb": 24121, + "ointed": 24122, + "imation": 24123, + "▁glacier": 24124, + "ús": 24125, + "▁Mā": 24126, + "▁139": 24127, + "▁Muk": 24128, + "▁Veh": 24129, + "▁Benz": 24130, + "▁Papa": 24131, + "▁Reef": 24132, + "▁nets": 24133, + "▁anecd": 24134, + "▁mourn": 24135, + "▁Camaguey": 24136, + "▁supplying": 24137, + "▁Publishers": 24138, + "▁ultraviolet": 24139, + "▁RN": 24140, + "▁asymmet": 24141, + "▁comedic": 24142, + "▁Atlantis": 24143, + "▁elevator": 24144, + "▁altitudes": 24145, + "▁rendezvous": 24146, + "Cube": 24147, + "oder": 24148, + "▁Quad": 24149, + "▁chak": 24150, + "▁eclipse": 24151, + "▁theorem": 24152, + "▁totaling": 24153, + "▁PopMatters": 24154, + "▁atl": 24155, + "▁sul": 24156, + "▁Vari": 24157, + "▁sexy": 24158, + "▁2006,": 24159, + "▁2007.": 24160, + "▁Appeal": 24161, + "▁storing": 24162, + "▁Elsewhere": 24163, + "▁stereotyp": 24164, + "▁harassment": 24165, + "▁USC": 24166, + "inkel": 24167, + "▁Inch": 24168, + "▁Shankar": 24169, + "▁Athenian": 24170, + "▁mourning": 24171, + "▁communism": 24172, + "▁151": 24173, + "▁Tran": 24174, + "▁Khmer": 24175, + "▁unlock": 24176, + "▁berries": 24177, + "▁assaults": 24178, + "▁Geographic": 24179, + "lis": 24180, + "▁Hé": 24181, + "▁buoy": 24182, + "▁crem": 24183, + "▁hail": 24184, + "▁Keral": 24185, + "▁Theme": 24186, + "▁chanc": 24187, + "▁perme": 24188, + "▁invites": 24189, + "▁ratified": 24190, + "▁attaining": 24191, + "▁π": 24192, + "mia": 24193, + "oos": 24194, + "▁2-": 24195, + "▁GS": 24196, + "rath": 24197, + "▁Bring": 24198, + "▁Trees": 24199, + "▁candy": 24200, + "▁radial": 24201, + "▁antenna": 24202, + "▁summers": 24203, + "▁relevance": 24204, + "▁enterprises": 24205, + "▁Vig": 24206, + "▁USDA": 24207, + "▁emit": 24208, + "▁Brill": 24209, + "entials": 24210, + "▁ascent": 24211, + "▁heroine": 24212, + "▁Stéphane": 24213, + "▁inadvert": 24214, + "▁installing": 24215, + "▁Nir": 24216, + "▁Wad": 24217, + "▁Léon": 24218, + "erville": 24219, + "roduced": 24220, + "▁Weight": 24221, + "▁blessed": 24222, + "▁daytime": 24223, + "▁holdings": 24224, + "▁assaulted": 24225, + "▁righteous": 24226, + "▁brightness": 24227, + "▁Accordingly": 24228, + "game": 24229, + "▁Arb": 24230, + "▁mete": 24231, + "▁melod": 24232, + "▁catchy": 24233, + "▁evenly": 24234, + "▁infest": 24235, + "▁guerrilla": 24236, + "▁retrieved": 24237, + "▁FOR": 24238, + "▁Tap": 24239, + "▁Lowe": 24240, + "▁culp": 24241, + "▁Chopra": 24242, + "▁pigeon": 24243, + "▁Forrest": 24244, + "▁Garrett": 24245, + "▁unwanted": 24246, + "▁parachute": 24247, + "Hen": 24248, + "/200": 24249, + "▁2.5": 24250, + "aning": 24251, + "vable": 24252, + "▁Into": 24253, + "▁Perm": 24254, + "adowed": 24255, + "▁cleans": 24256, + "occupied": 24257, + "▁Hunters": 24258, + "▁neutrons": 24259, + "▁Karnataka": 24260, + "▁unpleasant": 24261, + "Der": 24262, + "Reilly": 24263, + "▁hitter": 24264, + "▁Mystery": 24265, + "fficiency": 24266, + "▁Appalach": 24267, + "▁intestinal": 24268, + "▁eligibility": 24269, + "▁examinations": 24270, + "neg": 24271, + "▁Bonnie": 24272, + "▁Walking": 24273, + "▁juveniles": 24274, + "▁nightclub": 24275, + "▁originating": 24276, + "enb": 24277, + "▁Anc": 24278, + "▁Hos": 24279, + "ecker": 24280, + "▁lodge": 24281, + "acetime": 24282, + "▁Ronnie": 24283, + "▁Kitchen": 24284, + "▁archive": 24285, + "▁dialects": 24286, + "▁excellence": 24287, + "▁oppression": 24288, + "▁sanitation": 24289, + "eled": 24290, + "▁dots": 24291, + "ranged": 24292, + "▁deposed": 24293, + "▁ejected": 24294, + "▁reluctantly": 24295, + "▁akin": 24296, + "▁Kitty": 24297, + "▁deeds": 24298, + "▁Frankf": 24299, + "▁angels": 24300, + "▁Cartman": 24301, + "▁deserve": 24302, + "▁menstru": 24303, + "▁neutrality": 24304, + "▁projections": 24305, + "zier": 24306, + "rades": 24307, + "ographs": 24308, + "▁empathy": 24309, + "▁grateful": 24310, + "▁HC": 24311, + "▁Orb": 24312, + "pires": 24313, + "▁Golf": 24314, + "▁Waste": 24315, + "▁Saigon": 24316, + "▁jewelry": 24317, + "▁Prep": 24318, + "autions": 24319, + "▁coloration": 24320, + "▁retaliation": 24321, + "has": 24322, + "eche": 24323, + "▁Ain": 24324, + "▁Loop": 24325, + "▁blunt": 24326, + "▁reservoirs": 24327, + "▁transitions": 24328, + "UL": 24329, + "enia": 24330, + "▁Buzz": 24331, + "▁Lana": 24332, + "▁Cooke": 24333, + "▁Weaver": 24334, + "▁coffin": 24335, + "▁novanm": 24336, + "▁rodents": 24337, + "▁Flotilla": 24338, + "▁invading": 24339, + "▁firefight": 24340, + "guin": 24341, + "▁Craft": 24342, + "▁sugars": 24343, + "▁Jenkins": 24344, + "▁branded": 24345, + "▁capsule": 24346, + "▁Benefits": 24347, + "▁Cherokee": 24348, + "▁billions": 24349, + "▁positioning": 24350, + "▁NW": 24351, + "▁Slow": 24352, + "uitable": 24353, + "▁motions": 24354, + "▁genocide": 24355, + "▁routines": 24356, + "▁prevailed": 24357, + "DL": 24358, + "utsch": 24359, + "▁Talbot": 24360, + "▁gunpowder": 24361, + "entin": 24362, + "▁Dial": 24363, + "▁Disp": 24364, + "▁moll": 24365, + "▁weeds": 24366, + "▁Cyprus": 24367, + "▁Doming": 24368, + "▁cortex": 24369, + "▁synonym": 24370, + "▁utterly": 24371, + "▁wrecked": 24372, + "▁telegraph": 24373, + "▁Fus": 24374, + "▁Pull": 24375, + "inator": 24376, + "▁Aware": 24377, + "▁Terra": 24378, + "▁Felipe": 24379, + "▁recomb": 24380, + "▁pirates": 24381, + "▁Armoured": 24382, + "▁implicit": 24383, + "▁infamous": 24384, + "▁fashioned": 24385, + "PL": 24386, + "anye": 24387, + "uper": 24388, + "▁Tub": 24389, + "▁Jacobs": 24390, + "▁Phelps": 24391, + "illation": 24392, + "▁marrying": 24393, + "▁societal": 24394, + "▁cigarette": 24395, + "▁Resistance": 24396, + "▁organizational": 24397, + "▁Tara": 24398, + "feated": 24399, + "imited": 24400, + "▁capit": 24401, + "parents": 24402, + "▁Purple": 24403, + "▁FR": 24404, + "roup": 24405, + "▁HBO": 24406, + "▁Amin": 24407, + "▁Dunn": 24408, + "▁digits": 24409, + "▁plaint": 24410, + "▁Concept": 24411, + "▁reminds": 24412, + "▁survivor": 24413, + "▁Whitehead": 24414, + "▁experimented": 24415, + "▁aforementioned": 24416, + "alc": 24417, + "▁Jal": 24418, + "▁Mey": 24419, + "forth": 24420, + "▁Chev": 24421, + "▁Cope": 24422, + "▁Contreras": 24423, + "▁insistence": 24424, + "▁commissioners": 24425, + "▁mitochondrial": 24426, + "▁163": 24427, + "ennes": 24428, + "▁moss": 24429, + "▁nurt": 24430, + "▁spheres": 24431, + "indy": 24432, + "regn": 24433, + "ulas": 24434, + "▁Minh": 24435, + "▁Vert": 24436, + "intage": 24437, + "▁lemon": 24438, + "▁Choose": 24439, + "▁pigment": 24440, + "▁satirical": 24441, + "▁Archaeological": 24442, + "iard": 24443, + "▁Arg": 24444, + "agasy": 24445, + "unate": 24446, + "▁Goes": 24447, + "▁Lark": 24448, + "▁Ricky": 24449, + "▁tapes": 24450, + "▁Beaver": 24451, + "▁coherent": 24452, + "▁manually": 24453, + "▁assistants": 24454, + "▁exercising": 24455, + "olor": 24456, + "▁164": 24457, + "▁cob": 24458, + "rasound": 24459, + "▁ornith": 24460, + "▁quicker": 24461, + "▁reactors": 24462, + "▁endorsement": 24463, + "▁outnumbered": 24464, + "▁morphological": 24465, + "▁TA": 24466, + "brush": 24467, + "uttle": 24468, + "▁Grav": 24469, + "▁Kahn": 24470, + "▁Tool": 24471, + "▁bays": 24472, + "▁elli": 24473, + "▁pept": 24474, + "▁Compl": 24475, + "▁voter": 24476, + "▁Rescue": 24477, + "▁excuse": 24478, + "▁imposing": 24479, + "naeus": 24480, + "▁hadn": 24481, + "▁sage": 24482, + "essive": 24483, + "▁Coral": 24484, + "▁Answer": 24485, + "▁Lowell": 24486, + "▁hiking": 24487, + "▁Mariana": 24488, + "▁winters": 24489, + "▁Conservatives": 24490, + "▁Kip": 24491, + "▁downs": 24492, + "▁memoir": 24493, + "▁100,000": 24494, + "▁Reflect": 24495, + "▁Scandinavian": 24496, + "▁Cyber": 24497, + "▁crush": 24498, + "uncture": 24499, + "▁Autumn": 24500, + "▁barons": 24501, + "▁graded": 24502, + "▁hostage": 24503, + "▁Auckland": 24504, + "▁Fortress": 24505, + "▁Oriental": 24506, + "▁predominant": 24507, + "▁provisional": 24508, + "ør": 24509, + "bee": 24510, + "tel": 24511, + "ème": 24512, + "▁NJ": 24513, + "▁Kry": 24514, + "▁coh": 24515, + "▁kay": 24516, + "▁xen": 24517, + "flict": 24518, + "▁gram": 24519, + "▁Edith": 24520, + "▁Thier": 24521, + "anthrop": 24522, + "▁Atmosp": 24523, + "▁Claudia": 24524, + "▁underside": 24525, + "heid": 24526, + "▁143": 24527, + "▁Sto": 24528, + "▁Aman": 24529, + "▁forc": 24530, + "▁Pepper": 24531, + "▁buffer": 24532, + "▁sparse": 24533, + "▁airfields": 24534, + "▁Sosyete": 24535, + "▁Nicaragua": 24536, + "▁Officials": 24537, + "▁portfolio": 24538, + "▁vertically": 24539, + "▁POW": 24540, + "▁Bund": 24541, + "church": 24542, + "▁(2010": 24543, + "▁Carlisle": 24544, + "▁cardinal": 24545, + "▁firearms": 24546, + "▁Direction": 24547, + "▁convinces": 24548, + "▁graphical": 24549, + "▁il": 24550, + "▁hug": 24551, + "▁PMID": 24552, + "▁vass": 24553, + "▁dilem": 24554, + "▁ubiqu": 24555, + "▁verify": 24556, + "▁Plateau": 24557, + "▁landslides": 24558, + "▁prototypes": 24559, + "▁Fon": 24560, + "▁Zap": 24561, + "esses": 24562, + "▁Pure": 24563, + "▁Facts": 24564, + "▁Trial": 24565, + "▁obese": 24566, + "▁spikes": 24567, + "▁Hungarians": 24568, + "▁phylogenetic": 24569, + "▁Whed": 24570, + "▁Wenger": 24571, + "▁sooner": 24572, + "▁trailing": 24573, + "▁predation": 24574, + "TE": 24575, + "TER": 24576, + "▁GH": 24577, + "▁fel": 24578, + "▁doctr": 24579, + "▁stamps": 24580, + "▁casemates": 24581, + "▁incentive": 24582, + "▁beginnings": 24583, + "▁formulated": 24584, + "▁GE": 24585, + "▁NR": 24586, + "▁Vin": 24587, + "▁ana": 24588, + "▁Piet": 24589, + "▁lamps": 24590, + "▁hybrids": 24591, + "▁semester": 24592, + "▁yellowish": 24593, + "▁inaccurate": 24594, + "▁preferring": 24595, + "avers": 24596, + "▁taxa": 24597, + "▁Dubai": 24598, + "▁Nepal": 24599, + "▁Mongols": 24600, + "▁shaping": 24601, + "▁intriguing": 24602, + "Ref": 24603, + "▁SG": 24604, + "chet": 24605, + "▁Ion": 24606, + "aying": 24607, + "▁scra": 24608, + "▁Cover": 24609, + "▁Sparta": 24610, + "▁fungal": 24611, + "▁Groening": 24612, + "▁wondered": 24613, + "▁internally": 24614, + "▁Paralympics": 24615, + "▁Lah": 24616, + "powered": 24617, + "▁Kerala": 24618, + "▁Saffir": 24619, + "▁Simone": 24620, + "▁ammonia": 24621, + "▁vibrant": 24622, + "▁expenditure": 24623, + "bels": 24624, + "rimp": 24625, + "geois": 24626, + "reach": 24627, + "obacter": 24628, + "▁Rowland": 24629, + "▁coincide": 24630, + "▁contender": 24631, + "▁Thereafter": 24632, + "2),": 24633, + "ounge": 24634, + "▁Qing": 24635, + "bestos": 24636, + "▁Hoover": 24637, + "▁Totten": 24638, + "▁slogan": 24639, + "Do": 24640, + "isye": 24641, + "▁Aal": 24642, + "▁Neo": 24643, + "▁Cott": 24644, + "▁Braun": 24645, + "product": 24646, + "▁transist": 24647, + "▁programmed": 24648, + "▁intentional": 24649, + "▁TF": 24650, + "link": 24651, + "▁30,": 24652, + "▁Gaut": 24653, + "▁tenor": 24654, + "portion": 24655, + "▁Prepar": 24656, + "▁Vulcan": 24657, + "▁errone": 24658, + "▁edisyon": 24659, + "▁affinity": 24660, + "▁mitigate": 24661, + "▁radicals": 24662, + "▁investing": 24663, + "▁thunderstorm": 24664, + "▁Buffy": 24665, + "▁Flynn": 24666, + "▁Toyota": 24667, + "▁geneal": 24668, + "▁earnest": 24669, + "▁microbi": 24670, + "▁Maritime": 24671, + "▁Provincial": 24672, + "▁culturally": 24673, + "▁kindergarten": 24674, + "▁390": 24675, + "▁Dong": 24676, + "▁ranc": 24677, + "▁pitches": 24678, + "▁theolog": 24679, + "▁explorers": 24680, + "▁authorised": 24681, + "▁Ath": 24682, + "▁nour": 24683, + "▁Dolph": 24684, + "▁Waugh": 24685, + "▁parap": 24686, + "▁Didier": 24687, + "▁Falcon": 24688, + "▁fleets": 24689, + "▁Pioneer": 24690, + "▁inexpensive": 24691, + "duc": 24692, + "▁sib": 24693, + "▁tyres": 24694, + "umption": 24695, + "▁Alexis": 24696, + "▁dealer": 24697, + "▁Antioch": 24698, + "▁skating": 24699, + "▁intestine": 24700, + "▁confluence": 24701, + "▁fraternity": 24702, + "▁undefeated": 24703, + "▁CI": 24704, + "▁640": 24705, + "▁Chu": 24706, + "▁alloc": 24707, + "▁wagons": 24708, + "▁reactive": 24709, + "▁domination": 24710, + "▁evaluating": 24711, + "▁detrimental": 24712, + "robe": 24713, + "ikini": 24714, + "inees": 24715, + "▁Button": 24716, + "▁swords": 24717, + "▁singled": 24718, + "▁sponsors": 24719, + "▁Volunteer": 24720, + "▁negotiating": 24721, + "▁TC": 24722, + "▁Cod": 24723, + "▁Ort": 24724, + "▁São": 24725, + "▁zeb": 24726, + "▁cite": 24727, + "▁hears": 24728, + "▁Circus": 24729, + "▁Nichols": 24730, + "▁reinforcement": 24731, + "See": 24732, + "Lear": 24733, + "▁Holt": 24734, + "▁Mist": 24735, + "▁tally": 24736, + "▁Cartoon": 24737, + "▁Toby": 24738, + "▁eats": 24739, + "urring": 24740, + "▁adhes": 24741, + "▁basket": 24742, + "▁contrasts": 24743, + "▁galleries": 24744, + "▁poisonous": 24745, + "jas": 24746, + "high": 24747, + "iero": 24748, + "▁12.": 24749, + "▁1811": 24750, + "▁seaw": 24751, + "oprens": 24752, + "rocery": 24753, + "▁tenants": 24754, + "▁fourteenth": 24755, + "agar": 24756, + "eres": 24757, + "▁dir": 24758, + "ewide": 24759, + "▁euro": 24760, + "▁Fanny": 24761, + "uristic": 24762, + "urel": 24763, + "▁aph": 24764, + "▁ponds": 24765, + "▁canyon": 24766, + "▁aground": 24767, + "▁beetles": 24768, + "▁analogous": 24769, + "DM": 24770, + "-14": 24771, + "ormal": 24772, + "▁Chab": 24773, + "▁Mask": 24774, + "▁sabot": 24775, + "▁stint": 24776, + "▁Skills": 24777, + "▁Cochrane": 24778, + "▁Venetian": 24779, + "▁suppliers": 24780, + "▁vern": 24781, + "▁Minaj": 24782, + "▁sworn": 24783, + "▁tires": 24784, + "▁tastes": 24785, + "▁classics": 24786, + "coin": 24787, + "▁Gue": 24788, + "▁roy": 24789, + "▁Mari": 24790, + "▁lamb": 24791, + "▁Uganda": 24792, + "▁Williamson": 24793, + "izyè": 24794, + "▁(12": 24795, + "▁Vald": 24796, + "inctions": 24797, + "▁Liberals": 24798, + "▁Wolverines": 24799, + ".||": 24800, + "▁174": 24801, + "▁AAA": 24802, + "▁Murd": 24803, + "erness": 24804, + "▁Rocks": 24805, + "▁docks": 24806, + "▁pants": 24807, + "▁remot": 24808, + "▁Rifles": 24809, + "▁carpet": 24810, + "▁poured": 24811, + "▁Fernand": 24812, + "▁Malagasy": 24813, + "▁Associate": 24814, + "▁confession": 24815, + "arry": 24816, + "▁Cash": 24817, + "▁2014,": 24818, + "▁parameter": 24819, + "▁conspicuous": 24820, + "▁partnerships": 24821, + "▁HR": 24822, + "aires": 24823, + "itous": 24824, + "▁Levi": 24825, + "▁Glaston": 24826, + "▁nostalg": 24827, + "▁selections": 24828, + "ije": 24829, + "ossip": 24830, + "▁Yoga": 24831, + "▁Harlem": 24832, + "ceptable": 24833, + "▁abbrevi": 24834, + "▁worsened": 24835, + "▁sponsorship": 24836, + "▁incorporation": 24837, + "dis": 24838, + "▁fon": 24839, + "▁Elsa": 24840, + "▁shoe": 24841, + "▁ozone": 24842, + "▁lavish": 24843, + "▁pleaded": 24844, + "▁Clifford": 24845, + "▁heightened": 24846, + "cke": 24847, + "oyne": 24848, + "▁lid": 24849, + "▁Hors": 24850, + "▁Tosh": 24851, + "▁foam": 24852, + "▁belts": 24853, + "▁Target": 24854, + "▁evapor": 24855, + "▁ninety": 24856, + "▁epithet": 24857, + "orporated": 24858, + "▁brighter": 24859, + "▁extrater": 24860, + "llan": 24861, + "▁Iber": 24862, + "▁situ": 24863, + "philis": 24864, + "▁adren": 24865, + "▁Barney": 24866, + "▁Melissa": 24867, + "▁Syndrome": 24868, + "▁Episcopal": 24869, + "▁Sta": 24870, + "ullah": 24871, + "▁Tiber": 24872, + "▁dunge": 24873, + "▁barred": 24874, + "▁drifted": 24875, + "▁slipped": 24876, + "▁converts": 24877, + "▁Dí": 24878, + "lewine": 24879, + "linger": 24880, + "▁halft": 24881, + "▁spike": 24882, + "▁Frontier": 24883, + "▁inaugurated": 24884, + "▁photographic": 24885, + "▁proclamation": 24886, + "hanna": 24887, + "▁Kron": 24888, + "▁Rapid": 24889, + "▁hanged": 24890, + "▁umpire": 24891, + "▁Diseases": 24892, + "▁Erlewine": 24893, + "▁Historians": 24894, + "▁Napoleonic": 24895, + "▁republican": 24896, + "▁Peng": 24897, + "ogeneous": 24898, + "▁Revenge": 24899, + "▁benefic": 24900, + "▁sandwich": 24901, + "▁counseling": 24902, + "▁rehearsals": 24903, + "▁laboratories": 24904, + "ktè": 24905, + "two": 24906, + "vil": 24907, + "▁Fed": 24908, + "▁ree": 24909, + "▁Cris": 24910, + "▁Watt": 24911, + "atting": 24912, + "▁Parts": 24913, + "▁Scheer": 24914, + "▁uphold": 24915, + "▁incurred": 24916, + "▁symphony": 24917, + "▁breakaway": 24918, + "ît": 24919, + "▁`": 24920, + "utnant": 24921, + "▁Critic": 24922, + "▁Wizard": 24923, + "▁Respons": 24924, + "▁amalgam": 24925, + "▁obstruct": 24926, + "▁realization": 24927, + "hima": 24928, + "worm": 24929, + "▁Avery": 24930, + "▁McCorm": 24931, + "▁inmates": 24932, + "▁spreads": 24933, + "▁comprehension": 24934, + "▁430": 24935, + "▁ACL": 24936, + "▁Buy": 24937, + "▁pads": 24938, + "▁Applic": 24939, + "▁abused": 24940, + "▁Spartan": 24941, + "▁Christie": 24942, + "▁Sheridan": 24943, + "▁verified": 24944, + "▁Inspector": 24945, + "▁Reference": 24946, + "▁Glastonbury": 24947, + "iné": 24948, + "▁bump": 24949, + "▁dear": 24950, + "atical": 24951, + "▁Cruise": 24952, + "▁unused": 24953, + "overeign": 24954, + "▁assemble": 24955, + "▁Bollywood": 24956, + "▁staircase": 24957, + "▁24,": 24958, + "arcer": 24959, + "▁Beech": 24960, + "▁Thess": 24961, + "▁antic": 24962, + "▁Wessex": 24963, + "▁coated": 24964, + "▁shafts": 24965, + "▁spines": 24966, + "▁Baghdad": 24967, + "▁revolves": 24968, + "▁migratory": 24969, + "▁Principles": 24970, + "5).": 24971, + "hop": 24972, + "▁ko": 24973, + "moil": 24974, + "▁Jas": 24975, + "check": 24976, + "▁elbow": 24977, + "▁lever": 24978, + "▁vowel": 24979, + "▁Stefan": 24980, + "▁intoxic": 24981, + "▁microbes": 24982, + "▁widening": 24983, + "▁evidenced": 24984, + "▁sociology": 24985, + "▁Éd": 24986, + "▁Fut": 24987, + "▁etid": 24988, + "agrams": 24989, + "▁scent": 24990, + "▁Godwin": 24991, + "▁Vettel": 24992, + "▁lonely": 24993, + "▁vascular": 24994, + "▁Tao": 24995, + "umper": 24996, + "▁Bury": 24997, + "▁pinn": 24998, + "▁Polar": 24999, + "▁pwofes": 25000, + "▁unhealthy": 25001, + "nick": 25002, + "stood": 25003, + "▁2030": 25004, + "▁Ibra": 25005, + "▁Odin": 25006, + "▁Pius": 25007, + "▁saga": 25008, + "▁Severe": 25009, + "▁denying": 25010, + "▁remixed": 25011, + "▁conveyed": 25012, + "▁Strategic": 25013, + "▁viewership": 25014, + "▁nm": 25015, + "▁Ges": 25016, + "▁10.10": 25017, + "▁Privy": 25018, + "▁hated": 25019, + "▁clover": 25020, + "▁": 25021, + "e": 25022, + "t": 25023, + "a": 25024, + "n": 25025, + "i": 25026, + "o": 25027, + "r": 25028, + "s": 25029, + "h": 25030, + "l": 25031, + "d": 25032, + "c": 25033, + "u": 25034, + "m": 25035, + "f": 25036, + "p": 25037, + "g": 25038, + "y": 25039, + "w": 25040, + "b": 25041, + ",": 25042, + ".": 25043, + "v": 25044, + "k": 25045, + "T": 25046, + "1": 25047, + "@": 25048, + "A": 25049, + "0": 25050, + "S": 25051, + "C": 25052, + "I": 25053, + "M": 25054, + "2": 25055, + "-": 25056, + "\"": 25057, + "B": 25058, + "9": 25059, + "x": 25060, + "P": 25061, + "'": 25062, + "H": 25063, + "D": 25064, + "R": 25065, + "L": 25066, + "F": 25067, + "W": 25068, + ")": 25069, + "(": 25070, + "E": 25071, + "N": 25072, + "G": 25073, + "3": 25074, + "z": 25075, + "5": 25076, + "8": 25077, + "J": 25078, + "O": 25079, + "4": 25080, + "6": 25081, + "j": 25082, + "7": 25083, + ":": 25084, + "q": 25085, + "K": 25086, + "U": 25087, + "V": 25088, + ";": 25089, + "’": 25090, + "–": 25091, + "Y": 25092, + "è": 25093, + "/": 25094, + "ò": 25095, + "é": 25096, + "“": 25097, + "”": 25098, + "—": 25099, + "?": 25100, + "Z": 25101, + "|": 25102, + "=": 25103, + "Q": 25104, + "%": 25105, + "$": 25106, + "]": 25107, + "[": 25108, + "X": 25109, + "!": 25110, + "&": 25111, + "á": 25112, + "_": 25113, + "í": 25114, + "‘": 25115, + "°": 25116, + "ó": 25117, + "+": 25118, + "ː": 25119, + "£": 25120, + "ü": 25121, + "ö": 25122, + "*": 25123, + "#": 25124, + ">": 25125, + "ñ": 25126, + "ć": 25127, + "ō": 25128, + "ç": 25129, + "•": 25130, + "à": 25131, + "ä": 25132, + "É": 25133, + "<": 25134, + "â": 25135, + "ā": 25136, + "−": 25137, + "ø": 25138, + "š": 25139, + "ú": 25140, + "ł": 25141, + "ê": 25142, + "×": 25143, + "ô": 25144, + "′": 25145, + "μ": 25146, + "⁄": 25147, + "ë": 25148, + "ï": 25149, + "~": 25150, + "α": 25151, + "Æ": 25152, + "č": 25153, + "·": 25154, + "»": 25155, + "æ": 25156, + "ă": 25157, + "Á": 25158, + "ū": 25159, + "«": 25160, + "ð": 25161, + "а": 25162, + "о": 25163, + "€": 25164, + "₹": 25165, + "å": 25166, + "ã": 25167, + "î": 25168, + "^": 25169, + "ο": 25170, + "и": 25171, + "`": 25172, + "©": 25173, + "Đ": 25174, + "е": 25175, + "ˈ": 25176, + "ī": 25177, + "ν": 25178, + "ệ": 25179, + "τ": 25180, + "н": 25181, + "œ": 25182, + "‐": 25183, + "®": 25184, + "р": 25185, + "ς": 25186, + "ə": 25187, + "±": 25188, + "ž": 25189, + "†": 25190, + "ι": 25191, + "π": 25192, + "β": 25193, + "ε": 25194, + "λ": 25195, + "ا": 25196, + "Š": 25197, + "т": 25198, + "с": 25199, + "ń": 25200, + "ρ": 25201, + "Å": 25202, + "→": 25203, + "Ö": 25204, + "в": 25205, + "\\": 25206, + "ß": 25207, + "ل": 25208, + "♭": 25209, + "ʻ": 25210, + "ś": 25211, + "κ": 25212, + "к": 25213, + "§": 25214, + "Ó": 25215, + "л": 25216, + "ı": 25217, + "σ": 25218, + "η": 25219, + "ş": 25220, + "đ": 25221, + "्": 25222, + "γ": 25223, + "À": 25224, + "ș": 25225, + "Â": 25226, + "ー": 25227, + "́": 25228, + "δ": 25229, + "ा": 25230, + "û": 25231, + "Î": 25232, + "ù": 25233, + "υ": 25234, + "Ø": 25235, + "ē": 25236, + "ɪ": 25237, + "ę": 25238, + "ن": 25239, + "д": 25240, + "م": 25241, + "}": 25242, + "ả": 25243, + "θ": 25244, + "ì": 25245, + "ン": 25246, + "м": 25247, + "у": 25248, + "र": 25249, + "↑": 25250, + "ر": 25251, + "ω": 25252, + "¥": 25253, + "ル": 25254, + "Ž": 25255, + "Č": 25256, + "י": 25257, + "ý": 25258, + "・": 25259, + "Ō": 25260, + "♯": 25261, + "φ": 25262, + "の": 25263, + "َ": 25264, + "و": 25265, + "ό": 25266, + "ί": 25267, + "ي": 25268, + "п": 25269, + "क": 25270, + "я": 25271, + "ب": 25272, + "ɛ": 25273, + "ו": 25274, + "й": 25275, + "ř": 25276, + "ス": 25277, + "ơ": 25278, + "ą": 25279, + "þ": 25280, + "ά": 25281, + "Í": 25282, + "г": 25283, + "χ": 25284, + "ь": 25285, + "ה": 25286, + "त": 25287, + "〉": 25288, + "{": 25289, + "ि": 25290, + "☉": 25291, + "א": 25292, + "ư": 25293, + "〈": 25294, + "ʿ": 25295, + "د": 25296, + "ě": 25297, + "ɔ": 25298, + "ạ": 25299, + "ễ": 25300, + "¡": 25301, + "イ": 25302, + "Δ": 25303, + "ه": 25304, + "‍": 25305, + "з": 25306, + "Ü": 25307, + "б": 25308, + "●": 25309, + "Ż": 25310, + "ы": 25311, + "ʊ": 25312, + "¢": 25313, + "न": 25314, + "ė": 25315, + "Ç": 25316, + "ч": 25317, + "ṇ": 25318, + "ク": 25319, + "Ś": 25320, + "ế": 25321, + "ʃ": 25322, + "س": 25323, + "ɣ": 25324, + "ż": 25325, + "ț": 25326, + "स": 25327, + "¿": 25328, + "Þ": 25329, + "ứ": 25330, + "È": 25331, + "म": 25332, + "έ": 25333, + "ר": 25334, + "ל": 25335, + "ト": 25336, + "ع": 25337, + "်": 25338, + "ɑ": 25339, + "ğ": 25340, + "ी": 25341, + "リ": 25342, + "ő": 25343, + "С": 25344, + "的": 25345, + "­": 25346, + "े": 25347, + "ẩ": 25348, + "̪": 25349, + "≤": 25350, + "、": 25351, + "Ł": 25352, + "Ω": 25353, + "õ": 25354, + "ت": 25355, + "ラ": 25356, + "ב": 25357, + "ア": 25358, + "ِ": 25359, + "ی": 25360, + "ɡ": 25361, + "य": 25362, + "フ": 25363, + "。": 25364, + "―": 25365, + "ύ": 25366, + "ա": 25367, + "ร": 25368, + "ṭ": 25369, + "Ò": 25370, + "ッ": 25371, + "ह": 25372, + "ή": 25373, + "ḥ": 25374, + "ṣ": 25375, + "Ú": 25376, + "Π": 25377, + "า": 25378, + "ש": 25379, + "İ": 25380, + "ת": 25381, + "タ": 25382, + "ド": 25383, + "ָ": 25384, + "≥": 25385, + "प": 25386, + "ˌ": 25387, + "ナ": 25388, + "ˇ": 25389, + "ं": 25390, + "Ş": 25391, + "Ä": 25392, + "ح": 25393, + "ल": 25394, + "̊": 25395, + "व": 25396, + "ỳ": 25397, + "₱": 25398, + "Œ": 25399, + "›": 25400, + "ц": 25401, + "מ": 25402, + "ּ": 25403, + "П": 25404, + "„": 25405, + "ジ": 25406, + "Ā": 25407, + "‚": 25408, + "น": 25409, + "シ": 25410, + "ồ": 25411, + "い": 25412, + "ţ": 25413, + "द": 25414, + "大": 25415, + "ŋ": 25416, + "х": 25417, + "ो": 25418, + "√": 25419, + "ق": 25420, + "ロ": 25421, + "ụ": 25422, + "ة": 25423, + "ァ": 25424, + "Ã": 25425, + "ʒ": 25426, + "В": 25427, + "ж": 25428, + "ف": 25429, + "ע": 25430, + "オ": 25431, + "Σ": 25432, + "ш": 25433, + "ξ": 25434, + "一": 25435, + "श": 25436, + "ṃ": 25437, + "∠": 25438, + "ḍ": 25439, + "ộ": 25440, + "ְ": 25441, + "Р": 25442, + "ἀ": 25443, + "≈": 25444, + "マ": 25445, + "М": 25446, + "ῦ": 25447, + "ד": 25448, + "~": 25449, + "က": 25450, + "่": 25451, + "ु": 25452, + "ź": 25453, + "נ": 25454, + "А": 25455, + "ầ": 25456, + "中": 25457, + "ɒ": 25458, + "ั": 25459, + "►": 25460, + "ַ": 25461, + "ج": 25462, + "☎": 25463, + "ʁ": 25464, + "ζ": 25465, + "း": 25466, + "ị": 25467, + "ّ": 25468, + "أ": 25469, + "ִ": 25470, + "ブ": 25471, + "ْ": 25472, + "レ": 25473, + "͡": 25474, + "◦": 25475, + "人": 25476, + "ʀ": 25477, + "ǎ": 25478, + "і": 25479, + "К": 25480, + "ם": 25481, + "₤": 25482, + "∼": 25483, + "テ": 25484, + "ज": 25485, + "ɾ": 25486, + "ն": 25487, + "↩": 25488, + "̃": 25489, + "ك": 25490, + "ウ": 25491, + "ُ": 25492, + "ʾ": 25493, + "Б": 25494, + "ာ": 25495, + "ု": 25496, + "ィ": 25497, + "Κ": 25498, + "し": 25499, + "天": 25500, + "エ": 25501, + "カ": 25502, + "バ": 25503, + "ọ": 25504, + "Ș": 25505, + "ח": 25506, + "ش": 25507, + "ม": 25508, + "ズ": 25509, + "ز": 25510, + "ိ": 25511, + "ὶ": 25512, + "█": 25513, + "た": 25514, + "る": 25515, + "Н": 25516, + "ท": 25517, + "ἐ": 25518, + "Α": 25519, + "Г": 25520, + "พ": 25521, + "Ε": 25522, + "日": 25523, + "サ": 25524, + "🙂": 25525, + "Μ": 25526, + "ص": 25527, + "ュ": 25528, + "か": 25529, + "ֶ": 25530, + "்": 25531, + "་": 25532, + "文": 25533, + "이": 25534, + "ะ": 25535, + "ん": 25536, + "ี": 25537, + "ダ": 25538, + "ֹ": 25539, + "া": 25540, + "な": 25541, + "ま": 25542, + "ニ": 25543, + "ὸ": 25544, + "̈": 25545, + "င": 25546, + "ग": 25547, + "ष": 25548, + "О": 25549, + "כ": 25550, + "と": 25551, + "グ": 25552, + "ן": 25553, + "И": 25554, + "ง": 25555, + "ก": 25556, + "り": 25557, + "Ḥ": 25558, + "キ": 25559, + "ら": 25560, + "Θ": 25561, + "ố": 25562, + "ǐ": 25563, + "̯": 25564, + "ю": 25565, + "ब": 25566, + "্": 25567, + "子": 25568, + "ψ": 25569, + "פ": 25570, + "ק": 25571, + "อ": 25572, + "เ": 25573, + "ῶ": 25574, + "神": 25575, + "ک": 25576, + "‹": 25577, + "上": 25578, + "̥": 25579, + "ᵻ": 25580, + "ր": 25581, + "∈": 25582, + "う": 25583, + "ण": 25584, + "ủ": 25585, + "Ι": 25586, + "ṛ": 25587, + "コ": 25588, + "ย": 25589, + "デ": 25590, + "←": 25591, + "■": 25592, + "ῆ": 25593, + "ո": 25594, + "ေ": 25595, + "在": 25596, + "ŏ": 25597, + "ิ": 25598, + "∞": 25599, + "♥": 25600, + "ɐ": 25601, + "ớ": 25602, + "ミ": 25603, + "ム": 25604, + "ǔ": 25605, + "خ": 25606, + "ի": 25607, + "は": 25608, + "ф": 25609, + "भ": 25610, + "ै": 25611, + "ʔ": 25612, + "Ђ": 25613, + "ῖ": 25614, + "अ": 25615, + "ờ": 25616, + "Д": 25617, + "き": 25618, + "ツ": 25619, + "ů": 25620, + "ƒ": 25621, + "ג": 25622, + "生": 25623, + "ส": 25624, + "す": 25625, + "分": 25626, + "¶": 25627, + "Φ": 25628, + "ֵ": 25629, + "้": 25630, + "‡": 25631, + "Γ": 25632, + "ώ": 25633, + "Т": 25634, + "ط": 25635, + "ว": 25636, + "ấ": 25637, + "ὐ": 25638, + "≡": 25639, + "☆": 25640, + "ი": 25641, + "三": 25642, + "÷": 25643, + "ũ": 25644, + "ե": 25645, + "不": 25646, + "太": 25647, + "ĩ": 25648, + "个": 25649, + "ס": 25650, + "ậ": 25651, + "に": 25652, + "チ": 25653, + "作": 25654, + "ŵ": 25655, + "Ο": 25656, + "э": 25657, + "ျ": 25658, + "န": 25659, + "ရ": 25660, + "有": 25661, + "¦": 25662, + "ى": 25663, + "─": 25664, + "ล": 25665, + "မ": 25666, + "ギ": 25667, + "本": 25668, + "ј": 25669, + "ὁ": 25670, + "∴": 25671, + "ハ": 25672, + "️": 25673, + "ャ": 25674, + "山": 25675, + "ׁ": 25676, + "ध": 25677, + "တ": 25678, + "语": 25679, + "ħ": 25680, + "ט": 25681, + "‰": 25682, + "▪": 25683, + "て": 25684, + "を": 25685, + "ガ": 25686, + "伝": 25687, + "小": 25688, + "词": 25689, + "ợ": 25690, + "国": 25691, + "Λ": 25692, + "ז": 25693, + "್": 25694, + "パ": 25695, + "プ": 25696, + "ň": 25697, + "ʌ": 25698, + "ʼ": 25699, + "♦": 25700, + "こ": 25701, + "ェ": 25702, + "ပ": 25703, + "¬": 25704, + "च": 25705, + "ต": 25706, + "メ": 25707, + "의": 25708, + "̶": 25709, + "Β": 25710, + "Τ": 25711, + "ṅ": 25712, + "⇒": 25713, + "ソ": 25714, + "是": 25715, + "।": 25716, + "្": 25717, + "お": 25718, + "王": 25719, + "〜": 25720, + "ŷ": 25721, + "Ν": 25722, + "ป": 25723, + "∂": 25724, + "ち": 25725, + "式": 25726, + "ъ": 25727, + "သ": 25728, + "ὰ": 25729, + "く": 25730, + "学": 25731, + "ノ": 25732, + "女": 25733, + "Ñ": 25734, + "צ": 25735, + "إ": 25736, + "句": 25737, + "戦": 25738, + "法": 25739, + "ट": 25740, + "ʕ": 25741, + "さ": 25742, + "ა": 25743, + "方": 25744, + "Ô": 25745, + "Ć": 25746, + "ヴ": 25747, + "出": 25748, + "和": 25749, + "道": 25750, + "ų": 25751, + "အ": 25752, + "新": 25753, + "物": 25754, + "ゴ": 25755, + "ゼ": 25756, + "モ": 25757, + "ョ": 25758, + "Ţ": 25759, + "щ": 25760, + "์": 25761, + "★": 25762, + "我": 25763, + "月": 25764, + "사": 25765, + "ÿ": 25766, + "ť": 25767, + "公": 25768, + "ǫ": 25769, + "ở": 25770, + "⋅": 25771, + "「": 25772, + "用": 25773, + "ည": 25774, + "れ": 25775, + "ザ": 25776, + "空": 25777, + "第": 25778, + "ŭ": 25779, + "կ": 25780, + "ြ": 25781, + "✔": 25782, + "地": 25783, + "̄": 25784, + "∗": 25785, + "」": 25786, + "が": 25787, + "Л": 25788, + "ۡ": 25789, + "∆": 25790, + "で": 25791, + "下": 25792, + "星": 25793, + "다": 25794, + "ケ": 25795, + "会": 25796, + "ด": 25797, + "ử": 25798, + "ὴ": 25799, + "ব": 25800, + "真": 25801, + "하": 25802, + "Ê": 25803, + "ہ": 25804, + "บ": 25805, + "ห": 25806, + "З": 25807, + "あ": 25808, + "年": 25809, + "田": 25810, + "아": 25811, + "̓": 25812, + "Η": 25813, + "У": 25814, + "├": 25815, + "説": 25816, + "র": 25817, + "ರ": 25818, + "ಿ": 25819, + "ự": 25820, + "南": 25821, + "正": 25822, + "스": 25823, + "̍": 25824, + "主": 25825, + "明": 25826, + "行": 25827, + "部": 25828, + "리": 25829, + "̠": 25830, + "ё": 25831, + "յ": 25832, + "စ": 25833, + "რ": 25834, + "火": 25835, + "⟨": 25836, + "⟩": 25837, + "ポ": 25838, + "为": 25839, + "어": 25840, + "ɨ": 25841, + "∙": 25842, + "ワ": 25843, + "了": 25844, + "成": 25845, + "白": 25846, + "語": 25847, + "ू": 25848, + "つ": 25849, + "ォ": 25850, + "之": 25851, + "ւ": 25852, + "ـ": 25853, + "့": 25854, + "ွ": 25855, + "រ": 25856, + "セ": 25857, + "ボ": 25858, + "家": 25859, + "所": 25860, + "ɕ": 25861, + "ἰ": 25862, + "二": 25863, + "光": 25864, + "定": 25865, + "島": 25866, + "工": 25867, + "ذ": 25868, + "ἄ": 25869, + "め": 25870, + "十": 25871, + "印": 25872, + "教": 25873, + "書": 25874, + "金": 25875, + "տ": 25876, + "ء": 25877, + "്": 25878, + "ံ": 25879, + "။": 25880, + "ắ": 25881, + "も": 25882, + "以": 25883, + "土": 25884, + "ɲ": 25885, + "̆": 25886, + "غ": 25887, + "₩": 25888, + "▲": 25889, + "っ": 25890, + "ض": 25891, + "پ": 25892, + "ক": 25893, + "≠": 25894, + "み": 25895, + "ビ": 25896, + "从": 25897, + "名": 25898, + "时": 25899, + "水": 25900, + "海": 25901, + "者": 25902, + "Ψ": 25903, + "ث": 25904, + "ল": 25905, + "動": 25906, + "可": 25907, + "同": 25908, + "李": 25909, + "高": 25910, + "̞": 25911, + "西": 25912, + "Е": 25913, + "ე": 25914, + "ὑ": 25915, + "你": 25916, + "心": 25917, + "武": 25918, + "風": 25919, + "ǒ": 25920, + "လ": 25921, + "Ṭ": 25922, + "ペ": 25923, + "里": 25924, + "ड": 25925, + "▼": 25926, + "士": 25927, + "集": 25928, + "鼓": 25929, + "한": 25930, + "Э": 25931, + "қ": 25932, + "世": 25933, + "事": 25934, + "京": 25935, + "ņ": 25936, + "Χ": 25937, + "Ш": 25938, + "उ": 25939, + "ত": 25940, + "ি": 25941, + "Ἀ": 25942, + "‒": 25943, + "↵": 25944, + "ベ": 25945, + "多": 25946, + "石": 25947, + "表": 25948, + "가": 25949, + "ম": 25950, + "ช": 25951, + "ီ": 25952, + "ს": 25953, + "國": 25954, + "平": 25955, + "改": 25956, + "自": 25957, + "̝": 25958, + "इ": 25959, + "ಾ": 25960, + "ὲ": 25961, + "‭": 25962, + "化": 25963, + "城": 25964, + "思": 25965, + "路": 25966, + "青": 25967, + "魂": 25968, + "기": 25969, + "제": 25970, + "க": 25971, + "ನ": 25972, + "ယ": 25973, + "ἔ": 25974, + "ネ": 25975, + "版": 25976, + "ए": 25977, + "ন": 25978, + "ು": 25979, + "ဆ": 25980, + "ẵ": 25981, + "ぽ": 25982, + "よ": 25983, + "八": 25984, + "动": 25985, + "原": 25986, + "题": 25987, + "지": 25988, + "آ": 25989, + "ृ": 25990, + "ุ": 25991, + "ှ": 25992, + "‟": 25993, + "春": 25994, + "ɜ": 25995, + "ɬ": 25996, + "Ч": 25997, + "վ": 25998, + "✓": 25999, + "五": 26000, + "意": 26001, + "聖": 26002, + "能": 26003, + "花": 26004, + "銀": 26005, + "라": 26006, + "ľ": 26007, + "̩": 26008, + "گ": 26009, + "थ": 26010, + "จ": 26011, + "แ": 26012, + "₣": 26013, + "∑": 26014, + "ど": 26015, + "ヒ": 26016, + "到": 26017, + "如": 26018, + "字": 26019, + "界": 26020, + "要": 26021, + "面": 26022, + "ս": 26023, + "ས": 26024, + "ữ": 26025, + "ỹ": 26026, + "ば": 26027, + "北": 26028, + "合": 26029, + "四": 26030, + "数": 26031, + "時": 26032, + "葉": 26033, + "Ț": 26034, + "،": 26035, + "ไ": 26036, + "ḻ": 26037, + "え": 26038, + "力": 26039, + "場": 26040, + "少": 26041, + "木": 26042, + "機": 26043, + "編": 26044, + "这": 26045, + "ֲ": 26046, + "औ": 26047, + "ူ": 26048, + "ვ": 26049, + "⊕": 26050, + "♣": 26051, + "だ": 26052, + "他": 26053, + "君": 26054, + "社": 26055, + "英": 26056, + "長": 26057, + "인": 26058, + "ġ": 26059, + "Ф": 26060, + "Հ": 26061, + "ֱ": 26062, + "უ": 26063, + "ḳ": 26064, + "け": 26065, + "剣": 26066, + "型": 26067, + "民": 26068, + "都": 26069, + "魔": 26070, + "Ð": 26071, + "ئ": 26072, + "ข": 26073, + "ศ": 26074, + "ခ": 26075, + "ḷ": 26076, + "ἡ": 26077, + "へ": 26078, + "代": 26079, + "写": 26080, + "前": 26081, + "去": 26082, + "外": 26083, + "常": 26084, + "東": 26085, + "軍": 26086, + "过": 26087, + "Υ": 26088, + "ٱ": 26089, + "़": 26090, + "ா": 26091, + "ி": 26092, + "ἱ": 26093, + "流": 26094, + "시": 26095, + "😉": 26096, + "ɦ": 26097, + "ค": 26098, + "ག": 26099, + "美": 26100, + "賦": 26101, + "자": 26102, + "ʋ": 26103, + "ў": 26104, + "ख": 26105, + "ம": 26106, + "ར": 26107, + "ི": 26108, + "ხ": 26109, + "♠": 26110, + "ょ": 26111, + "加": 26112, + "安": 26113, + "手": 26114, + "来": 26115, + "野": 26116, + "門": 26117, + "龍": 26118, + "고": 26119, + "Х": 26120, + "մ": 26121, + "आ": 26122, + "ಲ": 26123, + "ོ": 26124, + "ထ": 26125, + "ម": 26126, + "ṯ": 26127, + "ᾶ": 26128, + "✅": 26129, + "じ": 26130, + "州": 26131, + "港": 26132, + "Ē": 26133, + "Я": 26134, + "ћ": 26135, + "ղ": 26136, + "ք": 26137, + "ர": 26138, + "ត": 26139, + "千": 26140, + "史": 26141, + "对": 26142, + "川": 26143, + "政": 26144, + "族": 26145, + "理": 26146, + "転": 26147, + "香": 26148, + "ĕ": 26149, + "ʂ": 26150, + "ց": 26151, + "ے": 26152, + "য": 26153, + "ლ": 26154, + "ន": 26155, + "♀": 26156, + "そ": 26157, + "最": 26158, + "林": 26159, + "每": 26160, + "ɟ": 26161, + "̧": 26162, + "ः": 26163, + "ಗ": 26164, + "ỗ": 26165, + "↓": 26166, + "ひ": 26167, + "皇": 26168, + "言": 26169, + "谷": 26170, + "ĭ": 26171, + "ɫ": 26172, + "ˀ": 26173, + "̟": 26174, + "Ρ": 26175, + "ї": 26176, + "ך": 26177, + "მ": 26178, + "ო": 26179, + "ា": 26180, + "ổ": 26181, + "▶": 26182, + "ピ": 26183, + "ヤ": 26184, + "内": 26185, + "台": 26186, + "司": 26187, + "周": 26188, + "好": 26189, + "帝": 26190, + "朝": 26191, + "漢": 26192, + "重": 26193, + "해": 26194, + "ವ": 26195, + "ೆ": 26196, + "ဒ": 26197, + "ស": 26198, + "せ": 26199, + "わ": 26200, + "体": 26201, + "全": 26202, + "刷": 26203, + "后": 26204, + "愛": 26205, + "歌": 26206, + "殿": 26207, + "班": 26208, + "目": 26209, + "로": 26210, + "마": 26211, + "ײ": 26212, + "॥": 26213, + "ু": 26214, + "్": 26215, + "ู": 26216, + "ừ": 26217, + "也": 26218, + "们": 26219, + "共": 26220, + "形": 26221, + "示": 26222, + "記": 26223, + "議": 26224, + "馬": 26225, + "는": 26226, + "에": 26227, + "Ì": 26228, + "Ī": 26229, + "˩": 26230, + "ѕ": 26231, + "թ": 26232, + "ً": 26233, + "ھ": 26234, + "Ṣ": 26235, + "⊗": 26236, + "□": 26237, + "☏": 26238, + "古": 26239, + "回": 26240, + "度": 26241, + "张": 26242, + "後": 26243, + "清": 26244, + "特": 26245, + "百": 26246, + "等": 26247, + "而": 26248, + "見": 26249, + "解": 26250, + "音": 26251, + "랑": 26252, + "비": 26253, + "일": 26254, + "전": 26255, + "Õ": 26256, + "Ý": 26257, + "ű": 26258, + "ǂ": 26259, + "ɹ": 26260, + "Ј": 26261, + "լ": 26262, + "স": 26263, + "ಯ": 26264, + "ὺ": 26265, + "∕": 26266, + "ⴰ": 26267, + "使": 26268, + "個": 26269, + "先": 26270, + "其": 26271, + "張": 26272, + "性": 26273, + "放": 26274, + "詩": 26275, + "那": 26276, + "郎": 26277, + "院": 26278, + "유": 26279, + "ɖ": 26280, + "ɯ": 26281, + "˧": 26282, + "բ": 26283, + "ு": 26284, + "ಂ": 26285, + "ಕ": 26286, + "ธ": 26287, + "ད": 26288, + "ဘ": 26289, + "ẓ": 26290, + "Ἰ": 26291, + "⭐": 26292, + "信": 26293, + "元": 26294, + "六": 26295, + "制": 26296, + "劉": 26297, + "口": 26298, + "市": 26299, + "師": 26300, + "期": 26301, + "村": 26302, + "条": 26303, + "術": 26304, + "進": 26305, + "보": 26306, + "여": 26307, + "ќ": 26308, + "Ս": 26309, + "ে": 26310, + "த": 26311, + "ത": 26312, + "ဖ": 26313, + "ဗ": 26314, + "დ": 26315, + "ἴ": 26316, + "ὅ": 26317, + "⇖": 26318, + "何": 26319, + "守": 26320, + "巨": 26321, + "無": 26322, + "片": 26323, + "电": 26324, + "程": 26325, + "米": 26326, + "网": 26327, + "雪": 26328, + "黄": 26329, + "나": 26330, + "신": 26331, + "정": 26332, + "ˆ": 26333, + "̂": 26334, + "Ա": 26335, + "দ": 26336, + "ు": 26337, + "၁": 26338, + "⊂": 26339, + "⊥": 26340, + "官": 26341, + "寺": 26342, + "引": 26343, + "恋": 26344, + "或": 26345, + "接": 26346, + "撃": 26347, + "相": 26348, + "良": 26349, + "茶": 26350, + "进": 26351, + "除": 26352, + "대": 26353, + "Ė": 26354, + "ף": 26355, + "फ": 26356, + "ಸ": 26357, + "ി": 26358, + "ื": 26359, + "ნ": 26360, + "ព": 26361, + "与": 26362, + "井": 26363, + "克": 26364, + "态": 26365, + "祭": 26366, + "經": 26367, + "線": 26368, + "老": 26369, + "色": 26370, + "陈": 26371, + "限": 26372, + "马": 26373, + "鬼": 26374, + "은": 26375, + "ǃ": 26376, + "̌": 26377, + "գ": 26378, + "հ": 26379, + "ץ": 26380, + "প": 26381, + "ದ": 26382, + "ภ": 26383, + "ᅠ": 26384, + "ὀ": 26385, + "₦": 26386, + "⇌": 26387, + "⇑": 26388, + "ぐ": 26389, + "ず": 26390, + "ゃ": 26391, + "丸": 26392, + "件": 26393, + "僕": 26394, + "关": 26395, + "初": 26396, + "園": 26397, + "夜": 26398, + "夢": 26399, + "學": 26400, + "宗": 26401, + "宝": 26402, + "次": 26403, + "比": 26404, + "氏": 26405, + "永": 26406, + "球": 26407, + "知": 26408, + "紅": 26409, + "義": 26410, + "通": 26411, + "隊": 26412, + "내": 26413, + "미": 26414, + "서": 26415, + "Ï": 26416, + "պ": 26417, + "ٰ": 26418, + "ക": 26419, + "ณ": 26420, + "ถ": 26421, + "ษ": 26422, + "ὄ": 26423, + "ふ": 26424, + "ゆ": 26425, + "ゲ": 26426, + "ホ": 26427, + "伊": 26428, + "列": 26429, + "华": 26430, + "听": 26431, + "想": 26432, + "果": 26433, + "氣": 26434, + "活": 26435, + "点": 26436, + "现": 26437, + "研": 26438, + "章": 26439, + "系": 26440, + "草": 26441, + "주": 26442, + "Ě": 26443, + "˥": 26444, + "ظ": 26445, + "घ": 26446, + "ன": 26447, + "ქ": 26448, + "ṉ": 26449, + "Ῥ": 26450, + "ユ": 26451, + "东": 26452, + "介": 26453, + "令": 26454, + "包": 26455, + "变": 26456, + "品": 26457, + "宮": 26458, + "建": 26459, + "得": 26460, + "战": 26461, + "更": 26462, + "校": 26463, + "玉": 26464, + "由": 26465, + "眼": 26466, + "竞": 26467, + "艦": 26468, + "華": 26469, + "量": 26470, + "陽": 26471, + "국": 26472, + "그": 26473, + "성": 26474, + "ʎ": 26475, + "Ξ": 26476, + "۬": 26477, + "ौ": 26478, + "ச": 26479, + "ర": 26480, + "ུ": 26481, + "გ": 26482, + "კ": 26483, + "ῥ": 26484, + "『": 26485, + "』": 26486, + "久": 26487, + "义": 26488, + "入": 26489, + "及": 26490, + "发": 26491, + "受": 26492, + "号": 26493, + "容": 26494, + "应": 26495, + "情": 26496, + "支": 26497, + "气": 26498, + "気": 26499, + "河": 26500, + "治": 26501, + "福": 26502, + "秋": 26503, + "精": 26504, + "装": 26505, + "補": 26506, + "雲": 26507, + "남": 26508, + "Ù": 26509, + "ď": 26510, + "̲": 26511, + "դ": 26512, + "چ": 26513, + "ো": 26514, + "ാ": 26515, + "โ": 26516, + "็": 26517, + "༤": 26518, + "ང": 26519, + "ḵ": 26520, + "ề": 26521, + "❄": 26522, + "书": 26523, + "判": 26524, + "匹": 26525, + "因": 26526, + "堂": 26527, + "很": 26528, + "景": 26529, + "泉": 26530, + "立": 26531, + "考": 26532, + "选": 26533, + "问": 26534, + "非": 26535, + "녀": 26536, + "도": 26537, + "를": 26538, + "ȟ": 26539, + "І": 26540, + "ֿ": 26541, + "छ": 26542, + "ಪ": 26543, + "ಮ": 26544, + "ന": 26545, + "ര": 26546, + "ტ": 26547, + "ể": 26548, + "ỏ": 26549, + "ἁ": 26550, + "ἶ": 26551, + "ὕ": 26552, + "∘": 26553, + "∩": 26554, + "ぎ": 26555, + "ご": 26556, + "七": 26557, + "九": 26558, + "具": 26559, + "利": 26560, + "劇": 26561, + "商": 26562, + "尾": 26563, + "微": 26564, + "提": 26565, + "旗": 26566, + "杜": 26567, + "汉": 26568, + "沖": 26569, + "然": 26570, + "科": 26571, + "竹": 26572, + "街": 26573, + "赤": 26574, + "間": 26575, + "阿": 26576, + "간": 26577, + "구": 26578, + "루": 26579, + "문": 26580, + "식": 26581, + "연": 26582, + "요": 26583, + "화": 26584, + "ǣ": 26585, + "ʝ": 26586, + "Ά": 26587, + "Ц": 26588, + "շ": 26589, + "֫": 26590, + "ণ": 26591, + "ী": 26592, + "ತ": 26593, + "യ": 26594, + "ํ": 26595, + "མ": 26596, + "္": 26597, + "თ": 26598, + "ុ": 26599, + "ῷ": 26600, + "✵": 26601, + "万": 26602, + "于": 26603, + "仙": 26604, + "喜": 26605, + "处": 26606, + "始": 26607, + "將": 26608, + "御": 26609, + "拳": 26610, + "攻": 26611, + "旋": 26612, + "早": 26613, + "會": 26614, + "松": 26615, + "段": 26616, + "注": 26617, + "為": 26618, + "町": 26619, + "番": 26620, + "紀": 26621, + "羅": 26622, + "羽": 26623, + "肉": 26624, + "育": 26625, + "藤": 26626, + "话": 26627, + "起": 26628, + "逆": 26629, + "间": 26630, + "项": 26631, + "들": 26632, + "🐾": 26633, + "ķ": 26634, + "Ū": 26635, + "̨": 26636, + "њ": 26637, + "Ԁ": 26638, + "ٍ": 26639, + "ढ": 26640, + "ப": 26641, + "წ": 26642, + "ក": 26643, + "ὼ": 26644, + "❤": 26645, + "⦁": 26646, + "修": 26647, + "刘": 26648, + "劳": 26649, + "告": 26650, + "塊": 26651, + "夏": 26652, + "左": 26653, + "府": 26654, + "彼": 26655, + "德": 26656, + "忠": 26657, + "望": 26658, + "死": 26659, + "礮": 26660, + "究": 26661, + "答": 26662, + "節": 26663, + "经": 26664, + "节": 26665, + "衛": 26666, + "被": 26667, + "計": 26668, + "貴": 26669, + "陳": 26670, + "零": 26671, + "雷": 26672, + "館": 26673, + "답": 26674, + "동": 26675, + "드": 26676, + "린": 26677, + "부": 26678, + "소": 26679, + "양": 26680, + "터": 26681, + "투": 26682, + "Ħ": 26683, + "ʈ": 26684, + "͘": 26685, + "Ζ": 26686, + "Ж": 26687, + "Կ": 26688, + "Մ": 26689, + "խ": 26690, + "ׂ": 26691, + "ܐ": 26692, + "ठ": 26693, + "ਾ": 26694, + "ా": 26695, + "།": 26696, + "ზ": 26697, + "ჯ": 26698, + "₫": 26699, + "▢": 26700, + "ね": 26701, + "む": 26702, + "や": 26703, + "今": 26704, + "佛": 26705, + "值": 26706, + "充": 26707, + "区": 26708, + "博": 26709, + "取": 26710, + "幻": 26711, + "易": 26712, + "昭": 26713, + "曲": 26714, + "朱": 26715, + "殻": 26716, + "江": 26717, + "洪": 26718, + "满": 26719, + "狗": 26720, + "种": 26721, + "菜": 26722, + "象": 26723, + "连": 26724, + "述": 26725, + "遁": 26726, + "雄": 26727, + "韓": 26728, + "오": 26729, + "우": 26730, + "을": 26731, + "ɳ": 26732, + "̽": 26733, + "զ": 26734, + "ռ": 26735, + "ֽ": 26736, + "ञ": 26737, + "ং": 26738, + "শ": 26739, + "வ": 26740, + "්": 26741, + "ྒ": 26742, + "ྱ": 26743, + "၂": 26744, + "ც": 26745, + "េ": 26746, + "ះ": 26747, + "Ἑ": 26748, + "ἤ": 26749, + "ἵ": 26750, + "ὡ": 26751, + "↔": 26752, + "♊": 26753, + "♮": 26754, + "ⴻ": 26755, + "げ": 26756, + "ゥ": 26757, + "保": 26758, + "像": 26759, + "军": 26760, + "双": 26761, + "完": 26762, + "将": 26763, + "就": 26764, + "屋": 26765, + "并": 26766, + "开": 26767, + "指": 26768, + "板": 26769, + "标": 26770, + "洋": 26771, + "源": 26772, + "狐": 26773, + "素": 26774, + "紫": 26775, + "般": 26776, + "船": 26777, + "螺": 26778, + "角": 26779, + "读": 26780, + "走": 26781, + "輪": 26782, + "達": 26783, + "遠": 26784, + "關": 26785, + "頭": 26786, + "왕": 26787, + "타": 26788, + "트": 26789, + "¤": 26790, + "̐": 26791, + "љ": 26792, + "জ": 26793, + "়": 26794, + "ய": 26795, + "ள": 26796, + "ಡ": 26797, + "ಳ": 26798, + "ใ": 26799, + "ན": 26800, + "བ": 26801, + "၊": 26802, + "჻": 26803, + "ី": 26804, + "ẫ": 26805, + "♒": 26806, + "✗": 26807, + "❖": 26808, + "ⵜ": 26809, + "べ": 26810, + "ろ": 26811, + "ヨ": 26812, + "么": 26813, + "典": 26814, + "勝": 26815, + "厘": 26816, + "参": 26817, + "反": 26818, + "复": 26819, + "孩": 26820, + "导": 26821, + "当": 26822, + "志": 26823, + "息": 26824, + "技": 26825, + "料": 26826, + "旦": 26827, + "楽": 26828, + "此": 26829, + "沙": 26830, + "波": 26831, + "深": 26832, + "照": 26833, + "状": 26834, + "玄": 26835, + "画": 26836, + "直": 26837, + "縄": 26838, + "興": 26839, + "論": 26840, + "边": 26841, + "造": 26842, + "選": 26843, + "邪": 26844, + "骨": 26845, + "鳥": 26846, + "계": 26847, + "바": 26848, + "백": 26849, + "와": 26850, + "운": 26851, + "조": 26852, + "진": 26853, + "차": 26854, + "︎": 26855, + "ɢ": 26856, + "ɵ": 26857, + "̀": 26858, + "ҳ": 26859, + "Գ": 26860, + "ಟ": 26861, + "ེ": 26862, + "ྲ": 26863, + "၀": 26864, + "ប": 26865, + "ḩ": 26866, + "ẽ": 26867, + "ῳ": 26868, + "░": 26869, + "♋": 26870, + "♑": 26871, + "⚫": 26872, + "✳": 26873, + "➤": 26874, + "业": 26875, + "丹": 26876, + "但": 26877, + "位": 26878, + "住": 26879, + "例": 26880, + "內": 26881, + "友": 26882, + "向": 26883, + "団": 26884, + "基": 26885, + "境": 26886, + "增": 26887, + "夫": 26888, + "失": 26889, + "头": 26890, + "姉": 26891, + "季": 26892, + "客": 26893, + "尉": 26894, + "己": 26895, + "序": 26896, + "影": 26897, + "念": 26898, + "打": 26899, + "拉": 26900, + "母": 26901, + "牙": 26902, + "牛": 26903, + "独": 26904, + "現": 26905, + "琉": 26906, + "看": 26907, + "着": 26908, + "統": 26909, + "翼": 26910, + "脱": 26911, + "與": 26912, + "航": 26913, + "血": 26914, + "諸": 26915, + "身": 26916, + "連": 26917, + "鉄": 26918, + "게": 26919, + "공": 26920, + "꽃": 26921, + "니": 26922, + "모": 26923, + "선": 26924, + "수": 26925, + "야": 26926, + "영": 26927, + "원": 26928, + "파": 26929, + "ļ": 26930, + "ɓ": 26931, + "ɥ": 26932, + "ɸ": 26933, + "ʍ": 26934, + "ʏ": 26935, + "ʹ": 26936, + "̋": 26937, + "є": 26938, + "ծ": 26939, + "ջ": 26940, + "֖": 26941, + "֥": 26942, + "ٌ": 26943, + "ں": 26944, + "ई": 26945, + "ओ": 26946, + "গ": 26947, + "ந": 26948, + "ல": 26949, + "గ": 26950, + "ಚ": 26951, + "െ": 26952, + "ဟ": 26953, + "ძ": 26954, + "፡": 26955, + "ោ": 26956, + "ṟ": 26957, + "ằ": 26958, + "⇳": 26959, + "∖": 26960, + "∶": 26961, + "≢": 26962, + "☐": 26963, + "ⵏ": 26964, + "《": 26965, + "ヘ": 26966, + "些": 26967, + "佐": 26968, + "佳": 26969, + "供": 26970, + "倉": 26971, + "兵": 26972, + "剛": 26973, + "右": 26974, + "吉": 26975, + "命": 26976, + "善": 26977, + "坂": 26978, + "居": 26979, + "戸": 26980, + "房": 26981, + "持": 26982, + "掃": 26983, + "數": 26984, + "斯": 26985, + "样": 26986, + "條": 26987, + "様": 26988, + "毛": 26989, + "派": 26990, + "熊": 26991, + "畫": 26992, + "皮": 26993, + "約": 26994, + "线": 26995, + "给": 26996, + "胡": 26997, + "著": 26998, + "蔵": 26999, + "裁": 27000, + "話": 27001, + "请": 27002, + "超": 27003, + "霊": 27004, + "靈": 27005, + "首": 27006, + "黒": 27007, + "거": 27008, + "만": 27009, + "맨": 27010, + "산": 27011, + "상": 27012, + "세": 27013, + "호": 27014, + "Ë": 27015, + "ĝ": 27016, + "Ź": 27017, + "ǜ": 27018, + "ǝ": 27019, + "ǵ": 27020, + "ɤ": 27021, + "ˁ": 27022, + "̇": 27023, + "Й": 27024, + "ը": 27025, + "־": 27026, + "অ": 27027, + "ভ": 27028, + "হ": 27029, + "ച": 27030, + "ฟ": 27031, + "༡": 27032, + "ဂ": 27033, + "ფ": 27034, + "់": 27035, + "ṁ": 27036, + "ẹ": 27037, + "ῇ": 27038, + "∃": 27039, + "⊙": 27040, + "♌": 27041, + "✨": 27042, + "【": 27043, + "】": 27044, + "争": 27045, + "亦": 27046, + "产": 27047, + "傳": 27048, + "價": 27049, + "净": 27050, + "刻": 27051, + "只": 27052, + "吳": 27053, + "報": 27054, + "声": 27055, + "宋": 27056, + "実": 27057, + "寶": 27058, + "局": 27059, + "強": 27060, + "彩": 27061, + "律": 27062, + "未": 27063, + "模": 27064, + "歷": 27065, + "殺": 27066, + "津": 27067, + "濟": 27068, + "瀬": 27069, + "男": 27070, + "略": 27071, + "短": 27072, + "秀": 27073, + "積": 27074, + "笑": 27075, + "絵": 27076, + "群": 27077, + "薩": 27078, + "计": 27079, + "说": 27080, + "賓": 27081, + "资": 27082, + "越": 27083, + "送": 27084, + "郡": 27085, + "黃": 27086, + "노": 27087, + "더": 27088, + "디": 27089, + "말": 27090, + "무": 27091, + "천": 27092, + "청": 27093, + "초": 27094, + "﴾": 27095, + "﴿": 27096, + "Û": 27097, + "Ľ": 27098, + "ȳ": 27099, + "ɮ": 27100, + "ʑ": 27101, + "̅": 27102, + "̰": 27103, + "̱": 27104, + "ϊ": 27105, + "ө": 27106, + "֤": 27107, + "ট": 27108, + "ষ": 27109, + "ਲ": 27110, + "మ": 27111, + "ೈ": 27112, + "ം": 27113, + "ි": 27114, + "ญ": 27115, + "ผ": 27116, + "฿": 27117, + "འ": 27118, + "ལ": 27119, + "ဲ": 27120, + "၆": 27121, + "၇": 27122, + "ᛋ": 27123, + "ង": 27124, + "ទ": 27125, + "ḑ": 27126, + "Ḳ": 27127, + "ἅ": 27128, + "∇": 27129, + "┐": 27130, + "└": 27131, + "▸": 27132, + "☺": 27133, + "♂": 27134, + "✎": 27135, + "ⴷ": 27136, + "》": 27137, + "乙": 27138, + "云": 27139, + "來": 27140, + "侯": 27141, + "切": 27142, + "别": 27143, + "刺": 27144, + "升": 27145, + "单": 27146, + "历": 27147, + "各": 27148, + "味": 27149, + "呼": 27150, + "哈": 27151, + "图": 27152, + "她": 27153, + "姫": 27154, + "婷": 27155, + "孫": 27156, + "它": 27157, + "已": 27158, + "干": 27159, + "庭": 27160, + "康": 27161, + "强": 27162, + "怪": 27163, + "昌": 27164, + "曼": 27165, + "机": 27166, + "束": 27167, + "析": 27168, + "没": 27169, + "省": 27170, + "站": 27171, + "红": 27172, + "耕": 27173, + "苗": 27174, + "若": 27175, + "萬": 27176, + "藏": 27177, + "议": 27178, + "试": 27179, + "课": 27180, + "資": 27181, + "足": 27182, + "跡": 27183, + "近": 27184, + "運": 27185, + "錬": 27186, + "鐘": 27187, + "错": 27188, + "開": 27189, + "阳": 27190, + "降": 27191, + "陵": 27192, + "食": 27193, + "體": 27194, + "너": 27195, + "람": 27196, + "메": 27197, + "명": 27198, + "불": 27199, + "입": 27200, + "장": 27201, + "프": 27202, + "학": 27203, + "향": 27204, + "": 27205, + "👉": 27206, + "Ř": 27207, + "ǧ": 27208, + "ɴ": 27209, + "ʐ": 27210, + "ˑ": 27211, + "Ь": 27212, + "ү": 27213, + "չ": 27214, + "ँ": 27215, + "ङ": 27216, + "খ": 27217, + "ধ": 27218, + "ட": 27219, + "ை": 27220, + "ం": 27221, + "వ": 27222, + "ಹ": 27223, + "പ": 27224, + "ു": 27225, + "၉": 27226, + "ბ": 27227, + "ᛁ": 27228, + "ហ": 27229, + "ិ": 27230, + "ḏ": 27231, + "ḫ": 27232, + "ḱ": 27233, + "ἑ": 27234, + "ἕ": 27235, + "Ἠ": 27236, + "※": 27237, + "‿": 27238, + "↗": 27239, + "∀": 27240, + "∫": 27241, + "ⵉ": 27242, + "ⵍ": 27243, + "ぼ": 27244, + "交": 27245, + "伯": 27246, + "再": 27247, + "卒": 27248, + "卡": 27249, + "吸": 27250, + "唐": 27251, + "器": 27252, + "填": 27253, + "壤": 27254, + "奇": 27255, + "奥": 27256, + "孟": 27257, + "宾": 27258, + "密": 27259, + "富": 27260, + "崎": 27261, + "师": 27262, + "店": 27263, + "弘": 27264, + "征": 27265, + "必": 27266, + "悲": 27267, + "感": 27268, + "承": 27269, + "把": 27270, + "投": 27271, + "按": 27272, + "推": 27273, + "斗": 27274, + "曹": 27275, + "服": 27276, + "枚": 27277, + "株": 27278, + "根": 27279, + "桃": 27280, + "業": 27281, + "歩": 27282, + "洞": 27283, + "湖": 27284, + "灯": 27285, + "灼": 27286, + "爱": 27287, + "猫": 27288, + "珊": 27289, + "瑚": 27290, + "瑞": 27291, + "瓦": 27292, + "甲": 27293, + "祖": 27294, + "紋": 27295, + "组": 27296, + "细": 27297, + "置": 27298, + "莊": 27299, + "薇": 27300, + "蛍": 27301, + "视": 27302, + "設": 27303, + "谓": 27304, + "豊": 27305, + "载": 27306, + "运": 27307, + "這": 27308, + "长": 27309, + "関": 27310, + "门": 27311, + "阅": 27312, + "随": 27313, + "馆": 27314, + "魚": 27315, + "龙": 27316, + "단": 27317, + "생": 27318, + "애": 27319, + "재": 27320, + "치": 27321, + "💭": 27322, + "📌": 27323, + "ǰ": 27324, + "͜": 27325, + "ғ": 27326, + "ӧ": 27327, + "օ": 27328, + "ױ": 27329, + "׳": 27330, + "আ": 27331, + "ড": 27332, + "ਰ": 27333, + "ਸ": 27334, + "ਹ": 27335, + "ಣ": 27336, + "ട": 27337, + "ฐ": 27338, + "ჲ": 27339, + "Ἄ": 27340, + "Ἐ": 27341, + "ῃ": 27342, + "₡": 27343, + "↦": 27344, + "▬": 27345, + "◯": 27346, + "♍": 27347, + "♐": 27348, + "➔": 27349, + "⟦": 27350, + "⟧": 27351, + "⠂": 27352, + "ⵎ": 27353, + "び": 27354, + "ほ": 27355, + "丑": 27356, + "亚": 27357, + "付": 27358, + "做": 27359, + "刀": 27360, + "別": 27361, + "圖": 27362, + "场": 27363, + "域": 27364, + "夕": 27365, + "奈": 27366, + "室": 27367, + "尼": 27368, + "差": 27369, + "布": 27370, + "座": 27371, + "廷": 27372, + "憲": 27373, + "戰": 27374, + "据": 27375, + "整": 27376, + "无": 27377, + "智": 27378, + "案": 27379, + "楚": 27380, + "求": 27381, + "洲": 27382, + "浅": 27383, + "游": 27384, + "溜": 27385, + "演": 27386, + "狼": 27387, + "異": 27388, + "當": 27389, + "疑": 27390, + "発": 27391, + "登": 27392, + "種": 27393, + "管": 27394, + "篇": 27395, + "粗": 27396, + "網": 27397, + "结": 27398, + "罗": 27399, + "臣": 27400, + "裏": 27401, + "規": 27402, + "覚": 27403, + "評": 27404, + "许": 27405, + "该": 27406, + "谁": 27407, + "豪": 27408, + "趙": 27409, + "达": 27410, + "過": 27411, + "銆": 27412, + "錄": 27413, + "震": 27414, + "飛": 27415, + "魄": 27416, + "鳳": 27417, + "ꜣ": 27418, + "과": 27419, + "김": 27420, + "러": 27421, + "막": 27422, + "맛": 27423, + "맞": 27424, + "별": 27425, + "복": 27426, + "브": 27427, + "순": 27428, + "용": 27429, + "있": 27430, + "짓": 27431, + "태": 27432, + "피": 27433, + "황": 27434, + "Ď": 27435, + "Ə": 27436, + "ɻ": 27437, + "ʺ": 27438, + "Ю": 27439, + "ә": 27440, + "է": 27441, + "փ": 27442, + "֔": 27443, + "֙": 27444, + "চ": 27445, + "அ": 27446, + "ழ": 27447, + "త": 27448, + "ి": 27449, + "ಷ": 27450, + "വ": 27451, + "ഷ": 27452, + "ྩ": 27453, + "ᚱ": 27454, + "ᛚ": 27455, + "ᛟ": 27456, + "ច": 27457, + "យ": 27458, + "ḡ": 27459, + "ἠ": 27460, + "ὖ": 27461, + "‛": 27462, + "∅": 27463, + "♓": 27464, + "➢": 27465, + "ぶ": 27466, + "仁": 27467, + "仲": 27468, + "健": 27469, + "划": 27470, + "半": 27471, + "叶": 27472, + "吴": 27473, + "哀": 27474, + "哥": 27475, + "問": 27476, + "嘉": 27477, + "妹": 27478, + "实": 27479, + "宿": 27480, + "寧": 27481, + "封": 27482, + "尋": 27483, + "展": 27484, + "岳": 27485, + "峰": 27486, + "希": 27487, + "役": 27488, + "徐": 27489, + "徒": 27490, + "從": 27491, + "忍": 27492, + "总": 27493, + "悪": 27494, + "报": 27495, + "授": 27496, + "散": 27497, + "曆": 27498, + "查": 27499, + "梅": 27500, + "森": 27501, + "樂": 27502, + "樹": 27503, + "欢": 27504, + "止": 27505, + "熱": 27506, + "爆": 27507, + "留": 27508, + "県": 27509, + "礼": 27510, + "秘": 27511, + "突": 27512, + "箇": 27513, + "算": 27514, + "类": 27515, + "継": 27516, + "習": 27517, + "翔": 27518, + "耳": 27519, + "聲": 27520, + "至": 27521, + "芝": 27522, + "菌": 27523, + "蘭": 27524, + "虎": 27525, + "裡": 27526, + "观": 27527, + "譚": 27528, + "识": 27529, + "賞": 27530, + "质": 27531, + "農": 27532, + "追": 27533, + "邊": 27534, + "配": 27535, + "釋": 27536, + "防": 27537, + "隻": 27538, + "鸡": 27539, + "금": 27540, + "닥": 27541, + "당": 27542, + "두": 27543, + "설": 27544, + "열": 27545, + "출": 27546, + "키": 27547, + "후": 27548, + "🌊": 27549, + "👇": 27550, + "’": 27551, + "ċ": 27552, + "˔": 27553, + "˦": 27554, + "˨": 27555, + "̚": 27556, + "̣": 27557, + "Ы": 27558, + "ң": 27559, + "ұ": 27560, + "ճ": 27561, + "֑": 27562, + "װ": 27563, + "ؤ": 27564, + "ۚ": 27565, + "ܪ": 27566, + "ऽ": 27567, + "ঃ": 27568, + "উ": 27569, + "ਅ": 27570, + "ਨ": 27571, + "ங": 27572, + "ண": 27573, + "క": 27574, + "ೊ": 27575, + "ോ": 27576, + "න": 27577, + "ල": 27578, + "ව": 27579, + "ဇ": 27580, + "ါ": 27581, + "ყ": 27582, + "ჱ": 27583, + "አ": 27584, + "គ": 27585, + "ណ": 27586, + "Ṛ": 27587, + "Ẓ": 27588, + "ẻ": 27589, + "Ἡ": 27590, + "ὔ": 27591, + "ᾳ": 27592, + "↪": 27593, + "∝": 27594, + "│": 27595, + "◊": 27596, + "♩": 27597, + "⩽": 27598, + "ⵓ": 27599, + "ゅ": 27600, + "丁": 27601, + "两": 27602, + "严": 27603, + "乱": 27604, + "价": 27605, + "任": 27606, + "侗": 27607, + "依": 27608, + "侠": 27609, + "候": 27610, + "假": 27611, + "催": 27612, + "儿": 27613, + "円": 27614, + "冒": 27615, + "况": 27616, + "则": 27617, + "副": 27618, + "勇": 27619, + "勐": 27620, + "務": 27621, + "區": 27622, + "即": 27623, + "县": 27624, + "叔": 27625, + "含": 27626, + "図": 27627, + "坡": 27628, + "塔": 27629, + "壽": 27630, + "妙": 27631, + "委": 27632, + "存": 27633, + "宇": 27634, + "宫": 27635, + "寔": 27636, + "尚": 27637, + "层": 27638, + "岛": 27639, + "巫": 27640, + "幕": 27641, + "弥": 27642, + "恩": 27643, + "悠": 27644, + "應": 27645, + "扶": 27646, + "探": 27647, + "故": 27648, + "斎": 27649, + "斬": 27650, + "於": 27651, + "旅": 27652, + "旭": 27653, + "札": 27654, + "术": 27655, + "格": 27656, + "桜": 27657, + "植": 27658, + "極": 27659, + "榮": 27660, + "步": 27661, + "氷": 27662, + "沢": 27663, + "湾": 27664, + "牌": 27665, + "率": 27666, + "痛": 27667, + "祈": 27668, + "禁": 27669, + "秦": 27670, + "竜": 27671, + "简": 27672, + "終": 27673, + "組": 27674, + "結": 27675, + "縣": 27676, + "绍": 27677, + "络": 27678, + "统": 27679, + "编": 27680, + "罪": 27681, + "肖": 27682, + "舞": 27683, + "蒼": 27684, + "薔": 27685, + "藍": 27686, + "衣": 27687, + "裝": 27688, + "迷": 27689, + "銃": 27690, + "闇": 27691, + "隆": 27692, + "電": 27693, + "鳩": 27694, + "감": 27695, + "강": 27696, + "르": 27697, + "매": 27698, + "방": 27699, + "베": 27700, + "삼": 27701, + "심": 27702, + "안": 27703, + "예": 27704, + "온": 27705, + "위": 27706, + "율": 27707, + "줄": 27708, + "즈": 27709, + "포": 27710, + "회": 27711, + "🇸": 27712, + "🇺": 27713, + "😀": 27714, + "😊": 27715, + "”": 27716, + "Ă": 27717, + "į": 27718, + "ŗ": 27719, + "Ʌ": 27720, + "ɩ": 27721, + "ɽ": 27722, + "ʉ": 27723, + "͍": 27724, + "Έ": 27725, + "ΐ": 27726, + "ѣ": 27727, + "ӕ": 27728, + "Յ": 27729, + "Տ": 27730, + "ձ": 27731, + "ֻ": 27732, + "ٹ": 27733, + "ڠ": 27734, + "ۖ": 27735, + "ܠ": 27736, + "এ": 27737, + "ঘ": 27738, + "ਦ": 27739, + "ਿ": 27740, + "ੁ": 27741, + "ஸ": 27742, + "ோ": 27743, + "ప": 27744, + "ల": 27745, + "ಧ": 27746, + "ೀ": 27747, + "ೇ": 27748, + "ഭ": 27749, + "ර": 27750, + "ස": 27751, + "ා": 27752, + "ฉ": 27753, + "ฝ": 27754, + "ึ": 27755, + "ဝ": 27756, + "ჭ": 27757, + "ለ": 27758, + "ር": 27759, + "የ": 27760, + "ជ": 27761, + "ដ": 27762, + "វ": 27763, + "ᴜ": 27764, + "ḗ": 27765, + "ṳ": 27766, + "ặ": 27767, + "Ọ": 27768, + "Ἕ": 27769, + "‧": 27770, + "∊": 27771, + "∎": 27772, + "⋆": 27773, + "⋯": 27774, + "⌘": 27775, + "◆": 27776, + "♉": 27777, + "♏": 27778, + "♪": 27779, + "✱": 27780, + "ⵔ": 27781, + "ⵙ": 27782, + "〔": 27783, + "〕": 27784, + "ぅ": 27785, + "ざ": 27786, + "丞": 27787, + "両": 27788, + "乃": 27789, + "乾": 27790, + "互": 27791, + "什": 27792, + "仕": 27793, + "传": 27794, + "便": 27795, + "備": 27796, + "傭": 27797, + "傷": 27798, + "免": 27799, + "冷": 27800, + "削": 27801, + "午": 27802, + "员": 27803, + "固": 27804, + "坤": 27805, + "変": 27806, + "够": 27807, + "奉": 27808, + "宅": 27809, + "寿": 27810, + "尊": 27811, + "對": 27812, + "岡": 27813, + "岩": 27814, + "巻": 27815, + "巾": 27816, + "广": 27817, + "彦": 27818, + "忘": 27819, + "快": 27820, + "恆": 27821, + "態": 27822, + "憶": 27823, + "才": 27824, + "掛": 27825, + "揺": 27826, + "摩": 27827, + "敏": 27828, + "映": 27829, + "曜": 27830, + "材": 27831, + "枝": 27832, + "某": 27833, + "椿": 27834, + "楼": 27835, + "標": 27836, + "橋": 27837, + "殊": 27838, + "池": 27839, + "浦": 27840, + "浮": 27841, + "消": 27842, + "渡": 27843, + "溪": 27844, + "澤": 27845, + "炎": 27846, + "獥": 27847, + "玩": 27848, + "环": 27849, + "甘": 27850, + "甫": 27851, + "病": 27852, + "砲": 27853, + "私": 27854, + "称": 27855, + "索": 27856, + "細": 27857, + "緑": 27858, + "翁": 27859, + "联": 27860, + "聞": 27861, + "芳": 27862, + "菩": 27863, + "藩": 27864, + "蛇": 27865, + "視": 27866, + "觀": 27867, + "詞": 27868, + "談": 27869, + "譜": 27870, + "讀": 27871, + "變": 27872, + "记": 27873, + "论": 27874, + "误": 27875, + "豆": 27876, + "费": 27877, + "輝": 27878, + "转": 27879, + "遊": 27880, + "酒": 27881, + "采": 27882, + "钱": 27883, + "铁": 27884, + "闘": 27885, + "険": 27886, + "雀": 27887, + "雅": 27888, + "雞": 27889, + "需": 27890, + "霹": 27891, + "項": 27892, + "顔": 27893, + "類": 27894, + "顯": 27895, + "风": 27896, + "飯": 27897, + "騒": 27898, + "齋": 27899, + "달": 27900, + "독": 27901, + "돌": 27902, + "면": 27903, + "번": 27904, + "법": 27905, + "속": 27906, + "씨": 27907, + "으": 27908, + "음": 27909, + "커": 27910, + "크": 27911, + "토": 27912, + "푸": 27913, + "품": 27914, + "혼": 27915, + "🇪": 27916, + "🇷": 27917, + "🙁": 27918, + "–": 27919, + "": 27920, + "Ġ": 27921, + "ŝ": 27922, + "Ǝ": 27923, + "ɗ": 27924, + "ɘ": 27925, + "ɧ": 27926, + "ʇ": 27927, + "ʘ": 27928, + "ʟ": 27929, + "˞": 27930, + "̔": 27931, + "̤": 27932, + "̺": 27933, + "Ъ": 27934, + "ђ": 27935, + "ґ": 27936, + "ٲ": 27937, + "ڈ": 27938, + "ڑ": 27939, + "ژ": 27940, + "ڪ": 27941, + "ܘ": 27942, + "ܝ": 27943, + "ॉ": 27944, + "ঽ": 27945, + "ਤ": 27946, + "ੇ": 27947, + "્": 27948, + "ீ": 27949, + "ூ": 27950, + "ద": 27951, + "న": 27952, + "స": 27953, + "ಬ": 27954, + "ೋ": 27955, + "ദ": 27956, + "മ": 27957, + "സ": 27958, + "േ": 27959, + "ฑ": 27960, + "ๆ": 27961, + "ཆ": 27962, + "པ": 27963, + "ཚ": 27964, + "ཡ": 27965, + "პ": 27966, + "ჰ": 27967, + "ჳ": 27968, + "ዘ": 27969, + "ᛃ": 27970, + "ភ": 27971, + "ល": 27972, + "᷉": 27973, + "ḿ": 27974, + "Ṯ": 27975, + "ỵ": 27976, + "ἥ": 27977, + "ἦ": 27978, + "ἷ": 27979, + "Ἱ": 27980, + "Ὄ": 27981, + "ῴ": 27982, + "⁊": 27983, + "₾": 27984, + "∧": 27985, + "∪": 27986, + "≪": 27987, + "⌛": 27988, + "⎪": 27989, + "○": 27990, + "♎": 27991, + "♫": 27992, + "⠀": 27993, + "ⴽ": 27994, + "々": 27995, + "ヌ": 27996, + "企": 27997, + "似": 27998, + "余": 27999, + "併": 28000, + "冬": 28001, + "几": 28002, + "則": 28003, + "剧": 28004, + "創": 28005, + "劃": 28006, + "功": 28007, + "务": 28008, + "助": 28009, + "卷": 28010, + "咲": 28011, + "唄": 28012, + "執": 28013, + "堆": 28014, + "墓": 28015, + "壁": 28016, + "姚": 28017, + "寄": 28018, + "實": 28019, + "寨": 28020, + "寻": 28021, + "対": 28022, + "尤": 28023, + "属": 28024, + "庄": 28025, + "延": 28026, + "廻": 28027, + "录": 28028, + "彭": 28029, + "待": 28030, + "怎": 28031, + "怒": 28032, + "恐": 28033, + "惑": 28034, + "懷": 28035, + "括": 28036, + "掌": 28037, + "排": 28038, + "控": 28039, + "摸": 28040, + "施": 28041, + "显": 28042, + "普": 28043, + "晴": 28044, + "曾": 28045, + "构": 28046, + "桑": 28047, + "検": 28048, + "残": 28049, + "氾": 28050, + "沈": 28051, + "温": 28052, + "測": 28053, + "滿": 28054, + "烏": 28055, + "牧": 28056, + "狀": 28057, + "狂": 28058, + "珠": 28059, + "疊": 28060, + "發": 28061, + "礁": 28062, + "祝": 28063, + "祥": 28064, + "禮": 28065, + "禹": 28066, + "秒": 28067, + "稲": 28068, + "端": 28069, + "籠": 28070, + "约": 28071, + "级": 28072, + "纳": 28073, + "翻": 28074, + "胃": 28075, + "脚": 28076, + "膺": 28077, + "致": 28078, + "臺": 28079, + "苑": 28080, + "荷": 28081, + "营": 28082, + "落": 28083, + "蓮": 28084, + "蘄": 28085, + "蘇": 28086, + "虹": 28087, + "蝶": 28088, + "裕": 28089, + "許": 28090, + "說": 28091, + "読": 28092, + "調": 28093, + "護": 28094, + "调": 28095, + "質": 28096, + "車": 28097, + "辑": 28098, + "返": 28099, + "适": 28100, + "鈴": 28101, + "銖": 28102, + "鋼": 28103, + "鍵": 28104, + "鎮": 28105, + "鏡": 28106, + "鐵": 28107, + "键": 28108, + "陣": 28109, + "陰": 28110, + "陸": 28111, + "隴": 28112, + "难": 28113, + "雑": 28114, + "霞": 28115, + "革": 28116, + "願": 28117, + "页": 28118, + "饰": 28119, + "騎": 28120, + "鴻": 28121, + "결": 28122, + "광": 28123, + "까": 28124, + "네": 28125, + "년": 28126, + "데": 28127, + "든": 28128, + "래": 28129, + "려": 28130, + "름": 28131, + "박": 28132, + "발": 28133, + "버": 28134, + "션": 28135, + "왜": 28136, + "울": 28137, + "취": 28138, + "코": 28139, + "패": 28140, + "할": 28141, + "합": 28142, + "혹": 28143, + "🔴": 28144, + "🧠": 28145, + "ĉ": 28146, + "Ÿ": 28147, + "ǀ": 28148, + "ǁ": 28149, + "ǚ": 28150, + "ȝ": 28151, + "ȯ": 28152, + "ɭ": 28153, + "ʽ": 28154, + "̬": 28155, + "Ѳ": 28156, + "Ө": 28157, + "Դ": 28158, + "Է": 28159, + "Խ": 28160, + "Պ": 28161, + "Վ": 28162, + "ժ": 28163, + "֣": 28164, + "٣": 28165, + "ە": 28166, + "ܕ": 28167, + "ܬ": 28168, + "२": 28169, + "ਕ": 28170, + "ਵ": 28171, + "ੀ": 28172, + "య": 28173, + "ష": 28174, + "ీ": 28175, + "ಅ": 28176, + "ಥ": 28177, + "ಭ": 28178, + "ಶ": 28179, + "റ": 28180, + "ං": 28181, + "ක": 28182, + "ය": 28183, + "හ": 28184, + "ซ": 28185, + "າ": 28186, + "ཀ": 28187, + "ཁ": 28188, + "၃": 28189, + "၄": 28190, + "შ": 28191, + "ᛘ": 28192, + "ខ": 28193, + "ូ": 28194, + "ែ": 28195, + "ំ": 28196, + "ṓ": 28197, + "ỉ": 28198, + "Ἔ": 28199, + "ἳ": 28200, + "ὃ": 28201, + "Ὁ": 28202, + "ὗ": 28203, + "‖": 28204, + "⁕": 28205, + "∏": 28206, + "▫": 28207, + "✏": 28208, + "❌": 28209, + "❓": 28210, + "➞": 28211, + "➨": 28212, + "⬇": 28213, + "ⵢ": 28214, + "ぃ": 28215, + "ぺ": 28216, + "且": 28217, + "乎": 28218, + "习": 28219, + "亞": 28220, + "亮": 28221, + "伐": 28222, + "优": 28223, + "估": 28224, + "係": 28225, + "俊": 28226, + "側": 28227, + "傅": 28228, + "兰": 28229, + "养": 28230, + "凤": 28231, + "函": 28232, + "刊": 28233, + "剑": 28234, + "剖": 28235, + "勒": 28236, + "卓": 28237, + "協": 28238, + "卦": 28239, + "厂": 28240, + "召": 28241, + "吹": 28242, + "吾": 28243, + "員": 28244, + "哪": 28245, + "售": 28246, + "圓": 28247, + "圣": 28248, + "址": 28249, + "均": 28250, + "孙": 28251, + "宙": 28252, + "尔": 28253, + "届": 28254, + "岁": 28255, + "岸": 28256, + "巳": 28257, + "帆": 28258, + "帳": 28259, + "幸": 28260, + "底": 28261, + "庫": 28262, + "异": 28263, + "弱": 28264, + "弾": 28265, + "彌": 28266, + "徳": 28267, + "恥": 28268, + "悼": 28269, + "惠": 28270, + "愁": 28271, + "戏": 28272, + "找": 28273, + "抽": 28274, + "拍": 28275, + "拭": 28276, + "拱": 28277, + "插": 28278, + "断": 28279, + "晋": 28280, + "晶": 28281, + "暗": 28282, + "末": 28283, + "权": 28284, + "杯": 28285, + "架": 28286, + "染": 28287, + "査": 28288, + "树": 28289, + "梁": 28290, + "椎": 28291, + "概": 28292, + "権": 28293, + "權": 28294, + "歇": 28295, + "歡": 28296, + "毅": 28297, + "涼": 28298, + "淘": 28299, + "淵": 28300, + "湊": 28301, + "準": 28302, + "溫": 28303, + "潜": 28304, + "热": 28305, + "熙": 28306, + "熟": 28307, + "燕": 28308, + "爵": 28309, + "猠": 28310, + "獄": 28311, + "獣": 28312, + "盛": 28313, + "矢": 28314, + "砂": 28315, + "磅": 28316, + "祿": 28317, + "策": 28318, + "粉": 28319, + "納": 28320, + "紹": 28321, + "総": 28322, + "總": 28323, + "繁": 28324, + "織": 28325, + "纸": 28326, + "耿": 28327, + "背": 28328, + "胞": 28329, + "范": 28330, + "莱": 28331, + "获": 28332, + "蒲": 28333, + "蓝": 28334, + "虚": 28335, + "虫": 28336, + "蟠": 28337, + "衡": 28338, + "袁": 28339, + "観": 28340, + "覺": 28341, + "課": 28342, + "謎": 28343, + "講": 28344, + "識": 28345, + "警": 28346, + "让": 28347, + "设": 28348, + "证": 28349, + "诗": 28350, + "貞": 28351, + "費": 28352, + "貼": 28353, + "賀": 28354, + "賢": 28355, + "赵": 28356, + "較": 28357, + "載": 28358, + "輔": 28359, + "輿": 28360, + "较": 28361, + "输": 28362, + "辛": 28363, + "辱": 28364, + "込": 28365, + "迦": 28366, + "遍": 28367, + "還": 28368, + "邮": 28369, + "郷": 28370, + "鈥": 28371, + "银": 28372, + "链": 28373, + "閣": 28374, + "閱": 28375, + "阁": 28376, + "际": 28377, + "陶": 28378, + "階": 28379, + "隐": 28380, + "隠": 28381, + "雜": 28382, + "雨": 28383, + "霧": 28384, + "露": 28385, + "静": 28386, + "題": 28387, + "顾": 28388, + "颜": 28389, + "鶴": 28390, + "鷹": 28391, + "麥": 28392, + "麻": 28393, + "개": 28394, + "경": 28395, + "골": 28396, + "교": 28397, + "굳": 28398, + "날": 28399, + "담": 28400, + "되": 28401, + "란": 28402, + "레": 28403, + "록": 28404, + "림": 28405, + "먹": 28406, + "물": 28407, + "민": 28408, + "반": 28409, + "블": 28410, + "빠": 28411, + "살": 28412, + "샤": 28413, + "샴": 28414, + "슬": 28415, + "습": 28416, + "실": 28417, + "없": 28418, + "역": 28419, + "월": 28420, + "임": 28421, + "저": 28422, + "적": 28423, + "점": 28424, + "좋": 28425, + "중": 28426, + "처": 28427, + "추": 28428, + "친": 28429, + "티": 28430, + "플": 28431, + "필": 28432, + "👍": 28433, + "🔗": 28434, + "🔼": 28435, + "Ĕ": 28436, + "ģ": 28437, + "Ĭ": 28438, + "Ļ": 28439, + "ƕ": 28440, + "ƿ": 28441, + "ɚ": 28442, + "˗": 28443, + "͞": 28444, + "Ί": 28445, + "Ό": 28446, + "џ": 28447, + "Ѣ": 28448, + "ѵ": 28449, + "ҫ": 28450, + "һ": 28451, + "ҽ": 28452, + "ӏ": 28453, + "Ե": 28454, + "Զ": 28455, + "Ն": 28456, + "׃": 28457, + "؛": 28458, + "١": 28459, + "ܗ": 28460, + "ܡ": 28461, + "ܵ": 28462, + "१": 28463, + "३": 28464, + "ই": 28465, + "ঞ": 28466, + "਼": 28467, + "డ": 28468, + "ణ": 28469, + "హ": 28470, + "ె": 28471, + "ే": 28472, + "ಈ": 28473, + "ಜ": 28474, + "ೂ": 28475, + "ങ": 28476, + "ല": 28477, + "ശ": 28478, + "ൂ": 28479, + "ൊ": 28480, + "ම": 28481, + "ු": 28482, + "ນ": 28483, + "ສ": 28484, + "ཐ": 28485, + "ྡ": 28486, + "၈": 28487, + "ჴ": 28488, + "ჵ": 28489, + "ስ": 28490, + "ብ": 28491, + "ን": 28492, + "ደ": 28493, + "ᚦ": 28494, + "ᚴ": 28495, + "ᛆ": 28496, + "ᛠ": 28497, + "ᵿ": 28498, + "ḇ": 28499, + "Ḍ": 28500, + "Ḡ": 28501, + "Ḫ": 28502, + "Ḵ": 28503, + "ṝ": 28504, + "ἂ": 28505, + "ἢ": 28506, + "ᾷ": 28507, + "℣": 28508, + "℥": 28509, + "⇐": 28510, + "━": 28511, + "☞": 28512, + "♈": 28513, + "⚳": 28514, + "✉": 28515, + "✝": 28516, + "✿": 28517, + "❦": 28518, + "❧": 28519, + "➧": 28520, + "➲": 28521, + "ⴳ": 28522, + "ⵣ": 28523, + "づ": 28524, + "ぬ": 28525, + "ヅ": 28526, + "ヲ": 28527, + "丘": 28528, + "丝": 28529, + "並": 28530, + "举": 28531, + "仏": 28532, + "仮": 28533, + "休": 28534, + "众": 28535, + "佈": 28536, + "低": 28537, + "倫": 28538, + "倭": 28539, + "停": 28540, + "偵": 28541, + "傣": 28542, + "僑": 28543, + "儀": 28544, + "優": 28545, + "允": 28546, + "兩": 28547, + "册": 28548, + "冥": 28549, + "冴": 28550, + "処": 28551, + "凪": 28552, + "删": 28553, + "办": 28554, + "勳": 28555, + "勾": 28556, + "医": 28557, + "占": 28558, + "危": 28559, + "卿": 28560, + "厉": 28561, + "厦": 28562, + "參": 28563, + "又": 28564, + "収": 28565, + "吗": 28566, + "呪": 28567, + "响": 28568, + "唱": 28569, + "培": 28570, + "堀": 28571, + "堤": 28572, + "塚": 28573, + "塞": 28574, + "央": 28575, + "奮": 28576, + "妖": 28577, + "孔": 28578, + "孝": 28579, + "宣": 28580, + "尽": 28581, + "屈": 28582, + "崇": 28583, + "巡": 28584, + "带": 28585, + "幽": 28586, + "庙": 28587, + "庚": 28588, + "廣": 28589, + "弓": 28590, + "復": 28591, + "応": 28592, + "急": 28593, + "悟": 28594, + "慈": 28595, + "慘": 28596, + "慰": 28597, + "慶": 28598, + "戚": 28599, + "批": 28600, + "抜": 28601, + "拜": 28602, + "振": 28603, + "换": 28604, + "掉": 28605, + "採": 28606, + "握": 28607, + "擬": 28608, + "收": 28609, + "效": 28610, + "敬": 28611, + "敷": 28612, + "斤": 28613, + "昆": 28614, + "杨": 28615, + "极": 28616, + "柔": 28617, + "柱": 28618, + "柳": 28619, + "楊": 28620, + "楠": 28621, + "槐": 28622, + "横": 28623, + "檻": 28624, + "欲": 28625, + "款": 28626, + "歲": 28627, + "歴": 28628, + "歸": 28629, + "毕": 28630, + "汇": 28631, + "汪": 28632, + "汽": 28633, + "油": 28634, + "泰": 28635, + "测": 28636, + "浩": 28637, + "淒": 28638, + "淡": 28639, + "淨": 28640, + "渚": 28641, + "漏": 28642, + "潘": 28643, + "澄": 28644, + "灣": 28645, + "灰": 28646, + "灵": 28647, + "烈": 28648, + "焼": 28649, + "爲": 28650, + "父": 28651, + "牡": 28652, + "犬": 28653, + "犯": 28654, + "猬": 28655, + "獅": 28656, + "環": 28657, + "甜": 28658, + "申": 28659, + "畜": 28660, + "療": 28661, + "益": 28662, + "监": 28663, + "盒": 28664, + "盟": 28665, + "監": 28666, + "盧": 28667, + "瞳": 28668, + "破": 28669, + "确": 28670, + "磁": 28671, + "票": 28672, + "移": 28673, + "竇": 28674, + "童": 28675, + "竺": 28676, + "笔": 28677, + "筆": 28678, + "箋": 28679, + "範": 28680, + "粵": 28681, + "糎": 28682, + "糖": 28683, + "紙": 28684, + "綺": 28685, + "緋": 28686, + "緒": 28687, + "締": 28688, + "緬": 28689, + "續": 28690, + "纪": 28691, + "纲": 28692, + "维": 28693, + "罰": 28694, + "翠": 28695, + "職": 28696, + "股": 28697, + "腐": 28698, + "臼": 28699, + "舍": 28700, + "艺": 28701, + "荐": 28702, + "荘": 28703, + "药": 28704, + "莉": 28705, + "萨": 28706, + "葛": 28707, + "董": 28708, + "蔡": 28709, + "處": 28710, + "融": 28711, + "衝": 28712, + "补": 28713, + "襲": 28714, + "覓": 28715, + "親": 28716, + "见": 28717, + "觉": 28718, + "誌": 28719, + "誓": 28720, + "誰": 28721, + "认": 28722, + "诉": 28723, + "译": 28724, + "豚": 28725, + "貓": 28726, + "貝": 28727, + "負": 28728, + "財": 28729, + "軒": 28730, + "軽": 28731, + "车": 28732, + "辨": 28733, + "逕": 28734, + "速": 28735, + "避": 28736, + "邦": 28737, + "郑": 28738, + "酷": 28739, + "醒": 28740, + "釣": 28741, + "錦": 28742, + "録": 28743, + "鑲": 28744, + "钟": 28745, + "钩": 28746, + "附": 28747, + "雕": 28748, + "靂": 28749, + "靖": 28750, + "靠": 28751, + "頁": 28752, + "領": 28753, + "频": 28754, + "颱": 28755, + "验": 28756, + "魯": 28757, + "鲁": 28758, + "鲜": 28759, + "鳴": 28760, + "鸭": 28761, + "鹰": 28762, + "鹿": 28763, + "黑": 28764, + "黨": 28765, + "鼎": 28766, + "각": 28767, + "군": 28768, + "궁": 28769, + "근": 28770, + "난": 28771, + "누": 28772, + "님": 28773, + "런": 28774, + "력": 28775, + "료": 28776, + "밀": 28777, + "벌": 28778, + "병": 28779, + "빛": 28780, + "새": 28781, + "않": 28782, + "약": 28783, + "업": 28784, + "웃": 28785, + "응": 28786, + "죽": 28787, + "집": 28788, + "째": 28789, + "춘": 28790, + "충": 28791, + "츠": 28792, + "칼": 28793, + "탑": 28794, + "텔": 28795, + "편": 28796, + "풍": 28797, + "함": 28798, + "허": 28799, + "현": 28800, + "희": 28801, + "": 28802, + "𐎠": 28803, + "🇮": 28804, + "👀": 28805, + "💻": 28806, + "📚": 28807, + "📣": 28808, + "🚀": 28809, + "🤔": 28810, + "🤯": 28811, + "“": 28812, + "Ğ": 28813, + "ĥ": 28814, + "Į": 28815, + "Ķ": 28816, + "ĸ": 28817, + "Ŝ": 28818, + "ƀ": 28819, + "ƞ": 28820, + "ƭ": 28821, + "Ƿ": 28822, + "Ȝ": 28823, + "ɰ": 28824, + "ɺ": 28825, + "ʄ": 28826, + "˓": 28827, + "̳": 28828, + "̵": 28829, + "͏": 28830, + "Щ": 28831, + "ѐ": 28832, + "ѳ": 28833, + "Ү": 28834, + "Ҳ": 28835, + "Բ": 28836, + "Ը": 28837, + "Ի": 28838, + "Ղ": 28839, + "Ճ": 28840, + "Ջ": 28841, + "Փ": 28842, + "Ք": 28843, + "ֆ": 28844, + "ֳ": 28845, + "ٓ": 28846, + "٢": 28847, + "٧": 28848, + "ۀ": 28849, + "ۇ": 28850, + "۱": 28851, + "ܢ": 28852, + "ܦ": 28853, + "ऊ": 28854, + "ऋ": 28855, + "झ": 28856, + "ळ": 28857, + "ॐ": 28858, + "থ": 28859, + "ৌ": 28860, + "৫": 28861, + "ৰ": 28862, + "ਂ": 28863, + "ਖ": 28864, + "ਜ": 28865, + "ਟ": 28866, + "ੋ": 28867, + "ੰ": 28868, + "ੱ": 28869, + "ર": 28870, + "સ": 28871, + "ા": 28872, + "ஆ": 28873, + "இ": 28874, + "எ": 28875, + "ற": 28876, + "ெ": 28877, + "ே": 28878, + "ఠ": 28879, + "బ": 28880, + "భ": 28881, + "ో": 28882, + "ಇ": 28883, + "ಠ": 28884, + "ഗ": 28885, + "ഞ": 28886, + "ണ": 28887, + "ള": 28888, + "ീ": 28889, + "අ": 28890, + "ධ": 28891, + "ฤ": 28892, + "๊": 28893, + "ງ": 28894, + "ິ": 28895, + "༢": 28896, + "༣": 28897, + "ཕ": 28898, + "ཟ": 28899, + "ཨ": 28900, + "ྔ": 28901, + "ྣ": 28902, + "ဉ": 28903, + "ဦ": 28904, + "ဩ": 28905, + "၌": 28906, + "၏": 28907, + "ᄋ": 28908, + "ሐ": 28909, + "ሕ": 28910, + "ማ": 28911, + "ሰ": 28912, + "ታ": 28913, + "ኢ": 28914, + "ያ": 28915, + "ድ": 28916, + "Ꭶ": 28917, + "ᘯ": 28918, + "ᚢ": 28919, + "ᚿ": 28920, + "ᛏ": 28921, + "ᛞ": 28922, + "ញ": 28923, + "ធ": 28924, + "អ": 28925, + "ៀ": 28926, + "ៅ": 28927, + "ᡝ": 28928, + "ᦱ": 28929, + "ᧈ": 28930, + "᩠": 28931, + "Ḏ": 28932, + "ṽ": 28933, + "Ấ": 28934, + "ὥ": 28935, + "ὦ": 28936, + "ὧ": 28937, + "ᾔ": 28938, + "ᾱ": 28939, + "ῄ": 28940, + "‣": 28941, + "⁃": 28942, + "₧": 28943, + "⃣": 28944, + "℔": 28945, + "℞": 28946, + "↘": 28947, + "∉": 28948, + "∨": 28949, + "≅": 28950, + "≧": 28951, + "⍵": 28952, + "⎬": 28953, + "╭": 28954, + "╯": 28955, + "▯": 28956, + "◎": 28957, + "♇": 28958, + "⚙": 28959, + "❗": 28960, + "ⱱ": 28961, + "ⴼ": 28962, + "ⵖ": 28963, + "ⵡ": 28964, + "ぜ": 28965, + "ぱ": 28966, + "ぷ": 28967, + "专": 28968, + "丙": 28969, + "丰": 28970, + "乘": 28971, + "买": 28972, + "亂": 28973, + "予": 28974, + "亜": 28975, + "亲": 28976, + "仅": 28977, + "仍": 28978, + "仪": 28979, + "伏": 28980, + "伙": 28981, + "伟": 28982, + "侍": 28983, + "俗": 28984, + "俭": 28985, + "們": 28986, + "借": 28987, + "偶": 28988, + "偽": 28989, + "兎": 28990, + "农": 28991, + "决": 28992, + "凯": 28993, + "凰": 28994, + "刚": 28995, + "剥": 28996, + "剩": 28997, + "势": 28998, + "勉": 28999, + "勢": 29000, + "匠": 29001, + "厄": 29002, + "压": 29003, + "厚": 29004, + "叙": 29005, + "叡": 29006, + "叫": 29007, + "吃": 29008, + "吞": 29009, + "吟": 29010, + "否": 29011, + "吧": 29012, + "启": 29013, + "喝": 29014, + "嘛": 29015, + "噛": 29016, + "噭": 29017, + "囃": 29018, + "圃": 29019, + "圾": 29020, + "块": 29021, + "坚": 29022, + "坝": 29023, + "坪": 29024, + "垃": 29025, + "垣": 29026, + "堅": 29027, + "塘": 29028, + "塩": 29029, + "墨": 29030, + "売": 29031, + "契": 29032, + "套": 29033, + "奴": 29034, + "姑": 29035, + "姿": 29036, + "威": 29037, + "娘": 29038, + "婚": 29039, + "宏": 29040, + "害": 29041, + "寇": 29042, + "寝": 29043, + "察": 29044, + "射": 29045, + "尸": 29046, + "尺": 29047, + "屍": 29048, + "屬": 29049, + "嶋": 29050, + "巴": 29051, + "庆": 29052, + "庇": 29053, + "庵": 29054, + "廟": 29055, + "廳": 29056, + "弐": 29057, + "弧": 29058, + "彤": 29059, + "往": 29060, + "怀": 29061, + "怖": 29062, + "怡": 29063, + "恼": 29064, + "悔": 29065, + "您": 29066, + "愚": 29067, + "愿": 29068, + "慎": 29069, + "戊": 29070, + "戒": 29071, + "户": 29072, + "戻": 29073, + "扇": 29074, + "托": 29075, + "执": 29076, + "抗": 29077, + "折": 29078, + "抱": 29079, + "拾": 29080, + "捷": 29081, + "掲": 29082, + "揭": 29083, + "援": 29084, + "損": 29085, + "撞": 29086, + "操": 29087, + "攝": 29088, + "救": 29089, + "既": 29090, + "旧": 29091, + "昂": 29092, + "昇": 29093, + "昼": 29094, + "暦": 29095, + "暴": 29096, + "朋": 29097, + "朗": 29098, + "朽": 29099, + "杀": 29100, + "杂": 29101, + "柚": 29102, + "核": 29103, + "桌": 29104, + "桓": 29105, + "棟": 29106, + "樊": 29107, + "樓": 29108, + "樸": 29109, + "櫓": 29110, + "欣": 29111, + "歓": 29112, + "毒": 29113, + "毘": 29114, + "汤": 29115, + "決": 29116, + "沂": 29117, + "沼": 29118, + "泊": 29119, + "泗": 29120, + "泡": 29121, + "泣": 29122, + "泥": 29123, + "济": 29124, + "浜": 29125, + "涉": 29126, + "润": 29127, + "混": 29128, + "渐": 29129, + "渠": 29130, + "湯": 29131, + "満": 29132, + "漂": 29133, + "漠": 29134, + "炭": 29135, + "烧": 29136, + "焉": 29137, + "焔": 29138, + "營": 29139, + "猪": 29140, + "珍": 29141, + "瑪": 29142, + "璃": 29143, + "産": 29144, + "症": 29145, + "瘢": 29146, + "癥": 29147, + "盐": 29148, + "盘": 29149, + "眇": 29150, + "瞬": 29151, + "码": 29152, + "碗": 29153, + "碳": 29154, + "磨": 29155, + "祀": 29156, + "祓": 29157, + "祠": 29158, + "租": 29159, + "窗": 29160, + "窝": 29161, + "笛": 29162, + "笠": 29163, + "符": 29164, + "签": 29165, + "簡": 29166, + "籍": 29167, + "粍": 29168, + "糕": 29169, + "糙": 29170, + "糸": 29171, + "経": 29172, + "絡": 29173, + "絶": 29174, + "続": 29175, + "綾": 29176, + "繼": 29177, + "羊": 29178, + "聚": 29179, + "聯": 29180, + "肃": 29181, + "肘": 29182, + "肩": 29183, + "胸": 29184, + "脇": 29185, + "脈": 29186, + "脏": 29187, + "脳": 29188, + "腳": 29189, + "腿": 29190, + "臨": 29191, + "芥": 29192, + "芸": 29193, + "芽": 29194, + "苏": 29195, + "苦": 29196, + "茸": 29197, + "荊": 29198, + "荒": 29199, + "莲": 29200, + "菊": 29201, + "菱": 29202, + "萍": 29203, + "蒙": 29204, + "蒿": 29205, + "蕉": 29206, + "蕭": 29207, + "蚩": 29208, + "蛋": 29209, + "袋": 29210, + "製": 29211, + "规": 29212, + "詔": 29213, + "詠": 29214, + "詳": 29215, + "謁": 29216, + "謡": 29217, + "评": 29218, + "诺": 29219, + "貫": 29220, + "賜": 29221, + "贝": 29222, + "财": 29223, + "贵": 29224, + "赛": 29225, + "趣": 29226, + "跟": 29227, + "软": 29228, + "轻": 29229, + "辉": 29230, + "辞": 29231, + "辭": 29232, + "辰": 29233, + "迅": 29234, + "还": 29235, + "迪": 29236, + "遇": 29237, + "遥": 29238, + "邵": 29239, + "郭": 29240, + "鄭": 29241, + "酉": 29242, + "釈": 29243, + "錨": 29244, + "鎖": 29245, + "铜": 29246, + "閃": 29247, + "阪": 29248, + "隔": 29249, + "隱": 29250, + "隸": 29251, + "離": 29252, + "難": 29253, + "雳": 29254, + "霜": 29255, + "響": 29256, + "頒": 29257, + "顏": 29258, + "顺": 29259, + "领": 29260, + "飲": 29261, + "駢": 29262, + "験": 29263, + "騰": 29264, + "驗": 29265, + "驚": 29266, + "鬱": 29267, + "鱼": 29268, + "鶼": 29269, + "鹽": 29270, + "點": 29271, + "鼻": 29272, + "ꜛ": 29273, + "같": 29274, + "객": 29275, + "건": 29276, + "것": 29277, + "곤": 29278, + "관": 29279, + "굿": 29280, + "귀": 29281, + "글": 29282, + "급": 29283, + "길": 29284, + "낭": 29285, + "널": 29286, + "녹": 29287, + "눈": 29288, + "돼": 29289, + "떠": 29290, + "또": 29291, + "량": 29292, + "렌": 29293, + "렐": 29294, + "례": 29295, + "른": 29296, + "릿": 29297, + "망": 29298, + "목": 29299, + "배": 29300, + "봐": 29301, + "빙": 29302, + "빵": 29303, + "쁜": 29304, + "석": 29305, + "센": 29306, + "손": 29307, + "쇼": 29308, + "슘": 29309, + "싶": 29310, + "앙": 29311, + "언": 29312, + "엄": 29313, + "옥": 29314, + "왔": 29315, + "외": 29316, + "욕": 29317, + "웨": 29318, + "쟁": 29319, + "절": 29320, + "족": 29321, + "종": 29322, + "질": 29323, + "찬": 29324, + "총": 29325, + "최": 29326, + "카": 29327, + "케": 29328, + "클": 29329, + "킹": 29330, + "탁": 29331, + "통": 29332, + "판": 29333, + "표": 29334, + "활": 29335, + "𐌰": 29336, + "𐎢": 29337, + "𐎼": 29338, + "𐐓": 29339, + "𐐝": 29340, + "🇰": 29341, + "🌟": 29342, + "🎯": 29343, + "🐡": 29344, + "👋": 29345, + "👩": 29346, + "💕": 29347, + "💛": 29348, + "💡": 29349, + "📍": 29350, + "🔒": 29351, + "😃": 29352, + "🤷": 29353, + "ĵ": 29354, + "ĺ": 29355, + "Ń": 29356, + "ŕ": 29357, + "Ɔ": 29358, + "ƈ": 29359, + "ƙ": 29360, + "ƥ": 29361, + "Ư": 29362, + "Ǧ": 29363, + "Ǫ": 29364, + "ǹ": 29365, + "ɞ": 29366, + "ɠ": 29367, + "ɱ": 29368, + "ʖ": 29369, + "ʗ": 29370, + "ʙ": 29371, + "ʛ": 29372, + "ʠ": 29373, + "˒": 29374, + "˖": 29375, + "̑": 29376, + "̗": 29377, + "ͦ": 29378, + "Ή": 29379, + "Ύ": 29380, + "ϋ": 29381, + "Є": 29382, + "Ў": 29383, + "ѥ": 29384, + "Ѵ": 29385, + "ҷ": 29386, + "ӣ": 29387, + "ӯ": 29388, + "Թ": 29389, + "Ժ": 29390, + "Լ": 29391, + "Ձ": 29392, + "Շ": 29393, + "Ո": 29394, + "Ռ": 29395, + "Օ": 29396, + "֛": 29397, + "֨": 29398, + "״": 29399, + "؟": 29400, + "ٔ": 29401, + "٦": 29402, + "٩": 29403, + "ڬ": 29404, + "ۗ": 29405, + "ۢ": 29406, + "ۥ": 29407, + "۳": 29408, + "ܒ": 29409, + "ܣ": 29410, + "ܥ": 29411, + "ܲ": 29412, + "ܼ": 29413, + "०": 29414, + "ঊ": 29415, + "ঋ": 29416, + "ঙ": 29417, + "ছ": 29418, + "ঠ": 29419, + "ফ": 29420, + "ৃ": 29421, + "৩": 29422, + "৭": 29423, + "ਇ": 29424, + "ਘ": 29425, + "ਬ": 29426, + "ਮ": 29427, + "ੈ": 29428, + "ક": 29429, + "ય": 29430, + "વ": 29431, + "ષ": 29432, + "ો": 29433, + "ஃ": 29434, + "ః": 29435, + "థ": 29436, + "ధ": 29437, + "శ": 29438, + "ై": 29439, + "ಎ": 29440, + "ಖ": 29441, + "ಫ": 29442, + "അ": 29443, + "ഇ": 29444, + "ഘ": 29445, + "ജ": 29446, + "ഴ": 29447, + "ഹ": 29448, + "ට": 29449, + "ත": 29450, + "ප": 29451, + "බ": 29452, + "ැ": 29453, + "ේ": 29454, + "ฆ": 29455, + "ฎ": 29456, + "ບ": 29457, + "ພ": 29458, + "ຫ": 29459, + "ອ": 29460, + "ະ": 29461, + "ັ": 29462, + "༥": 29463, + "༦": 29464, + "༧": 29465, + "༨": 29466, + "༩": 29467, + "ཉ": 29468, + "ཞ": 29469, + "ཤ": 29470, + "ྟ": 29471, + "ྨ": 29472, + "၅": 29473, + "ၼ": 29474, + "Ⴀ": 29475, + "Ⴂ": 29476, + "Ⴃ": 29477, + "Ⴈ": 29478, + "Ⴌ": 29479, + "Ⴕ": 29480, + "Ⴟ": 29481, + "ჟ": 29482, + "ღ": 29483, + "ჩ": 29484, + "ჶ": 29485, + "ჷ": 29486, + "ჸ": 29487, + "ჹ": 29488, + "ჺ": 29489, + "ᅟ": 29490, + "ᆞ": 29491, + "ል": 29492, + "መ": 29493, + "ሙ": 29494, + "ረ": 29495, + "በ": 29496, + "ት": 29497, + "ኤ": 29498, + "እ": 29499, + "ዑ": 29500, + "ይ": 29501, + "ዮ": 29502, + "ገ": 29503, + "ጵ": 29504, + "ᚠ": 29505, + "ᚣ": 29506, + "ᚵ": 29507, + "ᚹ": 29508, + "ᚼ": 29509, + "ᚾ": 29510, + "ᛄ": 29511, + "ᛅ": 29512, + "ᛒ": 29513, + "ᛗ": 29514, + "ᛝ": 29515, + "ឯ": 29516, + "ឹ": 29517, + "ួ": 29518, + "ៃ": 29519, + "ៈ": 29520, + "៉": 29521, + "ᠢ": 29522, + "ᠣ": 29523, + "ᠪ": 29524, + "ᠰ": 29525, + "ᡅ": 29526, + "ᡆ": 29527, + "ᡥ": 29528, + "ᡳ": 29529, + "ᦈ": 29530, + "ᦹ": 29531, + "ᨶ": 29532, + "ᩈ": 29533, + "ᲀ": 29534, + "ᶑ": 29535, + "᷄": 29536, + "᷅": 29537, + "᷆": 29538, + "᷇": 29539, + "ḋ": 29540, + "ḹ": 29541, + "ṙ": 29542, + "ẖ": 29543, + "ỡ": 29544, + "Ἁ": 29545, + "ἒ": 29546, + "ἧ": 29547, + "ἲ": 29548, + "ὠ": 29549, + "Ὠ": 29550, + "ᾰ": 29551, + "‬": 29552, + "⁢": 29553, + "₯": 29554, + "⃒": 29555, + "⇣": 29556, + "∛": 29557, + "∣": 29558, + "∥": 29559, + "≔": 29560, + "≟": 29561, + "≦": 29562, + "≫": 29563, + "≮": 29564, + "≲": 29565, + "⊢": 29566, + "⊣": 29567, + "⊨": 29568, + "⊳": 29569, + "⊸": 29570, + "⎛": 29571, + "⎝": 29572, + "⎞": 29573, + "⎠": 29574, + "⎫": 29575, + "⎭": 29576, + "␤": 29577, + "╳": 29578, + "▷": 29579, + "▻": 29580, + "▾": 29581, + "◌": 29582, + "◳": 29583, + "◼": 29584, + "☃": 29585, + "☄": 29586, + "☛": 29587, + "☧": 29588, + "☫": 29589, + "☻": 29590, + "☼": 29591, + "☾": 29592, + "♄": 29593, + "♆": 29594, + "♬": 29595, + "⚵": 29596, + "⛄": 29597, + "✘": 29598, + "✡": 29599, + "✦": 29600, + "❙": 29601, + "❝": 29602, + "❞": 29603, + "❯": 29604, + "❶": 29605, + "ⱷ": 29606, + "ⲧ": 29607, + "ⲩ": 29608, + "ⵇ": 29609, + "ⵛ": 29610, + "ⵟ": 29611, + "ぞ": 29612, + "ゾ": 29613, + "ヂ": 29614, + "ヶ": 29615, + "丈": 29616, + "丽": 29617, + "乡": 29618, + "乳": 29619, + "亡": 29620, + "亨": 29621, + "份": 29622, + "伪": 29623, + "伴": 29624, + "侨": 29625, + "侵": 29626, + "促": 29627, + "俄": 29628, + "俱": 29629, + "倒": 29630, + "値": 29631, + "倪": 29632, + "倾": 29633, + "僧": 29634, + "儚": 29635, + "兆": 29636, + "兒": 29637, + "兜": 29638, + "兴": 29639, + "冠": 29640, + "冯": 29641, + "冲": 29642, + "减": 29643, + "凝": 29644, + "凹": 29645, + "刃": 29646, + "刑": 29647, + "创": 29648, + "勅": 29649, + "勞": 29650, + "卖": 29651, + "卢": 29652, + "卯": 29653, + "却": 29654, + "厝": 29655, + "叉": 29656, + "叠": 29657, + "叻": 29658, + "吐": 29659, + "呂": 29660, + "呈": 29661, + "咫": 29662, + "哉": 29663, + "喇": 29664, + "喋": 29665, + "喚": 29666, + "喬": 29667, + "嘗": 29668, + "嚴": 29669, + "团": 29670, + "园": 29671, + "圈": 29672, + "圍": 29673, + "坊": 29674, + "坦": 29675, + "埃": 29676, + "埔": 29677, + "堡": 29678, + "堯": 29679, + "塵": 29680, + "壌": 29681, + "壓": 29682, + "壬": 29683, + "壯": 29684, + "壱": 29685, + "备": 29686, + "夔": 29687, + "夷": 29688, + "夸": 29689, + "奄": 29690, + "奏": 29691, + "奐": 29692, + "奢": 29693, + "奧": 29694, + "妃": 29695, + "妇": 29696, + "妮": 29697, + "妻": 29698, + "姊": 29699, + "姐": 29700, + "姓": 29701, + "姥": 29702, + "娜": 29703, + "婁": 29704, + "婆": 29705, + "嫁": 29706, + "宁": 29707, + "宴": 29708, + "宵": 29709, + "寂": 29710, + "寛": 29711, + "審": 29712, + "寬": 29713, + "寸": 29714, + "專": 29715, + "導": 29716, + "尧": 29717, + "屠": 29718, + "岐": 29719, + "岬": 29720, + "嵐": 29721, + "嶺": 29722, + "嶼": 29723, + "巖": 29724, + "帕": 29725, + "席": 29726, + "帮": 29727, + "帰": 29728, + "帶": 29729, + "帽": 29730, + "幡": 29731, + "幣": 29732, + "庁": 29733, + "広": 29734, + "床": 29735, + "库": 29736, + "廉": 29737, + "廊": 29738, + "廖": 29739, + "廬": 29740, + "弁": 29741, + "弟": 29742, + "弹": 29743, + "彎": 29744, + "彙": 29745, + "彪": 29746, + "径": 29747, + "徹": 29748, + "徽": 29749, + "忌": 29750, + "忙": 29751, + "恭": 29752, + "恰": 29753, + "恵": 29754, + "悦": 29755, + "惊": 29756, + "惜": 29757, + "惡": 29758, + "慧": 29759, + "憂": 29760, + "憑": 29761, + "戈": 29762, + "戴": 29763, + "戶": 29764, + "扈": 29765, + "扎": 29766, + "抄": 29767, + "抓": 29768, + "択": 29769, + "护": 29770, + "拐": 29771, + "招": 29772, + "拟": 29773, + "挂": 29774, + "挑": 29775, + "挠": 29776, + "挣": 29777, + "挥": 29778, + "捡": 29779, + "捥": 29780, + "捩": 29781, + "捯": 29782, + "捲": 29783, + "捴": 29784, + "描": 29785, + "換": 29786, + "揽": 29787, + "搭": 29788, + "摆": 29789, + "播": 29790, + "撲": 29791, + "擊": 29792, + "據": 29793, + "敢": 29794, + "斜": 29795, + "旨": 29796, + "昏": 29797, + "晉": 29798, + "晒": 29799, + "暁": 29800, + "曦": 29801, + "曰": 29802, + "替": 29803, + "朔": 29804, + "朧": 29805, + "朩": 29806, + "朴": 29807, + "杉": 29808, + "杖": 29809, + "柩": 29810, + "柯": 29811, + "栗": 29812, + "桀": 29813, + "桂": 29814, + "桐": 29815, + "桶": 29816, + "梦": 29817, + "梨": 29818, + "梶": 29819, + "检": 29820, + "棒": 29821, + "棘": 29822, + "棚": 29823, + "棺": 29824, + "椒": 29825, + "榔": 29826, + "榜": 29827, + "槻": 29828, + "樣": 29829, + "橘": 29830, + "橫": 29831, + "檀": 29832, + "櫻": 29833, + "欧": 29834, + "欽": 29835, + "歐": 29836, + "歟": 29837, + "毫": 29838, + "毬": 29839, + "氮": 29840, + "汐": 29841, + "汗": 29842, + "汚": 29843, + "污": 29844, + "汶": 29845, + "沃": 29846, + "沉": 29847, + "沒": 29848, + "沛": 29849, + "沿": 29850, + "況": 29851, + "洛": 29852, + "浙": 29853, + "涙": 29854, + "涵": 29855, + "淇": 29856, + "淑": 29857, + "淙": 29858, + "淚": 29859, + "淹": 29860, + "添": 29861, + "渊": 29862, + "渣": 29863, + "渦": 29864, + "渾": 29865, + "湘": 29866, + "滅": 29867, + "漫": 29868, + "漸": 29869, + "潟": 29870, + "潤": 29871, + "潺": 29872, + "澳": 29873, + "濁": 29874, + "濃": 29875, + "濡": 29876, + "灌": 29877, + "灶": 29878, + "災": 29879, + "灾": 29880, + "炬": 29881, + "烟": 29882, + "烦": 29883, + "煌": 29884, + "煙": 29885, + "煜": 29886, + "煤": 29887, + "熔": 29888, + "燃": 29889, + "爺": 29890, + "爻": 29891, + "爾": 29892, + "犁": 29893, + "狩": 29894, + "狮": 29895, + "狸": 29896, + "猛": 29897, + "猩": 29898, + "献": 29899, + "猿": 29900, + "獎": 29901, + "獭": 29902, + "獵": 29903, + "獻": 29904, + "玖": 29905, + "玲": 29906, + "珂": 29907, + "珙": 29908, + "琦": 29909, + "琪": 29910, + "琴": 29911, + "瑜": 29912, + "瑠": 29913, + "璋": 29914, + "璠": 29915, + "瓊": 29916, + "瓜": 29917, + "瓩": 29918, + "甕": 29919, + "甚": 29920, + "產": 29921, + "畢": 29922, + "疆": 29923, + "痊": 29924, + "痘": 29925, + "痧": 29926, + "瘡": 29927, + "癒": 29928, + "癜": 29929, + "癡": 29930, + "皙": 29931, + "皚": 29932, + "皿": 29933, + "盆": 29934, + "盗": 29935, + "盤": 29936, + "盼": 29937, + "眞": 29938, + "眠": 29939, + "督": 29940, + "矩": 29941, + "矮": 29942, + "砕": 29943, + "硕": 29944, + "碎": 29945, + "碼": 29946, + "磊": 29947, + "磐": 29948, + "祐": 29949, + "祳": 29950, + "祴": 29951, + "祺": 29952, + "禄": 29953, + "禰": 29954, + "稻": 29955, + "稽": 29956, + "穂": 29957, + "窓": 29958, + "窟": 29959, + "竟": 29960, + "笨": 29961, + "箱": 29962, + "籌": 29963, + "籵": 29964, + "粁": 29965, + "粒": 29966, + "粥": 29967, + "粨": 29968, + "糟": 29969, + "紇": 29970, + "紘": 29971, + "級": 29972, + "紧": 29973, + "給": 29974, + "維": 29975, + "綱": 29976, + "緩": 29977, + "練": 29978, + "繹": 29979, + "纯": 29980, + "终": 29981, + "继": 29982, + "综": 29983, + "缩": 29984, + "缺": 29985, + "罠": 29986, + "羲": 29987, + "翅": 29988, + "耶": 29989, + "职": 29990, + "聡": 29991, + "胆": 29992, + "胴": 29993, + "腰": 29994, + "腹": 29995, + "膀": 29996, + "膜": 29997, + "臂": 29998, + "臚": 29999, + "臭": 30000, + "舎": 30001, + "舒": 30002, + "艘": 30003, + "芒": 30004, + "芙": 30005, + "芦": 30006, + "芬": 30007, + "芭": 30008, + "茅": 30009, + "茜": 30010, + "茫": 30011, + "莫": 30012, + "萌": 30013, + "萧": 30014, + "葭": 30015, + "蒭": 30016, + "蔭": 30017, + "蕃": 30018, + "薙": 30019, + "薛": 30020, + "薫": 30021, + "藕": 30022, + "藝": 30023, + "藥": 30024, + "蘿": 30025, + "虜": 30026, + "號": 30027, + "虽": 30028, + "蚓": 30029, + "蚯": 30030, + "蜡": 30031, + "蝴": 30032, + "蠕": 30033, + "衆": 30034, + "衢": 30035, + "袖": 30036, + "裂": 30037, + "裨": 30038, + "裸": 30039, + "襄": 30040, + "襟": 30041, + "覇": 30042, + "触": 30043, + "訂": 30044, + "訊": 30045, + "討": 30046, + "訳": 30047, + "証": 30048, + "該": 30049, + "誉": 30050, + "認": 30051, + "誒": 30052, + "誕": 30053, + "誘": 30054, + "誠": 30055, + "誡": 30056, + "請": 30057, + "諾": 30058, + "謂": 30059, + "謝": 30060, + "譌": 30061, + "讲": 30062, + "讽": 30063, + "诚": 30064, + "询": 30065, + "诱": 30066, + "诶": 30067, + "谈": 30068, + "谋": 30069, + "谢": 30070, + "谦": 30071, + "谨": 30072, + "谭": 30073, + "豫": 30074, + "豹": 30075, + "貌": 30076, + "貨": 30077, + "購": 30078, + "贈": 30079, + "责": 30080, + "贤": 30081, + "败": 30082, + "购": 30083, + "跖": 30084, + "跳": 30085, + "軌": 30086, + "轉": 30087, + "辆": 30088, + "辣": 30089, + "辯": 30090, + "远": 30091, + "透": 30092, + "逐": 30093, + "途": 30094, + "逢": 30095, + "逻": 30096, + "遂": 30097, + "遗": 30098, + "遙": 30099, + "遮": 30100, + "遺": 30101, + "遼": 30102, + "邋": 30103, + "邑": 30104, + "邓": 30105, + "邱": 30106, + "郁": 30107, + "郊": 30108, + "酈": 30109, + "酥": 30110, + "酸": 30111, + "醫": 30112, + "鈍": 30113, + "鉦": 30114, + "鉱": 30115, + "鉴": 30116, + "銅": 30117, + "鋪": 30118, + "錡": 30119, + "錢": 30120, + "鍋": 30121, + "鍾": 30122, + "铅": 30123, + "铎": 30124, + "销": 30125, + "锡": 30126, + "镇": 30127, + "閏": 30128, + "閒": 30129, + "閻": 30130, + "闕": 30131, + "阴": 30132, + "陛": 30133, + "隍": 30134, + "隗": 30135, + "際": 30136, + "隼": 30137, + "雇": 30138, + "雉": 30139, + "雎": 30140, + "雙": 30141, + "霆": 30142, + "霍": 30143, + "霖": 30144, + "霸": 30145, + "鞋": 30146, + "韋": 30147, + "韩": 30148, + "韶": 30149, + "頂": 30150, + "頃": 30151, + "順": 30152, + "須": 30153, + "頓": 30154, + "须": 30155, + "颗": 30156, + "颪": 30157, + "飄": 30158, + "養": 30159, + "餐": 30160, + "餑": 30161, + "饮": 30162, + "饼": 30163, + "饾": 30164, + "馮": 30165, + "駆": 30166, + "駒": 30167, + "髀": 30168, + "鬪": 30169, + "鰐": 30170, + "鱀": 30171, + "鵩": 30172, + "鵬": 30173, + "鹹": 30174, + "麗": 30175, + "黎": 30176, + "默": 30177, + "黛": 30178, + "鼉": 30179, + "鼠": 30180, + "齊": 30181, + "ꜜ": 30182, + "Ɡ": 30183, + "ꞵ": 30184, + "ꭓ": 30185, + "검": 30186, + "겠": 30187, + "겨": 30188, + "격": 30189, + "괜": 30190, + "권": 30191, + "균": 30192, + "께": 30193, + "났": 30194, + "넌": 30195, + "념": 30196, + "늘": 30197, + "덟": 30198, + "뎐": 30199, + "등": 30200, + "딸": 30201, + "때": 30202, + "락": 30203, + "랙": 30204, + "랜": 30205, + "럼": 30206, + "럽": 30207, + "렬": 30208, + "론": 30209, + "롭": 30210, + "룡": 30211, + "류": 30212, + "립": 30213, + "링": 30214, + "많": 30215, + "멜": 30216, + "못": 30217, + "몽": 30218, + "믿": 30219, + "및": 30220, + "밤": 30221, + "밥": 30222, + "뱀": 30223, + "변": 30224, + "본": 30225, + "봄": 30226, + "봇": 30227, + "봉": 30228, + "빅": 30229, + "빈": 30230, + "빤": 30231, + "빨": 30232, + "뿐": 30233, + "색": 30234, + "섬": 30235, + "셔": 30236, + "숭": 30237, + "슴": 30238, + "싸": 30239, + "쓰": 30240, + "쓸": 30241, + "악": 30242, + "압": 30243, + "앨": 30244, + "앵": 30245, + "억": 30246, + "얽": 30247, + "었": 30248, + "엔": 30249, + "였": 30250, + "윤": 30251, + "작": 30252, + "잡": 30253, + "져": 30254, + "졌": 30255, + "좌": 30256, + "직": 30257, + "징": 30258, + "짜": 30259, + "착": 30260, + "찮": 30261, + "채": 30262, + "책": 30263, + "첫": 30264, + "체": 30265, + "쳐": 30266, + "캐": 30267, + "캔": 30268, + "컬": 30269, + "쿨": 30270, + "킬": 30271, + "탐": 30272, + "테": 30273, + "템": 30274, + "퇴": 30275, + "특": 30276, + "틱": 30277, + "퐁": 30278, + "풀": 30279, + "핍": 30280, + "헌": 30281, + "헬": 30282, + "형": 30283, + "홀": 30284, + "홉": 30285, + "힐": 30286, + "𐌴": 30287, + "𐌹": 30288, + "𐎭": 30289, + "𐎹": 30290, + "𐏁": 30291, + "𐐈": 30292, + "𐐊": 30293, + "𐐗": 30294, + "𐐿": 30295, + "𐑌": 30296, + "𐬥": 30297, + "𐬵": 30298, + "𐭉": 30299, + "𐭕": 30300, + "𒀭": 30301, + "🇦": 30302, + "🇧": 30303, + "🇩": 30304, + "🇫": 30305, + "🇭": 30306, + "🇱": 30307, + "🇳": 30308, + "🇴": 30309, + "🇵": 30310, + "🇹": 30311, + "🌎": 30312, + "🌸": 30313, + "🌿": 30314, + "🎉": 30315, + "🎨": 30316, + "🏼": 30317, + "🏾": 30318, + "👁": 30319, + "👂": 30320, + "👦": 30321, + "💎": 30322, + "💪": 30323, + "💫": 30324, + "💸": 30325, + "📕": 30326, + "📝": 30327, + "😂": 30328, + "😍": 30329, + "😎": 30330, + "😦": 30331, + "😱": 30332, + "🚨": 30333, + "🦄": 30334, + "œ": 30335, + "Ą": 30336, + "Ċ": 30337, + "Ę": 30338, + "Ĝ": 30339, + "Ģ": 30340, + "Ĥ": 30341, + "Ň": 30342, + "Ŋ": 30343, + "Ŏ": 30344, + "Ő": 30345, + "Ŕ": 30346, + "Ŗ": 30347, + "ŧ": 30348, + "Ů": 30349, + "Ű": 30350, + "Ŷ": 30351, + "Ƈ": 30352, + "Ɖ": 30353, + "ƍ": 30354, + "Ɛ": 30355, + "Ɣ": 30356, + "ƛ": 30357, + "Ƣ": 30358, + "Ʋ": 30359, + "ƴ": 30360, + "Ǒ": 30361, + "Ǣ": 30362, + "ǭ": 30363, + "Ǹ": 30364, + "Ǻ": 30365, + "ǽ": 30366, + "ȧ": 30367, + "ȷ": 30368, + "ȼ": 30369, + "Ɉ": 30370, + "ɶ": 30371, + "ɷ": 30372, + "ʡ": 30373, + "ʢ": 30374, + "˂": 30375, + "˄": 30376, + "ˊ": 30377, + "ˋ": 30378, + "˕": 30379, + "ˮ": 30380, + "̏": 30381, + "̕": 30382, + "̖": 30383, + "̙": 30384, + "̜": 30385, + "̢": 30386, + "̮": 30387, + "͌": 30388, + "͟": 30389, + "ͣ": 30390, + "ϝ": 30391, + "ϟ": 30392, + "ϩ": 30393, + "Ё": 30394, + "Ѕ": 30395, + "Ї": 30396, + "Љ": 30397, + "Ћ": 30398, + "ѝ": 30399, + "Ѡ": 30400, + "ѡ": 30401, + "ѧ": 30402, + "Ѯ": 30403, + "ѹ": 30404, + "҃": 30405, + "҅": 30406, + "҆": 30407, + "җ": 30408, + "Қ": 30409, + "ҡ": 30410, + "ӓ": 30411, + "Ӷ": 30412, + "ӷ": 30413, + "Ծ": 30414, + "Չ": 30415, + "Ր": 30416, + "Ց": 30417, + "Ւ": 30418, + "Ֆ": 30419, + "֕": 30420, + "֗": 30421, + "֜": 30422, + "֞": 30423, + "֠": 30424, + "֧": 30425, + "֮": 30426, + "׀": 30427, + "٤": 30428, + "٥": 30429, + "٨": 30430, + "ڕ": 30431, + "ږ": 30432, + "ښ": 30433, + "ڛ": 30434, + "ګ": 30435, + "ڵ": 30436, + "ۆ": 30437, + "ۍ": 30438, + "۰": 30439, + "۵": 30440, + "۹": 30441, + "ܔ": 30442, + "ܙ": 30443, + "ܚ": 30444, + "ܛ": 30445, + "ܫ": 30446, + "݂": 30447, + "ऐ": 30448, + "ऑ": 30449, + "ॅ": 30450, + "ॆ": 30451, + "ॊ": 30452, + "४": 30453, + "८": 30454, + "ঁ": 30455, + "ও": 30456, + "ঢ": 30457, + "ূ": 30458, + "ৈ": 30459, + "ৎ": 30460, + "১": 30461, + "৪": 30462, + "ਉ": 30463, + "ਝ": 30464, + "ਪ": 30465, + "ં": 30466, + "ખ": 30467, + "ઠ": 30468, + "ધ": 30469, + "ફ": 30470, + "બ": 30471, + "લ": 30472, + "હ": 30473, + "િ": 30474, + "ી": 30475, + "ૌ": 30476, + "ପ": 30477, + "ର": 30478, + "ୀ": 30479, + "ୁ": 30480, + "ஈ": 30481, + "ஒ": 30482, + "ஜ": 30483, + "ஞ": 30484, + "ఒ": 30485, + "ఓ": 30486, + "ఖ": 30487, + "జ": 30488, + "ట": 30489, + "ూ": 30490, + "ౌ": 30491, + "ಃ": 30492, + "ಆ": 30493, + "ಏ": 30494, + "ಒ": 30495, + "ಱ": 30496, + "ೌ": 30497, + "ೞ": 30498, + "ഉ": 30499, + "ഠ": 30500, + "ഡ": 30501, + "ധ": 30502, + "ൈ": 30503, + "ൌ": 30504, + "ർ": 30505, + "ൽ": 30506, + "උ": 30507, + "එ": 30508, + "ග": 30509, + "ජ": 30510, + "ඩ": 30511, + "ශ": 30512, + "ළ": 30513, + "ෑ": 30514, + "ී": 30515, + "ෙ": 30516, + "ෝ": 30517, + "ฏ": 30518, + "ฬ": 30519, + "ຊ": 30520, + "ຍ": 30521, + "ດ": 30522, + "ທ": 30523, + "ມ": 30524, + "ລ": 30525, + "ວ": 30526, + "ແ": 30527, + "ໄ": 30528, + "່": 30529, + "༠": 30530, + "ཅ": 30531, + "ཇ": 30532, + "ཙ": 30533, + "ཛ": 30534, + "ཧ": 30535, + "ྗ": 30536, + "ྙ": 30537, + "ྤ": 30538, + "ྥ": 30539, + "ྭ": 30540, + "ྰ": 30541, + "ဓ": 30542, + "ဥ": 30543, + "၎": 30544, + "ႃ": 30545, + "ᅡ": 30546, + "ᅩ": 30547, + "ሀ": 30548, + "ላ": 30549, + "ሓ": 30550, + "ሥ": 30551, + "ራ": 30552, + "ቄ": 30553, + "ቆ": 30554, + "ቈ": 30555, + "ቱ": 30556, + "ቲ": 30557, + "ነ": 30558, + "ና": 30559, + "ኖ": 30560, + "ኛ": 30561, + "ኣ": 30562, + "ከ": 30563, + "ኲ": 30564, + "ዕ": 30565, + "ዛ": 30566, + "ጅ": 30567, + "ጉ": 30568, + "ጎ": 30569, + "ጥ": 30570, + "ፈ": 30571, + "ፍ": 30572, + "Ꭰ": 30573, + "Ꭳ": 30574, + "Ꭸ": 30575, + "Ꭹ": 30576, + "Ꮀ": 30577, + "Ꮃ": 30578, + "Ꮉ": 30579, + "Ꮝ": 30580, + "Ꮿ": 30581, + "Ᏹ": 30582, + "ᐊ": 30583, + "ᐳ": 30584, + "ᑲ": 30585, + "ᒡ": 30586, + "ᓘ": 30587, + "ᚨ": 30588, + "ᚩ": 30589, + "ᚬ": 30590, + "ᚮ": 30591, + "ᚯ": 30592, + "ᚷ": 30593, + "ᚻ": 30594, + "ᛇ": 30595, + "ᛉ": 30596, + "ᛕ": 30597, + "ᛦ": 30598, + "ឆ": 30599, + "ឋ": 30600, + "ថ": 30601, + "ឥ": 30602, + "ឪ": 30603, + "ឫ": 30604, + "឵": 30605, + "ឺ": 30606, + "៖": 30607, + "ᠠ": 30608, + "ᠨ": 30609, + "ᠭ": 30610, + "ᠯ": 30611, + "ᠱ": 30612, + "ᠲ": 30613, + "ᠳ": 30614, + "ᠴ": 30615, + "ᠷ": 30616, + "ᡋ": 30617, + "ᡎ": 30618, + "ᡐ": 30619, + "ᡑ": 30620, + "ᡔ": 30621, + "ᡨ": 30622, + "ᦉ": 30623, + "ᦋ": 30624, + "ᦑ": 30625, + "ᦓ": 30626, + "ᦗ": 30627, + "ᦘ": 30628, + "ᦲ": 30629, + "ᦵ": 30630, + "ᦺ": 30631, + "ᧁ": 30632, + "ᧃ": 30633, + "᧑": 30634, + "᧒": 30635, + "ᨦ": 30636, + "ᨷ": 30637, + "ᨻ": 30638, + "ᩋ": 30639, + "ᩢ": 30640, + "ᩣ": 30641, + "ᩥ": 30642, + "ᴥ": 30643, + "ᵺ": 30644, + "᷈": 30645, + "᷽": 30646, + "ḕ": 30647, + "Ḣ": 30648, + "Ḩ": 30649, + "ḭ": 30650, + "ṕ": 30651, + "Ṙ": 30652, + "Ṝ": 30653, + "Ṧ": 30654, + "Ṫ": 30655, + "ṵ": 30656, + "Ṽ": 30657, + "ẋ": 30658, + "Ẩ": 30659, + "Ề": 30660, + "Ờ": 30661, + "Ụ": 30662, + "Ứ": 30663, + "ỷ": 30664, + "ἃ": 30665, + "Ἅ": 30666, + "ἣ": 30667, + "Ἶ": 30668, + "ὂ": 30669, + "Ὀ": 30670, + "Ὅ": 30671, + "Ὑ": 30672, + "Ὕ": 30673, + "ὣ": 30674, + "ὤ": 30675, + "Ὡ": 30676, + "ᾅ": 30677, + "ᾓ": 30678, + "ᾤ": 30679, + "Ὲ": 30680, + "ῐ": 30681, + "ῑ": 30682, + "ῒ": 30683, + "Ὶ": 30684, + "ῠ": 30685, + "ῡ": 30686, + "⁠": 30687, + "₴": 30688, + "₼": 30689, + "↕": 30690, + "↙": 30691, + "↷": 30692, + "⇓": 30693, + "⇔": 30694, + "⇪": 30695, + "∤": 30696, + "∵": 30697, + "∽": 30698, + "≯": 30699, + "≺": 30700, + "≼": 30701, + "≽": 30702, + "⊆": 30703, + "⊞": 30704, + "⊭": 30705, + "⋂": 30706, + "⌜": 30707, + "⌝": 30708, + "⌥": 30709, + "⌫": 30710, + "⎈": 30711, + "⎨": 30712, + "⏐": 30713, + "⏰": 30714, + "⏲": 30715, + "┴": 30716, + "╗": 30717, + "╥": 30718, + "▒": 30719, + "▴": 30720, + "▵": 30721, + "◀": 30722, + "◄": 30723, + "◇": 30724, + "◉": 30725, + "◻": 30726, + "☀": 30727, + "☘": 30728, + "☠": 30729, + "☢": 30730, + "☥": 30731, + "☭": 30732, + "☵": 30733, + "☶": 30734, + "☹": 30735, + "☽": 30736, + "♅": 30737, + "♡": 30738, + "⚖": 30739, + "⚠": 30740, + "⚴": 30741, + "⛔": 30742, + "⛢": 30743, + "⛷": 30744, + "✍": 30745, + "✤": 30746, + "❅": 30747, + "❆": 30748, + "❛": 30749, + "❜": 30750, + "➡": 30751, + "➭": 30752, + "⤵": 30753, + "⧫": 30754, + "⫶": 30755, + "⬆": 30756, + "ⲁ": 30757, + "ⲏ": 30758, + "ⲓ": 30759, + "ⲗ": 30760, + "ⲛ": 30761, + "ⲟ": 30762, + "ⲣ": 30763, + "ⲥ": 30764, + "Ⲫ": 30765, + "ⲱ": 30766, + "ⵃ": 30767, + "ⵕ": 30768, + "⸨": 30769, + "⸩": 30770, + "⸮": 30771, + "⸻": 30772, + "〒": 30773, + "〖": 30774, + "〗": 30775, + "〞": 30776, + "ぇ": 30777, + "ぴ": 30778, + "ゑ": 30779, + "㭺": 30780, + "䷃": 30781, + "丧": 30782, + "丨": 30783, + "临": 30784, + "丶": 30785, + "丼": 30786, + "丿": 30787, + "乌": 30788, + "乐": 30789, + "乔": 30790, + "乚": 30791, + "乛": 30792, + "乩": 30793, + "亀": 30794, + "亅": 30795, + "亰": 30796, + "亿": 30797, + "仇": 30798, + "仔": 30799, + "仰": 30800, + "仿": 30801, + "伞": 30802, + "伤": 30803, + "伸": 30804, + "伽": 30805, + "佃": 30806, + "佘": 30807, + "侧": 30808, + "侬": 30809, + "侮": 30810, + "俳": 30811, + "倍": 30812, + "偁": 30813, + "偃": 30814, + "偏": 30815, + "偷": 30816, + "傀": 30817, + "傑": 30818, + "傘": 30819, + "働": 30820, + "億": 30821, + "儒": 30822, + "儡": 30823, + "児": 30824, + "兔": 30825, + "党": 30826, + "兼": 30827, + "冀": 30828, + "冉": 30829, + "冊": 30830, + "冫": 30831, + "冶": 30832, + "准": 30833, + "凧": 30834, + "凱": 30835, + "凶": 30836, + "击": 30837, + "刮": 30838, + "券": 30839, + "刹": 30840, + "剪": 30841, + "割": 30842, + "劍": 30843, + "劣": 30844, + "励": 30845, + "労": 30846, + "勃": 30847, + "勘": 30848, + "勤": 30849, + "勸": 30850, + "勿": 30851, + "匕": 30852, + "协": 30853, + "卐": 30854, + "単": 30855, + "卜": 30856, + "卫": 30857, + "卸": 30858, + "厥": 30859, + "厩": 30860, + "叛": 30861, + "叢": 30862, + "另": 30863, + "叭": 30864, + "叮": 30865, + "吊": 30866, + "吒": 30867, + "吕": 30868, + "吨": 30869, + "吻": 30870, + "呉": 30871, + "呢": 30872, + "咀": 30873, + "咆": 30874, + "咖": 30875, + "咧": 30876, + "咨": 30877, + "咩": 30878, + "咬": 30879, + "咸": 30880, + "哦": 30881, + "哭": 30882, + "哮": 30883, + "哲": 30884, + "唅": 30885, + "唯": 30886, + "啓": 30887, + "啟": 30888, + "啡": 30889, + "啦": 30890, + "啰": 30891, + "啲": 30892, + "喂": 30893, + "喔": 30894, + "喪": 30895, + "喻": 30896, + "嗜": 30897, + "嗦": 30898, + "嘅": 30899, + "嘘": 30900, + "嘴": 30901, + "噪": 30902, + "嚐": 30903, + "嚣": 30904, + "嚳": 30905, + "嚼": 30906, + "囁": 30907, + "囂": 30908, + "囚": 30909, + "囡": 30910, + "困": 30911, + "围": 30912, + "團": 30913, + "圧": 30914, + "圻": 30915, + "坎": 30916, + "坏": 30917, + "坐": 30918, + "坞": 30919, + "垫": 30920, + "堪": 30921, + "塑": 30922, + "塹": 30923, + "墙": 30924, + "壕": 30925, + "壟": 30926, + "壩": 30927, + "壮": 30928, + "壳": 30929, + "壷": 30930, + "夤": 30931, + "奎": 30932, + "奖": 30933, + "奪": 30934, + "奶": 30935, + "妍": 30936, + "妥": 30937, + "姆": 30938, + "姜": 30939, + "姦": 30940, + "姬": 30941, + "娃": 30942, + "娥": 30943, + "娴": 30944, + "婉": 30945, + "媒": 30946, + "媧": 30947, + "媽": 30948, + "嫌": 30949, + "嫦": 30950, + "嬢": 30951, + "嬰": 30952, + "嬴": 30953, + "孛": 30954, + "孤": 30955, + "孵": 30956, + "宜": 30957, + "宸": 30958, + "宽": 30959, + "寅": 30960, + "寒": 30961, + "寗": 30962, + "寞": 30963, + "寫": 30964, + "寵": 30965, + "尝": 30966, + "尬": 30967, + "尴": 30968, + "尹": 30969, + "尻": 30970, + "屁": 30971, + "屑": 30972, + "屡": 30973, + "層": 30974, + "履": 30975, + "屯": 30976, + "屿": 30977, + "岑": 30978, + "岚": 30979, + "岭": 30980, + "峠": 30981, + "峡": 30982, + "峨": 30983, + "崑": 30984, + "崔": 30985, + "崖": 30986, + "崙": 30987, + "嵋": 30988, + "嵌": 30989, + "嵩": 30990, + "巂": 30991, + "币": 30992, + "帖": 30993, + "帥": 30994, + "帯": 30995, + "幫": 30996, + "幹": 30997, + "幼": 30998, + "庖": 30999, + "废": 31000, + "庾": 31001, + "廢": 31002, + "廿": 31003, + "弔": 31004, + "弦": 31005, + "彊": 31006, + "彖": 31007, + "彝": 31008, + "彬": 31009, + "彰": 31010, + "彻": 31011, + "徑": 31012, + "循": 31013, + "徼": 31014, + "忆": 31015, + "忧": 31016, + "忽": 31017, + "怨": 31018, + "恒": 31019, + "恢": 31020, + "恱": 31021, + "恶": 31022, + "悍": 31023, + "患": 31024, + "悫": 31025, + "惇": 31026, + "惟": 31027, + "惧": 31028, + "惯": 31029, + "愍": 31030, + "愽": 31031, + "慢": 31032, + "慮": 31033, + "憎": 31034, + "懂": 31035, + "懍": 31036, + "懐": 31037, + "懸": 31038, + "戎": 31039, + "戯": 31040, + "戲": 31041, + "扁": 31042, + "扉": 31043, + "扑": 31044, + "扔": 31045, + "払": 31046, + "扩": 31047, + "扭": 31048, + "抖": 31049, + "披": 31050, + "抵": 31051, + "担": 31052, + "拆": 31053, + "拇": 31054, + "拏": 31055, + "拓": 31056, + "拔": 31057, + "拖": 31058, + "拘": 31059, + "拥": 31060, + "拧": 31061, + "择": 31062, + "拿": 31063, + "挒": 31064, + "挤": 31065, + "挫": 31066, + "挺": 31067, + "捆": 31068, + "捋": 31069, + "捏": 31070, + "捜": 31071, + "损": 31072, + "捨": 31073, + "捵": 31074, + "掀": 31075, + "掖": 31076, + "掩": 31077, + "揉": 31078, + "揚": 31079, + "携": 31080, + "摂": 31081, + "摄": 31082, + "摯": 31083, + "撈": 31084, + "撰": 31085, + "擁": 31086, + "擴": 31087, + "攸": 31088, + "敌": 31089, + "敗": 31090, + "敦": 31091, + "敵": 31092, + "斉": 31093, + "斧": 31094, + "斩": 31095, + "斷": 31096, + "旣": 31097, + "旱": 31098, + "旺": 31099, + "昊": 31100, + "昔": 31101, + "晁": 31102, + "晏": 31103, + "晢": 31104, + "晨": 31105, + "暂": 31106, + "暖": 31107, + "暫": 31108, + "暮": 31109, + "朏": 31110, + "朵": 31111, + "杏": 31112, + "杰": 31113, + "杲": 31114, + "枭": 31115, + "枯": 31116, + "柆": 31117, + "柜": 31118, + "柴": 31119, + "栄": 31120, + "栖": 31121, + "栞": 31122, + "栽": 31123, + "栾": 31124, + "桁": 31125, + "桎": 31126, + "桥": 31127, + "桧": 31128, + "梏": 31129, + "梓": 31130, + "梭": 31131, + "梯": 31132, + "械": 31133, + "梵": 31134, + "棋": 31135, + "棍": 31136, + "棗": 31137, + "棱": 31138, + "棲": 31139, + "棵": 31140, + "椅": 31141, + "椛": 31142, + "椰": 31143, + "楯": 31144, + "榆": 31145, + "榊": 31146, + "榛": 31147, + "榫": 31148, + "榴": 31149, + "槌": 31150, + "槍": 31151, + "槛": 31152, + "槤": 31153, + "樉": 31154, + "樗": 31155, + "樛": 31156, + "樟": 31157, + "樫": 31158, + "樱": 31159, + "橚": 31160, + "橿": 31161, + "檔": 31162, + "檚": 31163, + "檜": 31164, + "檢": 31165, + "檳": 31166, + "欒": 31167, + "欠": 31168, + "歉": 31169, + "歪": 31170, + "歳": 31171, + "殃": 31172, + "殉": 31173, + "殖": 31174, + "殷": 31175, + "毁": 31176, + "毎": 31177, + "汁": 31178, + "汝": 31179, + "汰": 31180, + "沌": 31181, + "沐": 31182, + "沧": 31183, + "沫": 31184, + "沮": 31185, + "沸": 31186, + "沽": 31187, + "泛": 31188, + "泽": 31189, + "泾": 31190, + "洁": 31191, + "浚": 31192, + "浪": 31193, + "浸": 31194, + "淆": 31195, + "淳": 31196, + "淸": 31197, + "渁": 31198, + "渇": 31199, + "済": 31200, + "減": 31201, + "渥": 31202, + "溢": 31203, + "溯": 31204, + "溶": 31205, + "溺": 31206, + "滋": 31207, + "滑": 31208, + "滕": 31209, + "滨": 31210, + "滩": 31211, + "漁": 31212, + "漱": 31213, + "漳": 31214, + "潭": 31215, + "潮": 31216, + "激": 31217, + "濞": 31218, + "瀛": 31219, + "炮": 31220, + "炯": 31221, + "炷": 31222, + "炸": 31223, + "烘": 31224, + "烙": 31225, + "烤": 31226, + "焦": 31227, + "焯": 31228, + "煩": 31229, + "煮": 31230, + "燈": 31231, + "燥": 31232, + "爐": 31233, + "爪": 31234, + "爭": 31235, + "爽": 31236, + "牜": 31237, + "牢": 31238, + "牵": 31239, + "牽": 31240, + "犖": 31241, + "犭": 31242, + "狛": 31243, + "狡": 31244, + "狭": 31245, + "狱": 31246, + "猜": 31247, + "獩": 31248, + "獬": 31249, + "獲": 31250, + "獳": 31251, + "獸": 31252, + "玑": 31253, + "玛": 31254, + "玻": 31255, + "琅": 31256, + "琊": 31257, + "琬": 31258, + "琮": 31259, + "瑋": 31260, + "瑙": 31261, + "瑣": 31262, + "瑤": 31263, + "瑾": 31264, + "璉": 31265, + "璣": 31266, + "璽": 31267, + "瓢": 31268, + "瓲": 31269, + "瓷": 31270, + "甸": 31271, + "甽": 31272, + "畅": 31273, + "畑": 31274, + "疫": 31275, + "疾": 31276, + "痲": 31277, + "痴": 31278, + "瘤": 31279, + "瘦": 31280, + "癩": 31281, + "癯": 31282, + "皋": 31283, + "盈": 31284, + "盏": 31285, + "盥": 31286, + "矯": 31287, + "矿": 31288, + "砍": 31289, + "砖": 31290, + "础": 31291, + "硝": 31292, + "硥": 31293, + "硨": 31294, + "碍": 31295, + "碩": 31296, + "確": 31297, + "磯": 31298, + "磲": 31299, + "礎": 31300, + "祇": 31301, + "祚": 31302, + "祣": 31303, + "祯": 31304, + "禎": 31305, + "禦": 31306, + "禪": 31307, + "禺": 31308, + "秤": 31309, + "秩": 31310, + "积": 31311, + "稍": 31312, + "税": 31313, + "稔": 31314, + "稚": 31315, + "稳": 31316, + "稷": 31317, + "稹": 31318, + "稿": 31319, + "穌": 31320, + "穎": 31321, + "穗": 31322, + "穢": 31323, + "穩": 31324, + "穴": 31325, + "穿": 31326, + "窍": 31327, + "窘": 31328, + "笹": 31329, + "笼": 31330, + "筋": 31331, + "筐": 31332, + "筑": 31333, + "筹": 31334, + "箪": 31335, + "箭": 31336, + "築": 31337, + "篋": 31338, + "篤": 31339, + "簽": 31340, + "簿": 31341, + "籃": 31342, + "粘": 31343, + "粟": 31344, + "糊": 31345, + "糠": 31346, + "純": 31347, + "紡": 31348, + "紺": 31349, + "絆": 31350, + "絕": 31351, + "綁": 31352, + "綜": 31353, + "綠": 31354, + "綢": 31355, + "綯": 31356, + "綸": 31357, + "緯": 31358, + "縊": 31359, + "縦": 31360, + "繆": 31361, + "繋": 31362, + "繞": 31363, + "纖": 31364, + "纽": 31365, + "绅": 31366, + "织": 31367, + "绣": 31368, + "续": 31369, + "绮": 31370, + "绿": 31371, + "缠": 31372, + "缶": 31373, + "缽": 31374, + "罕": 31375, + "罚": 31376, + "署": 31377, + "罸": 31378, + "羞": 31379, + "羿": 31380, + "翘": 31381, + "翡": 31382, + "翱": 31383, + "翹": 31384, + "耗": 31385, + "聂": 31386, + "聃": 31387, + "聘": 31388, + "聰": 31389, + "聽": 31390, + "聿": 31391, + "肆": 31392, + "肌": 31393, + "肚": 31394, + "肠": 31395, + "肢": 31396, + "肥": 31397, + "胀": 31398, + "胠": 31399, + "胤": 31400, + "脂": 31401, + "脉": 31402, + "脊": 31403, + "脩": 31404, + "腊": 31405, + "腎": 31406, + "腑": 31407, + "腦": 31408, + "臉": 31409, + "臘": 31410, + "臻": 31411, + "舅": 31412, + "舊": 31413, + "舖": 31414, + "舜": 31415, + "舟": 31416, + "舵": 31417, + "艳": 31418, + "艶": 31419, + "艹": 31420, + "艾": 31421, + "芮": 31422, + "芯": 31423, + "苍": 31424, + "苣": 31425, + "苹": 31426, + "苺": 31427, + "茂": 31428, + "茉": 31429, + "荔": 31430, + "荥": 31431, + "荪": 31432, + "荫": 31433, + "荻": 31434, + "荼": 31435, + "莎": 31436, + "莘": 31437, + "莞": 31438, + "莴": 31439, + "菇": 31440, + "菉": 31441, + "菲": 31442, + "萄": 31443, + "萊": 31444, + "萝": 31445, + "葆": 31446, + "葡": 31447, + "葦": 31448, + "葫": 31449, + "葵": 31450, + "蓀": 31451, + "蓉": 31452, + "蓑": 31453, + "蓬": 31454, + "蕨": 31455, + "蕩": 31456, + "薄": 31457, + "薊": 31458, + "薪": 31459, + "藁": 31460, + "藐": 31461, + "藻": 31462, + "蘅": 31463, + "蘑": 31464, + "蘸": 31465, + "虐": 31466, + "虔": 31467, + "虛": 31468, + "虞": 31469, + "虱": 31470, + "蛙": 31471, + "蛭": 31472, + "蜀": 31473, + "蜃": 31474, + "蝉": 31475, + "蝕": 31476, + "蟲": 31477, + "蠻": 31478, + "衔": 31479, + "衙": 31480, + "衷": 31481, + "袈": 31482, + "裔": 31483, + "裟": 31484, + "裳": 31485, + "褒": 31486, + "覃": 31487, + "覆": 31488, + "覡": 31489, + "覧": 31490, + "觳": 31491, + "訁": 31492, + "訓": 31493, + "註": 31494, + "詢": 31495, + "詣": 31496, + "試": 31497, + "誐": 31498, + "誦": 31499, + "諒": 31500, + "諭": 31501, + "諷": 31502, + "諺": 31503, + "謀": 31504, + "謙": 31505, + "謚": 31506, + "謨": 31507, + "謹": 31508, + "讐": 31509, + "讓": 31510, + "订": 31511, + "讼": 31512, + "诀": 31513, + "谚": 31514, + "谜": 31515, + "谱": 31516, + "豌": 31517, + "豐": 31518, + "豔": 31519, + "豬": 31520, + "豸": 31521, + "貅": 31522, + "貔": 31523, + "賈": 31524, + "賊": 31525, + "賽": 31526, + "贞": 31527, + "贡": 31528, + "贫": 31529, + "贯": 31530, + "贴": 31531, + "贸": 31532, + "贺": 31533, + "贼": 31534, + "赋": 31535, + "赏": 31536, + "赖": 31537, + "赞": 31538, + "赢": 31539, + "赭": 31540, + "跃": 31541, + "跆": 31542, + "跑": 31543, + "跨": 31544, + "跻": 31545, + "踊": 31546, + "踏": 31547, + "踐": 31548, + "踢": 31549, + "蹴": 31550, + "躍": 31551, + "輒": 31552, + "輛": 31553, + "輩": 31554, + "轩": 31555, + "辅": 31556, + "辦": 31557, + "辺": 31558, + "辽": 31559, + "辿": 31560, + "迄": 31561, + "迈": 31562, + "迎": 31563, + "迫": 31564, + "迹": 31565, + "逃": 31566, + "逊": 31567, + "递": 31568, + "逯": 31569, + "週": 31570, + "遐": 31571, + "遜": 31572, + "遢": 31573, + "適": 31574, + "遭": 31575, + "遲": 31576, + "遵": 31577, + "遷": 31578, + "邁": 31579, + "邏": 31580, + "郛": 31581, + "郝": 31582, + "鄧": 31583, + "鄱": 31584, + "酔": 31585, + "酱": 31586, + "醋": 31587, + "釗": 31588, + "鉗": 31589, + "銓": 31590, + "銘": 31591, + "銳": 31592, + "鋒": 31593, + "錯": 31594, + "鎧": 31595, + "鐸": 31596, + "鑒": 31597, + "针": 31598, + "钊": 31599, + "钗": 31600, + "钢": 31601, + "钦": 31602, + "钮": 31603, + "钻": 31604, + "铭": 31605, + "铺": 31606, + "锁": 31607, + "锅": 31608, + "锋": 31609, + "锦": 31610, + "镗": 31611, + "镜": 31612, + "閨": 31613, + "闯": 31614, + "闲": 31615, + "闻": 31616, + "阔": 31617, + "陕": 31618, + "陟": 31619, + "险": 31620, + "陪": 31621, + "陷": 31622, + "隅": 31623, + "障": 31624, + "隣": 31625, + "隨": 31626, + "隷": 31627, + "雁": 31628, + "雍": 31629, + "雛": 31630, + "雾": 31631, + "霰": 31632, + "靴": 31633, + "靼": 31634, + "鞍": 31635, + "鞠": 31636, + "韃": 31637, + "韦": 31638, + "韭": 31639, + "韻": 31640, + "頊": 31641, + "頌": 31642, + "頡": 31643, + "頸": 31644, + "頹": 31645, + "顆": 31646, + "額": 31647, + "顓": 31648, + "顛": 31649, + "顧": 31650, + "颂": 31651, + "预": 31652, + "颈": 31653, + "颊": 31654, + "颖": 31655, + "额": 31656, + "颤": 31657, + "飞": 31658, + "飾": 31659, + "餅": 31660, + "餓": 31661, + "餘": 31662, + "餮": 31663, + "饕": 31664, + "馅": 31665, + "馒": 31666, + "馗": 31667, + "駐": 31668, + "駕": 31669, + "駙": 31670, + "駿": 31671, + "騭": 31672, + "騷": 31673, + "驁": 31674, + "驤": 31675, + "驼": 31676, + "骑": 31677, + "骸": 31678, + "髪": 31679, + "鬘": 31680, + "鬥": 31681, + "魁": 31682, + "魃": 31683, + "魈": 31684, + "鮑": 31685, + "鮫": 31686, + "鮮": 31687, + "鯖": 31688, + "鯤": 31689, + "鯨": 31690, + "鯱": 31691, + "鯵": 31692, + "鱗": 31693, + "鲤": 31694, + "鳶": 31695, + "鴉": 31696, + "鴣": 31697, + "鴨": 31698, + "鵊": 31699, + "鵡": 31700, + "鵰": 31701, + "鵲": 31702, + "鶍": 31703, + "鷄": 31704, + "鷓": 31705, + "鷫": 31706, + "鷺": 31707, + "鸚": 31708, + "鸟": 31709, + "鸿": 31710, + "鹅": 31711, + "鹼": 31712, + "麵": 31713, + "麾": 31714, + "麿": 31715, + "黐": 31716, + "黙": 31717, + "齉": 31718, + "齐": 31719, + "ꜩ": 31720, + "ꜫ": 31721, + "ꜭ": 31722, + "ꞅ": 31723, + "ꞎ": 31724, + "Ʞ": 31725, + "ꦂ": 31726, + "ꦠ": 31727, + "ꦯ": 31728, + "ꦲ": 31729, + "ꦸ": 31730, + "갈": 31731, + "갑": 31732, + "갱": 31733, + "걷": 31734, + "걸": 31735, + "겁": 31736, + "겐": 31737, + "겪": 31738, + "견": 31739, + "곡": 31740, + "곱": 31741, + "곽": 31742, + "굴": 31743, + "규": 31744, + "극": 31745, + "긴": 31746, + "깝": 31747, + "깨": 31748, + "꺼": 31749, + "껌": 31750, + "껐": 31751, + "꾸": 31752, + "꾼": 31753, + "끄": 31754, + "끝": 31755, + "끼": 31756, + "냄": 31757, + "냉": 31758, + "넋": 31759, + "넝": 31760, + "녁": 31761, + "놀": 31762, + "놈": 31763, + "높": 31764, + "놔": 31765, + "뉴": 31766, + "느": 31767, + "늑": 31768, + "능": 31769, + "늬": 31770, + "닿": 31771, + "덕": 31772, + "던": 31773, + "덴": 31774, + "델": 31775, + "돈": 31776, + "됐": 31777, + "둥": 31778, + "뒤": 31779, + "듀": 31780, + "듈": 31781, + "따": 31782, + "딱": 31783, + "떼": 31784, + "똣": 31785, + "뜨": 31786, + "랩": 31787, + "랭": 31788, + "랴": 31789, + "럴": 31790, + "렁": 31791, + "렘": 31792, + "렵": 31793, + "령": 31794, + "롱": 31795, + "륙": 31796, + "륨": 31797, + "맘": 31798, + "맙": 31799, + "머": 31800, + "멈": 31801, + "멤": 31802, + "몬": 31803, + "몸": 31804, + "뭐": 31805, + "뮬": 31806, + "밴": 31807, + "뱅": 31808, + "범": 31809, + "벤": 31810, + "벨": 31811, + "분": 31812, + "붉": 31813, + "뷰": 31814, + "뻐": 31815, + "뻤": 31816, + "뿌": 31817, + "쁨": 31818, + "삶": 31819, + "삿": 31820, + "샘": 31821, + "샛": 31822, + "섯": 31823, + "셋": 31824, + "셰": 31825, + "솔": 31826, + "술": 31827, + "숫": 31828, + "숲": 31829, + "슈": 31830, + "승": 31831, + "싱": 31832, + "쌈": 31833, + "쌍": 31834, + "쌤": 31835, + "쎈": 31836, + "쏟": 31837, + "알": 31838, + "암": 31839, + "앤": 31840, + "얀": 31841, + "엠": 31842, + "엽": 31843, + "올": 31844, + "옹": 31845, + "왈": 31846, + "왓": 31847, + "욱": 31848, + "웅": 31849, + "워": 31850, + "윅": 31851, + "육": 31852, + "읍": 31853, + "잉": 31854, + "잘": 31855, + "잠": 31856, + "젖": 31857, + "젤": 31858, + "존": 31859, + "준": 31860, + "줘": 31861, + "쥐": 31862, + "증": 31863, + "쩌": 31864, + "쩐": 31865, + "쪽": 31866, + "참": 31867, + "찾": 31868, + "철": 31869, + "축": 31870, + "춤": 31871, + "칡": 31872, + "침": 31873, + "컴": 31874, + "켜": 31875, + "콜": 31876, + "콤": 31877, + "퀸": 31878, + "큼": 31879, + "킥": 31880, + "킨": 31881, + "탄": 31882, + "탈": 31883, + "택": 31884, + "틋": 31885, + "팀": 31886, + "팔": 31887, + "팡": 31888, + "팥": 31889, + "퍼": 31890, + "페": 31891, + "펜": 31892, + "평": 31893, + "폴": 31894, + "퓨": 31895, + "픈": 31896, + "핑": 31897, + "항": 31898, + "햇": 31899, + "했": 31900, + "행": 31901, + "혁": 31902, + "혈": 31903, + "홍": 31904, + "환": 31905, + "획": 31906, + "흥": 31907, + "히": 31908, + "힘": 31909, + "": 31910, + "︠": 31911, + "︡": 31912, + "𐀁": 31913, + "𐀈": 31914, + "𐀫": 31915, + "𐌲": 31916, + "𐌳": 31917, + "𐌷": 31918, + "𐌽": 31919, + "𐌾": 31920, + "𐌿": 31921, + "𐍂": 31922, + "𐍄": 31923, + "𐎰": 31924, + "𐎺": 31925, + "𐐀": 31926, + "𐐍": 31927, + "𐐐": 31928, + "𐐒": 31929, + "𐐢": 31930, + "𐐣": 31931, + "𐐭": 31932, + "𐐲": 31933, + "𐐵": 31934, + "𐐹": 31935, + "𐐺": 31936, + "𐐼": 31937, + "𐑅": 31938, + "𐑋": 31939, + "𐬀": 31940, + "𐬌": 31941, + "𐬍": 31942, + "𐬎": 31943, + "𐬛": 31944, + "𐬠": 31945, + "𐬱": 31946, + "𐭃": 31947, + "𐭓": 31948, + "𒀯": 31949, + "𒀳": 31950, + "𒁳": 31951, + "𒆗": 31952, + "𒆘": 31953, + "🇨": 31954, + "🇬": 31955, + "🇲": 31956, + "🇽": 31957, + "🇿": 31958, + "🌋": 31959, + "🌍": 31960, + "🌜": 31961, + "🌠": 31962, + "🌤": 31963, + "🌱": 31964, + "🌳": 31965, + "🌺": 31966, + "🌼": 31967, + "🍊": 31968, + "🍚": 31969, + "🍪": 31970, + "🎁": 31971, + "🎃": 31972, + "🎓": 31973, + "🎬": 31974, + "🎭": 31975, + "🎼": 31976, + "🏠": 31977, + "🏨": 31978, + "🏷": 31979, + "🏻": 31980, + "🐕": 31981, + "🐘": 31982, + "👆": 31983, + "👏": 31984, + "👶": 31985, + "💌": 31986, + "💙": 31987, + "💜": 31988, + "💧": 31989, + "💬": 31990, + "💯": 31991, + "💰": 31992, + "💵": 31993, + "📎": 31994, + "📏": 31995, + "📑": 31996, + "📜": 31997, + "📞": 31998, + "📢": 31999 + }, + "merges": [ + [ + "▁", + "t" + ], + [ + "h", + "e" + ], + [ + "▁", + "a" + ], + [ + "i", + "n" + ], + [ + "▁th", + "e" + ], + [ + "▁t", + "he" + ], + [ + "▁", + "the" + ], + [ + "e", + "r" + ], + [ + "o", + "n" + ], + [ + "r", + "e" + ], + [ + "▁", + "s" + ], + [ + "▁", + "o" + ], + [ + "▁", + "w" + ], + [ + "a", + "t" + ], + [ + "e", + "d" + ], + [ + "e", + "n" + ], + [ + "a", + "n" + ], + [ + "▁", + "," + ], + [ + "▁", + "c" + ], + [ + "o", + "r" + ], + [ + "i", + "t" + ], + [ + "i", + "s" + ], + [ + "e", + "s" + ], + [ + "▁", + "f" + ], + [ + "▁a", + "n" + ], + [ + "▁", + "an" + ], + [ + "▁", + "b" + ], + [ + "a", + "r" + ], + [ + "▁o", + "f" + ], + [ + "▁", + "of" + ], + [ + "a", + "l" + ], + [ + "▁", + "p" + ], + [ + "▁i", + "n" + ], + [ + "▁", + "in" + ], + [ + "in", + "g" + ], + [ + "i", + "ng" + ], + [ + "▁", + "." + ], + [ + "▁an", + "d" + ], + [ + "▁a", + "nd" + ], + [ + "▁", + "and" + ], + [ + "a", + "s" + ], + [ + "o", + "u" + ], + [ + "▁t", + "o" + ], + [ + "▁", + "to" + ], + [ + "▁", + "m" + ], + [ + "i", + "c" + ], + [ + "▁", + "d" + ], + [ + "io", + "n" + ], + [ + "i", + "on" + ], + [ + "l", + "e" + ], + [ + "▁", + "h" + ], + [ + "r", + "o" + ], + [ + "▁", + "T" + ], + [ + "▁r", + "e" + ], + [ + "▁", + "re" + ], + [ + "i", + "l" + ], + [ + "en", + "t" + ], + [ + "e", + "nt" + ], + [ + "▁t", + "h" + ], + [ + "▁", + "th" + ], + [ + "▁", + "A" + ], + [ + "▁", + "l" + ], + [ + "▁", + "S" + ], + [ + "s", + "t" + ], + [ + "▁", + "n" + ], + [ + "e", + "l" + ], + [ + "o", + "m" + ], + [ + "▁", + "e" + ], + [ + "c", + "t" + ], + [ + "▁", + "1" + ], + [ + "▁", + "C" + ], + [ + "a", + "m" + ], + [ + "a", + "d" + ], + [ + "e", + "t" + ], + [ + "o", + "l" + ], + [ + "▁", + "\"" + ], + [ + "▁", + "g" + ], + [ + "▁", + "M" + ], + [ + "l", + "y" + ], + [ + "i", + "m" + ], + [ + "i", + "d" + ], + [ + "▁o", + "n" + ], + [ + "▁", + "on" + ], + [ + "▁", + "I" + ], + [ + "u", + "r" + ], + [ + "▁Th", + "e" + ], + [ + "▁T", + "he" + ], + [ + "▁", + "The" + ], + [ + "i", + "v" + ], + [ + "o", + "t" + ], + [ + "▁b", + "e" + ], + [ + "▁", + "be" + ], + [ + "▁fo", + "r" + ], + [ + "▁f", + "or" + ], + [ + "▁", + "for" + ], + [ + "▁wa", + "s" + ], + [ + "▁w", + "as" + ], + [ + "▁", + "was" + ], + [ + "▁", + "B" + ], + [ + "c", + "e" + ], + [ + "i", + "g" + ], + [ + "i", + "r" + ], + [ + "u", + "t" + ], + [ + "u", + "s" + ], + [ + "c", + "h" + ], + [ + "▁", + "@" + ], + [ + "o", + "w" + ], + [ + "ati", + "on" + ], + [ + "at", + "ion" + ], + [ + "u", + "n" + ], + [ + "▁a", + "s" + ], + [ + "▁", + "as" + ], + [ + "▁s", + "t" + ], + [ + "▁", + "st" + ], + [ + "a", + "y" + ], + [ + "▁i", + "s" + ], + [ + "▁", + "is" + ], + [ + "it", + "h" + ], + [ + "i", + "th" + ], + [ + "▁th", + "at" + ], + [ + "▁t", + "hat" + ], + [ + "▁", + "that" + ], + [ + "er", + "s" + ], + [ + "e", + "rs" + ], + [ + "▁", + "H" + ], + [ + "▁", + "P" + ], + [ + "he", + "r" + ], + [ + "h", + "er" + ], + [ + "r", + "a" + ], + [ + "▁", + "2" + ], + [ + "▁wit", + "h" + ], + [ + "▁w", + "ith" + ], + [ + "▁", + "with" + ], + [ + "▁", + "'" + ], + [ + "te", + "r" + ], + [ + "t", + "er" + ], + [ + "▁", + "R" + ], + [ + "ve", + "r" + ], + [ + "v", + "er" + ], + [ + "u", + "l" + ], + [ + "▁", + "D" + ], + [ + "▁w", + "h" + ], + [ + "▁", + "wh" + ], + [ + "-", + "@" + ], + [ + "▁@", + "-@" + ], + [ + "▁", + "(" + ], + [ + "e", + "m" + ], + [ + "▁a", + "l" + ], + [ + "▁", + "al" + ], + [ + "▁co", + "n" + ], + [ + "▁c", + "on" + ], + [ + "▁", + "con" + ], + [ + "▁", + "W" + ], + [ + "▁", + "L" + ], + [ + "▁", + "F" + ], + [ + "o", + "s" + ], + [ + "t", + "h" + ], + [ + "▁b", + "y" + ], + [ + "▁", + "by" + ], + [ + "▁i", + "t" + ], + [ + "▁", + "it" + ], + [ + "▁d", + "e" + ], + [ + "▁", + "de" + ], + [ + "▁", + "G" + ], + [ + "an", + "d" + ], + [ + "a", + "nd" + ], + [ + "▁a", + "t" + ], + [ + "▁", + "at" + ], + [ + "▁h", + "e" + ], + [ + "▁", + "he" + ], + [ + "▁", + "N" + ], + [ + "▁pr", + "o" + ], + [ + "▁p", + "ro" + ], + [ + "▁", + "pro" + ], + [ + "▁", + "E" + ], + [ + "a", + "v" + ], + [ + "es", + "t" + ], + [ + "e", + "st" + ], + [ + "u", + "m" + ], + [ + "ou", + "n" + ], + [ + "o", + "un" + ], + [ + "o", + "d" + ], + [ + "▁s", + "e" + ], + [ + "▁", + "se" + ], + [ + "a", + "c" + ], + [ + "is", + "t" + ], + [ + "i", + "st" + ], + [ + "▁", + "v" + ], + [ + "a", + "g" + ], + [ + "▁", + "y" + ], + [ + "▁1", + "9" + ], + [ + "▁", + "19" + ], + [ + "0", + "0" + ], + [ + "i", + "f" + ], + [ + "ro", + "m" + ], + [ + "r", + "om" + ], + [ + "ai", + "n" + ], + [ + "a", + "in" + ], + [ + "▁", + "J" + ], + [ + "r", + "i" + ], + [ + "o", + "p" + ], + [ + "▁co", + "m" + ], + [ + "▁c", + "om" + ], + [ + "▁", + "com" + ], + [ + "il", + "l" + ], + [ + "i", + "ll" + ], + [ + "▁", + "r" + ], + [ + "▁fro", + "m" + ], + [ + "▁fr", + "om" + ], + [ + "▁f", + "rom" + ], + [ + "▁", + "from" + ], + [ + "or", + "e" + ], + [ + "o", + "re" + ], + [ + "▁o", + "r" + ], + [ + "▁", + "or" + ], + [ + "▁I", + "n" + ], + [ + "▁", + "In" + ], + [ + "l", + "d" + ], + [ + "▁", + ")" + ], + [ + "re", + "s" + ], + [ + "r", + "es" + ], + [ + "▁", + "O" + ], + [ + "▁s", + "u" + ], + [ + "a", + "b" + ], + [ + "ie", + "s" + ], + [ + "i", + "es" + ], + [ + "p", + "p" + ], + [ + "e", + "w" + ], + [ + "at", + "e" + ], + [ + "a", + "te" + ], + [ + "▁ar", + "e" + ], + [ + "▁a", + "re" + ], + [ + "▁", + "are" + ], + [ + "ig", + "h" + ], + [ + "i", + "gh" + ], + [ + "an", + "t" + ], + [ + "a", + "nt" + ], + [ + "▁e", + "x" + ], + [ + "▁", + "ex" + ], + [ + "▁", + "k" + ], + [ + "a", + "k" + ], + [ + "es", + "s" + ], + [ + "e", + "ss" + ], + [ + "ou", + "r" + ], + [ + "o", + "ur" + ], + [ + "or", + "t" + ], + [ + "q", + "u" + ], + [ + "ar", + "t" + ], + [ + "s", + "e" + ], + [ + "it", + "y" + ], + [ + "i", + "ty" + ], + [ + "▁h", + "is" + ], + [ + "▁", + "his" + ], + [ + "u", + "d" + ], + [ + "▁c", + "h" + ], + [ + "▁", + "ch" + ], + [ + "o", + "c" + ], + [ + "iv", + "e" + ], + [ + "i", + "ve" + ], + [ + "ic", + "h" + ], + [ + "i", + "ch" + ], + [ + "ar", + "d" + ], + [ + "a", + "rd" + ], + [ + "er", + "e" + ], + [ + "e", + "re" + ], + [ + "▁", + "K" + ], + [ + "al", + "l" + ], + [ + "a", + "ll" + ], + [ + "ec", + "t" + ], + [ + "e", + "ct" + ], + [ + "▁u", + "n" + ], + [ + "▁", + "un" + ], + [ + "men", + "t" + ], + [ + "me", + "nt" + ], + [ + "m", + "ent" + ], + [ + "be", + "r" + ], + [ + "b", + "er" + ], + [ + "▁s", + "h" + ], + [ + "▁", + "sh" + ], + [ + "g", + "h" + ], + [ + "▁we", + "re" + ], + [ + "▁w", + "ere" + ], + [ + "▁p", + "l" + ], + [ + "▁", + "pl" + ], + [ + "ate", + "d" + ], + [ + "at", + "ed" + ], + [ + "a", + "ted" + ], + [ + "on", + "g" + ], + [ + "o", + "ng" + ], + [ + "p", + "t" + ], + [ + "en", + "d" + ], + [ + "e", + "nd" + ], + [ + "▁l", + "e" + ], + [ + "▁", + "le" + ], + [ + "ea", + "r" + ], + [ + "e", + "ar" + ], + [ + "▁", + "U" + ], + [ + "▁no", + "t" + ], + [ + "▁n", + "ot" + ], + [ + "▁", + "not" + ], + [ + "ia", + "l" + ], + [ + "i", + "al" + ], + [ + "g", + "e" + ], + [ + "ur", + "e" + ], + [ + "u", + "re" + ], + [ + "as", + "t" + ], + [ + "a", + "st" + ], + [ + "i", + "p" + ], + [ + "av", + "e" + ], + [ + "a", + "ve" + ], + [ + "▁s", + "p" + ], + [ + "▁", + "sp" + ], + [ + "▁", + ":" + ], + [ + "▁wh", + "ich" + ], + [ + "▁", + "which" + ], + [ + "o", + "v" + ], + [ + "ou", + "gh" + ], + [ + "an", + "s" + ], + [ + "a", + "ns" + ], + [ + "el", + "l" + ], + [ + "e", + "ll" + ], + [ + "igh", + "t" + ], + [ + "ig", + "ht" + ], + [ + "i", + "ght" + ], + [ + "am", + "e" + ], + [ + "a", + "me" + ], + [ + "os", + "t" + ], + [ + "o", + "st" + ], + [ + "ou", + "t" + ], + [ + "o", + "ut" + ], + [ + "ica", + "l" + ], + [ + "ic", + "al" + ], + [ + "i", + "cal" + ], + [ + "o", + "g" + ], + [ + "us", + "t" + ], + [ + "u", + "st" + ], + [ + "in", + "e" + ], + [ + "i", + "ne" + ], + [ + "a", + "p" + ], + [ + "oun", + "d" + ], + [ + "ou", + "nd" + ], + [ + "o", + "und" + ], + [ + "▁S", + "t" + ], + [ + "▁", + "St" + ], + [ + "▁ha", + "d" + ], + [ + "▁h", + "ad" + ], + [ + "i", + "a" + ], + [ + "▁u", + "s" + ], + [ + "▁", + "us" + ], + [ + "e", + "c" + ], + [ + "oul", + "d" + ], + [ + "ou", + "ld" + ], + [ + "▁a", + "r" + ], + [ + "▁", + "ar" + ], + [ + "ir", + "e" + ], + [ + "i", + "re" + ], + [ + "the", + "r" + ], + [ + "th", + "er" + ], + [ + "t", + "her" + ], + [ + "or", + "d" + ], + [ + "o", + "rd" + ], + [ + "ar", + "y" + ], + [ + "a", + "ry" + ], + [ + "ion", + "s" + ], + [ + "io", + "ns" + ], + [ + "i", + "ons" + ], + [ + "c", + "l" + ], + [ + "ou", + "s" + ], + [ + "o", + "us" + ], + [ + "f", + "f" + ], + [ + "▁ha", + "ve" + ], + [ + "▁h", + "ave" + ], + [ + "ac", + "k" + ], + [ + "a", + "ck" + ], + [ + "▁in", + "t" + ], + [ + "▁i", + "nt" + ], + [ + "▁", + "int" + ], + [ + "▁a", + "b" + ], + [ + "▁", + "ab" + ], + [ + "c", + "c" + ], + [ + "ri", + "t" + ], + [ + "r", + "it" + ], + [ + "▁com", + "p" + ], + [ + "▁co", + "mp" + ], + [ + "▁c", + "omp" + ], + [ + "▁", + "comp" + ], + [ + "▁", + "3" + ], + [ + "▁wh", + "e" + ], + [ + "▁w", + "he" + ], + [ + "▁", + "whe" + ], + [ + "i", + "k" + ], + [ + "i", + "z" + ], + [ + "▁", + "V" + ], + [ + "de", + "r" + ], + [ + "d", + "er" + ], + [ + "▁the", + "ir" + ], + [ + "▁con", + "t" + ], + [ + "▁co", + "nt" + ], + [ + "▁c", + "ont" + ], + [ + "▁", + "cont" + ], + [ + "id", + "e" + ], + [ + "i", + "de" + ], + [ + "▁C", + "h" + ], + [ + "▁", + "Ch" + ], + [ + "om", + "e" + ], + [ + "o", + "me" + ], + [ + "ar", + "e" + ], + [ + "a", + "re" + ], + [ + "▁bu", + "t" + ], + [ + "▁b", + "ut" + ], + [ + "▁", + "but" + ], + [ + "s", + "o" + ], + [ + "u", + "p" + ], + [ + "ia", + "n" + ], + [ + "i", + "an" + ], + [ + "r", + "u" + ], + [ + "▁2", + "0" + ], + [ + "▁", + "20" + ], + [ + "▁20", + "0" + ], + [ + "▁2", + "00" + ], + [ + "▁", + "200" + ], + [ + "r", + "y" + ], + [ + "or", + "k" + ], + [ + "i", + "e" + ], + [ + "▁th", + "is" + ], + [ + "▁t", + "his" + ], + [ + "▁", + "this" + ], + [ + "▁a", + "d" + ], + [ + "▁", + "ad" + ], + [ + "ac", + "t" + ], + [ + "a", + "ct" + ], + [ + "d", + "u" + ], + [ + "pe", + "r" + ], + [ + "p", + "er" + ], + [ + "is", + "h" + ], + [ + "i", + "sh" + ], + [ + "▁c", + "l" + ], + [ + "▁", + "cl" + ], + [ + "▁T", + "h" + ], + [ + "▁", + "Th" + ], + [ + "o", + "k" + ], + [ + "or", + "m" + ], + [ + "o", + "rm" + ], + [ + "▁e", + "n" + ], + [ + "▁", + "en" + ], + [ + "ate", + "r" + ], + [ + "at", + "er" + ], + [ + "a", + "ter" + ], + [ + "▁t", + "e" + ], + [ + "▁", + "te" + ], + [ + "ig", + "n" + ], + [ + "i", + "gn" + ], + [ + "ag", + "e" + ], + [ + "a", + "ge" + ], + [ + "as", + "s" + ], + [ + "a", + "ss" + ], + [ + "▁re", + "s" + ], + [ + "▁r", + "es" + ], + [ + "▁", + "res" + ], + [ + "i", + "b" + ], + [ + "▁ca", + "n" + ], + [ + "▁c", + "an" + ], + [ + "▁", + "can" + ], + [ + "▁al", + "so" + ], + [ + "▁", + "also" + ], + [ + "irs", + "t" + ], + [ + "ir", + "st" + ], + [ + "ul", + "t" + ], + [ + "enc", + "e" + ], + [ + "en", + "ce" + ], + [ + "e", + "nce" + ], + [ + "u", + "b" + ], + [ + "▁it", + "s" + ], + [ + "▁i", + "ts" + ], + [ + "▁", + "its" + ], + [ + "▁i", + "m" + ], + [ + "▁", + "im" + ], + [ + "ft", + "er" + ], + [ + "f", + "ter" + ], + [ + "▁", + "j" + ], + [ + "u", + "e" + ], + [ + "▁al", + "l" + ], + [ + "▁a", + "ll" + ], + [ + "▁", + "all" + ], + [ + "▁pe", + "r" + ], + [ + "▁p", + "er" + ], + [ + "▁", + "per" + ], + [ + "w", + "o" + ], + [ + "all", + "y" + ], + [ + "al", + "ly" + ], + [ + "▁w", + "e" + ], + [ + "▁", + "we" + ], + [ + "p", + "l" + ], + [ + "▁ha", + "s" + ], + [ + "▁h", + "as" + ], + [ + "▁", + "has" + ], + [ + "▁di", + "s" + ], + [ + "▁d", + "is" + ], + [ + "▁", + "dis" + ], + [ + "▁on", + "e" + ], + [ + "▁o", + "ne" + ], + [ + "▁", + "one" + ], + [ + "me", + "r" + ], + [ + "m", + "er" + ], + [ + "im", + "e" + ], + [ + "i", + "me" + ], + [ + "▁the", + "y" + ], + [ + "▁th", + "ey" + ], + [ + "▁t", + "hey" + ], + [ + "fe", + "r" + ], + [ + "f", + "er" + ], + [ + "▁f", + "irst" + ], + [ + "anc", + "e" + ], + [ + "an", + "ce" + ], + [ + "a", + "nce" + ], + [ + "▁wh", + "o" + ], + [ + "▁w", + "ho" + ], + [ + "ation", + "s" + ], + [ + "ati", + "ons" + ], + [ + "at", + "ions" + ], + [ + "ct", + "ion" + ], + [ + "▁s", + "c" + ], + [ + "▁", + "sc" + ], + [ + "el", + "y" + ], + [ + "e", + "ly" + ], + [ + "on", + "d" + ], + [ + "o", + "nd" + ], + [ + "▁he", + "r" + ], + [ + "▁h", + "er" + ], + [ + "▁", + "her" + ], + [ + "ow", + "n" + ], + [ + "o", + "wn" + ], + [ + "ic", + "e" + ], + [ + "i", + "ce" + ], + [ + "▁par", + "t" + ], + [ + "▁p", + "art" + ], + [ + "▁", + "part" + ], + [ + "iti", + "on" + ], + [ + "it", + "ion" + ], + [ + "il", + "e" + ], + [ + "i", + "le" + ], + [ + "▁A", + "n" + ], + [ + "▁", + "An" + ], + [ + "▁I", + "t" + ], + [ + "▁", + "It" + ], + [ + "▁H", + "e" + ], + [ + "▁", + "He" + ], + [ + "▁ma", + "n" + ], + [ + "▁m", + "an" + ], + [ + "▁", + "man" + ], + [ + "▁ap", + "p" + ], + [ + "▁a", + "pp" + ], + [ + "▁", + "app" + ], + [ + "ac", + "h" + ], + [ + "a", + "ch" + ], + [ + "he", + "d" + ], + [ + "h", + "ed" + ], + [ + "▁ot", + "her" + ], + [ + "▁o", + "ther" + ], + [ + "▁", + "other" + ], + [ + "re", + "e" + ], + [ + "r", + "ee" + ], + [ + "▁pr", + "e" + ], + [ + "▁p", + "re" + ], + [ + "▁", + "pre" + ], + [ + "▁20", + "1" + ], + [ + "▁re", + "c" + ], + [ + "▁r", + "ec" + ], + [ + "▁", + "rec" + ], + [ + "▁be", + "c" + ], + [ + "▁b", + "ec" + ], + [ + "▁", + "bec" + ], + [ + "▁ou", + "t" + ], + [ + "▁o", + "ut" + ], + [ + "▁", + "out" + ], + [ + "en", + "s" + ], + [ + "e", + "ns" + ], + [ + "▁bee", + "n" + ], + [ + "▁be", + "en" + ], + [ + "▁b", + "een" + ], + [ + "▁n", + "e" + ], + [ + "▁", + "ne" + ], + [ + "▁", + "–" + ], + [ + "▁", + "4" + ], + [ + "re", + "n" + ], + [ + "r", + "en" + ], + [ + "▁a", + "g" + ], + [ + "▁", + "ag" + ], + [ + "ma", + "n" + ], + [ + "m", + "an" + ], + [ + "▁g", + "o" + ], + [ + "▁", + "go" + ], + [ + "e", + "p" + ], + [ + "▁A", + "l" + ], + [ + "▁", + "Al" + ], + [ + "res", + "s" + ], + [ + "re", + "ss" + ], + [ + "r", + "ess" + ], + [ + "ve", + "l" + ], + [ + "v", + "el" + ], + [ + "an", + "g" + ], + [ + "a", + "ng" + ], + [ + "ol", + "l" + ], + [ + "o", + "ll" + ], + [ + "it", + "e" + ], + [ + "i", + "te" + ], + [ + "▁mor", + "e" + ], + [ + "▁mo", + "re" + ], + [ + "▁m", + "ore" + ], + [ + "▁", + "more" + ], + [ + "ri", + "c" + ], + [ + "r", + "ic" + ], + [ + "or", + "y" + ], + [ + "o", + "ry" + ], + [ + "▁", + "5" + ], + [ + "abl", + "e" + ], + [ + "ab", + "le" + ], + [ + "a", + "ble" + ], + [ + "▁ye", + "ar" + ], + [ + "▁y", + "ear" + ], + [ + "▁", + "year" + ], + [ + "e", + "y" + ], + [ + "oun", + "t" + ], + [ + "ou", + "nt" + ], + [ + "o", + "unt" + ], + [ + "▁r", + "o" + ], + [ + "▁", + "ro" + ], + [ + "er", + "v" + ], + [ + "in", + "d" + ], + [ + "i", + "nd" + ], + [ + "▁tw", + "o" + ], + [ + "▁t", + "wo" + ], + [ + "▁", + "two" + ], + [ + "cl", + "ud" + ], + [ + "▁", + ";" + ], + [ + "▁s", + "a" + ], + [ + "▁", + "sa" + ], + [ + "▁", + "Y" + ], + [ + "▁de", + "s" + ], + [ + "▁d", + "es" + ], + [ + "▁", + "des" + ], + [ + "uri", + "ng" + ], + [ + "ur", + "ing" + ], + [ + "u", + "ring" + ], + [ + "▁u", + "p" + ], + [ + "▁", + "up" + ], + [ + "▁ov", + "er" + ], + [ + "▁o", + "ver" + ], + [ + "▁", + "over" + ], + [ + "ac", + "e" + ], + [ + "a", + "ce" + ], + [ + "ent", + "s" + ], + [ + "en", + "ts" + ], + [ + "▁1", + "8" + ], + [ + "▁", + "18" + ], + [ + "t", + "e" + ], + [ + "ad", + "e" + ], + [ + "a", + "de" + ], + [ + "▁e", + "v" + ], + [ + "▁", + "ev" + ], + [ + "▁", + "-" + ], + [ + "ar", + "k" + ], + [ + "il", + "d" + ], + [ + "i", + "ld" + ], + [ + "as", + "e" + ], + [ + "a", + "se" + ], + [ + "▁U", + "n" + ], + [ + "▁", + "Un" + ], + [ + "▁yo", + "u" + ], + [ + "▁y", + "ou" + ], + [ + "▁", + "you" + ], + [ + "▁t", + "r" + ], + [ + "▁", + "tr" + ], + [ + "or", + "s" + ], + [ + "o", + "rs" + ], + [ + "▁g", + "r" + ], + [ + "▁", + "gr" + ], + [ + "▁int", + "o" + ], + [ + "▁in", + "to" + ], + [ + "▁", + "into" + ], + [ + "▁tim", + "e" + ], + [ + "▁ti", + "me" + ], + [ + "▁t", + "ime" + ], + [ + "▁", + "time" + ], + [ + "ate", + "s" + ], + [ + "at", + "es" + ], + [ + "a", + "tes" + ], + [ + "ce", + "d" + ], + [ + "c", + "ed" + ], + [ + "▁w", + "ould" + ], + [ + "▁incl", + "ud" + ], + [ + "▁in", + "clud" + ], + [ + "▁com", + "m" + ], + [ + "▁co", + "mm" + ], + [ + "▁c", + "omm" + ], + [ + "os", + "e" + ], + [ + "o", + "se" + ], + [ + "ce", + "s" + ], + [ + "c", + "es" + ], + [ + "c", + "k" + ], + [ + "in", + "t" + ], + [ + "i", + "nt" + ], + [ + "w", + "e" + ], + [ + "▁wor", + "k" + ], + [ + "▁w", + "ork" + ], + [ + "▁", + "work" + ], + [ + "w", + "n" + ], + [ + "▁at", + "t" + ], + [ + "▁a", + "tt" + ], + [ + "▁", + "att" + ], + [ + "ak", + "e" + ], + [ + "a", + "ke" + ], + [ + "rea", + "t" + ], + [ + "re", + "at" + ], + [ + "▁m", + "e" + ], + [ + "▁", + "me" + ], + [ + "por", + "t" + ], + [ + "p", + "ort" + ], + [ + "▁aft", + "er" + ], + [ + "▁af", + "ter" + ], + [ + "▁a", + "fter" + ], + [ + "▁", + "after" + ], + [ + "au", + "s" + ], + [ + "a", + "us" + ], + [ + "p", + "h" + ], + [ + "on", + "s" + ], + [ + "o", + "ns" + ], + [ + "lan", + "d" + ], + [ + "la", + "nd" + ], + [ + "l", + "and" + ], + [ + "on", + "e" + ], + [ + "o", + "ne" + ], + [ + "for", + "m" + ], + [ + "fo", + "rm" + ], + [ + "f", + "orm" + ], + [ + "r", + "ough" + ], + [ + "le", + "s" + ], + [ + "l", + "es" + ], + [ + "ing", + "s" + ], + [ + "in", + "gs" + ], + [ + "am", + "p" + ], + [ + "a", + "mp" + ], + [ + "▁inte", + "r" + ], + [ + "▁int", + "er" + ], + [ + "▁in", + "ter" + ], + [ + "▁", + "inter" + ], + [ + ".", + "@" + ], + [ + "▁@", + ".@" + ], + [ + "▁whe", + "n" + ], + [ + "▁wh", + "en" + ], + [ + "▁w", + "hen" + ], + [ + "oo", + "d" + ], + [ + "o", + "od" + ], + [ + "▁s", + "o" + ], + [ + "▁", + "so" + ], + [ + "▁ab", + "out" + ], + [ + "▁", + "about" + ], + [ + "▁pl", + "ay" + ], + [ + "▁p", + "lay" + ], + [ + "▁", + "play" + ], + [ + "▁the", + "m" + ], + [ + "▁th", + "em" + ], + [ + "▁t", + "hem" + ], + [ + "▁O", + "n" + ], + [ + "▁", + "On" + ], + [ + "ur", + "n" + ], + [ + "▁f", + "e" + ], + [ + "▁", + "fe" + ], + [ + "▁of", + "f" + ], + [ + "▁o", + "ff" + ], + [ + "▁", + "off" + ], + [ + "ase", + "d" + ], + [ + "as", + "ed" + ], + [ + "▁be", + "t" + ], + [ + "▁b", + "et" + ], + [ + "▁", + "bet" + ], + [ + "ie", + "d" + ], + [ + "i", + "ed" + ], + [ + "ai", + "l" + ], + [ + "a", + "il" + ], + [ + "▁d", + "o" + ], + [ + "▁", + "do" + ], + [ + "▁ne", + "w" + ], + [ + "▁n", + "ew" + ], + [ + "▁", + "new" + ], + [ + "▁", + "6" + ], + [ + "▁c", + "o" + ], + [ + "▁", + "co" + ], + [ + "▁th", + "an" + ], + [ + "▁t", + "han" + ], + [ + "▁tr", + "a" + ], + [ + "▁t", + "ra" + ], + [ + "▁", + "tra" + ], + [ + ",", + "@" + ], + [ + "▁@", + ",@" + ], + [ + "io", + "us" + ], + [ + "i", + "ous" + ], + [ + "o", + "y" + ], + [ + "▁re", + "l" + ], + [ + "▁r", + "el" + ], + [ + "▁", + "rel" + ], + [ + "ol", + "d" + ], + [ + "o", + "ld" + ], + [ + "ite", + "d" + ], + [ + "it", + "ed" + ], + [ + "i", + "ted" + ], + [ + "▁r", + "a" + ], + [ + "▁", + "ra" + ], + [ + "▁q", + "u" + ], + [ + "▁", + "qu" + ], + [ + "▁na", + "n" + ], + [ + "▁n", + "an" + ], + [ + "▁", + "nan" + ], + [ + "war", + "d" + ], + [ + "wa", + "rd" + ], + [ + "w", + "ard" + ], + [ + "▁sh", + "e" + ], + [ + "▁s", + "he" + ], + [ + "▁", + "she" + ], + [ + "▁k", + "n" + ], + [ + "▁", + "kn" + ], + [ + "▁mos", + "t" + ], + [ + "▁mo", + "st" + ], + [ + "▁m", + "ost" + ], + [ + "▁", + "most" + ], + [ + "▁con", + "s" + ], + [ + "▁co", + "ns" + ], + [ + "▁c", + "ons" + ], + [ + "▁", + "cons" + ], + [ + "▁p", + "e" + ], + [ + "▁", + "pe" + ], + [ + "is", + "s" + ], + [ + "i", + "ss" + ], + [ + "▁h", + "im" + ], + [ + "▁", + "him" + ], + [ + "ic", + "k" + ], + [ + "i", + "ck" + ], + [ + "o", + "b" + ], + [ + "al", + "s" + ], + [ + "a", + "ls" + ], + [ + "▁f", + "l" + ], + [ + "▁", + "fl" + ], + [ + "ri", + "b" + ], + [ + "r", + "ib" + ], + [ + "ic", + "t" + ], + [ + "i", + "ct" + ], + [ + "▁Th", + "is" + ], + [ + "▁T", + "his" + ], + [ + "▁", + "This" + ], + [ + "▁s", + "y" + ], + [ + "▁", + "sy" + ], + [ + "ga", + "n" + ], + [ + "g", + "an" + ], + [ + "ay", + "s" + ], + [ + "a", + "ys" + ], + [ + "f", + "t" + ], + [ + "▁on", + "ly" + ], + [ + "▁unde", + "r" + ], + [ + "▁und", + "er" + ], + [ + "▁un", + "der" + ], + [ + "▁", + "under" + ], + [ + "ver", + "y" + ], + [ + "ve", + "ry" + ], + [ + "v", + "ery" + ], + [ + "oo", + "k" + ], + [ + "o", + "ok" + ], + [ + "▁ac", + "t" + ], + [ + "▁a", + "ct" + ], + [ + "▁", + "act" + ], + [ + "▁A", + "s" + ], + [ + "▁", + "As" + ], + [ + "▁w", + "ill" + ], + [ + "▁", + "will" + ], + [ + "▁re", + "m" + ], + [ + "▁r", + "em" + ], + [ + "▁", + "rem" + ], + [ + "▁ge", + "n" + ], + [ + "▁g", + "en" + ], + [ + "▁", + "gen" + ], + [ + "ot", + "h" + ], + [ + "o", + "th" + ], + [ + "▁pro", + "du" + ], + [ + "▁p", + "rodu" + ], + [ + "▁", + "produ" + ], + [ + "ation", + "al" + ], + [ + "ati", + "onal" + ], + [ + "at", + "ional" + ], + [ + "▁", + "7" + ], + [ + "ub", + "l" + ], + [ + "u", + "bl" + ], + [ + "at", + "h" + ], + [ + "a", + "th" + ], + [ + "▁se", + "c" + ], + [ + "▁s", + "ec" + ], + [ + "▁", + "sec" + ], + [ + "▁19", + "9" + ], + [ + "▁1", + "99" + ], + [ + "▁Ma", + "r" + ], + [ + "▁M", + "ar" + ], + [ + "▁", + "Mar" + ], + [ + "▁so", + "me" + ], + [ + "▁s", + "ome" + ], + [ + "le", + "ct" + ], + [ + "l", + "ect" + ], + [ + "we", + "en" + ], + [ + "w", + "een" + ], + [ + "▁the", + "re" + ], + [ + "▁th", + "ere" + ], + [ + "▁t", + "here" + ], + [ + "▁A", + "r" + ], + [ + "▁", + "Ar" + ], + [ + "▁ac", + "c" + ], + [ + "▁a", + "cc" + ], + [ + "▁", + "acc" + ], + [ + "at", + "t" + ], + [ + "a", + "tt" + ], + [ + "ro", + "p" + ], + [ + "r", + "op" + ], + [ + "▁p", + "r" + ], + [ + "▁", + "pr" + ], + [ + "v", + "e" + ], + [ + "re", + "d" + ], + [ + "r", + "ed" + ], + [ + "▁in", + "c" + ], + [ + "▁", + "inc" + ], + [ + "▁thr", + "ough" + ], + [ + "▁th", + "rough" + ], + [ + "▁", + "through" + ], + [ + "emb", + "er" + ], + [ + "em", + "ber" + ], + [ + "e", + "mber" + ], + [ + "for", + "e" + ], + [ + "fo", + "re" + ], + [ + "f", + "ore" + ], + [ + "▁e", + "ar" + ], + [ + "▁", + "ear" + ], + [ + "a", + "w" + ], + [ + "ter", + "n" + ], + [ + "t", + "ern" + ], + [ + "▁in", + "d" + ], + [ + "▁i", + "nd" + ], + [ + "▁", + "ind" + ], + [ + "ev", + "er" + ], + [ + "e", + "ver" + ], + [ + "▁E", + "n" + ], + [ + "▁", + "En" + ], + [ + "▁st", + "ud" + ], + [ + "▁bet", + "ween" + ], + [ + "atin", + "g" + ], + [ + "ati", + "ng" + ], + [ + "at", + "ing" + ], + [ + "a", + "ting" + ], + [ + "or", + "ld" + ], + [ + "ik", + "e" + ], + [ + "i", + "ke" + ], + [ + "▁dur", + "ing" + ], + [ + "▁du", + "ring" + ], + [ + "▁d", + "uring" + ], + [ + "ni", + "ng" + ], + [ + "n", + "ing" + ], + [ + "▁p", + "o" + ], + [ + "▁", + "po" + ], + [ + "ula", + "r" + ], + [ + "ul", + "ar" + ], + [ + "u", + "lar" + ], + [ + "▁as", + "s" + ], + [ + "▁a", + "ss" + ], + [ + "▁", + "ass" + ], + [ + "▁suc", + "h" + ], + [ + "▁su", + "ch" + ], + [ + "▁s", + "uch" + ], + [ + "▁", + "such" + ], + [ + "il", + "m" + ], + [ + "t", + "s" + ], + [ + "▁b", + "l" + ], + [ + "▁", + "bl" + ], + [ + "oll", + "ow" + ], + [ + "ol", + "low" + ], + [ + "▁", + "8" + ], + [ + "▁R", + "e" + ], + [ + "▁", + "Re" + ], + [ + "▁re", + "g" + ], + [ + "▁r", + "eg" + ], + [ + "▁", + "reg" + ], + [ + "if", + "ic" + ], + [ + "i", + "fic" + ], + [ + "k", + "s" + ], + [ + "▁po", + "s" + ], + [ + "▁p", + "os" + ], + [ + "▁", + "pos" + ], + [ + "▁a", + "m" + ], + [ + "▁", + "am" + ], + [ + "▁ce", + "nt" + ], + [ + "▁c", + "ent" + ], + [ + "▁", + "cent" + ], + [ + "i", + "x" + ], + [ + "▁D", + "e" + ], + [ + "▁", + "De" + ], + [ + "▁", + "9" + ], + [ + "ra", + "n" + ], + [ + "r", + "an" + ], + [ + "▁ag", + "ain" + ], + [ + "▁a", + "gain" + ], + [ + "ro", + "n" + ], + [ + "r", + "on" + ], + [ + "ina", + "l" + ], + [ + "in", + "al" + ], + [ + "i", + "nal" + ], + [ + "yo", + "n" + ], + [ + "y", + "on" + ], + [ + "olo", + "g" + ], + [ + "ol", + "og" + ], + [ + "o", + "log" + ], + [ + "ua", + "l" + ], + [ + "u", + "al" + ], + [ + "▁nu", + "m" + ], + [ + "▁n", + "um" + ], + [ + "▁su", + "b" + ], + [ + "▁s", + "ub" + ], + [ + "ort", + "h" + ], + [ + "or", + "th" + ], + [ + "hi", + "p" + ], + [ + "h", + "ip" + ], + [ + "he", + "n" + ], + [ + "h", + "en" + ], + [ + "aus", + "e" + ], + [ + "au", + "se" + ], + [ + "a", + "use" + ], + [ + "mer", + "ic" + ], + [ + "me", + "ric" + ], + [ + "▁whe", + "re" + ], + [ + "▁wh", + "ere" + ], + [ + "▁w", + "here" + ], + [ + "▁", + "where" + ], + [ + "▁Ne", + "w" + ], + [ + "▁N", + "ew" + ], + [ + "▁", + "New" + ], + [ + "as", + "on" + ], + [ + "a", + "son" + ], + [ + "▁re", + "t" + ], + [ + "▁r", + "et" + ], + [ + "▁", + "ret" + ], + [ + "▁use", + "d" + ], + [ + "▁us", + "ed" + ], + [ + "▁", + "used" + ], + [ + "▁spe", + "c" + ], + [ + "▁sp", + "ec" + ], + [ + "▁", + "spec" + ], + [ + "ie", + "w" + ], + [ + "i", + "ew" + ], + [ + "▁for", + "m" + ], + [ + "▁fo", + "rm" + ], + [ + "▁f", + "orm" + ], + [ + "▁", + "form" + ], + [ + "▁S", + "e" + ], + [ + "▁b", + "u" + ], + [ + "▁", + "bu" + ], + [ + "vel", + "op" + ], + [ + "he", + "s" + ], + [ + "h", + "es" + ], + [ + "▁Amer", + "ic" + ], + [ + "▁A", + "meric" + ], + [ + "▁", + "Americ" + ], + [ + "ow", + "er" + ], + [ + "o", + "wer" + ], + [ + "je", + "ct" + ], + [ + "j", + "ect" + ], + [ + "▁a", + "c" + ], + [ + "▁", + "ac" + ], + [ + "▁en", + "d" + ], + [ + "▁e", + "nd" + ], + [ + "▁", + "end" + ], + [ + "u", + "g" + ], + [ + "opl", + "e" + ], + [ + "op", + "le" + ], + [ + "o", + "ple" + ], + [ + "ic", + "s" + ], + [ + "i", + "cs" + ], + [ + "▁e", + "p" + ], + [ + "▁", + "ep" + ], + [ + "▁cha", + "r" + ], + [ + "▁ch", + "ar" + ], + [ + "▁c", + "har" + ], + [ + "▁", + "char" + ], + [ + "▁di", + "f" + ], + [ + "▁d", + "if" + ], + [ + "te", + "d" + ], + [ + "t", + "ed" + ], + [ + "▁co", + "l" + ], + [ + "▁c", + "ol" + ], + [ + "▁", + "col" + ], + [ + "▁you", + "r" + ], + [ + "▁yo", + "ur" + ], + [ + "▁y", + "our" + ], + [ + "i", + "o" + ], + [ + "▁L", + "e" + ], + [ + "▁", + "Le" + ], + [ + "▁thr", + "ee" + ], + [ + "▁th", + "ree" + ], + [ + "▁su", + "r" + ], + [ + "▁s", + "ur" + ], + [ + "▁fil", + "m" + ], + [ + "▁f", + "ilm" + ], + [ + "▁", + "film" + ], + [ + "▁mo", + "n" + ], + [ + "▁m", + "on" + ], + [ + "▁", + "mon" + ], + [ + "00", + "0" + ], + [ + "0", + "00" + ], + [ + "in", + "s" + ], + [ + "i", + "ns" + ], + [ + "▁ma", + "y" + ], + [ + "▁m", + "ay" + ], + [ + "▁", + "may" + ], + [ + "▁W", + "h" + ], + [ + "▁", + "Wh" + ], + [ + "▁wh", + "ile" + ], + [ + "▁", + "while" + ], + [ + "g", + "r" + ], + [ + "il", + "y" + ], + [ + "i", + "ly" + ], + [ + "▁year", + "s" + ], + [ + "▁ye", + "ars" + ], + [ + "▁y", + "ears" + ], + [ + "iti", + "es" + ], + [ + "it", + "ies" + ], + [ + "i", + "ties" + ], + [ + "▁sup", + "p" + ], + [ + "▁su", + "pp" + ], + [ + "▁s", + "upp" + ], + [ + "oc", + "k" + ], + [ + "o", + "ck" + ], + [ + "▁rel", + "e" + ], + [ + "▁re", + "le" + ], + [ + "▁r", + "ele" + ], + [ + "or", + "n" + ], + [ + "▁ex", + "p" + ], + [ + "▁", + "exp" + ], + [ + "▁im", + "p" + ], + [ + "▁i", + "mp" + ], + [ + "▁", + "imp" + ], + [ + "▁Co", + "m" + ], + [ + "▁C", + "om" + ], + [ + "is", + "e" + ], + [ + "i", + "se" + ], + [ + "ro", + "s" + ], + [ + "r", + "os" + ], + [ + "▁n", + "o" + ], + [ + "▁", + "no" + ], + [ + "▁in", + "v" + ], + [ + "out", + "h" + ], + [ + "ou", + "th" + ], + [ + "o", + "uth" + ], + [ + "▁de", + "f" + ], + [ + "▁d", + "ef" + ], + [ + "▁", + "def" + ], + [ + "▁mad", + "e" + ], + [ + "▁ma", + "de" + ], + [ + "▁m", + "ade" + ], + [ + "▁", + "made" + ], + [ + "iden", + "t" + ], + [ + "ide", + "nt" + ], + [ + "id", + "ent" + ], + [ + "▁hig", + "h" + ], + [ + "▁h", + "igh" + ], + [ + "▁", + "high" + ], + [ + "te", + "n" + ], + [ + "t", + "en" + ], + [ + "ra", + "l" + ], + [ + "r", + "al" + ], + [ + "to", + "n" + ], + [ + "t", + "on" + ], + [ + "oo", + "l" + ], + [ + "o", + "ol" + ], + [ + "a", + "z" + ], + [ + "▁ho", + "w" + ], + [ + "▁h", + "ow" + ], + [ + "▁", + "how" + ], + [ + "▁ad", + "d" + ], + [ + "▁a", + "dd" + ], + [ + "▁", + "add" + ], + [ + "▁foll", + "ow" + ], + [ + "▁fol", + "low" + ], + [ + "▁f", + "ollow" + ], + [ + "wa", + "y" + ], + [ + "w", + "ay" + ], + [ + "▁pro", + "v" + ], + [ + "▁pr", + "ov" + ], + [ + "▁p", + "rov" + ], + [ + "▁la", + "r" + ], + [ + "▁l", + "ar" + ], + [ + "▁", + "lar" + ], + [ + "ou", + "p" + ], + [ + "o", + "up" + ], + [ + "er", + "m" + ], + [ + "e", + "rm" + ], + [ + "ie", + "r" + ], + [ + "i", + "er" + ], + [ + "▁late", + "r" + ], + [ + "▁lat", + "er" + ], + [ + "▁la", + "ter" + ], + [ + "▁l", + "ater" + ], + [ + "▁the", + "se" + ], + [ + "▁th", + "ese" + ], + [ + "▁gam", + "e" + ], + [ + "▁ga", + "me" + ], + [ + "▁g", + "ame" + ], + [ + "▁", + "game" + ], + [ + "▁de", + "velop" + ], + [ + "▁mo", + "v" + ], + [ + "▁m", + "ov" + ], + [ + "ie", + "t" + ], + [ + "i", + "et" + ], + [ + "▁pre", + "s" + ], + [ + "▁pr", + "es" + ], + [ + "▁p", + "res" + ], + [ + "▁", + "pres" + ], + [ + "▁wel", + "l" + ], + [ + "▁we", + "ll" + ], + [ + "▁w", + "ell" + ], + [ + "▁", + "well" + ], + [ + "o", + "h" + ], + [ + "▁man", + "y" + ], + [ + "▁ma", + "ny" + ], + [ + "▁m", + "any" + ], + [ + "▁e", + "m" + ], + [ + "▁", + "em" + ], + [ + "ie", + "l" + ], + [ + "i", + "el" + ], + [ + "▁the", + "n" + ], + [ + "▁th", + "en" + ], + [ + "▁t", + "hen" + ], + [ + "▁", + "then" + ], + [ + "▁be", + "fore" + ], + [ + "▁wr", + "it" + ], + [ + "▁w", + "rit" + ], + [ + "▁", + "writ" + ], + [ + "▁an", + "y" + ], + [ + "▁a", + "ny" + ], + [ + "▁", + "any" + ], + [ + "▁de", + "c" + ], + [ + "▁d", + "ec" + ], + [ + "▁", + "“" + ], + [ + "▁pe", + "ople" + ], + [ + "▁cal", + "l" + ], + [ + "▁ca", + "ll" + ], + [ + "▁c", + "all" + ], + [ + "if", + "e" + ], + [ + "i", + "fe" + ], + [ + "fu", + "l" + ], + [ + "f", + "ul" + ], + [ + "ure", + "s" + ], + [ + "ur", + "es" + ], + [ + "u", + "res" + ], + [ + "l", + "l" + ], + [ + "iver", + "s" + ], + [ + "ive", + "rs" + ], + [ + "iv", + "ers" + ], + [ + "i", + "vers" + ], + [ + "isi", + "on" + ], + [ + "is", + "ion" + ], + [ + "ish", + "ed" + ], + [ + "is", + "hed" + ], + [ + "othe", + "r" + ], + [ + "oth", + "er" + ], + [ + "ot", + "her" + ], + [ + "o", + "ther" + ], + [ + "▁en", + "t" + ], + [ + "▁e", + "nt" + ], + [ + "▁", + "ent" + ], + [ + "▁pub", + "l" + ], + [ + "▁p", + "ubl" + ], + [ + "▁e", + "ff" + ], + [ + "▁", + "eff" + ], + [ + "ste", + "m" + ], + [ + "st", + "em" + ], + [ + "▁be", + "ing" + ], + [ + "▁b", + "eing" + ], + [ + "▁", + "being" + ], + [ + "▁us", + "e" + ], + [ + "▁u", + "se" + ], + [ + "▁", + "use" + ], + [ + "▁1", + "0" + ], + [ + "▁", + "10" + ], + [ + "ive", + "d" + ], + [ + "iv", + "ed" + ], + [ + "i", + "ved" + ], + [ + "▁S", + "p" + ], + [ + "▁", + "Sp" + ], + [ + "▁re", + "p" + ], + [ + "▁r", + "ep" + ], + [ + "▁", + "rep" + ], + [ + "ine", + "s" + ], + [ + "in", + "es" + ], + [ + "i", + "nes" + ], + [ + "ati", + "ve" + ], + [ + "at", + "ive" + ], + [ + "▁ser", + "v" + ], + [ + "▁s", + "erv" + ], + [ + "▁sec", + "ond" + ], + [ + "▁me", + "t" + ], + [ + "▁m", + "et" + ], + [ + "▁", + "met" + ], + [ + "▁lo", + "c" + ], + [ + "▁l", + "oc" + ], + [ + "it", + "s" + ], + [ + "i", + "ts" + ], + [ + "a", + "j" + ], + [ + "▁se", + "r" + ], + [ + "▁s", + "er" + ], + [ + "▁fo", + "und" + ], + [ + "▁f", + "ound" + ], + [ + "▁", + "found" + ], + [ + "er", + "t" + ], + [ + "▁son", + "g" + ], + [ + "▁so", + "ng" + ], + [ + "▁s", + "ong" + ], + [ + "▁de", + "p" + ], + [ + "▁d", + "ep" + ], + [ + "▁", + "dep" + ], + [ + "▁o", + "b" + ], + [ + "▁", + "ob" + ], + [ + "ame", + "s" + ], + [ + "am", + "es" + ], + [ + "a", + "mes" + ], + [ + "▁m", + "us" + ], + [ + "▁", + "mus" + ], + [ + "▁p", + "h" + ], + [ + "▁", + "ph" + ], + [ + "al", + "e" + ], + [ + "a", + "le" + ], + [ + "ye", + "n" + ], + [ + "y", + "en" + ], + [ + "ro", + "w" + ], + [ + "r", + "ow" + ], + [ + "▁se", + "t" + ], + [ + "▁s", + "et" + ], + [ + "▁", + "set" + ], + [ + "▁ca", + "r" + ], + [ + "▁c", + "ar" + ], + [ + "▁", + "car" + ], + [ + "so", + "n" + ], + [ + "s", + "on" + ], + [ + "ere", + "d" + ], + [ + "er", + "ed" + ], + [ + "e", + "red" + ], + [ + "▁A", + "t" + ], + [ + "▁", + "At" + ], + [ + "▁cou", + "ld" + ], + [ + "▁c", + "ould" + ], + [ + "▁fo", + "ur" + ], + [ + "▁f", + "our" + ], + [ + "▁", + "four" + ], + [ + "ath", + "er" + ], + [ + "at", + "her" + ], + [ + "a", + "ther" + ], + [ + "▁po", + "l" + ], + [ + "▁p", + "ol" + ], + [ + "ur", + "y" + ], + [ + "u", + "ry" + ], + [ + "el", + "f" + ], + [ + "▁le", + "ad" + ], + [ + "▁l", + "ead" + ], + [ + "▁lon", + "g" + ], + [ + "▁lo", + "ng" + ], + [ + "▁l", + "ong" + ], + [ + "▁", + "long" + ], + [ + "emen", + "t" + ], + [ + "em", + "ent" + ], + [ + "e", + "ment" + ], + [ + "y", + "p" + ], + [ + "▁rec", + "ord" + ], + [ + "▁in", + "f" + ], + [ + "▁", + "inf" + ], + [ + "▁s", + "m" + ], + [ + "▁", + "sm" + ], + [ + "▁sh", + "ow" + ], + [ + "▁s", + "how" + ], + [ + "a", + "u" + ], + [ + "▁num", + "ber" + ], + [ + "▁nu", + "mber" + ], + [ + "▁n", + "umber" + ], + [ + "ver", + "n" + ], + [ + "v", + "ern" + ], + [ + "at", + "ure" + ], + [ + "a", + "ture" + ], + [ + "inc", + "e" + ], + [ + "in", + "ce" + ], + [ + "i", + "nce" + ], + [ + "ve", + "d" + ], + [ + "v", + "ed" + ], + [ + "▁S", + "h" + ], + [ + "▁", + "Sh" + ], + [ + "ai", + "r" + ], + [ + "a", + "ir" + ], + [ + "od", + "e" + ], + [ + "o", + "de" + ], + [ + "▁ins", + "t" + ], + [ + "▁in", + "st" + ], + [ + "an", + "e" + ], + [ + "a", + "ne" + ], + [ + "▁ba", + "ck" + ], + [ + "▁b", + "ack" + ], + [ + "▁", + "back" + ], + [ + "▁cr", + "e" + ], + [ + "▁c", + "re" + ], + [ + "y", + "s" + ], + [ + "▁bot", + "h" + ], + [ + "▁bo", + "th" + ], + [ + "▁b", + "oth" + ], + [ + "ual", + "ly" + ], + [ + "u", + "ally" + ], + [ + "▁tran", + "s" + ], + [ + "▁tra", + "ns" + ], + [ + "▁tr", + "ans" + ], + [ + "▁t", + "rans" + ], + [ + "▁", + "trans" + ], + [ + "▁se", + "ver" + ], + [ + "▁s", + "ever" + ], + [ + "og", + "ra" + ], + [ + "o", + "gra" + ], + [ + "era", + "l" + ], + [ + "er", + "al" + ], + [ + "e", + "ral" + ], + [ + "is", + "m" + ], + [ + "i", + "sm" + ], + [ + "rac", + "t" + ], + [ + "ra", + "ct" + ], + [ + "r", + "act" + ], + [ + "ti", + "ng" + ], + [ + "t", + "ing" + ], + [ + "ment", + "s" + ], + [ + "men", + "ts" + ], + [ + "m", + "ents" + ], + [ + "▁S", + "c" + ], + [ + "▁Co", + "n" + ], + [ + "▁C", + "on" + ], + [ + "▁sa", + "id" + ], + [ + "▁s", + "aid" + ], + [ + "le", + "d" + ], + [ + "l", + "ed" + ], + [ + "aine", + "d" + ], + [ + "ain", + "ed" + ], + [ + "ai", + "ned" + ], + [ + "a", + "ined" + ], + [ + "▁mi", + "n" + ], + [ + "▁m", + "in" + ], + [ + "▁", + "min" + ], + [ + "cho", + "ol" + ], + [ + "ch", + "ool" + ], + [ + "ibl", + "e" + ], + [ + "ib", + "le" + ], + [ + "i", + "ble" + ], + [ + "▁Ho", + "w" + ], + [ + "▁H", + "ow" + ], + [ + "▁", + "How" + ], + [ + "▁ex", + "t" + ], + [ + "▁e", + "xt" + ], + [ + "▁", + "ext" + ], + [ + "ce", + "pt" + ], + [ + "c", + "ept" + ], + [ + "asy", + "on" + ], + [ + "as", + "yon" + ], + [ + "▁ma", + "in" + ], + [ + "▁m", + "ain" + ], + [ + "▁19", + "8" + ], + [ + "▁1", + "98" + ], + [ + "▁includ", + "ing" + ], + [ + "▁incl", + "uding" + ], + [ + "▁in", + "cluding" + ], + [ + "▁", + "including" + ], + [ + "▁he", + "l" + ], + [ + "▁h", + "el" + ], + [ + "▁", + "hel" + ], + [ + "▁tea", + "m" + ], + [ + "▁te", + "am" + ], + [ + "▁lik", + "e" + ], + [ + "▁li", + "ke" + ], + [ + "▁l", + "ike" + ], + [ + "▁", + "like" + ], + [ + "ine", + "d" + ], + [ + "in", + "ed" + ], + [ + "i", + "ned" + ], + [ + "ut", + "ion" + ], + [ + "ien", + "t" + ], + [ + "ie", + "nt" + ], + [ + "i", + "ent" + ], + [ + "▁again", + "st" + ], + [ + "▁sy", + "stem" + ], + [ + "▁i", + "f" + ], + [ + "▁", + "if" + ], + [ + "▁seas", + "on" + ], + [ + "▁sea", + "son" + ], + [ + "▁se", + "ason" + ], + [ + "▁s", + "eason" + ], + [ + "▁", + "season" + ], + [ + "uc", + "h" + ], + [ + "u", + "ch" + ], + [ + "▁es", + "t" + ], + [ + "▁e", + "st" + ], + [ + "▁", + "est" + ], + [ + "▁si", + "gn" + ], + [ + "▁s", + "ign" + ], + [ + "bl", + "e" + ], + [ + "b", + "le" + ], + [ + "er", + "n" + ], + [ + "an", + "n" + ], + [ + "▁1", + "7" + ], + [ + "▁", + "17" + ], + [ + "ers", + "on" + ], + [ + "er", + "son" + ], + [ + "aki", + "ng" + ], + [ + "ak", + "ing" + ], + [ + "a", + "king" + ], + [ + ".", + "." + ], + [ + "ist", + "s" + ], + [ + "is", + "ts" + ], + [ + "i", + "sts" + ], + [ + "▁wa", + "r" + ], + [ + "▁w", + "ar" + ], + [ + "▁", + "war" + ], + [ + "in", + "k" + ], + [ + "▁", + "/" + ], + [ + "an", + "y" + ], + [ + "a", + "ny" + ], + [ + "▁po", + "p" + ], + [ + "▁p", + "op" + ], + [ + "▁", + "pop" + ], + [ + "ilit", + "y" + ], + [ + "ili", + "ty" + ], + [ + "il", + "ity" + ], + [ + "▁wh", + "at" + ], + [ + "▁w", + "hat" + ], + [ + "▁di", + "d" + ], + [ + "▁d", + "id" + ], + [ + "▁re", + "v" + ], + [ + "▁r", + "ev" + ], + [ + "▁res", + "p" + ], + [ + "▁re", + "sp" + ], + [ + "▁r", + "esp" + ], + [ + "▁", + "resp" + ], + [ + "ang", + "e" + ], + [ + "an", + "ge" + ], + [ + "▁be", + "l" + ], + [ + "▁b", + "el" + ], + [ + "▁", + "bel" + ], + [ + "ive", + "r" + ], + [ + "iv", + "er" + ], + [ + "i", + "ver" + ], + [ + "a", + "h" + ], + [ + "c", + "y" + ], + [ + "▁00", + "0" + ], + [ + "▁0", + "00" + ], + [ + "▁", + "000" + ], + [ + "▁o", + "p" + ], + [ + "▁", + "op" + ], + [ + "▁ch", + "ild" + ], + [ + "▁", + "child" + ], + [ + "▁char", + "act" + ], + [ + "▁cha", + "ract" + ], + [ + "▁dis", + "c" + ], + [ + "▁di", + "sc" + ], + [ + "▁d", + "isc" + ], + [ + "▁", + "disc" + ], + [ + "ire", + "d" + ], + [ + "ir", + "ed" + ], + [ + "i", + "red" + ], + [ + "x", + "t" + ], + [ + "▁", + "—" + ], + [ + "bu", + "m" + ], + [ + "b", + "um" + ], + [ + "▁C", + "l" + ], + [ + "▁", + "Cl" + ], + [ + "▁mo", + "d" + ], + [ + "▁m", + "od" + ], + [ + "▁", + "mod" + ], + [ + "ire", + "ct" + ], + [ + "ir", + "ect" + ], + [ + "i", + "rect" + ], + [ + "▁diff", + "er" + ], + [ + "▁dif", + "fer" + ], + [ + "▁d", + "iffer" + ], + [ + "▁In", + "d" + ], + [ + "▁I", + "nd" + ], + [ + "▁", + "Ind" + ], + [ + "ri", + "s" + ], + [ + "r", + "is" + ], + [ + "▁dis", + "t" + ], + [ + "▁di", + "st" + ], + [ + "▁d", + "ist" + ], + [ + "ros", + "s" + ], + [ + "ro", + "ss" + ], + [ + "r", + "oss" + ], + [ + "obe", + "r" + ], + [ + "ob", + "er" + ], + [ + "o", + "ber" + ], + [ + "are", + "d" + ], + [ + "ar", + "ed" + ], + [ + "a", + "red" + ], + [ + "▁coun", + "t" + ], + [ + "▁cou", + "nt" + ], + [ + "▁co", + "unt" + ], + [ + "▁c", + "ount" + ], + [ + "ven", + "t" + ], + [ + "ve", + "nt" + ], + [ + "v", + "ent" + ], + [ + "t", + "y" + ], + [ + "▁1", + "2" + ], + [ + "▁", + "12" + ], + [ + "▁1", + "5" + ], + [ + "▁", + "15" + ], + [ + "▁Unit", + "ed" + ], + [ + "▁Un", + "ited" + ], + [ + "▁si", + "m" + ], + [ + "▁s", + "im" + ], + [ + "ize", + "d" + ], + [ + "iz", + "ed" + ], + [ + "i", + "zed" + ], + [ + "▁ar", + "t" + ], + [ + "▁", + "art" + ], + [ + "▁", + "0" + ], + [ + "▁ow", + "n" + ], + [ + "▁o", + "wn" + ], + [ + "▁", + "own" + ], + [ + "▁compl", + "e" + ], + [ + "▁comp", + "le" + ], + [ + "▁com", + "ple" + ], + [ + "▁perf", + "orm" + ], + [ + "▁per", + "form" + ], + [ + "▁", + "Z" + ], + [ + "an", + "k" + ], + [ + "ime", + "s" + ], + [ + "im", + "es" + ], + [ + "i", + "mes" + ], + [ + "▁En", + "g" + ], + [ + "▁E", + "ng" + ], + [ + "▁cont", + "in" + ], + [ + "▁", + "contin" + ], + [ + "▁Bri", + "t" + ], + [ + "▁Br", + "it" + ], + [ + "▁B", + "rit" + ], + [ + "ant", + "s" + ], + [ + "an", + "ts" + ], + [ + "▁sin", + "g" + ], + [ + "▁si", + "ng" + ], + [ + "▁s", + "ing" + ], + [ + "▁bec", + "ause" + ], + [ + "▁Fo", + "r" + ], + [ + "▁F", + "or" + ], + [ + "▁", + "For" + ], + [ + "iel", + "d" + ], + [ + "ie", + "ld" + ], + [ + "i", + "eld" + ], + [ + "▁bec", + "ame" + ], + [ + "un", + "d" + ], + [ + "u", + "nd" + ], + [ + "▁hel", + "p" + ], + [ + "as", + "h" + ], + [ + "a", + "sh" + ], + [ + "▁Af", + "ter" + ], + [ + "▁A", + "fter" + ], + [ + "ap", + "t" + ], + [ + "a", + "pt" + ], + [ + "ir", + "d" + ], + [ + "i", + "rd" + ], + [ + "▁19", + "6" + ], + [ + "▁1", + "96" + ], + [ + "▁ma", + "t" + ], + [ + "▁m", + "at" + ], + [ + "▁", + "mat" + ], + [ + "▁a", + "ir" + ], + [ + "▁", + "air" + ], + [ + "ous", + "e" + ], + [ + "ou", + "se" + ], + [ + "o", + "use" + ], + [ + "▁fa", + "m" + ], + [ + "▁f", + "am" + ], + [ + "▁", + "fam" + ], + [ + "▁e", + "d" + ], + [ + "▁", + "ed" + ], + [ + "u", + "c" + ], + [ + "▁mil", + "l" + ], + [ + "▁mi", + "ll" + ], + [ + "▁m", + "ill" + ], + [ + "▁", + "mill" + ], + [ + "▁Jo", + "h" + ], + [ + "▁J", + "oh" + ], + [ + "▁know", + "n" + ], + [ + "▁kn", + "own" + ], + [ + "▁", + "known" + ], + [ + "▁des", + "ign" + ], + [ + "▁da", + "y" + ], + [ + "▁d", + "ay" + ], + [ + "▁", + "day" + ], + [ + "ar", + "s" + ], + [ + "a", + "rs" + ], + [ + "▁al", + "bum" + ], + [ + "ial", + "ly" + ], + [ + "i", + "ally" + ], + [ + "▁America", + "n" + ], + [ + "▁Americ", + "an" + ], + [ + "▁Amer", + "ican" + ], + [ + "▁", + "American" + ], + [ + "ge", + "t" + ], + [ + "g", + "et" + ], + [ + "▁19", + "7" + ], + [ + "▁1", + "97" + ], + [ + "▁des", + "c" + ], + [ + "▁de", + "sc" + ], + [ + "▁d", + "esc" + ], + [ + "▁s", + "l" + ], + [ + "▁", + "sl" + ], + [ + "ve", + "n" + ], + [ + "v", + "en" + ], + [ + "▁me", + "d" + ], + [ + "▁m", + "ed" + ], + [ + "▁", + "med" + ], + [ + "▁res", + "ult" + ], + [ + "alt", + "h" + ], + [ + "al", + "th" + ], + [ + "▁epi", + "s" + ], + [ + "▁ep", + "is" + ], + [ + "▁", + "=" + ], + [ + "ise", + "d" + ], + [ + "is", + "ed" + ], + [ + "▁gro", + "up" + ], + [ + "▁gr", + "oup" + ], + [ + "▁g", + "roup" + ], + [ + "▁", + "group" + ], + [ + "ue", + "s" + ], + [ + "u", + "es" + ], + [ + "▁Sh", + "e" + ], + [ + "▁S", + "he" + ], + [ + "▁do", + "wn" + ], + [ + "▁d", + "own" + ], + [ + "▁", + "down" + ], + [ + "▁d", + "r" + ], + [ + "▁", + "dr" + ], + [ + "e", + "k" + ], + [ + "▁19", + "4" + ], + [ + "▁1", + "94" + ], + [ + "▁ori", + "g" + ], + [ + "▁or", + "ig" + ], + [ + "▁o", + "rig" + ], + [ + "▁", + "orig" + ], + [ + "▁sever", + "al" + ], + [ + "ical", + "ly" + ], + [ + "ic", + "ally" + ], + [ + "▁br", + "o" + ], + [ + "▁b", + "ro" + ], + [ + "▁", + "bro" + ], + [ + "ive", + "s" + ], + [ + "iv", + "es" + ], + [ + "i", + "ves" + ], + [ + "▁sam", + "e" + ], + [ + "▁sa", + "me" + ], + [ + "▁s", + "ame" + ], + [ + "g", + "g" + ], + [ + "th", + "ough" + ], + [ + "ru", + "ct" + ], + [ + "r", + "uct" + ], + [ + "▁ne", + "ed" + ], + [ + "▁n", + "eed" + ], + [ + "▁call", + "ed" + ], + [ + "▁cal", + "led" + ], + [ + "▁ca", + "lled" + ], + [ + "▁c", + "alled" + ], + [ + "▁", + "called" + ], + [ + "▁b", + "r" + ], + [ + "▁", + "br" + ], + [ + "▁va", + "r" + ], + [ + "▁v", + "ar" + ], + [ + "▁", + "var" + ], + [ + "▁Joh", + "n" + ], + [ + "▁Jo", + "hn" + ], + [ + "▁J", + "ohn" + ], + [ + "▁rec", + "e" + ], + [ + "▁re", + "ce" + ], + [ + "▁in", + "s" + ], + [ + "▁i", + "ns" + ], + [ + "▁", + "ins" + ], + [ + "▁seri", + "es" + ], + [ + "▁ser", + "ies" + ], + [ + "▁se", + "ries" + ], + [ + "▁s", + "eries" + ], + [ + "▁1", + "6" + ], + [ + "▁", + "16" + ], + [ + "ura", + "l" + ], + [ + "ur", + "al" + ], + [ + "u", + "ral" + ], + [ + "▁wor", + "ld" + ], + [ + "▁w", + "orld" + ], + [ + "▁", + "world" + ], + [ + "▁supp", + "ort" + ], + [ + "▁sup", + "port" + ], + [ + "le", + "y" + ], + [ + "l", + "ey" + ], + [ + "▁e", + "ach" + ], + [ + "ge", + "r" + ], + [ + "g", + "er" + ], + [ + "ide", + "d" + ], + [ + "id", + "ed" + ], + [ + "i", + "ded" + ], + [ + "ul", + "l" + ], + [ + "u", + "ll" + ], + [ + "ti", + "l" + ], + [ + "t", + "il" + ], + [ + "▁fi", + "n" + ], + [ + "▁f", + "in" + ], + [ + "▁", + "fin" + ], + [ + "▁ju", + "st" + ], + [ + "▁j", + "ust" + ], + [ + "▁", + "just" + ], + [ + "▁The", + "y" + ], + [ + "▁Th", + "ey" + ], + [ + "▁T", + "hey" + ], + [ + "▁", + "They" + ], + [ + "a", + "x" + ], + [ + "nes", + "s" + ], + [ + "ne", + "ss" + ], + [ + "n", + "ess" + ], + [ + "cc", + "ess" + ], + [ + "c", + "cess" + ], + [ + "en", + "e" + ], + [ + "e", + "ne" + ], + [ + "iu", + "m" + ], + [ + "i", + "um" + ], + [ + "▁de", + "t" + ], + [ + "▁d", + "et" + ], + [ + ")", + "." + ], + [ + "▁part", + "ic" + ], + [ + "▁par", + "tic" + ], + [ + "▁wa", + "ter" + ], + [ + "▁w", + "ater" + ], + [ + "▁", + "water" + ], + [ + "em", + "b" + ], + [ + "e", + "mb" + ], + [ + "▁earl", + "y" + ], + [ + "▁ear", + "ly" + ], + [ + "▁po", + "int" + ], + [ + "▁p", + "oint" + ], + [ + "▁", + "point" + ], + [ + "▁pas", + "s" + ], + [ + "▁pa", + "ss" + ], + [ + "▁p", + "ass" + ], + [ + "▁", + "pass" + ], + [ + "ien", + "ce" + ], + [ + "ie", + "nce" + ], + [ + "i", + "ence" + ], + [ + "▁I", + "s" + ], + [ + "▁", + "Is" + ], + [ + "▁B", + "l" + ], + [ + "▁", + "Bl" + ], + [ + "▁1", + "1" + ], + [ + "▁", + "11" + ], + [ + "el", + "s" + ], + [ + "e", + "ls" + ], + [ + "▁au", + "t" + ], + [ + "▁a", + "ut" + ], + [ + "▁", + "aut" + ], + [ + "ose", + "d" + ], + [ + "os", + "ed" + ], + [ + "ov", + "e" + ], + [ + "o", + "ve" + ], + [ + "▁gover", + "n" + ], + [ + "▁go", + "vern" + ], + [ + "▁", + "govern" + ], + [ + "ia", + "m" + ], + [ + "i", + "am" + ], + [ + "▁his", + "t" + ], + [ + "▁h", + "ist" + ], + [ + "▁", + "hist" + ], + [ + "▁W", + "e" + ], + [ + "▁", + "We" + ], + [ + "▁inc", + "re" + ], + [ + "▁ne", + "ar" + ], + [ + "▁n", + "ear" + ], + [ + "▁lan", + "d" + ], + [ + "▁la", + "nd" + ], + [ + "▁l", + "and" + ], + [ + "▁", + "land" + ], + [ + "▁A", + "d" + ], + [ + "▁", + "Ad" + ], + [ + "▁dire", + "ct" + ], + [ + "▁dir", + "ect" + ], + [ + "▁di", + "rect" + ], + [ + "▁d", + "irect" + ], + [ + "▁st", + "r" + ], + [ + "▁s", + "tr" + ], + [ + "▁", + "str" + ], + [ + "▁ma", + "ke" + ], + [ + "▁m", + "ake" + ], + [ + "▁o", + "cc" + ], + [ + "▁", + "occ" + ], + [ + "▁ar", + "ound" + ], + [ + "▁a", + "round" + ], + [ + "▁star", + "t" + ], + [ + "▁st", + "art" + ], + [ + "un", + "e" + ], + [ + "u", + "ne" + ], + [ + "▁ru", + "n" + ], + [ + "▁r", + "un" + ], + [ + "▁", + "run" + ], + [ + "ome", + "t" + ], + [ + "om", + "et" + ], + [ + "o", + "met" + ], + [ + "an", + "c" + ], + [ + "ue", + "d" + ], + [ + "u", + "ed" + ], + [ + "▁Pr", + "o" + ], + [ + "▁P", + "ro" + ], + [ + "▁", + "Pro" + ], + [ + "▁sm", + "all" + ], + [ + "et", + "s" + ], + [ + "e", + "ts" + ], + [ + "oo", + "t" + ], + [ + "o", + "ot" + ], + [ + "▁g", + "u" + ], + [ + "▁", + "gu" + ], + [ + "▁unt", + "il" + ], + [ + "▁un", + "til" + ], + [ + "▁Aus", + "t" + ], + [ + "▁Au", + "st" + ], + [ + "▁A", + "ust" + ], + [ + "▁mi", + "l" + ], + [ + "▁m", + "il" + ], + [ + "▁sh", + "ip" + ], + [ + "▁s", + "hip" + ], + [ + "▁", + "ship" + ], + [ + "m", + "y" + ], + [ + "us", + "s" + ], + [ + "u", + "ss" + ], + [ + "ces", + "s" + ], + [ + "ce", + "ss" + ], + [ + "c", + "ess" + ], + [ + "▁ret", + "urn" + ], + [ + "▁th", + "ough" + ], + [ + "▁", + "though" + ], + [ + "▁cl", + "ass" + ], + [ + "▁c", + "lass" + ], + [ + "▁", + "class" + ], + [ + "▁cons", + "t" + ], + [ + "▁con", + "st" + ], + [ + "▁c", + "onst" + ], + [ + "▁ev", + "en" + ], + [ + "▁e", + "ven" + ], + [ + "▁U", + "S" + ], + [ + "▁", + "US" + ], + [ + "ajo", + "r" + ], + [ + "aj", + "or" + ], + [ + "▁B", + "e" + ], + [ + "▁", + "Be" + ], + [ + "▁T", + "e" + ], + [ + "▁", + "Te" + ], + [ + "▁op", + "en" + ], + [ + "▁o", + "pen" + ], + [ + "▁eff", + "ect" + ], + [ + "▁cons", + "id" + ], + [ + "▁beg", + "an" + ], + [ + "▁be", + "gan" + ], + [ + "▁an", + "t" + ], + [ + "▁a", + "nt" + ], + [ + "▁", + "ant" + ], + [ + "arc", + "h" + ], + [ + "ar", + "ch" + ], + [ + "en", + "n" + ], + [ + "▁Wa", + "r" + ], + [ + "▁W", + "ar" + ], + [ + "k", + "e" + ], + [ + "▁E", + "d" + ], + [ + "▁", + "Ed" + ], + [ + "os", + "s" + ], + [ + "o", + "ss" + ], + [ + "▁muc", + "h" + ], + [ + "▁m", + "uch" + ], + [ + "▁ver", + "y" + ], + [ + "▁ve", + "ry" + ], + [ + "▁v", + "ery" + ], + [ + "▁", + "very" + ], + [ + "▁ou", + "r" + ], + [ + "▁o", + "ur" + ], + [ + "▁", + "our" + ], + [ + "▁al", + "ong" + ], + [ + "▁a", + "long" + ], + [ + "p", + "r" + ], + [ + "▁lif", + "e" + ], + [ + "▁li", + "fe" + ], + [ + "▁l", + "ife" + ], + [ + "▁", + "life" + ], + [ + "iv", + "ing" + ], + [ + "i", + "ving" + ], + [ + "▁Howe", + "ver" + ], + [ + "▁How", + "ever" + ], + [ + "▁rep", + "ort" + ], + [ + "▁re", + "port" + ], + [ + "▁cr", + "it" + ], + [ + "▁c", + "rit" + ], + [ + "ap", + "p" + ], + [ + "a", + "pp" + ], + [ + "od", + "y" + ], + [ + "o", + "dy" + ], + [ + "age", + "s" + ], + [ + "ag", + "es" + ], + [ + "a", + "ges" + ], + [ + "▁op", + "er" + ], + [ + "▁o", + "per" + ], + [ + "▁", + "oper" + ], + [ + "▁G", + "r" + ], + [ + "ne", + "r" + ], + [ + "n", + "er" + ], + [ + "▁cont", + "ro" + ], + [ + "t", + "le" + ], + [ + "end", + "ed" + ], + [ + "en", + "ded" + ], + [ + "avi", + "ng" + ], + [ + "av", + "ing" + ], + [ + "a", + "ving" + ], + [ + "▁re", + "qu" + ], + [ + "▁r", + "equ" + ], + [ + "▁", + "requ" + ], + [ + "▁exp", + "er" + ], + [ + "▁ex", + "per" + ], + [ + "▁", + "Q" + ], + [ + "▁th", + "ose" + ], + [ + "il", + "t" + ], + [ + "▁Al", + "l" + ], + [ + "▁A", + "ll" + ], + [ + "▁", + "All" + ], + [ + "ut", + "e" + ], + [ + "u", + "te" + ], + [ + "▁mill", + "ion" + ], + [ + "▁m", + "illion" + ], + [ + "▁sch", + "ool" + ], + [ + "▁s", + "chool" + ], + [ + "▁epis", + "ode" + ], + [ + "▁ep", + "isode" + ], + [ + "▁bu", + "ild" + ], + [ + "erm", + "an" + ], + [ + "er", + "man" + ], + [ + "es", + "p" + ], + [ + "e", + "sp" + ], + [ + "▁Co", + "l" + ], + [ + "▁C", + "ol" + ], + [ + "▁l", + "i" + ], + [ + "▁", + "li" + ], + [ + "▁sh", + "ould" + ], + [ + "ris", + "t" + ], + [ + "ri", + "st" + ], + [ + "r", + "ist" + ], + [ + "▁Ma", + "y" + ], + [ + "▁M", + "ay" + ], + [ + "in", + "a" + ], + [ + "i", + "na" + ], + [ + "▁succ", + "ess" + ], + [ + "▁suc", + "cess" + ], + [ + "▁su", + "ccess" + ], + [ + "▁s", + "uccess" + ], + [ + "▁a", + "v" + ], + [ + "▁", + "av" + ], + [ + "ate", + "ly" + ], + [ + "at", + "ely" + ], + [ + "on", + "t" + ], + [ + "o", + "nt" + ], + [ + "▁ad", + "v" + ], + [ + "▁me", + "n" + ], + [ + "▁m", + "en" + ], + [ + "▁", + "men" + ], + [ + "▁", + "$" + ], + [ + "▁pers", + "on" + ], + [ + "▁per", + "son" + ], + [ + "▁p", + "erson" + ], + [ + "▁", + "person" + ], + [ + "▁stat", + "e" + ], + [ + "▁st", + "ate" + ], + [ + "▁", + "state" + ], + [ + "▁differ", + "ent" + ], + [ + "▁d", + "ifferent" + ], + [ + "▁wa", + "y" + ], + [ + "▁w", + "ay" + ], + [ + "▁", + "way" + ], + [ + "▁Ca", + "r" + ], + [ + "▁C", + "ar" + ], + [ + "▁State", + "s" + ], + [ + "▁Stat", + "es" + ], + [ + "▁Sta", + "tes" + ], + [ + "▁St", + "ates" + ], + [ + "▁off", + "ic" + ], + [ + "▁of", + "fic" + ], + [ + "▁o", + "ffic" + ], + [ + "▁", + "offic" + ], + [ + "▁mus", + "ic" + ], + [ + "▁m", + "usic" + ], + [ + "▁", + "music" + ], + [ + "▁1", + "3" + ], + [ + "▁", + "13" + ], + [ + "▁pow", + "er" + ], + [ + "▁po", + "wer" + ], + [ + "▁p", + "ower" + ], + [ + "▁", + "power" + ], + [ + "▁a", + "k" + ], + [ + "▁", + "ak" + ], + [ + "▁el", + "e" + ], + [ + "▁e", + "le" + ], + [ + "▁", + "ele" + ], + [ + "▁rig", + "ht" + ], + [ + "▁ri", + "ght" + ], + [ + "▁r", + "ight" + ], + [ + "▁", + "right" + ], + [ + "re", + "t" + ], + [ + "r", + "et" + ], + [ + "▁exp", + "l" + ], + [ + "▁ex", + "pl" + ], + [ + "▁", + "expl" + ], + [ + "ain", + "s" + ], + [ + "ai", + "ns" + ], + [ + "a", + "ins" + ], + [ + "n", + "e" + ], + [ + "▁publ", + "ic" + ], + [ + "▁pub", + "lic" + ], + [ + "▁p", + "ublic" + ], + [ + "▁The", + "re" + ], + [ + "▁Th", + "ere" + ], + [ + "▁T", + "here" + ], + [ + "▁", + "There" + ], + [ + "▁con", + "c" + ], + [ + "▁c", + "onc" + ], + [ + "iz", + "e" + ], + [ + "i", + "ze" + ], + [ + "▁con", + "f" + ], + [ + "ect", + "ed" + ], + [ + "ec", + "ted" + ], + [ + "▁are", + "a" + ], + [ + "▁ar", + "ea" + ], + [ + "▁a", + "rea" + ], + [ + "▁imp", + "ort" + ], + [ + "▁im", + "port" + ], + [ + "ion", + "al" + ], + [ + "io", + "nal" + ], + [ + "i", + "onal" + ], + [ + "▁desc", + "rib" + ], + [ + "ea", + "n" + ], + [ + "e", + "an" + ], + [ + "▁h", + "um" + ], + [ + "▁", + "hum" + ], + [ + "▁P", + "h" + ], + [ + "▁", + "Ph" + ], + [ + "▁y", + "o" + ], + [ + "▁", + "yo" + ], + [ + "▁follow", + "ing" + ], + [ + "▁foll", + "owing" + ], + [ + "olog", + "y" + ], + [ + "olo", + "gy" + ], + [ + "ol", + "ogy" + ], + [ + "▁Brit", + "ish" + ], + [ + "▁li", + "t" + ], + [ + "▁l", + "it" + ], + [ + "▁re", + "f" + ], + [ + "▁r", + "ef" + ], + [ + "▁all", + "ow" + ], + [ + "▁al", + "low" + ], + [ + "g", + "y" + ], + [ + "ian", + "s" + ], + [ + "ia", + "ns" + ], + [ + "i", + "ans" + ], + [ + "▁", + "[" + ], + [ + "▁charact", + "er" + ], + [ + "▁char", + "acter" + ], + [ + "▁An", + "d" + ], + [ + "▁A", + "nd" + ], + [ + "▁", + "And" + ], + [ + "▁l", + "a" + ], + [ + "▁", + "la" + ], + [ + "▁Whe", + "n" + ], + [ + "▁Wh", + "en" + ], + [ + "▁W", + "hen" + ], + [ + "▁", + "When" + ], + [ + "▁ty", + "p" + ], + [ + "▁t", + "yp" + ], + [ + "▁b", + "o" + ], + [ + "▁", + "bo" + ], + [ + "▁pro", + "m" + ], + [ + "▁pr", + "om" + ], + [ + "▁p", + "rom" + ], + [ + "▁he", + "ad" + ], + [ + "▁h", + "ead" + ], + [ + "▁", + "head" + ], + [ + "ch", + "n" + ], + [ + "c", + "hn" + ], + [ + "▁pro", + "t" + ], + [ + "▁pr", + "ot" + ], + [ + "▁p", + "rot" + ], + [ + "▁release", + "d" + ], + [ + "▁rele", + "ased" + ], + [ + "▁re", + "leased" + ], + [ + "ordin", + "g" + ], + [ + "ord", + "ing" + ], + [ + "or", + "ding" + ], + [ + "▁1", + "4" + ], + [ + "▁", + "14" + ], + [ + "ita", + "l" + ], + [ + "it", + "al" + ], + [ + "i", + "tal" + ], + [ + "▁19", + "5" + ], + [ + "▁1", + "95" + ], + [ + "gi", + "n" + ], + [ + "g", + "in" + ], + [ + "ive", + "ly" + ], + [ + "iv", + "ely" + ], + [ + "ivers", + "ity" + ], + [ + "omi", + "n" + ], + [ + "om", + "in" + ], + [ + "o", + "min" + ], + [ + "▁B", + "y" + ], + [ + "▁P", + "l" + ], + [ + "▁att", + "ack" + ], + [ + "▁res", + "t" + ], + [ + "▁re", + "st" + ], + [ + "▁r", + "est" + ], + [ + "▁", + "rest" + ], + [ + "▁no", + "w" + ], + [ + "▁n", + "ow" + ], + [ + "▁", + "now" + ], + [ + "ive", + "n" + ], + [ + "iv", + "en" + ], + [ + "i", + "ven" + ], + [ + "▁plac", + "e" + ], + [ + "▁pl", + "ace" + ], + [ + "▁", + "place" + ], + [ + "▁maj", + "or" + ], + [ + "▁m", + "ajor" + ], + [ + "▁ele", + "ct" + ], + [ + "▁el", + "ect" + ], + [ + "▁e", + "lect" + ], + [ + "in", + "c" + ], + [ + "▁B", + "r" + ], + [ + "▁pa", + "t" + ], + [ + "▁p", + "at" + ], + [ + "▁", + "pat" + ], + [ + "▁ord", + "er" + ], + [ + "▁or", + "der" + ], + [ + "▁", + "order" + ], + [ + "▁larg", + "e" + ], + [ + "▁lar", + "ge" + ], + [ + "▁appe", + "ar" + ], + [ + "▁app", + "ear" + ], + [ + "ame", + "d" + ], + [ + "am", + "ed" + ], + [ + "a", + "med" + ], + [ + "ar", + "m" + ], + [ + "a", + "rm" + ], + [ + "▁pos", + "s" + ], + [ + "▁po", + "ss" + ], + [ + "▁p", + "oss" + ], + [ + "e", + "b" + ], + [ + "▁ref", + "er" + ], + [ + "▁re", + "fer" + ], + [ + "iss", + "ion" + ], + [ + "▁bo", + "ok" + ], + [ + "▁b", + "ook" + ], + [ + "▁", + "book" + ], + [ + "▁Wor", + "ld" + ], + [ + "▁W", + "orld" + ], + [ + "▁app", + "ro" + ], + [ + "▁ap", + "pro" + ], + [ + "lis", + "h" + ], + [ + "li", + "sh" + ], + [ + "l", + "ish" + ], + [ + "w", + "a" + ], + [ + "▁Au", + "g" + ], + [ + "▁A", + "ug" + ], + [ + "▁ever", + "y" + ], + [ + "▁ev", + "ery" + ], + [ + "▁e", + "very" + ], + [ + "▁cu", + "r" + ], + [ + "▁c", + "ur" + ], + [ + "▁Ca", + "n" + ], + [ + "▁C", + "an" + ], + [ + "▁yo", + "n" + ], + [ + "▁y", + "on" + ], + [ + "▁", + "yon" + ], + [ + "if", + "ied" + ], + [ + "i", + "fied" + ], + [ + "▁s", + "k" + ], + [ + "▁", + "sk" + ], + [ + "en", + "g" + ], + [ + "e", + "ng" + ], + [ + "on", + "om" + ], + [ + "▁ha", + "nd" + ], + [ + "▁h", + "and" + ], + [ + "▁", + "hand" + ], + [ + "ace", + "d" + ], + [ + "ac", + "ed" + ], + [ + "a", + "ced" + ], + [ + "ur", + "ch" + ], + [ + "▁or", + "gan" + ], + [ + "▁", + "organ" + ], + [ + "ward", + "s" + ], + [ + "war", + "ds" + ], + [ + "w", + "ards" + ], + [ + "▁Germ", + "an" + ], + [ + "▁Ger", + "man" + ], + [ + "▁G", + "erman" + ], + [ + "▁J", + "u" + ], + [ + "▁Sep", + "t" + ], + [ + "▁Se", + "pt" + ], + [ + "▁S", + "ept" + ], + [ + "▁las", + "t" + ], + [ + "▁la", + "st" + ], + [ + "▁l", + "ast" + ], + [ + "▁", + "last" + ], + [ + "▁Com", + "m" + ], + [ + "▁Co", + "mm" + ], + [ + "▁C", + "omm" + ], + [ + "her", + "n" + ], + [ + "h", + "ern" + ], + [ + "▁sinc", + "e" + ], + [ + "▁sin", + "ce" + ], + [ + "▁si", + "nce" + ], + [ + "▁s", + "ince" + ], + [ + "gra", + "m" + ], + [ + "gr", + "am" + ], + [ + "g", + "ram" + ], + [ + "▁fac", + "t" + ], + [ + "▁fa", + "ct" + ], + [ + "▁f", + "act" + ], + [ + "▁", + "fact" + ], + [ + "▁Aug", + "ust" + ], + [ + "▁br", + "e" + ], + [ + "▁b", + "re" + ], + [ + "▁", + "bre" + ], + [ + "▁cent", + "ury" + ], + [ + "▁", + "century" + ], + [ + "▁an", + "n" + ], + [ + "▁", + "ann" + ], + [ + "▁so", + "c" + ], + [ + "▁s", + "oc" + ], + [ + "▁too", + "k" + ], + [ + "▁to", + "ok" + ], + [ + "▁t", + "ook" + ], + [ + "▁lev", + "el" + ], + [ + "▁le", + "vel" + ], + [ + "▁", + "level" + ], + [ + "▁an", + "other" + ], + [ + "▁19", + "3" + ], + [ + "▁1", + "93" + ], + [ + "▁m", + "y" + ], + [ + "▁", + "my" + ], + [ + "▁19", + "1" + ], + [ + "▁1", + "91" + ], + [ + "▁Sept", + "ember" + ], + [ + "ra", + "ft" + ], + [ + "r", + "aft" + ], + [ + "ove", + "r" + ], + [ + "ov", + "er" + ], + [ + "o", + "ver" + ], + [ + "▁comm", + "un" + ], + [ + "▁com", + "mun" + ], + [ + "▁", + "commun" + ], + [ + "▁car", + "e" + ], + [ + "▁ca", + "re" + ], + [ + "▁c", + "are" + ], + [ + "▁", + "care" + ], + [ + "▁si", + "x" + ], + [ + "▁s", + "ix" + ], + [ + "▁vi", + "s" + ], + [ + "▁v", + "is" + ], + [ + "▁", + "vis" + ], + [ + "it", + "i" + ], + [ + "i", + "ti" + ], + [ + "at", + "s" + ], + [ + "a", + "ts" + ], + [ + "▁ge", + "t" + ], + [ + "▁g", + "et" + ], + [ + "▁", + "get" + ], + [ + "ase", + "s" + ], + [ + "as", + "es" + ], + [ + "a", + "ses" + ], + [ + "ore", + "d" + ], + [ + "or", + "ed" + ], + [ + "o", + "red" + ], + [ + "ence", + "s" + ], + [ + "enc", + "es" + ], + [ + "en", + "ces" + ], + [ + "▁tur", + "n" + ], + [ + "▁t", + "urn" + ], + [ + "me", + "d" + ], + [ + "m", + "ed" + ], + [ + "▁Aust", + "ral" + ], + [ + "▁w", + "in" + ], + [ + "▁", + "win" + ], + [ + "ve", + "s" + ], + [ + "v", + "es" + ], + [ + "ition", + "s" + ], + [ + "iti", + "ons" + ], + [ + "it", + "ions" + ], + [ + "▁de", + "m" + ], + [ + "▁d", + "em" + ], + [ + "▁", + "dem" + ], + [ + "▁bat", + "t" + ], + [ + "▁ba", + "tt" + ], + [ + "▁b", + "att" + ], + [ + "▁k", + "m" + ], + [ + "▁of", + "ten" + ], + [ + "▁o", + "ften" + ], + [ + "▁Y", + "ork" + ], + [ + "▁A", + "y" + ], + [ + "▁gene", + "r" + ], + [ + "▁gen", + "er" + ], + [ + "▁ge", + "ner" + ], + [ + "▁cou", + "r" + ], + [ + "▁co", + "ur" + ], + [ + "▁c", + "our" + ], + [ + "▁fi", + "ve" + ], + [ + "▁f", + "ive" + ], + [ + "▁govern", + "ment" + ], + [ + "▁ma", + "r" + ], + [ + "▁m", + "ar" + ], + [ + "▁", + "mar" + ], + [ + "io", + "d" + ], + [ + "i", + "od" + ], + [ + "▁cit", + "y" + ], + [ + "▁c", + "ity" + ], + [ + "▁le", + "g" + ], + [ + "▁l", + "eg" + ], + [ + "▁", + "leg" + ], + [ + "▁ol", + "d" + ], + [ + "▁o", + "ld" + ], + [ + "▁", + "old" + ], + [ + "ul", + "ation" + ], + [ + "u", + "lation" + ], + [ + "▁gre", + "at" + ], + [ + "▁g", + "reat" + ], + [ + "rie", + "d" + ], + [ + "ri", + "ed" + ], + [ + "r", + "ied" + ], + [ + "ent", + "ly" + ], + [ + "▁en", + "g" + ], + [ + "▁e", + "ng" + ], + [ + "▁", + "eng" + ], + [ + "▁O", + "ct" + ], + [ + "ice", + "s" + ], + [ + "ic", + "es" + ], + [ + "i", + "ces" + ], + [ + "ree", + "n" + ], + [ + "re", + "en" + ], + [ + "r", + "een" + ], + [ + "▁Nort", + "h" + ], + [ + "▁Nor", + "th" + ], + [ + "▁N", + "orth" + ], + [ + "▁st", + "ill" + ], + [ + "▁No", + "v" + ], + [ + "▁N", + "ov" + ], + [ + "or", + "p" + ], + [ + "ome", + "n" + ], + [ + "om", + "en" + ], + [ + "o", + "men" + ], + [ + "ge", + "d" + ], + [ + "g", + "ed" + ], + [ + "ide", + "s" + ], + [ + "id", + "es" + ], + [ + "i", + "des" + ], + [ + "▁pre", + "v" + ], + [ + "▁pr", + "ev" + ], + [ + "▁nort", + "h" + ], + [ + "▁nor", + "th" + ], + [ + "▁n", + "orth" + ], + [ + "▁mon", + "th" + ], + [ + "▁ta", + "ke" + ], + [ + "▁t", + "ake" + ], + [ + "▁ter", + "m" + ], + [ + "▁te", + "rm" + ], + [ + "▁t", + "erm" + ], + [ + "▁", + "term" + ], + [ + "▁hom", + "e" + ], + [ + "▁ho", + "me" + ], + [ + "▁h", + "ome" + ], + [ + "▁base", + "d" + ], + [ + "▁bas", + "ed" + ], + [ + "▁b", + "ased" + ], + [ + "▁", + "based" + ], + [ + "at", + "a" + ], + [ + "a", + "ta" + ], + [ + ")", + "," + ], + [ + "▁du", + "e" + ], + [ + "▁d", + "ue" + ], + [ + "▁", + "due" + ], + [ + "▁bes", + "t" + ], + [ + "▁be", + "st" + ], + [ + "▁b", + "est" + ], + [ + "▁", + "best" + ], + [ + "▁kn", + "ow" + ], + [ + "▁k", + "now" + ], + [ + "rea", + "d" + ], + [ + "re", + "ad" + ], + [ + "r", + "ead" + ], + [ + "▁is", + "s" + ], + [ + "▁i", + "ss" + ], + [ + "▁", + "iss" + ], + [ + "▁ca", + "p" + ], + [ + "▁c", + "ap" + ], + [ + "▁receive", + "d" + ], + [ + "▁recei", + "ved" + ], + [ + "▁rece", + "ived" + ], + [ + "▁re", + "ceived" + ], + [ + "▁mar", + "k" + ], + [ + "▁m", + "ark" + ], + [ + "▁", + "mark" + ], + [ + "▁go", + "od" + ], + [ + "▁g", + "ood" + ], + [ + "▁", + "good" + ], + [ + "oin", + "t" + ], + [ + "oi", + "nt" + ], + [ + "o", + "int" + ], + [ + "▁bel", + "ie" + ], + [ + "▁be", + "lie" + ], + [ + "io", + "r" + ], + [ + "i", + "or" + ], + [ + "▁with", + "in" + ], + [ + "▁wit", + "hin" + ], + [ + "▁fin", + "d" + ], + [ + "▁fi", + "nd" + ], + [ + "▁f", + "ind" + ], + [ + "ake", + "s" + ], + [ + "ak", + "es" + ], + [ + "a", + "kes" + ], + [ + "▁sing", + "le" + ], + [ + "▁s", + "ingle" + ], + [ + "isye", + "n" + ], + [ + "isy", + "en" + ], + [ + "is", + "yen" + ], + [ + "oc", + "i" + ], + [ + "o", + "ci" + ], + [ + "▁E", + "u" + ], + [ + "▁ver", + "s" + ], + [ + "▁ve", + "rs" + ], + [ + "▁v", + "ers" + ], + [ + "▁", + "vers" + ], + [ + "▁G", + "e" + ], + [ + "ai", + "m" + ], + [ + "a", + "im" + ], + [ + "▁pa", + "r" + ], + [ + "▁p", + "ar" + ], + [ + "▁", + "par" + ], + [ + "▁le", + "ft" + ], + [ + "▁child", + "ren" + ], + [ + "▁", + "children" + ], + [ + "lin", + "g" + ], + [ + "li", + "ng" + ], + [ + "l", + "ing" + ], + [ + "▁nam", + "e" + ], + [ + "▁na", + "me" + ], + [ + "▁n", + "ame" + ], + [ + "▁", + "name" + ], + [ + "▁op", + "p" + ], + [ + "▁o", + "pp" + ], + [ + "▁", + "opp" + ], + [ + "▁famil", + "y" + ], + [ + "▁fam", + "ily" + ], + [ + "▁", + "family" + ], + [ + "▁P", + "r" + ], + [ + "▁3", + "0" + ], + [ + "▁", + "30" + ], + [ + "▁sh", + "ort" + ], + [ + "▁ca", + "us" + ], + [ + "▁c", + "aus" + ], + [ + "▁Oct", + "ober" + ], + [ + "▁sp", + "e" + ], + [ + "▁s", + "pe" + ], + [ + "▁", + "spe" + ], + [ + "ect", + "ion" + ], + [ + "e", + "ction" + ], + [ + "▁re", + "ad" + ], + [ + "▁r", + "ead" + ], + [ + "▁", + "read" + ], + [ + "▁les", + "s" + ], + [ + "▁le", + "ss" + ], + [ + "▁l", + "ess" + ], + [ + "▁", + "less" + ], + [ + "▁Ja", + "n" + ], + [ + "▁J", + "an" + ], + [ + "▁re", + "al" + ], + [ + "▁r", + "eal" + ], + [ + "▁", + "real" + ], + [ + "▁e", + "t" + ], + [ + "▁", + "et" + ], + [ + "ale", + "s" + ], + [ + "al", + "es" + ], + [ + "a", + "les" + ], + [ + "▁to", + "p" + ], + [ + "▁t", + "op" + ], + [ + "▁", + "top" + ], + [ + "▁lin", + "e" + ], + [ + "▁li", + "ne" + ], + [ + "▁l", + "ine" + ], + [ + "▁", + "line" + ], + [ + "ini", + "ng" + ], + [ + "in", + "ing" + ], + [ + "i", + "ning" + ], + [ + "▁e", + "qu" + ], + [ + "▁", + "equ" + ], + [ + "▁Wil", + "l" + ], + [ + "▁Wi", + "ll" + ], + [ + "▁W", + "ill" + ], + [ + "▁st", + "and" + ], + [ + "▁", + "stand" + ], + [ + "▁M", + "e" + ], + [ + "▁Kin", + "g" + ], + [ + "▁Ki", + "ng" + ], + [ + "▁K", + "ing" + ], + [ + "▁proc", + "ess" + ], + [ + "▁pro", + "cess" + ], + [ + "ila", + "r" + ], + [ + "il", + "ar" + ], + [ + "i", + "lar" + ], + [ + "▁g", + "l" + ], + [ + "▁", + "gl" + ], + [ + "▁Chris", + "t" + ], + [ + "▁Ch", + "rist" + ], + [ + "▁fe", + "w" + ], + [ + "▁f", + "ew" + ], + [ + "▁us", + "ing" + ], + [ + "▁", + "using" + ], + [ + "urt", + "her" + ], + [ + "ur", + "ther" + ], + [ + "▁de", + "ath" + ], + [ + "▁Jun", + "e" + ], + [ + "▁Ju", + "ne" + ], + [ + "▁J", + "une" + ], + [ + "ar", + "n" + ], + [ + "m", + "e" + ], + [ + "▁fu", + "n" + ], + [ + "▁f", + "un" + ], + [ + "hes", + "t" + ], + [ + "he", + "st" + ], + [ + "h", + "est" + ], + [ + "▁pres", + "ent" + ], + [ + "▁p", + "resent" + ], + [ + "iet", + "y" + ], + [ + "ie", + "ty" + ], + [ + "i", + "ety" + ], + [ + "▁heal", + "th" + ], + [ + "▁he", + "alth" + ], + [ + "▁", + "health" + ], + [ + "▁ar", + "r" + ], + [ + "▁", + "arr" + ], + [ + "ot", + "e" + ], + [ + "o", + "te" + ], + [ + "iro", + "n" + ], + [ + "ir", + "on" + ], + [ + "i", + "ron" + ], + [ + "▁O", + "r" + ], + [ + "▁", + "Or" + ], + [ + "▁G", + "u" + ], + [ + "ens", + "e" + ], + [ + "en", + "se" + ], + [ + "▁Sout", + "h" + ], + [ + "▁Sou", + "th" + ], + [ + "▁So", + "uth" + ], + [ + "▁S", + "outh" + ], + [ + "▁res", + "e" + ], + [ + "▁re", + "se" + ], + [ + "▁r", + "ese" + ], + [ + "m", + "s" + ], + [ + "▁w", + "on" + ], + [ + "▁", + "won" + ], + [ + "▁inf", + "l" + ], + [ + "▁in", + "fl" + ], + [ + "em", + "pt" + ], + [ + "al", + "f" + ], + [ + "▁spec", + "ies" + ], + [ + "▁spe", + "cies" + ], + [ + "▁", + "species" + ], + [ + "ho", + "r" + ], + [ + "h", + "or" + ], + [ + "▁..", + "." + ], + [ + "▁.", + ".." + ], + [ + "▁", + "..." + ], + [ + "▁tech", + "n" + ], + [ + "▁te", + "chn" + ], + [ + "▁fin", + "al" + ], + [ + "▁fi", + "nal" + ], + [ + "▁f", + "inal" + ], + [ + "▁even", + "t" + ], + [ + "▁ev", + "ent" + ], + [ + "▁e", + "vent" + ], + [ + "▁so", + "l" + ], + [ + "▁s", + "ol" + ], + [ + "▁be", + "h" + ], + [ + "▁add", + "ition" + ], + [ + "▁ad", + "dition" + ], + [ + "oa", + "d" + ], + [ + "o", + "ad" + ], + [ + "▁Jul", + "y" + ], + [ + "▁Ju", + "ly" + ], + [ + "▁Ha", + "r" + ], + [ + "▁H", + "ar" + ], + [ + "y", + "l" + ], + [ + "▁inf", + "orm" + ], + [ + "▁in", + "form" + ], + [ + "▁2", + "5" + ], + [ + "▁", + "25" + ], + [ + "▁se", + "e" + ], + [ + "▁s", + "ee" + ], + [ + "▁", + "see" + ], + [ + "▁per", + "iod" + ], + [ + "▁k", + "e" + ], + [ + "▁", + "ke" + ], + [ + "▁Ap", + "r" + ], + [ + "▁A", + "pr" + ], + [ + "qu", + "e" + ], + [ + "q", + "ue" + ], + [ + "ure", + "d" + ], + [ + "ur", + "ed" + ], + [ + "u", + "red" + ], + [ + "ot", + "t" + ], + [ + "o", + "tt" + ], + [ + "ua", + "ry" + ], + [ + "u", + "ary" + ], + [ + "oma", + "n" + ], + [ + "om", + "an" + ], + [ + "o", + "man" + ], + [ + "▁prog", + "ram" + ], + [ + "▁pro", + "gram" + ], + [ + "▁pr", + "ogram" + ], + [ + "▁I", + "f" + ], + [ + "▁", + "If" + ], + [ + "hin", + "g" + ], + [ + "hi", + "ng" + ], + [ + "h", + "ing" + ], + [ + "▁Marc", + "h" + ], + [ + "▁Mar", + "ch" + ], + [ + "▁M", + "arch" + ], + [ + "▁import", + "ant" + ], + [ + "▁de", + "l" + ], + [ + "▁d", + "el" + ], + [ + "▁comm", + "on" + ], + [ + "▁com", + "mon" + ], + [ + "▁M", + "c" + ], + [ + "▁k", + "ò" + ], + [ + "▁F", + "l" + ], + [ + "ard", + "s" + ], + [ + "ar", + "ds" + ], + [ + "▁Apr", + "il" + ], + [ + "▁Ap", + "ril" + ], + [ + "b", + "y" + ], + [ + "▁af", + "f" + ], + [ + "▁a", + "ff" + ], + [ + "▁", + "aff" + ], + [ + "▁Euro", + "p" + ], + [ + "▁Eu", + "rop" + ], + [ + "▁E", + "urop" + ], + [ + "▁por", + "t" + ], + [ + "▁p", + "ort" + ], + [ + "▁", + "port" + ], + [ + "▁vie", + "w" + ], + [ + "▁vi", + "ew" + ], + [ + "▁v", + "iew" + ], + [ + "▁", + "view" + ], + [ + "▁Nov", + "ember" + ], + [ + "on", + "y" + ], + [ + "o", + "ny" + ], + [ + "ati", + "c" + ], + [ + "at", + "ic" + ], + [ + "a", + "tic" + ], + [ + "id", + "ge" + ], + [ + "▁st", + "ory" + ], + [ + "▁da", + "m" + ], + [ + "▁d", + "am" + ], + [ + "▁", + "dam" + ], + [ + "▁Po", + "l" + ], + [ + "▁P", + "ol" + ], + [ + "rie", + "s" + ], + [ + "ri", + "es" + ], + [ + "r", + "ies" + ], + [ + "▁The", + "se" + ], + [ + "▁Th", + "ese" + ], + [ + "▁with", + "out" + ], + [ + "▁Dur", + "ing" + ], + [ + "▁Du", + "ring" + ], + [ + "▁D", + "uring" + ], + [ + "▁no", + "n" + ], + [ + "▁n", + "on" + ], + [ + "▁", + "non" + ], + [ + "▁", + "&" + ], + [ + "▁ban", + "d" + ], + [ + "▁ba", + "nd" + ], + [ + "▁b", + "and" + ], + [ + "▁", + "band" + ], + [ + "▁do", + "es" + ], + [ + "▁d", + "oes" + ], + [ + "▁E", + "m" + ], + [ + "b", + "s" + ], + [ + "2", + "0" + ], + [ + "▁T", + "r" + ], + [ + "amp", + "le" + ], + [ + "am", + "ple" + ], + [ + "ake", + "n" + ], + [ + "ak", + "en" + ], + [ + "a", + "ken" + ], + [ + "o", + "x" + ], + [ + "mb", + "er" + ], + [ + "m", + "ber" + ], + [ + "ren", + "t" + ], + [ + "re", + "nt" + ], + [ + "r", + "ent" + ], + [ + "▁Nation", + "al" + ], + [ + "▁Nat", + "ional" + ], + [ + "▁N", + "ational" + ], + [ + "▁va", + "l" + ], + [ + "▁v", + "al" + ], + [ + "▁", + "val" + ], + [ + "▁pl", + "an" + ], + [ + "▁p", + "lan" + ], + [ + "▁", + "plan" + ], + [ + "apa", + "n" + ], + [ + "ap", + "an" + ], + [ + "a", + "pan" + ], + [ + "al", + "k" + ], + [ + "▁kil", + "l" + ], + [ + "▁ki", + "ll" + ], + [ + "▁k", + "ill" + ], + [ + "▁", + "kill" + ], + [ + "av", + "y" + ], + [ + "a", + "vy" + ], + [ + "▁thir", + "d" + ], + [ + "▁th", + "ird" + ], + [ + "▁", + "third" + ], + [ + "▁include", + "d" + ], + [ + "▁includ", + "ed" + ], + [ + "▁incl", + "uded" + ], + [ + "▁ne", + "xt" + ], + [ + "▁n", + "ext" + ], + [ + "▁e", + "l" + ], + [ + "▁", + "el" + ], + [ + "le", + "v" + ], + [ + "l", + "ev" + ], + [ + "▁sout", + "h" + ], + [ + "▁sou", + "th" + ], + [ + "▁so", + "uth" + ], + [ + "▁s", + "outh" + ], + [ + "▁", + "]" + ], + [ + "▁cam", + "p" + ], + [ + "▁ca", + "mp" + ], + [ + "▁c", + "amp" + ], + [ + "▁la", + "w" + ], + [ + "▁l", + "aw" + ], + [ + "▁", + "law" + ], + [ + "▁I", + "I" + ], + [ + "▁", + "II" + ], + [ + "▁A", + "m" + ], + [ + "▁", + "Am" + ], + [ + "le", + "t" + ], + [ + "l", + "et" + ], + [ + "▁ch", + "e" + ], + [ + "▁c", + "he" + ], + [ + "▁", + "che" + ], + [ + "▁te", + "st" + ], + [ + "▁t", + "est" + ], + [ + "▁mem", + "b" + ], + [ + "▁me", + "mb" + ], + [ + "▁m", + "emb" + ], + [ + "▁Ja", + "pan" + ], + [ + "▁J", + "apan" + ], + [ + "▁cha", + "ng" + ], + [ + "▁ch", + "ang" + ], + [ + "▁", + "chang" + ], + [ + "▁lo", + "ok" + ], + [ + "▁l", + "ook" + ], + [ + "▁", + "look" + ], + [ + "s", + "p" + ], + [ + "ver", + "s" + ], + [ + "ve", + "rs" + ], + [ + "v", + "ers" + ], + [ + "er", + "y" + ], + [ + "e", + "ry" + ], + [ + "▁te", + "m" + ], + [ + "▁t", + "em" + ], + [ + "▁pro", + "f" + ], + [ + "▁pr", + "of" + ], + [ + "rot", + "e" + ], + [ + "ro", + "te" + ], + [ + "r", + "ote" + ], + [ + "▁am", + "ong" + ], + [ + "▁", + "%" + ], + [ + "iste", + "r" + ], + [ + "ist", + "er" + ], + [ + "is", + "ter" + ], + [ + "i", + "ster" + ], + [ + "ato", + "r" + ], + [ + "at", + "or" + ], + [ + "a", + "tor" + ], + [ + "▁wa", + "nt" + ], + [ + "▁w", + "ant" + ], + [ + "▁e", + "c" + ], + [ + "▁", + "ec" + ], + [ + "he", + "l" + ], + [ + "h", + "el" + ], + [ + "▁pol", + "it" + ], + [ + "▁p", + "olit" + ], + [ + "▁becom", + "e" + ], + [ + "▁bec", + "ome" + ], + [ + "▁be", + "come" + ], + [ + "▁Ma", + "n" + ], + [ + "▁M", + "an" + ], + [ + "iva", + "l" + ], + [ + "iv", + "al" + ], + [ + "i", + "val" + ], + [ + "▁Univers", + "ity" + ], + [ + "▁Un", + "iversity" + ], + [ + "▁day", + "s" + ], + [ + "▁da", + "ys" + ], + [ + "▁d", + "ays" + ], + [ + "▁", + "days" + ], + [ + "rod", + "u" + ], + [ + "ro", + "du" + ], + [ + "▁prev", + "ious" + ], + [ + "▁pre", + "vious" + ], + [ + "ip", + "p" + ], + [ + "i", + "pp" + ], + [ + "▁L", + "a" + ], + [ + "▁", + "La" + ], + [ + "co", + "m" + ], + [ + "c", + "om" + ], + [ + "▁Fra", + "n" + ], + [ + "▁Fr", + "an" + ], + [ + "▁F", + "ran" + ], + [ + "ce", + "mber" + ], + [ + "c", + "ember" + ], + [ + "rien", + "d" + ], + [ + "rie", + "nd" + ], + [ + "ri", + "end" + ], + [ + "▁cl", + "e" + ], + [ + "▁c", + "le" + ], + [ + "▁", + "cle" + ], + [ + "▁rev", + "iew" + ], + [ + "▁re", + "view" + ], + [ + "▁pos", + "t" + ], + [ + "▁po", + "st" + ], + [ + "▁p", + "ost" + ], + [ + "▁", + "post" + ], + [ + "pl", + "e" + ], + [ + "p", + "le" + ], + [ + "rin", + "g" + ], + [ + "ri", + "ng" + ], + [ + "r", + "ing" + ], + [ + "▁di", + "v" + ], + [ + "▁d", + "iv" + ], + [ + "▁", + "div" + ], + [ + "▁le", + "d" + ], + [ + "▁l", + "ed" + ], + [ + "▁", + "led" + ], + [ + "▁loc", + "al" + ], + [ + "▁lo", + "cal" + ], + [ + "▁l", + "ocal" + ], + [ + "▁rep", + "l" + ], + [ + "▁re", + "pl" + ], + [ + "pa", + "r" + ], + [ + "p", + "ar" + ], + [ + "▁ra", + "d" + ], + [ + "▁r", + "ad" + ], + [ + "▁", + "rad" + ], + [ + "▁Dec", + "ember" + ], + [ + "▁De", + "cember" + ], + [ + "are", + "n" + ], + [ + "ar", + "en" + ], + [ + "a", + "ren" + ], + [ + "▁fr", + "e" + ], + [ + "▁f", + "re" + ], + [ + "ance", + "s" + ], + [ + "anc", + "es" + ], + [ + "an", + "ces" + ], + [ + "▁li", + "st" + ], + [ + "▁l", + "ist" + ], + [ + "▁", + "list" + ], + [ + "▁Hi", + "s" + ], + [ + "▁H", + "is" + ], + [ + "one", + "s" + ], + [ + "on", + "es" + ], + [ + "o", + "nes" + ], + [ + "lin", + "e" + ], + [ + "li", + "ne" + ], + [ + "l", + "ine" + ], + [ + "▁prob", + "le" + ], + [ + "▁pro", + "ble" + ], + [ + "▁Jan", + "uary" + ], + [ + "ogra", + "f" + ], + [ + "ur", + "s" + ], + [ + "u", + "rs" + ], + [ + "che", + "d" + ], + [ + "ch", + "ed" + ], + [ + "c", + "hed" + ], + [ + "▁On", + "e" + ], + [ + "▁O", + "ne" + ], + [ + "▁", + "One" + ], + [ + "our", + "n" + ], + [ + "o", + "urn" + ], + [ + "▁con", + "d" + ], + [ + "▁co", + "nd" + ], + [ + "▁c", + "ond" + ], + [ + "▁ti", + "t" + ], + [ + "▁t", + "it" + ], + [ + "▁est", + "ab" + ], + [ + "sel", + "f" + ], + [ + "s", + "elf" + ], + [ + "s", + "h" + ], + [ + "enc", + "y" + ], + [ + "en", + "cy" + ], + [ + "▁wr", + "ote" + ], + [ + "▁w", + "rote" + ], + [ + "▁lig", + "ht" + ], + [ + "▁li", + "ght" + ], + [ + "▁l", + "ight" + ], + [ + "▁", + "light" + ], + [ + "▁for", + "e" + ], + [ + "▁fo", + "re" + ], + [ + "▁f", + "ore" + ], + [ + "▁", + "fore" + ], + [ + "▁pro", + "p" + ], + [ + "▁pr", + "op" + ], + [ + "▁p", + "rop" + ], + [ + "▁id", + "e" + ], + [ + "▁i", + "de" + ], + [ + "▁", + "ide" + ], + [ + "▁Yo", + "u" + ], + [ + "▁Y", + "ou" + ], + [ + "▁", + "You" + ], + [ + "ain", + "ing" + ], + [ + "ai", + "ning" + ], + [ + "a", + "ining" + ], + [ + "▁tra", + "ck" + ], + [ + "▁tr", + "ack" + ], + [ + "▁t", + "rack" + ], + [ + "▁", + "track" + ], + [ + "▁some", + "t" + ], + [ + "▁so", + "met" + ], + [ + "▁s", + "omet" + ], + [ + "aste", + "r" + ], + [ + "ast", + "er" + ], + [ + "as", + "ter" + ], + [ + "a", + "ster" + ], + [ + "agu", + "e" + ], + [ + "ag", + "ue" + ], + [ + "a", + "gue" + ], + [ + "▁inv", + "ol" + ], + [ + "▁in", + "vol" + ], + [ + "▁gro", + "w" + ], + [ + "▁gr", + "ow" + ], + [ + "▁g", + "row" + ], + [ + "▁how", + "ever" + ], + [ + "▁ro", + "le" + ], + [ + "▁r", + "ole" + ], + [ + "▁", + "role" + ], + [ + "▁bod", + "y" + ], + [ + "▁bo", + "dy" + ], + [ + "▁b", + "ody" + ], + [ + "▁", + "body" + ], + [ + "aug", + "h" + ], + [ + "au", + "gh" + ], + [ + "▁vi", + "de" + ], + [ + "▁v", + "ide" + ], + [ + "ea", + "d" + ], + [ + "e", + "ad" + ], + [ + "▁contro", + "l" + ], + [ + "▁cont", + "rol" + ], + [ + "t", + "o" + ], + [ + "▁play", + "ed" + ], + [ + "▁pl", + "ayed" + ], + [ + "▁describe", + "d" + ], + [ + "▁describ", + "ed" + ], + [ + "▁desc", + "ribed" + ], + [ + "▁des", + "cribed" + ], + [ + "▁att", + "empt" + ], + [ + "▁Br", + "o" + ], + [ + "▁B", + "ro" + ], + [ + "ren", + "ch" + ], + [ + "▁Ge", + "n" + ], + [ + "▁G", + "en" + ], + [ + "▁", + "Gen" + ], + [ + "▁sim", + "ilar" + ], + [ + "▁e", + "as" + ], + [ + "▁", + "eas" + ], + [ + "ot", + "s" + ], + [ + "o", + "ts" + ], + [ + "▁pro", + "ject" + ], + [ + "▁Pa", + "r" + ], + [ + "▁P", + "ar" + ], + [ + "▁includ", + "e" + ], + [ + "▁incl", + "ude" + ], + [ + "ache", + "d" + ], + [ + "ach", + "ed" + ], + [ + "ac", + "hed" + ], + [ + "a", + "ched" + ], + [ + "▁si", + "t" + ], + [ + "▁s", + "it" + ], + [ + "▁member", + "s" + ], + [ + "▁memb", + "ers" + ], + [ + "▁mem", + "bers" + ], + [ + "▁m", + "embers" + ], + [ + "oo", + "n" + ], + [ + "o", + "on" + ], + [ + "▁des", + "t" + ], + [ + "▁de", + "st" + ], + [ + "▁d", + "est" + ], + [ + "▁", + "dest" + ], + [ + "▁sid", + "e" + ], + [ + "▁si", + "de" + ], + [ + "▁s", + "ide" + ], + [ + "▁", + "side" + ], + [ + "▁E", + "x" + ], + [ + "▁", + "Ex" + ], + [ + "▁Bu", + "t" + ], + [ + "▁B", + "ut" + ], + [ + "▁", + "But" + ], + [ + "▁Mu", + "s" + ], + [ + "▁M", + "us" + ], + [ + "▁act", + "iv" + ], + [ + "▁man", + "ag" + ], + [ + "ent", + "ion" + ], + [ + "▁201", + "0" + ], + [ + "▁20", + "10" + ], + [ + "▁ba", + "s" + ], + [ + "▁b", + "as" + ], + [ + "ines", + "s" + ], + [ + "ine", + "ss" + ], + [ + "in", + "ess" + ], + [ + "i", + "ness" + ], + [ + "ograp", + "h" + ], + [ + "ogra", + "ph" + ], + [ + "og", + "raph" + ], + [ + "iti", + "ve" + ], + [ + "it", + "ive" + ], + [ + "▁h", + "ig" + ], + [ + "▁mi", + "d" + ], + [ + "▁m", + "id" + ], + [ + "▁", + "mid" + ], + [ + "▁stud", + "y" + ], + [ + "ce", + "nt" + ], + [ + "c", + "ent" + ], + [ + "▁E", + "l" + ], + [ + "▁", + "El" + ], + [ + "▁10", + "0" + ], + [ + "▁1", + "00" + ], + [ + "▁", + "100" + ], + [ + "▁red", + "u" + ], + [ + "▁re", + "du" + ], + [ + "▁r", + "edu" + ], + [ + "▁lan", + "g" + ], + [ + "▁la", + "ng" + ], + [ + "▁l", + "ang" + ], + [ + "rat", + "ion" + ], + [ + "r", + "ation" + ], + [ + "▁lo", + "w" + ], + [ + "▁l", + "ow" + ], + [ + "▁", + "low" + ], + [ + "▁develop", + "ment" + ], + [ + "▁de", + "velopment" + ], + [ + "▁cam", + "e" + ], + [ + "▁ca", + "me" + ], + [ + "▁c", + "ame" + ], + [ + "▁inter", + "est" + ], + [ + "▁inte", + "rest" + ], + [ + "ali", + "ty" + ], + [ + "al", + "ity" + ], + [ + "▁comm", + "and" + ], + [ + "▁bu", + "ilt" + ], + [ + "▁Ce", + "nt" + ], + [ + "▁C", + "ent" + ], + [ + "▁name", + "d" + ], + [ + "▁nam", + "ed" + ], + [ + "▁na", + "med" + ], + [ + "▁n", + "amed" + ], + [ + "▁", + "named" + ], + [ + "▁Is", + "t" + ], + [ + "▁I", + "st" + ], + [ + "▁kò", + "m" + ], + [ + "▁k", + "òm" + ], + [ + "ol", + "e" + ], + [ + "o", + "le" + ], + [ + "che", + "s" + ], + [ + "ch", + "es" + ], + [ + "c", + "hes" + ], + [ + "▁win", + "d" + ], + [ + "▁w", + "ind" + ], + [ + "▁", + "wind" + ], + [ + "▁partic", + "ular" + ], + [ + "▁part", + "icular" + ], + [ + "▁Wit", + "h" + ], + [ + "▁Wi", + "th" + ], + [ + "▁W", + "ith" + ], + [ + "▁de", + "b" + ], + [ + "▁d", + "eb" + ], + [ + "orie", + "s" + ], + [ + "ori", + "es" + ], + [ + "or", + "ies" + ], + [ + "o", + "ries" + ], + [ + "bal", + "l" + ], + [ + "ba", + "ll" + ], + [ + "b", + "all" + ], + [ + "▁origin", + "al" + ], + [ + "▁orig", + "inal" + ], + [ + "▁", + "original" + ], + [ + "▁", + "X" + ], + [ + "▁T", + "o" + ], + [ + "▁", + "To" + ], + [ + "▁st", + "at" + ], + [ + "▁vi", + "l" + ], + [ + "▁v", + "il" + ], + [ + "▁", + "vil" + ], + [ + "re", + "w" + ], + [ + "r", + "ew" + ], + [ + "▁tra", + "d" + ], + [ + "▁tr", + "ad" + ], + [ + "▁t", + "rad" + ], + [ + "▁an", + "im" + ], + [ + "▁", + "anim" + ], + [ + "ete", + "r" + ], + [ + "et", + "er" + ], + [ + "e", + "ter" + ], + [ + "res", + "ent" + ], + [ + "gg", + "est" + ], + [ + "g", + "gest" + ], + [ + "▁sug", + "gest" + ], + [ + "▁su", + "ggest" + ], + [ + "▁cap", + "t" + ], + [ + "▁ca", + "pt" + ], + [ + "▁c", + "apt" + ], + [ + "▁t", + "w" + ], + [ + "▁", + "tw" + ], + [ + "ruct", + "ion" + ], + [ + "ru", + "ction" + ], + [ + "r", + "uction" + ], + [ + "s", + "ide" + ], + [ + "da", + "y" + ], + [ + "d", + "ay" + ], + [ + "ir", + "c" + ], + [ + "▁fur", + "ther" + ], + [ + "▁f", + "urther" + ], + [ + "oun", + "g" + ], + [ + "ou", + "ng" + ], + [ + "o", + "ung" + ], + [ + "ta", + "l" + ], + [ + "t", + "al" + ], + [ + "▁gu", + "n" + ], + [ + "▁g", + "un" + ], + [ + "▁", + "gun" + ], + [ + "iv", + "id" + ], + [ + "ute", + "d" + ], + [ + "ut", + "ed" + ], + [ + "u", + "ted" + ], + [ + "▁lat", + "e" + ], + [ + "▁la", + "te" + ], + [ + "▁l", + "ate" + ], + [ + "▁fo", + "od" + ], + [ + "▁f", + "ood" + ], + [ + "▁cov", + "er" + ], + [ + "▁co", + "ver" + ], + [ + "▁c", + "over" + ], + [ + "▁", + "cover" + ], + [ + "▁count", + "ry" + ], + [ + "▁coun", + "try" + ], + [ + "our", + "s" + ], + [ + "ou", + "rs" + ], + [ + "o", + "urs" + ], + [ + "▁ha", + "ving" + ], + [ + "▁h", + "aving" + ], + [ + "▁Ki", + "b" + ], + [ + "▁K", + "ib" + ], + [ + "▁2", + "1" + ], + [ + "▁", + "21" + ], + [ + "iz", + "ation" + ], + [ + "▁bu", + "s" + ], + [ + "▁b", + "us" + ], + [ + "▁", + "bus" + ], + [ + "▁F", + "rench" + ], + [ + "▁201", + "1" + ], + [ + "▁20", + "11" + ], + [ + "▁give", + "n" + ], + [ + "▁g", + "iven" + ], + [ + "▁Ge", + "or" + ], + [ + "▁G", + "eor" + ], + [ + "y", + "n" + ], + [ + "▁histor", + "y" + ], + [ + "▁hist", + "ory" + ], + [ + "▁N", + "o" + ], + [ + "▁", + "No" + ], + [ + "ord", + "s" + ], + [ + "or", + "ds" + ], + [ + "os", + "p" + ], + [ + "o", + "sp" + ], + [ + "▁Fe", + "b" + ], + [ + "▁F", + "eb" + ], + [ + "▁hel", + "d" + ], + [ + "▁he", + "ld" + ], + [ + "▁h", + "eld" + ], + [ + "▁", + "held" + ], + [ + "▁student", + "s" + ], + [ + "▁stud", + "ents" + ], + [ + "itar", + "y" + ], + [ + "ita", + "ry" + ], + [ + "it", + "ary" + ], + [ + "▁al", + "though" + ], + [ + "▁hum", + "an" + ], + [ + "▁h", + "uman" + ], + [ + "▁", + "human" + ], + [ + "▁Ist", + "wa" + ], + [ + "▁sen", + "t" + ], + [ + "▁se", + "nt" + ], + [ + "▁s", + "ent" + ], + [ + "▁200", + "9" + ], + [ + "▁li", + "m" + ], + [ + "▁l", + "im" + ], + [ + "▁", + "lim" + ], + [ + "▁tre", + "at" + ], + [ + "▁t", + "reat" + ], + [ + "in", + "i" + ], + [ + "i", + "ni" + ], + [ + "abl", + "y" + ], + [ + "ab", + "ly" + ], + [ + "n", + "a" + ], + [ + "in", + "ation" + ], + [ + "i", + "nation" + ], + [ + "▁product", + "ion" + ], + [ + "▁produ", + "ction" + ], + [ + "▁pro", + "duction" + ], + [ + "▁p", + "roduction" + ], + [ + "▁Eng", + "lish" + ], + [ + "ge", + "s" + ], + [ + "g", + "es" + ], + [ + "▁c", + "r" + ], + [ + "▁", + "cr" + ], + [ + "▁ma", + "g" + ], + [ + "▁m", + "ag" + ], + [ + "▁consider", + "ed" + ], + [ + "▁consid", + "ered" + ], + [ + "▁200", + "8" + ], + [ + "ru", + "ary" + ], + [ + "r", + "uary" + ], + [ + "▁com", + "b" + ], + [ + "▁co", + "mb" + ], + [ + "▁c", + "omb" + ], + [ + "ce", + "r" + ], + [ + "c", + "er" + ], + [ + "rip", + "t" + ], + [ + "ri", + "pt" + ], + [ + "▁sa", + "y" + ], + [ + "▁s", + "ay" + ], + [ + "▁", + "say" + ], + [ + "ra", + "in" + ], + [ + "r", + "ain" + ], + [ + "▁le", + "t" + ], + [ + "▁l", + "et" + ], + [ + "▁", + "let" + ], + [ + "ograf", + "i" + ], + [ + "ogra", + "fi" + ], + [ + "▁pres", + "s" + ], + [ + "▁pre", + "ss" + ], + [ + "▁pr", + "ess" + ], + [ + "▁p", + "ress" + ], + [ + "▁", + "press" + ], + [ + "▁infl", + "u" + ], + [ + "▁inf", + "lu" + ], + [ + "▁in", + "flu" + ], + [ + "▁sol", + "d" + ], + [ + "▁so", + "ld" + ], + [ + "▁s", + "old" + ], + [ + "▁Feb", + "ruary" + ], + [ + "▁time", + "s" + ], + [ + "▁tim", + "es" + ], + [ + "▁ti", + "mes" + ], + [ + "▁t", + "imes" + ], + [ + "▁we", + "ek" + ], + [ + "▁", + "week" + ], + [ + "pl", + "oy" + ], + [ + "▁stro", + "ng" + ], + [ + "▁str", + "ong" + ], + [ + "▁st", + "rong" + ], + [ + "▁", + "strong" + ], + [ + "▁game", + "s" + ], + [ + "▁gam", + "es" + ], + [ + "▁ga", + "mes" + ], + [ + "▁g", + "ames" + ], + [ + "umen", + "t" + ], + [ + "ume", + "nt" + ], + [ + "um", + "ent" + ], + [ + "u", + "ment" + ], + [ + "id", + "s" + ], + [ + "i", + "ds" + ], + [ + "▁impr", + "o" + ], + [ + "▁imp", + "ro" + ], + [ + "▁im", + "pro" + ], + [ + "▁co", + "r" + ], + [ + "▁c", + "or" + ], + [ + "▁", + "cor" + ], + [ + "▁cl", + "aim" + ], + [ + "▁", + "claim" + ], + [ + "▁2", + "4" + ], + [ + "▁", + "24" + ], + [ + "▁A", + "b" + ], + [ + "▁Wes", + "t" + ], + [ + "▁We", + "st" + ], + [ + "▁W", + "est" + ], + [ + "stan", + "d" + ], + [ + "sta", + "nd" + ], + [ + "st", + "and" + ], + [ + "▁ide", + "nt" + ], + [ + "▁id", + "ent" + ], + [ + "▁", + "ident" + ], + [ + "▁Will", + "iam" + ], + [ + "▁Wil", + "liam" + ], + [ + "▁tr", + "i" + ], + [ + "▁t", + "ri" + ], + [ + "es", + "e" + ], + [ + "e", + "se" + ], + [ + "ester", + "n" + ], + [ + "est", + "ern" + ], + [ + "es", + "tern" + ], + [ + "▁Wh", + "ile" + ], + [ + "▁A", + "f" + ], + [ + "▁hous", + "e" + ], + [ + "▁ho", + "use" + ], + [ + "▁h", + "ouse" + ], + [ + "▁", + "house" + ], + [ + "eri", + "ng" + ], + [ + "er", + "ing" + ], + [ + "e", + "ring" + ], + [ + "▁exam", + "ple" + ], + [ + "▁ex", + "ample" + ], + [ + "▁", + "example" + ], + [ + "▁form", + "er" + ], + [ + "▁for", + "mer" + ], + [ + "▁ne", + "ver" + ], + [ + "▁n", + "ever" + ], + [ + "▁pra", + "ct" + ], + [ + "▁pr", + "act" + ], + [ + "▁p", + "ract" + ], + [ + "ert", + "ain" + ], + [ + "er", + "tain" + ], + [ + "▁Ac", + "c" + ], + [ + "▁A", + "cc" + ], + [ + "▁ma", + "king" + ], + [ + "▁m", + "aking" + ], + [ + "▁", + "making" + ], + [ + "fi", + "c" + ], + [ + "f", + "ic" + ], + [ + "▁19", + "0" + ], + [ + "▁1", + "90" + ], + [ + "et", + "h" + ], + [ + "e", + "th" + ], + [ + "▁hal", + "f" + ], + [ + "▁h", + "alf" + ], + [ + "un", + "g" + ], + [ + "u", + "ng" + ], + [ + "le", + "r" + ], + [ + "l", + "er" + ], + [ + "▁Ca", + "l" + ], + [ + "▁C", + "al" + ], + [ + "▁mate", + "r" + ], + [ + "▁mat", + "er" + ], + [ + "▁ma", + "ter" + ], + [ + "▁m", + "ater" + ], + [ + "vi", + "ron" + ], + [ + "v", + "iron" + ], + [ + "ap", + "e" + ], + [ + "a", + "pe" + ], + [ + "op", + "s" + ], + [ + "o", + "ps" + ], + [ + "▁Je", + "w" + ], + [ + "▁J", + "ew" + ], + [ + "w", + "ork" + ], + [ + "her", + "e" + ], + [ + "he", + "re" + ], + [ + "h", + "ere" + ], + [ + "▁sign", + "ific" + ], + [ + "is", + "c" + ], + [ + "i", + "sc" + ], + [ + "▁tow", + "n" + ], + [ + "▁to", + "wn" + ], + [ + "▁t", + "own" + ], + [ + "▁", + "town" + ], + [ + "▁Cha", + "r" + ], + [ + "▁Ch", + "ar" + ], + [ + "▁C", + "har" + ], + [ + "▁vide", + "o" + ], + [ + "▁to", + "o" + ], + [ + "▁t", + "oo" + ], + [ + "att", + "er" + ], + [ + "at", + "ter" + ], + [ + "imen", + "t" + ], + [ + "ime", + "nt" + ], + [ + "im", + "ent" + ], + [ + "i", + "ment" + ], + [ + "▁cul", + "t" + ], + [ + "▁c", + "ult" + ], + [ + "▁201", + "2" + ], + [ + "▁20", + "12" + ], + [ + "▁mus", + "t" + ], + [ + "▁m", + "ust" + ], + [ + "ithe", + "r" + ], + [ + "ith", + "er" + ], + [ + "it", + "her" + ], + [ + "i", + "ther" + ], + [ + "▁s", + "w" + ], + [ + "▁", + "sw" + ], + [ + "▁Al", + "though" + ], + [ + "es", + "c" + ], + [ + "e", + "sc" + ], + [ + "▁19", + "2" + ], + [ + "▁1", + "92" + ], + [ + "▁pa", + "in" + ], + [ + "▁p", + "ain" + ], + [ + "▁w", + "omen" + ], + [ + "b", + "r" + ], + [ + "ha", + "m" + ], + [ + "h", + "am" + ], + [ + "ill", + "e" + ], + [ + "il", + "le" + ], + [ + "▁200", + "7" + ], + [ + "is", + "on" + ], + [ + "i", + "son" + ], + [ + "el", + "t" + ], + [ + "▁auth", + "or" + ], + [ + "▁aut", + "hor" + ], + [ + "▁", + "author" + ], + [ + "▁ind", + "ivid" + ], + [ + "▁Da", + "v" + ], + [ + "▁D", + "av" + ], + [ + "om", + "s" + ], + [ + "o", + "ms" + ], + [ + "out", + "e" + ], + [ + "ou", + "te" + ], + [ + "o", + "ute" + ], + [ + "ent", + "ial" + ], + [ + "▁inform", + "ation" + ], + [ + "▁in", + "formation" + ], + [ + "▁sou", + "nd" + ], + [ + "▁so", + "und" + ], + [ + "▁s", + "ound" + ], + [ + "ron", + "t" + ], + [ + "ro", + "nt" + ], + [ + "r", + "ont" + ], + [ + "▁ri", + "s" + ], + [ + "▁r", + "is" + ], + [ + "▁", + "ris" + ], + [ + "▁F", + "r" + ], + [ + "uc", + "k" + ], + [ + "u", + "ck" + ], + [ + "cin", + "g" + ], + [ + "ci", + "ng" + ], + [ + "c", + "ing" + ], + [ + "▁sur", + "v" + ], + [ + "▁pos", + "ition" + ], + [ + "▁p", + "osition" + ], + [ + "▁N", + "e" + ], + [ + "▁", + "Ne" + ], + [ + "▁st", + "orm" + ], + [ + "▁", + "storm" + ], + [ + "erg", + "y" + ], + [ + "er", + "gy" + ], + [ + "way", + "s" + ], + [ + "wa", + "ys" + ], + [ + "w", + "ays" + ], + [ + "▁area", + "s" + ], + [ + "▁are", + "as" + ], + [ + "▁ar", + "eas" + ], + [ + "▁sy", + "m" + ], + [ + "▁s", + "ym" + ], + [ + "▁Mi", + "n" + ], + [ + "▁M", + "in" + ], + [ + "▁Ba", + "r" + ], + [ + "▁B", + "ar" + ], + [ + "iden", + "ce" + ], + [ + "ide", + "nce" + ], + [ + "id", + "ence" + ], + [ + "▁rele", + "ase" + ], + [ + "▁re", + "lease" + ], + [ + "▁ab", + "le" + ], + [ + "▁a", + "ble" + ], + [ + "▁", + "able" + ], + [ + "▁cos", + "t" + ], + [ + "▁co", + "st" + ], + [ + "▁c", + "ost" + ], + [ + "▁continue", + "d" + ], + [ + "▁continu", + "ed" + ], + [ + "▁contin", + "ued" + ], + [ + "▁mat", + "ch" + ], + [ + "▁m", + "atch" + ], + [ + "ra", + "w" + ], + [ + "r", + "aw" + ], + [ + "▁ob", + "s" + ], + [ + "▁o", + "bs" + ], + [ + "▁", + "obs" + ], + [ + "▁E", + "ar" + ], + [ + "▁inter", + "n" + ], + [ + "▁int", + "ern" + ], + [ + "▁in", + "tern" + ], + [ + "ress", + "ion" + ], + [ + "r", + "ession" + ], + [ + "se", + "qu" + ], + [ + "s", + "equ" + ], + [ + "▁Eng", + "land" + ], + [ + "ell", + "s" + ], + [ + "el", + "ls" + ], + [ + "▁Mic", + "h" + ], + [ + "▁Mi", + "ch" + ], + [ + "▁M", + "ich" + ], + [ + "a", + "i" + ], + [ + "b", + "o" + ], + [ + "▁fe", + "at" + ], + [ + "▁An", + "g" + ], + [ + "▁A", + "ng" + ], + [ + "mi", + "t" + ], + [ + "m", + "it" + ], + [ + "ri", + "e" + ], + [ + "r", + "ie" + ], + [ + "▁He", + "r" + ], + [ + "▁H", + "er" + ], + [ + "▁fi", + "eld" + ], + [ + "▁f", + "ield" + ], + [ + "▁", + "field" + ], + [ + "ree", + "t" + ], + [ + "re", + "et" + ], + [ + "▁L", + "i" + ], + [ + "▁ro", + "ad" + ], + [ + "▁r", + "oad" + ], + [ + "▁", + "road" + ], + [ + "▁Can", + "ad" + ], + [ + "▁publish", + "ed" + ], + [ + "▁publ", + "ished" + ], + [ + "▁pub", + "lished" + ], + [ + "▁p", + "ublished" + ], + [ + "at", + "ch" + ], + [ + "a", + "e" + ], + [ + "end", + "ing" + ], + [ + "en", + "ding" + ], + [ + "▁fa", + "il" + ], + [ + "▁f", + "ail" + ], + [ + "▁researc", + "h" + ], + [ + "▁resear", + "ch" + ], + [ + "▁rese", + "arch" + ], + [ + "▁na", + "t" + ], + [ + "▁n", + "at" + ], + [ + "▁f", + "riend" + ], + [ + "▁", + "friend" + ], + [ + "mi", + "n" + ], + [ + "m", + "in" + ], + [ + "her", + "s" + ], + [ + "he", + "rs" + ], + [ + "h", + "ers" + ], + [ + "▁As", + "s" + ], + [ + "▁A", + "ss" + ], + [ + "▁writ", + "ten" + ], + [ + "yl", + "e" + ], + [ + "y", + "le" + ], + [ + "▁mater", + "ial" + ], + [ + "▁mate", + "rial" + ], + [ + "ab", + "or" + ], + [ + "a", + "bor" + ], + [ + "▁G", + "o" + ], + [ + "▁", + "Go" + ], + [ + "les", + "s" + ], + [ + "le", + "ss" + ], + [ + "l", + "ess" + ], + [ + "op", + "e" + ], + [ + "o", + "pe" + ], + [ + "if", + "y" + ], + [ + "▁vo", + "l" + ], + [ + "▁v", + "ol" + ], + [ + "▁", + "vol" + ], + [ + "▁compan", + "y" + ], + [ + "▁comp", + "any" + ], + [ + "▁tot", + "al" + ], + [ + "▁to", + "tal" + ], + [ + "▁t", + "otal" + ], + [ + "▁build", + "ing" + ], + [ + "▁bu", + "ilding" + ], + [ + "▁", + "building" + ], + [ + "▁p", + "ut" + ], + [ + "▁", + "put" + ], + [ + "▁Par", + "k" + ], + [ + "▁P", + "ark" + ], + [ + "▁su", + "ff" + ], + [ + "▁s", + "uff" + ], + [ + "▁Coun", + "t" + ], + [ + "▁Cou", + "nt" + ], + [ + "▁Co", + "unt" + ], + [ + "▁C", + "ount" + ], + [ + "▁C", + "o" + ], + [ + "▁", + "Co" + ], + [ + "▁ac", + "ross" + ], + [ + "ropic", + "al" + ], + [ + "rop", + "ical" + ], + [ + "▁li", + "k" + ], + [ + "▁l", + "ik" + ], + [ + "1", + "9" + ], + [ + "og", + "n" + ], + [ + "o", + "gn" + ], + [ + "▁rep", + "resent" + ], + [ + "▁", + "represent" + ], + [ + "ue", + "l" + ], + [ + "u", + "el" + ], + [ + "▁fi", + "re" + ], + [ + "▁f", + "ire" + ], + [ + "▁", + "fire" + ], + [ + "ol", + "ution" + ], + [ + "▁gr", + "a" + ], + [ + "▁g", + "ra" + ], + [ + "▁", + "gra" + ], + [ + "▁S", + "y" + ], + [ + "▁Cit", + "y" + ], + [ + "▁Ci", + "ty" + ], + [ + "▁C", + "ity" + ], + [ + "iv", + "il" + ], + [ + "i", + "vil" + ], + [ + "▁que", + "st" + ], + [ + "▁qu", + "est" + ], + [ + "▁", + "quest" + ], + [ + "au", + "l" + ], + [ + "a", + "ul" + ], + [ + "▁j", + "o" + ], + [ + "▁", + "jo" + ], + [ + "▁ed", + "uc" + ], + [ + "▁e", + "duc" + ], + [ + "▁", + "educ" + ], + [ + "▁gro", + "und" + ], + [ + "▁gr", + "ound" + ], + [ + "▁g", + "round" + ], + [ + "▁", + "ground" + ], + [ + "a", + "f" + ], + [ + "▁stru", + "ct" + ], + [ + "▁str", + "uct" + ], + [ + "▁st", + "ruct" + ], + [ + "▁fa", + "c" + ], + [ + "▁f", + "ac" + ], + [ + "▁signific", + "ant" + ], + [ + "▁sign", + "ificant" + ], + [ + "▁2", + "2" + ], + [ + "▁", + "22" + ], + [ + "▁2", + "3" + ], + [ + "▁", + "23" + ], + [ + "▁lit", + "tle" + ], + [ + "▁awa", + "y" + ], + [ + "▁aw", + "ay" + ], + [ + "▁a", + "way" + ], + [ + "▁", + "away" + ], + [ + "▁app", + "e" + ], + [ + "▁ap", + "pe" + ], + [ + "▁a", + "ppe" + ], + [ + "li", + "c" + ], + [ + "l", + "ic" + ], + [ + "▁lar", + "g" + ], + [ + "ologic", + "al" + ], + [ + "olog", + "ical" + ], + [ + "ol", + "ogical" + ], + [ + "▁chang", + "e" + ], + [ + "▁ch", + "ange" + ], + [ + "▁", + "change" + ], + [ + "▁Re", + "p" + ], + [ + "▁R", + "ep" + ], + [ + "▁ag", + "e" + ], + [ + "▁a", + "ge" + ], + [ + "▁", + "age" + ], + [ + "e", + "e" + ], + [ + "viron", + "ment" + ], + [ + "▁vari", + "ous" + ], + [ + "▁var", + "ious" + ], + [ + "▁v", + "arious" + ], + [ + "ro", + "y" + ], + [ + "r", + "oy" + ], + [ + "▁Acc", + "ording" + ], + [ + "▁orig", + "in" + ], + [ + "▁ori", + "gin" + ], + [ + "▁Riv", + "er" + ], + [ + "▁Ri", + "ver" + ], + [ + "▁R", + "iver" + ], + [ + "▁dec", + "l" + ], + [ + "▁de", + "cl" + ], + [ + "ondo", + "n" + ], + [ + "ond", + "on" + ], + [ + "on", + "don" + ], + [ + "▁dat", + "a" + ], + [ + "▁da", + "ta" + ], + [ + "▁d", + "ata" + ], + [ + "duc", + "t" + ], + [ + "du", + "ct" + ], + [ + "d", + "uct" + ], + [ + "for", + "d" + ], + [ + "fo", + "rd" + ], + [ + "f", + "ord" + ], + [ + "y", + "e" + ], + [ + "use", + "d" + ], + [ + "us", + "ed" + ], + [ + "▁de", + "v" + ], + [ + "▁d", + "ev" + ], + [ + "ute", + "s" + ], + [ + "ut", + "es" + ], + [ + "u", + "tes" + ], + [ + "▁fo", + "ot" + ], + [ + "▁f", + "oot" + ], + [ + "▁", + "foot" + ], + [ + "▁Rob", + "er" + ], + [ + "▁Ro", + "ber" + ], + [ + "▁R", + "ober" + ], + [ + "▁report", + "ed" + ], + [ + "▁rep", + "orted" + ], + [ + "▁re", + "ported" + ], + [ + "▁develop", + "ed" + ], + [ + "▁de", + "veloped" + ], + [ + "mo", + "st" + ], + [ + "m", + "ost" + ], + [ + "▁coll", + "e" + ], + [ + "▁col", + "le" + ], + [ + "▁move", + "d" + ], + [ + "▁mov", + "ed" + ], + [ + "▁mo", + "ved" + ], + [ + "▁m", + "oved" + ], + [ + "▁ec", + "onom" + ], + [ + "af", + "f" + ], + [ + "a", + "ff" + ], + [ + "▁relation", + "s" + ], + [ + "▁relat", + "ions" + ], + [ + "▁rel", + "ations" + ], + [ + "▁feat", + "ure" + ], + [ + "▁fe", + "ature" + ], + [ + "▁prop", + "er" + ], + [ + "▁pro", + "per" + ], + [ + "▁pr", + "oper" + ], + [ + "▁5", + "0" + ], + [ + "▁", + "50" + ], + [ + "▁ph", + "ys" + ], + [ + "▁sou", + "r" + ], + [ + "▁so", + "ur" + ], + [ + "▁s", + "our" + ], + [ + "▁other", + "s" + ], + [ + "▁ot", + "hers" + ], + [ + "▁produce", + "d" + ], + [ + "▁produ", + "ced" + ], + [ + "▁p", + "roduced" + ], + [ + "▁201", + "3" + ], + [ + "▁20", + "13" + ], + [ + "▁su", + "m" + ], + [ + "▁s", + "um" + ], + [ + "▁con", + "n" + ], + [ + "▁c", + "onn" + ], + [ + "▁beg", + "in" + ], + [ + "▁be", + "gin" + ], + [ + "▁", + "z" + ], + [ + "▁Lon", + "don" + ], + [ + "▁L", + "ondon" + ], + [ + "rea", + "m" + ], + [ + "re", + "am" + ], + [ + "▁av", + "ail" + ], + [ + "▁200", + "6" + ], + [ + "▁vers", + "ion" + ], + [ + "▁v", + "ersion" + ], + [ + "▁re", + "n" + ], + [ + "▁r", + "en" + ], + [ + "▁", + "ren" + ], + [ + "▁popul", + "ar" + ], + [ + "▁pop", + "ular" + ], + [ + "▁p", + "opular" + ], + [ + "▁pri", + "m" + ], + [ + "▁pr", + "im" + ], + [ + "▁p", + "rim" + ], + [ + "am", + "a" + ], + [ + "a", + "ma" + ], + [ + "ens", + "ive" + ], + [ + "▁e", + "r" + ], + [ + "▁", + "er" + ], + [ + "p", + "s" + ], + [ + "▁we", + "st" + ], + [ + "▁w", + "est" + ], + [ + "▁", + "west" + ], + [ + "▁A", + "ir" + ], + [ + "è", + "k" + ], + [ + "cr", + "aft" + ], + [ + "c", + "raft" + ], + [ + "▁comp", + "et" + ], + [ + "▁com", + "pet" + ], + [ + "▁S", + "m" + ], + [ + "▁nation", + "al" + ], + [ + "▁nat", + "ional" + ], + [ + "▁n", + "ational" + ], + [ + "▁int", + "rodu" + ], + [ + "▁re", + "d" + ], + [ + "▁r", + "ed" + ], + [ + "▁", + "red" + ], + [ + "▁fu", + "ll" + ], + [ + "▁f", + "ull" + ], + [ + "▁", + "full" + ], + [ + "▁eas", + "t" + ], + [ + "▁e", + "ast" + ], + [ + "ie", + "f" + ], + [ + "i", + "ef" + ], + [ + "re", + "g" + ], + [ + "r", + "eg" + ], + [ + "om", + "b" + ], + [ + "o", + "mb" + ], + [ + "iti", + "ng" + ], + [ + "it", + "ing" + ], + [ + "i", + "ting" + ], + [ + "▁A", + "g" + ], + [ + "▁te", + "r" + ], + [ + "▁t", + "er" + ], + [ + "▁", + "ter" + ], + [ + "▁soc", + "ial" + ], + [ + "▁so", + "cial" + ], + [ + "▁s", + "ocial" + ], + [ + "ing", + "ton" + ], + [ + "▁we", + "nt" + ], + [ + "▁w", + "ent" + ], + [ + "ho", + "d" + ], + [ + "h", + "od" + ], + [ + "▁Mo", + "n" + ], + [ + "▁M", + "on" + ], + [ + "▁produ", + "ct" + ], + [ + "▁pro", + "duct" + ], + [ + "▁", + "product" + ], + [ + "al", + "t" + ], + [ + "ill", + "s" + ], + [ + "il", + "ls" + ], + [ + "▁d", + "i" + ], + [ + "▁", + "di" + ], + [ + "▁spec", + "ial" + ], + [ + "▁spe", + "cial" + ], + [ + "▁Som", + "e" + ], + [ + "▁So", + "me" + ], + [ + "▁S", + "ome" + ], + [ + "op", + "h" + ], + [ + "o", + "ph" + ], + [ + "▁me", + "as" + ], + [ + "▁m", + "eas" + ], + [ + "▁serv", + "ice" + ], + [ + "▁Af", + "ric" + ], + [ + "ne", + "y" + ], + [ + "n", + "ey" + ], + [ + "▁po", + "t" + ], + [ + "▁p", + "ot" + ], + [ + "▁vic", + "t" + ], + [ + "▁vi", + "ct" + ], + [ + "▁v", + "ict" + ], + [ + "▁cas", + "e" + ], + [ + "▁ca", + "se" + ], + [ + "▁c", + "ase" + ], + [ + "▁", + "case" + ], + [ + "▁cas", + "t" + ], + [ + "▁ca", + "st" + ], + [ + "▁c", + "ast" + ], + [ + "▁", + "cast" + ], + [ + "▁month", + "s" + ], + [ + "▁mon", + "ths" + ], + [ + "▁mig", + "ht" + ], + [ + "▁mi", + "ght" + ], + [ + "▁m", + "ight" + ], + [ + "▁los", + "t" + ], + [ + "▁lo", + "st" + ], + [ + "▁l", + "ost" + ], + [ + "▁Me", + "d" + ], + [ + "▁M", + "ed" + ], + [ + "▁", + "Med" + ], + [ + "▁see", + "n" + ], + [ + "▁se", + "en" + ], + [ + "▁s", + "een" + ], + [ + "▁", + "seen" + ], + [ + "▁ga", + "ve" + ], + [ + "▁g", + "ave" + ], + [ + "▁in", + "it" + ], + [ + "▁hist", + "or" + ], + [ + "▁his", + "tor" + ], + [ + "▁thin", + "k" + ], + [ + "▁th", + "ink" + ], + [ + "st", + "it" + ], + [ + "▁Re", + "s" + ], + [ + "▁R", + "es" + ], + [ + "▁inv", + "est" + ], + [ + "▁in", + "vest" + ], + [ + "▁Americ", + "a" + ], + [ + "▁Amer", + "ica" + ], + [ + "▁Ay", + "iti" + ], + [ + "▁en", + "c" + ], + [ + "▁", + "enc" + ], + [ + "▁create", + "d" + ], + [ + "▁creat", + "ed" + ], + [ + "▁cre", + "ated" + ], + [ + "▁c", + "reated" + ], + [ + "▁cir", + "c" + ], + [ + "▁c", + "irc" + ], + [ + "▁do", + "n" + ], + [ + "▁d", + "on" + ], + [ + "▁", + "don" + ], + [ + "▁Se", + "c" + ], + [ + "▁S", + "ec" + ], + [ + "▁dis", + "e" + ], + [ + "▁di", + "se" + ], + [ + "▁d", + "ise" + ], + [ + "▁tele", + "v" + ], + [ + "▁tel", + "ev" + ], + [ + "▁te", + "lev" + ], + [ + "▁Hig", + "h" + ], + [ + "▁Hi", + "gh" + ], + [ + "▁H", + "igh" + ], + [ + "▁you", + "ng" + ], + [ + "▁yo", + "ung" + ], + [ + "▁y", + "oung" + ], + [ + "▁ex", + "ist" + ], + [ + "▁Com", + "p" + ], + [ + "▁Co", + "mp" + ], + [ + "▁C", + "omp" + ], + [ + "▁off", + "er" + ], + [ + "▁of", + "fer" + ], + [ + "▁ass", + "oci" + ], + [ + "▁curren", + "t" + ], + [ + "▁cur", + "rent" + ], + [ + "▁Wh", + "at" + ], + [ + "▁W", + "hat" + ], + [ + "▁", + "What" + ], + [ + "res", + "t" + ], + [ + "re", + "st" + ], + [ + "r", + "est" + ], + [ + "▁v", + "e" + ], + [ + "▁", + "ve" + ], + [ + "ubl", + "ic" + ], + [ + "ub", + "lic" + ], + [ + "ic", + "le" + ], + [ + "i", + "cle" + ], + [ + "▁Go", + "d" + ], + [ + "▁G", + "od" + ], + [ + "ie", + "n" + ], + [ + "i", + "en" + ], + [ + "▁poss", + "ible" + ], + [ + "▁p", + "ossible" + ], + [ + "ator", + "s" + ], + [ + "ato", + "rs" + ], + [ + "at", + "ors" + ], + [ + "▁200", + "4" + ], + [ + "fic", + "ult" + ], + [ + "▁bet", + "ter" + ], + [ + "▁Stat", + "e" + ], + [ + "▁Sta", + "te" + ], + [ + "▁St", + "ate" + ], + [ + "▁st", + "e" + ], + [ + "▁s", + "te" + ], + [ + "▁", + "ste" + ], + [ + "▁c", + "y" + ], + [ + "▁", + "cy" + ], + [ + "▁to", + "get" + ], + [ + "▁genera", + "l" + ], + [ + "▁gener", + "al" + ], + [ + "▁gene", + "ral" + ], + [ + "▁gen", + "eral" + ], + [ + "▁toget", + "her" + ], + [ + "▁t", + "ogether" + ], + [ + "abil", + "ity" + ], + [ + "ab", + "ility" + ], + [ + "▁ann", + "oun" + ], + [ + "▁G", + "l" + ], + [ + "▁ke", + "ep" + ], + [ + "▁militar", + "y" + ], + [ + "▁milit", + "ary" + ], + [ + "▁mil", + "itary" + ], + [ + "▁polit", + "ical" + ], + [ + "▁popul", + "ation" + ], + [ + "▁pop", + "ulation" + ], + [ + "▁force", + "s" + ], + [ + "▁forc", + "es" + ], + [ + "▁for", + "ces" + ], + [ + "▁play", + "er" + ], + [ + "▁pl", + "ayer" + ], + [ + "▁p", + "layer" + ], + [ + "▁D", + "r" + ], + [ + "▁fo", + "c" + ], + [ + "▁f", + "oc" + ], + [ + "▁dif", + "ficult" + ], + [ + "▁indu", + "st" + ], + [ + "▁ind", + "ust" + ], + [ + "▁mul", + "t" + ], + [ + "▁m", + "ult" + ], + [ + "an", + "a" + ], + [ + "a", + "na" + ], + [ + "▁cros", + "s" + ], + [ + "▁cro", + "ss" + ], + [ + "▁cr", + "oss" + ], + [ + "▁c", + "ross" + ], + [ + "asi", + "ng" + ], + [ + "as", + "ing" + ], + [ + "▁4", + "0" + ], + [ + "▁", + "40" + ], + [ + "▁bl", + "ack" + ], + [ + "▁perce", + "nt" + ], + [ + "▁perc", + "ent" + ], + [ + "▁per", + "cent" + ], + [ + "elli", + "ng" + ], + [ + "ell", + "ing" + ], + [ + "el", + "ling" + ], + [ + "pe", + "ct" + ], + [ + "p", + "ect" + ], + [ + "age", + "d" + ], + [ + "ag", + "ed" + ], + [ + "a", + "ged" + ], + [ + "▁occ", + "ur" + ], + [ + "▁as", + "k" + ], + [ + "▁a", + "sk" + ], + [ + "▁", + "ask" + ], + [ + "ric", + "k" + ], + [ + "ri", + "ck" + ], + [ + "r", + "ick" + ], + [ + "▁fig", + "ht" + ], + [ + "▁fi", + "ght" + ], + [ + "▁f", + "ight" + ], + [ + "▁", + "fight" + ], + [ + "▁S", + "w" + ], + [ + "as", + "k" + ], + [ + "a", + "sk" + ], + [ + "ric", + "t" + ], + [ + "ri", + "ct" + ], + [ + "r", + "ict" + ], + [ + "▁fre", + "e" + ], + [ + "▁fr", + "ee" + ], + [ + "▁f", + "ree" + ], + [ + "▁", + "free" + ], + [ + "▁2", + "7" + ], + [ + "▁", + "27" + ], + [ + "▁Pre", + "s" + ], + [ + "▁Pr", + "es" + ], + [ + "▁P", + "res" + ], + [ + "▁take", + "n" + ], + [ + "▁ta", + "ken" + ], + [ + "▁t", + "aken" + ], + [ + "ress", + "ed" + ], + [ + "r", + "essed" + ], + [ + "al", + "d" + ], + [ + "a", + "ld" + ], + [ + "▁rang", + "e" + ], + [ + "▁ran", + "ge" + ], + [ + "▁r", + "ange" + ], + [ + "▁", + "range" + ], + [ + "▁forc", + "e" + ], + [ + "▁for", + "ce" + ], + [ + "▁", + "force" + ], + [ + "ap", + "s" + ], + [ + "a", + "ps" + ], + [ + "▁Di", + "v" + ], + [ + "▁D", + "iv" + ], + [ + "▁sup", + "er" + ], + [ + "▁su", + "per" + ], + [ + "▁s", + "uper" + ], + [ + "ima", + "te" + ], + [ + "im", + "ate" + ], + [ + "i", + "mate" + ], + [ + "ene", + "d" + ], + [ + "en", + "ed" + ], + [ + "e", + "ned" + ], + [ + "▁cl", + "ub" + ], + [ + "▁", + "club" + ], + [ + "▁return", + "ed" + ], + [ + "ape", + "r" + ], + [ + "ap", + "er" + ], + [ + "a", + "per" + ], + [ + "▁e", + "ight" + ], + [ + "▁him", + "self" + ], + [ + "al", + "y" + ], + [ + "a", + "ly" + ], + [ + "▁2", + "8" + ], + [ + "▁", + "28" + ], + [ + "▁nor", + "t" + ], + [ + "▁n", + "ort" + ], + [ + ".", + "”" + ], + [ + "▁perform", + "ance" + ], + [ + "▁te", + "n" + ], + [ + "▁t", + "en" + ], + [ + "▁", + "ten" + ], + [ + "▁fat", + "her" + ], + [ + "▁fa", + "ther" + ], + [ + "▁f", + "ather" + ], + [ + "▁", + "father" + ], + [ + "ge", + "n" + ], + [ + "g", + "en" + ], + [ + "▁me", + "et" + ], + [ + "▁avail", + "able" + ], + [ + "▁av", + "ailable" + ], + [ + "▁ni", + "ght" + ], + [ + "▁n", + "ight" + ], + [ + "▁", + "night" + ], + [ + "s", + "c" + ], + [ + "▁Kib", + "a" + ], + [ + "▁Ki", + "ba" + ], + [ + "▁K", + "iba" + ], + [ + "▁w", + "id" + ], + [ + "▁lang", + "u" + ], + [ + "▁lan", + "gu" + ], + [ + "▁l", + "angu" + ], + [ + "▁av", + "er" + ], + [ + "▁a", + "ver" + ], + [ + "▁", + "aver" + ], + [ + "▁bec", + "om" + ], + [ + "▁be", + "com" + ], + [ + "▁me", + "an" + ], + [ + "▁m", + "ean" + ], + [ + "om", + "m" + ], + [ + "o", + "mm" + ], + [ + "outh", + "ern" + ], + [ + "out", + "hern" + ], + [ + "ai", + "gn" + ], + [ + "a", + "ign" + ], + [ + "land", + "s" + ], + [ + "lan", + "ds" + ], + [ + "l", + "ands" + ], + [ + "ort", + "s" + ], + [ + "or", + "ts" + ], + [ + "▁tr", + "e" + ], + [ + "▁t", + "re" + ], + [ + "▁", + "tre" + ], + [ + "▁mo", + "t" + ], + [ + "▁m", + "ot" + ], + [ + "▁though", + "t" + ], + [ + "▁th", + "ought" + ], + [ + "▁sq", + "u" + ], + [ + "▁s", + "qu" + ], + [ + "▁def", + "e" + ], + [ + "▁de", + "fe" + ], + [ + "▁201", + "4" + ], + [ + "▁20", + "14" + ], + [ + "▁obs", + "erv" + ], + [ + "ampion", + "s" + ], + [ + "amp", + "ions" + ], + [ + "▁Bat", + "t" + ], + [ + "▁Ba", + "tt" + ], + [ + "▁B", + "att" + ], + [ + "▁through", + "out" + ], + [ + "▁cre", + "at" + ], + [ + "▁c", + "reat" + ], + [ + "imate", + "ly" + ], + [ + "im", + "ately" + ], + [ + "vie", + "w" + ], + [ + "vi", + "ew" + ], + [ + "v", + "iew" + ], + [ + "▁2", + "6" + ], + [ + "▁", + "26" + ], + [ + "au", + "t" + ], + [ + "a", + "ut" + ], + [ + "▁col", + "l" + ], + [ + "▁co", + "ll" + ], + [ + "▁c", + "oll" + ], + [ + "▁tou", + "r" + ], + [ + "▁to", + "ur" + ], + [ + "▁t", + "our" + ], + [ + "▁on", + "ce" + ], + [ + "▁o", + "nce" + ], + [ + "oi", + "d" + ], + [ + "o", + "id" + ], + [ + "ow", + "s" + ], + [ + "▁lear", + "n" + ], + [ + "▁le", + "arn" + ], + [ + "▁fee", + "l" + ], + [ + "▁fe", + "el" + ], + [ + "▁Austral", + "ia" + ], + [ + "▁prof", + "ess" + ], + [ + "▁success", + "ful" + ], + [ + "▁writ", + "ing" + ], + [ + "▁wr", + "iting" + ], + [ + "▁", + "writing" + ], + [ + "▁ba", + "r" + ], + [ + "▁b", + "ar" + ], + [ + "▁", + "bar" + ], + [ + "▁con", + "v" + ], + [ + "▁state", + "d" + ], + [ + "▁stat", + "ed" + ], + [ + "▁st", + "ated" + ], + [ + "▁record", + "ed" + ], + [ + "▁har", + "d" + ], + [ + "▁ha", + "rd" + ], + [ + "▁h", + "ard" + ], + [ + "▁", + "hard" + ], + [ + "▁200", + "5" + ], + [ + "▁20", + "05" + ], + [ + "▁fe", + "m" + ], + [ + "▁f", + "em" + ], + [ + "▁fa", + "v" + ], + [ + "▁f", + "av" + ], + [ + "▁Q", + "u" + ], + [ + "▁", + "Qu" + ], + [ + "▁Ph", + "il" + ], + [ + "▁Si", + "m" + ], + [ + "▁S", + "im" + ], + [ + "▁le", + "ast" + ], + [ + "se", + "l" + ], + [ + "s", + "el" + ], + [ + "▁pre", + "d" + ], + [ + "▁pr", + "ed" + ], + [ + "▁p", + "red" + ], + [ + "▁fal", + "l" + ], + [ + "▁fa", + "ll" + ], + [ + "▁f", + "all" + ], + [ + "▁", + "fall" + ], + [ + "▁Rus", + "s" + ], + [ + "▁Ru", + "ss" + ], + [ + "▁R", + "uss" + ], + [ + "re", + "y" + ], + [ + "r", + "ey" + ], + [ + "▁die", + "d" + ], + [ + "▁di", + "ed" + ], + [ + "▁d", + "ied" + ], + [ + "▁Pe", + "r" + ], + [ + "▁P", + "er" + ], + [ + "▁ar", + "g" + ], + [ + "▁bus", + "iness" + ], + [ + "ade", + "s" + ], + [ + "ad", + "es" + ], + [ + "a", + "des" + ], + [ + "ur", + "b" + ], + [ + "ep", + "end" + ], + [ + "e", + "pend" + ], + [ + "▁work", + "ing" + ], + [ + "▁wor", + "king" + ], + [ + "▁cu", + "t" + ], + [ + "▁c", + "ut" + ], + [ + "▁", + "cut" + ], + [ + "▁Ac", + "t" + ], + [ + "▁A", + "ct" + ], + [ + "vin", + "g" + ], + [ + "vi", + "ng" + ], + [ + "v", + "ing" + ], + [ + "▁Gener", + "al" + ], + [ + "▁Gene", + "ral" + ], + [ + "▁Gen", + "eral" + ], + [ + "▁ent", + "ire" + ], + [ + "▁Jam", + "es" + ], + [ + "▁Ja", + "mes" + ], + [ + "▁J", + "ames" + ], + [ + "▁rat", + "her" + ], + [ + "▁ra", + "ther" + ], + [ + "▁r", + "ather" + ], + [ + "▁fa", + "r" + ], + [ + "▁f", + "ar" + ], + [ + "▁", + "far" + ], + [ + "▁whit", + "e" + ], + [ + "▁wh", + "ite" + ], + [ + "▁", + "white" + ], + [ + "oi", + "ce" + ], + [ + "o", + "ice" + ], + [ + "▁ro", + "ck" + ], + [ + "▁r", + "ock" + ], + [ + "▁", + "rock" + ], + [ + "▁E", + "t" + ], + [ + "▁I", + "m" + ], + [ + "ist", + "ic" + ], + [ + "is", + "tic" + ], + [ + "i", + "stic" + ], + [ + "▁pr", + "i" + ], + [ + "▁p", + "ri" + ], + [ + "▁los", + "s" + ], + [ + "▁lo", + "ss" + ], + [ + "▁l", + "oss" + ], + [ + "▁offic", + "ial" + ], + [ + "▁off", + "icial" + ], + [ + "▁of", + "ficial" + ], + [ + "▁", + "official" + ], + [ + "▁P", + "e" + ], + [ + "▁Re", + "c" + ], + [ + "▁R", + "ec" + ], + [ + "ud", + "e" + ], + [ + "u", + "de" + ], + [ + "ave", + "s" + ], + [ + "av", + "es" + ], + [ + "a", + "ves" + ], + [ + "▁moder", + "n" + ], + [ + "▁mod", + "ern" + ], + [ + "o", + "f" + ], + [ + "▁co", + "p" + ], + [ + "▁c", + "op" + ], + [ + "▁", + "cop" + ], + [ + "▁so", + "n" + ], + [ + "▁s", + "on" + ], + [ + "▁", + "son" + ], + [ + "le", + "x" + ], + [ + "l", + "ex" + ], + [ + "▁St", + "e" + ], + [ + "▁S", + "te" + ], + [ + "de", + "n" + ], + [ + "d", + "en" + ], + [ + "do", + "m" + ], + [ + "d", + "om" + ], + [ + "▁ob", + "ject" + ], + [ + "us", + "h" + ], + [ + "u", + "sh" + ], + [ + "▁dest", + "roy" + ], + [ + "ons", + "t" + ], + [ + "on", + "st" + ], + [ + "▁st", + "ar" + ], + [ + "▁s", + "tar" + ], + [ + "▁", + "star" + ], + [ + "▁energ", + "y" + ], + [ + "▁en", + "ergy" + ], + [ + "fa", + "ce" + ], + [ + "f", + "ace" + ], + [ + "▁Jac", + "k" + ], + [ + "▁Ja", + "ck" + ], + [ + "▁J", + "ack" + ], + [ + "▁batt", + "le" + ], + [ + "▁bat", + "tle" + ], + [ + "▁b", + "attle" + ], + [ + "▁arc", + "h" + ], + [ + "▁ar", + "ch" + ], + [ + "▁", + "arch" + ], + [ + "amen", + "t" + ], + [ + "ame", + "nt" + ], + [ + "am", + "ent" + ], + [ + "a", + "ment" + ], + [ + "▁sit", + "e" + ], + [ + "▁si", + "te" + ], + [ + "▁s", + "ite" + ], + [ + "▁cause", + "d" + ], + [ + "▁caus", + "ed" + ], + [ + "▁ca", + "used" + ], + [ + "d", + "le" + ], + [ + "z", + "e" + ], + [ + "▁com", + "e" + ], + [ + "▁co", + "me" + ], + [ + "▁c", + "ome" + ], + [ + "▁", + "come" + ], + [ + "▁care", + "er" + ], + [ + "▁ship", + "s" + ], + [ + "▁sh", + "ips" + ], + [ + "▁s", + "hips" + ], + [ + "▁Se", + "r" + ], + [ + "▁S", + "er" + ], + [ + "▁b", + "i" + ], + [ + "▁", + "bi" + ], + [ + "▁work", + "s" + ], + [ + "▁wor", + "ks" + ], + [ + "▁", + "works" + ], + [ + "oya", + "l" + ], + [ + "oy", + "al" + ], + [ + "o", + "yal" + ], + [ + "▁ear", + "l" + ], + [ + "▁18", + "9" + ], + [ + "▁1", + "89" + ], + [ + "lish", + "ed" + ], + [ + "lis", + "hed" + ], + [ + "l", + "ished" + ], + [ + "▁prev", + "ent" + ], + [ + "▁pre", + "vent" + ], + [ + "▁il", + "l" + ], + [ + "▁i", + "ll" + ], + [ + "▁", + "ill" + ], + [ + "g", + "o" + ], + [ + "▁a", + "y" + ], + [ + "▁", + "ay" + ], + [ + "iqu", + "e" + ], + [ + "i", + "que" + ], + [ + "et", + "t" + ], + [ + "e", + "tt" + ], + [ + "▁hol", + "d" + ], + [ + "▁ho", + "ld" + ], + [ + "▁h", + "old" + ], + [ + "▁", + "hold" + ], + [ + "▁Inter", + "n" + ], + [ + "▁Int", + "ern" + ], + [ + "▁In", + "tern" + ], + [ + "▁liv", + "e" + ], + [ + "▁li", + "ve" + ], + [ + "▁l", + "ive" + ], + [ + "▁so", + "u" + ], + [ + "▁s", + "ou" + ], + [ + "▁prov", + "ide" + ], + [ + "▁Re", + "g" + ], + [ + "▁R", + "eg" + ], + [ + "lect", + "ed" + ], + [ + "l", + "ected" + ], + [ + "um", + "b" + ], + [ + "u", + "mb" + ], + [ + "▁en", + "vironment" + ], + [ + "t", + "t" + ], + [ + "achi", + "ng" + ], + [ + "ach", + "ing" + ], + [ + "ac", + "hing" + ], + [ + "a", + "ching" + ], + [ + "ut", + "ure" + ], + [ + "u", + "ture" + ], + [ + "▁Re", + "l" + ], + [ + "▁R", + "el" + ], + [ + "▁B", + "o" + ], + [ + "eces", + "s" + ], + [ + "ec", + "ess" + ], + [ + "e", + "cess" + ], + [ + "ori", + "ng" + ], + [ + "or", + "ing" + ], + [ + "o", + "ring" + ], + [ + "ae", + "l" + ], + [ + "a", + "el" + ], + [ + "▁h", + "y" + ], + [ + "▁", + "hy" + ], + [ + "t", + "è" + ], + [ + "▁air", + "craft" + ], + [ + "▁a", + "ircraft" + ], + [ + "io", + "l" + ], + [ + "i", + "ol" + ], + [ + "▁ca", + "l" + ], + [ + "▁c", + "al" + ], + [ + "▁", + "cal" + ], + [ + "▁Par", + "t" + ], + [ + "▁P", + "art" + ], + [ + "▁up", + "on" + ], + [ + "▁k", + "i" + ], + [ + "▁", + "ki" + ], + [ + "n", + "d" + ], + [ + "min", + "g" + ], + [ + "mi", + "ng" + ], + [ + "m", + "ing" + ], + [ + "▁acc", + "ess" + ], + [ + "▁ac", + "cess" + ], + [ + "▁a", + "ccess" + ], + [ + "▁", + "access" + ], + [ + "▁act", + "ion" + ], + [ + "▁a", + "ction" + ], + [ + "▁", + "action" + ], + [ + "chi", + "e" + ], + [ + "ch", + "ie" + ], + [ + "▁ep", + "i" + ], + [ + "▁e", + "pi" + ], + [ + "ci", + "l" + ], + [ + "c", + "il" + ], + [ + "▁e", + "ither" + ], + [ + "▁ay", + "isyen" + ], + [ + "▁Mo", + "r" + ], + [ + "▁M", + "or" + ], + [ + "▁underst", + "and" + ], + [ + "▁under", + "stand" + ], + [ + "ur", + "g" + ], + [ + "em", + "s" + ], + [ + "e", + "ms" + ], + [ + "▁200", + "0" + ], + [ + "▁20", + "00" + ], + [ + "▁2", + "000" + ], + [ + "▁relations", + "hip" + ], + [ + "▁relation", + "ship" + ], + [ + "▁trad", + "ition" + ], + [ + "▁tra", + "dition" + ], + [ + "▁ne", + "g" + ], + [ + "▁n", + "eg" + ], + [ + "▁", + "neg" + ], + [ + "▁crit", + "ic" + ], + [ + "▁cr", + "itic" + ], + [ + "▁c", + "ritic" + ], + [ + "▁remain", + "ed" + ], + [ + "▁rem", + "ained" + ], + [ + "▁pas", + "t" + ], + [ + "▁pa", + "st" + ], + [ + "▁p", + "ast" + ], + [ + "▁resp", + "ons" + ], + [ + "▁ha", + "pp" + ], + [ + "▁h", + "app" + ], + [ + "ur", + "ric" + ], + [ + "▁blo", + "od" + ], + [ + "▁bl", + "ood" + ], + [ + "▁establish", + "ed" + ], + [ + "▁estab", + "lished" + ], + [ + "▁est", + "ablished" + ], + [ + "▁rec", + "ogn" + ], + [ + "▁es", + "p" + ], + [ + "▁e", + "sp" + ], + [ + "▁", + "esp" + ], + [ + "up", + "p" + ], + [ + "u", + "pp" + ], + [ + "▁follow", + "ed" + ], + [ + "▁foll", + "owed" + ], + [ + "▁ben", + "e" + ], + [ + "▁be", + "ne" + ], + [ + "▁b", + "ene" + ], + [ + "isi", + "ng" + ], + [ + "is", + "ing" + ], + [ + "e", + "x" + ], + [ + "au", + "r" + ], + [ + "a", + "ur" + ], + [ + "▁Arm", + "y" + ], + [ + "▁Ar", + "my" + ], + [ + "▁cle", + "ar" + ], + [ + "▁cl", + "ear" + ], + [ + "▁mas", + "s" + ], + [ + "▁ma", + "ss" + ], + [ + "▁m", + "ass" + ], + [ + "▁", + "mass" + ], + [ + "rough", + "t" + ], + [ + "ro", + "ught" + ], + [ + "r", + "ought" + ], + [ + "▁Ma", + "d" + ], + [ + "▁M", + "ad" + ], + [ + "▁plan", + "t" + ], + [ + "▁pl", + "ant" + ], + [ + "▁", + "plant" + ], + [ + "▁au", + "d" + ], + [ + "▁a", + "ud" + ], + [ + "▁", + "aud" + ], + [ + "▁start", + "ed" + ], + [ + "▁star", + "ted" + ], + [ + "▁st", + "arted" + ], + [ + "▁Sc", + "h" + ], + [ + "▁S", + "ch" + ], + [ + "ste", + "r" + ], + [ + "st", + "er" + ], + [ + "s", + "ter" + ], + [ + "cia", + "l" + ], + [ + "ci", + "al" + ], + [ + "c", + "ial" + ], + [ + "ate", + "g" + ], + [ + "at", + "eg" + ], + [ + "ar", + "a" + ], + [ + "a", + "ra" + ], + [ + "▁caus", + "e" + ], + [ + "▁ca", + "use" + ], + [ + "▁c", + "ause" + ], + [ + "▁fee", + "t" + ], + [ + "▁fe", + "et" + ], + [ + "▁point", + "s" + ], + [ + "▁po", + "ints" + ], + [ + "▁", + "points" + ], + [ + "▁tit", + "le" + ], + [ + "▁ti", + "tle" + ], + [ + "▁al", + "most" + ], + [ + "▁fron", + "t" + ], + [ + "▁fro", + "nt" + ], + [ + "▁fr", + "ont" + ], + [ + "▁f", + "ront" + ], + [ + "▁", + "front" + ], + [ + "ific", + "ation" + ], + [ + "if", + "ication" + ], + [ + "▁camp", + "aign" + ], + [ + "ac", + "y" + ], + [ + "a", + "cy" + ], + [ + "▁partic", + "ip" + ], + [ + "▁part", + "icip" + ], + [ + "▁201", + "5" + ], + [ + "▁20", + "15" + ], + [ + "▁char", + "t" + ], + [ + "▁ch", + "art" + ], + [ + "▁c", + "hart" + ], + [ + "▁He", + "n" + ], + [ + "▁H", + "en" + ], + [ + "▁", + "Hen" + ], + [ + "▁Japan", + "ese" + ], + [ + "▁em", + "ploy" + ], + [ + "▁", + "employ" + ], + [ + "▁note", + "d" + ], + [ + "▁not", + "ed" + ], + [ + "▁no", + "ted" + ], + [ + "▁n", + "oted" + ], + [ + "▁Count", + "y" + ], + [ + "▁Coun", + "ty" + ], + [ + "▁C", + "ounty" + ], + [ + "▁mo", + "r" + ], + [ + "▁m", + "or" + ], + [ + "he", + "m" + ], + [ + "h", + "em" + ], + [ + "▁character", + "s" + ], + [ + "▁charact", + "ers" + ], + [ + "pl", + "ay" + ], + [ + "p", + "lay" + ], + [ + "▁fun", + "d" + ], + [ + "▁fu", + "nd" + ], + [ + "▁f", + "und" + ], + [ + "▁ag", + "re" + ], + [ + "▁a", + "gre" + ], + [ + ".", + "," + ], + [ + "b", + "e" + ], + [ + "▁bro", + "ad" + ], + [ + "▁br", + "oad" + ], + [ + "▁b", + "road" + ], + [ + "1", + "0" + ], + [ + "ra", + "g" + ], + [ + "r", + "ag" + ], + [ + "▁ind", + "ic" + ], + [ + "▁song", + "s" + ], + [ + "▁son", + "gs" + ], + [ + "▁s", + "ongs" + ], + [ + "med", + "i" + ], + [ + "me", + "di" + ], + [ + "ier", + "s" + ], + [ + "ie", + "rs" + ], + [ + "i", + "ers" + ], + [ + "▁cou", + "n" + ], + [ + "▁co", + "un" + ], + [ + "▁c", + "oun" + ], + [ + "ber", + "t" + ], + [ + "b", + "ert" + ], + [ + "ement", + "s" + ], + [ + "emen", + "ts" + ], + [ + "em", + "ents" + ], + [ + "e", + "ments" + ], + [ + "ir", + "l" + ], + [ + "▁E", + "ast" + ], + [ + "▁meth", + "od" + ], + [ + "▁met", + "hod" + ], + [ + "▁cert", + "ain" + ], + [ + "▁cer", + "tain" + ], + [ + "▁c", + "ertain" + ], + [ + "▁tr", + "o" + ], + [ + "▁t", + "ro" + ], + [ + "▁Th", + "om" + ], + [ + "▁add", + "ed" + ], + [ + "▁ad", + "ded" + ], + [ + "war", + "e" + ], + [ + "wa", + "re" + ], + [ + "w", + "are" + ], + [ + "▁reach", + "ed" + ], + [ + "▁re", + "ached" + ], + [ + "▁se", + "par" + ], + [ + "▁qui", + "ck" + ], + [ + "▁qu", + "ick" + ], + [ + "▁low", + "er" + ], + [ + "▁lo", + "wer" + ], + [ + "▁l", + "ower" + ], + [ + "▁2", + "9" + ], + [ + "▁", + "29" + ], + [ + "ator", + "y" + ], + [ + "ato", + "ry" + ], + [ + "at", + "ory" + ], + [ + "cl", + "e" + ], + [ + "c", + "le" + ], + [ + "▁fel", + "t" + ], + [ + "▁f", + "elt" + ], + [ + "▁inst", + "ead" + ], + [ + "▁in", + "stead" + ], + [ + "▁Dav", + "id" + ], + [ + "▁ev", + "er" + ], + [ + "▁e", + "ver" + ], + [ + "▁", + "ever" + ], + [ + "in", + "o" + ], + [ + "i", + "no" + ], + [ + "▁ar", + "m" + ], + [ + "▁a", + "rm" + ], + [ + "▁", + "arm" + ], + [ + "▁lac", + "k" + ], + [ + "▁la", + "ck" + ], + [ + "▁l", + "ack" + ], + [ + "▁ab", + "ove" + ], + [ + "▁p", + "ur" + ], + [ + "▁", + "pur" + ], + [ + "▁cont", + "rib" + ], + [ + "iat", + "ion" + ], + [ + "i", + "ation" + ], + [ + "▁Sch", + "ool" + ], + [ + "▁S", + "chool" + ], + [ + "▁India", + "n" + ], + [ + "▁Ind", + "ian" + ], + [ + "▁perform", + "ed" + ], + [ + "▁per", + "formed" + ], + [ + "▁feature", + "s" + ], + [ + "▁feat", + "ures" + ], + [ + "▁fe", + "atures" + ], + [ + "▁mile", + "s" + ], + [ + "▁mil", + "es" + ], + [ + "▁mi", + "les" + ], + [ + "▁m", + "iles" + ], + [ + "idi", + "ng" + ], + [ + "id", + "ing" + ], + [ + "i", + "ding" + ], + [ + "▁Th", + "at" + ], + [ + "▁T", + "hat" + ], + [ + "▁", + "That" + ], + [ + "u", + "k" + ], + [ + "▁Ho", + "l" + ], + [ + "▁H", + "ol" + ], + [ + "▁co", + "ast" + ], + [ + "▁mi", + "x" + ], + [ + "▁m", + "ix" + ], + [ + "▁clos", + "e" + ], + [ + "▁clo", + "se" + ], + [ + "▁cl", + "ose" + ], + [ + "▁in", + "j" + ], + [ + "▁per", + "s" + ], + [ + "▁pe", + "rs" + ], + [ + "▁p", + "ers" + ], + [ + "▁", + "pers" + ], + [ + "ce", + "ed" + ], + [ + "c", + "eed" + ], + [ + "if", + "f" + ], + [ + "i", + "ff" + ], + [ + "▁typ", + "e" + ], + [ + "▁ty", + "pe" + ], + [ + "▁t", + "ype" + ], + [ + "▁", + "type" + ], + [ + "ek", + "s" + ], + [ + "e", + "ks" + ], + [ + "▁reg", + "ion" + ], + [ + "ff", + "ic" + ], + [ + "f", + "fic" + ], + [ + "▁Georg", + "e" + ], + [ + "▁Geor", + "ge" + ], + [ + "▁Ge", + "orge" + ], + [ + "▁M", + "y" + ], + [ + "▁", + "My" + ], + [ + "▁am", + "ount" + ], + [ + "▁", + "amount" + ], + [ + "▁en", + "ough" + ], + [ + "me", + "n" + ], + [ + "m", + "en" + ], + [ + "▁p", + "a" + ], + [ + "▁", + "pa" + ], + [ + "▁eng", + "ine" + ], + [ + "ca", + "st" + ], + [ + "c", + "ast" + ], + [ + "▁Ric", + "h" + ], + [ + "▁Ri", + "ch" + ], + [ + "▁R", + "ich" + ], + [ + "▁provide", + "d" + ], + [ + "▁prov", + "ided" + ], + [ + "▁g", + "ive" + ], + [ + "▁usual", + "ly" + ], + [ + "▁us", + "ually" + ], + [ + "et", + "work" + ], + [ + "▁f", + "r" + ], + [ + "▁", + "fr" + ], + [ + "▁se", + "ven" + ], + [ + "iu", + "s" + ], + [ + "i", + "us" + ], + [ + "▁acc", + "ept" + ], + [ + "▁ac", + "cept" + ], + [ + "▁deter", + "m" + ], + [ + "▁det", + "erm" + ], + [ + "▁de", + "term" + ], + [ + "▁d", + "eterm" + ], + [ + "▁a", + "p" + ], + [ + "▁", + "ap" + ], + [ + "po", + "r" + ], + [ + "p", + "or" + ], + [ + "ilit", + "ies" + ], + [ + "ili", + "ties" + ], + [ + "il", + "ities" + ], + [ + "5", + "0" + ], + [ + "er", + "c" + ], + [ + "▁serve", + "d" + ], + [ + "▁serv", + "ed" + ], + [ + "▁ser", + "ved" + ], + [ + "▁s", + "erved" + ], + [ + "ough", + "t" + ], + [ + "ou", + "ght" + ], + [ + "o", + "ught" + ], + [ + "ec", + "ially" + ], + [ + "e", + "cially" + ], + [ + "▁pr", + "a" + ], + [ + "▁p", + "ra" + ], + [ + "ree", + "k" + ], + [ + "re", + "ek" + ], + [ + "▁dam", + "age" + ], + [ + "▁Europ", + "e" + ], + [ + "▁Euro", + "pe" + ], + [ + "▁kill", + "ed" + ], + [ + "▁kil", + "led" + ], + [ + "▁ki", + "lled" + ], + [ + "▁k", + "illed" + ], + [ + "orp", + "or" + ], + [ + "or", + "por" + ], + [ + "▁styl", + "e" + ], + [ + "▁sty", + "le" + ], + [ + "▁st", + "yle" + ], + [ + "▁go", + "ing" + ], + [ + "▁", + "going" + ], + [ + "▁commun", + "ity" + ], + [ + "▁stat", + "ion" + ], + [ + "▁st", + "ation" + ], + [ + "▁ke", + "y" + ], + [ + "▁k", + "ey" + ], + [ + "▁", + "key" + ], + [ + "▁locate", + "d" + ], + [ + "▁loc", + "ated" + ], + [ + "▁l", + "ocated" + ], + [ + "▁mean", + "s" + ], + [ + "▁me", + "ans" + ], + [ + "▁op", + "t" + ], + [ + "▁o", + "pt" + ], + [ + "▁", + "opt" + ], + [ + "▁nat", + "ural" + ], + [ + "▁n", + "atural" + ], + [ + "▁memb", + "er" + ], + [ + "▁mem", + "ber" + ], + [ + "▁me", + "mber" + ], + [ + "▁m", + "ember" + ], + [ + "▁fut", + "ure" + ], + [ + "▁fu", + "ture" + ], + [ + "▁f", + "uture" + ], + [ + "▁sub", + "ject" + ], + [ + "▁acc", + "ount" + ], + [ + "▁no", + "v" + ], + [ + "▁n", + "ov" + ], + [ + "▁", + "|" + ], + [ + "▁clo", + "s" + ], + [ + "▁cl", + "os" + ], + [ + "li", + "n" + ], + [ + "l", + "in" + ], + [ + "▁sp", + "ace" + ], + [ + "▁", + "space" + ], + [ + "▁resp", + "ect" + ], + [ + "▁res", + "pect" + ], + [ + "um", + "p" + ], + [ + "u", + "mp" + ], + [ + "▁sc", + "ient" + ], + [ + "▁s", + "cient" + ], + [ + "am", + "m" + ], + [ + "a", + "mm" + ], + [ + "ra", + "y" + ], + [ + "r", + "ay" + ], + [ + "▁f", + "t" + ], + [ + "▁", + "ft" + ], + [ + "▁Div", + "ision" + ], + [ + "hea", + "d" + ], + [ + "he", + "ad" + ], + [ + "h", + "ead" + ], + [ + "▁D", + "o" + ], + [ + "▁", + "Do" + ], + [ + "▁beh", + "ind" + ], + [ + "art", + "ment" + ], + [ + "▁str", + "i" + ], + [ + "▁st", + "ri" + ], + [ + "▁announce", + "d" + ], + [ + "▁announ", + "ced" + ], + [ + "▁ann", + "ounced" + ], + [ + "▁aver", + "age" + ], + [ + "▁a", + "verage" + ], + [ + "▁tr", + "u" + ], + [ + "▁t", + "ru" + ], + [ + "no", + "w" + ], + [ + "n", + "ow" + ], + [ + "um", + "e" + ], + [ + "u", + "me" + ], + [ + "ace", + "s" + ], + [ + "ac", + "es" + ], + [ + "a", + "ces" + ], + [ + "ampions", + "hip" + ], + [ + "ampion", + "ship" + ], + [ + "▁ru", + "l" + ], + [ + "▁r", + "ul" + ], + [ + "fi", + "eld" + ], + [ + "f", + "ield" + ], + [ + "▁cond", + "uct" + ], + [ + "▁con", + "duct" + ], + [ + "▁c", + "onduct" + ], + [ + "o", + "e" + ], + [ + "▁ex", + "am" + ], + [ + "▁Tr", + "a" + ], + [ + "▁T", + "ra" + ], + [ + "▁ho", + "n" + ], + [ + "▁h", + "on" + ], + [ + "▁cons", + "ist" + ], + [ + "▁ris", + "k" + ], + [ + "▁ri", + "sk" + ], + [ + "▁r", + "isk" + ], + [ + "▁", + "risk" + ], + [ + "u", + "ation" + ], + [ + "azi", + "ni" + ], + [ + "az", + "ini" + ], + [ + "▁Bl", + "ack" + ], + [ + "x", + "ic" + ], + [ + "▁Stre", + "et" + ], + [ + "▁St", + "reet" + ], + [ + "▁form", + "ed" + ], + [ + "▁for", + "med" + ], + [ + "▁", + "formed" + ], + [ + "▁Ot", + "her" + ], + [ + "▁O", + "ther" + ], + [ + "ct", + "or" + ], + [ + "c", + "tor" + ], + [ + "ero", + "us" + ], + [ + "er", + "ous" + ], + [ + "e", + "rous" + ], + [ + "▁De", + "p" + ], + [ + "▁D", + "ep" + ], + [ + "▁increase", + "d" + ], + [ + "▁incre", + "ased" + ], + [ + "▁sa", + "f" + ], + [ + "▁s", + "af" + ], + [ + "▁disc", + "uss" + ], + [ + "ict", + "ion" + ], + [ + "i", + "ction" + ], + [ + "ta", + "in" + ], + [ + "t", + "ain" + ], + [ + "▁bor", + "n" + ], + [ + "▁b", + "orn" + ], + [ + "▁", + "born" + ], + [ + "em", + "y" + ], + [ + "e", + "my" + ], + [ + "▁A", + "k" + ], + [ + "▁se", + "x" + ], + [ + "▁s", + "ex" + ], + [ + "▁", + "sex" + ], + [ + "▁sa", + "w" + ], + [ + "▁s", + "aw" + ], + [ + "▁a", + "chie" + ], + [ + "▁ho", + "m" + ], + [ + "▁h", + "om" + ], + [ + "▁S", + "o" + ], + [ + "▁fi", + "g" + ], + [ + "▁f", + "ig" + ], + [ + "▁", + "fig" + ], + [ + "▁hour", + "s" + ], + [ + "▁ho", + "urs" + ], + [ + "▁h", + "ours" + ], + [ + "▁rel", + "ig" + ], + [ + "▁re", + "lig" + ], + [ + "▁Ro", + "ad" + ], + [ + "▁R", + "oad" + ], + [ + "▁telev", + "ision" + ], + [ + "▁h", + "it" + ], + [ + "▁Stu", + "d" + ], + [ + "▁St", + "ud" + ], + [ + "▁es", + "s" + ], + [ + "▁e", + "ss" + ], + [ + "▁", + "ess" + ], + [ + "▁eventual", + "ly" + ], + [ + "▁event", + "ually" + ], + [ + "s", + "y" + ], + [ + "▁accord", + "ing" + ], + [ + "▁acc", + "ording" + ], + [ + "ic", + "a" + ], + [ + "i", + "ca" + ], + [ + "▁bas", + "e" + ], + [ + "▁ba", + "se" + ], + [ + "▁b", + "ase" + ], + [ + "▁", + "base" + ], + [ + "▁problem", + "s" + ], + [ + "▁proble", + "ms" + ], + [ + "▁pro", + "blems" + ], + [ + "▁change", + "s" + ], + [ + "▁chang", + "es" + ], + [ + "▁ch", + "anges" + ], + [ + "▁mot", + "her" + ], + [ + "▁mo", + "ther" + ], + [ + "▁m", + "other" + ], + [ + "▁", + "mother" + ], + [ + "▁tr", + "y" + ], + [ + "▁t", + "ry" + ], + [ + "▁", + "try" + ], + [ + "read", + "y" + ], + [ + "rea", + "dy" + ], + [ + "re", + "ady" + ], + [ + "▁esp", + "ecially" + ], + [ + "am", + "b" + ], + [ + "a", + "mb" + ], + [ + "▁Le", + "ague" + ], + [ + "▁lead", + "ing" + ], + [ + "▁le", + "ading" + ], + [ + "▁", + "leading" + ], + [ + "▁Sa", + "n" + ], + [ + "▁S", + "an" + ], + [ + "▁ho", + "st" + ], + [ + "▁h", + "ost" + ], + [ + "▁st", + "age" + ], + [ + "▁s", + "tage" + ], + [ + "▁", + "stage" + ], + [ + "▁player", + "s" + ], + [ + "▁play", + "ers" + ], + [ + "▁bal", + "l" + ], + [ + "▁ba", + "ll" + ], + [ + "▁b", + "all" + ], + [ + "▁", + "ball" + ], + [ + "▁do", + "u" + ], + [ + "▁d", + "ou" + ], + [ + "▁mis", + "s" + ], + [ + "▁mi", + "ss" + ], + [ + "▁m", + "iss" + ], + [ + "▁design", + "ed" + ], + [ + "▁des", + "igned" + ], + [ + "▁dise", + "ase" + ], + [ + "hi", + "b" + ], + [ + "h", + "ib" + ], + [ + "▁moun", + "t" + ], + [ + "▁mo", + "unt" + ], + [ + "▁m", + "ount" + ], + [ + "fo", + "r" + ], + [ + "f", + "or" + ], + [ + "ppe", + "d" + ], + [ + "pp", + "ed" + ], + [ + "p", + "ped" + ], + [ + "gre", + "ss" + ], + [ + "gr", + "ess" + ], + [ + "g", + "ress" + ], + [ + "eng", + "th" + ], + [ + "▁Et", + "azini" + ], + [ + "▁c", + "e" + ], + [ + "▁", + "ce" + ], + [ + "▁Was", + "h" + ], + [ + "▁Wa", + "sh" + ], + [ + "▁W", + "ash" + ], + [ + "▁bre", + "ak" + ], + [ + "▁", + "break" + ], + [ + "▁event", + "s" + ], + [ + "▁even", + "ts" + ], + [ + "▁ev", + "ents" + ], + [ + "ight", + "s" + ], + [ + "igh", + "ts" + ], + [ + "▁decide", + "d" + ], + [ + "▁dec", + "ided" + ], + [ + "▁Pa", + "ul" + ], + [ + "▁P", + "aul" + ], + [ + "▁", + "Paul" + ], + [ + "▁like", + "ly" + ], + [ + "▁lik", + "ely" + ], + [ + "▁l", + "ikely" + ], + [ + "▁rev", + "e" + ], + [ + "▁re", + "ve" + ], + [ + "▁general", + "ly" + ], + [ + "▁gener", + "ally" + ], + [ + "▁pro", + "b" + ], + [ + "▁pr", + "ob" + ], + [ + "▁p", + "rob" + ], + [ + "ib", + "ility" + ], + [ + "▁ab", + "s" + ], + [ + "▁a", + "bs" + ], + [ + "▁", + "abs" + ], + [ + "▁Hous", + "e" + ], + [ + "▁Hou", + "se" + ], + [ + "▁Ho", + "use" + ], + [ + "▁H", + "ouse" + ], + [ + "▁appear", + "ed" + ], + [ + "▁appe", + "ared" + ], + [ + "▁app", + "eared" + ], + [ + "▁week", + "s" + ], + [ + "▁we", + "eks" + ], + [ + "d", + "e" + ], + [ + "ul", + "e" + ], + [ + "u", + "le" + ], + [ + "▁pri", + "v" + ], + [ + "▁pr", + "iv" + ], + [ + "ound", + "s" + ], + [ + "oun", + "ds" + ], + [ + "▁Vi", + "l" + ], + [ + "▁V", + "il" + ], + [ + "▁ass", + "ist" + ], + [ + "▁cour", + "se" + ], + [ + "▁co", + "urse" + ], + [ + "▁c", + "ourse" + ], + [ + "▁creat", + "e" + ], + [ + "▁cre", + "ate" + ], + [ + "▁toward", + "s" + ], + [ + "▁tow", + "ards" + ], + [ + "▁to", + "wards" + ], + [ + "è", + "t" + ], + [ + "▁langu", + "age" + ], + [ + "▁lang", + "uage" + ], + [ + "▁incre", + "ase" + ], + [ + "row", + "n" + ], + [ + "ro", + "wn" + ], + [ + "r", + "own" + ], + [ + "▁Australia", + "n" + ], + [ + "▁Austral", + "ian" + ], + [ + "▁group", + "s" + ], + [ + "▁gro", + "ups" + ], + [ + "ava", + "l" + ], + [ + "av", + "al" + ], + [ + "a", + "val" + ], + [ + "▁involve", + "d" + ], + [ + "▁invol", + "ved" + ], + [ + "▁inv", + "olved" + ], + [ + "▁state", + "s" + ], + [ + "▁stat", + "es" + ], + [ + "▁st", + "ates" + ], + [ + "urric", + "ane" + ], + [ + "▁tem", + "per" + ], + [ + "▁train", + "ing" + ], + [ + "▁tra", + "ining" + ], + [ + "▁tr", + "aining" + ], + [ + "▁trop", + "ical" + ], + [ + "▁t", + "ropical" + ], + [ + "|", + "|" + ], + [ + "▁reg", + "ular" + ], + [ + "▁", + "regular" + ], + [ + "▁vi", + "r" + ], + [ + "▁v", + "ir" + ], + [ + "▁Franc", + "e" + ], + [ + "▁Fran", + "ce" + ], + [ + "▁Fra", + "nce" + ], + [ + "▁Fr", + "ance" + ], + [ + "▁F", + "rance" + ], + [ + "▁es", + "c" + ], + [ + "▁e", + "sc" + ], + [ + "▁", + "esc" + ], + [ + "▁200", + "3" + ], + [ + "▁effect", + "s" + ], + [ + "▁eff", + "ects" + ], + [ + "as", + "c" + ], + [ + "a", + "sc" + ], + [ + "▁rac", + "e" + ], + [ + "▁ra", + "ce" + ], + [ + "▁r", + "ace" + ], + [ + "▁", + "race" + ], + [ + "ter", + "s" + ], + [ + "te", + "rs" + ], + [ + "t", + "ers" + ], + [ + "▁im", + "m" + ], + [ + "▁i", + "mm" + ], + [ + "▁", + "imm" + ], + [ + "▁Fro", + "m" + ], + [ + "▁Fr", + "om" + ], + [ + "▁F", + "rom" + ], + [ + "▁reg", + "ard" + ], + [ + "▁re", + "gard" + ], + [ + "▁construct", + "ion" + ], + [ + "▁const", + "ruction" + ], + [ + "▁c", + "onstruction" + ], + [ + "▁bro", + "ught" + ], + [ + "▁br", + "ought" + ], + [ + "▁b", + "rought" + ], + [ + "ite", + "s" + ], + [ + "it", + "es" + ], + [ + "i", + "tes" + ], + [ + "▁al", + "ways" + ], + [ + "▁thing", + "s" + ], + [ + "▁thin", + "gs" + ], + [ + "▁th", + "ings" + ], + [ + "ort", + "un" + ], + [ + "▁18", + "8" + ], + [ + "▁1", + "88" + ], + [ + "va", + "l" + ], + [ + "v", + "al" + ], + [ + "▁al", + "ready" + ], + [ + "▁experien", + "ce" + ], + [ + "▁exper", + "ience" + ], + [ + "▁high", + "er" + ], + [ + "▁hig", + "her" + ], + [ + "▁imp", + "act" + ], + [ + "ore", + "s" + ], + [ + "or", + "es" + ], + [ + "o", + "res" + ], + [ + "sel", + "ves" + ], + [ + "▁consid", + "er" + ], + [ + "▁cons", + "ider" + ], + [ + "▁Bil", + "l" + ], + [ + "▁Bi", + "ll" + ], + [ + "▁B", + "ill" + ], + [ + "▁somet", + "hing" + ], + [ + "▁some", + "thing" + ], + [ + "▁", + "’" + ], + [ + "ire", + "s" + ], + [ + "ir", + "es" + ], + [ + "i", + "res" + ], + [ + "ote", + "d" + ], + [ + "ot", + "ed" + ], + [ + "o", + "ted" + ], + [ + "▁lan", + "e" + ], + [ + "▁la", + "ne" + ], + [ + "▁l", + "ane" + ], + [ + "▁", + "lane" + ], + [ + "et", + "ic" + ], + [ + "e", + "tic" + ], + [ + "and", + "s" + ], + [ + "an", + "ds" + ], + [ + "▁require", + "d" + ], + [ + "▁requ", + "ired" + ], + [ + "▁m", + "m" + ], + [ + "▁", + "mm" + ], + [ + "os", + "ition" + ], + [ + "▁th", + "reat" + ], + [ + "▁evid", + "ence" + ], + [ + "▁ev", + "idence" + ], + [ + "▁rem", + "ov" + ], + [ + "ar", + "c" + ], + [ + "ank", + "s" + ], + [ + "an", + "ks" + ], + [ + "▁pa", + "y" + ], + [ + "▁p", + "ay" + ], + [ + "▁", + "pay" + ], + [ + "over", + "ed" + ], + [ + "ove", + "red" + ], + [ + "ov", + "ered" + ], + [ + "oo", + "r" + ], + [ + "o", + "or" + ], + [ + "▁work", + "ed" + ], + [ + "▁her", + "e" + ], + [ + "▁he", + "re" + ], + [ + "▁h", + "ere" + ], + [ + "▁", + "here" + ], + [ + "▁vil", + "l" + ], + [ + "▁vi", + "ll" + ], + [ + "▁v", + "ill" + ], + [ + "▁me", + "m" + ], + [ + "▁m", + "em" + ], + [ + "▁18", + "6" + ], + [ + "▁1", + "86" + ], + [ + "▁ph", + "ot" + ], + [ + "▁p", + "hot" + ], + [ + "▁heav", + "y" + ], + [ + "▁he", + "avy" + ], + [ + "▁par", + "en" + ], + [ + "▁pa", + "ren" + ], + [ + "▁p", + "aren" + ], + [ + "▁Re", + "d" + ], + [ + "▁R", + "ed" + ], + [ + "▁Rober", + "t" + ], + [ + "▁Rob", + "ert" + ], + [ + "▁Ro", + "bert" + ], + [ + "▁count", + "ries" + ], + [ + "▁awa", + "rd" + ], + [ + "▁aw", + "ard" + ], + [ + "▁a", + "ward" + ], + [ + "ne", + "d" + ], + [ + "n", + "ed" + ], + [ + "▁complete", + "d" + ], + [ + "▁complet", + "ed" + ], + [ + "▁comple", + "ted" + ], + [ + "▁compl", + "eted" + ], + [ + "▁comp", + "leted" + ], + [ + "▁Vi", + "r" + ], + [ + "▁V", + "ir" + ], + [ + "▁Ro", + "b" + ], + [ + "▁R", + "ob" + ], + [ + "m", + "a" + ], + [ + "cl", + "us" + ], + [ + "▁particular", + "ly" + ], + [ + "▁fl", + "e" + ], + [ + "▁f", + "le" + ], + [ + "▁", + "fle" + ], + [ + "▁ta", + "king" + ], + [ + "▁t", + "aking" + ], + [ + "▁its", + "elf" + ], + [ + "▁it", + "self" + ], + [ + "▁part", + "s" + ], + [ + "▁par", + "ts" + ], + [ + "▁p", + "arts" + ], + [ + "▁", + "parts" + ], + [ + "▁sel", + "f" + ], + [ + "▁s", + "elf" + ], + [ + "▁", + "self" + ], + [ + "▁surf", + "ace" + ], + [ + "▁sur", + "face" + ], + [ + "th", + "e" + ], + [ + "t", + "he" + ], + [ + "▁Wash", + "ington" + ], + [ + "▁Europe", + "an" + ], + [ + "▁Europ", + "ean" + ], + [ + "▁ins", + "p" + ], + [ + "▁in", + "sp" + ], + [ + "▁trav", + "el" + ], + [ + "▁tra", + "vel" + ], + [ + "▁tr", + "avel" + ], + [ + "igne", + "d" + ], + [ + "ign", + "ed" + ], + [ + "ig", + "ned" + ], + [ + "è", + "n" + ], + [ + "▁pol", + "ic" + ], + [ + "▁po", + "lic" + ], + [ + "▁p", + "olic" + ], + [ + "▁bil", + "l" + ], + [ + "▁bi", + "ll" + ], + [ + "▁b", + "ill" + ], + [ + "▁gra", + "d" + ], + [ + "▁gr", + "ad" + ], + [ + "▁g", + "rad" + ], + [ + "▁", + "grad" + ], + [ + "▁so", + "on" + ], + [ + "▁s", + "oon" + ], + [ + "▁", + "soon" + ], + [ + "▁Pres", + "ident" + ], + [ + "arin", + "g" + ], + [ + "ari", + "ng" + ], + [ + "ar", + "ing" + ], + [ + "a", + "ring" + ], + [ + "▁po", + "u" + ], + [ + "▁p", + "ou" + ], + [ + "▁fre", + "qu" + ], + [ + "▁fr", + "equ" + ], + [ + "▁f", + "requ" + ], + [ + "▁la", + "un" + ], + [ + "▁rout", + "e" + ], + [ + "▁rou", + "te" + ], + [ + "▁ro", + "ute" + ], + [ + "▁r", + "oute" + ], + [ + "▁level", + "s" + ], + [ + "▁lev", + "els" + ], + [ + "▁kin", + "g" + ], + [ + "▁ki", + "ng" + ], + [ + "▁k", + "ing" + ], + [ + "▁", + "king" + ], + [ + "th", + "ing" + ], + [ + "t", + "hing" + ], + [ + "▁Por", + "t" + ], + [ + "▁P", + "ort" + ], + [ + "▁Va", + "l" + ], + [ + "▁V", + "al" + ], + [ + "it", + "ch" + ], + [ + "▁allow", + "ed" + ], + [ + "▁all", + "owed" + ], + [ + "▁3", + "1" + ], + [ + "▁", + "31" + ], + [ + "▁st", + "op" + ], + [ + "▁s", + "top" + ], + [ + "▁", + "stop" + ], + [ + "ag", + "n" + ], + [ + "a", + "gn" + ], + [ + "ly", + "ing" + ], + [ + "l", + "ying" + ], + [ + "▁bi", + "g" + ], + [ + "▁b", + "ig" + ], + [ + "▁mark", + "et" + ], + [ + "▁", + "market" + ], + [ + "▁", + "!" + ], + [ + "▁play", + "ing" + ], + [ + "▁pl", + "aying" + ], + [ + "▁part", + "y" + ], + [ + "▁par", + "ty" + ], + [ + "▁F", + "irst" + ], + [ + "▁mov", + "e" + ], + [ + "▁mo", + "ve" + ], + [ + "▁m", + "ove" + ], + [ + "of", + "f" + ], + [ + "o", + "ff" + ], + [ + "▁Mar", + "t" + ], + [ + "▁M", + "art" + ], + [ + "▁Be", + "l" + ], + [ + "▁B", + "el" + ], + [ + "▁hear", + "t" + ], + [ + "▁he", + "art" + ], + [ + "▁", + "heart" + ], + [ + "▁Roy", + "al" + ], + [ + "▁Ro", + "yal" + ], + [ + "▁R", + "oyal" + ], + [ + "ita", + "r" + ], + [ + "it", + "ar" + ], + [ + "i", + "tar" + ], + [ + "ishi", + "ng" + ], + [ + "ish", + "ing" + ], + [ + "is", + "hing" + ], + [ + "ors", + "e" + ], + [ + "or", + "se" + ], + [ + "ren", + "g" + ], + [ + "re", + "ng" + ], + [ + "r", + "eng" + ], + [ + "inc", + "ip" + ], + [ + "in", + "cip" + ], + [ + "ito", + "r" + ], + [ + "it", + "or" + ], + [ + "i", + "tor" + ], + [ + "▁est", + "im" + ], + [ + "▁Da", + "n" + ], + [ + "▁D", + "an" + ], + [ + "▁place", + "d" + ], + [ + "▁plac", + "ed" + ], + [ + "▁pl", + "aced" + ], + [ + "▁condition", + "s" + ], + [ + "▁cond", + "itions" + ], + [ + "wo", + "od" + ], + [ + "w", + "ood" + ], + [ + "▁say", + "s" + ], + [ + "▁sa", + "ys" + ], + [ + "▁s", + "ays" + ], + [ + "▁So", + "c" + ], + [ + "▁S", + "oc" + ], + [ + "ello", + "w" + ], + [ + "ell", + "ow" + ], + [ + "el", + "low" + ], + [ + "▁Jo", + "s" + ], + [ + "▁J", + "os" + ], + [ + "▁go", + "al" + ], + [ + "▁ex", + "c" + ], + [ + "▁bro", + "ther" + ], + [ + "▁br", + "other" + ], + [ + "▁200", + "1" + ], + [ + "▁me", + "r" + ], + [ + "▁m", + "er" + ], + [ + "▁", + "mer" + ], + [ + "▁en", + "s" + ], + [ + "▁e", + "ns" + ], + [ + "▁", + "ens" + ], + [ + "▁Do", + "n" + ], + [ + "▁D", + "on" + ], + [ + ",", + "”" + ], + [ + "▁comm", + "it" + ], + [ + "▁com", + "mit" + ], + [ + "▁comm", + "ent" + ], + [ + "▁com", + "ment" + ], + [ + "ris", + "on" + ], + [ + "ri", + "son" + ], + [ + "r", + "ison" + ], + [ + "N", + "A" + ], + [ + "▁wal", + "l" + ], + [ + "▁wa", + "ll" + ], + [ + "▁w", + "all" + ], + [ + "▁", + "wall" + ], + [ + "▁Lo", + "u" + ], + [ + "▁L", + "ou" + ], + [ + "▁ide", + "a" + ], + [ + "▁id", + "ea" + ], + [ + "▁Su", + "p" + ], + [ + "▁S", + "up" + ], + [ + "ute", + "r" + ], + [ + "ut", + "er" + ], + [ + "u", + "ter" + ], + [ + "▁", + "‘" + ], + [ + "▁Micha", + "el" + ], + [ + "▁Mich", + "ael" + ], + [ + "▁press", + "ure" + ], + [ + "y", + "r" + ], + [ + "re", + "m" + ], + [ + "r", + "em" + ], + [ + "▁to", + "u" + ], + [ + "▁t", + "ou" + ], + [ + "ent", + "al" + ], + [ + "en", + "tal" + ], + [ + "▁De", + "v" + ], + [ + "▁D", + "ev" + ], + [ + "▁whe", + "ther" + ], + [ + "▁wh", + "ether" + ], + [ + "un", + "k" + ], + [ + "ons", + "e" + ], + [ + "on", + "se" + ], + [ + "ile", + "s" + ], + [ + "il", + "es" + ], + [ + "i", + "les" + ], + [ + "▁fi", + "f" + ], + [ + "▁f", + "if" + ], + [ + "ersh", + "ip" + ], + [ + "ers", + "hip" + ], + [ + "er", + "ship" + ], + [ + "▁str", + "u" + ], + [ + "▁st", + "ru" + ], + [ + "▁", + "stru" + ], + [ + "▁lov", + "e" + ], + [ + "▁lo", + "ve" + ], + [ + "▁l", + "ove" + ], + [ + "▁re", + "b" + ], + [ + "▁r", + "eb" + ], + [ + "▁", + "reb" + ], + [ + "▁et", + "a" + ], + [ + "▁e", + "ta" + ], + [ + "▁", + "eta" + ], + [ + "▁do", + "c" + ], + [ + "▁d", + "oc" + ], + [ + "▁leng", + "th" + ], + [ + "▁l", + "ength" + ], + [ + "▁Cou", + "r" + ], + [ + "▁Co", + "ur" + ], + [ + "▁C", + "our" + ], + [ + "▁si", + "ze" + ], + [ + "▁s", + "ize" + ], + [ + "▁treat", + "ment" + ], + [ + "▁pos", + "itive" + ], + [ + "ari", + "ly" + ], + [ + "ar", + "ily" + ], + [ + "▁Mos", + "t" + ], + [ + "▁Mo", + "st" + ], + [ + "▁M", + "ost" + ], + [ + "▁open", + "ed" + ], + [ + "▁op", + "ened" + ], + [ + "▁individ", + "ual" + ], + [ + "▁dis", + "p" + ], + [ + "▁di", + "sp" + ], + [ + "▁d", + "isp" + ], + [ + "▁subs", + "equ" + ], + [ + "▁sub", + "sequ" + ], + [ + "▁K", + "e" + ], + [ + "▁Gre", + "at" + ], + [ + "▁G", + "reat" + ], + [ + "▁cre", + "w" + ], + [ + "▁cr", + "ew" + ], + [ + "▁c", + "rew" + ], + [ + "▁outs", + "ide" + ], + [ + "▁out", + "side" + ], + [ + "ient", + "s" + ], + [ + "ien", + "ts" + ], + [ + "i", + "ents" + ], + [ + "▁educ", + "ation" + ], + [ + "▁do", + "m" + ], + [ + "▁d", + "om" + ], + [ + "▁", + "dom" + ], + [ + "▁want", + "ed" + ], + [ + "▁w", + "anted" + ], + [ + "▁Ind", + "ia" + ], + [ + "▁In", + "dia" + ], + [ + "▁minute", + "s" + ], + [ + "▁min", + "utes" + ], + [ + "▁don", + "e" + ], + [ + "▁do", + "ne" + ], + [ + "▁d", + "one" + ], + [ + "▁ex", + "ec" + ], + [ + "▁proble", + "m" + ], + [ + "▁prob", + "lem" + ], + [ + "▁pro", + "blem" + ], + [ + "▁nor", + "m" + ], + [ + "▁no", + "rm" + ], + [ + "▁n", + "orm" + ], + [ + "▁", + "norm" + ], + [ + "▁cha", + "ll" + ], + [ + "▁ch", + "all" + ], + [ + "▁c", + "hall" + ], + [ + "▁large", + "st" + ], + [ + "▁larg", + "est" + ], + [ + "▁lar", + "gest" + ], + [ + "▁S", + "qu" + ], + [ + "▁app", + "oint" + ], + [ + "▁ap", + "point" + ], + [ + "▁Hen", + "ry" + ], + [ + "ourn", + "al" + ], + [ + "our", + "nal" + ], + [ + "o", + "urnal" + ], + [ + "▁Con", + "t" + ], + [ + "▁Co", + "nt" + ], + [ + "▁C", + "ont" + ], + [ + "▁ana", + "l" + ], + [ + "▁an", + "al" + ], + [ + "▁a", + "nal" + ], + [ + "▁concer", + "n" + ], + [ + "▁conc", + "ern" + ], + [ + "▁mon", + "ey" + ], + [ + "▁mo", + "ney" + ], + [ + "▁m", + "oney" + ], + [ + "▁ran", + "k" + ], + [ + "▁r", + "ank" + ], + [ + "▁", + "rank" + ], + [ + "▁Coll", + "e" + ], + [ + "▁Col", + "le" + ], + [ + "▁cent", + "ral" + ], + [ + "▁contra", + "ct" + ], + [ + "▁cont", + "ract" + ], + [ + "▁vi", + "ol" + ], + [ + "▁v", + "iol" + ], + [ + "ale", + "d" + ], + [ + "al", + "ed" + ], + [ + "a", + "led" + ], + [ + "▁comm", + "er" + ], + [ + "▁com", + "mer" + ], + [ + "▁real", + "ly" + ], + [ + "▁re", + "ally" + ], + [ + "▁foc", + "us" + ], + [ + "▁f", + "ocus" + ], + [ + "▁Des", + "p" + ], + [ + "▁De", + "sp" + ], + [ + "▁D", + "esp" + ], + [ + "om", + "p" + ], + [ + "o", + "mp" + ], + [ + "rate", + "d" + ], + [ + "rat", + "ed" + ], + [ + "ra", + "ted" + ], + [ + "r", + "ated" + ], + [ + "fer", + "ence" + ], + [ + "fe", + "rence" + ], + [ + "▁spe", + "ed" + ], + [ + "▁sp", + "eed" + ], + [ + "▁200", + "2" + ], + [ + "▁lit", + "er" + ], + [ + "▁li", + "ter" + ], + [ + "▁l", + "iter" + ], + [ + "▁offic", + "e" + ], + [ + "▁off", + "ice" + ], + [ + "▁ind", + "epend" + ], + [ + "anti", + "c" + ], + [ + "ant", + "ic" + ], + [ + "an", + "tic" + ], + [ + "▁can", + "n" + ], + [ + "▁c", + "ann" + ], + [ + "▁original", + "ly" + ], + [ + "▁origin", + "ally" + ], + [ + "bo", + "ard" + ], + [ + "b", + "oard" + ], + [ + "▁18", + "7" + ], + [ + "▁1", + "87" + ], + [ + "▁Man", + "y" + ], + [ + "▁Ma", + "ny" + ], + [ + "▁M", + "any" + ], + [ + "▁im", + "medi" + ], + [ + "▁la", + "b" + ], + [ + "▁l", + "ab" + ], + [ + "▁believe", + "d" + ], + [ + "▁belie", + "ved" + ], + [ + "▁Mar", + "y" + ], + [ + "▁Ma", + "ry" + ], + [ + "▁M", + "ary" + ], + [ + "▁si", + "l" + ], + [ + "▁s", + "il" + ], + [ + "▁nec", + "ess" + ], + [ + "▁ne", + "cess" + ], + [ + "▁n", + "ecess" + ], + [ + "▁det", + "ail" + ], + [ + "▁de", + "tail" + ], + [ + "end", + "s" + ], + [ + "en", + "ds" + ], + [ + "▁Pa", + "l" + ], + [ + "▁P", + "al" + ], + [ + "▁His", + "t" + ], + [ + "▁Hi", + "st" + ], + [ + "▁H", + "ist" + ], + [ + "▁mode", + "l" + ], + [ + "▁mod", + "el" + ], + [ + "▁stre", + "ng" + ], + [ + "▁str", + "eng" + ], + [ + "▁st", + "reng" + ], + [ + "if", + "orn" + ], + [ + "▁pe", + "ak" + ], + [ + "ru", + "g" + ], + [ + "r", + "ug" + ], + [ + "▁right", + "s" + ], + [ + "▁r", + "ights" + ], + [ + "fa", + "ct" + ], + [ + "f", + "act" + ], + [ + "▁Ma", + "l" + ], + [ + "▁M", + "al" + ], + [ + "▁Rom", + "an" + ], + [ + "▁Ro", + "man" + ], + [ + "▁R", + "oman" + ], + [ + "▁Ch", + "urch" + ], + [ + "▁A", + "c" + ], + [ + "if", + "t" + ], + [ + "i", + "ft" + ], + [ + "▁po", + "or" + ], + [ + "▁p", + "oor" + ], + [ + "▁em", + "er" + ], + [ + "▁e", + "mer" + ], + [ + "▁make", + "s" + ], + [ + "▁ma", + "kes" + ], + [ + "▁m", + "akes" + ], + [ + "▁show", + "s" + ], + [ + "▁sh", + "ows" + ], + [ + "io", + "s" + ], + [ + "i", + "os" + ], + [ + "▁Ar", + "t" + ], + [ + "▁vo", + "c" + ], + [ + "▁v", + "oc" + ], + [ + "▁earl", + "ier" + ], + [ + "▁la", + "y" + ], + [ + "▁l", + "ay" + ], + [ + "▁", + "lay" + ], + [ + "ual", + "s" + ], + [ + "ua", + "ls" + ], + [ + "u", + "als" + ], + [ + "lem", + "ent" + ], + [ + "le", + "ment" + ], + [ + "l", + "ement" + ], + [ + "k", + "y" + ], + [ + "▁Be", + "r" + ], + [ + "▁B", + "er" + ], + [ + "▁in", + "n" + ], + [ + "▁", + "inn" + ], + [ + "▁persona", + "l" + ], + [ + "▁person", + "al" + ], + [ + "▁pers", + "onal" + ], + [ + "ver", + "t" + ], + [ + "v", + "ert" + ], + [ + "▁Christ", + "ian" + ], + [ + "▁conce", + "pt" + ], + [ + "▁conc", + "ept" + ], + [ + "▁con", + "cept" + ], + [ + "▁re", + "act" + ], + [ + "▁se", + "qu" + ], + [ + "▁s", + "equ" + ], + [ + "▁", + "sequ" + ], + [ + "ya", + "l" + ], + [ + "y", + "al" + ], + [ + "▁cour", + "t" + ], + [ + "▁co", + "urt" + ], + [ + "▁c", + "ourt" + ], + [ + "▁", + "court" + ], + [ + "bo", + "r" + ], + [ + "b", + "or" + ], + [ + "min", + "ist" + ], + [ + "▁gun", + "s" + ], + [ + "▁gu", + "ns" + ], + [ + "▁g", + "uns" + ], + [ + "▁liv", + "ing" + ], + [ + "▁li", + "ving" + ], + [ + "▁l", + "iving" + ], + [ + "▁Qu", + "e" + ], + [ + "▁Q", + "ue" + ], + [ + "▁relate", + "d" + ], + [ + "▁relat", + "ed" + ], + [ + "▁rel", + "ated" + ], + [ + "▁", + "related" + ], + [ + "▁mo", + "un" + ], + [ + "▁m", + "oun" + ], + [ + "▁sa", + "t" + ], + [ + "▁s", + "at" + ], + [ + "▁them", + "selves" + ], + [ + "▁", + "?" + ], + [ + "▁Cal", + "iforn" + ], + [ + "▁Wi", + "l" + ], + [ + "▁W", + "il" + ], + [ + "▁ta", + "r" + ], + [ + "▁t", + "ar" + ], + [ + "▁", + "tar" + ], + [ + "▁word", + "s" + ], + [ + "▁wor", + "ds" + ], + [ + "▁w", + "ords" + ], + [ + "▁", + "words" + ], + [ + "▁Canad", + "a" + ], + [ + "▁Can", + "ada" + ], + [ + "▁iss", + "ue" + ], + [ + "uf", + "f" + ], + [ + "u", + "ff" + ], + [ + "ag", + "o" + ], + [ + "a", + "go" + ], + [ + "vil", + "le" + ], + [ + "v", + "ille" + ], + [ + "▁fun", + "ction" + ], + [ + "▁f", + "unction" + ], + [ + "▁", + "function" + ], + [ + "ou", + "d" + ], + [ + "o", + "ud" + ], + [ + "▁Pa", + "t" + ], + [ + "▁P", + "at" + ], + [ + "irt", + "h" + ], + [ + "ir", + "th" + ], + [ + "asi", + "on" + ], + [ + "as", + "ion" + ], + [ + "c", + "o" + ], + [ + "ra", + "p" + ], + [ + "r", + "ap" + ], + [ + "on", + "n" + ], + [ + "va", + "n" + ], + [ + "v", + "an" + ], + [ + "ik", + "asyon" + ], + [ + "▁w", + "ife" + ], + [ + "am", + "s" + ], + [ + "a", + "ms" + ], + [ + "▁Tw", + "o" + ], + [ + "▁T", + "wo" + ], + [ + "ul", + "a" + ], + [ + "u", + "la" + ], + [ + "▁prote", + "ct" + ], + [ + "▁prot", + "ect" + ], + [ + "our", + "a" + ], + [ + "ou", + "ra" + ], + [ + "o", + "ura" + ], + [ + "▁spec", + "ific" + ], + [ + "▁", + "specific" + ], + [ + "▁Desp", + "ite" + ], + [ + "▁Intern", + "ational" + ], + [ + "▁Ref", + "er" + ], + [ + "▁Re", + "fer" + ], + [ + "▁arm", + "y" + ], + [ + "▁ar", + "my" + ], + [ + "▁re", + "ason" + ], + [ + "▁r", + "eason" + ], + [ + "s", + "w" + ], + [ + "Th", + "e" + ], + [ + "T", + "he" + ], + [ + "▁di", + "g" + ], + [ + "▁d", + "ig" + ], + [ + "▁", + "dig" + ], + [ + "▁intern", + "ational" + ], + [ + "▁sometime", + "s" + ], + [ + "▁somet", + "imes" + ], + [ + "▁four", + "th" + ], + [ + "▁troop", + "s" + ], + [ + "▁tro", + "ops" + ], + [ + "▁p", + "w" + ], + [ + "▁system", + "s" + ], + [ + "os", + "ing" + ], + [ + "▁scen", + "e" + ], + [ + "▁sc", + "ene" + ], + [ + "ple", + "s" + ], + [ + "pl", + "es" + ], + [ + "p", + "les" + ], + [ + "▁ra", + "p" + ], + [ + "▁r", + "ap" + ], + [ + "▁", + "rap" + ], + [ + "▁multi", + "p" + ], + [ + "▁mult", + "ip" + ], + [ + "▁is", + "land" + ], + [ + "▁ly", + "en" + ], + [ + "▁l", + "yen" + ], + [ + "▁kin", + "d" + ], + [ + "▁ki", + "nd" + ], + [ + "▁k", + "ind" + ], + [ + "▁", + "kind" + ], + [ + "ason", + "s" + ], + [ + "as", + "ons" + ], + [ + "ode", + "s" + ], + [ + "od", + "es" + ], + [ + "o", + "des" + ], + [ + "▁Californ", + "ia" + ], + [ + "▁Thom", + "as" + ], + [ + "▁Th", + "omas" + ], + [ + "ution", + "s" + ], + [ + "ut", + "ions" + ], + [ + "▁K", + "èk" + ], + [ + "ande", + "r" + ], + [ + "and", + "er" + ], + [ + "an", + "der" + ], + [ + "▁comple", + "x" + ], + [ + "▁compl", + "ex" + ], + [ + "▁comp", + "lex" + ], + [ + "▁com", + "plex" + ], + [ + "▁Charl", + "es" + ], + [ + "▁Char", + "les" + ], + [ + "▁em", + "b" + ], + [ + "▁e", + "mb" + ], + [ + "▁", + "emb" + ], + [ + "▁Fol", + "low" + ], + [ + "▁F", + "ollow" + ], + [ + "ò", + "n" + ], + [ + "▁des", + "p" + ], + [ + "▁de", + "sp" + ], + [ + "▁d", + "esp" + ], + [ + "▁refer", + "ans" + ], + [ + "▁ch", + "urch" + ], + [ + "▁", + "church" + ], + [ + "▁50", + "0" + ], + [ + "▁5", + "00" + ], + [ + "▁", + "500" + ], + [ + "▁high", + "est" + ], + [ + "▁hig", + "hest" + ], + [ + "▁pres", + "ident" + ], + [ + "▁element", + "s" + ], + [ + "▁ele", + "ments" + ], + [ + "▁el", + "ements" + ], + [ + "▁e", + "lements" + ], + [ + "▁rou", + "nd" + ], + [ + "▁ro", + "und" + ], + [ + "▁r", + "ound" + ], + [ + "▁", + "round" + ], + [ + "▁say", + "ing" + ], + [ + "▁sa", + "ying" + ], + [ + "▁s", + "aying" + ], + [ + "▁quest", + "ion" + ], + [ + "▁struct", + "ure" + ], + [ + "▁st", + "ructure" + ], + [ + "▁to", + "ld" + ], + [ + "▁t", + "old" + ], + [ + "▁to", + "day" + ], + [ + "▁ra", + "il" + ], + [ + "▁r", + "ail" + ], + [ + "he", + "t" + ], + [ + "h", + "et" + ], + [ + "azi", + "ne" + ], + [ + "az", + "ine" + ], + [ + "▁beh", + "av" + ], + [ + "▁Ma", + "c" + ], + [ + "▁M", + "ac" + ], + [ + "▁complet", + "e" + ], + [ + "▁comple", + "te" + ], + [ + "▁compl", + "ete" + ], + [ + "▁comp", + "lete" + ], + [ + "▁com", + "plete" + ], + [ + "▁No", + "r" + ], + [ + "▁N", + "or" + ], + [ + "▁net", + "work" + ], + [ + "▁n", + "etwork" + ], + [ + "ec", + "k" + ], + [ + "e", + "ck" + ], + [ + "▁incre", + "asing" + ], + [ + "▁Ay", + "isyen" + ], + [ + "▁Ass", + "oci" + ], + [ + "▁begin", + "ning" + ], + [ + "▁Ang", + "el" + ], + [ + "▁An", + "gel" + ], + [ + "▁A", + "ngel" + ], + [ + "ok", + "e" + ], + [ + "o", + "ke" + ], + [ + "ib", + "r" + ], + [ + "i", + "br" + ], + [ + "ari", + "es" + ], + [ + "ar", + "ies" + ], + [ + "a", + "ries" + ], + [ + "icle", + "s" + ], + [ + "ic", + "les" + ], + [ + "i", + "cles" + ], + [ + "en", + "ing" + ], + [ + "e", + "ning" + ], + [ + "▁de", + "al" + ], + [ + "▁d", + "eal" + ], + [ + "led", + "ge" + ], + [ + "in", + "n" + ], + [ + "id", + "a" + ], + [ + "i", + "da" + ], + [ + "▁respons", + "e" + ], + [ + "▁resp", + "onse" + ], + [ + "eder", + "al" + ], + [ + "ede", + "ral" + ], + [ + "ed", + "eral" + ], + [ + "▁associate", + "d" + ], + [ + "▁associ", + "ated" + ], + [ + "▁pass", + "ed" + ], + [ + "▁199", + "6" + ], + [ + "▁19", + "96" + ], + [ + "▁result", + "s" + ], + [ + "▁res", + "ults" + ], + [ + "▁nat", + "ure" + ], + [ + "▁na", + "ture" + ], + [ + "▁n", + "ature" + ], + [ + "▁long", + "er" + ], + [ + "▁lon", + "ger" + ], + [ + "ol", + "s" + ], + [ + "o", + "ls" + ], + [ + "▁far", + "m" + ], + [ + "▁fa", + "rm" + ], + [ + "▁f", + "arm" + ], + [ + "▁south", + "ern" + ], + [ + "▁sout", + "hern" + ], + [ + "▁s", + "outhern" + ], + [ + "▁l", + "o" + ], + [ + "▁", + "lo" + ], + [ + "▁who", + "se" + ], + [ + "▁wh", + "ose" + ], + [ + "▁quick", + "ly" + ], + [ + "▁ho", + "us" + ], + [ + "▁h", + "ous" + ], + [ + "▁", + "hous" + ], + [ + "▁bel", + "ow" + ], + [ + "▁be", + "low" + ], + [ + "▁m", + "i" + ], + [ + "▁", + "mi" + ], + [ + "▁Br", + "a" + ], + [ + "▁B", + "ra" + ], + [ + "▁case", + "s" + ], + [ + "▁cas", + "es" + ], + [ + "▁ca", + "ses" + ], + [ + "▁c", + "ases" + ], + [ + "ope", + "r" + ], + [ + "op", + "er" + ], + [ + "o", + "per" + ], + [ + "▁Mi", + "d" + ], + [ + "▁M", + "id" + ], + [ + "▁se", + "a" + ], + [ + "▁s", + "ea" + ], + [ + "▁", + "sea" + ], + [ + "▁who", + "le" + ], + [ + "▁wh", + "ole" + ], + [ + "▁w", + "hole" + ], + [ + "▁c", + "ivil" + ], + [ + "▁addition", + "al" + ], + [ + "▁Bes", + "t" + ], + [ + "▁Be", + "st" + ], + [ + "▁B", + "est" + ], + [ + "▁sect", + "ion" + ], + [ + "▁se", + "ction" + ], + [ + "▁s", + "ection" + ], + [ + "▁", + "section" + ], + [ + "▁Sta", + "r" + ], + [ + "▁St", + "ar" + ], + [ + "▁S", + "tar" + ], + [ + "▁S", + "l" + ], + [ + "▁je", + "w" + ], + [ + "▁j", + "ew" + ], + [ + "i", + "j" + ], + [ + "▁Ear", + "th" + ], + [ + "▁E", + "arth" + ], + [ + "▁de", + "ep" + ], + [ + "▁sc", + "en" + ], + [ + "▁join", + "ed" + ], + [ + "▁jo", + "ined" + ], + [ + "▁run", + "s" + ], + [ + "▁ru", + "ns" + ], + [ + "▁r", + "uns" + ], + [ + "▁wor", + "d" + ], + [ + "▁w", + "ord" + ], + [ + "▁", + "word" + ], + [ + "aul", + "t" + ], + [ + "a", + "ult" + ], + [ + "▁Con", + "g" + ], + [ + "▁Co", + "ng" + ], + [ + "▁C", + "ong" + ], + [ + "ction", + "s" + ], + [ + "ct", + "ions" + ], + [ + "uri", + "ty" + ], + [ + "ur", + "ity" + ], + [ + "▁issue", + "s" + ], + [ + "▁iss", + "ues" + ], + [ + "fal", + "l" + ], + [ + "fa", + "ll" + ], + [ + "f", + "all" + ], + [ + "imi", + "n" + ], + [ + "im", + "in" + ], + [ + "i", + "min" + ], + [ + "v", + "i" + ], + [ + "we", + "st" + ], + [ + "w", + "est" + ], + [ + "▁need", + "ed" + ], + [ + "▁ne", + "eded" + ], + [ + "▁Rep", + "ublic" + ], + [ + "▁Whit", + "e" + ], + [ + "▁Wh", + "ite" + ], + [ + "▁Ale", + "x" + ], + [ + "▁Al", + "ex" + ], + [ + "▁A", + "lex" + ], + [ + "ake", + "r" + ], + [ + "ak", + "er" + ], + [ + "a", + "ker" + ], + [ + "▁w", + "ood" + ], + [ + "▁", + "wood" + ], + [ + "ine", + "m" + ], + [ + "in", + "em" + ], + [ + "▁bene", + "f" + ], + [ + "▁ben", + "ef" + ], + [ + "B", + "C" + ], + [ + "▁par", + "k" + ], + [ + "▁p", + "ark" + ], + [ + "anne", + "d" + ], + [ + "ann", + "ed" + ], + [ + "an", + "ned" + ], + [ + "▁l", + "y" + ], + [ + "▁", + "ly" + ], + [ + "▁turn", + "ed" + ], + [ + "▁tur", + "ned" + ], + [ + "▁line", + "s" + ], + [ + "▁lin", + "es" + ], + [ + "▁li", + "nes" + ], + [ + "▁l", + "ines" + ], + [ + "▁", + "lines" + ], + [ + "▁replace", + "d" + ], + [ + "▁repl", + "aced" + ], + [ + "▁service", + "s" + ], + [ + "▁serv", + "ices" + ], + [ + "ame", + "r" + ], + [ + "am", + "er" + ], + [ + "a", + "mer" + ], + [ + "▁rat", + "e" + ], + [ + "▁ra", + "te" + ], + [ + "▁r", + "ate" + ], + [ + "▁", + "rate" + ], + [ + "▁Go", + "vern" + ], + [ + "▁le", + "ar" + ], + [ + "▁l", + "ear" + ], + [ + "▁feature", + "d" + ], + [ + "▁feat", + "ured" + ], + [ + "▁Jew", + "ografi" + ], + [ + "▁requ", + "ire" + ], + [ + "▁6", + "0" + ], + [ + "▁", + "60" + ], + [ + "▁sc", + "ience" + ], + [ + "▁s", + "cience" + ], + [ + "▁na", + "r" + ], + [ + "▁n", + "ar" + ], + [ + "▁", + "nar" + ], + [ + "▁Refer", + "ans" + ], + [ + "ro", + "und" + ], + [ + "r", + "ound" + ], + [ + "▁cre", + "d" + ], + [ + "▁cr", + "ed" + ], + [ + "▁c", + "red" + ], + [ + "▁Hal", + "l" + ], + [ + "▁Ha", + "ll" + ], + [ + "▁H", + "all" + ], + [ + "ut", + "ive" + ], + [ + "▁30", + "0" + ], + [ + "▁3", + "00" + ], + [ + "▁", + "300" + ], + [ + "▁rel", + "asyon" + ], + [ + "▁At", + "l" + ], + [ + "ear", + "s" + ], + [ + "ea", + "rs" + ], + [ + "e", + "ars" + ], + [ + "▁sl", + "ow" + ], + [ + "▁s", + "low" + ], + [ + "▁tex", + "t" + ], + [ + "▁te", + "xt" + ], + [ + "▁t", + "ext" + ], + [ + "▁", + "text" + ], + [ + "▁o", + "il" + ], + [ + "▁bi", + "rd" + ], + [ + "▁b", + "ird" + ], + [ + "▁", + "bird" + ], + [ + "eu", + "m" + ], + [ + "e", + "um" + ], + [ + "ulate", + "d" + ], + [ + "ula", + "ted" + ], + [ + "ul", + "ated" + ], + [ + "▁ant", + "i" + ], + [ + "▁an", + "ti" + ], + [ + "▁", + "anti" + ], + [ + "▁mac", + "h" + ], + [ + "▁ma", + "ch" + ], + [ + "▁m", + "ach" + ], + [ + "▁cr", + "u" + ], + [ + "▁c", + "ru" + ], + [ + "▁", + "cru" + ], + [ + "▁move", + "ment" + ], + [ + "▁mov", + "ement" + ], + [ + "▁mo", + "vement" + ], + [ + "▁force", + "d" + ], + [ + "▁forc", + "ed" + ], + [ + "▁for", + "ced" + ], + [ + "▁", + "forced" + ], + [ + "h", + "a" + ], + [ + "▁score", + "d" + ], + [ + "▁sc", + "ored" + ], + [ + "ys", + "is" + ], + [ + "y", + "sis" + ], + [ + ",", + "000" + ], + [ + "▁Mi", + "l" + ], + [ + "▁M", + "il" + ], + [ + "▁direct", + "or" + ], + [ + "▁dire", + "ctor" + ], + [ + "▁dir", + "ector" + ], + [ + "is", + "l" + ], + [ + "i", + "sl" + ], + [ + "▁unit", + "s" + ], + [ + "▁un", + "its" + ], + [ + "▁dra", + "w" + ], + [ + "▁dr", + "aw" + ], + [ + "▁d", + "raw" + ], + [ + "▁north", + "ern" + ], + [ + "▁nort", + "hern" + ], + [ + "▁br", + "ing" + ], + [ + "▁b", + "ring" + ], + [ + "▁Rel", + "asyon" + ], + [ + "ber", + "s" + ], + [ + "be", + "rs" + ], + [ + "b", + "ers" + ], + [ + "▁invest", + "ig" + ], + [ + "▁exc", + "ept" + ], + [ + "▁ex", + "cept" + ], + [ + "▁large", + "r" + ], + [ + "▁larg", + "er" + ], + [ + "▁lar", + "ger" + ], + [ + "▁ra", + "in" + ], + [ + "▁r", + "ain" + ], + [ + "▁", + "rain" + ], + [ + "ater", + "s" + ], + [ + "ate", + "rs" + ], + [ + "at", + "ers" + ], + [ + "a", + "ters" + ], + [ + "▁Un", + "ion" + ], + [ + "ro", + "l" + ], + [ + "r", + "ol" + ], + [ + "f", + "l" + ], + [ + "ria", + "n" + ], + [ + "ri", + "an" + ], + [ + "r", + "ian" + ], + [ + "ain", + "t" + ], + [ + "ai", + "nt" + ], + [ + "a", + "int" + ], + [ + "▁Follow", + "ing" + ], + [ + "z", + "y" + ], + [ + "▁199", + "0" + ], + [ + "▁19", + "90" + ], + [ + "orde", + "r" + ], + [ + "ord", + "er" + ], + [ + "or", + "der" + ], + [ + "oli", + "c" + ], + [ + "ol", + "ic" + ], + [ + "o", + "lic" + ], + [ + "▁qual", + "ity" + ], + [ + "▁qu", + "ality" + ], + [ + "▁", + "quality" + ], + [ + "▁min", + "d" + ], + [ + "▁mi", + "nd" + ], + [ + "▁m", + "ind" + ], + [ + "▁", + "mind" + ], + [ + "▁Sa", + "m" + ], + [ + "▁S", + "am" + ], + [ + "▁open", + "ing" + ], + [ + "▁op", + "ening" + ], + [ + "air", + "s" + ], + [ + "ai", + "rs" + ], + [ + "a", + "irs" + ], + [ + "▁ask", + "ed" + ], + [ + "ite", + "r" + ], + [ + "it", + "er" + ], + [ + "i", + "ter" + ], + [ + "ati", + "n" + ], + [ + "at", + "in" + ], + [ + "ba", + "ck" + ], + [ + "b", + "ack" + ], + [ + "pt", + "ion" + ], + [ + "▁Mor", + "e" + ], + [ + "▁Mo", + "re" + ], + [ + "▁M", + "ore" + ], + [ + "▁Se", + "n" + ], + [ + "▁S", + "en" + ], + [ + "▁E", + "k" + ], + [ + "▁jo", + "b" + ], + [ + "▁j", + "ob" + ], + [ + "cha", + "n" + ], + [ + "ch", + "an" + ], + [ + "c", + "han" + ], + [ + "▁nov", + "el" + ], + [ + "▁no", + "vel" + ], + [ + "▁Rich", + "ard" + ], + [ + "▁Ric", + "hard" + ], + [ + "▁Ri", + "chard" + ], + [ + "▁pur", + "p" + ], + [ + "▁term", + "s" + ], + [ + "▁ter", + "ms" + ], + [ + "m", + "p" + ], + [ + "te", + "e" + ], + [ + "t", + "ee" + ], + [ + "ro", + "r" + ], + [ + "r", + "or" + ], + [ + "▁critic", + "s" + ], + [ + "▁crit", + "ics" + ], + [ + "erv", + "e" + ], + [ + "er", + "ve" + ], + [ + "▁fac", + "e" + ], + [ + "▁fa", + "ce" + ], + [ + "▁f", + "ace" + ], + [ + "▁", + "face" + ], + [ + "ull", + "y" + ], + [ + "ul", + "ly" + ], + [ + "re", + "l" + ], + [ + "r", + "el" + ], + [ + "aught", + "er" + ], + [ + "augh", + "ter" + ], + [ + "▁Vir", + "gin" + ], + [ + "▁su", + "s" + ], + [ + "▁s", + "us" + ], + [ + "▁include", + "s" + ], + [ + "▁includ", + "es" + ], + [ + "▁incl", + "udes" + ], + [ + "rac", + "k" + ], + [ + "ra", + "ck" + ], + [ + "r", + "ack" + ], + [ + "▁ta", + "x" + ], + [ + "▁t", + "ax" + ], + [ + "▁", + "tax" + ], + [ + "▁dec", + "ision" + ], + [ + "▁be", + "g" + ], + [ + "▁b", + "eg" + ], + [ + "▁cent", + "er" + ], + [ + "▁c", + "enter" + ], + [ + "▁learn", + "ing" + ], + [ + "▁lear", + "ning" + ], + [ + "ograph", + "y" + ], + [ + "ograp", + "hy" + ], + [ + "ogra", + "phy" + ], + [ + "ative", + "ly" + ], + [ + "at", + "ively" + ], + [ + "ise", + "s" + ], + [ + "is", + "es" + ], + [ + "i", + "ses" + ], + [ + "que", + "s" + ], + [ + "qu", + "es" + ], + [ + "q", + "ues" + ], + [ + "im", + "um" + ], + [ + "un", + "t" + ], + [ + "u", + "nt" + ], + [ + "izin", + "g" + ], + [ + "iz", + "ing" + ], + [ + "i", + "zing" + ], + [ + "▁che", + "m" + ], + [ + "▁ch", + "em" + ], + [ + "▁c", + "hem" + ], + [ + "▁", + "chem" + ], + [ + "ens", + "ion" + ], + [ + "it", + "ation" + ], + [ + ".", + "\"" + ], + [ + "▁pr", + "incip" + ], + [ + "▁German", + "y" + ], + [ + "▁Germ", + "any" + ], + [ + "▁Da", + "y" + ], + [ + "▁D", + "ay" + ], + [ + "▁sh", + "ot" + ], + [ + "▁s", + "hot" + ], + [ + "▁", + "shot" + ], + [ + "▁scr", + "een" + ], + [ + "▁sc", + "reen" + ], + [ + "▁", + "screen" + ], + [ + "ache", + "s" + ], + [ + "ach", + "es" + ], + [ + "ac", + "hes" + ], + [ + "a", + "ches" + ], + [ + "▁pract", + "ice" + ], + [ + "▁potent", + "ial" + ], + [ + "▁pot", + "ential" + ], + [ + "▁pe", + "n" + ], + [ + "▁p", + "en" + ], + [ + "▁", + "pen" + ], + [ + "▁pri", + "or" + ], + [ + "▁pr", + "ior" + ], + [ + "sy", + "ch" + ], + [ + "ic", + "ation" + ], + [ + "ras", + "t" + ], + [ + "ra", + "st" + ], + [ + "r", + "ast" + ], + [ + "▁Scot", + "t" + ], + [ + "▁Sc", + "ott" + ], + [ + "▁S", + "cott" + ], + [ + "▁gr", + "e" + ], + [ + "▁g", + "re" + ], + [ + "▁", + "gre" + ], + [ + "▁Me", + "t" + ], + [ + "▁M", + "et" + ], + [ + "▁comple", + "t" + ], + [ + "▁compl", + "et" + ], + [ + "▁comp", + "let" + ], + [ + "▁go", + "ld" + ], + [ + "▁g", + "old" + ], + [ + "it", + "z" + ], + [ + "i", + "tz" + ], + [ + "ance", + "d" + ], + [ + "anc", + "ed" + ], + [ + "an", + "ced" + ], + [ + "▁finish", + "ed" + ], + [ + "▁fin", + "ished" + ], + [ + "▁f", + "inished" + ], + [ + "▁an", + "c" + ], + [ + "▁", + "anc" + ], + [ + "▁Ap", + "p" + ], + [ + "▁A", + "pp" + ], + [ + "▁Ak", + "tè" + ], + [ + "▁A", + "ktè" + ], + [ + "▁ab", + "ility" + ], + [ + "▁", + "ability" + ], + [ + "▁de", + "g" + ], + [ + "▁d", + "eg" + ], + [ + "ail", + "y" + ], + [ + "ai", + "ly" + ], + [ + "a", + "ily" + ], + [ + "▁tar", + "get" + ], + [ + "▁transp", + "ort" + ], + [ + "▁trans", + "port" + ], + [ + "▁transf", + "er" + ], + [ + "▁trans", + "fer" + ], + [ + "▁Ba", + "y" + ], + [ + "▁B", + "ay" + ], + [ + "▁rec", + "omm" + ], + [ + "▁vict", + "ory" + ], + [ + "▁vi", + "ctory" + ], + [ + "▁ca", + "t" + ], + [ + "▁c", + "at" + ], + [ + "▁", + "cat" + ], + [ + "▁bu", + "r" + ], + [ + "▁b", + "ur" + ], + [ + "▁", + "bur" + ], + [ + "▁Me", + "xic" + ], + [ + "▁ye", + "t" + ], + [ + "▁y", + "et" + ], + [ + "ed", + "s" + ], + [ + "e", + "ds" + ], + [ + "▁limit", + "ed" + ], + [ + "▁lim", + "ited" + ], + [ + "▁l", + "imited" + ], + [ + "ho", + "od" + ], + [ + "h", + "ood" + ], + [ + "ence", + "d" + ], + [ + "enc", + "ed" + ], + [ + "en", + "ced" + ], + [ + "▁comp", + "an" + ], + [ + "▁com", + "pan" + ], + [ + "▁rem", + "ain" + ], + [ + "▁An", + "t" + ], + [ + "▁A", + "nt" + ], + [ + "▁Ju", + "st" + ], + [ + "▁J", + "ust" + ], + [ + "bo", + "n" + ], + [ + "b", + "on" + ], + [ + "ch", + "e" + ], + [ + "c", + "he" + ], + [ + "▁Pl", + "ay" + ], + [ + "▁P", + "lay" + ], + [ + "st", + "on" + ], + [ + "s", + "ton" + ], + [ + "rie", + "f" + ], + [ + "ri", + "ef" + ], + [ + "r", + "ief" + ], + [ + "▁sour", + "ce" + ], + [ + "▁s", + "ource" + ], + [ + "▁Is", + "land" + ], + [ + "▁Sm", + "ith" + ], + [ + "▁S", + "mith" + ], + [ + "▁Batt", + "le" + ], + [ + "▁Bat", + "tle" + ], + [ + "▁B", + "attle" + ], + [ + "▁appear", + "ance" + ], + [ + "gin", + "g" + ], + [ + "gi", + "ng" + ], + [ + "g", + "ing" + ], + [ + "▁Cour", + "t" + ], + [ + "▁Co", + "urt" + ], + [ + "▁C", + "ourt" + ], + [ + "ut", + "h" + ], + [ + "u", + "th" + ], + [ + "u", + "x" + ], + [ + "▁previous", + "ly" + ], + [ + "▁prev", + "iously" + ], + [ + "▁fam", + "il" + ], + [ + "▁occ", + "up" + ], + [ + "▁", + "occup" + ], + [ + "▁lo", + "t" + ], + [ + "▁l", + "ot" + ], + [ + "▁", + "lot" + ], + [ + "▁Vic", + "t" + ], + [ + "▁Vi", + "ct" + ], + [ + "▁V", + "ict" + ], + [ + "ower", + "s" + ], + [ + "ow", + "ers" + ], + [ + "ile", + "d" + ], + [ + "il", + "ed" + ], + [ + "i", + "led" + ], + [ + "ad", + "ron" + ], + [ + "▁th", + "us" + ], + [ + "▁t", + "hus" + ], + [ + "▁res", + "our" + ], + [ + "▁de", + "r" + ], + [ + "▁d", + "er" + ], + [ + "▁", + "der" + ], + [ + "▁compare", + "d" + ], + [ + "▁compar", + "ed" + ], + [ + "▁comp", + "ared" + ], + [ + "▁stud", + "ies" + ], + [ + "ul", + "f" + ], + [ + "▁spe", + "nt" + ], + [ + "▁sp", + "ent" + ], + [ + "▁s", + "pent" + ], + [ + "▁Mar", + "k" + ], + [ + "▁M", + "ark" + ], + [ + "3", + "0" + ], + [ + "▁physic", + "al" + ], + [ + "▁phys", + "ical" + ], + [ + "▁ph", + "ysical" + ], + [ + "▁prob", + "ably" + ], + [ + "▁wid", + "e" + ], + [ + "▁w", + "ide" + ], + [ + "▁", + "wide" + ], + [ + "▁initial", + "ly" + ], + [ + "▁initi", + "ally" + ], + [ + "▁init", + "ially" + ], + [ + "▁Te", + "x" + ], + [ + "▁T", + "ex" + ], + [ + "▁cell", + "s" + ], + [ + "▁cel", + "ls" + ], + [ + "▁c", + "ells" + ], + [ + "▁produ", + "ce" + ], + [ + "▁Bro", + "wn" + ], + [ + "▁Br", + "own" + ], + [ + "▁B", + "rown" + ], + [ + "▁activ", + "ity" + ], + [ + "▁act", + "ivity" + ], + [ + "▁", + "activity" + ], + [ + "elle", + "d" + ], + [ + "ell", + "ed" + ], + [ + "el", + "led" + ], + [ + "e", + "lled" + ], + [ + "us", + "e" + ], + [ + "u", + "se" + ], + [ + "▁bom", + "b" + ], + [ + "▁bo", + "mb" + ], + [ + "▁b", + "omb" + ], + [ + "ative", + "s" + ], + [ + "ati", + "ves" + ], + [ + "at", + "ives" + ], + [ + "▁medi", + "a" + ], + [ + "▁med", + "ia" + ], + [ + "▁me", + "dia" + ], + [ + "▁m", + "edia" + ], + [ + "ision", + "s" + ], + [ + "isi", + "ons" + ], + [ + "is", + "ions" + ], + [ + "abi", + "t" + ], + [ + "ab", + "it" + ], + [ + "a", + "bit" + ], + [ + "▁Moun", + "t" + ], + [ + "▁Mou", + "nt" + ], + [ + "▁Mo", + "unt" + ], + [ + "▁M", + "ount" + ], + [ + "ose", + "s" + ], + [ + "os", + "es" + ], + [ + "o", + "ses" + ], + [ + "▁Be", + "n" + ], + [ + "▁B", + "en" + ], + [ + "▁3", + "5" + ], + [ + "▁", + "35" + ], + [ + "▁U", + "K" + ], + [ + "▁sen", + "s" + ], + [ + "▁se", + "ns" + ], + [ + "▁s", + "ens" + ], + [ + "ui", + "t" + ], + [ + "u", + "it" + ], + [ + "est", + "s" + ], + [ + "es", + "ts" + ], + [ + "e", + "sts" + ], + [ + "▁adul", + "t" + ], + [ + "▁ad", + "ult" + ], + [ + "▁appl", + "ic" + ], + [ + "▁app", + "lic" + ], + [ + "▁ende", + "d" + ], + [ + "▁end", + "ed" + ], + [ + "▁en", + "ded" + ], + [ + "▁", + "ended" + ], + [ + "ria", + "l" + ], + [ + "ri", + "al" + ], + [ + "r", + "ial" + ], + [ + "▁indust", + "ry" + ], + [ + "▁Ed", + "ikasyon" + ], + [ + "▁Sin", + "g" + ], + [ + "▁Si", + "ng" + ], + [ + "▁S", + "ing" + ], + [ + "▁show", + "n" + ], + [ + "▁sh", + "own" + ], + [ + "gro", + "und" + ], + [ + "gr", + "ound" + ], + [ + "g", + "round" + ], + [ + "▁West", + "ern" + ], + [ + "▁Wes", + "tern" + ], + [ + "▁W", + "estern" + ], + [ + "▁199", + "9" + ], + [ + "▁19", + "99" + ], + [ + "▁dist", + "rib" + ], + [ + "inc", + "t" + ], + [ + "in", + "ct" + ], + [ + "hea", + "st" + ], + [ + "he", + "ast" + ], + [ + "▁cy", + "cl" + ], + [ + "▁c", + "ycl" + ], + [ + "▁", + "cycl" + ], + [ + "▁San", + "t" + ], + [ + "▁Sa", + "nt" + ], + [ + "▁S", + "ant" + ], + [ + "▁summ", + "er" + ], + [ + "▁sum", + "mer" + ], + [ + "▁s", + "ummer" + ], + [ + "▁ste", + "p" + ], + [ + "▁st", + "ep" + ], + [ + "▁", + "step" + ], + [ + "ani", + "sh" + ], + [ + "an", + "ish" + ], + [ + "▁friend", + "s" + ], + [ + "▁influ", + "ence" + ], + [ + "ga", + "r" + ], + [ + "g", + "ar" + ], + [ + "▁Sin", + "ce" + ], + [ + "▁Si", + "nce" + ], + [ + "▁S", + "ince" + ], + [ + "il", + "s" + ], + [ + "i", + "ls" + ], + [ + "▁U", + "p" + ], + [ + "▁Pol", + "it" + ], + [ + "▁P", + "olit" + ], + [ + "ant", + "ry" + ], + [ + "an", + "try" + ], + [ + "▁wh", + "y" + ], + [ + "▁w", + "hy" + ], + [ + "▁Mc", + "C" + ], + [ + "▁201", + "6" + ], + [ + "▁20", + "16" + ], + [ + "▁near", + "ly" + ], + [ + "▁Cou", + "n" + ], + [ + "▁Co", + "un" + ], + [ + "▁C", + "oun" + ], + [ + "▁const", + "ruct" + ], + [ + "▁st", + "ay" + ], + [ + "ience", + "s" + ], + [ + "ien", + "ces" + ], + [ + "i", + "ences" + ], + [ + "▁m", + "ph" + ], + [ + "▁", + "mph" + ], + [ + "▁Fran", + "k" + ], + [ + "▁Fr", + "ank" + ], + [ + "▁F", + "rank" + ], + [ + "alle", + "d" + ], + [ + "all", + "ed" + ], + [ + "al", + "led" + ], + [ + "a", + "lled" + ], + [ + "▁appro", + "x" + ], + [ + "▁app", + "rox" + ], + [ + "end", + "er" + ], + [ + "en", + "der" + ], + [ + "▁King", + "dom" + ], + [ + "mo", + "n" + ], + [ + "m", + "on" + ], + [ + "▁estab", + "lish" + ], + [ + "▁est", + "ablish" + ], + [ + "▁Chin", + "a" + ], + [ + "▁Chi", + "na" + ], + [ + "▁Ch", + "ina" + ], + [ + "ti", + "es" + ], + [ + "t", + "ies" + ], + [ + "▁introduce", + "d" + ], + [ + "▁introdu", + "ced" + ], + [ + "▁int", + "roduced" + ], + [ + "▁techn", + "ology" + ], + [ + "▁sy", + "n" + ], + [ + "▁s", + "yn" + ], + [ + "▁d", + "ark" + ], + [ + "▁Colle", + "ge" + ], + [ + "ument", + "s" + ], + [ + "umen", + "ts" + ], + [ + "um", + "ents" + ], + [ + "u", + "ments" + ], + [ + "ber", + "g" + ], + [ + "b", + "erg" + ], + [ + "▁plant", + "s" + ], + [ + "▁plan", + "ts" + ], + [ + "▁pl", + "ants" + ], + [ + "▁sur", + "round" + ], + [ + "▁Compan", + "y" + ], + [ + "▁Comp", + "any" + ], + [ + "arte", + "r" + ], + [ + "art", + "er" + ], + [ + "ar", + "ter" + ], + [ + "▁vis", + "it" + ], + [ + "▁Nav", + "y" + ], + [ + "▁Na", + "vy" + ], + [ + "▁N", + "avy" + ], + [ + "▁fem", + "ale" + ], + [ + "▁ju", + "d" + ], + [ + "▁j", + "ud" + ], + [ + "▁", + "jud" + ], + [ + "ident", + "s" + ], + [ + "iden", + "ts" + ], + [ + "id", + "ents" + ], + [ + "▁ad", + "apt" + ], + [ + "▁capita", + "l" + ], + [ + "▁capit", + "al" + ], + [ + "▁cap", + "ital" + ], + [ + "ect", + "s" + ], + [ + "ec", + "ts" + ], + [ + "▁Roc", + "k" + ], + [ + "▁Ro", + "ck" + ], + [ + "▁R", + "ock" + ], + [ + "▁actual", + "ly" + ], + [ + "▁act", + "ually" + ], + [ + "▁cel", + "l" + ], + [ + "▁ce", + "ll" + ], + [ + "▁c", + "ell" + ], + [ + "▁", + "cell" + ], + [ + "▁who", + "m" + ], + [ + "▁wh", + "om" + ], + [ + "▁econom", + "ic" + ], + [ + "▁ec", + "onomic" + ], + [ + "▁", + "economic" + ], + [ + "▁dat", + "e" + ], + [ + "▁da", + "te" + ], + [ + "▁d", + "ate" + ], + [ + "▁desp", + "ite" + ], + [ + "▁O", + "ver" + ], + [ + "le", + "g" + ], + [ + "l", + "eg" + ], + [ + "▁nom", + "in" + ], + [ + "▁no", + "min" + ], + [ + "▁n", + "omin" + ], + [ + "▁Pete", + "r" + ], + [ + "▁Pet", + "er" + ], + [ + "▁Pe", + "ter" + ], + [ + "▁P", + "eter" + ], + [ + "ea", + "l" + ], + [ + "e", + "al" + ], + [ + "▁over", + "all" + ], + [ + "▁inter", + "view" + ], + [ + "▁opp", + "ortun" + ], + [ + "▁stand", + "ard" + ], + [ + "▁9", + "0" + ], + [ + "▁", + "90" + ], + [ + "▁ac", + "qu" + ], + [ + "▁animal", + "s" + ], + [ + "▁anim", + "als" + ], + [ + "k", + "n" + ], + [ + "▁car", + "ried" + ], + [ + "uc", + "le" + ], + [ + "u", + "cle" + ], + [ + "ines", + "e" + ], + [ + "ine", + "se" + ], + [ + "in", + "ese" + ], + [ + "▁ro", + "om" + ], + [ + "▁r", + "oom" + ], + [ + "▁", + "room" + ], + [ + "▁Lon", + "g" + ], + [ + "▁Lo", + "ng" + ], + [ + "▁L", + "ong" + ], + [ + "▁cont", + "act" + ], + [ + "▁fin", + "anc" + ], + [ + "▁val", + "ue" + ], + [ + "ran", + "ch" + ], + [ + "oba", + "l" + ], + [ + "ob", + "al" + ], + [ + "o", + "bal" + ], + [ + "▁order", + "ed" + ], + [ + "▁ord", + "ered" + ], + [ + "▁pap", + "er" + ], + [ + "▁pa", + "per" + ], + [ + "▁p", + "aper" + ], + [ + "▁rive", + "r" + ], + [ + "▁riv", + "er" + ], + [ + "▁ri", + "ver" + ], + [ + "▁r", + "iver" + ], + [ + "▁pre", + "c" + ], + [ + "▁pr", + "ec" + ], + [ + "▁p", + "rec" + ], + [ + "▁take", + "s" + ], + [ + "▁ta", + "kes" + ], + [ + "▁t", + "akes" + ], + [ + "▁ch", + "o" + ], + [ + "▁c", + "ho" + ], + [ + "▁", + "cho" + ], + [ + "able", + "s" + ], + [ + "abl", + "es" + ], + [ + "ab", + "les" + ], + [ + "▁cons", + "um" + ], + [ + "▁subs", + "t" + ], + [ + "▁sub", + "st" + ], + [ + "▁de", + "n" + ], + [ + "▁d", + "en" + ], + [ + "▁", + "den" + ], + [ + "▁198", + "0" + ], + [ + "▁19", + "80" + ], + [ + "ma", + "r" + ], + [ + "m", + "ar" + ], + [ + "▁commer", + "cial" + ], + [ + "▁fail", + "ed" + ], + [ + "▁fa", + "iled" + ], + [ + "▁f", + "ailed" + ], + [ + "▁estimate", + "d" + ], + [ + "▁estim", + "ated" + ], + [ + "▁est", + "imated" + ], + [ + "ed", + "y" + ], + [ + "e", + "dy" + ], + [ + "▁grow", + "th" + ], + [ + "▁", + "°" + ], + [ + "mitt", + "ed" + ], + [ + "mit", + "ted" + ], + [ + "m", + "itted" + ], + [ + "▁sign", + "ed" + ], + [ + "▁s", + "igned" + ], + [ + "ur", + "t" + ], + [ + "▁high", + "way" + ], + [ + "▁De", + "m" + ], + [ + "▁D", + "em" + ], + [ + "▁Mus", + "ic" + ], + [ + "▁M", + "usic" + ], + [ + "▁", + "Music" + ], + [ + "oc", + "r" + ], + [ + "o", + "cr" + ], + [ + "▁To", + "m" + ], + [ + "▁T", + "om" + ], + [ + "▁appro", + "ach" + ], + [ + "▁197", + "0" + ], + [ + "▁19", + "70" + ], + [ + "▁dr", + "o" + ], + [ + "▁d", + "ro" + ], + [ + "▁nin", + "e" + ], + [ + "▁ni", + "ne" + ], + [ + "▁n", + "ine" + ], + [ + "▁remain", + "s" + ], + [ + "▁rem", + "ains" + ], + [ + "▁ul", + "t" + ], + [ + "▁", + "ult" + ], + [ + "▁tri", + "b" + ], + [ + "▁tr", + "ib" + ], + [ + "▁t", + "rib" + ], + [ + "ie", + "ce" + ], + [ + "ed", + "ing" + ], + [ + "e", + "ding" + ], + [ + "ulation", + "s" + ], + [ + "ul", + "ations" + ], + [ + "▁activ", + "ities" + ], + [ + "▁act", + "ivities" + ], + [ + "▁sa", + "l" + ], + [ + "▁s", + "al" + ], + [ + "▁becom", + "ing" + ], + [ + "▁bec", + "oming" + ], + [ + "▁be", + "coming" + ], + [ + "▁de", + "ad" + ], + [ + "▁d", + "ead" + ], + [ + "▁type", + "s" + ], + [ + "▁typ", + "es" + ], + [ + "▁ty", + "pes" + ], + [ + "ò", + "l" + ], + [ + "▁Gol", + "d" + ], + [ + "▁Go", + "ld" + ], + [ + "▁G", + "old" + ], + [ + "▁", + "i" + ], + [ + "ra", + "b" + ], + [ + "r", + "ab" + ], + [ + "▁d", + "u" + ], + [ + "▁", + "du" + ], + [ + "▁Cent", + "er" + ], + [ + "▁C", + "enter" + ], + [ + "▁st", + "aff" + ], + [ + "▁", + "staff" + ], + [ + "▁No", + "t" + ], + [ + "▁N", + "ot" + ], + [ + "h", + "y" + ], + [ + "▁att", + "ention" + ], + [ + "▁for", + "t" + ], + [ + "▁f", + "ort" + ], + [ + "▁", + "fort" + ], + [ + "▁colle", + "ct" + ], + [ + "▁coll", + "ect" + ], + [ + "▁col", + "lect" + ], + [ + "▁Ha", + "m" + ], + [ + "▁H", + "am" + ], + [ + "▁flo", + "od" + ], + [ + "▁fl", + "ood" + ], + [ + "▁Le", + "s" + ], + [ + "▁L", + "es" + ], + [ + "▁Chin", + "ese" + ], + [ + "▁Ch", + "inese" + ], + [ + "▁Gam", + "e" + ], + [ + "▁Ga", + "me" + ], + [ + "▁G", + "ame" + ], + [ + "▁8", + "0" + ], + [ + "▁", + "80" + ], + [ + "▁radi", + "o" + ], + [ + "▁rad", + "io" + ], + [ + "▁pur", + "ch" + ], + [ + "▁p", + "urch" + ], + [ + "l", + "o" + ], + [ + "▁199", + "8" + ], + [ + "▁19", + "98" + ], + [ + "chang", + "e" + ], + [ + "chan", + "ge" + ], + [ + "ch", + "ange" + ], + [ + "▁Cu", + "p" + ], + [ + "▁C", + "up" + ], + [ + "▁min", + "or" + ], + [ + "▁mi", + "nor" + ], + [ + "▁medic", + "al" + ], + [ + "▁medi", + "cal" + ], + [ + "▁med", + "ical" + ], + [ + "▁dr", + "ug" + ], + [ + "▁d", + "rug" + ], + [ + "▁an", + "g" + ], + [ + "▁a", + "ng" + ], + [ + "▁", + "ang" + ], + [ + "▁Sa", + "l" + ], + [ + "▁S", + "al" + ], + [ + "ande", + "d" + ], + [ + "and", + "ed" + ], + [ + "an", + "ded" + ], + [ + "▁g", + "e" + ], + [ + "▁", + "ge" + ], + [ + "por", + "ary" + ], + [ + "po", + "rary" + ], + [ + "se", + "c" + ], + [ + "s", + "ec" + ], + [ + "k", + "i" + ], + [ + "▁w", + "oman" + ], + [ + "▁", + "woman" + ], + [ + "▁alter", + "n" + ], + [ + "▁alt", + "ern" + ], + [ + "▁al", + "tern" + ], + [ + "ess", + "ion" + ], + [ + "▁Afric", + "a" + ], + [ + "li", + "ke" + ], + [ + "l", + "ike" + ], + [ + "▁Brit", + "ain" + ], + [ + "▁Bri", + "tain" + ], + [ + "hol", + "d" + ], + [ + "ho", + "ld" + ], + [ + "h", + "old" + ], + [ + "▁priv", + "ate" + ], + [ + "▁number", + "s" + ], + [ + "▁num", + "bers" + ], + [ + "▁n", + "umbers" + ], + [ + "▁mean", + "ing" + ], + [ + "▁me", + "aning" + ], + [ + "▁Je", + "an" + ], + [ + "▁J", + "ean" + ], + [ + "▁Gran", + "d" + ], + [ + "▁Gra", + "nd" + ], + [ + "▁Gr", + "and" + ], + [ + "▁G", + "rand" + ], + [ + "ent", + "h" + ], + [ + "en", + "th" + ], + [ + "▁Lou", + "is" + ], + [ + "▁Lo", + "uis" + ], + [ + "1", + "2" + ], + [ + "jo", + "y" + ], + [ + "j", + "oy" + ], + [ + "oria", + "l" + ], + [ + "ori", + "al" + ], + [ + "or", + "ial" + ], + [ + "o", + "rial" + ], + [ + "et", + "y" + ], + [ + "e", + "ty" + ], + [ + "ide", + "r" + ], + [ + "id", + "er" + ], + [ + "i", + "der" + ], + [ + "▁stud", + "io" + ], + [ + "ce", + "an" + ], + [ + "c", + "ean" + ], + [ + "▁Time", + "s" + ], + [ + "▁Tim", + "es" + ], + [ + "▁Ti", + "mes" + ], + [ + "▁T", + "imes" + ], + [ + "▁wind", + "s" + ], + [ + "▁win", + "ds" + ], + [ + "ov", + "iet" + ], + [ + "▁Associ", + "ation" + ], + [ + "▁g", + "irl" + ], + [ + "▁", + "girl" + ], + [ + "▁pre", + "m" + ], + [ + "▁pr", + "em" + ], + [ + "▁p", + "rem" + ], + [ + "▁seri", + "ous" + ], + [ + "▁ser", + "ious" + ], + [ + "▁Su", + "n" + ], + [ + "▁S", + "un" + ], + [ + "A", + "S" + ], + [ + "▁school", + "s" + ], + [ + "▁sch", + "ools" + ], + [ + "itud", + "e" + ], + [ + "it", + "ude" + ], + [ + "▁west", + "ern" + ], + [ + "▁w", + "estern" + ], + [ + "▁", + "western" + ], + [ + "▁see", + "m" + ], + [ + "▁se", + "em" + ], + [ + "▁Gree", + "n" + ], + [ + "▁Gre", + "en" + ], + [ + "▁Gr", + "een" + ], + [ + "▁G", + "reen" + ], + [ + "▁avo", + "id" + ], + [ + "▁av", + "oid" + ], + [ + "▁Int", + "er" + ], + [ + "▁In", + "ter" + ], + [ + "▁run", + "ning" + ], + [ + "▁r", + "unning" + ], + [ + "ad", + "o" + ], + [ + "a", + "do" + ], + [ + "I", + "I" + ], + [ + "▁prim", + "ary" + ], + [ + "▁lin", + "k" + ], + [ + "▁l", + "ink" + ], + [ + "▁", + "link" + ], + [ + "▁praise", + "d" + ], + [ + "▁pra", + "ised" + ], + [ + "w", + "h" + ], + [ + "▁Pa", + "c" + ], + [ + "▁P", + "ac" + ], + [ + "osp", + "ital" + ], + [ + "g", + "a" + ], + [ + "▁An", + "other" + ], + [ + "▁h", + "urricane" + ], + [ + "tain", + "ed" + ], + [ + "ta", + "ined" + ], + [ + "t", + "ained" + ], + [ + "▁b", + "irth" + ], + [ + "▁", + "birth" + ], + [ + "▁Fl", + "or" + ], + [ + "▁F", + "lor" + ], + [ + "▁pre", + "p" + ], + [ + "▁pr", + "ep" + ], + [ + "▁p", + "rep" + ], + [ + "ep", + "h" + ], + [ + "e", + "ph" + ], + [ + "iv", + "ity" + ], + [ + "▁Hil", + "l" + ], + [ + "▁Hi", + "ll" + ], + [ + "▁H", + "ill" + ], + [ + "▁J", + "e" + ], + [ + "pl", + "y" + ], + [ + "p", + "ly" + ], + [ + "▁stud", + "ent" + ], + [ + "▁go", + "t" + ], + [ + "▁g", + "ot" + ], + [ + "▁tradition", + "al" + ], + [ + "pir", + "e" + ], + [ + "pi", + "re" + ], + [ + "p", + "ire" + ], + [ + "▁col", + "on" + ], + [ + "▁co", + "lon" + ], + [ + "▁c", + "olon" + ], + [ + "▁S", + "oviet" + ], + [ + "▁L", + "u" + ], + [ + "▁Vict", + "or" + ], + [ + "▁Vic", + "tor" + ], + [ + "▁Vi", + "ctor" + ], + [ + "en", + "a" + ], + [ + "e", + "na" + ], + [ + "▁car", + "ry" + ], + [ + "▁c", + "arry" + ], + [ + "▁direct", + "ed" + ], + [ + "▁dir", + "ected" + ], + [ + "▁Mon", + "t" + ], + [ + "▁Mo", + "nt" + ], + [ + "▁M", + "ont" + ], + [ + "uri", + "es" + ], + [ + "ur", + "ies" + ], + [ + "u", + "ries" + ], + [ + "ent", + "y" + ], + [ + "en", + "ty" + ], + [ + "▁change", + "d" + ], + [ + "▁chang", + "ed" + ], + [ + "iri", + "t" + ], + [ + "ir", + "it" + ], + [ + "i", + "rit" + ], + [ + "▁ti", + "m" + ], + [ + "▁t", + "im" + ], + [ + "ous", + "ly" + ], + [ + "ir", + "m" + ], + [ + "i", + "rm" + ], + [ + "▁parent", + "s" + ], + [ + "▁paren", + "ts" + ], + [ + "▁par", + "ents" + ], + [ + "▁p", + "arents" + ], + [ + "▁", + "parents" + ], + [ + "▁Sp", + "anish" + ], + [ + "▁pi", + "l" + ], + [ + "▁p", + "il" + ], + [ + "▁", + "pil" + ], + [ + "▁Tou", + "r" + ], + [ + "▁To", + "ur" + ], + [ + "▁T", + "our" + ], + [ + "▁way", + "s" + ], + [ + "▁wa", + "ys" + ], + [ + "▁w", + "ays" + ], + [ + "▁", + "ways" + ], + [ + "▁vari", + "ety" + ], + [ + "▁var", + "iety" + ], + [ + "▁Tex", + "as" + ], + [ + "ic", + "ro" + ], + [ + "▁3", + "6" + ], + [ + "▁", + "36" + ], + [ + "▁ad", + "op" + ], + [ + "▁terr", + "it" + ], + [ + "▁ter", + "rit" + ], + [ + "▁Champions", + "hip" + ], + [ + "▁Champion", + "ship" + ], + [ + "▁Ch", + "ampionship" + ], + [ + "▁Mil", + "l" + ], + [ + "▁Mi", + "ll" + ], + [ + "▁M", + "ill" + ], + [ + "▁mo", + "m" + ], + [ + "▁m", + "om" + ], + [ + "▁Ma", + "g" + ], + [ + "▁M", + "ag" + ], + [ + "▁tea", + "c" + ], + [ + "▁te", + "ac" + ], + [ + "▁critic", + "al" + ], + [ + "▁crit", + "ical" + ], + [ + "▁pat", + "h" + ], + [ + "▁pa", + "th" + ], + [ + "▁p", + "ath" + ], + [ + "▁", + "path" + ], + [ + "▁sc", + "ore" + ], + [ + "▁s", + "core" + ], + [ + "▁E", + "v" + ], + [ + "▁Mis", + "s" + ], + [ + "▁Mi", + "ss" + ], + [ + "▁M", + "iss" + ], + [ + "ede", + "r" + ], + [ + "ed", + "er" + ], + [ + "e", + "der" + ], + [ + "▁cel", + "e" + ], + [ + "▁ce", + "le" + ], + [ + "▁c", + "ele" + ], + [ + "▁activ", + "e" + ], + [ + "▁act", + "ive" + ], + [ + "▁a", + "ctive" + ], + [ + "▁", + "active" + ], + [ + "▁Ser", + "v" + ], + [ + "▁S", + "erv" + ], + [ + "stit", + "ute" + ], + [ + "▁conf", + "l" + ], + [ + "▁con", + "fl" + ], + [ + "rat", + "e" + ], + [ + "ra", + "te" + ], + [ + "r", + "ate" + ], + [ + "▁fore", + "st" + ], + [ + "▁for", + "est" + ], + [ + "▁fo", + "rest" + ], + [ + "▁", + "forest" + ], + [ + "▁Con", + "s" + ], + [ + "▁Co", + "ns" + ], + [ + "▁C", + "ons" + ], + [ + "▁fav", + "or" + ], + [ + "▁fa", + "vor" + ], + [ + "▁f", + "avor" + ], + [ + "emi", + "c" + ], + [ + "em", + "ic" + ], + [ + "e", + "mic" + ], + [ + "▁ba", + "d" + ], + [ + "▁b", + "ad" + ], + [ + "▁Po", + "p" + ], + [ + "▁P", + "op" + ], + [ + "▁blo", + "ck" + ], + [ + "▁bl", + "ock" + ], + [ + "▁b", + "lock" + ], + [ + "▁ho", + "p" + ], + [ + "▁h", + "op" + ], + [ + "▁", + "hop" + ], + [ + "▁dis", + "s" + ], + [ + "▁di", + "ss" + ], + [ + "▁d", + "iss" + ], + [ + "▁br", + "ief" + ], + [ + "▁b", + "rief" + ], + [ + "▁Un", + "der" + ], + [ + "▁claim", + "ed" + ], + [ + "▁", + "claimed" + ], + [ + "▁arrive", + "d" + ], + [ + "▁arr", + "ived" + ], + [ + "▁know", + "ledge" + ], + [ + "i", + "y" + ], + [ + "▁M", + "r" + ], + [ + "▁I", + "r" + ], + [ + "ian", + "t" + ], + [ + "ia", + "nt" + ], + [ + "i", + "ant" + ], + [ + "▁Fr", + "e" + ], + [ + "▁F", + "re" + ], + [ + "▁book", + "s" + ], + [ + "▁b", + "ooks" + ], + [ + "▁", + "books" + ], + [ + "ome", + "r" + ], + [ + "om", + "er" + ], + [ + "o", + "mer" + ], + [ + "▁loc", + "ation" + ], + [ + "▁l", + "ocation" + ], + [ + "▁cann", + "ot" + ], + [ + "▁can", + "not" + ], + [ + "▁film", + "s" + ], + [ + "▁fil", + "ms" + ], + [ + "▁Be", + "c" + ], + [ + "▁B", + "ec" + ], + [ + "▁contain", + "s" + ], + [ + "▁cont", + "ains" + ], + [ + "▁con", + "tains" + ], + [ + "ui", + "ng" + ], + [ + "u", + "ing" + ], + [ + "▁fi", + "t" + ], + [ + "▁f", + "it" + ], + [ + "▁", + "fit" + ], + [ + "▁continu", + "e" + ], + [ + "▁contin", + "ue" + ], + [ + "▁vi", + "a" + ], + [ + "▁v", + "ia" + ], + [ + "▁", + "via" + ], + [ + "▁soc", + "iety" + ], + [ + "agi", + "ng" + ], + [ + "ag", + "ing" + ], + [ + "a", + "ging" + ], + [ + "▁M", + "a" + ], + [ + "▁suggest", + "ed" + ], + [ + "▁gre", + "en" + ], + [ + "▁gr", + "een" + ], + [ + "▁g", + "reen" + ], + [ + "▁", + "green" + ], + [ + "▁need", + "s" + ], + [ + "▁ne", + "eds" + ], + [ + "um", + "n" + ], + [ + "u", + "mn" + ], + [ + "iri", + "ng" + ], + [ + "ir", + "ing" + ], + [ + "i", + "ring" + ], + [ + "fe", + "ct" + ], + [ + "f", + "ect" + ], + [ + "an", + "m" + ], + [ + "▁", + "£" + ], + [ + "▁cu", + "st" + ], + [ + "▁c", + "ust" + ], + [ + "▁un", + "c" + ], + [ + "▁", + "unc" + ], + [ + "▁come", + "s" + ], + [ + "▁com", + "es" + ], + [ + "▁co", + "mes" + ], + [ + "▁c", + "omes" + ], + [ + "▁", + "comes" + ], + [ + "▁polic", + "e" + ], + [ + "▁pol", + "ice" + ], + [ + "▁artic", + "le" + ], + [ + "▁art", + "icle" + ], + [ + "▁great", + "er" + ], + [ + "▁gre", + "ater" + ], + [ + "▁le", + "ave" + ], + [ + "im", + "s" + ], + [ + "i", + "ms" + ], + [ + "▁form", + "s" + ], + [ + "▁for", + "ms" + ], + [ + "▁f", + "orms" + ], + [ + "▁for", + "ward" + ], + [ + "▁", + "forward" + ], + [ + "▁ve", + "h" + ], + [ + "▁ho", + "t" + ], + [ + "▁h", + "ot" + ], + [ + "▁", + "hot" + ], + [ + "▁Coun", + "cil" + ], + [ + "▁La", + "w" + ], + [ + "▁L", + "aw" + ], + [ + "▁bra", + "in" + ], + [ + "▁br", + "ain" + ], + [ + "▁b", + "rain" + ], + [ + "lia", + "m" + ], + [ + "li", + "am" + ], + [ + "l", + "iam" + ], + [ + "1", + "8" + ], + [ + "▁use", + "s" + ], + [ + "▁us", + "es" + ], + [ + "▁u", + "ses" + ], + [ + "▁", + "uses" + ], + [ + "▁br", + "idge" + ], + [ + "▁b", + "ridge" + ], + [ + "▁", + "bridge" + ], + [ + "▁D", + "u" + ], + [ + "▁N", + "Y" + ], + [ + "▁(1", + "9" + ], + [ + "▁(", + "19" + ], + [ + "▁De", + "l" + ], + [ + "▁D", + "el" + ], + [ + "▁profession", + "al" + ], + [ + "▁profess", + "ional" + ], + [ + "▁effect", + "ive" + ], + [ + "▁eff", + "ective" + ], + [ + "▁", + "effective" + ], + [ + "▁rece", + "nt" + ], + [ + "▁rec", + "ent" + ], + [ + "▁re", + "cent" + ], + [ + "▁inst", + "r" + ], + [ + "▁ins", + "tr" + ], + [ + "▁in", + "str" + ], + [ + "ami", + "n" + ], + [ + "am", + "in" + ], + [ + "a", + "min" + ], + [ + "▁admin", + "ist" + ], + [ + "▁ad", + "minist" + ], + [ + "▁199", + "7" + ], + [ + "▁19", + "97" + ], + [ + "▁Fran", + "c" + ], + [ + "▁Fr", + "anc" + ], + [ + "ou", + "l" + ], + [ + "o", + "ul" + ], + [ + "▁help", + "ed" + ], + [ + "▁hel", + "ped" + ], + [ + "▁remain", + "ing" + ], + [ + "▁rem", + "aining" + ], + [ + "▁propose", + "d" + ], + [ + "▁propos", + "ed" + ], + [ + "▁prop", + "osed" + ], + [ + "und", + "red" + ], + [ + "iga", + "n" + ], + [ + "ig", + "an" + ], + [ + "i", + "gan" + ], + [ + "▁intend", + "ed" + ], + [ + "▁int", + "ended" + ], + [ + "ast", + "ic" + ], + [ + "as", + "tic" + ], + [ + "a", + "stic" + ], + [ + "▁approximate", + "ly" + ], + [ + "▁approx", + "imately" + ], + [ + "▁app", + "roximately" + ], + [ + "▁en", + "joy" + ], + [ + "▁Chi", + "c" + ], + [ + "▁Ch", + "ic" + ], + [ + "▁pl", + "e" + ], + [ + "▁p", + "le" + ], + [ + "▁", + "ple" + ], + [ + "▁me", + "chan" + ], + [ + "ali", + "on" + ], + [ + "al", + "ion" + ], + [ + "▁review", + "s" + ], + [ + "der", + "s" + ], + [ + "de", + "rs" + ], + [ + "d", + "ers" + ], + [ + "▁foot", + "ball" + ], + [ + "ot", + "i" + ], + [ + "o", + "ti" + ], + [ + "▁cond", + "ition" + ], + [ + "▁con", + "dition" + ], + [ + "▁c", + "ondition" + ], + [ + "▁", + "ː" + ], + [ + "▁lat", + "ter" + ], + [ + "▁l", + "atter" + ], + [ + "vent", + "ion" + ], + [ + "v", + "ention" + ], + [ + "▁ki", + "l" + ], + [ + "▁k", + "il" + ], + [ + "rem", + "e" + ], + [ + "re", + "me" + ], + [ + "▁Tran", + "s" + ], + [ + "▁Tra", + "ns" + ], + [ + "▁Tr", + "ans" + ], + [ + "▁T", + "rans" + ], + [ + "▁ga", + "s" + ], + [ + "▁g", + "as" + ], + [ + "▁", + "gas" + ], + [ + "ee", + "s" + ], + [ + "e", + "es" + ], + [ + "▁he", + "av" + ], + [ + "▁east", + "ern" + ], + [ + "▁eas", + "tern" + ], + [ + "▁e", + "astern" + ], + [ + "ca", + "n" + ], + [ + "c", + "an" + ], + [ + "liam", + "ent" + ], + [ + "lia", + "ment" + ], + [ + "li", + "ament" + ], + [ + "▁major", + "ity" + ], + [ + "▁nat", + "ion" + ], + [ + "▁n", + "ation" + ], + [ + "▁", + "nation" + ], + [ + "▁sens", + "e" + ], + [ + "▁sen", + "se" + ], + [ + "▁s", + "ense" + ], + [ + "augh", + "t" + ], + [ + "aug", + "ht" + ], + [ + "au", + "ght" + ], + [ + "a", + "ught" + ], + [ + "▁196", + "0" + ], + [ + "▁19", + "60" + ], + [ + "▁support", + "ed" + ], + [ + "▁supp", + "orted" + ], + [ + "▁sup", + "ported" + ], + [ + "▁record", + "ing" + ], + [ + "▁rec", + "ording" + ], + [ + "▁high", + "ly" + ], + [ + "▁res", + "ist" + ], + [ + "▁cont", + "ent" + ], + [ + "▁Aw", + "ard" + ], + [ + "▁A", + "ward" + ], + [ + "▁Lo", + "s" + ], + [ + "▁L", + "os" + ], + [ + "▁pri", + "son" + ], + [ + "▁pr", + "ison" + ], + [ + "▁p", + "rison" + ], + [ + "oven", + "s" + ], + [ + "ove", + "ns" + ], + [ + "ov", + "ens" + ], + [ + "o", + "vens" + ], + [ + "▁tal", + "k" + ], + [ + "▁t", + "alk" + ], + [ + "▁4", + "5" + ], + [ + "▁", + "45" + ], + [ + "▁canc", + "er" + ], + [ + "▁can", + "cer" + ], + [ + "▁c", + "ancer" + ], + [ + "▁doc", + "ument" + ], + [ + "▁Te", + "r" + ], + [ + "▁T", + "er" + ], + [ + "▁Virgin", + "ia" + ], + [ + "▁re", + "ach" + ], + [ + "▁", + "reach" + ], + [ + "▁direct", + "ly" + ], + [ + "▁stat", + "us" + ], + [ + "▁st", + "atus" + ], + [ + "st", + "e" + ], + [ + "s", + "te" + ], + [ + "▁le", + "aving" + ], + [ + "▁3", + "2" + ], + [ + "▁", + "32" + ], + [ + "ict", + "ed" + ], + [ + "ic", + "ted" + ], + [ + "▁sc", + "h" + ], + [ + "▁s", + "ch" + ], + [ + "▁", + "sch" + ], + [ + "ici", + "ent" + ], + [ + "ic", + "ient" + ], + [ + "i", + "cient" + ], + [ + "ne", + "l" + ], + [ + "n", + "el" + ], + [ + "▁most", + "ly" + ], + [ + "▁pri", + "nt" + ], + [ + "▁pr", + "int" + ], + [ + "▁", + "print" + ], + [ + "▁7", + "0" + ], + [ + "▁", + "70" + ], + [ + "▁18", + "4" + ], + [ + "▁discover", + "ed" + ], + [ + "▁disc", + "overed" + ], + [ + "▁immediate", + "ly" + ], + [ + "▁immedi", + "ately" + ], + [ + "▁elect", + "ion" + ], + [ + "▁ele", + "ction" + ], + [ + "▁el", + "ection" + ], + [ + "▁e", + "lection" + ], + [ + "▁weigh", + "t" + ], + [ + "▁we", + "ight" + ], + [ + "▁", + "weight" + ], + [ + "lig", + "ht" + ], + [ + "li", + "ght" + ], + [ + "l", + "ight" + ], + [ + "▁operation", + "s" + ], + [ + "▁oper", + "ations" + ], + [ + "▁Sec", + "ond" + ], + [ + "▁Lor", + "d" + ], + [ + "▁Lo", + "rd" + ], + [ + "▁L", + "ord" + ], + [ + "ptom", + "s" + ], + [ + "pt", + "oms" + ], + [ + "hest", + "er" + ], + [ + "hes", + "ter" + ], + [ + "he", + "ster" + ], + [ + "h", + "ester" + ], + [ + "▁Cas", + "t" + ], + [ + "▁Ca", + "st" + ], + [ + "▁C", + "ast" + ], + [ + "▁pat", + "tern" + ], + [ + "▁bo", + "ard" + ], + [ + "▁b", + "oard" + ], + [ + "▁", + "board" + ], + [ + "▁mat", + "ter" + ], + [ + "▁m", + "atter" + ], + [ + "1", + "1" + ], + [ + "▁Africa", + "n" + ], + [ + "▁Afric", + "an" + ], + [ + "▁con", + "clud" + ], + [ + "▁bo", + "w" + ], + [ + "▁b", + "ow" + ], + [ + "▁", + "bow" + ], + [ + "▁trad", + "e" + ], + [ + "▁tra", + "de" + ], + [ + "▁tr", + "ade" + ], + [ + "▁tru", + "e" + ], + [ + "▁tr", + "ue" + ], + [ + "▁t", + "rue" + ], + [ + "▁Cong", + "ress" + ], + [ + "▁Con", + "gress" + ], + [ + "▁dom", + "in" + ], + [ + "▁do", + "min" + ], + [ + "▁d", + "omin" + ], + [ + "▁Bu", + "r" + ], + [ + "▁B", + "ur" + ], + [ + "▁star", + "s" + ], + [ + "▁st", + "ars" + ], + [ + "▁demons", + "t" + ], + [ + "▁demon", + "st" + ], + [ + "▁dem", + "onst" + ], + [ + "▁music", + "al" + ], + [ + "▁mus", + "ical" + ], + [ + "▁rap", + "id" + ], + [ + "▁small", + "er" + ], + [ + "▁rou", + "t" + ], + [ + "▁ro", + "ut" + ], + [ + "▁r", + "out" + ], + [ + "▁inte", + "ns" + ], + [ + "▁int", + "ens" + ], + [ + "ug", + "e" + ], + [ + "u", + "ge" + ], + [ + "▁Ho", + "t" + ], + [ + "▁H", + "ot" + ], + [ + "▁se", + "n" + ], + [ + "▁s", + "en" + ], + [ + "▁", + "sen" + ], + [ + "▁building", + "s" + ], + [ + "▁build", + "ings" + ], + [ + "▁For", + "ce" + ], + [ + "▁prot", + "e" + ], + [ + "▁pro", + "te" + ], + [ + "▁pr", + "ote" + ], + [ + "▁p", + "rote" + ], + [ + "▁ins", + "ide" + ], + [ + "▁in", + "side" + ], + [ + "▁mes", + "s" + ], + [ + "▁me", + "ss" + ], + [ + "▁m", + "ess" + ], + [ + "▁M", + "o" + ], + [ + "▁arr", + "ang" + ], + [ + "▁ar", + "rang" + ], + [ + "▁bo", + "y" + ], + [ + "▁b", + "oy" + ], + [ + "▁", + "boy" + ], + [ + "lee", + "p" + ], + [ + "le", + "ep" + ], + [ + "▁Pr", + "i" + ], + [ + "▁P", + "ri" + ], + [ + "ip", + "s" + ], + [ + "i", + "ps" + ], + [ + "ip", + "l" + ], + [ + "i", + "pl" + ], + [ + "▁appear", + "s" + ], + [ + "▁appe", + "ars" + ], + [ + "▁app", + "ears" + ], + [ + "uf", + "act" + ], + [ + "u", + "fact" + ], + [ + "▁plan", + "s" + ], + [ + "▁pl", + "ans" + ], + [ + "▁ment", + "ion" + ], + [ + "▁m", + "ention" + ], + [ + "▁expect", + "ed" + ], + [ + "▁exp", + "ected" + ], + [ + "▁", + "expected" + ], + [ + "▁spr", + "ead" + ], + [ + "▁sp", + "read" + ], + [ + "▁relig", + "ious" + ], + [ + "▁rel", + "igious" + ], + [ + "_", + "_" + ], + [ + "▁Bot", + "h" + ], + [ + "▁Bo", + "th" + ], + [ + "▁B", + "oth" + ], + [ + "▁goal", + "s" + ], + [ + "▁go", + "als" + ], + [ + "ll", + "ed" + ], + [ + "l", + "led" + ], + [ + "ey", + "i" + ], + [ + "▁cult", + "ure" + ], + [ + "▁cul", + "ture" + ], + [ + "▁c", + "ulture" + ], + [ + "▁enter", + "ed" + ], + [ + "▁ent", + "ered" + ], + [ + "▁en", + "tered" + ], + [ + "od", + "ies" + ], + [ + "ar", + "i" + ], + [ + "a", + "ri" + ], + [ + "ron", + "ic" + ], + [ + "ro", + "nic" + ], + [ + "r", + "onic" + ], + [ + "lo", + "r" + ], + [ + "l", + "or" + ], + [ + "▁Pr", + "e" + ], + [ + "▁P", + "re" + ], + [ + "▁Dep", + "artment" + ], + [ + "▁pol", + "l" + ], + [ + "▁po", + "ll" + ], + [ + "▁p", + "oll" + ], + [ + "▁Res", + "ear" + ], + [ + "▁individual", + "s" + ], + [ + "▁individ", + "uals" + ], + [ + "▁li", + "f" + ], + [ + "▁l", + "if" + ], + [ + "▁Di", + "s" + ], + [ + "▁D", + "is" + ], + [ + "▁Gr", + "a" + ], + [ + "▁G", + "ra" + ], + [ + "onn", + "a" + ], + [ + "on", + "na" + ], + [ + "▁destroy", + "ed" + ], + [ + "▁pwo", + "vens" + ], + [ + "▁pw", + "ovens" + ], + [ + "▁shar", + "e" + ], + [ + "▁sh", + "are" + ], + [ + "ke", + "n" + ], + [ + "k", + "en" + ], + [ + "▁Fi", + "n" + ], + [ + "▁F", + "in" + ], + [ + "▁initi", + "al" + ], + [ + "▁init", + "ial" + ], + [ + "omin", + "ote" + ], + [ + "omi", + "note" + ], + [ + "▁do", + "g" + ], + [ + "▁d", + "og" + ], + [ + "▁mov", + "ing" + ], + [ + "▁mo", + "ving" + ], + [ + "▁sh", + "oot" + ], + [ + "▁col", + "or" + ], + [ + "▁co", + "lor" + ], + [ + "▁c", + "olor" + ], + [ + "▁simpl", + "e" + ], + [ + "▁sim", + "ple" + ], + [ + "▁Car", + "ol" + ], + [ + "▁Ca", + "rol" + ], + [ + "▁lo", + "g" + ], + [ + "▁l", + "og" + ], + [ + "▁", + "log" + ], + [ + "▁necess", + "ary" + ], + [ + "▁remove", + "d" + ], + [ + "▁remov", + "ed" + ], + [ + "▁rem", + "oved" + ], + [ + "▁Ol", + "d" + ], + [ + "▁O", + "ld" + ], + [ + "4", + "." + ], + [ + "▁polic", + "y" + ], + [ + "▁pol", + "icy" + ], + [ + "▁dir", + "e" + ], + [ + "▁di", + "re" + ], + [ + "▁d", + "ire" + ], + [ + "▁Pe", + "t" + ], + [ + "▁P", + "et" + ], + [ + "▁fa", + "st" + ], + [ + "▁f", + "ast" + ], + [ + "▁", + "fast" + ], + [ + "▁O", + "l" + ], + [ + "▁", + "Ol" + ], + [ + "lie", + "d" + ], + [ + "li", + "ed" + ], + [ + "l", + "ied" + ], + [ + "▁Be", + "t" + ], + [ + "▁B", + "et" + ], + [ + "w", + "w" + ], + [ + "▁product", + "s" + ], + [ + "▁c", + "it" + ], + [ + "▁mid", + "dle" + ], + [ + "ille", + "d" + ], + [ + "ill", + "ed" + ], + [ + "il", + "led" + ], + [ + "i", + "lled" + ], + [ + "▁deb", + "ut" + ], + [ + "▁de", + "but" + ], + [ + "▁source", + "s" + ], + [ + "▁sour", + "ces" + ], + [ + "▁s", + "ources" + ], + [ + "▁set", + "t" + ], + [ + "▁se", + "tt" + ], + [ + "▁s", + "ett" + ], + [ + "▁manage", + "ment" + ], + [ + "▁manag", + "ement" + ], + [ + "▁man", + "agement" + ], + [ + "▁ear", + "th" + ], + [ + "▁e", + "arth" + ], + [ + "▁Rout", + "e" + ], + [ + "▁Rou", + "te" + ], + [ + "▁Ro", + "ute" + ], + [ + "▁R", + "oute" + ], + [ + "orp", + "s" + ], + [ + "or", + "ps" + ], + [ + "A", + "A" + ], + [ + "ric", + "s" + ], + [ + "ri", + "cs" + ], + [ + "r", + "ics" + ], + [ + "▁meas", + "ure" + ], + [ + "▁me", + "asure" + ], + [ + "▁write", + "r" + ], + [ + "▁writ", + "er" + ], + [ + "▁wr", + "iter" + ], + [ + "▁", + "writer" + ], + [ + "▁S", + "a" + ], + [ + "▁sus", + "t" + ], + [ + "▁su", + "st" + ], + [ + "▁s", + "ust" + ], + [ + "▁team", + "s" + ], + [ + "▁tea", + "ms" + ], + [ + "▁te", + "ams" + ], + [ + "▁mag", + "azine" + ], + [ + "ite", + "ct" + ], + [ + "it", + "ect" + ], + [ + "▁count", + "er" + ], + [ + "▁coun", + "ter" + ], + [ + "ol", + "k" + ], + [ + "▁K", + "h" + ], + [ + "▁web", + "s" + ], + [ + "▁we", + "bs" + ], + [ + "▁prom", + "ot" + ], + [ + "▁pr", + "omot" + ], + [ + "▁fl", + "u" + ], + [ + "▁f", + "lu" + ], + [ + "▁", + "flu" + ], + [ + "▁ha", + "r" + ], + [ + "▁h", + "ar" + ], + [ + "▁", + "har" + ], + [ + "▁redu", + "ce" + ], + [ + "▁red", + "uce" + ], + [ + "bi", + "t" + ], + [ + "b", + "it" + ], + [ + "▁d", + "aughter" + ], + [ + "▁18", + "5" + ], + [ + "▁1", + "85" + ], + [ + "▁Ca", + "m" + ], + [ + "▁C", + "am" + ], + [ + "▁Kor", + "e" + ], + [ + "▁Ko", + "re" + ], + [ + "▁K", + "ore" + ], + [ + "▁appoint", + "ed" + ], + [ + "▁app", + "ointed" + ], + [ + "ade", + "d" + ], + [ + "ad", + "ed" + ], + [ + "a", + "ded" + ], + [ + "▁compan", + "ies" + ], + [ + "▁conce", + "nt" + ], + [ + "▁conc", + "ent" + ], + [ + "▁con", + "cent" + ], + [ + "mi", + "r" + ], + [ + "m", + "ir" + ], + [ + "▁confl", + "ict" + ], + [ + "▁con", + "flict" + ], + [ + "rec", + "t" + ], + [ + "re", + "ct" + ], + [ + "r", + "ect" + ], + [ + "▁mar", + "ried" + ], + [ + "▁comm", + "ission" + ], + [ + "▁com", + "mission" + ], + [ + "aster", + "n" + ], + [ + "ast", + "ern" + ], + [ + "as", + "tern" + ], + [ + "▁nu", + "cle" + ], + [ + "▁n", + "ucle" + ], + [ + "▁Pac", + "ific" + ], + [ + "▁div", + "ision" + ], + [ + "▁multip", + "le" + ], + [ + "▁multi", + "ple" + ], + [ + "▁So", + "l" + ], + [ + "▁S", + "ol" + ], + [ + "▁so", + "ft" + ], + [ + "▁s", + "oft" + ], + [ + "▁", + "soft" + ], + [ + "▁provide", + "s" + ], + [ + "▁prov", + "ides" + ], + [ + "▁em", + "ot" + ], + [ + "▁sc", + "ript" + ], + [ + "▁s", + "cript" + ], + [ + "▁lead", + "er" + ], + [ + "▁le", + "ader" + ], + [ + "ve", + "ment" + ], + [ + "v", + "ement" + ], + [ + "▁const", + "it" + ], + [ + "▁con", + "stit" + ], + [ + "▁doi", + "ng" + ], + [ + "▁do", + "ing" + ], + [ + "▁un", + "ivers" + ], + [ + "▁numer", + "ous" + ], + [ + "▁num", + "erous" + ], + [ + "▁agree", + "d" + ], + [ + "▁agre", + "ed" + ], + [ + "▁199", + "5" + ], + [ + "▁19", + "95" + ], + [ + "▁R", + "o" + ], + [ + "r", + "d" + ], + [ + "▁miss", + "ion" + ], + [ + "▁m", + "ission" + ], + [ + "▁", + "mission" + ], + [ + "▁e", + "y" + ], + [ + "▁", + "ey" + ], + [ + "▁vo", + "ice" + ], + [ + "▁v", + "oice" + ], + [ + "▁pi", + "t" + ], + [ + "▁p", + "it" + ], + [ + "▁", + "pit" + ], + [ + "▁Chic", + "ago" + ], + [ + "▁ma", + "x" + ], + [ + "▁m", + "ax" + ], + [ + "▁Cr", + "o" + ], + [ + "▁C", + "ro" + ], + [ + "▁live", + "s" + ], + [ + "▁liv", + "es" + ], + [ + "▁li", + "ves" + ], + [ + "▁l", + "ives" + ], + [ + "▁electr", + "ic" + ], + [ + "▁elect", + "ric" + ], + [ + "▁e", + "lectric" + ], + [ + "▁bo", + "x" + ], + [ + "▁b", + "ox" + ], + [ + "▁", + "box" + ], + [ + "▁mag", + "n" + ], + [ + "▁ma", + "gn" + ], + [ + "▁m", + "agn" + ], + [ + "▁Re", + "v" + ], + [ + "▁R", + "ev" + ], + [ + "▁It", + "s" + ], + [ + "▁I", + "ts" + ], + [ + "▁(", + "2" + ], + [ + "ri", + "a" + ], + [ + "r", + "ia" + ], + [ + "▁Part", + "y" + ], + [ + "▁Par", + "ty" + ], + [ + "▁le", + "ague" + ], + [ + "▁It", + "al" + ], + [ + "▁I", + "tal" + ], + [ + "u", + "z" + ], + [ + "▁Me", + "r" + ], + [ + "▁M", + "er" + ], + [ + "upp", + "er" + ], + [ + "up", + "per" + ], + [ + "u", + "pper" + ], + [ + "▁str", + "a" + ], + [ + "▁st", + "ra" + ], + [ + "▁s", + "tra" + ], + [ + "▁we", + "ap" + ], + [ + "▁live", + "d" + ], + [ + "▁liv", + "ed" + ], + [ + "▁li", + "ved" + ], + [ + "▁l", + "ived" + ], + [ + "este", + "d" + ], + [ + "est", + "ed" + ], + [ + "es", + "ted" + ], + [ + "e", + "sted" + ], + [ + "▁sym", + "b" + ], + [ + "▁sy", + "mb" + ], + [ + "se", + "n" + ], + [ + "s", + "en" + ], + [ + "▁p", + "eyi" + ], + [ + "▁Tu", + "r" + ], + [ + "▁T", + "ur" + ], + [ + "▁un", + "s" + ], + [ + "▁u", + "ns" + ], + [ + "▁", + "uns" + ], + [ + "▁writ", + "e" + ], + [ + "▁wr", + "ite" + ], + [ + "▁w", + "rite" + ], + [ + "▁Jack", + "son" + ], + [ + "▁defeat", + "ed" + ], + [ + "▁defe", + "ated" + ], + [ + "▁de", + "feated" + ], + [ + "▁extr", + "a" + ], + [ + "▁ext", + "ra" + ], + [ + "▁ex", + "tra" + ], + [ + "▁analys", + "is" + ], + [ + "▁analy", + "sis" + ], + [ + "▁anal", + "ysis" + ], + [ + "▁an", + "alysis" + ], + [ + "▁inter", + "act" + ], + [ + "▁inte", + "ract" + ], + [ + "ec", + "h" + ], + [ + "e", + "ch" + ], + [ + "▁can", + "d" + ], + [ + "▁ca", + "nd" + ], + [ + "▁c", + "and" + ], + [ + "▁theor", + "y" + ], + [ + "▁the", + "ory" + ], + [ + "▁su", + "n" + ], + [ + "▁s", + "un" + ], + [ + "▁effort", + "s" + ], + [ + "▁eff", + "orts" + ], + [ + "▁leg", + "al" + ], + [ + "▁le", + "gal" + ], + [ + "▁Lak", + "e" + ], + [ + "▁La", + "ke" + ], + [ + "▁L", + "ake" + ], + [ + "▁comp", + "uter" + ], + [ + "▁sl", + "ight" + ], + [ + "▁s", + "light" + ], + [ + "ise", + "r" + ], + [ + "is", + "er" + ], + [ + "▁un", + "it" + ], + [ + "▁conn", + "ect" + ], + [ + "▁c", + "onnect" + ], + [ + "▁qu", + "al" + ], + [ + "▁q", + "ual" + ], + [ + "▁", + "qual" + ], + [ + "▁meet", + "ing" + ], + [ + "▁respons", + "ible" + ], + [ + "▁imag", + "e" + ], + [ + "▁im", + "age" + ], + [ + "▁th", + "ous" + ], + [ + "▁t", + "hous" + ], + [ + "▁ve", + "r" + ], + [ + "▁v", + "er" + ], + [ + "▁", + "ver" + ], + [ + "▁soldier", + "s" + ], + [ + "▁sold", + "iers" + ], + [ + "▁h", + "undred" + ], + [ + "▁In", + "f" + ], + [ + "ron", + "g" + ], + [ + "ro", + "ng" + ], + [ + "r", + "ong" + ], + [ + "it", + "a" + ], + [ + "i", + "ta" + ], + [ + "▁prog", + "ress" + ], + [ + "▁pro", + "gress" + ], + [ + "▁offer", + "ed" + ], + [ + "▁off", + "ered" + ], + [ + "oe", + "s" + ], + [ + "o", + "es" + ], + [ + "tee", + "n" + ], + [ + "te", + "en" + ], + [ + "t", + "een" + ], + [ + "▁g", + "iving" + ], + [ + "▁", + "giving" + ], + [ + "▁pic", + "t" + ], + [ + "▁pi", + "ct" + ], + [ + "▁p", + "ict" + ], + [ + "as", + "y" + ], + [ + "a", + "sy" + ], + [ + "ria", + "ge" + ], + [ + "ri", + "age" + ], + [ + "▁depress", + "ion" + ], + [ + "▁depr", + "ession" + ], + [ + "▁dep", + "ression" + ], + [ + "ima", + "l" + ], + [ + "im", + "al" + ], + [ + "i", + "mal" + ], + [ + "ric", + "ult" + ], + [ + "▁va", + "c" + ], + [ + "▁v", + "ac" + ], + [ + "▁eff", + "ort" + ], + [ + "▁fel", + "l" + ], + [ + "▁fe", + "ll" + ], + [ + "▁f", + "ell" + ], + [ + "▁ra", + "re" + ], + [ + "▁r", + "are" + ], + [ + "os", + "is" + ], + [ + "o", + "sis" + ], + [ + "▁name", + "s" + ], + [ + "▁nam", + "es" + ], + [ + "▁na", + "mes" + ], + [ + "▁n", + "ames" + ], + [ + "▁", + "names" + ], + [ + "▁financ", + "ial" + ], + [ + "▁fin", + "ancial" + ], + [ + "▁Bec", + "ause" + ], + [ + "ly", + "mp" + ], + [ + "▁refer", + "red" + ], + [ + "ies", + "t" + ], + [ + "ie", + "st" + ], + [ + "i", + "est" + ], + [ + "▁capture", + "d" + ], + [ + "▁capt", + "ured" + ], + [ + "we", + "ll" + ], + [ + "w", + "ell" + ], + [ + "▁displ", + "ay" + ], + [ + "▁disp", + "lay" + ], + [ + "▁dis", + "play" + ], + [ + "▁Of", + "f" + ], + [ + "▁O", + "ff" + ], + [ + "▁reduce", + "d" + ], + [ + "▁redu", + "ced" + ], + [ + "▁simpl", + "y" + ], + [ + "▁sim", + "ply" + ], + [ + "▁ex", + "erc" + ], + [ + "▁i", + "r" + ], + [ + "▁", + "ir" + ], + [ + "▁o", + "x" + ], + [ + "▁", + "ox" + ], + [ + "▁ans", + "w" + ], + [ + "▁an", + "sw" + ], + [ + "are", + "s" + ], + [ + "ar", + "es" + ], + [ + "a", + "res" + ], + [ + "▁wal", + "k" + ], + [ + "▁w", + "alk" + ], + [ + "▁", + "walk" + ], + [ + "▁De", + "s" + ], + [ + "▁D", + "es" + ], + [ + "abe", + "t" + ], + [ + "ab", + "et" + ], + [ + "a", + "bet" + ], + [ + "ando", + "n" + ], + [ + "and", + "on" + ], + [ + "an", + "don" + ], + [ + "▁att", + "ract" + ], + [ + "▁K", + "ominote" + ], + [ + "▁ski", + "n" + ], + [ + "▁sk", + "in" + ], + [ + "▁s", + "kin" + ], + [ + "▁Ed", + "ward" + ], + [ + "▁Se", + "a" + ], + [ + "▁S", + "ea" + ], + [ + "▁O", + "lymp" + ], + [ + "▁To", + "r" + ], + [ + "▁T", + "or" + ], + [ + "eng", + "e" + ], + [ + "en", + "ge" + ], + [ + "▁mal", + "e" + ], + [ + "▁ma", + "le" + ], + [ + "▁m", + "ale" + ], + [ + "▁Cent", + "ral" + ], + [ + "▁ra", + "n" + ], + [ + "▁r", + "an" + ], + [ + "▁", + "ran" + ], + [ + "n", + "y" + ], + [ + "▁situ", + "ation" + ], + [ + "▁sit", + "uation" + ], + [ + "▁leg", + "isl" + ], + [ + "▁extend", + "ed" + ], + [ + "▁ext", + "ended" + ], + [ + "▁become", + "s" + ], + [ + "▁becom", + "es" + ], + [ + "▁bec", + "omes" + ], + [ + "▁be", + "comes" + ], + [ + ",", + "\"" + ], + [ + "ibl", + "y" + ], + [ + "ib", + "ly" + ], + [ + "▁with", + "d" + ], + [ + "ce", + "l" + ], + [ + "c", + "el" + ], + [ + "▁u", + "t" + ], + [ + "▁", + "ut" + ], + [ + "▁Co", + "r" + ], + [ + "▁C", + "or" + ], + [ + "▁resp", + "ond" + ], + [ + "▁", + "respond" + ], + [ + "▁ho", + "ur" + ], + [ + "▁h", + "our" + ], + [ + "▁Flor", + "ida" + ], + [ + "anc", + "y" + ], + [ + "an", + "cy" + ], + [ + "▁Sev", + "er" + ], + [ + "▁Se", + "ver" + ], + [ + "▁S", + "ever" + ], + [ + "▁C", + "r" + ], + [ + "▁vill", + "age" + ], + [ + "▁flee", + "t" + ], + [ + "▁fle", + "et" + ], + [ + "▁patient", + "s" + ], + [ + "▁pati", + "ents" + ], + [ + "▁pat", + "ients" + ], + [ + "br", + "e" + ], + [ + "b", + "re" + ], + [ + "▁ne", + "igh" + ], + [ + "▁He", + "alth" + ], + [ + "onom", + "i" + ], + [ + "on", + "omi" + ], + [ + "▁psy", + "ch" + ], + [ + "▁p", + "sych" + ], + [ + "▁symptom", + "s" + ], + [ + "▁sym", + "ptoms" + ], + [ + "▁gran", + "t" + ], + [ + "▁gra", + "nt" + ], + [ + "▁gr", + "ant" + ], + [ + "▁g", + "rant" + ], + [ + "▁fr", + "u" + ], + [ + "▁f", + "ru" + ], + [ + "▁Johns", + "on" + ], + [ + "▁John", + "son" + ], + [ + "▁plan", + "ned" + ], + [ + "▁pl", + "anned" + ], + [ + "elli", + "g" + ], + [ + "ell", + "ig" + ], + [ + "el", + "lig" + ], + [ + "▁raise", + "d" + ], + [ + "▁ra", + "ised" + ], + [ + "▁up", + "per" + ], + [ + "▁u", + "pper" + ], + [ + "▁", + "upper" + ], + [ + "▁attack", + "s" + ], + [ + "▁att", + "acks" + ], + [ + "▁win", + "ning" + ], + [ + "▁let", + "ter" + ], + [ + "▁", + "letter" + ], + [ + "▁resource", + "s" + ], + [ + "▁resour", + "ces" + ], + [ + "▁res", + "ources" + ], + [ + "▁scene", + "s" + ], + [ + "▁scen", + "es" + ], + [ + "▁sc", + "enes" + ], + [ + "▁occur", + "red" + ], + [ + "▁occ", + "urred" + ], + [ + "▁belie", + "ve" + ], + [ + "▁Cat", + "h" + ], + [ + "▁Ca", + "th" + ], + [ + "▁C", + "ath" + ], + [ + "..", + "." + ], + [ + ".", + ".." + ], + [ + "▁Fl", + "e" + ], + [ + "▁F", + "le" + ], + [ + "▁gran", + "d" + ], + [ + "▁gra", + "nd" + ], + [ + "▁gr", + "and" + ], + [ + "▁g", + "rand" + ], + [ + "er", + "o" + ], + [ + "e", + "ro" + ], + [ + "shi", + "p" + ], + [ + "sh", + "ip" + ], + [ + "s", + "hip" + ], + [ + "▁mix", + "ed" + ], + [ + "▁m", + "ixed" + ], + [ + "▁cover", + "ed" + ], + [ + "▁cov", + "ered" + ], + [ + "▁c", + "overed" + ], + [ + "bo", + "ur" + ], + [ + "b", + "our" + ], + [ + "▁man", + "ufact" + ], + [ + "▁hy", + "d" + ], + [ + "▁h", + "yd" + ], + [ + "▁", + "hyd" + ], + [ + "▁broad", + "cast" + ], + [ + "▁Cam", + "p" + ], + [ + "▁Ca", + "mp" + ], + [ + "▁C", + "amp" + ], + [ + "▁resear", + "c" + ], + [ + "▁rese", + "arc" + ], + [ + "▁norm", + "al" + ], + [ + "▁nor", + "mal" + ], + [ + "▁n", + "ormal" + ], + [ + "▁proper", + "ty" + ], + [ + "che", + "r" + ], + [ + "ch", + "er" + ], + [ + "c", + "her" + ], + [ + "▁secre", + "t" + ], + [ + "▁sec", + "ret" + ], + [ + "rup", + "t" + ], + [ + "ru", + "pt" + ], + [ + "r", + "upt" + ], + [ + "▁Ad", + "d" + ], + [ + "▁A", + "dd" + ], + [ + "▁c", + "m" + ], + [ + "▁pic", + "k" + ], + [ + "▁pi", + "ck" + ], + [ + "▁p", + "ick" + ], + [ + "▁ba", + "l" + ], + [ + "▁b", + "al" + ], + [ + "▁", + "bal" + ], + [ + "▁Ma", + "t" + ], + [ + "▁M", + "at" + ], + [ + "▁th", + "r" + ], + [ + "▁t", + "hr" + ], + [ + "▁The", + "ir" + ], + [ + "wi", + "n" + ], + [ + "w", + "in" + ], + [ + "▁Polit", + "ik" + ], + [ + "▁Russia", + "n" + ], + [ + "▁Russ", + "ian" + ], + [ + "act", + "er" + ], + [ + "ac", + "ter" + ], + [ + "over", + "y" + ], + [ + "ove", + "ry" + ], + [ + "ov", + "ery" + ], + [ + "o", + "very" + ], + [ + "▁Arc", + "h" + ], + [ + "▁Ar", + "ch" + ], + [ + "▁int", + "e" + ], + [ + "▁in", + "te" + ], + [ + "▁episode", + "s" + ], + [ + "▁epis", + "odes" + ], + [ + "▁ep", + "isodes" + ], + [ + "▁inter", + "p" + ], + [ + "▁3", + "7" + ], + [ + "▁", + "37" + ], + [ + "▁inst", + "it" + ], + [ + "▁in", + "stit" + ], + [ + "▁issue", + "d" + ], + [ + "▁iss", + "ued" + ], + [ + "1", + "5" + ], + [ + "▁rep", + "e" + ], + [ + "▁re", + "pe" + ], + [ + "iga", + "de" + ], + [ + "ig", + "ade" + ], + [ + "▁Ek", + "onomi" + ], + [ + "▁Su", + "r" + ], + [ + "▁S", + "ur" + ], + [ + "▁Bi", + "g" + ], + [ + "▁B", + "ig" + ], + [ + "▁Dis", + "t" + ], + [ + "▁Di", + "st" + ], + [ + "▁D", + "ist" + ], + [ + "▁K", + "n" + ], + [ + "1", + "6" + ], + [ + "vi", + "n" + ], + [ + "v", + "in" + ], + [ + "alin", + "g" + ], + [ + "ali", + "ng" + ], + [ + "al", + "ing" + ], + [ + "a", + "ling" + ], + [ + "uate", + "d" + ], + [ + "ua", + "ted" + ], + [ + "u", + "ated" + ], + [ + "▁clim", + "ate" + ], + [ + "▁cl", + "imate" + ], + [ + "▁Canad", + "ian" + ], + [ + "▁Can", + "adian" + ], + [ + "▁to", + "w" + ], + [ + "▁t", + "ow" + ], + [ + "▁pl", + "at" + ], + [ + "lo", + "ad" + ], + [ + "l", + "oad" + ], + [ + "▁Pen", + "n" + ], + [ + "▁P", + "enn" + ], + [ + "ò", + "t" + ], + [ + "erv", + "ation" + ], + [ + "▁sur", + "e" + ], + [ + "▁su", + "re" + ], + [ + "▁s", + "ure" + ], + [ + "▁For", + "t" + ], + [ + "▁F", + "ort" + ], + [ + "▁final", + "ly" + ], + [ + "▁fin", + "ally" + ], + [ + "▁S", + "k" + ], + [ + "▁ho", + "l" + ], + [ + "▁h", + "ol" + ], + [ + "▁", + "hol" + ], + [ + "▁improv", + "e" + ], + [ + "▁impro", + "ve" + ], + [ + "▁impr", + "ove" + ], + [ + "▁oper", + "ation" + ], + [ + "▁op", + "eration" + ], + [ + "▁there", + "fore" + ], + [ + "▁hand", + "s" + ], + [ + "▁h", + "ands" + ], + [ + "▁show", + "ed" + ], + [ + "▁sh", + "owed" + ], + [ + "▁m", + "ur" + ], + [ + "▁repl", + "ace" + ], + [ + "▁re", + "place" + ], + [ + "▁U", + "s" + ], + [ + "▁", + "Us" + ], + [ + "▁thin", + "g" + ], + [ + "▁th", + "ing" + ], + [ + "▁t", + "hing" + ], + [ + "▁", + "thing" + ], + [ + "▁cont", + "ain" + ], + [ + "▁con", + "tain" + ], + [ + "ist", + "ry" + ], + [ + "is", + "try" + ], + [ + "p", + "ut" + ], + [ + "c", + "ript" + ], + [ + "m", + "ission" + ], + [ + "▁p", + "i" + ], + [ + "▁", + "pi" + ], + [ + "▁Atl", + "antic" + ], + [ + "on", + "a" + ], + [ + "o", + "na" + ], + [ + "▁temper", + "ature" + ], + [ + "▁Sc", + "ot" + ], + [ + "▁grow", + "ing" + ], + [ + "▁gro", + "wing" + ], + [ + "▁gr", + "owing" + ], + [ + "▁g", + "rowing" + ], + [ + "▁sear", + "ch" + ], + [ + "▁se", + "arch" + ], + [ + "▁W", + "ood" + ], + [ + "▁separ", + "ate" + ], + [ + "▁award", + "ed" + ], + [ + "▁aw", + "arded" + ], + [ + "inem", + "a" + ], + [ + "ine", + "ma" + ], + [ + "in", + "ema" + ], + [ + "▁bi", + "t" + ], + [ + "▁b", + "it" + ], + [ + "▁", + "bit" + ], + [ + "istic", + "s" + ], + [ + "ist", + "ics" + ], + [ + "▁et", + "h" + ], + [ + "▁e", + "th" + ], + [ + "▁", + "eth" + ], + [ + "oni", + "c" + ], + [ + "on", + "ic" + ], + [ + "o", + "nic" + ], + [ + "▁chall", + "eng" + ], + [ + "▁dep", + "art" + ], + [ + "▁de", + "part" + ], + [ + "▁large", + "ly" + ], + [ + "▁larg", + "ely" + ], + [ + "▁bur", + "n" + ], + [ + "▁b", + "urn" + ], + [ + "▁", + "burn" + ], + [ + "▁reveal", + "ed" + ], + [ + "▁reve", + "aled" + ], + [ + "▁suffer", + "ed" + ], + [ + "▁suff", + "ered" + ], + [ + "▁199", + "4" + ], + [ + "▁19", + "94" + ], + [ + "▁present", + "ed" + ], + [ + "▁pres", + "ented" + ], + [ + "▁pres", + "ence" + ], + [ + "▁mean", + "t" + ], + [ + "▁me", + "ant" + ], + [ + "ro", + "om" + ], + [ + "r", + "oom" + ], + [ + "do", + "wn" + ], + [ + "d", + "own" + ], + [ + "▁cou", + "p" + ], + [ + "▁co", + "up" + ], + [ + "▁c", + "oup" + ], + [ + "▁Gro", + "up" + ], + [ + "▁Gr", + "oup" + ], + [ + "▁G", + "roup" + ], + [ + "▁fa", + "t" + ], + [ + "▁f", + "at" + ], + [ + "▁", + "fat" + ], + [ + "▁quar", + "ter" + ], + [ + "▁qu", + "arter" + ], + [ + "▁", + "quarter" + ], + [ + "▁streng", + "th" + ], + [ + "▁str", + "ength" + ], + [ + "icate", + "d" + ], + [ + "ica", + "ted" + ], + [ + "ic", + "ated" + ], + [ + "▁B", + "u" + ], + [ + "wi", + "de" + ], + [ + "w", + "ide" + ], + [ + "▁da", + "ng" + ], + [ + "▁d", + "ang" + ], + [ + "▁se", + "m" + ], + [ + "▁s", + "em" + ], + [ + "▁fif", + "th" + ], + [ + "lect", + "ion" + ], + [ + "le", + "ction" + ], + [ + "l", + "ection" + ], + [ + "▁7", + "5" + ], + [ + "▁", + "75" + ], + [ + "▁Te", + "st" + ], + [ + "▁T", + "est" + ], + [ + "▁Cl", + "e" + ], + [ + "▁C", + "le" + ], + [ + "▁Late", + "r" + ], + [ + "▁Lat", + "er" + ], + [ + "▁La", + "ter" + ], + [ + "▁L", + "ater" + ], + [ + "▁direct", + "ion" + ], + [ + "▁dire", + "ction" + ], + [ + "▁dir", + "ection" + ], + [ + "▁di", + "rection" + ], + [ + "▁feder", + "al" + ], + [ + "▁fed", + "eral" + ], + [ + "▁f", + "ederal" + ], + [ + "▁sus", + "p" + ], + [ + "▁su", + "sp" + ], + [ + "▁s", + "usp" + ], + [ + "▁Her", + "e" + ], + [ + "▁He", + "re" + ], + [ + "▁H", + "ere" + ], + [ + "▁question", + "s" + ], + [ + "▁quest", + "ions" + ], + [ + "▁fl", + "ight" + ], + [ + "▁f", + "light" + ], + [ + "▁Ent", + "er" + ], + [ + "▁En", + "ter" + ], + [ + "ape", + "d" + ], + [ + "ap", + "ed" + ], + [ + "a", + "ped" + ], + [ + "y", + "ing" + ], + [ + "▁w", + "ild" + ], + [ + "▁Cl", + "ub" + ], + [ + "▁w", + "a" + ], + [ + "▁", + "wa" + ], + [ + "▁Nor", + "t" + ], + [ + "▁N", + "ort" + ], + [ + "ot", + "a" + ], + [ + "o", + "ta" + ], + [ + "▁new", + "s" + ], + [ + "be", + "d" + ], + [ + "b", + "ed" + ], + [ + "▁Me", + "l" + ], + [ + "▁M", + "el" + ], + [ + "z", + "a" + ], + [ + "bur", + "g" + ], + [ + "b", + "urg" + ], + [ + "▁Mas", + "s" + ], + [ + "▁Ma", + "ss" + ], + [ + "▁M", + "ass" + ], + [ + "▁American", + "s" + ], + [ + "▁America", + "ns" + ], + [ + "▁Americ", + "ans" + ], + [ + "ib", + "er" + ], + [ + "i", + "ber" + ], + [ + "gy", + "pt" + ], + [ + "▁Son", + "g" + ], + [ + "▁So", + "ng" + ], + [ + "▁S", + "ong" + ], + [ + "ee", + "d" + ], + [ + "e", + "ed" + ], + [ + "▁fl", + "ag" + ], + [ + "▁met", + "al" + ], + [ + "▁me", + "tal" + ], + [ + "aren", + "t" + ], + [ + "are", + "nt" + ], + [ + "ar", + "ent" + ], + [ + "a", + "rent" + ], + [ + "▁doub", + "le" + ], + [ + "▁dou", + "ble" + ], + [ + "▁do", + "uble" + ], + [ + "▁record", + "s" + ], + [ + "▁rec", + "ords" + ], + [ + "▁Ou", + "t" + ], + [ + "▁O", + "ut" + ], + [ + "▁3", + "3" + ], + [ + "▁", + "33" + ], + [ + "ici", + "p" + ], + [ + "ic", + "ip" + ], + [ + "i", + "cip" + ], + [ + "▁cal", + "c" + ], + [ + "▁c", + "alc" + ], + [ + "rie", + "r" + ], + [ + "ri", + "er" + ], + [ + "r", + "ier" + ], + [ + "▁w", + "atch" + ], + [ + "▁skill", + "s" + ], + [ + "▁sk", + "ills" + ], + [ + "▁T", + "V" + ], + [ + "▁", + "TV" + ], + [ + "▁J", + "im" + ], + [ + "▁pac", + "k" + ], + [ + "▁pa", + "ck" + ], + [ + "▁p", + "ack" + ], + [ + "▁", + "pack" + ], + [ + "ett", + "e" + ], + [ + "et", + "te" + ], + [ + "▁He", + "l" + ], + [ + "▁H", + "el" + ], + [ + "▁damage", + "d" + ], + [ + "▁dam", + "aged" + ], + [ + "▁tree", + "s" + ], + [ + "▁tre", + "es" + ], + [ + "▁tr", + "ees" + ], + [ + "▁t", + "rees" + ], + [ + "▁ass", + "ess" + ], + [ + "ing", + "u" + ], + [ + "in", + "gu" + ], + [ + "▁officer", + "s" + ], + [ + "▁office", + "rs" + ], + [ + "▁offic", + "ers" + ], + [ + "▁gu", + "itar" + ], + [ + "8", + "0" + ], + [ + "ò", + "p" + ], + [ + "▁dr", + "a" + ], + [ + "▁d", + "ra" + ], + [ + "▁trans", + "l" + ], + [ + "▁tran", + "sl" + ], + [ + "▁Ra", + "d" + ], + [ + "▁R", + "ad" + ], + [ + "▁s", + "n" + ], + [ + "▁acc", + "omp" + ], + [ + "▁ac", + "comp" + ], + [ + "▁Op", + "er" + ], + [ + "▁O", + "per" + ], + [ + "▁select", + "ed" + ], + [ + "▁sel", + "ected" + ], + [ + "▁se", + "lected" + ], + [ + "▁glob", + "al" + ], + [ + "▁gl", + "obal" + ], + [ + "▁collect", + "ion" + ], + [ + "▁colle", + "ction" + ], + [ + "▁coll", + "ection" + ], + [ + "▁col", + "lection" + ], + [ + "ard", + "en" + ], + [ + "ar", + "den" + ], + [ + "▁ad", + "j" + ], + [ + "hous", + "e" + ], + [ + "hou", + "se" + ], + [ + "ho", + "use" + ], + [ + "h", + "ouse" + ], + [ + "▁idea", + "s" + ], + [ + "▁ide", + "as" + ], + [ + "▁id", + "eas" + ], + [ + "▁rul", + "e" + ], + [ + "▁ru", + "le" + ], + [ + "▁r", + "ule" + ], + [ + "▁anim", + "al" + ], + [ + "▁an", + "imal" + ], + [ + "▁asp", + "ect" + ], + [ + "▁as", + "pect" + ], + [ + "▁For", + "e" + ], + [ + "▁Fo", + "re" + ], + [ + "▁F", + "ore" + ], + [ + "is", + "ation" + ], + [ + "▁ton", + "s" + ], + [ + "▁to", + "ns" + ], + [ + "▁t", + "ons" + ], + [ + "▁Ju", + "l" + ], + [ + "▁J", + "ul" + ], + [ + "▁stru", + "gg" + ], + [ + "▁str", + "ugg" + ], + [ + "ula", + "te" + ], + [ + "ul", + "ate" + ], + [ + "▁Lov", + "e" + ], + [ + "▁Lo", + "ve" + ], + [ + "▁L", + "ove" + ], + [ + "▁Soci", + "ety" + ], + [ + "▁Soc", + "iety" + ], + [ + "ne", + "s" + ], + [ + "n", + "es" + ], + [ + "▁def", + "in" + ], + [ + "▁de", + "fin" + ], + [ + "▁tou", + "ch" + ], + [ + "▁to", + "uch" + ], + [ + "▁t", + "ouch" + ], + [ + "▁ra", + "t" + ], + [ + "▁r", + "at" + ], + [ + "▁", + "rat" + ], + [ + "▁199", + "2" + ], + [ + "▁19", + "92" + ], + [ + "▁manage", + "r" + ], + [ + "▁manag", + "er" + ], + [ + "▁man", + "ager" + ], + [ + "▁ban", + "k" + ], + [ + "▁b", + "ank" + ], + [ + "▁", + "bank" + ], + [ + "▁die", + "t" + ], + [ + "▁di", + "et" + ], + [ + "▁d", + "iet" + ], + [ + "▁comp", + "l" + ], + [ + "▁com", + "pl" + ], + [ + "▁c", + "ompl" + ], + [ + "▁O", + "f" + ], + [ + "▁power", + "ful" + ], + [ + "▁Fil", + "m" + ], + [ + "▁F", + "ilm" + ], + [ + "▁ey", + "e" + ], + [ + "▁e", + "ye" + ], + [ + "▁", + "eye" + ], + [ + "▁arch", + "itect" + ], + [ + "è", + "l" + ], + [ + "▁cor", + "n" + ], + [ + "▁c", + "orn" + ], + [ + "l", + "a" + ], + [ + "▁complete", + "ly" + ], + [ + "▁complet", + "ely" + ], + [ + "▁Mart", + "in" + ], + [ + "rop", + "ri" + ], + [ + "ian", + "ce" + ], + [ + "ia", + "nce" + ], + [ + "i", + "ance" + ], + [ + "▁har", + "m" + ], + [ + "▁ha", + "rm" + ], + [ + "▁h", + "arm" + ], + [ + "▁", + "harm" + ], + [ + "▁fi", + "sh" + ], + [ + "▁f", + "ish" + ], + [ + "▁", + "fish" + ], + [ + "▁st", + "ories" + ], + [ + "▁fan", + "s" + ], + [ + "▁fa", + "ns" + ], + [ + "▁f", + "ans" + ], + [ + "▁ann", + "ual" + ], + [ + "▁Wor", + "k" + ], + [ + "▁W", + "ork" + ], + [ + "vi", + "w" + ], + [ + "▁cop", + "ies" + ], + [ + "▁result", + "ing" + ], + [ + "▁Gree", + "k" + ], + [ + "▁Gre", + "ek" + ], + [ + "▁G", + "reek" + ], + [ + "▁launch", + "ed" + ], + [ + "▁laun", + "ched" + ], + [ + "▁cont", + "em" + ], + [ + "▁material", + "s" + ], + [ + "▁mater", + "ials" + ], + [ + "▁Ste", + "p" + ], + [ + "▁St", + "ep" + ], + [ + "▁Si", + "r" + ], + [ + "▁S", + "ir" + ], + [ + "▁Ac", + "ad" + ], + [ + "▁ic", + "e" + ], + [ + "▁i", + "ce" + ], + [ + "▁", + "ice" + ], + [ + "▁To", + "d" + ], + [ + "▁T", + "od" + ], + [ + "▁E", + "gypt" + ], + [ + "▁relative", + "ly" + ], + [ + "▁relat", + "ively" + ], + [ + "▁rel", + "atively" + ], + [ + "▁compose", + "d" + ], + [ + "▁compos", + "ed" + ], + [ + "▁comp", + "osed" + ], + [ + "▁conduct", + "ed" + ], + [ + "din", + "g" + ], + [ + "di", + "ng" + ], + [ + "d", + "ing" + ], + [ + "▁law", + "s" + ], + [ + "▁l", + "aws" + ], + [ + "▁ce", + "r" + ], + [ + "▁c", + "er" + ], + [ + "▁", + "cer" + ], + [ + "▁Que", + "en" + ], + [ + "▁Qu", + "een" + ], + [ + "▁195", + "0" + ], + [ + "▁19", + "50" + ], + [ + "ibr", + "ary" + ], + [ + "ib", + "rary" + ], + [ + "y", + "ò" + ], + [ + "ha", + "ps" + ], + [ + "h", + "aps" + ], + [ + "▁scal", + "e" + ], + [ + "▁sc", + "ale" + ], + [ + "▁", + "scale" + ], + [ + "òn", + "man" + ], + [ + "▁th", + "ick" + ], + [ + "▁fore", + "ign" + ], + [ + "▁for", + "eign" + ], + [ + "▁min", + "ute" + ], + [ + "ad", + "a" + ], + [ + "a", + "da" + ], + [ + "è", + "m" + ], + [ + "▁equ", + "ip" + ], + [ + "▁respective", + "ly" + ], + [ + "▁respect", + "ively" + ], + [ + "ill", + "a" + ], + [ + "il", + "la" + ], + [ + "i", + "lla" + ], + [ + "▁track", + "s" + ], + [ + "▁tr", + "acks" + ], + [ + "▁t", + "racks" + ], + [ + "▁II", + "I" + ], + [ + "▁I", + "II" + ], + [ + "▁", + "III" + ], + [ + "▁pie", + "ce" + ], + [ + "▁p", + "iece" + ], + [ + "▁", + "piece" + ], + [ + "▁Mexic", + "o" + ], + [ + "▁A", + "v" + ], + [ + "viw", + "ònman" + ], + [ + "▁colle", + "ge" + ], + [ + "▁Mu", + "r" + ], + [ + "▁M", + "ur" + ], + [ + "▁Tow", + "n" + ], + [ + "▁To", + "wn" + ], + [ + "▁T", + "own" + ], + [ + "3", + "3" + ], + [ + "ad", + "y" + ], + [ + "a", + "dy" + ], + [ + "o", + "o" + ], + [ + "▁Ro", + "s" + ], + [ + "▁R", + "os" + ], + [ + "▁list", + "ed" + ], + [ + "▁li", + "sted" + ], + [ + "▁l", + "isted" + ], + [ + "▁gen", + "yen" + ], + [ + "▁observe", + "d" + ], + [ + "▁observ", + "ed" + ], + [ + "▁obs", + "erved" + ], + [ + "ra", + "el" + ], + [ + "r", + "ael" + ], + [ + "▁Bo", + "ok" + ], + [ + "▁B", + "ook" + ], + [ + "▁che", + "ck" + ], + [ + "▁ch", + "eck" + ], + [ + "▁", + "check" + ], + [ + "▁bou", + "nd" + ], + [ + "▁bo", + "und" + ], + [ + "▁b", + "ound" + ], + [ + "▁", + "bound" + ], + [ + "▁exh", + "ib" + ], + [ + "▁ex", + "hib" + ], + [ + "▁aud", + "ience" + ], + [ + "▁dist", + "ance" + ], + [ + "▁d", + "istance" + ], + [ + "▁Mo", + "d" + ], + [ + "▁M", + "od" + ], + [ + "▁close", + "d" + ], + [ + "▁clos", + "ed" + ], + [ + "▁cl", + "osed" + ], + [ + "▁win", + "ter" + ], + [ + "▁w", + "inter" + ], + [ + "▁cap", + "ac" + ], + [ + "▁note", + "s" + ], + [ + "▁not", + "es" + ], + [ + "▁no", + "tes" + ], + [ + "▁n", + "otes" + ], + [ + "▁", + "notes" + ], + [ + "over", + "s" + ], + [ + "ove", + "rs" + ], + [ + "ov", + "ers" + ], + [ + "o", + "vers" + ], + [ + "g", + "n" + ], + [ + "▁pa", + "n" + ], + [ + "▁p", + "an" + ], + [ + "▁", + "pan" + ], + [ + "▁action", + "s" + ], + [ + "▁act", + "ions" + ], + [ + "▁a", + "ctions" + ], + [ + "▁", + "actions" + ], + [ + "▁look", + "ing" + ], + [ + "▁lo", + "oking" + ], + [ + "▁result", + "ed" + ], + [ + "▁199", + "3" + ], + [ + "▁19", + "93" + ], + [ + "▁3", + "4" + ], + [ + "▁", + "34" + ], + [ + "▁read", + "ing" + ], + [ + "▁re", + "ading" + ], + [ + "▁dis", + "app" + ], + [ + "▁199", + "1" + ], + [ + "▁19", + "91" + ], + [ + "▁Resear", + "ch" + ], + [ + "ipp", + "ed" + ], + [ + "ip", + "ped" + ], + [ + "i", + "pped" + ], + [ + "▁sch", + "ol" + ], + [ + "▁sc", + "hol" + ], + [ + "▁add", + "ress" + ], + [ + "ock", + "s" + ], + [ + "oc", + "ks" + ], + [ + "▁on", + "line" + ], + [ + "▁Dev", + "l" + ], + [ + "▁adv", + "ance" + ], + [ + "▁ad", + "vance" + ], + [ + "▁subsequent", + "ly" + ], + [ + "▁subsequ", + "ently" + ], + [ + "▁sub", + "sequently" + ], + [ + "▁contra", + "st" + ], + [ + "▁cont", + "rast" + ], + [ + "▁An", + "viwònman" + ], + [ + "▁Hu", + "m" + ], + [ + "▁H", + "um" + ], + [ + "▁A", + "p" + ], + [ + "▁Em", + "pire" + ], + [ + "bur", + "y" + ], + [ + "bu", + "ry" + ], + [ + "b", + "ury" + ], + [ + "▁O", + "x" + ], + [ + "òp", + "man" + ], + [ + "▁sp", + "l" + ], + [ + "▁s", + "pl" + ], + [ + "▁Ken", + "t" + ], + [ + "▁Ke", + "nt" + ], + [ + "▁K", + "ent" + ], + [ + "mar", + "k" + ], + [ + "m", + "ark" + ], + [ + "▁cause", + "s" + ], + [ + "▁caus", + "es" + ], + [ + "▁ca", + "uses" + ], + [ + "▁c", + "auses" + ], + [ + "▁Bo", + "y" + ], + [ + "▁B", + "oy" + ], + [ + "2", + "," + ], + [ + "▁Cons", + "t" + ], + [ + "▁Con", + "st" + ], + [ + "▁C", + "onst" + ], + [ + "▁old", + "er" + ], + [ + "▁ol", + "der" + ], + [ + "▁cle", + "an" + ], + [ + "▁cl", + "ean" + ], + [ + "▁c", + "lean" + ], + [ + "▁E", + "r" + ], + [ + "▁Devl", + "òpman" + ], + [ + "▁we", + "ather" + ], + [ + "iz", + "asyon" + ], + [ + "▁nu", + "t" + ], + [ + "▁n", + "ut" + ], + [ + "▁", + "nut" + ], + [ + "ro", + "ad" + ], + [ + "r", + "oad" + ], + [ + "▁tre", + "e" + ], + [ + "▁tr", + "ee" + ], + [ + "▁t", + "ree" + ], + [ + "▁develop", + "ing" + ], + [ + "A", + "T" + ], + [ + "▁pl", + "ot" + ], + [ + "▁p", + "lot" + ], + [ + "g", + "l" + ], + [ + "▁un", + "able" + ], + [ + "▁inspire", + "d" + ], + [ + "▁inspir", + "ed" + ], + [ + "▁insp", + "ired" + ], + [ + "▁Ja", + "c" + ], + [ + "▁J", + "ac" + ], + [ + "yp", + "e" + ], + [ + "y", + "pe" + ], + [ + "▁0", + "0" + ], + [ + "▁", + "00" + ], + [ + "est", + "ival" + ], + [ + "▁inc", + "orpor" + ], + [ + "og", + "ue" + ], + [ + "o", + "gue" + ], + [ + "▁Eve", + "n" + ], + [ + "▁Ev", + "en" + ], + [ + "▁E", + "ven" + ], + [ + "▁var", + "i" + ], + [ + "▁va", + "ri" + ], + [ + "▁v", + "ari" + ], + [ + "▁Instit", + "ute" + ], + [ + "▁In", + "stitute" + ], + [ + "▁An", + "n" + ], + [ + "ago", + "n" + ], + [ + "ag", + "on" + ], + [ + "a", + "gon" + ], + [ + "k", + "a" + ], + [ + "▁battle", + "s" + ], + [ + "▁batt", + "les" + ], + [ + "▁worker", + "s" + ], + [ + "▁work", + "ers" + ], + [ + "▁news", + "p" + ], + [ + "▁new", + "sp" + ], + [ + "▁ir", + "on" + ], + [ + "▁i", + "ron" + ], + [ + "▁", + "iron" + ], + [ + "▁organ", + "ization" + ], + [ + "ication", + "s" + ], + [ + "ic", + "ations" + ], + [ + "▁dec", + "re" + ], + [ + "▁Award", + "s" + ], + [ + "▁Aw", + "ards" + ], + [ + "▁A", + "wards" + ], + [ + "▁journ", + "al" + ], + [ + "▁jo", + "urnal" + ], + [ + "▁j", + "ournal" + ], + [ + "▁du", + "t" + ], + [ + "▁d", + "ut" + ], + [ + "ify", + "ing" + ], + [ + "if", + "ying" + ], + [ + "cept", + "ion" + ], + [ + "ce", + "ption" + ], + [ + "▁coll", + "abor" + ], + [ + "▁start", + "ing" + ], + [ + "▁star", + "ting" + ], + [ + "▁chem", + "ical" + ], + [ + "ec", + "es" + ], + [ + "e", + "ces" + ], + [ + "▁Ch", + "e" + ], + [ + "▁C", + "he" + ], + [ + "▁batt", + "er" + ], + [ + "▁bat", + "ter" + ], + [ + "▁b", + "atter" + ], + [ + "▁we", + "ar" + ], + [ + "▁w", + "ear" + ], + [ + "▁bl", + "ue" + ], + [ + "▁cit", + "iz" + ], + [ + "▁affect", + "ed" + ], + [ + "▁aff", + "ected" + ], + [ + "▁ke", + "pt" + ], + [ + "▁k", + "ept" + ], + [ + "▁inte", + "gr" + ], + [ + "▁in", + "tegr" + ], + [ + "▁com", + "ing" + ], + [ + "▁co", + "ming" + ], + [ + "▁c", + "oming" + ], + [ + "▁", + "coming" + ], + [ + "▁You", + "r" + ], + [ + "▁Yo", + "ur" + ], + [ + "▁Y", + "our" + ], + [ + "▁f", + "a" + ], + [ + "▁", + "fa" + ], + [ + "▁suppl", + "y" + ], + [ + "▁supp", + "ly" + ], + [ + "▁sup", + "ply" + ], + [ + "▁Comm", + "un" + ], + [ + "▁Com", + "mun" + ], + [ + "A", + "R" + ], + [ + "eth", + "er" + ], + [ + "et", + "her" + ], + [ + "e", + "ther" + ], + [ + "▁begin", + "s" + ], + [ + "▁beg", + "ins" + ], + [ + "▁be", + "gins" + ], + [ + "an", + "i" + ], + [ + "a", + "ni" + ], + [ + "▁factor", + "s" + ], + [ + "▁facto", + "rs" + ], + [ + "▁fact", + "ors" + ], + [ + "▁figur", + "e" + ], + [ + "▁fig", + "ure" + ], + [ + "▁O", + "h" + ], + [ + "▁de", + "d" + ], + [ + "▁d", + "ed" + ], + [ + "▁", + "ded" + ], + [ + "▁Ital", + "ian" + ], + [ + "inar", + "y" + ], + [ + "ina", + "ry" + ], + [ + "in", + "ary" + ], + [ + "▁celeb", + "r" + ], + [ + "▁cele", + "br" + ], + [ + "▁typical", + "ly" + ], + [ + "▁typ", + "ically" + ], + [ + "▁as", + "t" + ], + [ + "▁a", + "st" + ], + [ + "▁", + "ast" + ], + [ + "▁Au", + "t" + ], + [ + "▁A", + "ut" + ], + [ + "▁fight", + "ing" + ], + [ + "▁ch", + "ief" + ], + [ + "▁Pari", + "s" + ], + [ + "▁Par", + "is" + ], + [ + "▁Pa", + "ris" + ], + [ + "▁P", + "aris" + ], + [ + "▁understand", + "ing" + ], + [ + "▁under", + "standing" + ], + [ + "▁pe", + "ace" + ], + [ + "▁al", + "one" + ], + [ + "▁mor", + "ning" + ], + [ + "ine", + "nt" + ], + [ + "in", + "ent" + ], + [ + "▁de", + "yò" + ], + [ + "▁webs", + "ite" + ], + [ + "▁fe", + "v" + ], + [ + "▁f", + "ev" + ], + [ + "▁sale", + "s" + ], + [ + "▁sal", + "es" + ], + [ + "▁sa", + "les" + ], + [ + "▁s", + "ales" + ], + [ + "▁18", + "0" + ], + [ + "▁1", + "80" + ], + [ + "▁quit", + "e" + ], + [ + "▁qui", + "te" + ], + [ + "▁qu", + "ite" + ], + [ + "ac", + "ing" + ], + [ + "a", + "cing" + ], + [ + "full", + "y" + ], + [ + "ful", + "ly" + ], + [ + "f", + "ully" + ], + [ + "onent", + "s" + ], + [ + "on", + "ents" + ], + [ + "▁leave", + "s" + ], + [ + "▁le", + "aves" + ], + [ + "▁Je", + "s" + ], + [ + "▁J", + "es" + ], + [ + "▁continue", + "s" + ], + [ + "▁continu", + "es" + ], + [ + "▁contin", + "ues" + ], + [ + "ter", + "ed" + ], + [ + "te", + "red" + ], + [ + "t", + "ered" + ], + [ + "ain", + "e" + ], + [ + "ai", + "ne" + ], + [ + "a", + "ine" + ], + [ + "▁ident", + "ified" + ], + [ + "▁", + "identified" + ], + [ + "▁Vie", + "t" + ], + [ + "▁Vi", + "et" + ], + [ + "▁V", + "iet" + ], + [ + "ali", + "te" + ], + [ + "al", + "ite" + ], + [ + "▁Si", + "l" + ], + [ + "▁S", + "il" + ], + [ + "ize", + "s" + ], + [ + "iz", + "es" + ], + [ + "i", + "zes" + ], + [ + "▁Ly", + "en" + ], + [ + "▁L", + "yen" + ], + [ + "▁bu", + "l" + ], + [ + "▁b", + "ul" + ], + [ + "▁", + "bul" + ], + [ + "▁Bill", + "board" + ], + [ + "res", + "h" + ], + [ + "re", + "sh" + ], + [ + "r", + "esh" + ], + [ + "▁equip", + "ment" + ], + [ + "▁elect", + "ed" + ], + [ + "▁el", + "ected" + ], + [ + "▁e", + "lected" + ], + [ + "▁tri", + "ed" + ], + [ + "▁tr", + "ied" + ], + [ + "▁t", + "ried" + ], + [ + "▁Angel", + "es" + ], + [ + "▁flo", + "w" + ], + [ + "▁fl", + "ow" + ], + [ + "▁f", + "low" + ], + [ + "▁", + "flow" + ], + [ + "for", + "ce" + ], + [ + "▁assign", + "ed" + ], + [ + "▁ass", + "igned" + ], + [ + "▁program", + "s" + ], + [ + "▁prog", + "rams" + ], + [ + "▁pr", + "ograms" + ], + [ + "▁", + "+" + ], + [ + "▁Chi", + "ld" + ], + [ + "▁Ch", + "ild" + ], + [ + "▁inter", + "s" + ], + [ + "▁inte", + "rs" + ], + [ + "▁int", + "ers" + ], + [ + "▁in", + "ters" + ], + [ + "▁", + "inters" + ], + [ + "arter", + "s" + ], + [ + "arte", + "rs" + ], + [ + "art", + "ers" + ], + [ + "ar", + "ters" + ], + [ + "▁sec", + "urity" + ], + [ + "▁re", + "in" + ], + [ + "hen", + "s" + ], + [ + "he", + "ns" + ], + [ + "h", + "ens" + ], + [ + "▁pur", + "s" + ], + [ + "▁p", + "urs" + ], + [ + "or", + "ation" + ], + [ + "o", + "ration" + ], + [ + "▁adv", + "ant" + ], + [ + "▁ad", + "vant" + ], + [ + "▁", + "advant" + ], + [ + "g", + "u" + ], + [ + "▁tra", + "in" + ], + [ + "▁tr", + "ain" + ], + [ + "▁t", + "rain" + ], + [ + "▁Jose", + "ph" + ], + [ + "▁Jos", + "eph" + ], + [ + "ins", + "on" + ], + [ + "in", + "son" + ], + [ + "▁produce", + "r" + ], + [ + "▁produ", + "cer" + ], + [ + "br", + "idge" + ], + [ + "b", + "ridge" + ], + [ + "urb", + "an" + ], + [ + "ur", + "ban" + ], + [ + "▁bas", + "is" + ], + [ + "▁ba", + "sis" + ], + [ + "▁b", + "asis" + ], + [ + "▁Sci", + "ence" + ], + [ + "▁Sc", + "ience" + ], + [ + "▁S", + "cience" + ], + [ + "ut", + "ch" + ], + [ + "ab", + "y" + ], + [ + "a", + "by" + ], + [ + "▁purp", + "ose" + ], + [ + "▁tow", + "ard" + ], + [ + "▁to", + "ward" + ], + [ + "▁allow", + "ing" + ], + [ + "▁all", + "owing" + ], + [ + "▁sever", + "e" + ], + [ + "ena", + "nt" + ], + [ + "en", + "ant" + ], + [ + "e", + "nant" + ], + [ + "▁dist", + "inct" + ], + [ + "▁attempt", + "ed" + ], + [ + "▁neg", + "ative" + ], + [ + "all", + "e" + ], + [ + "al", + "le" + ], + [ + "▁Ins", + "t" + ], + [ + "▁In", + "st" + ], + [ + "▁get", + "ting" + ], + [ + "▁Lat", + "in" + ], + [ + "▁L", + "atin" + ], + [ + "▁Sy", + "stem" + ], + [ + "ban", + "d" + ], + [ + "ba", + "nd" + ], + [ + "b", + "and" + ], + [ + "▁Ye", + "ar" + ], + [ + "▁Y", + "ear" + ], + [ + "▁famil", + "ies" + ], + [ + "▁fam", + "ilies" + ], + [ + "▁independ", + "ent" + ], + [ + "▁ind", + "ependent" + ], + [ + "▁accept", + "ed" + ], + [ + "▁jew", + "ografi" + ], + [ + "▁exper", + "iment" + ], + [ + "for", + "t" + ], + [ + "f", + "ort" + ], + [ + "▁Da", + "r" + ], + [ + "▁D", + "ar" + ], + [ + "kn", + "own" + ], + [ + "▁New", + "s" + ], + [ + "▁declare", + "d" + ], + [ + "▁decl", + "ared" + ], + [ + "▁Mat", + "t" + ], + [ + "▁Ma", + "tt" + ], + [ + "▁M", + "att" + ], + [ + "▁Tim", + "e" + ], + [ + "▁Ti", + "me" + ], + [ + "▁T", + "ime" + ], + [ + "▁spir", + "it" + ], + [ + "▁sp", + "irit" + ], + [ + "▁Fe", + "r" + ], + [ + "▁F", + "er" + ], + [ + "▁dep", + "i" + ], + [ + "▁de", + "pi" + ], + [ + "▁Su", + "m" + ], + [ + "▁S", + "um" + ], + [ + "us", + "ion" + ], + [ + "aria", + "n" + ], + [ + "ari", + "an" + ], + [ + "ar", + "ian" + ], + [ + "a", + "rian" + ], + [ + "▁lab", + "or" + ], + [ + "▁la", + "bor" + ], + [ + "▁l", + "abor" + ], + [ + "2", + "." + ], + [ + "▁cent", + "re" + ], + [ + "▁attack", + "ed" + ], + [ + "▁att", + "acked" + ], + [ + "▁uniqu", + "e" + ], + [ + "▁un", + "ique" + ], + [ + "▁E", + "ach" + ], + [ + "▁compet", + "ition" + ], + [ + "▁try", + "ing" + ], + [ + "▁tr", + "ying" + ], + [ + "▁t", + "rying" + ], + [ + "▁vo", + "t" + ], + [ + "▁v", + "ot" + ], + [ + "▁Li", + "t" + ], + [ + "▁L", + "it" + ], + [ + "▁Geor", + "g" + ], + [ + "▁Ge", + "org" + ], + [ + "ol", + "f" + ], + [ + "▁art", + "ist" + ], + [ + "ub", + "e" + ], + [ + "u", + "be" + ], + [ + "▁enc", + "oura" + ], + [ + "▁safe", + "ty" + ], + [ + "▁saf", + "ety" + ], + [ + "▁Ra", + "il" + ], + [ + "▁R", + "ail" + ], + [ + "ra", + "m" + ], + [ + "r", + "am" + ], + [ + "ight", + "er" + ], + [ + "igh", + "ter" + ], + [ + "▁me", + "l" + ], + [ + "▁m", + "el" + ], + [ + "▁", + "mel" + ], + [ + "▁De", + "t" + ], + [ + "▁D", + "et" + ], + [ + "▁da", + "ily" + ], + [ + "▁d", + "aily" + ], + [ + "▁ten", + "d" + ], + [ + "▁te", + "nd" + ], + [ + "▁t", + "end" + ], + [ + "▁tu", + "r" + ], + [ + "▁t", + "ur" + ], + [ + "▁hab", + "it" + ], + [ + "▁ha", + "bit" + ], + [ + "▁h", + "abit" + ], + [ + "▁P", + "è" + ], + [ + "▁not", + "hing" + ], + [ + "▁no", + "thing" + ], + [ + "▁n", + "othing" + ], + [ + "▁deg", + "ree" + ], + [ + "▁creat", + "ing" + ], + [ + "▁cre", + "ating" + ], + [ + "▁D", + "i" + ], + [ + "▁so", + "il" + ], + [ + "▁Sever", + "al" + ], + [ + "▁Sev", + "eral" + ], + [ + "▁wide", + "ly" + ], + [ + "▁wid", + "ely" + ], + [ + "▁Ze", + "al" + ], + [ + "▁Z", + "eal" + ], + [ + "▁sett", + "le" + ], + [ + "▁set", + "tle" + ], + [ + "▁Is", + "rael" + ], + [ + "ilt", + "i" + ], + [ + "il", + "ti" + ], + [ + "▁B", + "C" + ], + [ + "▁", + "BC" + ], + [ + "▁cand", + "id" + ], + [ + "▁Ve", + "r" + ], + [ + "▁V", + "er" + ], + [ + "▁Al", + "so" + ], + [ + "ita", + "ble" + ], + [ + "it", + "able" + ], + [ + "▁cit", + "ies" + ], + [ + "▁c", + "ities" + ], + [ + "▁rej", + "ect" + ], + [ + "▁re", + "ject" + ], + [ + "▁ab", + "andon" + ], + [ + "▁Je", + "r" + ], + [ + "▁J", + "er" + ], + [ + "▁lyric", + "s" + ], + [ + "▁lyr", + "ics" + ], + [ + "▁ly", + "rics" + ], + [ + "▁am", + "b" + ], + [ + "▁a", + "mb" + ], + [ + "▁", + "amb" + ], + [ + "▁cat", + "eg" + ], + [ + "▁c", + "ateg" + ], + [ + "pe", + "d" + ], + [ + "p", + "ed" + ], + [ + "▁dr", + "y" + ], + [ + "▁d", + "ry" + ], + [ + "▁anc", + "ient" + ], + [ + "▁an", + "cient" + ], + [ + "1", + "." + ], + [ + "▁researcher", + "s" + ], + [ + "▁research", + "ers" + ], + [ + "▁researc", + "hers" + ], + [ + "▁resear", + "chers" + ], + [ + "▁allow", + "s" + ], + [ + "▁all", + "ows" + ], + [ + "▁method", + "s" + ], + [ + "▁meth", + "ods" + ], + [ + "▁serv", + "e" + ], + [ + "▁ser", + "ve" + ], + [ + "▁s", + "erve" + ], + [ + "▁sw", + "e" + ], + [ + "▁s", + "we" + ], + [ + "▁ve", + "ss" + ], + [ + "▁v", + "ess" + ], + [ + "▁3", + "8" + ], + [ + "▁", + "38" + ], + [ + "▁Spe", + "c" + ], + [ + "▁Sp", + "ec" + ], + [ + "▁194", + "0" + ], + [ + "▁19", + "40" + ], + [ + "▁eas", + "ily" + ], + [ + "▁see", + "k" + ], + [ + "▁se", + "ek" + ], + [ + "▁near", + "by" + ], + [ + "▁exper", + "ien" + ], + [ + "▁ret", + "ire" + ], + [ + "▁Ha", + "w" + ], + [ + "▁H", + "aw" + ], + [ + "▁construct", + "ed" + ], + [ + "▁tab", + "le" + ], + [ + "▁ta", + "ble" + ], + [ + "▁t", + "able" + ], + [ + "ric", + "al" + ], + [ + "ri", + "cal" + ], + [ + "r", + "ical" + ], + [ + "en", + "c" + ], + [ + "▁carb", + "on" + ], + [ + "▁car", + "bon" + ], + [ + "▁c", + "arbon" + ], + [ + "▁Sa", + "r" + ], + [ + "▁S", + "ar" + ], + [ + "▁he", + "at" + ], + [ + "▁inch", + "es" + ], + [ + "▁inc", + "hes" + ], + [ + "▁in", + "ches" + ], + [ + "▁aff", + "ect" + ], + [ + "▁af", + "fect" + ], + [ + "▁Lik", + "e" + ], + [ + "▁Li", + "ke" + ], + [ + "▁L", + "ike" + ], + [ + "1", + "7" + ], + [ + "▁plane", + "t" + ], + [ + "▁plan", + "et" + ], + [ + "▁bird", + "s" + ], + [ + "▁", + "birds" + ], + [ + "im", + "b" + ], + [ + "i", + "mb" + ], + [ + "▁prim", + "arily" + ], + [ + "E", + "R" + ], + [ + "▁rank", + "ed" + ], + [ + "▁Re", + "t" + ], + [ + "▁R", + "et" + ], + [ + "▁1", + "." + ], + [ + "▁", + "1." + ], + [ + "▁im", + "ag" + ], + [ + "▁kil", + "omet" + ], + [ + "▁ca", + "s" + ], + [ + "▁c", + "as" + ], + [ + "ume", + "d" + ], + [ + "um", + "ed" + ], + [ + "u", + "med" + ], + [ + "▁defe", + "at" + ], + [ + "▁awa", + "re" + ], + [ + "▁aw", + "are" + ], + [ + "▁a", + "ware" + ], + [ + "▁", + "aware" + ], + [ + "▁be", + "y" + ], + [ + "▁b", + "ey" + ], + [ + "▁Ar", + "e" + ], + [ + "▁A", + "re" + ], + [ + "▁caus", + "ing" + ], + [ + "▁ca", + "using" + ], + [ + "is", + "p" + ], + [ + "i", + "sp" + ], + [ + "▁spo", + "t" + ], + [ + "▁sp", + "ot" + ], + [ + "mo", + "sp" + ], + [ + "m", + "osp" + ], + [ + "M", + "S" + ], + [ + "olve", + "d" + ], + [ + "ol", + "ved" + ], + [ + "▁office", + "r" + ], + [ + "▁offic", + "er" + ], + [ + "▁Be", + "fore" + ], + [ + "▁behavi", + "or" + ], + [ + "▁behav", + "ior" + ], + [ + "▁beh", + "avior" + ], + [ + "▁ph", + "il" + ], + [ + "▁impl", + "ement" + ], + [ + "▁imp", + "lement" + ], + [ + "▁bey", + "ond" + ], + [ + "▁mach", + "ine" + ], + [ + "▁manage", + "d" + ], + [ + "▁manag", + "ed" + ], + [ + "▁man", + "aged" + ], + [ + "▁Vo", + "l" + ], + [ + "▁V", + "ol" + ], + [ + "▁tw", + "enty" + ], + [ + "▁hor", + "se" + ], + [ + "▁h", + "orse" + ], + [ + "▁refuse", + "d" + ], + [ + "▁ref", + "used" + ], + [ + "est", + "ic" + ], + [ + "es", + "tic" + ], + [ + "e", + "stic" + ], + [ + "ipl", + "om" + ], + [ + "ente", + "d" + ], + [ + "ent", + "ed" + ], + [ + "en", + "ted" + ], + [ + "▁environment", + "al" + ], + [ + "▁Mich", + "igan" + ], + [ + "▁side", + "s" + ], + [ + "▁sid", + "es" + ], + [ + "▁si", + "des" + ], + [ + "▁s", + "ides" + ], + [ + "▁slee", + "p" + ], + [ + "▁sle", + "ep" + ], + [ + "▁s", + "leep" + ], + [ + "▁Zeal", + "and" + ], + [ + "▁Ze", + "aland" + ], + [ + "ili", + "ng" + ], + [ + "il", + "ing" + ], + [ + "i", + "ling" + ], + [ + "ans", + "ion" + ], + [ + "pa", + "ss" + ], + [ + "p", + "ass" + ], + [ + "▁place", + "s" + ], + [ + "▁plac", + "es" + ], + [ + "▁pl", + "aces" + ], + [ + "▁portra", + "y" + ], + [ + "▁port", + "ray" + ], + [ + "ry", + "e" + ], + [ + "r", + "ye" + ], + [ + "▁dra", + "ft" + ], + [ + "▁dr", + "aft" + ], + [ + "▁d", + "raft" + ], + [ + "▁squ", + "are" + ], + [ + "▁full", + "y" + ], + [ + "▁f", + "ully" + ], + [ + "▁", + "fully" + ], + [ + "-", + "-" + ], + [ + "▁position", + "s" + ], + [ + "▁pos", + "itions" + ], + [ + "▁comb", + "at" + ], + [ + "▁com", + "bat" + ], + [ + "▁c", + "ombat" + ], + [ + "▁Mus", + "eum" + ], + [ + "1", + "3" + ], + [ + "4", + "0" + ], + [ + "▁Sup", + "er" + ], + [ + "▁Su", + "per" + ], + [ + "▁S", + "uper" + ], + [ + "▁Wal", + "es" + ], + [ + "▁Wa", + "les" + ], + [ + "▁W", + "ales" + ], + [ + "pha", + "s" + ], + [ + "ph", + "as" + ], + [ + "p", + "has" + ], + [ + "▁house", + "s" + ], + [ + "▁hous", + "es" + ], + [ + "▁ho", + "uses" + ], + [ + "▁h", + "ouses" + ], + [ + "▁", + "houses" + ], + [ + "▁bill", + "ion" + ], + [ + "▁b", + "illion" + ], + [ + "▁them", + "e" + ], + [ + "▁the", + "me" + ], + [ + "▁Do", + "u" + ], + [ + "▁D", + "ou" + ], + [ + "▁bas", + "ic" + ], + [ + "6", + "0" + ], + [ + "▁yard", + "s" + ], + [ + "▁y", + "ards" + ], + [ + "▁", + "yards" + ], + [ + "▁Corp", + "s" + ], + [ + "▁Cor", + "ps" + ], + [ + "▁C", + "orps" + ], + [ + "ud", + "d" + ], + [ + "u", + "dd" + ], + [ + "irm", + "ed" + ], + [ + "ir", + "med" + ], + [ + "▁ent", + "er" + ], + [ + "▁en", + "ter" + ], + [ + "▁", + "enter" + ], + [ + "▁Ca", + "p" + ], + [ + "▁C", + "ap" + ], + [ + "▁earn", + "ed" + ], + [ + "▁ear", + "ned" + ], + [ + "▁pe", + "t" + ], + [ + "▁p", + "et" + ], + [ + "▁", + "pet" + ], + [ + "▁Sa", + "t" + ], + [ + "▁S", + "at" + ], + [ + "ati", + "k" + ], + [ + "at", + "ik" + ], + [ + "adi", + "um" + ], + [ + "ad", + "ium" + ], + [ + "▁main", + "ly" + ], + [ + "▁High", + "way" + ], + [ + "▁fu", + "el" + ], + [ + "▁f", + "uel" + ], + [ + "▁mom", + "ent" + ], + [ + "▁mo", + "ment" + ], + [ + "▁li", + "n" + ], + [ + "▁l", + "in" + ], + [ + "▁", + "lin" + ], + [ + "cer", + "s" + ], + [ + "ce", + "rs" + ], + [ + "c", + "ers" + ], + [ + "▁port", + "ion" + ], + [ + "▁p", + "ortion" + ], + [ + "▁", + "portion" + ], + [ + "i", + "h" + ], + [ + "▁4", + "9" + ], + [ + "▁", + "49" + ], + [ + "▁pa", + "ir" + ], + [ + "▁p", + "air" + ], + [ + "▁recei", + "ve" + ], + [ + "▁rece", + "ive" + ], + [ + "▁water", + "s" + ], + [ + "▁wa", + "ters" + ], + [ + "▁w", + "aters" + ], + [ + "▁", + "waters" + ], + [ + "ee", + "n" + ], + [ + "e", + "en" + ], + [ + "V", + "D" + ], + [ + "▁give", + "s" + ], + [ + "▁g", + "ives" + ], + [ + "▁Mini", + "ster" + ], + [ + "▁Min", + "ister" + ], + [ + "▁mar", + "riage" + ], + [ + "▁lo", + "ad" + ], + [ + "▁l", + "oad" + ], + [ + "▁", + "load" + ], + [ + "se", + "t" + ], + [ + "s", + "et" + ], + [ + "▁combine", + "d" + ], + [ + "▁comb", + "ined" + ], + [ + "▁Comm", + "it" + ], + [ + "▁Com", + "mit" + ], + [ + "ig", + "r" + ], + [ + "i", + "gr" + ], + [ + "▁si", + "ster" + ], + [ + "▁s", + "ister" + ], + [ + "▁mark", + "ed" + ], + [ + "▁m", + "arked" + ], + [ + "ur", + "a" + ], + [ + "u", + "ra" + ], + [ + "▁Ara", + "b" + ], + [ + "▁Ar", + "ab" + ], + [ + "▁A", + "rab" + ], + [ + "▁be", + "aut" + ], + [ + "la", + "m" + ], + [ + "l", + "am" + ], + [ + "ound", + "ed" + ], + [ + "oun", + "ded" + ], + [ + "▁De", + "f" + ], + [ + "▁D", + "ef" + ], + [ + "▁on", + "to" + ], + [ + "▁", + "onto" + ], + [ + "ri", + "k" + ], + [ + "r", + "ik" + ], + [ + "▁J", + "o" + ], + [ + "▁traff", + "ic" + ], + [ + "▁tra", + "ffic" + ], + [ + "▁sh", + "all" + ], + [ + "▁s", + "hall" + ], + [ + "ish", + "op" + ], + [ + "is", + "hop" + ], + [ + "i", + "shop" + ], + [ + "▁Fou", + "r" + ], + [ + "▁Fo", + "ur" + ], + [ + "▁F", + "our" + ], + [ + "uo", + "us" + ], + [ + "u", + "ous" + ], + [ + "il", + "i" + ], + [ + "i", + "li" + ], + [ + "▁fa", + "ir" + ], + [ + "▁f", + "air" + ], + [ + "▁T", + "w" + ], + [ + "▁init", + "i" + ], + [ + "▁in", + "iti" + ], + [ + "▁leader", + "s" + ], + [ + "▁lead", + "ers" + ], + [ + "▁le", + "aders" + ], + [ + "use", + "s" + ], + [ + "us", + "es" + ], + [ + "u", + "ses" + ], + [ + "▁se", + "g" + ], + [ + "▁s", + "eg" + ], + [ + "▁di", + "agn" + ], + [ + "▁scient", + "ific" + ], + [ + "▁Comm", + "ission" + ], + [ + "▁Com", + "mission" + ], + [ + "lie", + "s" + ], + [ + "li", + "es" + ], + [ + "l", + "ies" + ], + [ + "rat", + "ive" + ], + [ + "r", + "ative" + ], + [ + "ua", + "te" + ], + [ + "u", + "ate" + ], + [ + "▁protect", + "ion" + ], + [ + "▁prote", + "ction" + ], + [ + "▁prot", + "ection" + ], + [ + "▁recent", + "ly" + ], + [ + "▁rec", + "ently" + ], + [ + "▁No", + "w" + ], + [ + "▁N", + "ow" + ], + [ + "▁comp", + "os" + ], + [ + "▁com", + "pos" + ], + [ + "son", + "alite" + ], + [ + "▁Pa", + "n" + ], + [ + "▁P", + "an" + ], + [ + "adin", + "g" + ], + [ + "adi", + "ng" + ], + [ + "ad", + "ing" + ], + [ + "a", + "ding" + ], + [ + "▁193", + "0" + ], + [ + "▁19", + "30" + ], + [ + "▁slight", + "ly" + ], + [ + "clus", + "ion" + ], + [ + "cl", + "usion" + ], + [ + "▁sex", + "ual" + ], + [ + "▁se", + "xual" + ], + [ + "y", + "o" + ], + [ + "▁pa", + "ge" + ], + [ + "▁p", + "age" + ], + [ + "▁", + "page" + ], + [ + "▁stre", + "ss" + ], + [ + "▁str", + "ess" + ], + [ + "▁st", + "ress" + ], + [ + "▁pa", + "l" + ], + [ + "▁p", + "al" + ], + [ + "▁over", + "s" + ], + [ + "▁ov", + "ers" + ], + [ + "▁o", + "vers" + ], + [ + "▁", + "overs" + ], + [ + "e", + "f" + ], + [ + "▁comp", + "ar" + ], + [ + "▁com", + "par" + ], + [ + "▁Kib", + "en" + ], + [ + "▁Ki", + "ben" + ], + [ + "▁ele", + "ment" + ], + [ + "▁el", + "ement" + ], + [ + "▁e", + "lement" + ], + [ + "▁Ken", + "n" + ], + [ + "▁K", + "enn" + ], + [ + "▁Ed", + "u" + ], + [ + "▁E", + "du" + ], + [ + "▁fev", + "rye" + ], + [ + "▁w", + "or" + ], + [ + "rig", + "ht" + ], + [ + "ri", + "ght" + ], + [ + "r", + "ight" + ], + [ + "▁capac", + "ity" + ], + [ + "▁cap", + "acity" + ], + [ + "▁Thr", + "ee" + ], + [ + "▁Th", + "ree" + ], + [ + "▁divide", + "d" + ], + [ + "▁div", + "ided" + ], + [ + "▁human", + "s" + ], + [ + "▁hum", + "ans" + ], + [ + "▁da", + "t" + ], + [ + "▁d", + "at" + ], + [ + "▁some", + "one" + ], + [ + "▁maxim", + "um" + ], + [ + "▁max", + "imum" + ], + [ + "▁pa", + "id" + ], + [ + "▁p", + "aid" + ], + [ + "▁historic", + "al" + ], + [ + "▁histor", + "ical" + ], + [ + "▁hist", + "orical" + ], + [ + "▁Wal", + "l" + ], + [ + "▁Wa", + "ll" + ], + [ + "▁W", + "all" + ], + [ + "▁eye", + "s" + ], + [ + "▁ey", + "es" + ], + [ + "▁ag", + "o" + ], + [ + "▁a", + "go" + ], + [ + "▁", + "ago" + ], + [ + "d", + "s" + ], + [ + "▁mi", + "s" + ], + [ + "▁m", + "is" + ], + [ + "▁spe", + "ech" + ], + [ + "▁Squad", + "ron" + ], + [ + "▁Squ", + "adron" + ], + [ + "▁ref", + "lect" + ], + [ + "▁Bo", + "w" + ], + [ + "▁B", + "ow" + ], + [ + "▁Pres", + "s" + ], + [ + "▁Pre", + "ss" + ], + [ + "▁Pr", + "ess" + ], + [ + "▁P", + "ress" + ], + [ + "▁plat", + "form" + ], + [ + "▁contro", + "vers" + ], + [ + "▁Car", + "l" + ], + [ + "unct", + "ion" + ], + [ + "un", + "ction" + ], + [ + "mo", + "re" + ], + [ + "m", + "ore" + ], + [ + "E", + "S" + ], + [ + "▁bot", + "t" + ], + [ + "▁bo", + "tt" + ], + [ + "▁b", + "ott" + ], + [ + "▁edit", + "ion" + ], + [ + "▁ed", + "ition" + ], + [ + "▁e", + "dition" + ], + [ + "▁dem", + "and" + ], + [ + "▁cult", + "ural" + ], + [ + "▁c", + "ultural" + ], + [ + "▁Wa", + "l" + ], + [ + "▁W", + "al" + ], + [ + "▁dou", + "b" + ], + [ + "▁do", + "ub" + ], + [ + "▁d", + "oub" + ], + [ + "▁gra", + "ph" + ], + [ + "▁gr", + "aph" + ], + [ + "▁g", + "raph" + ], + [ + "▁eas", + "y" + ], + [ + "▁e", + "asy" + ], + [ + "▁h", + "un" + ], + [ + "▁report", + "s" + ], + [ + "▁rep", + "orts" + ], + [ + "▁re", + "ports" + ], + [ + "▁d", + "w" + ], + [ + "oti", + "c" + ], + [ + "ot", + "ic" + ], + [ + "o", + "tic" + ], + [ + "▁rou", + "gh" + ], + [ + "▁r", + "ough" + ], + [ + "▁", + "rough" + ], + [ + "▁Car", + "e" + ], + [ + "▁Ca", + "re" + ], + [ + "▁C", + "are" + ], + [ + "ort", + "er" + ], + [ + "or", + "ter" + ], + [ + "▁hosp", + "ital" + ], + [ + "▁h", + "ospital" + ], + [ + "▁Sec", + "ret" + ], + [ + "▁ex", + "act" + ], + [ + "▁Pe", + "ople" + ], + [ + "▁spe", + "ak" + ], + [ + "▁De", + "n" + ], + [ + "▁D", + "en" + ], + [ + "ique", + "s" + ], + [ + "iqu", + "es" + ], + [ + "i", + "ques" + ], + [ + "▁conv", + "er" + ], + [ + "▁con", + "ver" + ], + [ + "▁Cla", + "ss" + ], + [ + "▁Cl", + "ass" + ], + [ + "▁C", + "lass" + ], + [ + "▁Dem", + "ocr" + ], + [ + "▁char", + "ge" + ], + [ + "▁", + "charge" + ], + [ + "▁ho", + "r" + ], + [ + "▁h", + "or" + ], + [ + "▁", + "hor" + ], + [ + "▁exp", + "ress" + ], + [ + "▁ex", + "press" + ], + [ + "iste", + "d" + ], + [ + "ist", + "ed" + ], + [ + "is", + "ted" + ], + [ + "i", + "sted" + ], + [ + "▁prep", + "ar" + ], + [ + "▁pre", + "par" + ], + [ + "▁Mou", + "n" + ], + [ + "▁Mo", + "un" + ], + [ + "▁M", + "oun" + ], + [ + "▁seven", + "t" + ], + [ + "▁se", + "vent" + ], + [ + "▁d", + "iplom" + ], + [ + "▁inj", + "ury" + ], + [ + "▁Serv", + "ice" + ], + [ + "▁u", + "r" + ], + [ + "▁", + "ur" + ], + [ + "▁nat", + "ive" + ], + [ + "▁n", + "ative" + ], + [ + "▁p", + "un" + ], + [ + "▁ga", + "r" + ], + [ + "▁g", + "ar" + ], + [ + "▁", + "gar" + ], + [ + "ant", + "ly" + ], + [ + "it", + "t" + ], + [ + "i", + "tt" + ], + [ + "ism", + "s" + ], + [ + "is", + "ms" + ], + [ + "▁roy", + "al" + ], + [ + "▁ro", + "yal" + ], + [ + "▁r", + "oyal" + ], + [ + "oc", + "h" + ], + [ + "o", + "ch" + ], + [ + "ita", + "n" + ], + [ + "it", + "an" + ], + [ + "▁Te", + "n" + ], + [ + "▁T", + "en" + ], + [ + "ule", + "s" + ], + [ + "ul", + "es" + ], + [ + "u", + "les" + ], + [ + "▁3", + "9" + ], + [ + "▁", + "39" + ], + [ + "▁mo", + "b" + ], + [ + "▁m", + "ob" + ], + [ + "▁del", + "iver" + ], + [ + "cle", + "s" + ], + [ + "cl", + "es" + ], + [ + "c", + "les" + ], + [ + "▁Le", + "g" + ], + [ + "▁L", + "eg" + ], + [ + "▁I", + "S" + ], + [ + "▁", + "IS" + ], + [ + "▁40", + "0" + ], + [ + "▁4", + "00" + ], + [ + "▁", + "400" + ], + [ + "▁common", + "ly" + ], + [ + "▁Sa", + "int" + ], + [ + "▁S", + "aint" + ], + [ + "▁command", + "er" + ], + [ + "▁comm", + "ander" + ], + [ + "cl", + "aim" + ], + [ + "▁dy", + "n" + ], + [ + "▁d", + "yn" + ], + [ + "erse", + "y" + ], + [ + "ers", + "ey" + ], + [ + "er", + "sey" + ], + [ + "umb", + "er" + ], + [ + "um", + "ber" + ], + [ + "u", + "mber" + ], + [ + "▁ref", + "orm" + ], + [ + "▁re", + "form" + ], + [ + "▁Col", + "umb" + ], + [ + "▁found", + "ed" + ], + [ + "▁f", + "ounded" + ], + [ + "▁Pos", + "t" + ], + [ + "▁Po", + "st" + ], + [ + "▁P", + "ost" + ], + [ + "▁tri", + "al" + ], + [ + "▁tr", + "ial" + ], + [ + "▁t", + "rial" + ], + [ + "▁Cap", + "t" + ], + [ + "▁Ca", + "pt" + ], + [ + "▁C", + "apt" + ], + [ + "▁mur", + "der" + ], + [ + "▁surv", + "ey" + ], + [ + "▁sur", + "vey" + ], + [ + "▁On", + "ce" + ], + [ + "▁O", + "nce" + ], + [ + "▁att", + "end" + ], + [ + "▁South", + "ern" + ], + [ + "▁Sout", + "hern" + ], + [ + "▁S", + "outhern" + ], + [ + "2", + "5" + ], + [ + "▁official", + "s" + ], + [ + "▁offic", + "ials" + ], + [ + "▁refere", + "nce" + ], + [ + "▁refer", + "ence" + ], + [ + "▁re", + "ference" + ], + [ + "▁17", + "9" + ], + [ + "▁great", + "est" + ], + [ + "1", + "4" + ], + [ + "▁dis", + "m" + ], + [ + "▁di", + "sm" + ], + [ + "▁d", + "ism" + ], + [ + "▁car", + "d" + ], + [ + "▁ca", + "rd" + ], + [ + "▁c", + "ard" + ], + [ + "▁", + "card" + ], + [ + "▁Thr", + "ough" + ], + [ + "▁Th", + "rough" + ], + [ + "▁comment", + "ed" + ], + [ + "▁comm", + "ented" + ], + [ + "▁com", + "mented" + ], + [ + "▁Go", + "od" + ], + [ + "▁G", + "ood" + ], + [ + "com", + "e" + ], + [ + "co", + "me" + ], + [ + "c", + "ome" + ], + [ + "▁cor", + "rect" + ], + [ + "▁c", + "orrect" + ], + [ + "▁I", + "M" + ], + [ + "▁", + "IM" + ], + [ + "ma", + "s" + ], + [ + "m", + "as" + ], + [ + "▁sing", + "er" + ], + [ + "▁sin", + "ger" + ], + [ + "▁s", + "inger" + ], + [ + "▁ens", + "ure" + ], + [ + "▁fra", + "n" + ], + [ + "▁fr", + "an" + ], + [ + "▁f", + "ran" + ], + [ + "▁mov", + "ie" + ], + [ + "▁mo", + "vie" + ], + [ + "▁sett", + "ing" + ], + [ + "▁set", + "ting" + ], + [ + "ceed", + "ed" + ], + [ + "ce", + "eded" + ], + [ + "ner", + "s" + ], + [ + "ne", + "rs" + ], + [ + "n", + "ers" + ], + [ + "I", + "D" + ], + [ + "▁cha", + "p" + ], + [ + "▁ch", + "ap" + ], + [ + "ul", + "s" + ], + [ + "u", + "ls" + ], + [ + "anne", + "l" + ], + [ + "ann", + "el" + ], + [ + "an", + "nel" + ], + [ + "/", + "/" + ], + [ + "▁seem", + "s" + ], + [ + "▁see", + "ms" + ], + [ + "▁se", + "ems" + ], + [ + "at", + "re" + ], + [ + "a", + "tre" + ], + [ + "▁en", + "emy" + ], + [ + "▁198", + "9" + ], + [ + "▁19", + "89" + ], + [ + "wa", + "ter" + ], + [ + "w", + "ater" + ], + [ + "▁em", + "phas" + ], + [ + "ri", + "g" + ], + [ + "r", + "ig" + ], + [ + "▁tel", + "l" + ], + [ + "▁te", + "ll" + ], + [ + "▁t", + "ell" + ], + [ + "▁C", + "O" + ], + [ + "▁", + "CO" + ], + [ + "▁Cath", + "olic" + ], + [ + "▁Commit", + "tee" + ], + [ + "and", + "a" + ], + [ + "an", + "da" + ], + [ + "▁col", + "d" + ], + [ + "▁co", + "ld" + ], + [ + "▁c", + "old" + ], + [ + "▁pref", + "er" + ], + [ + "▁pre", + "fer" + ], + [ + "▁imp", + "l" + ], + [ + "▁im", + "pl" + ], + [ + "▁perf", + "ect" + ], + [ + "▁per", + "fect" + ], + [ + "▁op", + "in" + ], + [ + "▁o", + "pin" + ], + [ + "▁ta", + "sk" + ], + [ + "▁t", + "ask" + ], + [ + "▁Tr", + "e" + ], + [ + "▁T", + "re" + ], + [ + "▁extr", + "em" + ], + [ + "▁ext", + "rem" + ], + [ + "▁ill", + "ust" + ], + [ + "▁O", + "p" + ], + [ + "▁Su", + "b" + ], + [ + "▁S", + "ub" + ], + [ + "ke", + "y" + ], + [ + "k", + "ey" + ], + [ + "▁Dire", + "ct" + ], + [ + "▁Di", + "rect" + ], + [ + "▁D", + "irect" + ], + [ + "▁arr", + "est" + ], + [ + "▁ar", + "rest" + ], + [ + "▁frequent", + "ly" + ], + [ + "▁frequ", + "ently" + ], + [ + "per", + "or" + ], + [ + "pe", + "ror" + ], + [ + ":", + "//" + ], + [ + "▁Va", + "n" + ], + [ + "▁V", + "an" + ], + [ + "ste", + "in" + ], + [ + "▁play", + "s" + ], + [ + "▁pl", + "ays" + ], + [ + "omer", + "s" + ], + [ + "ome", + "rs" + ], + [ + "om", + "ers" + ], + [ + "o", + "mers" + ], + [ + "▁site", + "s" + ], + [ + "▁sit", + "es" + ], + [ + "▁si", + "tes" + ], + [ + "▁s", + "ites" + ], + [ + "▁e", + "at" + ], + [ + "▁cho", + "ice" + ], + [ + "▁ch", + "oice" + ], + [ + "ole", + "c" + ], + [ + "ol", + "ec" + ], + [ + "stit", + "ution" + ], + [ + "▁Dan", + "iel" + ], + [ + "▁D", + "aniel" + ], + [ + "▁Bo", + "b" + ], + [ + "▁B", + "ob" + ], + [ + "▁", + "Bob" + ], + [ + "h", + "i" + ], + [ + "▁Win", + "d" + ], + [ + "▁Wi", + "nd" + ], + [ + "▁W", + "ind" + ], + [ + "edo", + "m" + ], + [ + "ed", + "om" + ], + [ + "e", + "dom" + ], + [ + "▁spec", + "t" + ], + [ + "▁spe", + "ct" + ], + [ + "▁sp", + "ect" + ], + [ + "▁s", + "pect" + ], + [ + "▁cere", + "m" + ], + [ + "▁cer", + "em" + ], + [ + "▁ce", + "rem" + ], + [ + "▁attend", + "ed" + ], + [ + "▁att", + "ended" + ], + [ + "▁Ga", + "r" + ], + [ + "▁G", + "ar" + ], + [ + "▁Hist", + "or" + ], + [ + "▁His", + "tor" + ], + [ + "▁any", + "thing" + ], + [ + "▁Cros", + "s" + ], + [ + "▁Cro", + "ss" + ], + [ + "▁Cr", + "oss" + ], + [ + "▁C", + "ross" + ], + [ + "▁Lif", + "e" + ], + [ + "▁Li", + "fe" + ], + [ + "▁L", + "ife" + ], + [ + "▁opportun", + "ity" + ], + [ + "▁Scot", + "land" + ], + [ + "▁Ma", + "x" + ], + [ + "▁M", + "ax" + ], + [ + "▁we", + "ak" + ], + [ + "▁eg", + "g" + ], + [ + "▁e", + "gg" + ], + [ + "▁did", + "n" + ], + [ + "▁current", + "ly" + ], + [ + "▁cur", + "rently" + ], + [ + "▁Ox", + "ford" + ], + [ + "▁explain", + "ed" + ], + [ + "▁expl", + "ained" + ], + [ + "S", + "t" + ], + [ + "el", + "a" + ], + [ + "e", + "la" + ], + [ + "▁ac", + "ad" + ], + [ + "▁Br", + "e" + ], + [ + "▁B", + "re" + ], + [ + "▁ultimate", + "ly" + ], + [ + "▁ult", + "imately" + ], + [ + "▁Bos", + "t" + ], + [ + "▁Bo", + "st" + ], + [ + "▁B", + "ost" + ], + [ + "▁ac", + "id" + ], + [ + "▁go", + "d" + ], + [ + "▁g", + "od" + ], + [ + "▁Jew", + "ish" + ], + [ + "▁Ka", + "r" + ], + [ + "▁K", + "ar" + ], + [ + "ine", + "t" + ], + [ + "in", + "et" + ], + [ + "i", + "net" + ], + [ + "ider", + "s" + ], + [ + "ide", + "rs" + ], + [ + "id", + "ers" + ], + [ + "i", + "ders" + ], + [ + "▁ag", + "ricult" + ], + [ + "▁Ir", + "e" + ], + [ + "▁I", + "re" + ], + [ + "▁scientist", + "s" + ], + [ + "▁scient", + "ists" + ], + [ + "▁Jon", + "es" + ], + [ + "▁Jo", + "nes" + ], + [ + "▁J", + "ones" + ], + [ + "▁Je", + "ff" + ], + [ + "▁J", + "eff" + ], + [ + "in", + "y" + ], + [ + "i", + "ny" + ], + [ + "▁prov", + "iding" + ], + [ + "▁ran", + "g" + ], + [ + "▁ra", + "ng" + ], + [ + "▁r", + "ang" + ], + [ + "▁", + "rang" + ], + [ + "▁st", + "one" + ], + [ + "▁", + "stone" + ], + [ + "▁conver", + "s" + ], + [ + "▁conv", + "ers" + ], + [ + "▁con", + "vers" + ], + [ + "ish", + "er" + ], + [ + "is", + "her" + ], + [ + "▁D", + "VD" + ], + [ + "res", + "p" + ], + [ + "re", + "sp" + ], + [ + "r", + "esp" + ], + [ + "int", + "er" + ], + [ + "in", + "ter" + ], + [ + "ol", + "a" + ], + [ + "o", + "la" + ], + [ + "bor", + "n" + ], + [ + "b", + "orn" + ], + [ + "▁Wat", + "er" + ], + [ + "▁Wa", + "ter" + ], + [ + "▁W", + "ater" + ], + [ + "ink", + "ing" + ], + [ + "in", + "king" + ], + [ + "na", + "m" + ], + [ + "n", + "am" + ], + [ + "▁Ire", + "land" + ], + [ + "▁Ir", + "eland" + ], + [ + "▁ro", + "b" + ], + [ + "▁r", + "ob" + ], + [ + "▁", + "rob" + ], + [ + "▁reason", + "s" + ], + [ + "▁re", + "asons" + ], + [ + "▁at", + "mosp" + ], + [ + "▁co", + "ol" + ], + [ + "▁c", + "ool" + ], + [ + "ature", + "s" + ], + [ + "at", + "ures" + ], + [ + "a", + "tures" + ], + [ + "▁project", + "s" + ], + [ + "▁18", + "3" + ], + [ + "aper", + "s" + ], + [ + "ape", + "rs" + ], + [ + "ap", + "ers" + ], + [ + "a", + "pers" + ], + [ + "▁fam", + "ous" + ], + [ + "▁f", + "amous" + ], + [ + "▁Sta", + "n" + ], + [ + "▁St", + "an" + ], + [ + "▁bu", + "d" + ], + [ + "▁b", + "ud" + ], + [ + "shi", + "re" + ], + [ + "sh", + "ire" + ], + [ + "s", + "hire" + ], + [ + "ew", + "ay" + ], + [ + "e", + "way" + ], + [ + "▁resident", + "s" + ], + [ + "▁resid", + "ents" + ], + [ + "▁res", + "idents" + ], + [ + "▁fi", + "x" + ], + [ + "▁f", + "ix" + ], + [ + "▁end", + "ing" + ], + [ + "▁en", + "ding" + ], + [ + "▁", + "ending" + ], + [ + "os", + "ure" + ], + [ + "▁su", + "c" + ], + [ + "▁s", + "uc" + ], + [ + "▁match", + "es" + ], + [ + "▁mat", + "ches" + ], + [ + "▁m", + "atches" + ], + [ + "▁a", + "im" + ], + [ + "▁", + "aim" + ], + [ + "om", + "a" + ], + [ + "o", + "ma" + ], + [ + "▁spr", + "ing" + ], + [ + "▁sp", + "ring" + ], + [ + "▁s", + "pring" + ], + [ + "▁digit", + "al" + ], + [ + "▁dig", + "ital" + ], + [ + "▁drop", + "ped" + ], + [ + "▁dro", + "pped" + ], + [ + "▁attempt", + "s" + ], + [ + "▁Cre", + "ek" + ], + [ + "▁C", + "reek" + ], + [ + "▁the", + "rap" + ], + [ + "▁one", + "s" + ], + [ + "▁on", + "es" + ], + [ + "▁o", + "nes" + ], + [ + "▁", + "ones" + ], + [ + "imen", + "s" + ], + [ + "ime", + "ns" + ], + [ + "im", + "ens" + ], + [ + "ha", + "t" + ], + [ + "h", + "at" + ], + [ + "▁ris", + "e" + ], + [ + "▁ri", + "se" + ], + [ + "▁r", + "ise" + ], + [ + "▁", + "rise" + ], + [ + "▁Govern", + "ment" + ], + [ + "hel", + "ess" + ], + [ + "he", + "less" + ], + [ + "h", + "eless" + ], + [ + "▁commun", + "ities" + ], + [ + "▁hy", + "p" + ], + [ + "▁h", + "yp" + ], + [ + "▁piece", + "s" + ], + [ + "▁pie", + "ces" + ], + [ + "▁pi", + "eces" + ], + [ + "▁int", + "ellig" + ], + [ + "è", + "v" + ], + [ + "ia", + "s" + ], + [ + "i", + "as" + ], + [ + "▁Fo", + "x" + ], + [ + "▁F", + "ox" + ], + [ + "▁win", + "g" + ], + [ + "▁w", + "ing" + ], + [ + "▁", + "wing" + ], + [ + "▁H", + "a" + ], + [ + "▁Fur", + "ther" + ], + [ + "▁F", + "urther" + ], + [ + "▁Pro", + "t" + ], + [ + "▁Pr", + "ot" + ], + [ + "▁P", + "rot" + ], + [ + "▁suggest", + "s" + ], + [ + "▁writer", + "s" + ], + [ + "▁write", + "rs" + ], + [ + "▁writ", + "ers" + ], + [ + "▁econom", + "y" + ], + [ + "▁ec", + "onomy" + ], + [ + "▁Ch", + "ris" + ], + [ + "▁exp", + "ect" + ], + [ + "▁ex", + "pect" + ], + [ + "▁H", + "y" + ], + [ + "▁appar", + "ent" + ], + [ + "▁app", + "arent" + ], + [ + "▁h", + "us" + ], + [ + "▁", + "hus" + ], + [ + "▁Lu", + "c" + ], + [ + "▁L", + "uc" + ], + [ + "▁Acad", + "emy" + ], + [ + "ici", + "ne" + ], + [ + "ic", + "ine" + ], + [ + "▁bod", + "ies" + ], + [ + "▁b", + "odies" + ], + [ + "▁Th", + "ough" + ], + [ + "▁m", + "ut" + ], + [ + "▁conclude", + "d" + ], + [ + "▁conclud", + "ed" + ], + [ + "w", + "rit" + ], + [ + "▁format", + "ion" + ], + [ + "▁form", + "ation" + ], + [ + "▁", + "formation" + ], + [ + "ization", + "s" + ], + [ + "iz", + "ations" + ], + [ + "▁Ga", + "l" + ], + [ + "▁G", + "al" + ], + [ + "▁vis", + "ual" + ], + [ + "▁acc", + "ur" + ], + [ + "▁William", + "s" + ], + [ + "▁express", + "ed" + ], + [ + "▁exp", + "ressed" + ], + [ + "▁Es", + "p" + ], + [ + "▁E", + "sp" + ], + [ + "mir", + "al" + ], + [ + "mi", + "ral" + ], + [ + "m", + "iral" + ], + [ + "▁do", + "ll" + ], + [ + "▁d", + "oll" + ], + [ + "▁exist", + "ing" + ], + [ + "▁ex", + "isting" + ], + [ + "▁Le", + "e" + ], + [ + "▁L", + "ee" + ], + [ + "▁ta", + "il" + ], + [ + "▁t", + "ail" + ], + [ + "▁", + "tail" + ], + [ + "th", + "ur" + ], + [ + "▁fre", + "sh" + ], + [ + "▁fr", + "esh" + ], + [ + "▁f", + "resh" + ], + [ + "▁rule", + "s" + ], + [ + "▁rul", + "es" + ], + [ + "▁ru", + "les" + ], + [ + "▁r", + "ules" + ], + [ + "▁import", + "ance" + ], + [ + "▁15", + "0" + ], + [ + "▁1", + "50" + ], + [ + "ice", + "d" + ], + [ + "ic", + "ed" + ], + [ + "i", + "ced" + ], + [ + "▁mo", + "uth" + ], + [ + "▁m", + "outh" + ], + [ + "▁", + "mouth" + ], + [ + "▁home", + "s" + ], + [ + "▁hom", + "es" + ], + [ + "▁ho", + "mes" + ], + [ + "▁h", + "omes" + ], + [ + "▁Ital", + "y" + ], + [ + "▁It", + "aly" + ], + [ + "▁wor", + "th" + ], + [ + "▁w", + "orth" + ], + [ + "▁", + "worth" + ], + [ + "b", + "l" + ], + [ + "ó", + "n" + ], + [ + "▁saf", + "e" + ], + [ + "▁sa", + "fe" + ], + [ + "▁s", + "afe" + ], + [ + "iment", + "s" + ], + [ + "imen", + "ts" + ], + [ + "im", + "ents" + ], + [ + "i", + "ments" + ], + [ + "▁sch", + "e" + ], + [ + "▁sc", + "he" + ], + [ + "▁s", + "che" + ], + [ + "▁", + "sche" + ], + [ + "▁advance", + "d" + ], + [ + "▁adv", + "anced" + ], + [ + "▁ad", + "vanced" + ], + [ + "▁Ti", + "m" + ], + [ + "▁T", + "im" + ], + [ + "▁da", + "nce" + ], + [ + "▁d", + "ance" + ], + [ + "ves", + "t" + ], + [ + "ve", + "st" + ], + [ + "v", + "est" + ], + [ + "▁sh", + "ape" + ], + [ + "▁Par", + "liament" + ], + [ + "▁join", + "t" + ], + [ + "▁jo", + "int" + ], + [ + "▁j", + "oint" + ], + [ + "▁m", + "o" + ], + [ + "▁", + "mo" + ], + [ + "▁her", + "o" + ], + [ + "▁he", + "ro" + ], + [ + "▁h", + "ero" + ], + [ + "▁", + "hero" + ], + [ + "ane", + "s" + ], + [ + "an", + "es" + ], + [ + "a", + "nes" + ], + [ + "▁Midd", + "le" + ], + [ + "▁Mid", + "dle" + ], + [ + "▁mic", + "ro" + ], + [ + "▁m", + "icro" + ], + [ + "▁Lan", + "d" + ], + [ + "▁La", + "nd" + ], + [ + "▁L", + "and" + ], + [ + "one", + "nt" + ], + [ + "on", + "ent" + ], + [ + "▁phil", + "os" + ], + [ + "wh", + "ile" + ], + [ + "▁ve", + "get" + ], + [ + "▁er", + "a" + ], + [ + "▁e", + "ra" + ], + [ + "▁", + "era" + ], + [ + "▁att", + "rib" + ], + [ + "▁Con", + "f" + ], + [ + "▁instr", + "ument" + ], + [ + "▁app", + "ropri" + ], + [ + "▁", + "appropri" + ], + [ + "▁author", + "ity" + ], + [ + "▁Na", + "t" + ], + [ + "▁N", + "at" + ], + [ + "▁po", + "et" + ], + [ + "▁Te", + "m" + ], + [ + "▁T", + "em" + ], + [ + "á", + "n" + ], + [ + "iller", + "y" + ], + [ + "ille", + "ry" + ], + [ + "ill", + "ery" + ], + [ + "s", + "s" + ], + [ + "▁sa", + "c" + ], + [ + "▁s", + "ac" + ], + [ + "▁transf", + "orm" + ], + [ + "▁trans", + "form" + ], + [ + "▁un", + "d" + ], + [ + "▁u", + "nd" + ], + [ + "▁", + "und" + ], + [ + "▁4", + "7" + ], + [ + "▁", + "47" + ], + [ + "ieu", + "t" + ], + [ + "ie", + "ut" + ], + [ + "i", + "eut" + ], + [ + "▁be", + "at" + ], + [ + "▁", + "beat" + ], + [ + "e", + "z" + ], + [ + "ose", + "n" + ], + [ + "os", + "en" + ], + [ + "o", + "sen" + ], + [ + "▁fee", + "d" + ], + [ + "▁fe", + "ed" + ], + [ + "▁f", + "eed" + ], + [ + "▁hear", + "d" + ], + [ + "▁he", + "ard" + ], + [ + "th", + "let" + ], + [ + "▁own", + "ed" + ], + [ + "▁ow", + "ned" + ], + [ + "▁", + "owned" + ], + [ + "▁stat", + "ing" + ], + [ + "▁st", + "ating" + ], + [ + "▁Lit", + "tle" + ], + [ + "per", + "ial" + ], + [ + "pe", + "rial" + ], + [ + "▁Tr", + "i" + ], + [ + "▁T", + "ri" + ], + [ + "orse", + "s" + ], + [ + "ors", + "es" + ], + [ + "or", + "ses" + ], + [ + "▁y", + "ard" + ], + [ + "▁", + "yard" + ], + [ + "oi", + "s" + ], + [ + "o", + "is" + ], + [ + "ogra", + "p" + ], + [ + "og", + "rap" + ], + [ + "▁w", + "it" + ], + [ + "I", + "n" + ], + [ + "ra", + "s" + ], + [ + "r", + "as" + ], + [ + "▁fail", + "ure" + ], + [ + "▁go", + "es" + ], + [ + "▁g", + "oes" + ], + [ + "▁cr", + "y" + ], + [ + "▁c", + "ry" + ], + [ + "▁does", + "n" + ], + [ + "anta", + "sy" + ], + [ + "ant", + "asy" + ], + [ + "▁health", + "y" + ], + [ + "▁heal", + "thy" + ], + [ + "▁", + "healthy" + ], + [ + "▁Jes", + "us" + ], + [ + "▁determ", + "ine" + ], + [ + "▁bord", + "er" + ], + [ + "▁bor", + "der" + ], + [ + "▁b", + "order" + ], + [ + "▁Tea", + "m" + ], + [ + "▁Te", + "am" + ], + [ + "▁influence", + "d" + ], + [ + "▁influ", + "enced" + ], + [ + "▁Av", + "en" + ], + [ + "▁A", + "ven" + ], + [ + "▁Bost", + "on" + ], + [ + "▁Bos", + "ton" + ], + [ + "▁Bo", + "ston" + ], + [ + "▁image", + "s" + ], + [ + "▁imag", + "es" + ], + [ + "▁im", + "ages" + ], + [ + "▁Cl", + "ark" + ], + [ + "▁ha", + "ir" + ], + [ + "▁h", + "air" + ], + [ + "▁cro", + "w" + ], + [ + "▁cr", + "ow" + ], + [ + "▁c", + "row" + ], + [ + "▁transfer", + "red" + ], + [ + "▁flo", + "or" + ], + [ + "▁fl", + "oor" + ], + [ + "▁sou", + "ght" + ], + [ + "▁so", + "ught" + ], + [ + "▁s", + "ought" + ], + [ + "▁mast", + "er" + ], + [ + "▁mas", + "ter" + ], + [ + "▁ma", + "ster" + ], + [ + "▁m", + "aster" + ], + [ + "▁", + "master" + ], + [ + "E", + "A" + ], + [ + "bo", + "ok" + ], + [ + "b", + "ook" + ], + [ + "▁concer", + "t" + ], + [ + "▁conc", + "ert" + ], + [ + "▁metre", + "s" + ], + [ + "▁met", + "res" + ], + [ + "▁For", + "m" + ], + [ + "▁Fo", + "rm" + ], + [ + "▁F", + "orm" + ], + [ + "▁Ra", + "m" + ], + [ + "▁R", + "am" + ], + [ + "▁jo", + "in" + ], + [ + "▁j", + "oin" + ], + [ + "▁Fin", + "al" + ], + [ + "▁Fi", + "nal" + ], + [ + "▁F", + "inal" + ], + [ + "▁surround", + "ing" + ], + [ + "▁Sto", + "ne" + ], + [ + "▁St", + "one" + ], + [ + "▁", + "#" + ], + [ + "▁dro", + "p" + ], + [ + "▁dr", + "op" + ], + [ + "▁d", + "rop" + ], + [ + "▁", + "drop" + ], + [ + "▁Ci", + "vil" + ], + [ + "▁C", + "ivil" + ], + [ + "▁Sw", + "ed" + ], + [ + "▁differ", + "ence" + ], + [ + "▁dif", + "ference" + ], + [ + "▁Histor", + "y" + ], + [ + "▁Hist", + "ory" + ], + [ + "▁model", + "s" + ], + [ + "▁mode", + "ls" + ], + [ + "▁mod", + "els" + ], + [ + "▁cer", + "t" + ], + [ + "▁c", + "ert" + ], + [ + "▁cons", + "equ" + ], + [ + "▁con", + "sequ" + ], + [ + "pr", + "o" + ], + [ + "p", + "ro" + ], + [ + "hip", + "s" + ], + [ + "hi", + "ps" + ], + [ + "h", + "ips" + ], + [ + "▁tell", + "s" + ], + [ + "▁tel", + "ls" + ], + [ + "▁t", + "ells" + ], + [ + "▁artist", + "s" + ], + [ + "▁art", + "ists" + ], + [ + "▁North", + "ern" + ], + [ + "▁Nort", + "hern" + ], + [ + "▁coup", + "le" + ], + [ + "▁cou", + "ple" + ], + [ + "▁qu", + "ant" + ], + [ + "▁dr", + "ive" + ], + [ + "▁4", + "8" + ], + [ + "▁", + "48" + ], + [ + "▁indust", + "rial" + ], + [ + "▁second", + "s" + ], + [ + "▁sec", + "onds" + ], + [ + "▁th", + "ir" + ], + [ + "T", + "V" + ], + [ + "aw", + "n" + ], + [ + "a", + "wn" + ], + [ + "▁ta", + "l" + ], + [ + "▁t", + "al" + ], + [ + "▁", + "tal" + ], + [ + "▁Hun", + "g" + ], + [ + "▁Hu", + "ng" + ], + [ + "▁H", + "ung" + ], + [ + "▁Char", + "l" + ], + [ + "▁represent", + "ed" + ], + [ + "▁br", + "a" + ], + [ + "▁b", + "ra" + ], + [ + "▁", + "bra" + ], + [ + "anc", + "ing" + ], + [ + "an", + "cing" + ], + [ + "▁2", + "." + ], + [ + "▁", + "2." + ], + [ + "▁benefit", + "s" + ], + [ + "▁benef", + "its" + ], + [ + "▁bene", + "fits" + ], + [ + "▁follow", + "s" + ], + [ + "▁foll", + "ows" + ], + [ + "▁In", + "t" + ], + [ + "▁I", + "nt" + ], + [ + "rog", + "en" + ], + [ + "ro", + "gen" + ], + [ + "r", + "ogen" + ], + [ + "▁cost", + "s" + ], + [ + "▁cos", + "ts" + ], + [ + "▁co", + "sts" + ], + [ + "▁figure", + "s" + ], + [ + "▁figur", + "es" + ], + [ + "▁fig", + "ures" + ], + [ + "▁Wa", + "y" + ], + [ + "▁W", + "ay" + ], + [ + "ential", + "ly" + ], + [ + "ent", + "ially" + ], + [ + "ian", + "o" + ], + [ + "ia", + "no" + ], + [ + "i", + "ano" + ], + [ + "▁198", + "8" + ], + [ + "▁19", + "88" + ], + [ + "olog", + "ist" + ], + [ + "▁region", + "s" + ], + [ + "▁reg", + "ions" + ], + [ + "ia", + "t" + ], + [ + "i", + "at" + ], + [ + "▁Edu", + "c" + ], + [ + "▁Ed", + "uc" + ], + [ + "▁E", + "duc" + ], + [ + "▁dr", + "um" + ], + [ + "▁d", + "rum" + ], + [ + "▁dist", + "rict" + ], + [ + "▁Il", + "l" + ], + [ + "▁I", + "ll" + ], + [ + "▁claim", + "s" + ], + [ + "▁Publ", + "ic" + ], + [ + "▁P", + "ublic" + ], + [ + "▁strate", + "g" + ], + [ + "▁strat", + "eg" + ], + [ + "▁str", + "ateg" + ], + [ + "▁5", + "5" + ], + [ + "▁", + "55" + ], + [ + "▁count", + "y" + ], + [ + "▁coun", + "ty" + ], + [ + "▁c", + "ounty" + ], + [ + "▁belie", + "f" + ], + [ + "▁bel", + "ief" + ], + [ + "▁every", + "thing" + ], + [ + "▁Mi", + "c" + ], + [ + "▁M", + "ic" + ], + [ + "▁b", + "acter" + ], + [ + "▁define", + "d" + ], + [ + "▁defin", + "ed" + ], + [ + "▁def", + "ined" + ], + [ + "▁auto", + "m" + ], + [ + "▁aut", + "om" + ], + [ + "▁Ju", + "d" + ], + [ + "▁J", + "ud" + ], + [ + "▁act", + "ing" + ], + [ + "▁ac", + "ting" + ], + [ + "▁confirm", + "ed" + ], + [ + "▁conf", + "irmed" + ], + [ + "ric", + "h" + ], + [ + "ri", + "ch" + ], + [ + "r", + "ich" + ], + [ + "▁Penn", + "s" + ], + [ + "▁Pen", + "ns" + ], + [ + "▁Nor", + "m" + ], + [ + "▁No", + "rm" + ], + [ + "▁N", + "orm" + ], + [ + "▁wall", + "s" + ], + [ + "▁wal", + "ls" + ], + [ + "und", + "er" + ], + [ + "un", + "der" + ], + [ + "ific", + "ally" + ], + [ + "if", + "ically" + ], + [ + "og", + "en" + ], + [ + "o", + "gen" + ], + [ + "▁Princ", + "e" + ], + [ + "▁Pri", + "nce" + ], + [ + "▁Pr", + "ince" + ], + [ + "ole", + "s" + ], + [ + "ol", + "es" + ], + [ + "o", + "les" + ], + [ + "abet", + "h" + ], + [ + "abe", + "th" + ], + [ + "ab", + "eth" + ], + [ + "a", + "beth" + ], + [ + "▁W", + "rit" + ], + [ + "▁per", + "haps" + ], + [ + "▁ro", + "t" + ], + [ + "▁r", + "ot" + ], + [ + "▁", + "rot" + ], + [ + "▁citizen", + "s" + ], + [ + "▁citiz", + "ens" + ], + [ + "ti", + "me" + ], + [ + "t", + "ime" + ], + [ + "ra", + "d" + ], + [ + "r", + "ad" + ], + [ + "▁gain", + "ed" + ], + [ + "▁ga", + "ined" + ], + [ + "▁g", + "ained" + ], + [ + "▁weak", + "en" + ], + [ + "▁we", + "aken" + ], + [ + "▁pal", + "e" + ], + [ + "▁pa", + "le" + ], + [ + "▁p", + "ale" + ], + [ + "▁prove", + "d" + ], + [ + "▁prov", + "ed" + ], + [ + "▁pro", + "ved" + ], + [ + "▁pr", + "oved" + ], + [ + "▁198", + "7" + ], + [ + "▁19", + "87" + ], + [ + "ph", + "y" + ], + [ + "p", + "hy" + ], + [ + "ieut", + "enant" + ], + [ + "▁Inf", + "antry" + ], + [ + "▁un", + "f" + ], + [ + "ro", + "g" + ], + [ + "r", + "og" + ], + [ + "▁Chi", + "ef" + ], + [ + "▁Ch", + "ief" + ], + [ + "▁Carol", + "ina" + ], + [ + "▁Man", + "c" + ], + [ + "▁M", + "anc" + ], + [ + "▁in", + "h" + ], + [ + "▁", + "inh" + ], + [ + "▁a", + "head" + ], + [ + "▁improve", + "d" + ], + [ + "▁improv", + "ed" + ], + [ + "▁impro", + "ved" + ], + [ + "▁impr", + "oved" + ], + [ + "▁call", + "ing" + ], + [ + "▁cal", + "ling" + ], + [ + "▁c", + "alling" + ], + [ + "▁determine", + "d" + ], + [ + "▁determ", + "ined" + ], + [ + "▁tu", + "n" + ], + [ + "▁t", + "un" + ], + [ + "▁mention", + "ed" + ], + [ + "▁ment", + "ioned" + ], + [ + "▁", + "mentioned" + ], + [ + "▁Ot", + "t" + ], + [ + "▁O", + "tt" + ], + [ + "▁ess", + "ential" + ], + [ + "▁194", + "2" + ], + [ + "▁19", + "42" + ], + [ + "▁pass", + "ing" + ], + [ + "▁subsequ", + "ent" + ], + [ + "▁sub", + "sequent" + ], + [ + "▁world", + "wide" + ], + [ + "▁rem", + "ark" + ], + [ + "▁re", + "mark" + ], + [ + "▁inc", + "h" + ], + [ + "▁in", + "ch" + ], + [ + "▁", + "inch" + ], + [ + "▁Maj", + "or" + ], + [ + "▁M", + "ajor" + ], + [ + "▁shel", + "l" + ], + [ + "▁she", + "ll" + ], + [ + "▁sh", + "ell" + ], + [ + "▁s", + "hell" + ], + [ + "ic", + "i" + ], + [ + "i", + "ci" + ], + [ + "▁ga", + "in" + ], + [ + "▁g", + "ain" + ], + [ + "▁", + "gain" + ], + [ + "aye", + "r" + ], + [ + "ay", + "er" + ], + [ + "a", + "yer" + ], + [ + "yl", + "van" + ], + [ + "▁co", + "ach" + ], + [ + "▁Per", + "s" + ], + [ + "▁Pe", + "rs" + ], + [ + "▁P", + "ers" + ], + [ + "▁co", + "al" + ], + [ + "ib", + "l" + ], + [ + "i", + "bl" + ], + [ + "atche", + "d" + ], + [ + "atch", + "ed" + ], + [ + "at", + "ched" + ], + [ + "I", + "S" + ], + [ + "▁structure", + "s" + ], + [ + "▁struct", + "ures" + ], + [ + "▁E", + "c" + ], + [ + "▁came", + "r" + ], + [ + "▁cam", + "er" + ], + [ + "▁ca", + "mer" + ], + [ + "▁c", + "amer" + ], + [ + "▁nucle", + "ar" + ], + [ + "▁n", + "uclear" + ], + [ + "▁vir", + "t" + ], + [ + "▁v", + "irt" + ], + [ + "▁san", + "d" + ], + [ + "▁sa", + "nd" + ], + [ + "▁s", + "and" + ], + [ + "▁F", + "e" + ], + [ + "▁perm", + "an" + ], + [ + "▁per", + "man" + ], + [ + "▁p", + "erman" + ], + [ + "▁performance", + "s" + ], + [ + "▁perform", + "ances" + ], + [ + "▁capt", + "ure" + ], + [ + "▁cap", + "ture" + ], + [ + "▁significant", + "ly" + ], + [ + "▁signific", + "antly" + ], + [ + "emb", + "ly" + ], + [ + "ade", + "l" + ], + [ + "ad", + "el" + ], + [ + "▁192", + "0" + ], + [ + "▁19", + "20" + ], + [ + "ing", + "ly" + ], + [ + "▁Val", + "ley" + ], + [ + "▁V", + "alley" + ], + [ + "▁reach", + "ing" + ], + [ + "▁re", + "aching" + ], + [ + "▁Ra", + "y" + ], + [ + "▁R", + "ay" + ], + [ + "▁Fal", + "l" + ], + [ + "▁Fa", + "ll" + ], + [ + "▁F", + "all" + ], + [ + "▁Me", + "m" + ], + [ + "▁M", + "em" + ], + [ + "ann", + "a" + ], + [ + "an", + "na" + ], + [ + "ush", + "ed" + ], + [ + "us", + "hed" + ], + [ + "▁sell", + "ing" + ], + [ + "▁sel", + "ling" + ], + [ + "▁s", + "elling" + ], + [ + "▁house", + "hold" + ], + [ + "▁6", + "5" + ], + [ + "▁", + "65" + ], + [ + "▁main", + "tain" + ], + [ + "▁You", + "ng" + ], + [ + "▁Yo", + "ung" + ], + [ + "▁Y", + "oung" + ], + [ + "▁lim", + "it" + ], + [ + "▁li", + "mit" + ], + [ + "▁chanc", + "e" + ], + [ + "▁cha", + "nce" + ], + [ + "▁ch", + "ance" + ], + [ + "▁appl", + "ied" + ], + [ + "▁app", + "lied" + ], + [ + "▁creat", + "ion" + ], + [ + "▁cre", + "ation" + ], + [ + "ou", + "v" + ], + [ + "o", + "uv" + ], + [ + "▁U", + "N" + ], + [ + "▁", + "UN" + ], + [ + "ia", + "r" + ], + [ + "i", + "ar" + ], + [ + "▁Bra", + "d" + ], + [ + "▁Br", + "ad" + ], + [ + "▁B", + "rad" + ], + [ + "mon", + "d" + ], + [ + "mo", + "nd" + ], + [ + "m", + "ond" + ], + [ + "▁Fa", + "r" + ], + [ + "▁F", + "ar" + ], + [ + "▁", + "Far" + ], + [ + "▁ak", + "t" + ], + [ + "▁a", + "kt" + ], + [ + "▁stra", + "ight" + ], + [ + "ga", + "l" + ], + [ + "g", + "al" + ], + [ + "ges", + "t" + ], + [ + "ge", + "st" + ], + [ + "g", + "est" + ], + [ + "▁Philip", + "p" + ], + [ + "▁Phil", + "ipp" + ], + [ + "▁design", + "ated" + ], + [ + "▁198", + "6" + ], + [ + "▁19", + "86" + ], + [ + "▁back", + "ground" + ], + [ + "vi", + "s" + ], + [ + "v", + "is" + ], + [ + "▁lab", + "el" + ], + [ + "▁la", + "bel" + ], + [ + "▁l", + "abel" + ], + [ + "or", + "g" + ], + [ + "▁sou", + "t" + ], + [ + "▁so", + "ut" + ], + [ + "▁s", + "out" + ], + [ + "▁not", + "e" + ], + [ + "▁no", + "te" + ], + [ + "▁n", + "ote" + ], + [ + "▁", + "note" + ], + [ + "▁Ele", + "ct" + ], + [ + "▁El", + "ect" + ], + [ + "▁E", + "lect" + ], + [ + "▁bro", + "ke" + ], + [ + "▁br", + "oke" + ], + [ + "▁b", + "roke" + ], + [ + "he", + "w" + ], + [ + "h", + "ew" + ], + [ + "▁Fo", + "ot" + ], + [ + "▁F", + "oot" + ], + [ + "▁advant", + "age" + ], + [ + "▁instr", + "uct" + ], + [ + "▁inst", + "ruct" + ], + [ + "ler", + "s" + ], + [ + "le", + "rs" + ], + [ + "l", + "ers" + ], + [ + "▁tw", + "ice" + ], + [ + "-", + "2" + ], + [ + "▁Ar", + "m" + ], + [ + "▁A", + "rm" + ], + [ + "erve", + "d" + ], + [ + "erv", + "ed" + ], + [ + "er", + "ved" + ], + [ + "▁Record", + "s" + ], + [ + "▁Rec", + "ords" + ], + [ + "▁To", + "p" + ], + [ + "▁T", + "op" + ], + [ + "▁Me", + "n" + ], + [ + "▁M", + "en" + ], + [ + "▁ur", + "ban" + ], + [ + "▁", + "urban" + ], + [ + "▁st", + "ore" + ], + [ + "▁Game", + "s" + ], + [ + "▁Gam", + "es" + ], + [ + "▁Ga", + "mes" + ], + [ + "▁G", + "ames" + ], + [ + "▁mis", + "t" + ], + [ + "▁mi", + "st" + ], + [ + "▁m", + "ist" + ], + [ + "▁resist", + "ance" + ], + [ + "▁res", + "istance" + ], + [ + "▁bro", + "wn" + ], + [ + "▁br", + "own" + ], + [ + "▁b", + "rown" + ], + [ + "wi", + "se" + ], + [ + "w", + "ise" + ], + [ + "▁Ha", + "l" + ], + [ + "▁H", + "al" + ], + [ + "▁occur", + "s" + ], + [ + "▁occ", + "urs" + ], + [ + "▁ele", + "v" + ], + [ + "▁el", + "ev" + ], + [ + "▁e", + "lev" + ], + [ + "▁object", + "s" + ], + [ + "▁plan", + "ning" + ], + [ + "▁194", + "5" + ], + [ + "▁19", + "45" + ], + [ + "▁stru", + "ck" + ], + [ + "▁str", + "uck" + ], + [ + "▁El", + "l" + ], + [ + "▁E", + "ll" + ], + [ + "ti", + "c" + ], + [ + "t", + "ic" + ], + [ + "osa", + "ur" + ], + [ + "os", + "aur" + ], + [ + "▁El", + "iz" + ], + [ + "▁Mad", + "onna" + ], + [ + "▁sav", + "e" + ], + [ + "▁sa", + "ve" + ], + [ + "▁s", + "ave" + ], + [ + "iz", + "yon" + ], + [ + "tra", + "ck" + ], + [ + "tr", + "ack" + ], + [ + "t", + "rack" + ], + [ + "ian", + "a" + ], + [ + "ia", + "na" + ], + [ + "i", + "ana" + ], + [ + "▁In", + "c" + ], + [ + "▁Fi", + "m" + ], + [ + "▁F", + "im" + ], + [ + "▁As", + "ia" + ], + [ + "▁cycl", + "one" + ], + [ + "ell", + "a" + ], + [ + "el", + "la" + ], + [ + "e", + "lla" + ], + [ + "▁weapon", + "s" + ], + [ + "▁weap", + "ons" + ], + [ + "▁Capt", + "ain" + ], + [ + "▁Cap", + "tain" + ], + [ + "▁equ", + "al" + ], + [ + "▁e", + "qual" + ], + [ + "ston", + "e" + ], + [ + "st", + "one" + ], + [ + "▁occas", + "ion" + ], + [ + "▁occ", + "asion" + ], + [ + "▁De", + "velop" + ], + [ + "▁contempor", + "ary" + ], + [ + "▁contem", + "porary" + ], + [ + "pris", + "e" + ], + [ + "pr", + "ise" + ], + [ + "p", + "rise" + ], + [ + "▁voc", + "al" + ], + [ + "▁vo", + "cal" + ], + [ + "▁v", + "ocal" + ], + [ + "▁4", + "2" + ], + [ + "▁", + "42" + ], + [ + "▁jo", + "urn" + ], + [ + "▁j", + "ourn" + ], + [ + "▁O", + "cean" + ], + [ + "age", + "ment" + ], + [ + "ag", + "ement" + ], + [ + "a", + "gement" + ], + [ + "▁Ro", + "d" + ], + [ + "▁R", + "od" + ], + [ + "▁territ", + "ory" + ], + [ + "▁terr", + "itory" + ], + [ + "ill", + "ing" + ], + [ + "il", + "ling" + ], + [ + "▁univers", + "ity" + ], + [ + "▁un", + "iversity" + ], + [ + "▁Li", + "ght" + ], + [ + "▁L", + "ight" + ], + [ + "▁194", + "4" + ], + [ + "▁19", + "44" + ], + [ + "▁str", + "e" + ], + [ + "▁st", + "re" + ], + [ + "▁s", + "tre" + ], + [ + "▁cast", + "le" + ], + [ + "▁cas", + "tle" + ], + [ + "▁", + "castle" + ], + [ + "▁Ro", + "m" + ], + [ + "▁R", + "om" + ], + [ + "▁heav", + "ily" + ], + [ + "re", + "c" + ], + [ + "r", + "ec" + ], + [ + "resp", + "ond" + ], + [ + "▁Bu", + "s" + ], + [ + "▁B", + "us" + ], + [ + "▁along", + "side" + ], + [ + "ig", + "g" + ], + [ + "i", + "gg" + ], + [ + "▁Pi", + "er" + ], + [ + "▁P", + "ier" + ], + [ + "▁hus", + "band" + ], + [ + "▁Le", + "t" + ], + [ + "▁L", + "et" + ], + [ + "▁cro", + "p" + ], + [ + "▁cr", + "op" + ], + [ + "▁c", + "rop" + ], + [ + "▁un", + "known" + ], + [ + "rang", + "e" + ], + [ + "ran", + "ge" + ], + [ + "r", + "ange" + ], + [ + "▁ri", + "ng" + ], + [ + "▁r", + "ing" + ], + [ + "▁", + "ring" + ], + [ + "co", + "h" + ], + [ + "c", + "oh" + ], + [ + "▁promin", + "ent" + ], + [ + "▁prom", + "inent" + ], + [ + "ut", + "ing" + ], + [ + "u", + "ting" + ], + [ + "▁title", + "d" + ], + [ + "▁tit", + "led" + ], + [ + "▁t", + "itled" + ], + [ + "▁help", + "s" + ], + [ + "▁hel", + "ps" + ], + [ + "▁def", + "ense" + ], + [ + "▁Steph", + "en" + ], + [ + "▁Step", + "hen" + ], + [ + "y", + "m" + ], + [ + "ri", + "d" + ], + [ + "r", + "id" + ], + [ + "▁champions", + "hip" + ], + [ + "▁champion", + "ship" + ], + [ + "▁ch", + "ampionship" + ], + [ + "▁hop", + "e" + ], + [ + "▁ho", + "pe" + ], + [ + "▁h", + "ope" + ], + [ + "▁fru", + "it" + ], + [ + "▁fr", + "uit" + ], + [ + "▁f", + "ruit" + ], + [ + "▁y", + "ellow" + ], + [ + "▁pric", + "e" + ], + [ + "▁pri", + "ce" + ], + [ + "▁pr", + "ice" + ], + [ + "▁p", + "rice" + ], + [ + "▁chose", + "n" + ], + [ + "▁cho", + "sen" + ], + [ + "▁ch", + "osen" + ], + [ + "if", + "ul" + ], + [ + "i", + "ful" + ], + [ + "al", + "a" + ], + [ + "a", + "la" + ], + [ + "▁prop", + "os" + ], + [ + "▁pro", + "pos" + ], + [ + "\"", + "." + ], + [ + "▁del", + "ay" + ], + [ + "▁de", + "lay" + ], + [ + "▁Bridg", + "e" + ], + [ + "▁Brid", + "ge" + ], + [ + "▁Br", + "idge" + ], + [ + "▁B", + "ridge" + ], + [ + "▁Ro", + "g" + ], + [ + "▁R", + "og" + ], + [ + "▁Pro", + "f" + ], + [ + "▁Pr", + "of" + ], + [ + "ish", + "es" + ], + [ + "is", + "hes" + ], + [ + "ourn", + "ament" + ], + [ + "▁adopt", + "ed" + ], + [ + "▁adop", + "ted" + ], + [ + "▁Ba", + "t" + ], + [ + "▁B", + "at" + ], + [ + "▁defe", + "nd" + ], + [ + "▁def", + "end" + ], + [ + "▁proc", + "ed" + ], + [ + "▁pro", + "ced" + ], + [ + "▁Ou", + "r" + ], + [ + "▁O", + "ur" + ], + [ + "▁", + "Our" + ], + [ + "▁pil", + "ot" + ], + [ + "▁pi", + "lot" + ], + [ + "▁rem", + "ember" + ], + [ + "▁di", + "am" + ], + [ + "▁d", + "iam" + ], + [ + "ave", + "n" + ], + [ + "av", + "en" + ], + [ + "a", + "ven" + ], + [ + "▁arm", + "s" + ], + [ + "▁ar", + "ms" + ], + [ + "▁", + "arms" + ], + [ + "▁acc", + "ident" + ], + [ + "▁memor", + "y" + ], + [ + "▁mem", + "ory" + ], + [ + "▁viewer", + "s" + ], + [ + "▁view", + "ers" + ], + [ + "▁Journ", + "al" + ], + [ + "▁Jo", + "urnal" + ], + [ + "▁J", + "ournal" + ], + [ + "▁experience", + "d" + ], + [ + "▁experien", + "ced" + ], + [ + "▁exper", + "ienced" + ], + [ + "▁ka", + "t" + ], + [ + "▁k", + "at" + ], + [ + "▁col", + "umn" + ], + [ + "▁194", + "1" + ], + [ + "▁19", + "41" + ], + [ + "▁D", + "utch" + ], + [ + "▁anal", + "y" + ], + [ + "▁ana", + "ly" + ], + [ + "▁an", + "aly" + ], + [ + "▁aut", + "h" + ], + [ + "▁au", + "th" + ], + [ + "▁a", + "uth" + ], + [ + "A", + "C" + ], + [ + "▁sel", + "ect" + ], + [ + "▁se", + "lect" + ], + [ + "▁Ber", + "n" + ], + [ + "▁B", + "ern" + ], + [ + "ci", + "ous" + ], + [ + "c", + "ious" + ], + [ + "pr", + "is" + ], + [ + "p", + "ris" + ], + [ + "ok", + "ing" + ], + [ + "o", + "king" + ], + [ + "▁technique", + "s" + ], + [ + "▁techn", + "iques" + ], + [ + "▁adult", + "s" + ], + [ + "▁adul", + "ts" + ], + [ + "▁ad", + "ults" + ], + [ + "▁maintain", + "ed" + ], + [ + "▁main", + "tained" + ], + [ + "▁contain", + "ed" + ], + [ + "▁cont", + "ained" + ], + [ + "▁con", + "tained" + ], + [ + "▁B", + "BC" + ], + [ + "▁bel", + "ong" + ], + [ + "▁be", + "long" + ], + [ + "▁b", + "elong" + ], + [ + "▁Da", + "m" + ], + [ + "▁D", + "am" + ], + [ + "▁gre", + "w" + ], + [ + "▁gr", + "ew" + ], + [ + "▁g", + "rew" + ], + [ + "ograph", + "ic" + ], + [ + "▁feat", + "uring" + ], + [ + "▁li", + "c" + ], + [ + "▁l", + "ic" + ], + [ + "▁", + "lic" + ], + [ + "▁el", + "imin" + ], + [ + "▁be", + "d" + ], + [ + "▁b", + "ed" + ], + [ + "▁", + "bed" + ], + [ + "ta", + "r" + ], + [ + "t", + "ar" + ], + [ + "▁De", + "c" + ], + [ + "▁D", + "ec" + ], + [ + "▁M", + "u" + ], + [ + "quarter", + "s" + ], + [ + "qu", + "arters" + ], + [ + "orpe", + "d" + ], + [ + "orp", + "ed" + ], + [ + "or", + "ped" + ], + [ + "▁narr", + "ow" + ], + [ + "▁nar", + "row" + ], + [ + "▁Ba", + "s" + ], + [ + "▁B", + "as" + ], + [ + "▁connect", + "ed" + ], + [ + "▁conn", + "ected" + ], + [ + "▁c", + "onnected" + ], + [ + "▁la", + "id" + ], + [ + "▁l", + "aid" + ], + [ + "▁inv", + "asion" + ], + [ + "▁doct", + "or" + ], + [ + "▁doc", + "tor" + ], + [ + "▁do", + "ctor" + ], + [ + "▁rat", + "ing" + ], + [ + "▁ra", + "ting" + ], + [ + "▁r", + "ating" + ], + [ + "▁", + "rating" + ], + [ + "▁term", + "in" + ], + [ + "▁ter", + "min" + ], + [ + "▁4", + "4" + ], + [ + "▁", + "44" + ], + [ + "▁sequ", + "ence" + ], + [ + "amin", + "g" + ], + [ + "ami", + "ng" + ], + [ + "am", + "ing" + ], + [ + "a", + "ming" + ], + [ + "▁altern", + "ative" + ], + [ + "▁he", + "ight" + ], + [ + "▁Victor", + "ia" + ], + [ + "▁Vict", + "oria" + ], + [ + "▁mol", + "ec" + ], + [ + "▁m", + "olec" + ], + [ + "ind", + "er" + ], + [ + "in", + "der" + ], + [ + "▁ment", + "al" + ], + [ + "▁men", + "tal" + ], + [ + "▁m", + "ental" + ], + [ + "▁", + "mental" + ], + [ + "ylvan", + "ia" + ], + [ + "▁poss", + "ibly" + ], + [ + "▁a", + "id" + ], + [ + "▁", + "aid" + ], + [ + "▁Me", + "an" + ], + [ + "▁M", + "ean" + ], + [ + "▁capt", + "ain" + ], + [ + "▁cap", + "tain" + ], + [ + "▁Fa", + "m" + ], + [ + "▁F", + "am" + ], + [ + "uck", + "y" + ], + [ + "uc", + "ky" + ], + [ + "▁controll", + "ed" + ], + [ + "▁control", + "led" + ], + [ + "▁contro", + "lled" + ], + [ + "▁cont", + "rolled" + ], + [ + "rol", + "l" + ], + [ + "ro", + "ll" + ], + [ + "r", + "oll" + ], + [ + "▁vol", + "ume" + ], + [ + "▁Ta", + "y" + ], + [ + "▁T", + "ay" + ], + [ + "A", + "F" + ], + [ + "▁Add", + "ition" + ], + [ + "▁Ad", + "dition" + ], + [ + "▁Ad", + "miral" + ], + [ + "▁agree", + "ment" + ], + [ + "▁agre", + "ement" + ], + [ + "ida", + "y" + ], + [ + "id", + "ay" + ], + [ + "i", + "day" + ], + [ + "▁peak", + "ed" + ], + [ + "▁pe", + "aked" + ], + [ + "▁prepare", + "d" + ], + [ + "▁prepar", + "ed" + ], + [ + "▁prep", + "ared" + ], + [ + "▁6", + "4" + ], + [ + "▁", + "64" + ], + [ + "ounge", + "r" + ], + [ + "oung", + "er" + ], + [ + "oun", + "ger" + ], + [ + "bu", + "r" + ], + [ + "b", + "ur" + ], + [ + "▁learn", + "ed" + ], + [ + "▁lear", + "ned" + ], + [ + "at", + "o" + ], + [ + "a", + "to" + ], + [ + "e", + "v" + ], + [ + "sec", + "t" + ], + [ + "se", + "ct" + ], + [ + "s", + "ect" + ], + [ + "▁liter", + "ature" + ], + [ + "▁Comm", + "on" + ], + [ + "▁Com", + "mon" + ], + [ + "ave", + "d" + ], + [ + "av", + "ed" + ], + [ + "a", + "ved" + ], + [ + "▁Pl", + "an" + ], + [ + "▁P", + "lan" + ], + [ + "▁res", + "c" + ], + [ + "▁re", + "sc" + ], + [ + "▁r", + "esc" + ], + [ + "▁", + "resc" + ], + [ + "▁i", + "gn" + ], + [ + "▁", + "ign" + ], + [ + "▁tan", + "k" + ], + [ + "▁t", + "ank" + ], + [ + "▁sc", + "oring" + ], + [ + "isc", + "o" + ], + [ + "is", + "co" + ], + [ + "▁teach", + "ing" + ], + [ + "▁teac", + "hing" + ], + [ + "▁tea", + "ching" + ], + [ + "▁te", + "aching" + ], + [ + "▁describe", + "s" + ], + [ + "▁describ", + "es" + ], + [ + "▁desc", + "ribes" + ], + [ + "▁sen", + "ior" + ], + [ + "b", + "a" + ], + [ + "▁M", + "D" + ], + [ + "▁Lin", + "e" + ], + [ + "▁Li", + "ne" + ], + [ + "▁L", + "ine" + ], + [ + "ches", + "t" + ], + [ + "che", + "st" + ], + [ + "ch", + "est" + ], + [ + "c", + "hest" + ], + [ + "▁achieve", + "d" + ], + [ + "▁achie", + "ved" + ], + [ + "▁", + "x" + ], + [ + "▁offer", + "s" + ], + [ + "▁off", + "ers" + ], + [ + "or", + "a" + ], + [ + "o", + "ra" + ], + [ + "ock", + "ed" + ], + [ + "▁argue", + "d" + ], + [ + "▁argu", + "ed" + ], + [ + "▁arg", + "ued" + ], + [ + "▁Dist", + "rict" + ], + [ + "▁cod", + "e" + ], + [ + "▁co", + "de" + ], + [ + "▁c", + "ode" + ], + [ + "vi", + "ous" + ], + [ + "v", + "ious" + ], + [ + "▁Seri", + "es" + ], + [ + "▁Ser", + "ies" + ], + [ + "▁Se", + "ries" + ], + [ + "▁S", + "eries" + ], + [ + "▁rate", + "s" + ], + [ + "▁rat", + "es" + ], + [ + "▁ra", + "tes" + ], + [ + "▁r", + "ates" + ], + [ + "▁", + "rates" + ], + [ + "ag", + "a" + ], + [ + "a", + "ga" + ], + [ + "▁value", + "s" + ], + [ + "▁val", + "ues" + ], + [ + "▁end", + "s" + ], + [ + "▁en", + "ds" + ], + [ + "▁", + "ends" + ], + [ + "▁bud", + "get" + ], + [ + "▁te", + "eth" + ], + [ + "▁Batt", + "alion" + ], + [ + "▁4", + "3" + ], + [ + "▁", + "43" + ], + [ + "▁Christ", + "mas" + ], + [ + "▁ric", + "h" + ], + [ + "▁ri", + "ch" + ], + [ + "▁r", + "ich" + ], + [ + "▁", + "rich" + ], + [ + "▁Earl", + "y" + ], + [ + "▁Ear", + "ly" + ], + [ + "▁IM", + "D" + ], + [ + "▁Oh", + "io" + ], + [ + "▁Harris", + "on" + ], + [ + "▁Har", + "rison" + ], + [ + "▁sport", + "s" + ], + [ + "▁spor", + "ts" + ], + [ + "▁sp", + "orts" + ], + [ + "▁s", + "ports" + ], + [ + "▁Sp", + "ain" + ], + [ + "▁gl", + "ass" + ], + [ + "▁g", + "lass" + ], + [ + "▁leaders", + "hip" + ], + [ + "▁leader", + "ship" + ], + [ + "▁lead", + "ership" + ], + [ + "▁et", + "c" + ], + [ + "▁vot", + "e" + ], + [ + "▁vo", + "te" + ], + [ + "▁v", + "ote" + ], + [ + "▁na", + "val" + ], + [ + "▁n", + "aval" + ], + [ + "▁Cl", + "a" + ], + [ + "▁C", + "la" + ], + [ + "att", + "le" + ], + [ + "at", + "tle" + ], + [ + "▁S", + "u" + ], + [ + "ba", + "n" + ], + [ + "b", + "an" + ], + [ + "▁no", + "r" + ], + [ + "▁n", + "or" + ], + [ + "▁", + "nor" + ], + [ + "▁194", + "3" + ], + [ + "▁19", + "43" + ], + [ + "ord", + "in" + ], + [ + "or", + "din" + ], + [ + "ission", + "s" + ], + [ + "iss", + "ions" + ], + [ + "ip", + "e" + ], + [ + "i", + "pe" + ], + [ + "▁repeat", + "ed" + ], + [ + "▁repe", + "ated" + ], + [ + "d", + "a" + ], + [ + "▁promote", + "d" + ], + [ + "▁promot", + "ed" + ], + [ + "▁prom", + "oted" + ], + [ + "▁Cor", + "n" + ], + [ + "▁C", + "orn" + ], + [ + "▁act", + "or" + ], + [ + "▁ac", + "tor" + ], + [ + "▁a", + "ctor" + ], + [ + "▁Manc", + "hester" + ], + [ + "▁Man", + "chester" + ], + [ + "▁cor", + "e" + ], + [ + "▁co", + "re" + ], + [ + "▁c", + "ore" + ], + [ + "▁", + "core" + ], + [ + "▁is", + "ol" + ], + [ + "▁Russ", + "ia" + ], + [ + "▁version", + "s" + ], + [ + "▁vers", + "ions" + ], + [ + "▁Tech", + "n" + ], + [ + "▁Te", + "chn" + ], + [ + "▁sor", + "t" + ], + [ + "▁s", + "ort" + ], + [ + "st", + "ream" + ], + [ + "▁visit", + "ed" + ], + [ + "▁vis", + "ited" + ], + [ + "7", + "8" + ], + [ + "▁fe", + "ar" + ], + [ + "▁f", + "ear" + ], + [ + "▁item", + "s" + ], + [ + "▁it", + "ems" + ], + [ + ")", + ":" + ], + [ + "▁C", + "D" + ], + [ + "▁Easter", + "n" + ], + [ + "▁East", + "ern" + ], + [ + "▁E", + "astern" + ], + [ + "age", + "r" + ], + [ + "ag", + "er" + ], + [ + "a", + "ger" + ], + [ + "▁set", + "s" + ], + [ + "▁se", + "ts" + ], + [ + "▁s", + "ets" + ], + [ + "▁ext", + "ensive" + ], + [ + "▁R", + "a" + ], + [ + "▁cons", + "ec" + ], + [ + "▁con", + "sec" + ], + [ + "t", + "a" + ], + [ + "▁Tod", + "ay" + ], + [ + "▁To", + "day" + ], + [ + "▁San", + "d" + ], + [ + "▁Sa", + "nd" + ], + [ + "▁S", + "and" + ], + [ + "▁emer", + "g" + ], + [ + "▁em", + "erg" + ], + [ + "▁Ab", + "out" + ], + [ + "▁4", + "6" + ], + [ + "▁", + "46" + ], + [ + "▁cent", + "uries" + ], + [ + "▁extreme", + "ly" + ], + [ + "▁extrem", + "ely" + ], + [ + "▁K", + "o" + ], + [ + "▁ti", + "ss" + ], + [ + "▁t", + "iss" + ], + [ + "▁face", + "d" + ], + [ + "▁fac", + "ed" + ], + [ + "▁fa", + "ced" + ], + [ + "▁f", + "aced" + ], + [ + "▁contain", + "ing" + ], + [ + "▁cont", + "aining" + ], + [ + "▁con", + "taining" + ], + [ + "▁Cro", + "at" + ], + [ + "▁detail", + "s" + ], + [ + "▁det", + "ails" + ], + [ + "▁hal", + "l" + ], + [ + "▁ha", + "ll" + ], + [ + "▁h", + "all" + ], + [ + "▁", + "hall" + ], + [ + "▁difference", + "s" + ], + [ + "▁differ", + "ences" + ], + [ + "ike", + "n" + ], + [ + "ik", + "en" + ], + [ + "i", + "ken" + ], + [ + "▁cor", + "respond" + ], + [ + "▁Ex", + "p" + ], + [ + "▁The", + "n" + ], + [ + "▁Th", + "en" + ], + [ + "▁T", + "hen" + ], + [ + "▁prote", + "in" + ], + [ + "me", + "s" + ], + [ + "m", + "es" + ], + [ + "▁Du", + "n" + ], + [ + "▁D", + "un" + ], + [ + "▁enc", + "oun" + ], + [ + "▁nort", + "heast" + ], + [ + "itor", + "s" + ], + [ + "ito", + "rs" + ], + [ + "it", + "ors" + ], + [ + "ome", + "w" + ], + [ + "om", + "ew" + ], + [ + "▁La", + "r" + ], + [ + "▁L", + "ar" + ], + [ + "▁focus", + "ed" + ], + [ + "▁foc", + "used" + ], + [ + "othe", + "s" + ], + [ + "oth", + "es" + ], + [ + "ot", + "hes" + ], + [ + "o", + "thes" + ], + [ + "inge", + "r" + ], + [ + "ing", + "er" + ], + [ + "in", + "ger" + ], + [ + "▁dep", + "end" + ], + [ + "▁de", + "pend" + ], + [ + "▁d", + "epend" + ], + [ + "▁ro", + "ll" + ], + [ + "▁r", + "oll" + ], + [ + "▁", + "roll" + ], + [ + "▁proper", + "ties" + ], + [ + "▁execut", + "ive" + ], + [ + "▁exec", + "utive" + ], + [ + "▁", + "*" + ], + [ + "▁Cha", + "p" + ], + [ + "▁Ch", + "ap" + ], + [ + "▁mot", + "ion" + ], + [ + "▁m", + "otion" + ], + [ + "▁react", + "ion" + ], + [ + "▁re", + "action" + ], + [ + "▁mot", + "or" + ], + [ + "▁mo", + "tor" + ], + [ + "elle", + "r" + ], + [ + "ell", + "er" + ], + [ + "el", + "ler" + ], + [ + "e", + "ller" + ], + [ + "▁short", + "ly" + ], + [ + "▁land", + "s" + ], + [ + "▁lan", + "ds" + ], + [ + "▁l", + "ands" + ], + [ + "▁", + "lands" + ], + [ + "os", + "a" + ], + [ + "o", + "sa" + ], + [ + "▁Ir", + "ish" + ], + [ + "ight", + "h" + ], + [ + "igh", + "th" + ], + [ + "▁oppose", + "d" + ], + [ + "▁opp", + "osed" + ], + [ + "ession", + "s" + ], + [ + "ess", + "ions" + ], + [ + "▁horse", + "s" + ], + [ + "▁hor", + "ses" + ], + [ + "▁h", + "orses" + ], + [ + "▁exp", + "ed" + ], + [ + "▁ex", + "ped" + ], + [ + "▁esc", + "ape" + ], + [ + "▁e", + "scape" + ], + [ + "▁tru", + "st" + ], + [ + "▁tr", + "ust" + ], + [ + "▁t", + "rust" + ], + [ + "▁laun", + "ch" + ], + [ + "▁la", + "unch" + ], + [ + "▁viol", + "ence" + ], + [ + "▁di", + "al" + ], + [ + "▁d", + "ial" + ], + [ + "▁tra", + "v" + ], + [ + "▁tr", + "av" + ], + [ + "▁t", + "rav" + ], + [ + "▁vehicle", + "s" + ], + [ + "▁veh", + "icles" + ], + [ + "to", + "wn" + ], + [ + "t", + "own" + ], + [ + "▁lo", + "v" + ], + [ + "▁l", + "ov" + ], + [ + "▁", + "lov" + ], + [ + "▁h", + "tt" + ], + [ + "▁", + "htt" + ], + [ + "▁fi", + "rm" + ], + [ + "▁f", + "irm" + ], + [ + "▁prom", + "pt" + ], + [ + "▁successful", + "ly" + ], + [ + "▁success", + "fully" + ], + [ + "▁season", + "s" + ], + [ + "▁seas", + "ons" + ], + [ + "▁se", + "asons" + ], + [ + "▁station", + "s" + ], + [ + "▁stat", + "ions" + ], + [ + "▁st", + "ations" + ], + [ + "▁spl", + "it" + ], + [ + "y", + "a" + ], + [ + "▁administ", + "ration" + ], + [ + "ps", + "on" + ], + [ + "p", + "son" + ], + [ + "amb", + "er" + ], + [ + "am", + "ber" + ], + [ + "a", + "mber" + ], + [ + "▁tor", + "ped" + ], + [ + "▁t", + "orped" + ], + [ + "▁neg", + "oti" + ], + [ + "▁six", + "th" + ], + [ + "▁comb", + "ination" + ], + [ + "▁sa", + "m" + ], + [ + "▁s", + "am" + ], + [ + "▁state", + "ment" + ], + [ + "▁stat", + "ement" + ], + [ + "▁Aven", + "ue" + ], + [ + "▁O", + "s" + ], + [ + "▁", + "Os" + ], + [ + "▁5", + "2" + ], + [ + "▁Brig", + "ade" + ], + [ + "▁Br", + "igade" + ], + [ + "ra", + "t" + ], + [ + "r", + "at" + ], + [ + "er", + "a" + ], + [ + "e", + "ra" + ], + [ + "▁serv", + "ing" + ], + [ + "▁ser", + "ving" + ], + [ + "▁s", + "erving" + ], + [ + "▁198", + "5" + ], + [ + "▁19", + "85" + ], + [ + "▁official", + "ly" + ], + [ + "▁offic", + "ially" + ], + [ + "▁Ori", + "g" + ], + [ + "▁Or", + "ig" + ], + [ + "▁O", + "rig" + ], + [ + "▁ev", + "olution" + ], + [ + "▁new", + "ly" + ], + [ + "▁regard", + "ing" + ], + [ + "▁stre", + "am" + ], + [ + "▁st", + "ream" + ], + [ + "▁", + "stream" + ], + [ + "▁wa", + "ve" + ], + [ + "▁w", + "ave" + ], + [ + "▁", + "wave" + ], + [ + "stand", + "ing" + ], + [ + "stan", + "ding" + ], + [ + "rey", + "òl" + ], + [ + "▁Am", + "ong" + ], + [ + "▁broke", + "n" + ], + [ + "▁bro", + "ken" + ], + [ + "▁br", + "oken" + ], + [ + "▁disp", + "l" + ], + [ + "▁dis", + "pl" + ], + [ + "j", + "i" + ], + [ + "ister", + "s" + ], + [ + "iste", + "rs" + ], + [ + "ist", + "ers" + ], + [ + "is", + "ters" + ], + [ + "i", + "sters" + ], + [ + "▁k", + "g" + ], + [ + "▁symb", + "ol" + ], + [ + "▁measure", + "s" + ], + [ + "▁meas", + "ures" + ], + [ + "▁me", + "asures" + ], + [ + "▁edit", + "or" + ], + [ + "▁ed", + "itor" + ], + [ + "▁vocal", + "s" + ], + [ + "▁voc", + "als" + ], + [ + "▁exist", + "ence" + ], + [ + "▁ex", + "istence" + ], + [ + "▁Sh", + "ow" + ], + [ + "▁S", + "how" + ], + [ + "art", + "s" + ], + [ + "ar", + "ts" + ], + [ + "line", + "s" + ], + [ + "lin", + "es" + ], + [ + "li", + "nes" + ], + [ + "l", + "ines" + ], + [ + "▁Alb", + "ert" + ], + [ + "▁Al", + "bert" + ], + [ + "▁Hom", + "e" + ], + [ + "▁Ho", + "me" + ], + [ + "▁H", + "ome" + ], + [ + "▁Fi", + "eld" + ], + [ + "▁F", + "ield" + ], + [ + "▁A", + "D" + ], + [ + "▁", + "AD" + ], + [ + "▁Har", + "d" + ], + [ + "▁Ha", + "rd" + ], + [ + "▁H", + "ard" + ], + [ + "▁test", + "s" + ], + [ + "▁te", + "sts" + ], + [ + "▁t", + "ests" + ], + [ + "rick", + "et" + ], + [ + "▁Eliz", + "abeth" + ], + [ + "▁hon", + "or" + ], + [ + "▁ho", + "nor" + ], + [ + "▁Ca", + "t" + ], + [ + "▁C", + "at" + ], + [ + "▁entire", + "ly" + ], + [ + "▁test", + "ing" + ], + [ + "▁accomp", + "an" + ], + [ + "▁th", + "in" + ], + [ + "▁t", + "hin" + ], + [ + "▁use", + "ful" + ], + [ + "ya", + "n" + ], + [ + "y", + "an" + ], + [ + "▁par", + "alle" + ], + [ + "ur", + "ation" + ], + [ + "u", + "ration" + ], + [ + "▁decade", + "s" + ], + [ + "▁dec", + "ades" + ], + [ + "▁O", + "b" + ], + [ + "▁share", + "d" + ], + [ + "▁shar", + "ed" + ], + [ + "▁sh", + "ared" + ], + [ + "ume", + "s" + ], + [ + "um", + "es" + ], + [ + "u", + "mes" + ], + [ + "▁lib", + "er" + ], + [ + "▁li", + "ber" + ], + [ + "▁l", + "iber" + ], + [ + "▁sol", + "ar" + ], + [ + "▁so", + "lar" + ], + [ + "▁s", + "olar" + ], + [ + "im", + "a" + ], + [ + "i", + "ma" + ], + [ + ".", + ")" + ], + [ + "▁facilit", + "ies" + ], + [ + "▁fac", + "ilities" + ], + [ + "▁organize", + "d" + ], + [ + "▁organ", + "ized" + ], + [ + "▁every", + "one" + ], + [ + "▁return", + "ing" + ], + [ + "▁Mars", + "h" + ], + [ + "▁Mar", + "sh" + ], + [ + "▁M", + "arsh" + ], + [ + "▁pati", + "ent" + ], + [ + "▁pat", + "ient" + ], + [ + "▁protect", + "ed" + ], + [ + "▁prot", + "ected" + ], + [ + "▁author", + "ities" + ], + [ + "▁Ni", + "c" + ], + [ + "▁N", + "ic" + ], + [ + "▁rain", + "fall" + ], + [ + "▁en", + "h" + ], + [ + "▁", + "enh" + ], + [ + "our", + "ed" + ], + [ + "ou", + "red" + ], + [ + "o", + "ured" + ], + [ + "▁thousand", + "s" + ], + [ + "▁thous", + "ands" + ], + [ + "▁rapid", + "ly" + ], + [ + "▁we", + "alth" + ], + [ + "▁", + "wealth" + ], + [ + "ad", + "s" + ], + [ + "a", + "ds" + ], + [ + "▁Cu", + "b" + ], + [ + "▁C", + "ub" + ], + [ + "▁fa", + "ith" + ], + [ + "▁Mus", + "l" + ], + [ + "▁Mu", + "sl" + ], + [ + "▁close", + "ly" + ], + [ + "▁clos", + "ely" + ], + [ + "▁cl", + "osely" + ], + [ + "el", + "ve" + ], + [ + "ers", + "e" + ], + [ + "er", + "se" + ], + [ + "▁Reg", + "iment" + ], + [ + "▁Alexand", + "er" + ], + [ + "▁Alex", + "ander" + ], + [ + "▁Le", + "w" + ], + [ + "▁L", + "ew" + ], + [ + "▁act", + "ual" + ], + [ + "7", + "0" + ], + [ + "▁Car", + "d" + ], + [ + "▁Ca", + "rd" + ], + [ + "▁C", + "ard" + ], + [ + "ren", + "ce" + ], + [ + "re", + "nce" + ], + [ + "r", + "ence" + ], + [ + "▁Be", + "y" + ], + [ + "▁B", + "ey" + ], + [ + "▁Pe", + "n" + ], + [ + "▁P", + "en" + ], + [ + "▁north", + "west" + ], + [ + "▁find", + "ing" + ], + [ + "▁fin", + "ding" + ], + [ + "▁f", + "inding" + ], + [ + "▁turn", + "s" + ], + [ + "▁tur", + "ns" + ], + [ + "▁standard", + "s" + ], + [ + "▁stand", + "ards" + ], + [ + "▁dra", + "m" + ], + [ + "▁dr", + "am" + ], + [ + "▁d", + "ram" + ], + [ + "▁de", + "ploy" + ], + [ + "erat", + "e" + ], + [ + "era", + "te" + ], + [ + "er", + "ate" + ], + [ + "e", + "rate" + ], + [ + "pp", + "ing" + ], + [ + "p", + "ping" + ], + [ + "▁p", + "ul" + ], + [ + "▁Gr", + "e" + ], + [ + "▁G", + "re" + ], + [ + "▁consist", + "s" + ], + [ + "▁cons", + "ists" + ], + [ + "6", + "6" + ], + [ + "T", + "C" + ], + [ + "▁Rev", + "olution" + ], + [ + "▁behav", + "i" + ], + [ + "▁beh", + "avi" + ], + [ + "▁inst", + "all" + ], + [ + "▁N", + "H" + ], + [ + "▁mor", + "t" + ], + [ + "▁m", + "ort" + ], + [ + "▁Re", + "m" + ], + [ + "▁R", + "em" + ], + [ + "▁Jo", + "n" + ], + [ + "▁J", + "on" + ], + [ + "▁Cu", + "r" + ], + [ + "▁C", + "ur" + ], + [ + "▁desc", + "ript" + ], + [ + "▁des", + "cript" + ], + [ + "▁We", + "ek" + ], + [ + "▁expans", + "ion" + ], + [ + "▁exp", + "ansion" + ], + [ + "▁cl", + "in" + ], + [ + "▁c", + "lin" + ], + [ + "ki", + "n" + ], + [ + "k", + "in" + ], + [ + "▁inning", + "s" + ], + [ + "▁inn", + "ings" + ], + [ + "▁in", + "nings" + ], + [ + "▁order", + "s" + ], + [ + "▁ord", + "ers" + ], + [ + "▁or", + "ders" + ], + [ + "▁", + "orders" + ], + [ + "▁sche", + "d" + ], + [ + "▁sch", + "ed" + ], + [ + "▁sc", + "hed" + ], + [ + "▁s", + "ched" + ], + [ + "▁w", + "ick" + ], + [ + "▁", + "wick" + ], + [ + "▁Andre", + "w" + ], + [ + "▁Andr", + "ew" + ], + [ + "▁And", + "rew" + ], + [ + "▁exerc", + "ise" + ], + [ + "▁recognize", + "d" + ], + [ + "▁recogn", + "ized" + ], + [ + "▁la", + "t" + ], + [ + "▁l", + "at" + ], + [ + "▁think", + "ing" + ], + [ + "▁thin", + "king" + ], + [ + "▁th", + "inking" + ], + [ + "▁gu", + "ard" + ], + [ + "▁", + "guard" + ], + [ + "▁Gal", + "l" + ], + [ + "▁Ga", + "ll" + ], + [ + "▁G", + "all" + ], + [ + "▁frans", + "e" + ], + [ + "▁fran", + "se" + ], + [ + "zi", + "l" + ], + [ + "z", + "il" + ], + [ + "om", + "y" + ], + [ + "o", + "my" + ], + [ + "v", + "a" + ], + [ + "▁stand", + "ing" + ], + [ + "▁", + "standing" + ], + [ + "i", + "i" + ], + [ + "3", + "." + ], + [ + "▁art", + "illery" + ], + [ + "▁pre", + "gn" + ], + [ + "▁p", + "regn" + ], + [ + "▁E", + "p" + ], + [ + "ar", + "p" + ], + [ + "▁H", + "u" + ], + [ + "▁ro", + "w" + ], + [ + "▁r", + "ow" + ], + [ + "▁", + "row" + ], + [ + "▁sil", + "ver" + ], + [ + "▁consist", + "ed" + ], + [ + "▁cons", + "isted" + ], + [ + "ors", + "hip" + ], + [ + "or", + "ship" + ], + [ + "▁198", + "4" + ], + [ + "▁18", + "2" + ], + [ + "▁Ever", + "y" + ], + [ + "▁Eve", + "ry" + ], + [ + "▁Ev", + "ery" + ], + [ + "▁E", + "very" + ], + [ + "▁Offic", + "e" + ], + [ + "▁Off", + "ice" + ], + [ + "▁Bo", + "ard" + ], + [ + "▁B", + "oard" + ], + [ + "▁re", + "ign" + ], + [ + "▁r", + "eign" + ], + [ + "▁Pro", + "v" + ], + [ + "▁Pr", + "ov" + ], + [ + "▁P", + "rov" + ], + [ + "▁Sh", + "ort" + ], + [ + "▁example", + "s" + ], + [ + "▁exam", + "ples" + ], + [ + "▁Enter", + "tain" + ], + [ + "▁Ent", + "ertain" + ], + [ + "▁role", + "s" + ], + [ + "▁ro", + "les" + ], + [ + "▁r", + "oles" + ], + [ + "▁IMD", + "b" + ], + [ + "at", + "i" + ], + [ + "a", + "ti" + ], + [ + "▁recommend", + "ed" + ], + [ + "▁recomm", + "ended" + ], + [ + "me", + "t" + ], + [ + "m", + "et" + ], + [ + "▁distrib", + "ution" + ], + [ + "▁dist", + "ribution" + ], + [ + "▁teach", + "er" + ], + [ + "▁teac", + "her" + ], + [ + "▁tea", + "cher" + ], + [ + "▁te", + "acher" + ], + [ + "▁ev", + "al" + ], + [ + "▁e", + "val" + ], + [ + "▁neu", + "t" + ], + [ + "▁ne", + "ut" + ], + [ + "▁n", + "eut" + ], + [ + "▁Up", + "on" + ], + [ + "▁incom", + "e" + ], + [ + "▁inc", + "ome" + ], + [ + "▁in", + "come" + ], + [ + "▁", + "income" + ], + [ + "▁60", + "0" + ], + [ + "▁6", + "00" + ], + [ + "ex", + "t" + ], + [ + "e", + "xt" + ], + [ + "ron", + "s" + ], + [ + "ro", + "ns" + ], + [ + "r", + "ons" + ], + [ + "▁cho", + "se" + ], + [ + "▁ch", + "ose" + ], + [ + "▁U", + "l" + ], + [ + "▁nomin", + "ated" + ], + [ + "▁nom", + "inated" + ], + [ + "▁On", + "ly" + ], + [ + "erat", + "ion" + ], + [ + "er", + "ation" + ], + [ + "e", + "ration" + ], + [ + "▁bott", + "om" + ], + [ + "▁letter", + "s" + ], + [ + "▁let", + "ters" + ], + [ + "▁Wil", + "son" + ], + [ + "ista", + "n" + ], + [ + "ist", + "an" + ], + [ + "i", + "stan" + ], + [ + "▁subst", + "ant" + ], + [ + "▁Blu", + "e" + ], + [ + "▁Bl", + "ue" + ], + [ + "o", + "z" + ], + [ + "ica", + "te" + ], + [ + "ic", + "ate" + ], + [ + "▁collect", + "ed" + ], + [ + "▁coll", + "ected" + ], + [ + "▁col", + "lected" + ], + [ + "▁Th", + "us" + ], + [ + "▁T", + "hus" + ], + [ + "▁Col", + "on" + ], + [ + "▁Co", + "lon" + ], + [ + "▁C", + "olon" + ], + [ + "av", + "a" + ], + [ + "a", + "va" + ], + [ + "▁dev", + "ice" + ], + [ + "▁fire", + "d" + ], + [ + "▁fi", + "red" + ], + [ + "▁f", + "ired" + ], + [ + "c", + "a" + ], + [ + "▁mess", + "age" + ], + [ + "▁Ro", + "ll" + ], + [ + "▁R", + "oll" + ], + [ + "ini", + "ty" + ], + [ + "in", + "ity" + ], + [ + "▁los", + "ing" + ], + [ + "▁l", + "osing" + ], + [ + "unt", + "e" + ], + [ + "un", + "te" + ], + [ + "▁sol", + "ution" + ], + [ + "▁s", + "olution" + ], + [ + "▁benef", + "it" + ], + [ + "▁bene", + "fit" + ], + [ + "▁aspect", + "s" + ], + [ + "▁asp", + "ects" + ], + [ + "▁opp", + "osition" + ], + [ + "▁var", + "y" + ], + [ + "▁va", + "ry" + ], + [ + "▁v", + "ary" + ], + [ + "row", + "s" + ], + [ + "r", + "ows" + ], + [ + "▁di", + "n" + ], + [ + "▁d", + "in" + ], + [ + "▁", + "din" + ], + [ + "ks", + "yon" + ], + [ + "van", + "t" + ], + [ + "va", + "nt" + ], + [ + "v", + "ant" + ], + [ + "▁challeng", + "e" + ], + [ + "▁chall", + "enge" + ], + [ + "order", + "s" + ], + [ + "orde", + "rs" + ], + [ + "ord", + "ers" + ], + [ + "or", + "ders" + ], + [ + "kin", + "s" + ], + [ + "ki", + "ns" + ], + [ + "k", + "ins" + ], + [ + "ran", + "ce" + ], + [ + "ra", + "nce" + ], + [ + "r", + "ance" + ], + [ + "▁Co", + "ast" + ], + [ + "▁regard", + "ed" + ], + [ + "▁reg", + "arded" + ], + [ + "▁ded", + "icated" + ], + [ + "▁answ", + "er" + ], + [ + "▁ans", + "wer" + ], + [ + "▁applic", + "ation" + ], + [ + "▁appl", + "ication" + ], + [ + "▁app", + "lication" + ], + [ + "▁Sun", + "d" + ], + [ + "▁Su", + "nd" + ], + [ + "▁S", + "und" + ], + [ + "▁ro", + "of" + ], + [ + "▁select", + "ion" + ], + [ + "▁sel", + "ection" + ], + [ + "▁se", + "lection" + ], + [ + "▁196", + "8" + ], + [ + "▁19", + "68" + ], + [ + "ocate", + "d" + ], + [ + "oca", + "ted" + ], + [ + "oc", + "ated" + ], + [ + "ret", + "e" + ], + [ + "re", + "te" + ], + [ + "r", + "ete" + ], + [ + "▁La", + "b" + ], + [ + "▁L", + "ab" + ], + [ + "ule", + "d" + ], + [ + "ul", + "ed" + ], + [ + "u", + "led" + ], + [ + "▁Du", + "e" + ], + [ + "▁D", + "ue" + ], + [ + "ad", + "d" + ], + [ + "a", + "dd" + ], + [ + "▁call", + "s" + ], + [ + "▁cal", + "ls" + ], + [ + "▁her", + "self" + ], + [ + "▁gener", + "ation" + ], + [ + "▁gene", + "ration" + ], + [ + "▁gen", + "eration" + ], + [ + "▁Lib", + "er" + ], + [ + "▁Li", + "ber" + ], + [ + "▁L", + "iber" + ], + [ + "▁Bon", + "d" + ], + [ + "▁Bo", + "nd" + ], + [ + "▁B", + "ond" + ], + [ + "▁war", + "m" + ], + [ + "▁wa", + "rm" + ], + [ + "▁w", + "arm" + ], + [ + "▁ph", + "ase" + ], + [ + "pin", + "g" + ], + [ + "pi", + "ng" + ], + [ + "p", + "ing" + ], + [ + "▁relig", + "ion" + ], + [ + "▁rel", + "igion" + ], + [ + "▁intern", + "al" + ], + [ + "▁inter", + "nal" + ], + [ + "▁in", + "ternal" + ], + [ + "our", + "i" + ], + [ + "ou", + "ri" + ], + [ + "o", + "uri" + ], + [ + "aker", + "s" + ], + [ + "ake", + "rs" + ], + [ + "ak", + "ers" + ], + [ + "▁kon", + "t" + ], + [ + "▁ko", + "nt" + ], + [ + "▁k", + "ont" + ], + [ + "▁road", + "s" + ], + [ + "▁ro", + "ads" + ], + [ + "▁", + "roads" + ], + [ + "▁Jer", + "sey" + ], + [ + "▁J", + "ersey" + ], + [ + "ashi", + "on" + ], + [ + "ash", + "ion" + ], + [ + "▁location", + "s" + ], + [ + "▁loc", + "ations" + ], + [ + "-1", + "9" + ], + [ + "-", + "19" + ], + [ + "▁Fle", + "et" + ], + [ + "▁newsp", + "aper" + ], + [ + "out", + "s" + ], + [ + "ou", + "ts" + ], + [ + "o", + "uts" + ], + [ + "base", + "d" + ], + [ + "b", + "ased" + ], + [ + "▁pict", + "ure" + ], + [ + "▁pic", + "ture" + ], + [ + "ill", + "y" + ], + [ + "il", + "ly" + ], + [ + "▁pass", + "es" + ], + [ + "▁pas", + "ses" + ], + [ + "▁p", + "asses" + ], + [ + "▁Di", + "e" + ], + [ + "▁D", + "ie" + ], + [ + "▁operate", + "d" + ], + [ + "▁opera", + "ted" + ], + [ + "▁oper", + "ated" + ], + [ + "▁op", + "erated" + ], + [ + "enc", + "ies" + ], + [ + "en", + "cies" + ], + [ + "▁opera", + "ting" + ], + [ + "▁oper", + "ating" + ], + [ + "▁kn", + "ew" + ], + [ + "▁k", + "new" + ], + [ + "▁D", + "NA" + ], + [ + "▁Gu", + "ard" + ], + [ + "▁fly", + "ing" + ], + [ + "▁fl", + "ying" + ], + [ + "▁f", + "lying" + ], + [ + "▁Tay", + "lor" + ], + [ + "▁un", + "us" + ], + [ + "▁Entertain", + "ment" + ], + [ + "▁Penns", + "ylvania" + ], + [ + "▁Bu", + "l" + ], + [ + "▁B", + "ul" + ], + [ + "▁Sci", + "ent" + ], + [ + "▁Sc", + "ient" + ], + [ + "▁S", + "cient" + ], + [ + "▁young", + "er" + ], + [ + "▁y", + "ounger" + ], + [ + "▁histor", + "ian" + ], + [ + "▁hist", + "orian" + ], + [ + "▁Pol", + "ish" + ], + [ + "▁Po", + "lish" + ], + [ + "▁kid", + "s" + ], + [ + "▁ki", + "ds" + ], + [ + "▁k", + "ids" + ], + [ + "▁ste", + "el" + ], + [ + "▁increasing", + "ly" + ], + [ + "n", + "s" + ], + [ + "ett", + "s" + ], + [ + "et", + "ts" + ], + [ + "▁requ", + "est" + ], + [ + "▁re", + "quest" + ], + [ + "▁kill", + "ing" + ], + [ + "▁kil", + "ling" + ], + [ + "▁k", + "illing" + ], + [ + "oi", + "r" + ], + [ + "o", + "ir" + ], + [ + "▁ident", + "ify" + ], + [ + "▁commun", + "ication" + ], + [ + "▁Z", + "èv" + ], + [ + "▁Govern", + "or" + ], + [ + "▁tre", + "n" + ], + [ + "▁tr", + "en" + ], + [ + "▁t", + "ren" + ], + [ + "▁W", + "omen" + ], + [ + "▁al", + "coh" + ], + [ + "▁men", + "m" + ], + [ + "▁Nev", + "er" + ], + [ + "▁Ne", + "ver" + ], + [ + "▁N", + "ever" + ], + [ + "▁stre", + "et" + ], + [ + "▁st", + "reet" + ], + [ + "▁", + "street" + ], + [ + "an", + "o" + ], + [ + "a", + "no" + ], + [ + "▁coun", + "cil" + ], + [ + "enge", + "r" + ], + [ + "eng", + "er" + ], + [ + "en", + "ger" + ], + [ + "▁S", + "S" + ], + [ + "pt", + "on" + ], + [ + "p", + "ton" + ], + [ + "▁197", + "9" + ], + [ + "ora", + "l" + ], + [ + "or", + "al" + ], + [ + "o", + "ral" + ], + [ + "A", + "N" + ], + [ + "▁second", + "ary" + ], + [ + "▁ro", + "m" + ], + [ + "▁r", + "om" + ], + [ + "▁", + "rom" + ], + [ + "▁introdu", + "ction" + ], + [ + "▁int", + "roduction" + ], + [ + "pi", + "r" + ], + [ + "p", + "ir" + ], + [ + "▁sol", + "id" + ], + [ + "▁s", + "olid" + ], + [ + "int", + "h" + ], + [ + "in", + "th" + ], + [ + "oph", + "y" + ], + [ + "op", + "hy" + ], + [ + "o", + "phy" + ], + [ + "▁Ve", + "n" + ], + [ + "▁V", + "en" + ], + [ + "az", + "z" + ], + [ + "a", + "zz" + ], + [ + "▁G", + "i" + ], + [ + "▁Ger", + "m" + ], + [ + "▁Ge", + "rm" + ], + [ + "▁G", + "erm" + ], + [ + "▁ass", + "ault" + ], + [ + "▁grant", + "ed" + ], + [ + "▁gran", + "ted" + ], + [ + "▁gr", + "anted" + ], + [ + "▁strik", + "e" + ], + [ + "▁stri", + "ke" + ], + [ + "▁str", + "ike" + ], + [ + "▁st", + "rike" + ], + [ + "▁support", + "ing" + ], + [ + "os", + "y" + ], + [ + "o", + "sy" + ], + [ + "▁Gir", + "l" + ], + [ + "▁G", + "irl" + ], + [ + "▁v", + "o" + ], + [ + "▁", + "vo" + ], + [ + "▁concern", + "s" + ], + [ + "▁concer", + "ns" + ], + [ + "▁conc", + "erns" + ], + [ + "▁power", + "s" + ], + [ + "▁pow", + "ers" + ], + [ + "▁p", + "owers" + ], + [ + "▁At", + "t" + ], + [ + "▁A", + "tt" + ], + [ + "port", + "s" + ], + [ + "por", + "ts" + ], + [ + "p", + "orts" + ], + [ + "is", + "a" + ], + [ + "i", + "sa" + ], + [ + "▁show", + "ing" + ], + [ + "▁sh", + "owing" + ], + [ + "po", + "ol" + ], + [ + "p", + "ool" + ], + [ + "▁cas", + "ual" + ], + [ + "u", + "a" + ], + [ + "iti", + "s" + ], + [ + "it", + "is" + ], + [ + "e", + "qu" + ], + [ + "▁Sen", + "ate" + ], + [ + "▁fa", + "n" + ], + [ + "▁f", + "an" + ], + [ + "▁", + "fan" + ], + [ + "▁wr", + "ong" + ], + [ + "▁w", + "rong" + ], + [ + "▁you", + "th" + ], + [ + "▁yo", + "uth" + ], + [ + "▁y", + "outh" + ], + [ + "▁Fou", + "nd" + ], + [ + "▁Fo", + "und" + ], + [ + "▁F", + "ound" + ], + [ + "▁promot", + "e" + ], + [ + "▁prom", + "ote" + ], + [ + "▁require", + "s" + ], + [ + "▁requ", + "ires" + ], + [ + "▁mount", + "ain" + ], + [ + "▁moun", + "tain" + ], + [ + "▁m", + "ountain" + ], + [ + "▁abs", + "or" + ], + [ + "▁ab", + "sor" + ], + [ + "▁196", + "7" + ], + [ + "▁19", + "67" + ], + [ + "▁Cr", + "it" + ], + [ + "▁C", + "rit" + ], + [ + "▁govern", + "or" + ], + [ + "▁gover", + "nor" + ], + [ + "▁fell", + "ow" + ], + [ + "▁fel", + "low" + ], + [ + "▁f", + "ellow" + ], + [ + "▁Island", + "s" + ], + [ + "▁Is", + "lands" + ], + [ + "▁real", + "ity" + ], + [ + "▁re", + "ality" + ], + [ + "▁dep", + "th" + ], + [ + "▁ed", + "ge" + ], + [ + "▁abandon", + "ed" + ], + [ + "▁els", + "e" + ], + [ + "▁el", + "se" + ], + [ + "▁Scott", + "ish" + ], + [ + "hem", + "at" + ], + [ + "he", + "mat" + ], + [ + "▁Du", + "ke" + ], + [ + "▁D", + "uke" + ], + [ + "▁connect", + "ion" + ], + [ + "▁conn", + "ection" + ], + [ + "▁cha", + "ir" + ], + [ + "▁ch", + "air" + ], + [ + "▁", + "chair" + ], + [ + "▁scholar", + "s" + ], + [ + "▁schol", + "ars" + ], + [ + "▁sch", + "olars" + ], + [ + "▁wast", + "e" + ], + [ + "▁was", + "te" + ], + [ + "▁wa", + "ste" + ], + [ + "▁w", + "aste" + ], + [ + "▁Pro", + "ject" + ], + [ + "▁Con", + "n" + ], + [ + "▁C", + "onn" + ], + [ + "▁", + "Conn" + ], + [ + "▁inc", + "ident" + ], + [ + "▁producer", + "s" + ], + [ + "▁produce", + "rs" + ], + [ + "▁produ", + "cers" + ], + [ + "▁ma", + "p" + ], + [ + "▁m", + "ap" + ], + [ + "▁ki", + "d" + ], + [ + "▁k", + "id" + ], + [ + "io", + "t" + ], + [ + "i", + "ot" + ], + [ + "ia", + "ble" + ], + [ + "i", + "able" + ], + [ + "il", + "asyon" + ], + [ + "pect", + "ive" + ], + [ + "pe", + "ctive" + ], + [ + "p", + "ective" + ], + [ + "▁Educ", + "ation" + ], + [ + "▁revol", + "ution" + ], + [ + "▁rev", + "olution" + ], + [ + "▁Mi", + "r" + ], + [ + "▁M", + "ir" + ], + [ + "▁population", + "s" + ], + [ + "▁popul", + "ations" + ], + [ + "▁pop", + "ulations" + ], + [ + "▁wound", + "ed" + ], + [ + "▁w", + "ounded" + ], + [ + "▁ve", + "n" + ], + [ + "▁v", + "en" + ], + [ + "▁", + "ven" + ], + [ + "▁dist", + "ingu" + ], + [ + "▁dis", + "tingu" + ], + [ + "▁198", + "3" + ], + [ + "▁bo", + "at" + ], + [ + "▁", + "boat" + ], + [ + "▁pain", + "t" + ], + [ + "▁pa", + "int" + ], + [ + "▁p", + "aint" + ], + [ + "▁interest", + "ed" + ], + [ + "▁inter", + "ested" + ], + [ + "▁re", + "ar" + ], + [ + "▁r", + "ear" + ], + [ + "▁teacher", + "s" + ], + [ + "▁teach", + "ers" + ], + [ + "▁teac", + "hers" + ], + [ + "▁tea", + "chers" + ], + [ + "▁te", + "achers" + ], + [ + "▁clo", + "ud" + ], + [ + "▁cl", + "oud" + ], + [ + "▁Inst", + "ead" + ], + [ + "▁In", + "stead" + ], + [ + "gi", + "an" + ], + [ + "g", + "ian" + ], + [ + "▁Tr", + "o" + ], + [ + "▁T", + "ro" + ], + [ + "▁adv", + "ert" + ], + [ + "▁ad", + "vert" + ], + [ + "▁suff", + "icient" + ], + [ + "▁su", + "fficient" + ], + [ + "▁stri", + "k" + ], + [ + "▁str", + "ik" + ], + [ + "▁st", + "rik" + ], + [ + "▁Wh", + "o" + ], + [ + "▁W", + "ho" + ], + [ + "ve", + "y" + ], + [ + "v", + "ey" + ], + [ + "▁add", + "ing" + ], + [ + "▁ad", + "ding" + ], + [ + "▁ca", + "ught" + ], + [ + "▁c", + "aught" + ], + [ + "9", + "0" + ], + [ + "▁sea", + "t" + ], + [ + "▁se", + "at" + ], + [ + "▁sound", + "track" + ], + [ + "▁journ", + "ey" + ], + [ + "▁vac", + "c" + ], + [ + "▁va", + "cc" + ], + [ + "▁v", + "acc" + ], + [ + "▁fi", + "m" + ], + [ + "▁f", + "im" + ], + [ + "▁", + "fim" + ], + [ + "▁achie", + "ve" + ], + [ + "▁Wil", + "d" + ], + [ + "▁Wi", + "ld" + ], + [ + "▁W", + "ild" + ], + [ + "▁Rev", + "iew" + ], + [ + "▁Re", + "view" + ], + [ + "▁feel", + "ing" + ], + [ + "▁fee", + "ling" + ], + [ + "▁fe", + "eling" + ], + [ + "▁ma", + "l" + ], + [ + "▁m", + "al" + ], + [ + "▁", + "mal" + ], + [ + "▁Ban", + "k" + ], + [ + "▁B", + "ank" + ], + [ + "tern", + "al" + ], + [ + "ter", + "nal" + ], + [ + "▁201", + "7" + ], + [ + "▁20", + "17" + ], + [ + "▁class", + "es" + ], + [ + "▁cl", + "asses" + ], + [ + "1", + "," + ], + [ + "▁We", + "b" + ], + [ + "▁W", + "eb" + ], + [ + "ris", + "is" + ], + [ + "ri", + "sis" + ], + [ + "▁album", + "s" + ], + [ + "anti", + "ne" + ], + [ + "ant", + "ine" + ], + [ + "▁Georg", + "ia" + ], + [ + "▁acquire", + "d" + ], + [ + "▁acqu", + "ired" + ], + [ + "▁A", + "z" + ], + [ + "I", + "V" + ], + [ + "▁arm", + "ed" + ], + [ + "▁ar", + "med" + ], + [ + "▁", + "armed" + ], + [ + "▁tro", + "u" + ], + [ + "▁tr", + "ou" + ], + [ + "▁Stan", + "d" + ], + [ + "▁Sta", + "nd" + ], + [ + "▁St", + "and" + ], + [ + "▁soft", + "ware" + ], + [ + "▁circ", + "um" + ], + [ + "▁expand", + "ed" + ], + [ + "▁exp", + "anded" + ], + [ + "▁infect", + "ion" + ], + [ + "▁inf", + "ection" + ], + [ + "▁read", + "y" + ], + [ + "▁re", + "ady" + ], + [ + "▁", + "ready" + ], + [ + "ut", + "ation" + ], + [ + "▁island", + "s" + ], + [ + "▁is", + "lands" + ], + [ + "ol", + "n" + ], + [ + "▁explo", + "s" + ], + [ + "▁expl", + "os" + ], + [ + "▁Bar", + "t" + ], + [ + "▁B", + "art" + ], + [ + "▁view", + "s" + ], + [ + "▁Co", + "p" + ], + [ + "▁C", + "op" + ], + [ + "▁9", + "5" + ], + [ + "▁", + "95" + ], + [ + "▁intens", + "ity" + ], + [ + "▁int", + "ensity" + ], + [ + "▁exchang", + "e" + ], + [ + "▁ex", + "change" + ], + [ + "▁my", + "th" + ], + [ + "▁H", + "urricane" + ], + [ + "ce", + "ived" + ], + [ + "B", + "A" + ], + [ + "▁Camb", + "ridge" + ], + [ + "▁Cam", + "bridge" + ], + [ + "▁critic", + "ized" + ], + [ + "▁field", + "s" + ], + [ + "▁", + "fields" + ], + [ + "▁no", + "b" + ], + [ + "▁n", + "ob" + ], + [ + "▁opin", + "ion" + ], + [ + "▁fict", + "ion" + ], + [ + "▁fi", + "ction" + ], + [ + "▁f", + "iction" + ], + [ + "I", + "N" + ], + [ + "▁stage", + "s" + ], + [ + "▁st", + "ages" + ], + [ + "▁specific", + "ally" + ], + [ + "▁spec", + "ifically" + ], + [ + "y", + "cl" + ], + [ + "▁death", + "s" + ], + [ + "▁Es", + "t" + ], + [ + "▁E", + "st" + ], + [ + "▁practice", + "s" + ], + [ + "▁pract", + "ices" + ], + [ + "▁recomm", + "end" + ], + [ + "▁fo", + "ught" + ], + [ + "▁f", + "ought" + ], + [ + "▁tool", + "s" + ], + [ + "▁too", + "ls" + ], + [ + "▁to", + "ols" + ], + [ + "▁t", + "ools" + ], + [ + "▁car", + "t" + ], + [ + "▁c", + "art" + ], + [ + "▁Nig", + "ht" + ], + [ + "▁Ni", + "ght" + ], + [ + "▁N", + "ight" + ], + [ + "ze", + "n" + ], + [ + "z", + "en" + ], + [ + "▁Columb", + "ia" + ], + [ + "▁Rom", + "e" + ], + [ + "▁Ro", + "me" + ], + [ + "▁R", + "ome" + ], + [ + "▁re", + "yal" + ], + [ + "▁Ri", + "c" + ], + [ + "▁R", + "ic" + ], + [ + "▁participate", + "d" + ], + [ + "▁particip", + "ated" + ], + [ + "▁Holl", + "y" + ], + [ + "▁Hol", + "ly" + ], + [ + "▁H", + "olly" + ], + [ + "▁Jo", + "e" + ], + [ + "▁J", + "oe" + ], + [ + "▁appearance", + "s" + ], + [ + "▁appear", + "ances" + ], + [ + "▁Home", + "r" + ], + [ + "▁Hom", + "er" + ], + [ + "▁Ho", + "mer" + ], + [ + "▁H", + "omer" + ], + [ + "▁196", + "9" + ], + [ + "▁Francis", + "co" + ], + [ + "▁Franc", + "isco" + ], + [ + "▁appropri", + "ate" + ], + [ + "▁", + "appropriate" + ], + [ + "▁freed", + "om" + ], + [ + "▁free", + "dom" + ], + [ + "▁fre", + "edom" + ], + [ + "ran", + "n" + ], + [ + "r", + "ann" + ], + [ + "▁wit", + "ness" + ], + [ + "▁w", + "itness" + ], + [ + "▁paralle", + "l" + ], + [ + "▁find", + "s" + ], + [ + "▁fin", + "ds" + ], + [ + "▁Ke", + "y" + ], + [ + "▁K", + "ey" + ], + [ + "he", + "im" + ], + [ + "▁bu", + "y" + ], + [ + "▁b", + "uy" + ], + [ + "ock", + "ey" + ], + [ + "oc", + "key" + ], + [ + "▁stud", + "ied" + ], + [ + "▁man", + "ner" + ], + [ + "▁m", + "anner" + ], + [ + "▁ki", + "ck" + ], + [ + "▁k", + "ick" + ], + [ + "▁recei", + "ving" + ], + [ + "▁rece", + "iving" + ], + [ + "olog", + "ies" + ], + [ + "ruct", + "ure" + ], + [ + "ract", + "ion" + ], + [ + "ra", + "ction" + ], + [ + "r", + "action" + ], + [ + "▁Bra", + "zil" + ], + [ + "ape", + "s" + ], + [ + "ap", + "es" + ], + [ + "a", + "pes" + ], + [ + "▁Ma", + "h" + ], + [ + "▁M", + "ah" + ], + [ + "▁198", + "2" + ], + [ + "po", + "wer" + ], + [ + "p", + "ower" + ], + [ + "▁R", + "h" + ], + [ + "▁gu", + "est" + ], + [ + "on", + "c" + ], + [ + "▁some", + "w" + ], + [ + "▁s", + "omew" + ], + [ + "▁hold", + "ing" + ], + [ + "▁hol", + "ding" + ], + [ + "▁h", + "olding" + ], + [ + "▁debut", + "ed" + ], + [ + "▁deb", + "uted" + ], + [ + "▁Sp", + "ace" + ], + [ + "ect", + "ive" + ], + [ + "e", + "ctive" + ], + [ + "▁Br", + "u" + ], + [ + "▁B", + "ru" + ], + [ + "▁di", + "e" + ], + [ + "▁d", + "ie" + ], + [ + "▁", + "die" + ], + [ + "or", + "ough" + ], + [ + "o", + "rough" + ], + [ + "▁experience", + "s" + ], + [ + "▁experien", + "ces" + ], + [ + "▁exper", + "iences" + ], + [ + "▁h", + "a" + ], + [ + "▁", + "ha" + ], + [ + "▁disease", + "s" + ], + [ + "▁dise", + "ases" + ], + [ + "▁Mo", + "v" + ], + [ + "▁M", + "ov" + ], + [ + "▁doc", + "t" + ], + [ + "▁do", + "ct" + ], + [ + "▁bre", + "at" + ], + [ + "▁b", + "reat" + ], + [ + "int", + "end" + ], + [ + "▁draw", + "n" + ], + [ + "▁dra", + "wn" + ], + [ + "▁dr", + "awn" + ], + [ + "▁d", + "rawn" + ], + [ + "ide", + "l" + ], + [ + "id", + "el" + ], + [ + "▁treat", + "ed" + ], + [ + "▁tre", + "ated" + ], + [ + "▁t", + "reated" + ], + [ + "▁", + "treated" + ], + [ + "▁Mean", + "while" + ], + [ + "adel", + "ph" + ], + [ + "▁fin", + "e" + ], + [ + "▁fi", + "ne" + ], + [ + "▁f", + "ine" + ], + [ + "▁Wel", + "l" + ], + [ + "▁We", + "ll" + ], + [ + "▁W", + "ell" + ], + [ + "ppe", + "r" + ], + [ + "pp", + "er" + ], + [ + "p", + "per" + ], + [ + "▁Har", + "ry" + ], + [ + "▁H", + "arry" + ], + [ + "▁insec", + "t" + ], + [ + "▁ins", + "ect" + ], + [ + "▁in", + "sect" + ], + [ + "▁food", + "s" + ], + [ + "▁fo", + "ods" + ], + [ + "ele", + "ss" + ], + [ + "el", + "ess" + ], + [ + "e", + "less" + ], + [ + "▁dec", + "k" + ], + [ + "▁de", + "ck" + ], + [ + "▁d", + "eck" + ], + [ + "▁contribute", + "d" + ], + [ + "▁contrib", + "uted" + ], + [ + "▁En", + "d" + ], + [ + "▁E", + "nd" + ], + [ + "▁", + "End" + ], + [ + "▁car", + "s" + ], + [ + "▁ca", + "rs" + ], + [ + "▁c", + "ars" + ], + [ + "▁Tre", + "at" + ], + [ + "▁T", + "reat" + ], + [ + "ren", + "der" + ], + [ + "r", + "ender" + ], + [ + "▁Ho", + "n" + ], + [ + "▁H", + "on" + ], + [ + "▁inst", + "ance" + ], + [ + "ora", + "ge" + ], + [ + "or", + "age" + ], + [ + "o", + "rage" + ], + [ + "▁mus", + "eum" + ], + [ + "▁Na", + "n" + ], + [ + "▁N", + "an" + ], + [ + "▁actor", + "s" + ], + [ + "▁act", + "ors" + ], + [ + "▁197", + "5" + ], + [ + "▁19", + "75" + ], + [ + "▁ev", + "ac" + ], + [ + "▁12", + "0" + ], + [ + "▁1", + "20" + ], + [ + "ration", + "s" + ], + [ + "rat", + "ions" + ], + [ + "r", + "ations" + ], + [ + "▁Po", + "t" + ], + [ + "▁P", + "ot" + ], + [ + "▁Dow", + "n" + ], + [ + "▁Do", + "wn" + ], + [ + "▁D", + "own" + ], + [ + "▁", + "Down" + ], + [ + "gen", + "t" + ], + [ + "ge", + "nt" + ], + [ + "g", + "ent" + ], + [ + "▁air", + "ed" + ], + [ + "▁a", + "ired" + ], + [ + "▁", + "aired" + ], + [ + "▁W", + "W" + ], + [ + "▁stre", + "t" + ], + [ + "▁str", + "et" + ], + [ + "▁st", + "ret" + ], + [ + "amp", + "ion" + ], + [ + "ild", + "ing" + ], + [ + "il", + "ding" + ], + [ + "▁diver", + "s" + ], + [ + "▁dive", + "rs" + ], + [ + "▁div", + "ers" + ], + [ + "▁di", + "vers" + ], + [ + "▁d", + "ivers" + ], + [ + "▁vis", + "ion" + ], + [ + "▁v", + "ision" + ], + [ + "the", + "s" + ], + [ + "th", + "es" + ], + [ + "t", + "hes" + ], + [ + "▁197", + "6" + ], + [ + "▁19", + "76" + ], + [ + "▁Tele", + "v" + ], + [ + "▁Tel", + "ev" + ], + [ + "▁Te", + "lev" + ], + [ + "▁bran", + "ch" + ], + [ + "▁b", + "ranch" + ], + [ + "▁conce", + "r" + ], + [ + "▁conc", + "er" + ], + [ + "▁con", + "cer" + ], + [ + "▁produ", + "cing" + ], + [ + "ger", + "y" + ], + [ + "ge", + "ry" + ], + [ + "g", + "ery" + ], + [ + "▁interpre", + "t" + ], + [ + "▁interp", + "ret" + ], + [ + "▁inter", + "pret" + ], + [ + "▁pre", + "t" + ], + [ + "▁pr", + "et" + ], + [ + "▁p", + "ret" + ], + [ + "▁", + "pret" + ], + [ + "ast", + "e" + ], + [ + "as", + "te" + ], + [ + "a", + "ste" + ], + [ + "▁Bea", + "t" + ], + [ + "▁Be", + "at" + ], + [ + "▁All", + "ied" + ], + [ + "▁Al", + "lied" + ], + [ + "▁domest", + "ic" + ], + [ + "▁dome", + "stic" + ], + [ + "▁dom", + "estic" + ], + [ + "ur", + "o" + ], + [ + "u", + "ro" + ], + [ + "▁genet", + "ic" + ], + [ + "▁gene", + "tic" + ], + [ + "▁gen", + "etic" + ], + [ + "▁Gi", + "l" + ], + [ + "▁G", + "il" + ], + [ + "▁exp", + "osure" + ], + [ + "ni", + "c" + ], + [ + "n", + "ic" + ], + [ + "if", + "orm" + ], + [ + "i", + "form" + ], + [ + "▁dom", + "èn" + ], + [ + "▁3", + "." + ], + [ + "▁", + "3." + ], + [ + "▁engage", + "d" + ], + [ + "▁eng", + "aged" + ], + [ + "▁Jew", + "s" + ], + [ + "▁riv", + "al" + ], + [ + "▁ri", + "val" + ], + [ + "▁r", + "ival" + ], + [ + "▁F", + "estival" + ], + [ + "▁atmosp", + "here" + ], + [ + "avi", + "g" + ], + [ + "av", + "ig" + ], + [ + "ri", + "m" + ], + [ + "r", + "im" + ], + [ + "icia", + "n" + ], + [ + "ici", + "an" + ], + [ + "ic", + "ian" + ], + [ + "▁reside", + "nt" + ], + [ + "▁resid", + "ent" + ], + [ + "▁res", + "ident" + ], + [ + "▁Lin", + "d" + ], + [ + "▁Li", + "nd" + ], + [ + "▁L", + "ind" + ], + [ + "▁Phil", + "adelph" + ], + [ + "▁ven", + "t" + ], + [ + "▁ve", + "nt" + ], + [ + "▁v", + "ent" + ], + [ + "▁", + "vent" + ], + [ + "▁commit", + "tee" + ], + [ + "▁exc", + "ess" + ], + [ + "▁ex", + "cess" + ], + [ + "▁sec", + "ure" + ], + [ + "▁approve", + "d" + ], + [ + "▁appro", + "ved" + ], + [ + "▁mil", + "e" + ], + [ + "▁mi", + "le" + ], + [ + "▁m", + "ile" + ], + [ + "▁", + "mile" + ], + [ + "▁Gre", + "e" + ], + [ + "▁Gr", + "ee" + ], + [ + "▁G", + "ree" + ], + [ + "▁Foot", + "ball" + ], + [ + "▁cho", + "ose" + ], + [ + "▁effective", + "ly" + ], + [ + "▁effect", + "ively" + ], + [ + "▁Ar", + "thur" + ], + [ + "▁", + "Arthur" + ], + [ + "▁inn", + "ov" + ], + [ + "▁facto", + "r" + ], + [ + "▁fact", + "or" + ], + [ + "▁fac", + "tor" + ], + [ + "▁fa", + "ctor" + ], + [ + "▁dism", + "iss" + ], + [ + "▁cap", + "able" + ], + [ + "▁tow", + "er" + ], + [ + "▁to", + "wer" + ], + [ + "▁t", + "ower" + ], + [ + "▁withd", + "raw" + ], + [ + "▁off", + "ensive" + ], + [ + "▁193", + "9" + ], + [ + "▁19", + "39" + ], + [ + "▁spor", + "t" + ], + [ + "▁sp", + "ort" + ], + [ + "▁s", + "port" + ], + [ + "▁to", + "m" + ], + [ + "▁t", + "om" + ], + [ + "li", + "fe" + ], + [ + "l", + "ife" + ], + [ + "▁ut", + "il" + ], + [ + "▁u", + "til" + ], + [ + "▁As", + "h" + ], + [ + "▁A", + "sh" + ], + [ + "▁Hi", + "t" + ], + [ + "▁H", + "it" + ], + [ + "▁s", + "ession" + ], + [ + "rom", + "e" + ], + [ + "ro", + "me" + ], + [ + "r", + "ome" + ], + [ + "ush", + "ing" + ], + [ + "us", + "hing" + ], + [ + "▁ident", + "ity" + ], + [ + "▁land", + "ing" + ], + [ + "▁lan", + "ding" + ], + [ + "▁part", + "ies" + ], + [ + "▁par", + "ties" + ], + [ + "man", + "uel" + ], + [ + "▁batter", + "y" + ], + [ + "▁batt", + "ery" + ], + [ + "▁bat", + "tery" + ], + [ + "▁b", + "attery" + ], + [ + "▁Lin", + "c" + ], + [ + "▁L", + "inc" + ], + [ + "to", + "r" + ], + [ + "t", + "or" + ], + [ + "▁reject", + "ed" + ], + [ + "▁rej", + "ected" + ], + [ + "▁sign", + "s" + ], + [ + "ign", + "ment" + ], + [ + "▁interest", + "ing" + ], + [ + "▁Te", + "ch" + ], + [ + "▁T", + "ech" + ], + [ + "p", + "e" + ], + [ + "▁196", + "4" + ], + [ + "▁19", + "64" + ], + [ + "ap", + "h" + ], + [ + "a", + "ph" + ], + [ + "cha", + "r" + ], + [ + "ch", + "ar" + ], + [ + "c", + "har" + ], + [ + "▁we", + "l" + ], + [ + "▁w", + "el" + ], + [ + "▁196", + "5" + ], + [ + "▁19", + "65" + ], + [ + "▁Mik", + "e" + ], + [ + "▁Mi", + "ke" + ], + [ + "▁M", + "ike" + ], + [ + "▁ru", + "ral" + ], + [ + "▁r", + "ural" + ], + [ + "▁8", + "5" + ], + [ + "▁", + "85" + ], + [ + "▁rail", + "way" + ], + [ + "▁Secret", + "ary" + ], + [ + "m", + "un" + ], + [ + "▁fo", + "ss" + ], + [ + "▁f", + "oss" + ], + [ + "▁ill", + "ness" + ], + [ + "▁Po", + "int" + ], + [ + "▁P", + "oint" + ], + [ + "▁Child", + "ren" + ], + [ + "▁Mo", + "s" + ], + [ + "▁M", + "os" + ], + [ + "P", + "A" + ], + [ + "▁depi", + "ct" + ], + [ + "▁dep", + "ict" + ], + [ + "ree", + "s" + ], + [ + "re", + "es" + ], + [ + "r", + "ees" + ], + [ + "bre", + "ak" + ], + [ + "B", + "N" + ], + [ + "▁he", + "ar" + ], + [ + "▁h", + "ear" + ], + [ + "▁tw", + "elve" + ], + [ + "▁author", + "s" + ], + [ + "▁auth", + "ors" + ], + [ + "▁drug", + "s" + ], + [ + "▁dr", + "ugs" + ], + [ + "gre", + "g" + ], + [ + "gr", + "eg" + ], + [ + "g", + "reg" + ], + [ + "oni", + "a" + ], + [ + "on", + "ia" + ], + [ + "o", + "nia" + ], + [ + "▁Cast", + "le" + ], + [ + "▁Cas", + "tle" + ], + [ + "iv", + "ite" + ], + [ + "▁consec", + "utive" + ], + [ + "▁Mar", + "c" + ], + [ + "▁M", + "arc" + ], + [ + "▁e", + "k" + ], + [ + "▁", + "ek" + ], + [ + "▁fl", + "at" + ], + [ + "uz", + "z" + ], + [ + "u", + "zz" + ], + [ + "▁197", + "3" + ], + [ + "▁un", + "p" + ], + [ + "▁typ", + "ical" + ], + [ + "▁Philadelph", + "ia" + ], + [ + "ir", + "a" + ], + [ + "i", + "ra" + ], + [ + "▁5", + "4" + ], + [ + "▁tourn", + "ament" + ], + [ + "▁t", + "ournament" + ], + [ + "▁tel", + "e" + ], + [ + "▁te", + "le" + ], + [ + "▁t", + "ele" + ], + [ + "▁197", + "4" + ], + [ + "▁paint", + "ing" + ], + [ + "▁pain", + "ting" + ], + [ + "▁po", + "em" + ], + [ + "iser", + "s" + ], + [ + "ise", + "rs" + ], + [ + "is", + "ers" + ], + [ + "ival", + "ent" + ], + [ + "▁Su", + "s" + ], + [ + "▁S", + "us" + ], + [ + "▁device", + "s" + ], + [ + "▁dev", + "ices" + ], + [ + "▁hug", + "e" + ], + [ + "▁h", + "uge" + ], + [ + "▁employ", + "ed" + ], + [ + "ell", + "e" + ], + [ + "el", + "le" + ], + [ + "é", + "s" + ], + [ + "▁public", + "ation" + ], + [ + "▁publ", + "ication" + ], + [ + "▁pub", + "lication" + ], + [ + "▁temperature", + "s" + ], + [ + "▁temper", + "atures" + ], + [ + "▁compl", + "ic" + ], + [ + "▁comp", + "lic" + ], + [ + "▁fill", + "ed" + ], + [ + "▁fil", + "led" + ], + [ + "▁fi", + "lled" + ], + [ + "▁f", + "illed" + ], + [ + "▁perform", + "ing" + ], + [ + "▁Na", + "z" + ], + [ + "▁N", + "az" + ], + [ + "▁Ba", + "l" + ], + [ + "▁B", + "al" + ], + [ + "▁disco", + "ver" + ], + [ + "▁disc", + "over" + ], + [ + "▁dis", + "cover" + ], + [ + "▁single", + "s" + ], + [ + "▁sing", + "les" + ], + [ + "ast", + "y" + ], + [ + "as", + "ty" + ], + [ + "ige", + "n" + ], + [ + "ig", + "en" + ], + [ + "i", + "gen" + ], + [ + "yle", + "s" + ], + [ + "yl", + "es" + ], + [ + "y", + "les" + ], + [ + "▁genu", + "s" + ], + [ + "▁gen", + "us" + ], + [ + "▁cycl", + "e" + ], + [ + "▁cy", + "cle" + ], + [ + "▁c", + "ycle" + ], + [ + "▁cat", + "ch" + ], + [ + "▁c", + "atch" + ], + [ + "or", + "us" + ], + [ + "o", + "rus" + ], + [ + "▁197", + "2" + ], + [ + "▁vir", + "us" + ], + [ + "▁vi", + "rus" + ], + [ + "▁v", + "irus" + ], + [ + "▁Linc", + "oln" + ], + [ + "▁acad", + "emic" + ], + [ + "ans", + "as" + ], + [ + "▁A", + "C" + ], + [ + "▁", + "AC" + ], + [ + "▁constit", + "ution" + ], + [ + "▁con", + "stitution" + ], + [ + "▁Bur", + "n" + ], + [ + "▁B", + "urn" + ], + [ + "▁196", + "6" + ], + [ + "▁19", + "66" + ], + [ + "▁tri", + "p" + ], + [ + "▁tr", + "ip" + ], + [ + "▁t", + "rip" + ], + [ + "it", + "led" + ], + [ + "ime", + "t" + ], + [ + "im", + "et" + ], + [ + "i", + "met" + ], + [ + "▁Va", + "r" + ], + [ + "▁V", + "ar" + ], + [ + "▁Col", + "l" + ], + [ + "▁Co", + "ll" + ], + [ + "▁C", + "oll" + ], + [ + "▁any", + "one" + ], + [ + "▁She", + "r" + ], + [ + "▁Sh", + "er" + ], + [ + "▁S", + "her" + ], + [ + "▁Oper", + "ation" + ], + [ + "▁Op", + "eration" + ], + [ + "ita", + "ge" + ], + [ + "it", + "age" + ], + [ + "i", + "tage" + ], + [ + "▁cross", + "ing" + ], + [ + "r", + "m" + ], + [ + "ici", + "t" + ], + [ + "ic", + "it" + ], + [ + "▁sa", + "n" + ], + [ + "▁s", + "an" + ], + [ + "▁-", + "-" + ], + [ + "▁", + "--" + ], + [ + "▁Ga", + "de" + ], + [ + "▁G", + "ade" + ], + [ + "yg", + "en" + ], + [ + "y", + "gen" + ], + [ + "▁Spec", + "ial" + ], + [ + "▁Spe", + "cial" + ], + [ + "▁purchase", + "d" + ], + [ + "▁purch", + "ased" + ], + [ + "▁organization", + "s" + ], + [ + "▁organ", + "izations" + ], + [ + "▁get", + "s" + ], + [ + "▁ge", + "ts" + ], + [ + "▁g", + "ets" + ], + [ + "▁", + "gets" + ], + [ + "▁accompan", + "ied" + ], + [ + "▁He", + "ad" + ], + [ + "▁H", + "ead" + ], + [ + "▁dr", + "iving" + ], + [ + "▁Pow", + "er" + ], + [ + "▁Po", + "wer" + ], + [ + "▁P", + "ower" + ], + [ + "▁Lan", + "g" + ], + [ + "▁La", + "ng" + ], + [ + "▁L", + "ang" + ], + [ + "▁under", + "t" + ], + [ + "▁und", + "ert" + ], + [ + "▁act", + "s" + ], + [ + "▁ac", + "ts" + ], + [ + "▁", + "acts" + ], + [ + "ba", + "r" + ], + [ + "b", + "ar" + ], + [ + "aga", + "n" + ], + [ + "ag", + "an" + ], + [ + "a", + "gan" + ], + [ + "▁akt", + "ivite" + ], + [ + "▁brief", + "ly" + ], + [ + "▁Republic", + "an" + ], + [ + "▁obtain", + "ed" + ], + [ + "▁ob", + "tained" + ], + [ + "▁crow", + "d" + ], + [ + "▁fav", + "our" + ], + [ + "▁tal", + "l" + ], + [ + "▁ta", + "ll" + ], + [ + "▁t", + "all" + ], + [ + "▁lead", + "s" + ], + [ + "▁le", + "ads" + ], + [ + "▁she", + "l" + ], + [ + "▁sh", + "el" + ], + [ + "▁s", + "hel" + ], + [ + "▁Si", + "x" + ], + [ + "▁S", + "ix" + ], + [ + "▁process", + "es" + ], + [ + "▁proc", + "esses" + ], + [ + "▁head", + "s" + ], + [ + "▁he", + "ads" + ], + [ + "▁", + "heads" + ], + [ + "▁occup", + "ied" + ], + [ + "▁", + "occupied" + ], + [ + "umi", + "n" + ], + [ + "um", + "in" + ], + [ + "u", + "min" + ], + [ + "▁view", + "ed" + ], + [ + "iat", + "e" + ], + [ + "ia", + "te" + ], + [ + "i", + "ate" + ], + [ + "▁sust", + "ain" + ], + [ + "▁sus", + "tain" + ], + [ + "▁s", + "ustain" + ], + [ + "▁confer", + "ence" + ], + [ + "▁con", + "ference" + ], + [ + "▁5", + "3" + ], + [ + "ua", + "n" + ], + [ + "u", + "an" + ], + [ + "ach", + "us" + ], + [ + "ac", + "hus" + ], + [ + "a", + "chus" + ], + [ + "▁Liv", + "e" + ], + [ + "▁Li", + "ve" + ], + [ + "▁L", + "ive" + ], + [ + "ister", + "ed" + ], + [ + "iste", + "red" + ], + [ + "ist", + "ered" + ], + [ + "is", + "tered" + ], + [ + "j", + "o" + ], + [ + "▁Wh", + "y" + ], + [ + "▁W", + "hy" + ], + [ + "▁bal", + "ance" + ], + [ + "▁ba", + "lance" + ], + [ + "▁fin", + "ish" + ], + [ + "▁ko", + "n" + ], + [ + "▁k", + "on" + ], + [ + "▁", + "kon" + ], + [ + "▁un", + "l" + ], + [ + "▁tru", + "th" + ], + [ + "▁tr", + "uth" + ], + [ + "▁compos", + "ition" + ], + [ + "▁comp", + "osition" + ], + [ + "▁197", + "1" + ], + [ + "▁B", + "i" + ], + [ + "▁", + "Bi" + ], + [ + "▁gro", + "ss" + ], + [ + "▁gr", + "oss" + ], + [ + "▁g", + "ross" + ], + [ + "ep", + "er" + ], + [ + "e", + "per" + ], + [ + "▁Tur", + "n" + ], + [ + "▁T", + "urn" + ], + [ + "▁Mo", + "t" + ], + [ + "▁M", + "ot" + ], + [ + "thel", + "ess" + ], + [ + "the", + "less" + ], + [ + "th", + "eless" + ], + [ + "t", + "heless" + ], + [ + "ige", + "r" + ], + [ + "ig", + "er" + ], + [ + "i", + "ger" + ], + [ + "▁Jen", + "n" + ], + [ + "▁J", + "enn" + ], + [ + "▁", + "•" + ], + [ + "▁Hu", + "n" + ], + [ + "▁H", + "un" + ], + [ + "rate", + "s" + ], + [ + "rat", + "es" + ], + [ + "ra", + "tes" + ], + [ + "r", + "ates" + ], + [ + "▁ap", + "art" + ], + [ + "▁a", + "part" + ], + [ + "▁cont", + "ext" + ], + [ + "▁con", + "text" + ], + [ + "▁gra", + "ss" + ], + [ + "▁gr", + "ass" + ], + [ + "▁", + "grass" + ], + [ + "▁Is", + "lam" + ], + [ + "▁Develop", + "ment" + ], + [ + "▁De", + "velopment" + ], + [ + "è", + "s" + ], + [ + "▁over", + "l" + ], + [ + "▁st", + "ock" + ], + [ + "▁", + "stock" + ], + [ + "▁197", + "8" + ], + [ + "▁19", + "78" + ], + [ + "▁dec", + "ade" + ], + [ + "▁Eng", + "ine" + ], + [ + "▁Ind", + "ust" + ], + [ + "▁Soci", + "al" + ], + [ + "▁Soc", + "ial" + ], + [ + "▁So", + "cial" + ], + [ + "▁S", + "ocial" + ], + [ + "▁strat", + "e" + ], + [ + "▁stra", + "te" + ], + [ + "▁str", + "ate" + ], + [ + "▁st", + "rate" + ], + [ + "▁rough", + "ly" + ], + [ + "▁rec", + "ru" + ], + [ + "▁re", + "cru" + ], + [ + "▁f", + "ashion" + ], + [ + "form", + "ation" + ], + [ + "the", + "n" + ], + [ + "th", + "en" + ], + [ + "t", + "hen" + ], + [ + "▁start", + "s" + ], + [ + "▁star", + "ts" + ], + [ + "▁st", + "arts" + ], + [ + "▁strateg", + "y" + ], + [ + "▁strate", + "gy" + ], + [ + "▁Squ", + "are" + ], + [ + "n", + "ce" + ], + [ + "▁C", + "a" + ], + [ + "▁turn", + "ing" + ], + [ + "▁tur", + "ning" + ], + [ + "▁concern", + "ed" + ], + [ + "▁concer", + "ned" + ], + [ + "▁rh", + "y" + ], + [ + "▁r", + "hy" + ], + [ + "▁intellig", + "ence" + ], + [ + "▁retire", + "d" + ], + [ + "▁ret", + "ired" + ], + [ + "▁gal", + "l" + ], + [ + "▁ga", + "ll" + ], + [ + "▁g", + "all" + ], + [ + "▁5", + "6" + ], + [ + "▁", + "56" + ], + [ + "oth", + "ing" + ], + [ + "ot", + "hing" + ], + [ + "o", + "thing" + ], + [ + "▁ess", + "ay" + ], + [ + "▁es", + "say" + ], + [ + "▁techn", + "ical" + ], + [ + "▁Pro", + "gram" + ], + [ + "▁Pr", + "ogram" + ], + [ + "▁ph", + "en" + ], + [ + "▁p", + "hen" + ], + [ + "▁cons", + "ult" + ], + [ + "I", + "C" + ], + [ + "▁Le", + "ar" + ], + [ + "▁L", + "ear" + ], + [ + "▁", + "Lear" + ], + [ + "▁Doct", + "or" + ], + [ + "▁Doc", + "tor" + ], + [ + "▁Do", + "ctor" + ], + [ + "▁Studio", + "s" + ], + [ + "▁Stud", + "ios" + ], + [ + "▁respons", + "ibility" + ], + [ + "aw", + "a" + ], + [ + "a", + "wa" + ], + [ + "▁Ha", + "y" + ], + [ + "▁H", + "ay" + ], + [ + "ification", + "s" + ], + [ + "ific", + "ations" + ], + [ + "if", + "ications" + ], + [ + "▁198", + "1" + ], + [ + "▁relat", + "ive" + ], + [ + "▁rel", + "ative" + ], + [ + "▁miss", + "ing" + ], + [ + "▁sur", + "render" + ], + [ + "F", + "A" + ], + [ + "▁80", + "0" + ], + [ + "▁8", + "00" + ], + [ + "▁Con", + "ference" + ], + [ + "▁arr", + "ival" + ], + [ + "▁o", + "cean" + ], + [ + "idd", + "en" + ], + [ + "id", + "den" + ], + [ + "▁ca", + "b" + ], + [ + "▁c", + "ab" + ], + [ + "▁r", + "i" + ], + [ + "▁", + "ri" + ], + [ + "▁Sou", + "nd" + ], + [ + "▁So", + "und" + ], + [ + "▁S", + "ound" + ], + [ + "▁vi", + "t" + ], + [ + "▁v", + "it" + ], + [ + "▁sn", + "ow" + ], + [ + "▁s", + "now" + ], + [ + "ens", + "us" + ], + [ + "▁kilometre", + "s" + ], + [ + "▁kilomet", + "res" + ], + [ + "os", + "ite" + ], + [ + "▁exp", + "and" + ], + [ + "▁application", + "s" + ], + [ + "▁applic", + "ations" + ], + [ + "▁appl", + "ications" + ], + [ + "▁suppl", + "ies" + ], + [ + "▁supp", + "lies" + ], + [ + "▁pattern", + "s" + ], + [ + "▁emotion", + "al" + ], + [ + "▁emot", + "ional" + ], + [ + "▁em", + "otional" + ], + [ + "ologist", + "s" + ], + [ + "olog", + "ists" + ], + [ + "▁As", + "t" + ], + [ + "▁A", + "st" + ], + [ + "▁Fant", + "asy" + ], + [ + "▁F", + "antasy" + ], + [ + "▁17", + "8" + ], + [ + "▁1", + "78" + ], + [ + "▁Se", + "e" + ], + [ + "▁S", + "ee" + ], + [ + "▁", + "See" + ], + [ + "▁pred", + "ict" + ], + [ + "▁pre", + "dict" + ], + [ + "▁p", + "redict" + ], + [ + "li", + "g" + ], + [ + "l", + "ig" + ], + [ + "ony", + "m" + ], + [ + "on", + "ym" + ], + [ + "▁age", + "nt" + ], + [ + "▁ag", + "ent" + ], + [ + "▁a", + "gent" + ], + [ + "▁increase", + "s" + ], + [ + "▁incre", + "ases" + ], + [ + "▁remov", + "e" + ], + [ + "▁rem", + "ove" + ], + [ + "▁J", + "r" + ], + [ + "B", + "S" + ], + [ + "achus", + "etts" + ], + [ + "▁loss", + "es" + ], + [ + "▁los", + "ses" + ], + [ + "ro", + "c" + ], + [ + "r", + "oc" + ], + [ + "▁techn", + "ique" + ], + [ + "▁Bro", + "ok" + ], + [ + "▁Br", + "ook" + ], + [ + "▁infant", + "ry" + ], + [ + "▁inf", + "antry" + ], + [ + "▁adv", + "ent" + ], + [ + "▁ad", + "vent" + ], + [ + "ul", + "pt" + ], + [ + "▁sing", + "ing" + ], + [ + "▁sin", + "ging" + ], + [ + "▁en", + "l" + ], + [ + "▁eat", + "ing" + ], + [ + "▁e", + "ating" + ], + [ + "▁P", + "o" + ], + [ + "▁down", + "load" + ], + [ + "ense", + "s" + ], + [ + "ens", + "es" + ], + [ + "en", + "ses" + ], + [ + "▁Bel", + "l" + ], + [ + "▁Be", + "ll" + ], + [ + "▁B", + "ell" + ], + [ + "▁up", + "gr" + ], + [ + "▁Mass", + "achusetts" + ], + [ + "▁flood", + "ing" + ], + [ + "▁flo", + "oding" + ], + [ + "▁va", + "n" + ], + [ + "▁v", + "an" + ], + [ + "▁", + "van" + ], + [ + "▁alcoh", + "ol" + ], + [ + "ol", + "t" + ], + [ + "▁Ear", + "l" + ], + [ + "▁Lew", + "is" + ], + [ + "O", + "R" + ], + [ + "é", + "e" + ], + [ + "ru", + "m" + ], + [ + "r", + "um" + ], + [ + "▁squad", + "ron" + ], + [ + "▁squ", + "adron" + ], + [ + "ici", + "ency" + ], + [ + "ic", + "iency" + ], + [ + "▁function", + "s" + ], + [ + "▁fun", + "ctions" + ], + [ + "▁relationship", + "s" + ], + [ + "▁relations", + "hips" + ], + [ + "▁O", + "k" + ], + [ + "▁t", + "y" + ], + [ + "▁", + "ty" + ], + [ + "▁li", + "qu" + ], + [ + "▁l", + "iqu" + ], + [ + "▁do", + "or" + ], + [ + "▁d", + "oor" + ], + [ + "▁sat", + "is" + ], + [ + "▁s", + "atis" + ], + [ + "▁p", + "è" + ], + [ + "▁Live", + "r" + ], + [ + "▁Liv", + "er" + ], + [ + "▁Li", + "ver" + ], + [ + "▁L", + "iver" + ], + [ + "▁or", + "d" + ], + [ + "▁o", + "rd" + ], + [ + "▁", + "ord" + ], + [ + "▁v", + "ul" + ], + [ + "ell", + "y" + ], + [ + "el", + "ly" + ], + [ + "▁Miche", + "l" + ], + [ + "▁Mich", + "el" + ], + [ + "▁Mic", + "hel" + ], + [ + "▁Mi", + "chel" + ], + [ + "▁Mill", + "er" + ], + [ + "▁Mil", + "ler" + ], + [ + "▁Mi", + "ller" + ], + [ + "▁M", + "iller" + ], + [ + "go", + "ing" + ], + [ + "▁all", + "e" + ], + [ + "▁al", + "le" + ], + [ + "▁", + "alle" + ], + [ + "▁head", + "quarters" + ], + [ + "▁Gul", + "f" + ], + [ + "▁G", + "ulf" + ], + [ + "▁Prim", + "e" + ], + [ + "▁Pri", + "me" + ], + [ + "▁Pr", + "ime" + ], + [ + "▁sou", + "l" + ], + [ + "▁so", + "ul" + ], + [ + "▁s", + "oul" + ], + [ + "▁theme", + "s" + ], + [ + "▁them", + "es" + ], + [ + "▁the", + "mes" + ], + [ + "▁veh", + "icle" + ], + [ + "ura", + "nce" + ], + [ + "ur", + "ance" + ], + [ + "u", + "rance" + ], + [ + "▁191", + "4" + ], + [ + "▁19", + "14" + ], + [ + "▁carry", + "ing" + ], + [ + "▁car", + "rying" + ], + [ + "▁P", + "u" + ], + [ + "ilt", + "on" + ], + [ + "il", + "ton" + ], + [ + "▁perman", + "ent" + ], + [ + "▁War", + "s" + ], + [ + "▁Wa", + "rs" + ], + [ + "▁W", + "ars" + ], + [ + "▁Korea", + "n" + ], + [ + "▁Kore", + "an" + ], + [ + "▁Kor", + "ean" + ], + [ + "▁Comm", + "and" + ], + [ + "▁expl", + "ain" + ], + [ + "▁exp", + "lain" + ], + [ + "▁Sha", + "k" + ], + [ + "▁Sh", + "ak" + ], + [ + "▁indicate", + "d" + ], + [ + "▁indic", + "ated" + ], + [ + "▁ind", + "icated" + ], + [ + "▁Mu", + "l" + ], + [ + "▁M", + "ul" + ], + [ + "▁Hum", + "an" + ], + [ + "▁Hu", + "man" + ], + [ + "▁H", + "uman" + ], + [ + "un", + "icip" + ], + [ + "▁inf", + "ect" + ], + [ + "▁in", + "fect" + ], + [ + "▁commission", + "ed" + ], + [ + "▁comm", + "issioned" + ], + [ + "▁step", + "s" + ], + [ + "▁ste", + "ps" + ], + [ + "▁st", + "eps" + ], + [ + "▁film", + "ed" + ], + [ + "▁fil", + "med" + ], + [ + "▁4", + "1" + ], + [ + "▁", + "41" + ], + [ + "ague", + "s" + ], + [ + "agu", + "es" + ], + [ + "ag", + "ues" + ], + [ + "▁Ar", + "i" + ], + [ + "▁A", + "ri" + ], + [ + "E", + "C" + ], + [ + "▁polic", + "ies" + ], + [ + "▁Bet", + "ween" + ], + [ + "abi", + "l" + ], + [ + "ab", + "il" + ], + [ + "▁Sup", + "reme" + ], + [ + "▁other", + "wise" + ], + [ + "▁gard", + "en" + ], + [ + "▁gar", + "den" + ], + [ + "▁g", + "arden" + ], + [ + "▁egg", + "s" + ], + [ + "▁eg", + "gs" + ], + [ + "▁Fore", + "st" + ], + [ + "▁For", + "est" + ], + [ + "▁Fo", + "rest" + ], + [ + "▁film", + "ing" + ], + [ + "▁fil", + "ming" + ], + [ + "▁bon", + "d" + ], + [ + "▁bo", + "nd" + ], + [ + "▁b", + "ond" + ], + [ + "aval", + "ry" + ], + [ + "▁transit", + "ion" + ], + [ + "▁trans", + "ition" + ], + [ + "▁Anders", + "on" + ], + [ + "▁And", + "erson" + ], + [ + "er", + "g" + ], + [ + "atical", + "ly" + ], + [ + "atic", + "ally" + ], + [ + "at", + "ically" + ], + [ + "▁Robert", + "o" + ], + [ + "▁Rober", + "to" + ], + [ + "▁Rob", + "erto" + ], + [ + "▁Ro", + "berto" + ], + [ + "▁independ", + "ence" + ], + [ + "▁Ba", + "d" + ], + [ + "▁B", + "ad" + ], + [ + "▁Ta", + "m" + ], + [ + "▁T", + "am" + ], + [ + "▁a", + "er" + ], + [ + "ba", + "l" + ], + [ + "b", + "al" + ], + [ + "▁sur", + "pris" + ], + [ + "▁ste", + "am" + ], + [ + "▁sound", + "s" + ], + [ + "▁s", + "ounds" + ], + [ + "▁merc", + "h" + ], + [ + "▁mer", + "ch" + ], + [ + "▁danger", + "ous" + ], + [ + "▁dang", + "erous" + ], + [ + "▁ba", + "n" + ], + [ + "▁b", + "an" + ], + [ + "▁", + "ban" + ], + [ + "▁191", + "8" + ], + [ + "▁19", + "18" + ], + [ + "▁sevent", + "h" + ], + [ + "▁seven", + "th" + ], + [ + "▁se", + "venth" + ], + [ + "▁design", + "s" + ], + [ + "▁Bal", + "t" + ], + [ + "▁B", + "alt" + ], + [ + "▁den", + "s" + ], + [ + "▁de", + "ns" + ], + [ + "▁d", + "ens" + ], + [ + "ician", + "s" + ], + [ + "icia", + "ns" + ], + [ + "ici", + "ans" + ], + [ + "ic", + "ians" + ], + [ + "ck", + "now" + ], + [ + "▁link", + "ed" + ], + [ + "▁section", + "s" + ], + [ + "▁sect", + "ions" + ], + [ + "▁se", + "ctions" + ], + [ + "▁bas", + "s" + ], + [ + "▁ba", + "ss" + ], + [ + "▁b", + "ass" + ], + [ + "▁vessel", + "s" + ], + [ + "▁vess", + "els" + ], + [ + "I", + "T" + ], + [ + "▁197", + "7" + ], + [ + "▁19", + "77" + ], + [ + "▁earl", + "iest" + ], + [ + "▁ear", + "liest" + ], + [ + "▁gradual", + "ly" + ], + [ + "▁grad", + "ually" + ], + [ + "igr", + "ation" + ], + [ + "ig", + "ration" + ], + [ + "▁dram", + "a" + ], + [ + "▁dra", + "ma" + ], + [ + "▁dr", + "ama" + ], + [ + "▁Prof", + "ess" + ], + [ + "▁I", + "d" + ], + [ + "7", + "5" + ], + [ + "▁cr", + "ime" + ], + [ + "▁relie", + "f" + ], + [ + "▁rel", + "ief" + ], + [ + "▁grad", + "e" + ], + [ + "▁gra", + "de" + ], + [ + "▁gr", + "ade" + ], + [ + "▁", + "grade" + ], + [ + "▁slow", + "ly" + ], + [ + "▁Fr", + "it" + ], + [ + "▁F", + "rit" + ], + [ + "▁characteristic", + "s" + ], + [ + "▁character", + "istics" + ], + [ + "oot", + "h" + ], + [ + "oo", + "th" + ], + [ + "o", + "oth" + ], + [ + "▁region", + "al" + ], + [ + "▁reg", + "ional" + ], + [ + "▁interest", + "s" + ], + [ + "▁inter", + "ests" + ], + [ + "▁sol", + "e" + ], + [ + "▁so", + "le" + ], + [ + "▁s", + "ole" + ], + [ + "▁", + "sole" + ], + [ + "▁a", + "thlet" + ], + [ + "▁Gr", + "o" + ], + [ + "▁G", + "ro" + ], + [ + "▁fl", + "y" + ], + [ + "▁f", + "ly" + ], + [ + "▁", + "fly" + ], + [ + "▁vo", + "n" + ], + [ + "▁v", + "on" + ], + [ + "▁schedule", + "d" + ], + [ + "▁sched", + "uled" + ], + [ + "▁Bac", + "k" + ], + [ + "▁Ba", + "ck" + ], + [ + "▁B", + "ack" + ], + [ + "ika", + "l" + ], + [ + "ik", + "al" + ], + [ + "▁decl", + "ine" + ], + [ + "▁dec", + "line" + ], + [ + "▁or", + "i" + ], + [ + "▁o", + "ri" + ], + [ + "▁", + "ori" + ], + [ + "bo", + "x" + ], + [ + "b", + "ox" + ], + [ + "▁I", + "V" + ], + [ + "▁", + "IV" + ], + [ + "▁boat", + "s" + ], + [ + "▁bo", + "ats" + ], + [ + "▁", + "boats" + ], + [ + "▁title", + "s" + ], + [ + "▁tit", + "les" + ], + [ + "▁won", + "der" + ], + [ + "▁w", + "onder" + ], + [ + "▁brig", + "ht" + ], + [ + "▁br", + "ight" + ], + [ + "▁b", + "right" + ], + [ + "▁expose", + "d" + ], + [ + "▁exp", + "osed" + ], + [ + "▁interchang", + "e" + ], + [ + "▁inter", + "change" + ], + [ + "▁Bud", + "d" + ], + [ + "▁Bu", + "dd" + ], + [ + "▁B", + "udd" + ], + [ + "▁rep", + "rodu" + ], + [ + "▁re", + "produ" + ], + [ + "▁regular", + "ly" + ], + [ + "iver", + "ed" + ], + [ + "ive", + "red" + ], + [ + "iv", + "ered" + ], + [ + "í", + "a" + ], + [ + "▁emerg", + "ency" + ], + [ + "▁emer", + "gency" + ], + [ + "▁teac", + "h" + ], + [ + "▁tea", + "ch" + ], + [ + "▁te", + "ach" + ], + [ + "ect", + "or" + ], + [ + "ec", + "tor" + ], + [ + "e", + "ctor" + ], + [ + "▁Bo", + "n" + ], + [ + "▁B", + "on" + ], + [ + "▁T", + "ropical" + ], + [ + "▁up", + "d" + ], + [ + "▁Spr", + "ing" + ], + [ + "▁Sp", + "ring" + ], + [ + "▁S", + "pring" + ], + [ + "▁camer", + "a" + ], + [ + "▁came", + "ra" + ], + [ + "▁cam", + "era" + ], + [ + "ici", + "de" + ], + [ + "ic", + "ide" + ], + [ + "▁Na", + "p" + ], + [ + "▁N", + "ap" + ], + [ + "▁mount", + "ed" + ], + [ + "▁moun", + "ted" + ], + [ + "▁mo", + "unted" + ], + [ + "▁m", + "ounted" + ], + [ + "▁derive", + "d" + ], + [ + "▁deriv", + "ed" + ], + [ + "▁der", + "ived" + ], + [ + "▁Or", + "gan" + ], + [ + "▁ent", + "ry" + ], + [ + "▁en", + "try" + ], + [ + "ger", + "s" + ], + [ + "ge", + "rs" + ], + [ + "g", + "ers" + ], + [ + "ipp", + "ing" + ], + [ + "ip", + "ping" + ], + [ + "i", + "pping" + ], + [ + "▁cerem", + "ony" + ], + [ + "le", + "e" + ], + [ + "l", + "ee" + ], + [ + "▁chang", + "ing" + ], + [ + "un", + "a" + ], + [ + "u", + "na" + ], + [ + "▁Ca", + "s" + ], + [ + "▁C", + "as" + ], + [ + "w", + "orth" + ], + [ + "man", + "n" + ], + [ + "m", + "ann" + ], + [ + "ol", + "i" + ], + [ + "o", + "li" + ], + [ + "▁defe", + "nce" + ], + [ + "▁def", + "ence" + ], + [ + "▁shar", + "k" + ], + [ + "▁sh", + "ark" + ], + [ + "▁lands", + "c" + ], + [ + "▁land", + "sc" + ], + [ + "uation", + "s" + ], + [ + "u", + "ations" + ], + [ + "▁ren", + "ew" + ], + [ + "▁re", + "new" + ], + [ + "▁exped", + "ition" + ], + [ + "▁Dav", + "is" + ], + [ + "▁Da", + "vis" + ], + [ + "▁user", + "s" + ], + [ + "▁use", + "rs" + ], + [ + "▁us", + "ers" + ], + [ + "oss", + "ible" + ], + [ + "▁V", + "e" + ], + [ + "▁bab", + "y" + ], + [ + "▁ba", + "by" + ], + [ + "▁b", + "aby" + ], + [ + "▁cred", + "it" + ], + [ + "▁ex", + "clus" + ], + [ + "▁se", + "d" + ], + [ + "▁s", + "ed" + ], + [ + "▁ar", + "c" + ], + [ + "▁", + "arc" + ], + [ + "▁Gran", + "t" + ], + [ + "▁Gra", + "nt" + ], + [ + "▁Gr", + "ant" + ], + [ + "▁G", + "rant" + ], + [ + "▁person", + "nel" + ], + [ + "▁(20", + "0" + ], + [ + "▁(2", + "00" + ], + [ + "▁(", + "200" + ], + [ + "▁poss", + "ibility" + ], + [ + "idge", + "s" + ], + [ + "id", + "ges" + ], + [ + "atha", + "n" + ], + [ + "ath", + "an" + ], + [ + "at", + "han" + ], + [ + "▁ti", + "ck" + ], + [ + "▁t", + "ick" + ], + [ + "▁pri", + "c" + ], + [ + "▁pr", + "ic" + ], + [ + "▁p", + "ric" + ], + [ + "▁sol", + "o" + ], + [ + "▁so", + "lo" + ], + [ + "▁s", + "olo" + ], + [ + "▁7", + "6" + ], + [ + "▁", + "76" + ], + [ + "▁torped", + "o" + ], + [ + "▁shape", + "d" + ], + [ + "▁sh", + "aped" + ], + [ + "▁", + "shaped" + ], + [ + "apor", + "e" + ], + [ + "apo", + "re" + ], + [ + "ap", + "ore" + ], + [ + "▁form", + "al" + ], + [ + "▁for", + "mal" + ], + [ + "▁f", + "ormal" + ], + [ + "▁bur", + "ied" + ], + [ + "▁bu", + "ried" + ], + [ + "▁bacter", + "ia" + ], + [ + "▁corp", + "or" + ], + [ + "▁cor", + "por" + ], + [ + "▁c", + "orpor" + ], + [ + "et", + "ball" + ], + [ + "E", + "D" + ], + [ + "do", + "n" + ], + [ + "d", + "on" + ], + [ + "▁Wh", + "e" + ], + [ + "▁W", + "he" + ], + [ + "▁T", + "y" + ], + [ + "▁al", + "t" + ], + [ + "▁", + "alt" + ], + [ + "▁we", + "b" + ], + [ + "▁w", + "eb" + ], + [ + "▁", + "web" + ], + [ + "▁IS", + "BN" + ], + [ + "esp", + "read" + ], + [ + "▁Con", + "stitution" + ], + [ + "▁zo", + "ne" + ], + [ + "▁z", + "one" + ], + [ + "il", + "a" + ], + [ + "i", + "la" + ], + [ + "▁proc", + "eed" + ], + [ + "▁pro", + "ceed" + ], + [ + "▁ra", + "ise" + ], + [ + "▁coast", + "al" + ], + [ + "unc", + "h" + ], + [ + "un", + "ch" + ], + [ + "wal", + "l" + ], + [ + "wa", + "ll" + ], + [ + "w", + "all" + ], + [ + "▁fund", + "s" + ], + [ + "▁fun", + "ds" + ], + [ + "▁German", + "s" + ], + [ + "▁Germ", + "ans" + ], + [ + "▁Ger", + "mans" + ], + [ + "▁critic", + "ism" + ], + [ + "▁crit", + "icism" + ], + [ + "▁k", + "èk" + ], + [ + "▁Un", + "ivers" + ], + [ + "▁sel", + "l" + ], + [ + "▁se", + "ll" + ], + [ + "▁s", + "ell" + ], + [ + "ado", + "r" + ], + [ + "ad", + "or" + ], + [ + "▁deliver", + "ed" + ], + [ + "▁del", + "ivered" + ], + [ + "▁Ros", + "s" + ], + [ + "▁Ro", + "ss" + ], + [ + "▁R", + "oss" + ], + [ + "▁convert", + "ed" + ], + [ + "▁conver", + "ted" + ], + [ + "▁conv", + "erted" + ], + [ + "▁la", + "p" + ], + [ + "▁l", + "ap" + ], + [ + "▁Feder", + "al" + ], + [ + "▁Fed", + "eral" + ], + [ + "▁F", + "ederal" + ], + [ + "▁Ind", + "epend" + ], + [ + "▁polit", + "ics" + ], + [ + "▁acre", + "s" + ], + [ + "▁ac", + "res" + ], + [ + "▁speak", + "ing" + ], + [ + "▁spe", + "aking" + ], + [ + "▁1", + "," + ], + [ + "▁", + "1," + ], + [ + "▁U", + "r" + ], + [ + "ed", + "ia" + ], + [ + "e", + "dia" + ], + [ + "▁col", + "our" + ], + [ + "▁Walt", + "er" + ], + [ + "▁Wal", + "ter" + ], + [ + "▁Bro", + "ad" + ], + [ + "▁Br", + "oad" + ], + [ + "▁B", + "road" + ], + [ + "▁describ", + "e" + ], + [ + "▁desc", + "ribe" + ], + [ + "▁Mo", + "on" + ], + [ + "▁M", + "oon" + ], + [ + "▁not", + "able" + ], + [ + "▁Ag", + "e" + ], + [ + "▁A", + "ge" + ], + [ + "▁T", + "a" + ], + [ + "tain", + "ing" + ], + [ + "ta", + "ining" + ], + [ + "t", + "aining" + ], + [ + "▁S", + "R" + ], + [ + "▁sen", + "d" + ], + [ + "▁se", + "nd" + ], + [ + "▁s", + "end" + ], + [ + "▁ox", + "ygen" + ], + [ + "la", + "n" + ], + [ + "l", + "an" + ], + [ + "2", + "2" + ], + [ + "▁poss", + "ess" + ], + [ + "▁def", + "ensive" + ], + [ + "▁Sing", + "apore" + ], + [ + "▁a", + "cknow" + ], + [ + "vement", + "s" + ], + [ + "ve", + "ments" + ], + [ + "v", + "ements" + ], + [ + "▁Ord", + "er" + ], + [ + "▁Or", + "der" + ], + [ + "▁fra", + "g" + ], + [ + "▁fr", + "ag" + ], + [ + "▁f", + "rag" + ], + [ + "▁conven", + "t" + ], + [ + "▁conv", + "ent" + ], + [ + "▁con", + "vent" + ], + [ + "▁sem", + "i" + ], + [ + "▁se", + "mi" + ], + [ + "▁s", + "emi" + ], + [ + "▁5", + "8" + ], + [ + "▁Ke", + "n" + ], + [ + "▁K", + "en" + ], + [ + "▁ta", + "ught" + ], + [ + "▁t", + "aught" + ], + [ + "▁sub", + "s" + ], + [ + "▁su", + "bs" + ], + [ + "cha", + "mp" + ], + [ + "ch", + "amp" + ], + [ + "▁ast", + "ron" + ], + [ + "▁25", + "0" + ], + [ + "▁2", + "50" + ], + [ + "▁Ste", + "ve" + ], + [ + "org", + "an" + ], + [ + "or", + "gan" + ], + [ + "▁Kent", + "ucky" + ], + [ + "▁Fa", + "ir" + ], + [ + "▁F", + "air" + ], + [ + "▁deb", + "ate" + ], + [ + "▁assist", + "ance" + ], + [ + "▁ass", + "istance" + ], + [ + "▁gw", + "o" + ], + [ + "▁g", + "wo" + ], + [ + "▁Lad", + "y" + ], + [ + "▁La", + "dy" + ], + [ + "▁L", + "ady" + ], + [ + "▁enjoy", + "ed" + ], + [ + "▁Pas", + "s" + ], + [ + "▁Pa", + "ss" + ], + [ + "▁P", + "ass" + ], + [ + "ob", + "e" + ], + [ + "o", + "be" + ], + [ + "▁201", + "8" + ], + [ + "▁20", + "18" + ], + [ + "▁opt", + "ion" + ], + [ + "▁o", + "ption" + ], + [ + "▁movement", + "s" + ], + [ + "▁move", + "ments" + ], + [ + "▁mov", + "ements" + ], + [ + "▁mo", + "vements" + ], + [ + "▁occ", + "as" + ], + [ + "▁purch", + "ase" + ], + [ + "ant", + "e" + ], + [ + "an", + "te" + ], + [ + "▁", + "ò" + ], + [ + "▁sc", + "ulpt" + ], + [ + "▁Em", + "peror" + ], + [ + "it", + "o" + ], + [ + "i", + "to" + ], + [ + "▁discover", + "y" + ], + [ + "▁disco", + "very" + ], + [ + "▁disc", + "overy" + ], + [ + "up", + "t" + ], + [ + "u", + "pt" + ], + [ + "▁attach", + "ed" + ], + [ + "▁att", + "ached" + ], + [ + "▁Dar", + "k" + ], + [ + "▁D", + "ark" + ], + [ + "iven", + "ess" + ], + [ + "ive", + "ness" + ], + [ + "iv", + "eness" + ], + [ + "▁fran", + "ch" + ], + [ + "▁f", + "ranch" + ], + [ + "▁comed", + "y" + ], + [ + "▁come", + "dy" + ], + [ + "▁com", + "edy" + ], + [ + "▁popular", + "ity" + ], + [ + "▁popul", + "arity" + ], + [ + "mo", + "uth" + ], + [ + "m", + "outh" + ], + [ + "▁exc", + "ell" + ], + [ + "▁ex", + "cell" + ], + [ + "▁settle", + "ment" + ], + [ + "▁sett", + "lement" + ], + [ + "▁set", + "tlement" + ], + [ + "▁equ", + "ivalent" + ], + [ + "▁anc", + "est" + ], + [ + "▁volunt", + "e" + ], + [ + "▁vol", + "unte" + ], + [ + "▁pur", + "e" + ], + [ + "▁p", + "ure" + ], + [ + "▁Frit", + "z" + ], + [ + "▁Fr", + "itz" + ], + [ + "▁brother", + "s" + ], + [ + "▁191", + "7" + ], + [ + "▁19", + "17" + ], + [ + "▁install", + "ed" + ], + [ + "▁inst", + "alled" + ], + [ + "omp", + "l" + ], + [ + "om", + "pl" + ], + [ + "emb", + "le" + ], + [ + "em", + "ble" + ], + [ + "▁vis", + "ible" + ], + [ + "▁v", + "isible" + ], + [ + "▁cite", + "d" + ], + [ + "▁cit", + "ed" + ], + [ + "▁c", + "ited" + ], + [ + "ula", + "ting" + ], + [ + "ul", + "ating" + ], + [ + "▁batt", + "alion" + ], + [ + "▁La", + "t" + ], + [ + "▁L", + "at" + ], + [ + "▁fl", + "o" + ], + [ + "▁f", + "lo" + ], + [ + "▁191", + "5" + ], + [ + "▁19", + "15" + ], + [ + "ir", + "o" + ], + [ + "i", + "ro" + ], + [ + "▁investig", + "ation" + ], + [ + "▁invest", + "igation" + ], + [ + "R", + "A" + ], + [ + "ib", + "b" + ], + [ + "i", + "bb" + ], + [ + "▁help", + "ing" + ], + [ + "▁hel", + "ping" + ], + [ + "▁male", + "s" + ], + [ + "▁mal", + "es" + ], + [ + "▁ma", + "les" + ], + [ + "▁m", + "ales" + ], + [ + "▁const", + "ant" + ], + [ + "ain", + "a" + ], + [ + "ai", + "na" + ], + [ + "a", + "ina" + ], + [ + "▁mass", + "ive" + ], + [ + "▁Liver", + "pool" + ], + [ + "ake", + "d" + ], + [ + "ak", + "ed" + ], + [ + "ret", + "s" + ], + [ + "re", + "ts" + ], + [ + "r", + "ets" + ], + [ + "▁191", + "6" + ], + [ + "▁19", + "16" + ], + [ + "▁clear", + "ly" + ], + [ + "▁high", + "light" + ], + [ + "▁suffer", + "ing" + ], + [ + "▁suff", + "ering" + ], + [ + "▁sh", + "ut" + ], + [ + "ophe", + "r" + ], + [ + "oph", + "er" + ], + [ + "op", + "her" + ], + [ + "▁Democrat", + "ic" + ], + [ + "▁Democr", + "atic" + ], + [ + "▁Dem", + "ocratic" + ], + [ + "▁breed", + "ing" + ], + [ + "▁bree", + "ding" + ], + [ + "▁bre", + "eding" + ], + [ + "▁ju", + "mp" + ], + [ + "▁j", + "ump" + ], + [ + "▁write", + "s" + ], + [ + "▁writ", + "es" + ], + [ + "▁wr", + "ites" + ], + [ + "▁opp", + "osite" + ], + [ + "▁Nation", + "s" + ], + [ + "▁Nat", + "ions" + ], + [ + "▁N", + "ations" + ], + [ + "▁gu", + "ide" + ], + [ + "▁su", + "d" + ], + [ + "▁s", + "ud" + ], + [ + "▁girl", + "s" + ], + [ + "▁education", + "al" + ], + [ + "▁educ", + "ational" + ], + [ + "▁look", + "ed" + ], + [ + "▁lo", + "oked" + ], + [ + "▁orch", + "est" + ], + [ + "▁or", + "chest" + ], + [ + "▁Direct", + "or" + ], + [ + "▁Dire", + "ctor" + ], + [ + "ion", + "e" + ], + [ + "io", + "ne" + ], + [ + "i", + "one" + ], + [ + "▁Dis", + "c" + ], + [ + "▁Di", + "sc" + ], + [ + "▁D", + "isc" + ], + [ + "▁pian", + "o" + ], + [ + "▁pi", + "ano" + ], + [ + "▁p", + "iano" + ], + [ + "▁est", + "ate" + ], + [ + "▁e", + "state" + ], + [ + "▁meter", + "s" + ], + [ + "▁mete", + "rs" + ], + [ + "▁met", + "ers" + ], + [ + "▁me", + "ters" + ], + [ + "▁m", + "eters" + ], + [ + "▁stop", + "ped" + ], + [ + "▁comp", + "ris" + ], + [ + "▁com", + "pris" + ], + [ + "▁degree", + "s" + ], + [ + "▁deg", + "rees" + ], + [ + "burg", + "h" + ], + [ + "bur", + "gh" + ], + [ + "ural", + "ly" + ], + [ + "ur", + "ally" + ], + [ + "èn", + "man" + ], + [ + "▁Sup", + "p" + ], + [ + "▁Su", + "pp" + ], + [ + "▁S", + "upp" + ], + [ + "rap", + "h" + ], + [ + "ra", + "ph" + ], + [ + "r", + "aph" + ], + [ + "elin", + "e" + ], + [ + "eli", + "ne" + ], + [ + "el", + "ine" + ], + [ + "e", + "line" + ], + [ + "▁Bar", + "b" + ], + [ + "▁B", + "arb" + ], + [ + "9", + "." + ], + [ + "▁inj", + "ured" + ], + [ + "▁P", + "C" + ], + [ + "▁", + "PC" + ], + [ + "▁recogn", + "ition" + ], + [ + "▁Da", + "ily" + ], + [ + "▁D", + "aily" + ], + [ + "sta", + "te" + ], + [ + "st", + "ate" + ], + [ + "▁sug", + "ar" + ], + [ + "▁su", + "gar" + ], + [ + "▁princip", + "al" + ], + [ + "▁invol", + "ving" + ], + [ + "▁inv", + "olving" + ], + [ + "▁depart", + "ment" + ], + [ + "▁dep", + "artment" + ], + [ + "▁fund", + "ing" + ], + [ + "▁fun", + "ding" + ], + [ + "▁6", + "6" + ], + [ + "▁", + "66" + ], + [ + "▁Care", + "y" + ], + [ + "▁Car", + "ey" + ], + [ + "▁Ca", + "rey" + ], + [ + "▁effic", + "ient" + ], + [ + "▁eff", + "icient" + ], + [ + "▁e", + "fficient" + ], + [ + "▁", + "efficient" + ], + [ + "▁196", + "3" + ], + [ + "▁accomp", + "l" + ], + [ + "▁acc", + "ompl" + ], + [ + "▁Wal", + "k" + ], + [ + "▁W", + "alk" + ], + [ + "▁band", + "s" + ], + [ + "▁ban", + "ds" + ], + [ + "▁b", + "ands" + ], + [ + "▁", + "bands" + ], + [ + "▁ext", + "ent" + ], + [ + "▁Olymp", + "ic" + ], + [ + "▁dist", + "urb" + ], + [ + "▁fa", + "l" + ], + [ + "▁f", + "al" + ], + [ + "▁", + "fal" + ], + [ + "▁wid", + "espread" + ], + [ + "▁(2", + "0" + ], + [ + "▁(", + "20" + ], + [ + "▁Fi", + "re" + ], + [ + "▁F", + "ire" + ], + [ + "▁Additional", + "ly" + ], + [ + "▁Addition", + "ally" + ], + [ + "ase", + "r" + ], + [ + "as", + "er" + ], + [ + "ak", + "a" + ], + [ + "a", + "ka" + ], + [ + "▁detail", + "ed" + ], + [ + "▁det", + "ailed" + ], + [ + "▁component", + "s" + ], + [ + "▁comp", + "onents" + ], + [ + "▁is", + "n" + ], + [ + "▁Ki", + "r" + ], + [ + "▁K", + "ir" + ], + [ + "▁194", + "8" + ], + [ + "▁19", + "48" + ], + [ + "▁Viet", + "nam" + ], + [ + "al", + "i" + ], + [ + "a", + "li" + ], + [ + "se", + "y" + ], + [ + "s", + "ey" + ], + [ + "▁Re", + "n" + ], + [ + "▁R", + "en" + ], + [ + "▁Em", + "manuel" + ], + [ + "▁inj", + "uries" + ], + [ + "▁crow", + "n" + ], + [ + "▁cro", + "wn" + ], + [ + "▁cr", + "own" + ], + [ + "▁c", + "rown" + ], + [ + "▁B", + "a" + ], + [ + "▁f", + "è" + ], + [ + "▁shoot", + "ing" + ], + [ + "▁sh", + "ooting" + ], + [ + "▁o", + "d" + ], + [ + "▁", + "od" + ], + [ + "▁mod", + "e" + ], + [ + "▁mo", + "de" + ], + [ + "▁m", + "ode" + ], + [ + "▁hear", + "ing" + ], + [ + "▁he", + "aring" + ], + [ + "▁h", + "earing" + ], + [ + "▁too", + "l" + ], + [ + "▁to", + "ol" + ], + [ + "▁t", + "ool" + ], + [ + "▁great", + "ly" + ], + [ + "▁Bri", + "an" + ], + [ + "▁Br", + "ian" + ], + [ + "▁B", + "rian" + ], + [ + "▁Vil", + "l" + ], + [ + "▁Vi", + "ll" + ], + [ + "▁V", + "ill" + ], + [ + "▁engineer", + "ing" + ], + [ + "▁engine", + "ering" + ], + [ + "▁d", + "ream" + ], + [ + "▁therap", + "y" + ], + [ + "▁language", + "s" + ], + [ + "▁langu", + "ages" + ], + [ + "fri", + "end" + ], + [ + "f", + "riend" + ], + [ + "▁account", + "s" + ], + [ + "▁Sto", + "rm" + ], + [ + "▁St", + "orm" + ], + [ + "▁Anto", + "n" + ], + [ + "▁Ant", + "on" + ], + [ + "▁An", + "ton" + ], + [ + "reg", + "on" + ], + [ + "re", + "gon" + ], + [ + "▁rep", + "utation" + ], + [ + "▁St", + "r" + ], + [ + "▁S", + "tr" + ], + [ + "▁194", + "6" + ], + [ + "▁19", + "46" + ], + [ + "▁even", + "ing" + ], + [ + "▁ev", + "ening" + ], + [ + "▁decline", + "d" + ], + [ + "▁decl", + "ined" + ], + [ + "▁dec", + "lined" + ], + [ + "▁indic", + "ate" + ], + [ + "▁ind", + "icate" + ], + [ + "▁pe", + "d" + ], + [ + "▁p", + "ed" + ], + [ + "▁", + "ped" + ], + [ + "▁subm", + "ar" + ], + [ + "▁sub", + "mar" + ], + [ + "▁hundred", + "s" + ], + [ + "▁pi", + "g" + ], + [ + "▁p", + "ig" + ], + [ + "▁Sum", + "mer" + ], + [ + "▁S", + "ummer" + ], + [ + "▁female", + "s" + ], + [ + "▁fem", + "ales" + ], + [ + "▁5", + "7" + ], + [ + "▁Rad", + "io" + ], + [ + "▁Ma", + "in" + ], + [ + "▁M", + "ain" + ], + [ + "imin", + "al" + ], + [ + "imi", + "nal" + ], + [ + "im", + "inal" + ], + [ + "▁purpose", + "s" + ], + [ + "▁purp", + "oses" + ], + [ + "▁own", + "er" + ], + [ + "▁ow", + "ner" + ], + [ + "ran", + "e" + ], + [ + "ra", + "ne" + ], + [ + "r", + "ane" + ], + [ + "as", + "ure" + ], + [ + "▁con", + "qu" + ], + [ + "ro", + "ke" + ], + [ + "r", + "oke" + ], + [ + "▁sh", + "op" + ], + [ + "▁s", + "hop" + ], + [ + "▁", + "shop" + ], + [ + "▁town", + "s" + ], + [ + "▁tow", + "ns" + ], + [ + "▁train", + "s" + ], + [ + "▁tra", + "ins" + ], + [ + "▁tr", + "ains" + ], + [ + "▁commit", + "ted" + ], + [ + "▁comm", + "itted" + ], + [ + "▁com", + "mitted" + ], + [ + "co", + "p" + ], + [ + "c", + "op" + ], + [ + "▁dut", + "y" + ], + [ + "▁du", + "ty" + ], + [ + "▁d", + "uty" + ], + [ + "▁Off", + "ic" + ], + [ + "▁Of", + "fic" + ], + [ + "▁O", + "ffic" + ], + [ + "▁lay", + "er" + ], + [ + "▁la", + "yer" + ], + [ + "▁l", + "ayer" + ], + [ + "▁", + "layer" + ], + [ + "here", + "d" + ], + [ + "her", + "ed" + ], + [ + "he", + "red" + ], + [ + "h", + "ered" + ], + [ + "▁suppose", + "d" + ], + [ + "▁supp", + "osed" + ], + [ + "▁L", + "ieutenant" + ], + [ + "▁Bal", + "l" + ], + [ + "▁Ba", + "ll" + ], + [ + "▁B", + "all" + ], + [ + "▁vol", + "can" + ], + [ + "F", + "L" + ], + [ + "▁Ha", + "n" + ], + [ + "▁H", + "an" + ], + [ + "ten", + "ance" + ], + [ + "te", + "nance" + ], + [ + "▁Col", + "or" + ], + [ + "▁Co", + "lor" + ], + [ + "▁C", + "olor" + ], + [ + "è", + "z" + ], + [ + "▁difficult", + "y" + ], + [ + "▁Al", + "f" + ], + [ + "issa", + "nce" + ], + [ + "iss", + "ance" + ], + [ + "▁st", + "orage" + ], + [ + "▁consider", + "able" + ], + [ + "▁discuss", + "ed" + ], + [ + "▁rate", + "d" + ], + [ + "▁rat", + "ed" + ], + [ + "▁ra", + "ted" + ], + [ + "▁r", + "ated" + ], + [ + "▁", + "rated" + ], + [ + "▁riv", + "e" + ], + [ + "▁ri", + "ve" + ], + [ + "▁r", + "ive" + ], + [ + "bel", + "l" + ], + [ + "be", + "ll" + ], + [ + "b", + "ell" + ], + [ + "▁cl", + "im" + ], + [ + "▁c", + "lim" + ], + [ + "▁casual", + "ties" + ], + [ + "d", + "y" + ], + [ + "iev", + "al" + ], + [ + "ie", + "val" + ], + [ + "▁pit", + "ch" + ], + [ + "▁p", + "itch" + ], + [ + "▁keep", + "ing" + ], + [ + "▁ke", + "eping" + ], + [ + "▁", + "keeping" + ], + [ + "▁ta", + "ct" + ], + [ + "▁t", + "act" + ], + [ + "▁16", + "0" + ], + [ + "▁1", + "60" + ], + [ + "let", + "s" + ], + [ + "le", + "ts" + ], + [ + "l", + "ets" + ], + [ + "▁corn", + "er" + ], + [ + "▁cor", + "ner" + ], + [ + "▁Re", + "y" + ], + [ + "▁R", + "ey" + ], + [ + "▁Har", + "t" + ], + [ + "▁H", + "art" + ], + [ + "▁opportun", + "ities" + ], + [ + "uc", + "t" + ], + [ + "u", + "ct" + ], + [ + "▁si", + "k" + ], + [ + "▁s", + "ik" + ], + [ + "▁O", + "regon" + ], + [ + "re", + "hens" + ], + [ + "▁requirement", + "s" + ], + [ + "▁require", + "ments" + ], + [ + "▁Ki", + "m" + ], + [ + "▁K", + "im" + ], + [ + "▁reb", + "u" + ], + [ + "▁re", + "bu" + ], + [ + "ade", + "r" + ], + [ + "ad", + "er" + ], + [ + "a", + "der" + ], + [ + "▁men", + "t" + ], + [ + "▁me", + "nt" + ], + [ + "▁m", + "ent" + ], + [ + "▁", + "ment" + ], + [ + "▁bon", + "e" + ], + [ + "▁bo", + "ne" + ], + [ + "▁b", + "one" + ], + [ + "▁", + "bone" + ], + [ + "▁thro", + "w" + ], + [ + "▁thr", + "ow" + ], + [ + "▁th", + "row" + ], + [ + "ost", + "er" + ], + [ + "os", + "ter" + ], + [ + "o", + "ster" + ], + [ + "▁des", + "ire" + ], + [ + "▁Gor", + "d" + ], + [ + "▁Go", + "rd" + ], + [ + "▁G", + "ord" + ], + [ + "▁Stat", + "ion" + ], + [ + "▁St", + "ation" + ], + [ + "▁", + "Station" + ], + [ + "▁fi", + "l" + ], + [ + "▁f", + "il" + ], + [ + "▁adv", + "ice" + ], + [ + "▁extrem", + "e" + ], + [ + "▁ext", + "reme" + ], + [ + "iet", + "ies" + ], + [ + "ie", + "ties" + ], + [ + "▁co", + "u" + ], + [ + "▁c", + "ou" + ], + [ + "ino", + "is" + ], + [ + "in", + "ois" + ], + [ + "▁libr", + "ary" + ], + [ + "▁lib", + "rary" + ], + [ + "▁l", + "ibrary" + ], + [ + "un", + "ior" + ], + [ + "▁prop", + "ort" + ], + [ + "▁pro", + "port" + ], + [ + "▁refer", + "s" + ], + [ + "▁ref", + "ers" + ], + [ + "▁sat", + "ell" + ], + [ + "▁Just", + "ice" + ], + [ + "il", + "ation" + ], + [ + "i", + "lation" + ], + [ + "▁touch", + "down" + ], + [ + "ado", + "w" + ], + [ + "ad", + "ow" + ], + [ + "▁sustain", + "ed" + ], + [ + "▁sust", + "ained" + ], + [ + "▁sus", + "tained" + ], + [ + "▁Las", + "t" + ], + [ + "▁La", + "st" + ], + [ + "▁L", + "ast" + ], + [ + "▁threaten", + "ed" + ], + [ + "▁threat", + "ened" + ], + [ + "▁hire", + "d" + ], + [ + "▁h", + "ired" + ], + [ + "▁Art", + "s" + ], + [ + "▁Ar", + "ts" + ], + [ + "ask", + "a" + ], + [ + "as", + "ka" + ], + [ + "▁period", + "s" + ], + [ + "ew", + "ork" + ], + [ + "e", + "work" + ], + [ + "▁sud", + "den" + ], + [ + "▁cris", + "is" + ], + [ + "▁c", + "risis" + ], + [ + "▁le", + "s" + ], + [ + "▁l", + "es" + ], + [ + "▁", + "les" + ], + [ + "rea", + "l" + ], + [ + "re", + "al" + ], + [ + "r", + "eal" + ], + [ + "▁happen", + "ed" + ], + [ + "▁happ", + "ened" + ], + [ + "▁L", + "y" + ], + [ + "▁Pl", + "e" + ], + [ + "▁P", + "le" + ], + [ + "rier", + "s" + ], + [ + "rie", + "rs" + ], + [ + "ri", + "ers" + ], + [ + "r", + "iers" + ], + [ + "▁surge", + "ry" + ], + [ + "▁surg", + "ery" + ], + [ + "▁sur", + "gery" + ], + [ + "▁Conf", + "eder" + ], + [ + "mans", + "e" + ], + [ + "man", + "se" + ], + [ + "▁Mar", + "s" + ], + [ + "▁Ma", + "rs" + ], + [ + "▁M", + "ars" + ], + [ + "▁Pier", + "re" + ], + [ + "▁P", + "ierre" + ], + [ + "▁", + "Pierre" + ], + [ + "▁ò", + "gan" + ], + [ + "oli", + "s" + ], + [ + "ol", + "is" + ], + [ + "o", + "lis" + ], + [ + "▁By", + "z" + ], + [ + "▁good", + "s" + ], + [ + "▁go", + "ods" + ], + [ + "▁Pol", + "and" + ], + [ + "▁Po", + "land" + ], + [ + "▁P", + "oland" + ], + [ + "▁candid", + "ate" + ], + [ + "▁chart", + "s" + ], + [ + "▁char", + "ts" + ], + [ + "▁ch", + "arts" + ], + [ + "▁vo", + "y" + ], + [ + "▁v", + "oy" + ], + [ + "▁date", + "s" + ], + [ + "▁dat", + "es" + ], + [ + "▁da", + "tes" + ], + [ + "▁d", + "ates" + ], + [ + "ot", + "o" + ], + [ + "o", + "to" + ], + [ + "ograph", + "er" + ], + [ + "ograp", + "her" + ], + [ + "▁7", + "4" + ], + [ + "rag", + "on" + ], + [ + "ra", + "gon" + ], + [ + "r", + "agon" + ], + [ + "▁9", + "9" + ], + [ + "▁", + "99" + ], + [ + "▁profess", + "or" + ], + [ + "▁Lib", + "rary" + ], + [ + "▁L", + "ibrary" + ], + [ + "atter", + "s" + ], + [ + "att", + "ers" + ], + [ + "at", + "ters" + ], + [ + "▁stand", + "s" + ], + [ + "▁st", + "ands" + ], + [ + "▁unc", + "le" + ], + [ + "▁un", + "cle" + ], + [ + "▁chap", + "ter" + ], + [ + "▁sout", + "heast" + ], + [ + "▁ko", + "u" + ], + [ + "▁k", + "ou" + ], + [ + "▁pass", + "age" + ], + [ + "▁see", + "ing" + ], + [ + "▁se", + "eing" + ], + [ + "▁ga", + "l" + ], + [ + "▁g", + "al" + ], + [ + "▁", + "gal" + ], + [ + "▁Gre", + "g" + ], + [ + "▁Gr", + "eg" + ], + [ + "▁G", + "reg" + ], + [ + "ema", + "n" + ], + [ + "em", + "an" + ], + [ + "e", + "man" + ], + [ + "▁Sy", + "d" + ], + [ + "▁S", + "yd" + ], + [ + "▁Ant", + "h" + ], + [ + "▁An", + "th" + ], + [ + "▁Pic", + "t" + ], + [ + "▁Pi", + "ct" + ], + [ + "▁P", + "ict" + ], + [ + "▁N", + "intend" + ], + [ + "▁Dis", + "ney" + ], + [ + "▁prec", + "ed" + ], + [ + "▁pre", + "ced" + ], + [ + "▁p", + "reced" + ], + [ + "ari", + "a" + ], + [ + "ar", + "ia" + ], + [ + "a", + "ria" + ], + [ + "ert", + "ed" + ], + [ + "er", + "ted" + ], + [ + "▁dest", + "ruction" + ], + [ + "▁tra", + "il" + ], + [ + "▁tr", + "ail" + ], + [ + "ye", + "r" + ], + [ + "y", + "er" + ], + [ + "▁Ge", + "t" + ], + [ + "▁G", + "et" + ], + [ + "co", + "l" + ], + [ + "c", + "ol" + ], + [ + "▁196", + "2" + ], + [ + "▁engine", + "s" + ], + [ + "▁eng", + "ines" + ], + [ + "abil", + "ities" + ], + [ + "ab", + "ilities" + ], + [ + "▁Rob", + "aina" + ], + [ + "▁challenge", + "s" + ], + [ + "▁challeng", + "es" + ], + [ + "O", + "N" + ], + [ + "▁Nintend", + "o" + ], + [ + "▁strong", + "ly" + ], + [ + "▁succeed", + "ed" + ], + [ + "▁suc", + "ceeded" + ], + [ + "ude", + "s" + ], + [ + "ud", + "es" + ], + [ + "u", + "des" + ], + [ + "▁L", + "o" + ], + [ + "▁intersect", + "ion" + ], + [ + "▁inters", + "ection" + ], + [ + "▁inter", + "section" + ], + [ + "▁2004", + "." + ], + [ + "▁200", + "4." + ], + [ + "ir", + "ation" + ], + [ + "i", + "ration" + ], + [ + "▁neighb", + "or" + ], + [ + "▁neigh", + "bor" + ], + [ + "bo", + "dy" + ], + [ + "b", + "ody" + ], + [ + "▁nic", + "k" + ], + [ + "▁ni", + "ck" + ], + [ + "▁n", + "ick" + ], + [ + "▁", + "nick" + ], + [ + "ww", + "w" + ], + [ + "w", + "ww" + ], + [ + "▁Alb", + "um" + ], + [ + "▁Al", + "bum" + ], + [ + "▁com", + "ic" + ], + [ + "▁co", + "mic" + ], + [ + "▁c", + "omic" + ], + [ + "▁Fre", + "e" + ], + [ + "▁Fr", + "ee" + ], + [ + "▁F", + "ree" + ], + [ + "▁see", + "d" + ], + [ + "▁se", + "ed" + ], + [ + "▁s", + "eed" + ], + [ + "win", + "g" + ], + [ + "wi", + "ng" + ], + [ + "w", + "ing" + ], + [ + "ucc", + "ess" + ], + [ + "uc", + "cess" + ], + [ + "u", + "ccess" + ], + [ + "▁Pop", + "ilasyon" + ], + [ + "la", + "v" + ], + [ + "l", + "av" + ], + [ + "zy", + "èm" + ], + [ + "▁Sim", + "on" + ], + [ + "▁Si", + "mon" + ], + [ + "▁S", + "imon" + ], + [ + "▁sect", + "or" + ], + [ + "▁sec", + "tor" + ], + [ + "▁se", + "ctor" + ], + [ + "▁s", + "ector" + ], + [ + "▁Lab", + "or" + ], + [ + "▁La", + "bor" + ], + [ + "▁L", + "abor" + ], + [ + "▁mate", + "m" + ], + [ + "▁mat", + "em" + ], + [ + "▁m", + "atem" + ], + [ + "▁head", + "ed" + ], + [ + "▁he", + "aded" + ], + [ + "▁", + "headed" + ], + [ + "▁j", + "u" + ], + [ + "▁", + "ju" + ], + [ + "▁Holly", + "wood" + ], + [ + "▁Hol", + "lywood" + ], + [ + "▁immedi", + "ate" + ], + [ + "are", + "t" + ], + [ + "ar", + "et" + ], + [ + "a", + "ret" + ], + [ + "▁dr", + "ew" + ], + [ + "▁d", + "rew" + ], + [ + "▁Sund", + "ay" + ], + [ + "▁Sun", + "day" + ], + [ + "▁bou", + "ght" + ], + [ + "▁bo", + "ught" + ], + [ + "▁b", + "ought" + ], + [ + "ro", + "id" + ], + [ + "r", + "oid" + ], + [ + "▁Ab", + "b" + ], + [ + "▁A", + "bb" + ], + [ + "▁ent", + "rance" + ], + [ + "rin", + "e" + ], + [ + "ri", + "ne" + ], + [ + "r", + "ine" + ], + [ + "▁Found", + "ation" + ], + [ + "▁res", + "erv" + ], + [ + "▁bree", + "d" + ], + [ + "▁bre", + "ed" + ], + [ + "▁br", + "eed" + ], + [ + "▁ent", + "itled" + ], + [ + "▁Ser", + "b" + ], + [ + "▁S", + "erb" + ], + [ + "▁appe", + "al" + ], + [ + "▁app", + "eal" + ], + [ + "▁dr", + "ess" + ], + [ + "▁d", + "ress" + ], + [ + "I", + "A" + ], + [ + "▁arrange", + "d" + ], + [ + "▁arrang", + "ed" + ], + [ + "▁ar", + "ranged" + ], + [ + "▁tiss", + "ue" + ], + [ + "▁tem", + "ple" + ], + [ + "__", + "__" + ], + [ + "ele", + "r" + ], + [ + "el", + "er" + ], + [ + "e", + "ler" + ], + [ + "emi", + "es" + ], + [ + "em", + "ies" + ], + [ + "ua", + "ble" + ], + [ + "u", + "able" + ], + [ + "▁ne", + "ither" + ], + [ + "omm", + "od" + ], + [ + "om", + "mod" + ], + [ + "▁watch", + "ed" + ], + [ + "▁w", + "atched" + ], + [ + "▁spo", + "k" + ], + [ + "▁sp", + "ok" + ], + [ + "we", + "n" + ], + [ + "w", + "en" + ], + [ + "▁depend", + "ing" + ], + [ + "▁dep", + "ending" + ], + [ + "7", + "." + ], + [ + "j", + "a" + ], + [ + "▁ne", + "st" + ], + [ + "▁n", + "est" + ], + [ + "▁", + "nest" + ], + [ + "ins", + "ula" + ], + [ + "▁inn", + "er" + ], + [ + "▁in", + "ner" + ], + [ + "ach", + "e" + ], + [ + "ac", + "he" + ], + [ + "a", + "che" + ], + [ + "▁option", + "s" + ], + [ + "▁opt", + "ions" + ], + [ + "▁o", + "ptions" + ], + [ + "▁Nor", + "way" + ], + [ + "è", + "f" + ], + [ + "▁ha", + "ng" + ], + [ + "▁h", + "ang" + ], + [ + "able", + "d" + ], + [ + "abl", + "ed" + ], + [ + "ab", + "led" + ], + [ + "▁Port", + "ug" + ], + [ + "▁Hol", + "y" + ], + [ + "▁Ho", + "ly" + ], + [ + "▁H", + "oly" + ], + [ + "▁Ro", + "n" + ], + [ + "▁R", + "on" + ], + [ + "rane", + "an" + ], + [ + "ran", + "ean" + ], + [ + "▁5", + "1" + ], + [ + "▁Leo", + "n" + ], + [ + "▁Le", + "on" + ], + [ + "▁Vid", + "e" + ], + [ + "▁Vi", + "de" + ], + [ + "▁V", + "ide" + ], + [ + "ouv", + "ènman" + ], + [ + "▁cont", + "est" + ], + [ + "▁amount", + "s" + ], + [ + "n", + "o" + ], + [ + "▁st", + "ick" + ], + [ + "▁", + "stick" + ], + [ + "▁charge", + "d" + ], + [ + "▁char", + "ged" + ], + [ + "▁south", + "west" + ], + [ + "pl", + "ace" + ], + [ + "rie", + "ved" + ], + [ + "▁award", + "s" + ], + [ + "▁aw", + "ards" + ], + [ + "▁a", + "wards" + ], + [ + "▁respond", + "ed" + ], + [ + "po", + "int" + ], + [ + "p", + "oint" + ], + [ + "abet", + "es" + ], + [ + "abe", + "tes" + ], + [ + "▁associ", + "ation" + ], + [ + "▁discuss", + "ion" + ], + [ + "▁disc", + "ussion" + ], + [ + "▁non", + "e" + ], + [ + "▁no", + "ne" + ], + [ + "▁n", + "one" + ], + [ + "▁Gold", + "en" + ], + [ + "▁Gol", + "den" + ], + [ + "▁ob", + "vious" + ], + [ + "▁al", + "f" + ], + [ + "▁", + "alf" + ], + [ + "▁cha", + "in" + ], + [ + "▁ch", + "ain" + ], + [ + "▁", + "chain" + ], + [ + "▁survive", + "d" + ], + [ + "▁surviv", + "ed" + ], + [ + "▁surv", + "ived" + ], + [ + "▁use", + "r" + ], + [ + "▁us", + "er" + ], + [ + "▁Mari", + "a" + ], + [ + "▁Mar", + "ia" + ], + [ + "▁Ma", + "ria" + ], + [ + "▁M", + "aria" + ], + [ + "▁minim", + "um" + ], + [ + "▁min", + "imum" + ], + [ + "▁al", + "man" + ], + [ + "▁los", + "e" + ], + [ + "▁lo", + "se" + ], + [ + "▁l", + "ose" + ], + [ + "▁Lo", + "w" + ], + [ + "▁L", + "ow" + ], + [ + "▁exact", + "ly" + ], + [ + "▁Mary", + "land" + ], + [ + "▁bring", + "ing" + ], + [ + "▁st", + "im" + ], + [ + "▁fè", + "t" + ], + [ + "▁f", + "èt" + ], + [ + "▁argu", + "ment" + ], + [ + "▁arg", + "ument" + ], + [ + "erv", + "ative" + ], + [ + "▁decision", + "s" + ], + [ + "▁dec", + "isions" + ], + [ + "▁cra", + "ft" + ], + [ + "▁cr", + "aft" + ], + [ + "▁c", + "raft" + ], + [ + "▁", + "craft" + ], + [ + "▁we", + "t" + ], + [ + "▁w", + "et" + ], + [ + "▁En", + "vironment" + ], + [ + "▁dis", + "order" + ], + [ + "▁crick", + "et" + ], + [ + "▁c", + "ricket" + ], + [ + "▁Jan", + "e" + ], + [ + "▁Ja", + "ne" + ], + [ + "▁J", + "ane" + ], + [ + "▁rule", + "d" + ], + [ + "▁rul", + "ed" + ], + [ + "▁ru", + "led" + ], + [ + "▁r", + "uled" + ], + [ + "oca", + "l" + ], + [ + "oc", + "al" + ], + [ + "o", + "cal" + ], + [ + "▁out", + "break" + ], + [ + "▁syn", + "d" + ], + [ + "▁sy", + "nd" + ], + [ + "▁old", + "est" + ], + [ + "▁ol", + "dest" + ], + [ + "▁dec", + "or" + ], + [ + "▁de", + "cor" + ], + [ + "▁pol", + "y" + ], + [ + "▁po", + "ly" + ], + [ + "▁p", + "oly" + ], + [ + "▁phot", + "ograph" + ], + [ + "▁sw", + "im" + ], + [ + "▁employee", + "s" + ], + [ + "▁employ", + "ees" + ], + [ + "▁bas", + "k" + ], + [ + "▁ba", + "sk" + ], + [ + "▁b", + "ask" + ], + [ + "▁Char", + "t" + ], + [ + "▁Ch", + "art" + ], + [ + "▁C", + "hart" + ], + [ + "▁beaut", + "iful" + ], + [ + "▁electric", + "ity" + ], + [ + "▁electr", + "icity" + ], + [ + "▁mat", + "hemat" + ], + [ + "▁consum", + "ption" + ], + [ + "▁cons", + "umption" + ], + [ + "▁grow", + "n" + ], + [ + "▁gro", + "wn" + ], + [ + "▁gr", + "own" + ], + [ + "▁g", + "rown" + ], + [ + "▁5", + "9" + ], + [ + "▁Di", + "g" + ], + [ + "▁D", + "ig" + ], + [ + "▁si", + "ght" + ], + [ + "▁s", + "ight" + ], + [ + "▁Tou", + "t" + ], + [ + "▁To", + "ut" + ], + [ + "▁T", + "out" + ], + [ + "os", + "h" + ], + [ + "o", + "sh" + ], + [ + "▁com", + "fort" + ], + [ + "▁Franc", + "is" + ], + [ + "enger", + "s" + ], + [ + "enge", + "rs" + ], + [ + "eng", + "ers" + ], + [ + "en", + "gers" + ], + [ + "▁tim", + "oun" + ], + [ + "▁Cap", + "e" + ], + [ + "▁Ca", + "pe" + ], + [ + "▁C", + "ape" + ], + [ + "▁unus", + "ual" + ], + [ + "▁mor", + "al" + ], + [ + "▁mo", + "ral" + ], + [ + "▁m", + "oral" + ], + [ + "▁subject", + "s" + ], + [ + "▁Intern", + "et" + ], + [ + "▁Inter", + "net" + ], + [ + "re", + "p" + ], + [ + "r", + "ep" + ], + [ + "▁anti", + "b" + ], + [ + "▁ant", + "ib" + ], + [ + "▁sp", + "in" + ], + [ + "▁s", + "pin" + ], + [ + "▁Sim", + "ilar" + ], + [ + "▁6", + "2" + ], + [ + "▁telev", + "izyon" + ], + [ + "▁NA", + "S" + ], + [ + "▁N", + "AS" + ], + [ + "▁Mc", + "G" + ], + [ + "▁generate", + "d" + ], + [ + "▁genera", + "ted" + ], + [ + "▁gener", + "ated" + ], + [ + "▁gene", + "rated" + ], + [ + "▁gen", + "erated" + ], + [ + "ure", + "au" + ], + [ + "▁Nic", + "k" + ], + [ + "▁Ni", + "ck" + ], + [ + "▁N", + "ick" + ], + [ + "▁nation", + "s" + ], + [ + "▁nat", + "ions" + ], + [ + "▁n", + "ations" + ], + [ + "▁be", + "ar" + ], + [ + "▁b", + "ear" + ], + [ + "or", + "row" + ], + [ + "▁ste", + "m" + ], + [ + "▁st", + "em" + ], + [ + "▁", + "stem" + ], + [ + "▁gat", + "her" + ], + [ + "▁ga", + "ther" + ], + [ + "▁g", + "ather" + ], + [ + "▁C", + "irc" + ], + [ + "▁ext", + "ension" + ], + [ + "▁ex", + "tension" + ], + [ + "▁architect", + "ure" + ], + [ + "▁partn", + "er" + ], + [ + "▁part", + "ner" + ], + [ + "▁serve", + "s" + ], + [ + "▁serv", + "es" + ], + [ + "▁ser", + "ves" + ], + [ + "▁s", + "erves" + ], + [ + "▁sh", + "if" + ], + [ + "▁Kon", + "st" + ], + [ + "▁K", + "onst" + ], + [ + "▁Patric", + "k" + ], + [ + "▁Patri", + "ck" + ], + [ + "▁Pat", + "rick" + ], + [ + "▁except", + "ion" + ], + [ + "▁ex", + "ception" + ], + [ + "O", + "S" + ], + [ + "▁medi", + "um" + ], + [ + "▁med", + "ium" + ], + [ + "▁am", + "er" + ], + [ + "▁a", + "mer" + ], + [ + "▁", + "amer" + ], + [ + "▁Dom", + "in" + ], + [ + "▁Do", + "min" + ], + [ + "▁D", + "omin" + ], + [ + "▁Ad", + "am" + ], + [ + "▁A", + "dam" + ], + [ + "▁reserv", + "e" + ], + [ + "▁res", + "erve" + ], + [ + "▁propos", + "al" + ], + [ + "▁prop", + "osal" + ], + [ + "▁7", + "2" + ], + [ + "▁camp", + "us" + ], + [ + "▁enter", + "ing" + ], + [ + "▁ent", + "ering" + ], + [ + "▁en", + "tering" + ], + [ + "ter", + "m" + ], + [ + "te", + "rm" + ], + [ + "t", + "erm" + ], + [ + "ash", + "ed" + ], + [ + "as", + "hed" + ], + [ + "oke", + "d" + ], + [ + "ok", + "ed" + ], + [ + "St", + "ation" + ], + [ + "▁de", + "zyèm" + ], + [ + "▁uns", + "uccess" + ], + [ + "▁HM", + "S" + ], + [ + "▁H", + "MS" + ], + [ + "▁wr", + "est" + ], + [ + "▁w", + "rest" + ], + [ + "▁Rail", + "way" + ], + [ + "▁sign", + "al" + ], + [ + "ament", + "al" + ], + [ + "amen", + "tal" + ], + [ + "am", + "ental" + ], + [ + "a", + "mental" + ], + [ + "▁ground", + "s" + ], + [ + "▁gr", + "ounds" + ], + [ + "▁", + "grounds" + ], + [ + "▁K", + "a" + ], + [ + "▁go", + "ne" + ], + [ + "▁g", + "one" + ], + [ + "▁", + "gone" + ], + [ + "▁te", + "en" + ], + [ + "▁t", + "een" + ], + [ + "▁", + "teen" + ], + [ + "▁big", + "gest" + ], + [ + "▁bi", + "ggest" + ], + [ + "▁redu", + "cing" + ], + [ + "▁Cr", + "a" + ], + [ + "▁C", + "ra" + ], + [ + "▁fe", + "r" + ], + [ + "▁f", + "er" + ], + [ + "▁", + "fer" + ], + [ + "▁dep", + "os" + ], + [ + "▁de", + "pos" + ], + [ + "▁Pa", + "k" + ], + [ + "▁P", + "ak" + ], + [ + "▁seem", + "ed" + ], + [ + "▁see", + "med" + ], + [ + "▁se", + "emed" + ], + [ + "hu", + "s" + ], + [ + "h", + "us" + ], + [ + "▁rest", + "aur" + ], + [ + "▁tank", + "s" + ], + [ + "▁tan", + "ks" + ], + [ + "▁t", + "anks" + ], + [ + "▁ver", + "t" + ], + [ + "▁v", + "ert" + ], + [ + "▁", + "vert" + ], + [ + "▁Da", + "t" + ], + [ + "▁D", + "at" + ], + [ + "▁prisoner", + "s" + ], + [ + "▁prison", + "ers" + ], + [ + "▁Indian", + "a" + ], + [ + "▁India", + "na" + ], + [ + "▁Ind", + "iana" + ], + [ + "▁Im", + "perial" + ], + [ + "▁bre", + "ast" + ], + [ + "▁vul", + "ner" + ], + [ + "▁child", + "hood" + ], + [ + "▁Play", + "Station" + ], + [ + "▁institution", + "s" + ], + [ + "▁instit", + "utions" + ], + [ + "▁liter", + "ary" + ], + [ + "▁approach", + "ed" + ], + [ + "▁appro", + "ached" + ], + [ + "▁Hu", + "g" + ], + [ + "▁H", + "ug" + ], + [ + "▁a", + "w" + ], + [ + "▁", + "aw" + ], + [ + "▁chron", + "ic" + ], + [ + "▁ch", + "ronic" + ], + [ + "ivers", + "ary" + ], + [ + "▁195", + "6" + ], + [ + "▁19", + "56" + ], + [ + "▁Dre", + "am" + ], + [ + "▁D", + "ream" + ], + [ + "ir", + "t" + ], + [ + "▁193", + "8" + ], + [ + "▁19", + "38" + ], + [ + "▁ph", + "r" + ], + [ + "▁p", + "hr" + ], + [ + "▁assist", + "ant" + ], + [ + "▁ass", + "istant" + ], + [ + "oa", + "rd" + ], + [ + "o", + "ard" + ], + [ + "▁settle", + "d" + ], + [ + "▁sett", + "led" + ], + [ + "▁ha", + "m" + ], + [ + "▁h", + "am" + ], + [ + "▁", + "ham" + ], + [ + "▁con", + "clusion" + ], + [ + "▁Se", + "l" + ], + [ + "▁S", + "el" + ], + [ + "ange", + "r" + ], + [ + "ang", + "er" + ], + [ + "an", + "ger" + ], + [ + "▁normal", + "ly" + ], + [ + "▁norm", + "ally" + ], + [ + "▁article", + "s" + ], + [ + "▁artic", + "les" + ], + [ + "▁art", + "icles" + ], + [ + "iate", + "d" + ], + [ + "iat", + "ed" + ], + [ + "ia", + "ted" + ], + [ + "i", + "ated" + ], + [ + "▁mi", + "r" + ], + [ + "▁m", + "ir" + ], + [ + "▁", + "mir" + ], + [ + "▁Sa", + "b" + ], + [ + "▁S", + "ab" + ], + [ + "▁abs", + "ol" + ], + [ + "aran", + "t" + ], + [ + "ara", + "nt" + ], + [ + "ar", + "ant" + ], + [ + "a", + "rant" + ], + [ + "▁not", + "ice" + ], + [ + "se", + "s" + ], + [ + "s", + "es" + ], + [ + "bo", + "und" + ], + [ + "b", + "ound" + ], + [ + "▁lie", + "s" + ], + [ + "▁li", + "es" + ], + [ + "▁l", + "ies" + ], + [ + "▁", + "lies" + ], + [ + "▁me", + "at" + ], + [ + "▁cha", + "ns" + ], + [ + "▁ch", + "ans" + ], + [ + "▁Rog", + "er" + ], + [ + "▁Ro", + "ger" + ], + [ + "▁pul", + "l" + ], + [ + "▁p", + "ull" + ], + [ + "be", + "c" + ], + [ + "b", + "ec" + ], + [ + "k", + "o" + ], + [ + "▁last", + "ed" + ], + [ + "▁las", + "ted" + ], + [ + "▁la", + "sted" + ], + [ + "▁l", + "asted" + ], + [ + "▁Su", + "ch" + ], + [ + "▁S", + "uch" + ], + [ + "▁pit", + "i" + ], + [ + "▁pi", + "ti" + ], + [ + "▁p", + "iti" + ], + [ + "▁univers", + "e" + ], + [ + "▁ren", + "amed" + ], + [ + "▁re", + "named" + ], + [ + "▁6", + "3" + ], + [ + "pa", + "t" + ], + [ + "p", + "at" + ], + [ + "ask", + "s" + ], + [ + "as", + "ks" + ], + [ + "▁spo", + "ns" + ], + [ + "▁sp", + "ons" + ], + [ + "▁close", + "r" + ], + [ + "▁clos", + "er" + ], + [ + "▁cl", + "oser" + ], + [ + "rel", + "l" + ], + [ + "re", + "ll" + ], + [ + "r", + "ell" + ], + [ + "▁Ru", + "n" + ], + [ + "▁R", + "un" + ], + [ + "▁Net", + "work" + ], + [ + "▁N", + "etwork" + ], + [ + "▁express", + "ion" + ], + [ + "▁exp", + "ression" + ], + [ + "ail", + "s" + ], + [ + "ai", + "ls" + ], + [ + "a", + "ils" + ], + [ + "f", + "e" + ], + [ + "▁out", + "er" + ], + [ + "▁ou", + "ter" + ], + [ + "▁o", + "uter" + ], + [ + "▁ill", + "e" + ], + [ + "▁il", + "le" + ], + [ + "▁", + "ille" + ], + [ + "▁y", + "ield" + ], + [ + "▁Doug", + "l" + ], + [ + "▁Dou", + "gl" + ], + [ + "▁Colon", + "el" + ], + [ + "▁mi", + "c" + ], + [ + "▁m", + "ic" + ], + [ + "▁", + "mic" + ], + [ + "▁plat", + "e" + ], + [ + "▁pl", + "ate" + ], + [ + "▁", + "plate" + ], + [ + "▁retain", + "ed" + ], + [ + "▁ret", + "ained" + ], + [ + "▁re", + "tained" + ], + [ + "▁non", + "m" + ], + [ + "▁measure", + "d" + ], + [ + "▁meas", + "ured" + ], + [ + "▁nec", + "k" + ], + [ + "▁ne", + "ck" + ], + [ + "▁n", + "eck" + ], + [ + "▁an", + "x" + ], + [ + "▁strength", + "en" + ], + [ + "▁streng", + "then" + ], + [ + "let", + "on" + ], + [ + "le", + "ton" + ], + [ + "l", + "eton" + ], + [ + "▁196", + "1" + ], + [ + "▁fol", + "k" + ], + [ + "▁f", + "olk" + ], + [ + "▁", + "folk" + ], + [ + "▁US", + "A" + ], + [ + "▁U", + "SA" + ], + [ + "into", + "n" + ], + [ + "int", + "on" + ], + [ + "in", + "ton" + ], + [ + "▁Rh", + "od" + ], + [ + "▁R", + "hod" + ], + [ + "▁Moor", + "e" + ], + [ + "▁Mo", + "ore" + ], + [ + "▁drive", + "n" + ], + [ + "▁dr", + "iven" + ], + [ + "▁d", + "riven" + ], + [ + "▁medic", + "ine" + ], + [ + "▁med", + "icine" + ], + [ + "▁Un", + "like" + ], + [ + "b", + "i" + ], + [ + "▁warn", + "ing" + ], + [ + "▁war", + "ning" + ], + [ + "▁7", + "3" + ], + [ + "▁adapt", + "ed" + ], + [ + "▁agricult", + "ural" + ], + [ + "▁facilit", + "y" + ], + [ + "▁fac", + "ility" + ], + [ + "og", + "y" + ], + [ + "o", + "gy" + ], + [ + "▁Ir", + "a" + ], + [ + "▁I", + "ra" + ], + [ + "▁appl", + "y" + ], + [ + "▁app", + "ly" + ], + [ + "▁ap", + "ply" + ], + [ + "▁circ", + "ulation" + ], + [ + "▁somew", + "hat" + ], + [ + "▁dyn", + "am" + ], + [ + "▁dy", + "nam" + ], + [ + "▁70", + "0" + ], + [ + "▁7", + "00" + ], + [ + "▁Bar", + "n" + ], + [ + "▁B", + "arn" + ], + [ + "▁equip", + "ped" + ], + [ + "▁equ", + "ipped" + ], + [ + "▁happ", + "en" + ], + [ + "▁ha", + "ppen" + ], + [ + "▁Syd", + "ney" + ], + [ + "▁ògan", + "izasyon" + ], + [ + "resent", + "s" + ], + [ + "res", + "ents" + ], + [ + "▁circum", + "st" + ], + [ + "▁wear", + "ing" + ], + [ + "▁we", + "aring" + ], + [ + "▁w", + "earing" + ], + [ + "▁acc", + "ommod" + ], + [ + "▁defin", + "ition" + ], + [ + "ai", + "s" + ], + [ + "a", + "is" + ], + [ + "▁Da", + "b" + ], + [ + "▁D", + "ab" + ], + [ + "ow", + "a" + ], + [ + "o", + "wa" + ], + [ + "▁Ex", + "t" + ], + [ + "▁E", + "xt" + ], + [ + "▁Te", + "l" + ], + [ + "▁T", + "el" + ], + [ + "▁too", + "th" + ], + [ + "▁to", + "oth" + ], + [ + "▁t", + "ooth" + ], + [ + "ard", + "o" + ], + [ + "ar", + "do" + ], + [ + "we", + "ight" + ], + [ + "▁Otto", + "man" + ], + [ + "▁Ott", + "oman" + ], + [ + "on", + "ot" + ], + [ + "o", + "not" + ], + [ + "▁famil", + "iar" + ], + [ + "▁fam", + "iliar" + ], + [ + "het", + "ic" + ], + [ + "he", + "tic" + ], + [ + "h", + "etic" + ], + [ + "▁Ann", + "e" + ], + [ + "▁An", + "ne" + ], + [ + "▁195", + "8" + ], + [ + "▁hold", + "s" + ], + [ + "▁hol", + "ds" + ], + [ + "▁h", + "olds" + ], + [ + "▁move", + "s" + ], + [ + "▁mov", + "es" + ], + [ + "▁mo", + "ves" + ], + [ + "▁m", + "oves" + ], + [ + "▁weaken", + "ed" + ], + [ + "▁weak", + "ened" + ], + [ + "▁spirit", + "ual" + ], + [ + "▁Bas", + "e" + ], + [ + "▁Ba", + "se" + ], + [ + "▁B", + "ase" + ], + [ + "▁squ", + "ad" + ], + [ + "▁train", + "ed" + ], + [ + "▁tra", + "ined" + ], + [ + "▁tr", + "ained" + ], + [ + "▁t", + "rained" + ], + [ + "▁consist", + "ing" + ], + [ + "▁cons", + "isting" + ], + [ + "A", + "r" + ], + [ + "W", + "e" + ], + [ + "▁principle", + "s" + ], + [ + "▁princip", + "les" + ], + [ + "▁6", + "8" + ], + [ + "▁", + "68" + ], + [ + "▁Jo", + "rd" + ], + [ + "▁J", + "ord" + ], + [ + "▁ve", + "ter" + ], + [ + "▁v", + "eter" + ], + [ + "▁assume", + "d" + ], + [ + "▁assum", + "ed" + ], + [ + "▁ass", + "umed" + ], + [ + "▁E", + "s" + ], + [ + "ret", + "t" + ], + [ + "re", + "tt" + ], + [ + "r", + "ett" + ], + [ + "▁ro", + "se" + ], + [ + "▁r", + "ose" + ], + [ + "▁", + "rose" + ], + [ + "▁app", + "rec" + ], + [ + "▁Gil", + "l" + ], + [ + "▁Gi", + "ll" + ], + [ + "▁G", + "ill" + ], + [ + "▁opera", + "te" + ], + [ + "▁oper", + "ate" + ], + [ + "▁op", + "erate" + ], + [ + "este", + "r" + ], + [ + "est", + "er" + ], + [ + "es", + "ter" + ], + [ + "e", + "ster" + ], + [ + "▁htt", + "p" + ], + [ + "▁", + "http" + ], + [ + "▁0", + "." + ], + [ + "▁", + "0." + ], + [ + "er", + "i" + ], + [ + "e", + "ri" + ], + [ + "▁With", + "in" + ], + [ + "▁Wit", + "hin" + ], + [ + "▁dut", + "ies" + ], + [ + "▁du", + "ties" + ], + [ + "▁d", + "uties" + ], + [ + "▁sam", + "ple" + ], + [ + "▁s", + "ample" + ], + [ + "▁Li", + "n" + ], + [ + "▁L", + "in" + ], + [ + "▁Ill", + "inois" + ], + [ + "▁route", + "s" + ], + [ + "▁rout", + "es" + ], + [ + "▁rou", + "tes" + ], + [ + "▁ro", + "utes" + ], + [ + "▁Ros", + "e" + ], + [ + "▁Ro", + "se" + ], + [ + "▁R", + "ose" + ], + [ + "▁Ca", + "b" + ], + [ + "▁C", + "ab" + ], + [ + "▁Ro", + "y" + ], + [ + "▁R", + "oy" + ], + [ + "awa", + "re" + ], + [ + "aw", + "are" + ], + [ + "a", + "ware" + ], + [ + "ando", + "m" + ], + [ + "and", + "om" + ], + [ + "an", + "dom" + ], + [ + "▁explain", + "s" + ], + [ + "▁expl", + "ains" + ], + [ + "▁Long", + "champ" + ], + [ + "een", + "th" + ], + [ + "e", + "enth" + ], + [ + "▁Esp", + "ò" + ], + [ + "▁happ", + "y" + ], + [ + "▁h", + "appy" + ], + [ + "ri", + "ksyon" + ], + [ + "r", + "iksyon" + ], + [ + "▁Indo", + "nes" + ], + [ + "▁Ind", + "ones" + ], + [ + "▁unders", + "t" + ], + [ + "▁under", + "st" + ], + [ + "▁restric", + "t" + ], + [ + "▁rest", + "rict" + ], + [ + "br", + "a" + ], + [ + "b", + "ra" + ], + [ + "▁Wh", + "it" + ], + [ + "▁ma", + "mm" + ], + [ + "▁m", + "amm" + ], + [ + "▁arch", + "ae" + ], + [ + "ache", + "l" + ], + [ + "ach", + "el" + ], + [ + "ac", + "hel" + ], + [ + "a", + "chel" + ], + [ + "▁idea", + "l" + ], + [ + "▁ide", + "al" + ], + [ + "▁id", + "eal" + ], + [ + "▁NH", + "L" + ], + [ + "▁N", + "HL" + ], + [ + "▁dog", + "s" + ], + [ + "▁do", + "gs" + ], + [ + "▁d", + "ogs" + ], + [ + "istan", + "s" + ], + [ + "ista", + "ns" + ], + [ + "ist", + "ans" + ], + [ + "▁categor", + "y" + ], + [ + "▁categ", + "ory" + ], + [ + "iz", + "in" + ], + [ + "▁Pre", + "m" + ], + [ + "▁Pr", + "em" + ], + [ + "▁P", + "rem" + ], + [ + "▁ot", + "or" + ], + [ + "▁o", + "tor" + ], + [ + "ic", + "y" + ], + [ + "i", + "cy" + ], + [ + "▁Ste", + "w" + ], + [ + "▁St", + "ew" + ], + [ + "▁la", + "ke" + ], + [ + "▁l", + "ake" + ], + [ + "▁", + "lake" + ], + [ + "▁mot", + "iv" + ], + [ + "iv", + "a" + ], + [ + "i", + "va" + ], + [ + "oy", + "s" + ], + [ + "o", + "ys" + ], + [ + "▁fer", + "t" + ], + [ + "▁f", + "ert" + ], + [ + "▁creat", + "ive" + ], + [ + "▁cre", + "ative" + ], + [ + "▁feeling", + "s" + ], + [ + "▁feel", + "ings" + ], + [ + "▁fee", + "lings" + ], + [ + "▁out", + "put" + ], + [ + "d", + "o" + ], + [ + "at", + "è" + ], + [ + "a", + "tè" + ], + [ + "▁Bi", + "r" + ], + [ + "▁B", + "ir" + ], + [ + "ai", + "d" + ], + [ + "a", + "id" + ], + [ + "▁thous", + "and" + ], + [ + "ribe", + "d" + ], + [ + "rib", + "ed" + ], + [ + "ri", + "bed" + ], + [ + "co", + "n" + ], + [ + "c", + "on" + ], + [ + "aft", + "er" + ], + [ + "af", + "ter" + ], + [ + "a", + "fter" + ], + [ + "▁habit", + "at" + ], + [ + "S", + "A" + ], + [ + "▁wind", + "ow" + ], + [ + "▁Pe", + "d" + ], + [ + "▁P", + "ed" + ], + [ + "▁main", + "tenance" + ], + [ + "▁si", + "vil" + ], + [ + "▁s", + "ivil" + ], + [ + "oro", + "us" + ], + [ + "or", + "ous" + ], + [ + "o", + "rous" + ], + [ + "▁1962", + "," + ], + [ + "▁196", + "2," + ], + [ + "T", + "h" + ], + [ + "orne", + "y" + ], + [ + "orn", + "ey" + ], + [ + "or", + "ney" + ], + [ + "▁si", + "sp" + ], + [ + "▁s", + "isp" + ], + [ + "▁page", + "s" + ], + [ + "▁pa", + "ges" + ], + [ + "▁p", + "ages" + ], + [ + "▁credit", + "ed" + ], + [ + "▁cred", + "ited" + ], + [ + "▁c", + "redited" + ], + [ + "▁legisl", + "ation" + ], + [ + "th", + "m" + ], + [ + "t", + "hm" + ], + [ + "▁part", + "n" + ], + [ + "▁n", + "avig" + ], + [ + "▁represent", + "s" + ], + [ + "▁rep", + "resents" + ], + [ + "▁conv", + "in" + ], + [ + "▁con", + "vin" + ], + [ + "▁leg", + "s" + ], + [ + "▁le", + "gs" + ], + [ + "▁imp", + "ossible" + ], + [ + "▁rad", + "yo" + ], + [ + "▁Fam", + "ily" + ], + [ + "▁beg", + "un" + ], + [ + "▁be", + "gun" + ], + [ + "▁eas", + "ier" + ], + [ + "▁9", + "6" + ], + [ + "▁", + "96" + ], + [ + "whe", + "re" + ], + [ + "wh", + "ere" + ], + [ + "w", + "here" + ], + [ + "born", + "e" + ], + [ + "bor", + "ne" + ], + [ + "b", + "orne" + ], + [ + "▁promot", + "ion" + ], + [ + "▁prom", + "otion" + ], + [ + "▁Al", + "e" + ], + [ + "▁A", + "le" + ], + [ + "▁Ag", + "ain" + ], + [ + "▁A", + "gain" + ], + [ + "▁13", + "0" + ], + [ + "▁1", + "30" + ], + [ + "▁gen", + "re" + ], + [ + "▁a", + "x" + ], + [ + "▁", + "ax" + ], + [ + "act", + "ive" + ], + [ + "a", + "ctive" + ], + [ + "ars", + "h" + ], + [ + "ar", + "sh" + ], + [ + "▁spe", + "nd" + ], + [ + "▁sp", + "end" + ], + [ + "▁s", + "pend" + ], + [ + "▁Ka", + "t" + ], + [ + "▁K", + "at" + ], + [ + "▁return", + "s" + ], + [ + "▁Kil", + "ti" + ], + [ + "▁K", + "ilti" + ], + [ + "▁establish", + "ment" + ], + [ + "▁7", + "7" + ], + [ + "▁", + "77" + ], + [ + "and", + "y" + ], + [ + "an", + "dy" + ], + [ + "▁hit", + "s" + ], + [ + "▁h", + "its" + ], + [ + "▁look", + "s" + ], + [ + "▁l", + "ooks" + ], + [ + "▁193", + "6" + ], + [ + "▁19", + "36" + ], + [ + "▁act", + "ress" + ], + [ + "▁Net", + "her" + ], + [ + "▁Ne", + "ther" + ], + [ + "▁N", + "ether" + ], + [ + "▁instrument", + "s" + ], + [ + "▁instr", + "uments" + ], + [ + "i", + "ć" + ], + [ + "▁invite", + "d" + ], + [ + "▁inv", + "ited" + ], + [ + "▁describ", + "ing" + ], + [ + "▁desc", + "ribing" + ], + [ + "wa", + "n" + ], + [ + "w", + "an" + ], + [ + "▁kont", + "ak" + ], + [ + "▁class", + "ified" + ], + [ + "▁med", + "ikal" + ], + [ + "▁seg", + "ment" + ], + [ + "▁se", + "gment" + ], + [ + "▁fil", + "e" + ], + [ + "▁fi", + "le" + ], + [ + "▁f", + "ile" + ], + [ + "▁otor", + "ite" + ], + [ + "▁distribute", + "d" + ], + [ + "▁distrib", + "uted" + ], + [ + "▁Kore", + "a" + ], + [ + "▁Kor", + "ea" + ], + [ + "▁Ko", + "rea" + ], + [ + "▁K", + "reyòl" + ], + [ + "▁pers", + "pective" + ], + [ + "▁Hit", + "ler" + ], + [ + "▁fast", + "er" + ], + [ + "▁fa", + "ster" + ], + [ + "▁f", + "aster" + ], + [ + "▁profess", + "ion" + ], + [ + "▁prof", + "ession" + ], + [ + "▁Sant", + "e" + ], + [ + "▁San", + "te" + ], + [ + "▁S", + "ante" + ], + [ + "▁7", + "8" + ], + [ + "▁", + "78" + ], + [ + "ely", + "e" + ], + [ + "el", + "ye" + ], + [ + "e", + "lye" + ], + [ + "C", + "C" + ], + [ + "▁ba", + "g" + ], + [ + "▁b", + "ag" + ], + [ + "▁Pu", + "r" + ], + [ + "▁P", + "ur" + ], + [ + "▁sisp", + "ann" + ], + [ + "us", + "ing" + ], + [ + "▁business", + "es" + ], + [ + "▁franch", + "ise" + ], + [ + "▁separate", + "d" + ], + [ + "▁separ", + "ated" + ], + [ + "▁replace", + "ment" + ], + [ + "rik", + "ilti" + ], + [ + "▁Kon", + "g" + ], + [ + "▁Ko", + "ng" + ], + [ + "▁K", + "ong" + ], + [ + "▁sim", + "pl" + ], + [ + "▁Minne", + "s" + ], + [ + "▁Min", + "nes" + ], + [ + "▁exper", + "t" + ], + [ + "▁exp", + "ert" + ], + [ + "▁ex", + "pert" + ], + [ + "▁Ham", + "ilton" + ], + [ + "▁Gi", + "b" + ], + [ + "▁G", + "ib" + ], + [ + "iter", + "ranean" + ], + [ + "▁abs", + "ence" + ], + [ + "B", + "I" + ], + [ + "▁Cr", + "e" + ], + [ + "▁C", + "re" + ], + [ + "▁4", + "." + ], + [ + "▁", + "4." + ], + [ + "▁195", + "9" + ], + [ + "aster", + "s" + ], + [ + "aste", + "rs" + ], + [ + "ast", + "ers" + ], + [ + "as", + "ters" + ], + [ + "a", + "sters" + ], + [ + "am", + "i" + ], + [ + "a", + "mi" + ], + [ + "▁sur", + "f" + ], + [ + "▁1904", + "." + ], + [ + "▁190", + "4." + ], + [ + "▁radi", + "ation" + ], + [ + "▁rad", + "iation" + ], + [ + "▁Laur", + "e" + ], + [ + "▁La", + "ure" + ], + [ + "▁session", + "s" + ], + [ + "▁s", + "essions" + ], + [ + "▁Fed", + "er" + ], + [ + "▁Fe", + "der" + ], + [ + "▁F", + "eder" + ], + [ + "▁in", + "g" + ], + [ + "▁i", + "ng" + ], + [ + "▁", + "ing" + ], + [ + "▁G", + "ouvènman" + ], + [ + "au", + "g" + ], + [ + "a", + "ug" + ], + [ + "▁emerge", + "d" + ], + [ + "▁emerg", + "ed" + ], + [ + "▁emer", + "ged" + ], + [ + "▁195", + "7" + ], + [ + "▁Miss", + "ouri" + ], + [ + "▁diplom", + "atik" + ], + [ + "onc", + "é" + ], + [ + "▁adj", + "ust" + ], + [ + "▁ad", + "just" + ], + [ + "▁form", + "at" + ], + [ + "▁for", + "mat" + ], + [ + "▁emission", + "s" + ], + [ + "▁em", + "issions" + ], + [ + "▁owner", + "s" + ], + [ + "▁own", + "ers" + ], + [ + "▁ow", + "ners" + ], + [ + "▁", + "owners" + ], + [ + "▁we", + "d" + ], + [ + "▁w", + "ed" + ], + [ + "▁co", + "oper" + ], + [ + "▁Sa", + "v" + ], + [ + "▁S", + "av" + ], + [ + "▁intent", + "ion" + ], + [ + "▁int", + "ention" + ], + [ + "▁Corp", + "or" + ], + [ + "▁Cor", + "por" + ], + [ + "▁C", + "orpor" + ], + [ + "▁admit", + "ted" + ], + [ + "▁adm", + "itted" + ], + [ + "▁ad", + "mitted" + ], + [ + "ran", + "t" + ], + [ + "ra", + "nt" + ], + [ + "r", + "ant" + ], + [ + "▁favor", + "ite" + ], + [ + "▁Al", + "b" + ], + [ + "▁cons", + "cious" + ], + [ + "▁191", + "9" + ], + [ + "▁19", + "19" + ], + [ + "▁reve", + "n" + ], + [ + "▁rev", + "en" + ], + [ + "▁re", + "ven" + ], + [ + "zo", + "n" + ], + [ + "z", + "on" + ], + [ + "▁Mount", + "ain" + ], + [ + "▁Moun", + "tain" + ], + [ + "▁M", + "ountain" + ], + [ + "▁base", + "ball" + ], + [ + "ache", + "r" + ], + [ + "ach", + "er" + ], + [ + "ac", + "her" + ], + [ + "a", + "cher" + ], + [ + "▁194", + "7" + ], + [ + "▁19", + "47" + ], + [ + "▁est", + "asyon" + ], + [ + "▁histor", + "ic" + ], + [ + "▁hist", + "oric" + ], + [ + "▁ru", + "b" + ], + [ + "▁r", + "ub" + ], + [ + "▁", + "rub" + ], + [ + "▁post", + "ed" + ], + [ + "▁pos", + "ted" + ], + [ + "▁po", + "sted" + ], + [ + "ort", + "ed" + ], + [ + "or", + "ted" + ], + [ + "▁phen", + "omen" + ], + [ + "omin", + "g" + ], + [ + "omi", + "ng" + ], + [ + "om", + "ing" + ], + [ + "o", + "ming" + ], + [ + "▁cross", + "ed" + ], + [ + "▁Bus", + "h" + ], + [ + "▁Bu", + "sh" + ], + [ + "▁B", + "ush" + ], + [ + "▁Ko", + "oper" + ], + [ + "▁Tur", + "k" + ], + [ + "▁Sta", + "ff" + ], + [ + "▁St", + "aff" + ], + [ + "ut", + "s" + ], + [ + "u", + "ts" + ], + [ + "▁immun", + "e" + ], + [ + "▁imm", + "une" + ], + [ + "omi", + "c" + ], + [ + "om", + "ic" + ], + [ + "o", + "mic" + ], + [ + "▁court", + "s" + ], + [ + "▁cour", + "ts" + ], + [ + "▁Med", + "iterranean" + ], + [ + "▁Gord", + "on" + ], + [ + "▁Gor", + "don" + ], + [ + "▁Indian", + "s" + ], + [ + "▁India", + "ns" + ], + [ + "▁Ind", + "ians" + ], + [ + "▁exp", + "ensive" + ], + [ + "itt", + "er" + ], + [ + "it", + "ter" + ], + [ + "i", + "qu" + ], + [ + "2", + "1" + ], + [ + "▁conserv", + "ation" + ], + [ + "▁cons", + "ervation" + ], + [ + "▁p", + "p" + ], + [ + "▁", + "pp" + ], + [ + "▁pers", + "u" + ], + [ + "▁excell", + "ent" + ], + [ + "▁game", + "play" + ], + [ + "chan", + "g" + ], + [ + "cha", + "ng" + ], + [ + "ch", + "ang" + ], + [ + "▁Olympic", + "s" + ], + [ + "▁Olymp", + "ics" + ], + [ + "chi", + "ng" + ], + [ + "ch", + "ing" + ], + [ + "c", + "hing" + ], + [ + "▁agre", + "e" + ], + [ + "▁ag", + "ree" + ], + [ + "▁Sin", + "ema" + ], + [ + "▁S", + "inema" + ], + [ + "▁form", + "ing" + ], + [ + "▁for", + "ming" + ], + [ + "▁story", + "line" + ], + [ + "▁)", + ";" + ], + [ + "▁", + ");" + ], + [ + "▁Ag", + "rikilti" + ], + [ + "▁195", + "3" + ], + [ + "▁as", + "istans" + ], + [ + "▁195", + "5" + ], + [ + "▁19", + "55" + ], + [ + "▁Kn", + "ow" + ], + [ + "▁K", + "now" + ], + [ + "▁dw", + "èt" + ], + [ + "▁Nav", + "al" + ], + [ + "▁Na", + "val" + ], + [ + "▁N", + "aval" + ], + [ + "▁Ass", + "embly" + ], + [ + "▁Adam", + "s" + ], + [ + "▁Ad", + "ams" + ], + [ + "▁break", + "ing" + ], + [ + "▁bre", + "aking" + ], + [ + "▁", + "breaking" + ], + [ + "▁How", + "ard" + ], + [ + "▁Ho", + "ward" + ], + [ + "▁Hear", + "t" + ], + [ + "▁He", + "art" + ], + [ + "▁Tour", + "is" + ], + [ + "▁Tou", + "ris" + ], + [ + "▁man", + "d" + ], + [ + "▁ma", + "nd" + ], + [ + "▁m", + "and" + ], + [ + "▁alf", + "abet" + ], + [ + "▁Bey", + "oncé" + ], + [ + "▁l", + "b" + ], + [ + "▁job", + "s" + ], + [ + "▁jo", + "bs" + ], + [ + "▁j", + "obs" + ], + [ + "▁Pè", + "sonalite" + ], + [ + "▁Air", + "port" + ], + [ + "”", + "." + ], + [ + "▁Pi", + "t" + ], + [ + "▁P", + "it" + ], + [ + "▁ha", + "l" + ], + [ + "▁h", + "al" + ], + [ + "▁", + "hal" + ], + [ + "▁encourage", + "d" + ], + [ + "▁encourag", + "ed" + ], + [ + "▁encoura", + "ged" + ], + [ + "▁enc", + "ouraged" + ], + [ + "▁repr", + "ann" + ], + [ + "▁rep", + "rann" + ], + [ + "elle", + "ct" + ], + [ + "ell", + "ect" + ], + [ + "el", + "lect" + ], + [ + "inct", + "ion" + ], + [ + "in", + "ction" + ], + [ + "▁arrest", + "ed" + ], + [ + "▁arr", + "ested" + ], + [ + "▁wors", + "t" + ], + [ + "▁wor", + "st" + ], + [ + "▁del", + "eg" + ], + [ + "▁de", + "leg" + ], + [ + "▁Konst", + "riksyon" + ], + [ + "▁6", + "9" + ], + [ + "▁va", + "st" + ], + [ + "▁v", + "ast" + ], + [ + "▁alfabet", + "izasyon" + ], + [ + "O", + "T" + ], + [ + "▁trial", + "s" + ], + [ + "▁tri", + "als" + ], + [ + "▁tr", + "ials" + ], + [ + "▁kou", + "manse" + ], + [ + "▁pè", + "sonalite" + ], + [ + "▁O", + "EA" + ], + [ + "▁Pè", + "ch" + ], + [ + "▁3000", + "00" + ], + [ + "▁300", + "000" + ], + [ + "▁st", + "adium" + ], + [ + "▁Cent", + "re" + ], + [ + "▁ethn", + "ic" + ], + [ + "▁eth", + "nic" + ], + [ + "▁chans", + "elye" + ], + [ + "onot", + "ik" + ], + [ + "▁Fi", + "ve" + ], + [ + "▁F", + "ive" + ], + [ + "ew", + "onotik" + ], + [ + "▁Dab", + "òn" + ], + [ + "▁surviv", + "e" + ], + [ + "▁surv", + "ive" + ], + [ + "▁Aut", + "hor" + ], + [ + "▁Kooper", + "asyon" + ], + [ + "▁There", + "fore" + ], + [ + "▁mod", + "ified" + ], + [ + "▁Ja", + "y" + ], + [ + "▁J", + "ay" + ], + [ + "ust", + "er" + ], + [ + "us", + "ter" + ], + [ + "u", + "ster" + ], + [ + "▁A", + "ewonotik" + ], + [ + "▁bl", + "e" + ], + [ + "▁b", + "le" + ], + [ + "▁", + "ble" + ], + [ + "▁Asia", + "n" + ], + [ + "▁As", + "ian" + ], + [ + "ille", + "r" + ], + [ + "ill", + "er" + ], + [ + "il", + "ler" + ], + [ + "i", + "ller" + ], + [ + "▁sp", + "r" + ], + [ + "▁s", + "pr" + ], + [ + "▁17", + "7" + ], + [ + "▁1", + "77" + ], + [ + "▁class", + "ic" + ], + [ + "▁cl", + "assic" + ], + [ + "▁Short", + "ly" + ], + [ + "▁particip", + "ate" + ], + [ + "▁colon", + "ial" + ], + [ + "▁col", + "onial" + ], + [ + "▁dat", + "ing" + ], + [ + "▁da", + "ting" + ], + [ + "▁d", + "ating" + ], + [ + "▁sa", + "il" + ], + [ + "▁s", + "ail" + ], + [ + "▁prote", + "st" + ], + [ + "▁prot", + "est" + ], + [ + "▁Sy", + "m" + ], + [ + "▁S", + "ym" + ], + [ + "▁c", + "a" + ], + [ + "▁", + "ca" + ], + [ + "ath", + "y" + ], + [ + "at", + "hy" + ], + [ + "a", + "thy" + ], + [ + "▁suit", + "able" + ], + [ + "▁su", + "itable" + ], + [ + "▁s", + "uitable" + ], + [ + "▁Dr", + "a" + ], + [ + "▁D", + "ra" + ], + [ + "▁191", + "0" + ], + [ + "▁19", + "10" + ], + [ + "▁drink", + "ing" + ], + [ + "▁dr", + "inking" + ], + [ + "▁attribute", + "d" + ], + [ + "▁attrib", + "uted" + ], + [ + "west", + "ern" + ], + [ + "w", + "estern" + ], + [ + "▁program", + "me" + ], + [ + "inces", + "s" + ], + [ + "ince", + "ss" + ], + [ + "inc", + "ess" + ], + [ + "in", + "cess" + ], + [ + "▁pre", + "y" + ], + [ + "▁pr", + "ey" + ], + [ + "▁p", + "rey" + ], + [ + "▁victim", + "s" + ], + [ + "▁vict", + "ims" + ], + [ + "▁involve", + "s" + ], + [ + "▁invol", + "ves" + ], + [ + "▁inv", + "olves" + ], + [ + "ew", + "here" + ], + [ + "e", + "where" + ], + [ + "▁where", + "as" + ], + [ + "▁Kenn", + "edy" + ], + [ + "▁prov", + "ince" + ], + [ + "▁Pe", + "ar" + ], + [ + "▁P", + "ear" + ], + [ + "▁stab", + "le" + ], + [ + "▁st", + "able" + ], + [ + "▁VI", + "I" + ], + [ + "▁V", + "II" + ], + [ + "▁Haw", + "ai" + ], + [ + "ning", + "s" + ], + [ + "n", + "ings" + ], + [ + "rel", + "ated" + ], + [ + "▁thir", + "ty" + ], + [ + "▁th", + "irty" + ], + [ + "▁Minnes", + "ota" + ], + [ + "▁plan", + "e" + ], + [ + "▁pl", + "ane" + ], + [ + "▁p", + "lane" + ], + [ + "▁", + "plane" + ], + [ + "▁Ban", + "d" + ], + [ + "▁Ba", + "nd" + ], + [ + "▁B", + "and" + ], + [ + "▁Tem", + "ple" + ], + [ + "G", + "N" + ], + [ + "▁amer", + "iken" + ], + [ + "▁De", + "r" + ], + [ + "▁D", + "er" + ], + [ + "▁", + "Der" + ], + [ + "hed", + "ral" + ], + [ + "▁det", + "ect" + ], + [ + "ze", + "r" + ], + [ + "z", + "er" + ], + [ + "▁sh", + "ore" + ], + [ + "▁", + "shore" + ], + [ + "▁comment", + "s" + ], + [ + "▁comm", + "ents" + ], + [ + "▁com", + "ments" + ], + [ + "▁your", + "self" + ], + [ + "▁No", + "n" + ], + [ + "▁N", + "on" + ], + [ + "▁mini", + "ster" + ], + [ + "▁min", + "ister" + ], + [ + "P", + "S" + ], + [ + "▁tempor", + "ary" + ], + [ + "▁tempo", + "rary" + ], + [ + "▁tem", + "porary" + ], + [ + "▁phon", + "e" + ], + [ + "▁ph", + "one" + ], + [ + "▁", + "phone" + ], + [ + "iti", + "d" + ], + [ + "it", + "id" + ], + [ + "▁h", + "ill" + ], + [ + "▁", + "hill" + ], + [ + "▁Whe", + "re" + ], + [ + "▁Wh", + "ere" + ], + [ + "▁W", + "here" + ], + [ + "els", + "on" + ], + [ + "el", + "son" + ], + [ + "▁super", + "ior" + ], + [ + "▁Mem", + "orial" + ], + [ + "▁Through", + "out" + ], + [ + "▁rese", + "mb" + ], + [ + "▁res", + "emb" + ], + [ + "▁participant", + "s" + ], + [ + "▁particip", + "ants" + ], + [ + "spe", + "c" + ], + [ + "sp", + "ec" + ], + [ + "▁forest", + "s" + ], + [ + "▁fore", + "sts" + ], + [ + "▁for", + "ests" + ], + [ + "▁draw", + "ing" + ], + [ + "▁dra", + "wing" + ], + [ + "▁Mar", + "g" + ], + [ + "▁Mexic", + "an" + ], + [ + "▁synth", + "es" + ], + [ + "▁syn", + "thes" + ], + [ + "▁inform", + "ed" + ], + [ + "▁in", + "formed" + ], + [ + "4", + "5" + ], + [ + "▁ro", + "ot" + ], + [ + "▁r", + "oot" + ], + [ + "▁organ", + "ic" + ], + [ + "ol", + "o" + ], + [ + "o", + "lo" + ], + [ + "▁Jac", + "ob" + ], + [ + "▁st", + "ood" + ], + [ + "▁", + "stood" + ], + [ + "▁ret", + "reat" + ], + [ + "ace", + "nt" + ], + [ + "ac", + "ent" + ], + [ + "a", + "cent" + ], + [ + "▁pen", + "al" + ], + [ + "▁pe", + "nal" + ], + [ + "▁fall", + "ing" + ], + [ + "▁fal", + "ling" + ], + [ + "▁f", + "alling" + ], + [ + "▁cop", + "y" + ], + [ + "▁co", + "py" + ], + [ + "▁c", + "opy" + ], + [ + "▁r", + "u" + ], + [ + "▁", + "ru" + ], + [ + "▁Ho", + "u" + ], + [ + "▁H", + "ou" + ], + [ + "▁Eri", + "c" + ], + [ + "▁Er", + "ic" + ], + [ + "▁E", + "ric" + ], + [ + "▁Bo", + "s" + ], + [ + "▁B", + "os" + ], + [ + "ific", + "ial" + ], + [ + "if", + "icial" + ], + [ + "i", + "ficial" + ], + [ + "▁Us", + "e" + ], + [ + "▁U", + "se" + ], + [ + "▁strugg", + "le" + ], + [ + "▁redu", + "ction" + ], + [ + "▁red", + "uction" + ], + [ + "▁re", + "duction" + ], + [ + "▁", + "”" + ], + [ + "▁Al", + "an" + ], + [ + "▁A", + "lan" + ], + [ + "▁vote", + "d" + ], + [ + "▁vot", + "ed" + ], + [ + "▁vo", + "ted" + ], + [ + "▁v", + "oted" + ], + [ + "ile", + "y" + ], + [ + "il", + "ey" + ], + [ + "i", + "ley" + ], + [ + "▁en", + "emies" + ], + [ + "▁prepar", + "e" + ], + [ + "▁prep", + "are" + ], + [ + "▁Th", + "ose" + ], + [ + "ct", + "ic" + ], + [ + "c", + "tic" + ], + [ + "▁descript", + "ion" + ], + [ + "▁desc", + "ription" + ], + [ + "▁des", + "cription" + ], + [ + "▁charge", + "s" + ], + [ + "▁char", + "ges" + ], + [ + "r", + "é" + ], + [ + "▁prem", + "ier" + ], + [ + "▁electron", + "ic" + ], + [ + "▁electro", + "nic" + ], + [ + "▁electr", + "onic" + ], + [ + "▁elect", + "ronic" + ], + [ + "▁Ban", + "g" + ], + [ + "▁Ba", + "ng" + ], + [ + "▁B", + "ang" + ], + [ + "wa", + "r" + ], + [ + "w", + "ar" + ], + [ + "▁liqu", + "id" + ], + [ + "▁Ne", + "s" + ], + [ + "▁N", + "es" + ], + [ + "bur", + "n" + ], + [ + "b", + "urn" + ], + [ + "▁Dougl", + "as" + ], + [ + "▁Doug", + "las" + ], + [ + "▁6", + "7" + ], + [ + "▁", + "67" + ], + [ + "ote", + "s" + ], + [ + "ot", + "es" + ], + [ + "o", + "tes" + ], + [ + "wi", + "ck" + ], + [ + "w", + "ick" + ], + [ + "▁Bea", + "ch" + ], + [ + "▁Be", + "ach" + ], + [ + "▁El", + "e" + ], + [ + "▁E", + "le" + ], + [ + "▁Us", + "ing" + ], + [ + "▁document", + "s" + ], + [ + "▁doc", + "uments" + ], + [ + "▁conc", + "rete" + ], + [ + "▁ref", + "uge" + ], + [ + "▁11", + "0" + ], + [ + "▁1", + "10" + ], + [ + "▁cu", + "l" + ], + [ + "▁c", + "ul" + ], + [ + "▁", + "cul" + ], + [ + "▁193", + "7" + ], + [ + "▁19", + "37" + ], + [ + "▁Marin", + "e" + ], + [ + "▁Mari", + "ne" + ], + [ + "▁Mar", + "ine" + ], + [ + "▁Ma", + "rine" + ], + [ + "▁M", + "arine" + ], + [ + "ultan", + "e" + ], + [ + "ult", + "ane" + ], + [ + "heast", + "ern" + ], + [ + "he", + "astern" + ], + [ + "ind", + "u" + ], + [ + "in", + "du" + ], + [ + "▁son", + "s" + ], + [ + "▁so", + "ns" + ], + [ + "▁s", + "ons" + ], + [ + "▁Thir", + "d" + ], + [ + "▁Th", + "ird" + ], + [ + "hi", + "re" + ], + [ + "h", + "ire" + ], + [ + "▁Jord", + "an" + ], + [ + "▁regime", + "nt" + ], + [ + "▁reg", + "iment" + ], + [ + "che", + "n" + ], + [ + "ch", + "en" + ], + [ + "c", + "hen" + ], + [ + "▁Ba", + "b" + ], + [ + "▁B", + "ab" + ], + [ + "▁Car", + "t" + ], + [ + "▁C", + "art" + ], + [ + "em", + "ed" + ], + [ + "e", + "med" + ], + [ + "▁Mari", + "e" + ], + [ + "▁Mar", + "ie" + ], + [ + "▁Ma", + "rie" + ], + [ + "▁finding", + "s" + ], + [ + "▁find", + "ings" + ], + [ + "▁par", + "liament" + ], + [ + "▁rep", + "air" + ], + [ + "▁flower", + "s" + ], + [ + "▁flow", + "ers" + ], + [ + "▁fl", + "owers" + ], + [ + "ola", + "s" + ], + [ + "ol", + "as" + ], + [ + "o", + "las" + ], + [ + "▁cust", + "om" + ], + [ + "▁Mc", + "K" + ], + [ + "▁pi", + "n" + ], + [ + "▁p", + "in" + ], + [ + "▁", + "pin" + ], + [ + "ia", + "c" + ], + [ + "i", + "ac" + ], + [ + "▁Mas", + "ter" + ], + [ + "▁Ma", + "ster" + ], + [ + "▁M", + "aster" + ], + [ + "▁195", + "4" + ], + [ + "▁believe", + "s" + ], + [ + "▁belie", + "ves" + ], + [ + "▁cert", + "ified" + ], + [ + "▁Ho", + "r" + ], + [ + "▁H", + "or" + ], + [ + "▁mil", + "k" + ], + [ + "▁manag", + "e" + ], + [ + "▁man", + "age" + ], + [ + "▁Matt", + "hew" + ], + [ + "▁Ph", + "ys" + ], + [ + "▁Ton", + "y" + ], + [ + "▁To", + "ny" + ], + [ + "▁T", + "ony" + ], + [ + "app", + "ing" + ], + [ + "ap", + "ping" + ], + [ + "a", + "pping" + ], + [ + "io", + "x" + ], + [ + "i", + "ox" + ], + [ + "▁incorporate", + "d" + ], + [ + "▁incorpor", + "ated" + ], + [ + "▁inc", + "orporated" + ], + [ + "aps", + "e" + ], + [ + "ap", + "se" + ], + [ + "▁Arg", + "ent" + ], + [ + "▁Ar", + "gent" + ], + [ + "▁accus", + "ed" + ], + [ + "▁acc", + "used" + ], + [ + "▁fac", + "ing" + ], + [ + "▁fa", + "cing" + ], + [ + "▁f", + "acing" + ], + [ + "ieg", + "e" + ], + [ + "ie", + "ge" + ], + [ + "▁street", + "s" + ], + [ + "▁stre", + "ets" + ], + [ + "com", + "ing" + ], + [ + "co", + "ming" + ], + [ + "c", + "oming" + ], + [ + "ak", + "s" + ], + [ + "a", + "ks" + ], + [ + "▁date", + "d" + ], + [ + "▁dat", + "ed" + ], + [ + "▁da", + "ted" + ], + [ + "▁d", + "ated" + ], + [ + "▁Rhode", + "s" + ], + [ + "▁Rhod", + "es" + ], + [ + "▁Rh", + "odes" + ], + [ + "rac", + "y" + ], + [ + "ra", + "cy" + ], + [ + "r", + "acy" + ], + [ + "▁fi", + "ct" + ], + [ + "▁f", + "ict" + ], + [ + "▁Sant", + "a" + ], + [ + "▁San", + "ta" + ], + [ + "▁S", + "anta" + ], + [ + "int", + "s" + ], + [ + "in", + "ts" + ], + [ + "▁Ga", + "b" + ], + [ + "▁G", + "ab" + ], + [ + "▁root", + "s" + ], + [ + "▁ro", + "ots" + ], + [ + "▁C", + "E" + ], + [ + "▁", + "CE" + ], + [ + "esi", + "s" + ], + [ + "es", + "is" + ], + [ + "e", + "sis" + ], + [ + "▁Ly", + "n" + ], + [ + "▁L", + "yn" + ], + [ + "▁found", + "ation" + ], + [ + "▁9", + "8" + ], + [ + "▁", + "98" + ], + [ + "ind", + "ing" + ], + [ + "in", + "ding" + ], + [ + "▁H", + "o" + ], + [ + "▁occasional", + "ly" + ], + [ + "▁occasion", + "ally" + ], + [ + "ografi", + "k" + ], + [ + "ograf", + "ik" + ], + [ + "▁H", + "ospital" + ], + [ + "t", + "ure" + ], + [ + "ven", + "s" + ], + [ + "ve", + "ns" + ], + [ + "v", + "ens" + ], + [ + "▁frequ", + "ent" + ], + [ + "▁B", + "h" + ], + [ + "▁mil", + "it" + ], + [ + "▁m", + "ilit" + ], + [ + "▁remain", + "der" + ], + [ + "▁land", + "fall" + ], + [ + "▁win", + "ner" + ], + [ + "▁ste", + "ad" + ], + [ + "▁st", + "ead" + ], + [ + "▁", + "stead" + ], + [ + "wi", + "ch" + ], + [ + "w", + "ich" + ], + [ + "▁gra", + "v" + ], + [ + "▁gr", + "av" + ], + [ + "▁g", + "rav" + ], + [ + "▁sac", + "r" + ], + [ + "▁sa", + "cr" + ], + [ + "ak", + "i" + ], + [ + "a", + "ki" + ], + [ + "▁tie", + "d" + ], + [ + "▁ti", + "ed" + ], + [ + "▁t", + "ied" + ], + [ + "▁Fo", + "od" + ], + [ + "▁F", + "ood" + ], + [ + "▁For", + "d" + ], + [ + "▁Fo", + "rd" + ], + [ + "▁F", + "ord" + ], + [ + "br", + "o" + ], + [ + "b", + "ro" + ], + [ + "▁spok", + "e" + ], + [ + "▁spo", + "ke" + ], + [ + "▁sp", + "oke" + ], + [ + "▁Medic", + "al" + ], + [ + "▁Med", + "ical" + ], + [ + "▁adv", + "oc" + ], + [ + "ch", + "o" + ], + [ + "c", + "ho" + ], + [ + "▁alt", + "er" + ], + [ + "▁al", + "ter" + ], + [ + "et", + "e" + ], + [ + "e", + "te" + ], + [ + "▁rein", + "force" + ], + [ + "ival", + "s" + ], + [ + "iva", + "ls" + ], + [ + "iv", + "als" + ], + [ + "i", + "vals" + ], + [ + "▁G", + "h" + ], + [ + "bour", + "ne" + ], + [ + "▁Musl", + "im" + ], + [ + "▁Mus", + "lim" + ], + [ + "▁portray", + "ed" + ], + [ + "6", + "." + ], + [ + "▁free", + "way" + ], + [ + "▁fre", + "eway" + ], + [ + "▁ch", + "annel" + ], + [ + "▁Mag", + "azine" + ], + [ + "▁mission", + "s" + ], + [ + "▁miss", + "ions" + ], + [ + "▁m", + "issions" + ], + [ + "▁Ira", + "q" + ], + [ + "▁recall", + "ed" + ], + [ + "▁rec", + "alled" + ], + [ + "▁re", + "called" + ], + [ + "▁controvers", + "y" + ], + [ + "ity", + "e" + ], + [ + "it", + "ye" + ], + [ + "i", + "tye" + ], + [ + "ail", + "ed" + ], + [ + "ai", + "led" + ], + [ + "a", + "iled" + ], + [ + "▁Str", + "a" + ], + [ + "▁St", + "ra" + ], + [ + "▁S", + "tra" + ], + [ + "▁Io", + "wa" + ], + [ + "▁I", + "owa" + ], + [ + "▁m", + "unicip" + ], + [ + "▁electric", + "al" + ], + [ + "▁electr", + "ical" + ], + [ + "▁elect", + "rical" + ], + [ + "ulu", + "m" + ], + [ + "ul", + "um" + ], + [ + "▁Bo", + "u" + ], + [ + "▁B", + "ou" + ], + [ + "▁sic", + "k" + ], + [ + "▁si", + "ck" + ], + [ + "▁s", + "ick" + ], + [ + "▁so", + "ti" + ], + [ + "▁s", + "oti" + ], + [ + "ali", + "ties" + ], + [ + "al", + "ities" + ], + [ + "▁bo", + "m" + ], + [ + "▁b", + "om" + ], + [ + "▁hous", + "ing" + ], + [ + "▁ho", + "using" + ], + [ + "eral", + "d" + ], + [ + "era", + "ld" + ], + [ + "er", + "ald" + ], + [ + "u", + "v" + ], + [ + "▁No", + "b" + ], + [ + "▁N", + "ob" + ], + [ + "▁mon", + "it" + ], + [ + "▁", + "−" + ], + [ + "▁su", + "it" + ], + [ + "▁s", + "uit" + ], + [ + "rop", + "h" + ], + [ + "ro", + "ph" + ], + [ + "r", + "oph" + ], + [ + "▁room", + "s" + ], + [ + "▁ro", + "oms" + ], + [ + "▁", + "rooms" + ], + [ + "▁un", + "ion" + ], + [ + "▁", + "union" + ], + [ + "▁inter", + "ior" + ], + [ + "▁in", + "terior" + ], + [ + "▁expl", + "an" + ], + [ + "▁exp", + "lan" + ], + [ + "▁ex", + "plan" + ], + [ + "▁sal", + "e" + ], + [ + "▁sa", + "le" + ], + [ + "▁s", + "ale" + ], + [ + "▁den", + "ied" + ], + [ + "▁intens", + "e" + ], + [ + "▁int", + "ense" + ], + [ + "▁involve", + "ment" + ], + [ + "▁invol", + "vement" + ], + [ + "▁inte", + "nt" + ], + [ + "▁int", + "ent" + ], + [ + "é", + "l" + ], + [ + "▁Bo", + "l" + ], + [ + "▁B", + "ol" + ], + [ + "▁Song", + "s" + ], + [ + "▁Son", + "gs" + ], + [ + "▁S", + "ongs" + ], + [ + "▁bo", + "n" + ], + [ + "▁b", + "on" + ], + [ + "▁", + "bon" + ], + [ + "▁Do", + "g" + ], + [ + "▁D", + "og" + ], + [ + "3", + "5" + ], + [ + "▁Con", + "c" + ], + [ + "▁C", + "onc" + ], + [ + "▁classic", + "al" + ], + [ + "▁class", + "ical" + ], + [ + "▁h", + "ip" + ], + [ + "▁", + "hip" + ], + [ + "▁U", + "t" + ], + [ + "▁moder", + "ate" + ], + [ + "▁mode", + "rate" + ], + [ + "▁mod", + "erate" + ], + [ + "▁8", + "8" + ], + [ + "▁", + "88" + ], + [ + "▁jewografi", + "k" + ], + [ + "▁jew", + "ografik" + ], + [ + "▁Br", + "y" + ], + [ + "▁B", + "ry" + ], + [ + "▁pound", + "s" + ], + [ + "▁p", + "ounds" + ], + [ + "▁si", + "n" + ], + [ + "▁s", + "in" + ], + [ + "▁17", + "5" + ], + [ + "▁1", + "75" + ], + [ + "otyp", + "e" + ], + [ + "ot", + "ype" + ], + [ + "o", + "type" + ], + [ + "er", + "r" + ], + [ + "pson", + "s" + ], + [ + "ps", + "ons" + ], + [ + "▁reference", + "s" + ], + [ + "▁refer", + "ences" + ], + [ + "D", + "A" + ], + [ + "▁Fred", + "er" + ], + [ + "▁Fre", + "der" + ], + [ + "▁Fr", + "eder" + ], + [ + "ph", + "one" + ], + [ + "▁explor", + "e" + ], + [ + "▁explo", + "re" + ], + [ + "▁expl", + "ore" + ], + [ + "▁exp", + "lore" + ], + [ + "▁as", + "h" + ], + [ + "▁a", + "sh" + ], + [ + "▁", + "ash" + ], + [ + "▁ex", + "ternal" + ], + [ + "ex", + "p" + ], + [ + "▁colon", + "y" + ], + [ + "▁col", + "ony" + ], + [ + "urch", + "es" + ], + [ + "ur", + "ches" + ], + [ + "▁wave", + "s" + ], + [ + "▁wa", + "ves" + ], + [ + "▁w", + "aves" + ], + [ + "▁frequ", + "ency" + ], + [ + "ac", + "c" + ], + [ + "a", + "cc" + ], + [ + "▁Ir", + "on" + ], + [ + "▁I", + "ron" + ], + [ + "▁adop", + "t" + ], + [ + "▁ad", + "opt" + ], + [ + "▁Op", + "en" + ], + [ + "▁O", + "pen" + ], + [ + "▁pro", + "l" + ], + [ + "▁pr", + "ol" + ], + [ + "▁p", + "rol" + ], + [ + "▁concent", + "ration" + ], + [ + "og", + "ether" + ], + [ + "▁Simpson", + "s" + ], + [ + "▁Sim", + "psons" + ], + [ + "con", + "t" + ], + [ + "co", + "nt" + ], + [ + "c", + "ont" + ], + [ + "▁Al", + "ab" + ], + [ + "▁bran", + "d" + ], + [ + "▁bra", + "nd" + ], + [ + "▁br", + "and" + ], + [ + "▁b", + "rand" + ], + [ + "▁oper", + "a" + ], + [ + "▁op", + "era" + ], + [ + "uth", + "er" + ], + [ + "ut", + "her" + ], + [ + "u", + "ther" + ], + [ + "▁narr", + "ative" + ], + [ + "▁nar", + "rative" + ], + [ + "▁historian", + "s" + ], + [ + "▁histor", + "ians" + ], + [ + "▁Vide", + "o" + ], + [ + "▁Vid", + "eo" + ], + [ + "ert", + "o" + ], + [ + "er", + "to" + ], + [ + "▁Mod", + "ern" + ], + [ + "▁spend", + "ing" + ], + [ + "▁sp", + "ending" + ], + [ + "▁alman", + "ak" + ], + [ + "▁Ra", + "in" + ], + [ + "▁R", + "ain" + ], + [ + "▁Nic", + "h" + ], + [ + "▁Ni", + "ch" + ], + [ + "▁N", + "ich" + ], + [ + "▁hot", + "el" + ], + [ + "▁ho", + "tel" + ], + [ + "▁memor", + "ial" + ], + [ + "▁mem", + "orial" + ], + [ + "▁expl", + "o" + ], + [ + "▁exp", + "lo" + ], + [ + "claim", + "ed" + ], + [ + "▁Eve", + "r" + ], + [ + "▁Ev", + "er" + ], + [ + "▁E", + "ver" + ], + [ + "▁ren", + "der" + ], + [ + "▁r", + "ender" + ], + [ + "▁", + "render" + ], + [ + "ola", + "r" + ], + [ + "ol", + "ar" + ], + [ + "o", + "lar" + ], + [ + "▁not", + "ing" + ], + [ + "▁no", + "ting" + ], + [ + "▁n", + "oting" + ], + [ + "▁gen", + "e" + ], + [ + "▁ge", + "ne" + ], + [ + "▁g", + "ene" + ], + [ + "▁list", + "en" + ], + [ + "▁li", + "sten" + ], + [ + "ination", + "s" + ], + [ + "in", + "ations" + ], + [ + "▁continu", + "ing" + ], + [ + "▁contin", + "uing" + ], + [ + "▁pro", + "hib" + ], + [ + "▁visitor", + "s" + ], + [ + "▁visit", + "ors" + ], + [ + "▁vis", + "itors" + ], + [ + "▁Gu", + "n" + ], + [ + "▁G", + "un" + ], + [ + "ni", + "ght" + ], + [ + "n", + "ight" + ], + [ + "▁Mic", + "ro" + ], + [ + "▁M", + "icro" + ], + [ + "▁protein", + "s" + ], + [ + "▁prote", + "ins" + ], + [ + "▁cover", + "s" + ], + [ + "▁cov", + "ers" + ], + [ + "▁co", + "vers" + ], + [ + "▁c", + "overs" + ], + [ + "▁recover", + "ed" + ], + [ + "▁rec", + "overed" + ], + [ + "▁mult", + "i" + ], + [ + "▁mul", + "ti" + ], + [ + "▁kn", + "ots" + ], + [ + "▁The", + "atre" + ], + [ + "▁Miss", + "iss" + ], + [ + "▁assess", + "ment" + ], + [ + "▁Li", + "m" + ], + [ + "▁L", + "im" + ], + [ + "▁agent", + "s" + ], + [ + "▁ag", + "ents" + ], + [ + "▁un", + "iform" + ], + [ + "ope", + "s" + ], + [ + "op", + "es" + ], + [ + "o", + "pes" + ], + [ + "▁sample", + "s" + ], + [ + "▁sam", + "ples" + ], + [ + "▁tor", + "n" + ], + [ + "▁t", + "orn" + ], + [ + "▁g", + "iant" + ], + [ + "▁certain", + "ly" + ], + [ + "▁K", + "r" + ], + [ + "▁Ob", + "s" + ], + [ + "▁O", + "bs" + ], + [ + "▁Some", + "t" + ], + [ + "▁Som", + "et" + ], + [ + "▁So", + "met" + ], + [ + "▁S", + "omet" + ], + [ + "▁Alab", + "ama" + ], + [ + "▁acknow", + "led" + ], + [ + "ont", + "o" + ], + [ + "on", + "to" + ], + [ + "▁schem", + "e" + ], + [ + "▁sche", + "me" + ], + [ + "▁co", + "ordin" + ], + [ + "▁just", + "ice" + ], + [ + "▁O", + "d" + ], + [ + "▁Ad", + "minist" + ], + [ + "▁F", + "A" + ], + [ + "▁", + "FA" + ], + [ + "▁unc", + "ertain" + ], + [ + "▁M", + "TV" + ], + [ + "▁cry", + "st" + ], + [ + "aw", + "s" + ], + [ + "▁price", + "s" + ], + [ + "▁pric", + "es" + ], + [ + "▁pri", + "ces" + ], + [ + "▁pr", + "ices" + ], + [ + "▁p", + "rices" + ], + [ + "▁", + "É" + ], + [ + "j", + "e" + ], + [ + "olit", + "an" + ], + [ + "ol", + "itan" + ], + [ + "ico", + "n" + ], + [ + "ic", + "on" + ], + [ + "i", + "con" + ], + [ + "du", + "le" + ], + [ + "d", + "ule" + ], + [ + "itz", + "er" + ], + [ + "it", + "zer" + ], + [ + "erse", + "d" + ], + [ + "ers", + "ed" + ], + [ + "te", + "s" + ], + [ + "t", + "es" + ], + [ + "▁substant", + "ial" + ], + [ + "▁surround", + "ed" + ], + [ + "▁want", + "s" + ], + [ + "▁w", + "ants" + ], + [ + "▁sal", + "t" + ], + [ + "▁s", + "alt" + ], + [ + "▁Ul", + "t" + ], + [ + "E", + "N" + ], + [ + "▁Bow", + "l" + ], + [ + "▁B", + "owl" + ], + [ + "▁pract", + "ical" + ], + [ + "▁Hav", + "ing" + ], + [ + "▁Ha", + "ving" + ], + [ + "▁H", + "aving" + ], + [ + "ke", + "s" + ], + [ + "k", + "es" + ], + [ + "▁gen", + "der" + ], + [ + "▁g", + "ender" + ], + [ + "▁miss", + "ed" + ], + [ + "▁Vi", + "s" + ], + [ + "▁V", + "is" + ], + [ + "os", + "m" + ], + [ + "o", + "sm" + ], + [ + "▁Pri", + "or" + ], + [ + "▁Pr", + "ior" + ], + [ + "▁fix", + "ed" + ], + [ + "▁f", + "ixed" + ], + [ + "▁complet", + "ion" + ], + [ + "▁comp", + "letion" + ], + [ + "▁194", + "9" + ], + [ + "▁19", + "49" + ], + [ + "▁king", + "dom" + ], + [ + "M", + "A" + ], + [ + "ili", + "t" + ], + [ + "il", + "it" + ], + [ + "▁supporter", + "s" + ], + [ + "▁support", + "ers" + ], + [ + "▁min", + "e" + ], + [ + "▁mi", + "ne" + ], + [ + "▁m", + "ine" + ], + [ + "▁musc", + "le" + ], + [ + "▁mus", + "cle" + ], + [ + "▁test", + "ed" + ], + [ + "▁te", + "sted" + ], + [ + "▁t", + "ested" + ], + [ + "è", + "re" + ], + [ + "▁attract", + "ed" + ], + [ + "▁att", + "racted" + ], + [ + "▁let", + "a" + ], + [ + "▁le", + "ta" + ], + [ + "▁l", + "eta" + ], + [ + "▁cu", + "p" + ], + [ + "▁c", + "up" + ], + [ + "▁sk", + "e" + ], + [ + "▁s", + "ke" + ], + [ + "igen", + "ous" + ], + [ + "▁comp", + "onent" + ], + [ + "▁190", + "0" + ], + [ + "▁19", + "00" + ], + [ + "▁judg", + "e" + ], + [ + "▁jud", + "ge" + ], + [ + "▁j", + "udge" + ], + [ + "▁circ", + "uit" + ], + [ + "▁invest", + "ment" + ], + [ + "▁bo", + "t" + ], + [ + "▁b", + "ot" + ], + [ + "▁", + "bot" + ], + [ + "▁top", + "ic" + ], + [ + "▁t", + "opic" + ], + [ + "▁reader", + "s" + ], + [ + "▁read", + "ers" + ], + [ + "▁re", + "aders" + ], + [ + "▁disapp", + "oint" + ], + [ + "▁Nat", + "ive" + ], + [ + "▁N", + "ative" + ], + [ + "▁An", + "y" + ], + [ + "▁A", + "ny" + ], + [ + "▁eight", + "h" + ], + [ + "▁e", + "ighth" + ], + [ + "el", + "d" + ], + [ + "e", + "ld" + ], + [ + "▁9", + "4" + ], + [ + "▁", + "94" + ], + [ + "▁er", + "e" + ], + [ + "▁e", + "re" + ], + [ + "▁", + "ere" + ], + [ + "▁po", + "ison" + ], + [ + "▁person", + "s" + ], + [ + "▁pers", + "ons" + ], + [ + "▁passenger", + "s" + ], + [ + "▁pass", + "engers" + ], + [ + "▁Co", + "ok" + ], + [ + "▁C", + "ook" + ], + [ + "▁Phil", + "ip" + ], + [ + "▁N", + "C" + ], + [ + "▁", + "NC" + ], + [ + "▁Mi", + "t" + ], + [ + "▁M", + "it" + ], + [ + "▁diam", + "eter" + ], + [ + "▁rel", + "ie" + ], + [ + "▁re", + "lie" + ], + [ + "▁int", + "ellect" + ], + [ + "▁tu", + "b" + ], + [ + "▁t", + "ub" + ], + [ + "▁A", + "I" + ], + [ + "▁will", + "ing" + ], + [ + "▁w", + "illing" + ], + [ + "▁class", + "ification" + ], + [ + "▁Ba", + "h" + ], + [ + "▁B", + "ah" + ], + [ + "▁cra", + "sh" + ], + [ + "▁cr", + "ash" + ], + [ + "▁rare", + "ly" + ], + [ + "ly", + "e" + ], + [ + "l", + "ye" + ], + [ + "p", + "o" + ], + [ + "▁193", + "5" + ], + [ + "▁19", + "35" + ], + [ + "um", + "a" + ], + [ + "u", + "ma" + ], + [ + "▁alleg", + "ed" + ], + [ + "▁alle", + "ged" + ], + [ + "▁inh", + "er" + ], + [ + "▁in", + "her" + ], + [ + "▁Ar", + "ound" + ], + [ + "▁A", + "round" + ], + [ + "▁behavi", + "our" + ], + [ + "▁river", + "s" + ], + [ + "▁rive", + "rs" + ], + [ + "▁riv", + "ers" + ], + [ + "▁ri", + "vers" + ], + [ + "▁r", + "ivers" + ], + [ + "▁point", + "ed" + ], + [ + "▁po", + "inted" + ], + [ + "▁p", + "ointed" + ], + [ + "▁Profess", + "or" + ], + [ + "▁8", + "9" + ], + [ + "▁", + "89" + ], + [ + "▁med", + "ieval" + ], + [ + "ke", + "r" + ], + [ + "k", + "er" + ], + [ + "▁circumst", + "ances" + ], + [ + "ay", + "a" + ], + [ + "a", + "ya" + ], + [ + "▁pro", + "n" + ], + [ + "▁pr", + "on" + ], + [ + "▁p", + "ron" + ], + [ + "az", + "a" + ], + [ + "a", + "za" + ], + [ + "▁195", + "2" + ], + [ + "▁entert", + "ain" + ], + [ + "▁enter", + "tain" + ], + [ + "▁ent", + "ertain" + ], + [ + "▁Tr", + "u" + ], + [ + "▁T", + "ru" + ], + [ + "▁percent", + "age" + ], + [ + "▁In", + "it" + ], + [ + "z", + "i" + ], + [ + "▁isol", + "ated" + ], + [ + "▁Nether", + "lands" + ], + [ + "ant", + "h" + ], + [ + "an", + "th" + ], + [ + "usa", + "l" + ], + [ + "us", + "al" + ], + [ + "teen", + "th" + ], + [ + "te", + "enth" + ], + [ + "t", + "eenth" + ], + [ + "8", + "." + ], + [ + "▁pret", + "ty" + ], + [ + "▁crop", + "s" + ], + [ + "▁cro", + "ps" + ], + [ + "▁cr", + "ops" + ], + [ + "▁c", + "rops" + ], + [ + "▁crimin", + "al" + ], + [ + "▁cr", + "iminal" + ], + [ + "rec", + "k" + ], + [ + "re", + "ck" + ], + [ + "r", + "eck" + ], + [ + "or", + "i" + ], + [ + "o", + "ri" + ], + [ + "▁193", + "3" + ], + [ + "▁19", + "33" + ], + [ + "▁inhab", + "it" + ], + [ + "▁inh", + "abit" + ], + [ + "▁ob", + "tain" + ], + [ + "▁surv", + "iv" + ], + [ + "▁poet", + "ry" + ], + [ + "▁po", + "etry" + ], + [ + "▁7", + "9" + ], + [ + "▁Ra", + "j" + ], + [ + "▁R", + "aj" + ], + [ + "pe", + "t" + ], + [ + "p", + "et" + ], + [ + "esty", + "le" + ], + [ + "est", + "yle" + ], + [ + "▁vit", + "al" + ], + [ + "▁vi", + "tal" + ], + [ + "▁v", + "ital" + ], + [ + "▁represent", + "ing" + ], + [ + "oco", + "l" + ], + [ + "oc", + "ol" + ], + [ + "o", + "col" + ], + [ + "app", + "ed" + ], + [ + "ap", + "ped" + ], + [ + "a", + "pped" + ], + [ + "▁Ta", + "l" + ], + [ + "▁T", + "al" + ], + [ + "▁Nor", + "we" + ], + [ + "gu", + "s" + ], + [ + "g", + "us" + ], + [ + "gra", + "d" + ], + [ + "gr", + "ad" + ], + [ + "g", + "rad" + ], + [ + "cel", + "l" + ], + [ + "ce", + "ll" + ], + [ + "c", + "ell" + ], + [ + "▁control", + "l" + ], + [ + "▁contro", + "ll" + ], + [ + "▁cont", + "roll" + ], + [ + "▁restore", + "d" + ], + [ + "▁rest", + "ored" + ], + [ + "▁Med", + "ia" + ], + [ + "▁Me", + "dia" + ], + [ + "▁M", + "edia" + ], + [ + "▁Ke", + "vin" + ], + [ + "▁n", + "erv" + ], + [ + "ar", + "r" + ], + [ + "▁8", + "7" + ], + [ + "▁", + "87" + ], + [ + "▁dollar", + "s" + ], + [ + "▁doll", + "ars" + ], + [ + "▁P", + "A" + ], + [ + "▁", + "PA" + ], + [ + "ate", + "ver" + ], + [ + "at", + "ever" + ], + [ + "▁surviv", + "ing" + ], + [ + "▁surv", + "iving" + ], + [ + "▁Trans", + "port" + ], + [ + "▁ab", + "und" + ], + [ + "▁Swed", + "en" + ], + [ + "▁host", + "ed" + ], + [ + "▁ho", + "sted" + ], + [ + "▁hunt", + "ing" + ], + [ + "▁hun", + "ting" + ], + [ + "▁h", + "unting" + ], + [ + "▁Si", + "n" + ], + [ + "▁S", + "in" + ], + [ + "▁sit", + "ye" + ], + [ + "▁si", + "tye" + ], + [ + "▁s", + "itye" + ], + [ + "▁Right", + "s" + ], + [ + "▁R", + "ights" + ], + [ + "▁stay", + "ed" + ], + [ + "▁st", + "ayed" + ], + [ + "osaur", + "us" + ], + [ + "osa", + "urus" + ], + [ + "os", + "aurus" + ], + [ + "▁pl", + "astic" + ], + [ + "▁Mau", + "r" + ], + [ + "▁Ma", + "ur" + ], + [ + "▁M", + "aur" + ], + [ + "h", + "t" + ], + [ + "▁Sta", + "t" + ], + [ + "▁St", + "at" + ], + [ + "▁ri", + "g" + ], + [ + "▁r", + "ig" + ], + [ + "▁", + "rig" + ], + [ + "▁nut", + "ri" + ], + [ + "ial", + "s" + ], + [ + "ia", + "ls" + ], + [ + "i", + "als" + ], + [ + "▁Mul", + "der" + ], + [ + "▁compar", + "ison" + ], + [ + "▁difficult", + "ies" + ], + [ + "▁le", + "ct" + ], + [ + "▁l", + "ect" + ], + [ + "▁", + "lect" + ], + [ + "▁sm", + "ooth" + ], + [ + "et", + "ime" + ], + [ + "e", + "time" + ], + [ + "▁res", + "olution" + ], + [ + "em", + "or" + ], + [ + "aint", + "s" + ], + [ + "ain", + "ts" + ], + [ + "a", + "ints" + ], + [ + "onomi", + "c" + ], + [ + "onom", + "ic" + ], + [ + "on", + "omic" + ], + [ + "▁inspir", + "ation" + ], + [ + "▁insp", + "iration" + ], + [ + "▁to", + "t" + ], + [ + "▁t", + "ot" + ], + [ + "ag", + "le" + ], + [ + "▁government", + "s" + ], + [ + "▁govern", + "ments" + ], + [ + "▁Fi", + "g" + ], + [ + "▁F", + "ig" + ], + [ + "▁", + "Fig" + ], + [ + "▁8", + "2" + ], + [ + "ut", + "y" + ], + [ + "u", + "ty" + ], + [ + "▁see", + "s" + ], + [ + "▁se", + "es" + ], + [ + "▁s", + "ees" + ], + [ + "▁cur", + "ren" + ], + [ + "▁mobil", + "e" + ], + [ + "▁mob", + "ile" + ], + [ + "▁m", + "obile" + ], + [ + "ine", + "r" + ], + [ + "in", + "er" + ], + [ + "i", + "ner" + ], + [ + "▁di", + "abetes" + ], + [ + "▁weap", + "on" + ], + [ + "ogl", + "e" + ], + [ + "og", + "le" + ], + [ + "▁det", + "er" + ], + [ + "▁de", + "ter" + ], + [ + "▁d", + "eter" + ], + [ + "ha", + "n" + ], + [ + "h", + "an" + ], + [ + "▁Di", + "ck" + ], + [ + "▁D", + "ick" + ], + [ + "▁seek", + "ing" + ], + [ + "▁see", + "king" + ], + [ + "▁se", + "eking" + ], + [ + "▁p", + "up" + ], + [ + "▁fle", + "x" + ], + [ + "▁fl", + "ex" + ], + [ + "▁f", + "lex" + ], + [ + "▁Ju", + "an" + ], + [ + "▁J", + "uan" + ], + [ + "▁election", + "s" + ], + [ + "▁elect", + "ions" + ], + [ + "▁ele", + "ctions" + ], + [ + "▁style", + "s" + ], + [ + "▁styl", + "es" + ], + [ + "▁sty", + "les" + ], + [ + "▁st", + "yles" + ], + [ + "▁fall", + "s" + ], + [ + "▁fal", + "ls" + ], + [ + "▁", + "falls" + ], + [ + "▁nu", + "rs" + ], + [ + "▁n", + "urs" + ], + [ + "▁prefer", + "red" + ], + [ + "▁drive", + "r" + ], + [ + "▁dr", + "iver" + ], + [ + "▁U", + "TC" + ], + [ + "▁All", + "en" + ], + [ + "▁Al", + "len" + ], + [ + "iy", + "ografi" + ], + [ + "▁boy", + "s" + ], + [ + "▁bo", + "ys" + ], + [ + "▁b", + "oys" + ], + [ + "▁", + "boys" + ], + [ + "▁Co", + "oper" + ], + [ + "▁C", + "R" + ], + [ + "▁Mer", + "c" + ], + [ + "▁M", + "erc" + ], + [ + "▁compose", + "r" + ], + [ + "▁compos", + "er" + ], + [ + "▁comp", + "oser" + ], + [ + "▁video", + "s" + ], + [ + "▁vide", + "os" + ], + [ + "▁farmer", + "s" + ], + [ + "▁farm", + "ers" + ], + [ + "▁far", + "mers" + ], + [ + "▁proper", + "ly" + ], + [ + "▁be", + "s" + ], + [ + "▁b", + "es" + ], + [ + "▁", + "bes" + ], + [ + "▁play", + "off" + ], + [ + "▁tur", + "b" + ], + [ + "▁t", + "urb" + ], + [ + "▁Han", + "d" + ], + [ + "▁Ha", + "nd" + ], + [ + "▁H", + "and" + ], + [ + "▁Cul", + "t" + ], + [ + "▁C", + "ult" + ], + [ + "▁fil", + "l" + ], + [ + "▁fi", + "ll" + ], + [ + "▁f", + "ill" + ], + [ + "▁", + "fill" + ], + [ + "ye", + "ar" + ], + [ + "y", + "ear" + ], + [ + "▁Ry", + "an" + ], + [ + "▁R", + "yan" + ], + [ + "▁un", + "n" + ], + [ + "▁", + "unn" + ], + [ + "▁shot", + "s" + ], + [ + "▁sh", + "ots" + ], + [ + "duct", + "ion" + ], + [ + "du", + "ction" + ], + [ + "d", + "uction" + ], + [ + "▁195", + "1" + ], + [ + "▁Cos", + "t" + ], + [ + "▁Co", + "st" + ], + [ + "▁C", + "ost" + ], + [ + "▁pl", + "us" + ], + [ + "▁", + "plus" + ], + [ + "end", + "ment" + ], + [ + "▁fu", + "r" + ], + [ + "▁f", + "ur" + ], + [ + "▁Bru", + "ce" + ], + [ + "▁Br", + "uce" + ], + [ + "▁val", + "id" + ], + [ + "▁v", + "alid" + ], + [ + "▁instit", + "ution" + ], + [ + "▁in", + "stitution" + ], + [ + "▁Color", + "ado" + ], + [ + "▁ni", + "t" + ], + [ + "▁n", + "it" + ], + [ + "▁Ch", + "èf" + ], + [ + "▁Lan", + "c" + ], + [ + "▁L", + "anc" + ], + [ + "C", + "A" + ], + [ + "▁Chan", + "nel" + ], + [ + "▁Ch", + "annel" + ], + [ + "▁ann", + "iversary" + ], + [ + "▁Tri", + "b" + ], + [ + "▁Tr", + "ib" + ], + [ + "▁T", + "rib" + ], + [ + "▁Mississ", + "ipp" + ], + [ + "▁St", + "adium" + ], + [ + "▁Ber", + "lin" + ], + [ + "▁Ret", + "rieved" + ], + [ + "ol", + "ve" + ], + [ + "▁lun", + "g" + ], + [ + "▁l", + "ung" + ], + [ + "▁Do", + "r" + ], + [ + "▁D", + "or" + ], + [ + "▁nomin", + "ation" + ], + [ + "▁nom", + "ination" + ], + [ + "▁accur", + "ate" + ], + [ + "▁acc", + "urate" + ], + [ + "▁watch", + "ing" + ], + [ + "n", + "g" + ], + [ + "▁A", + "R" + ], + [ + "▁", + "AR" + ], + [ + "▁Final", + "ly" + ], + [ + "▁Fin", + "ally" + ], + [ + "▁as", + "c" + ], + [ + "▁a", + "sc" + ], + [ + "▁", + "asc" + ], + [ + "sen", + "al" + ], + [ + "se", + "nal" + ], + [ + "▁paint", + "ed" + ], + [ + "▁pain", + "ted" + ], + [ + "▁pa", + "inted" + ], + [ + "▁p", + "ainted" + ], + [ + "▁paren", + "t" + ], + [ + "▁par", + "ent" + ], + [ + "▁pa", + "rent" + ], + [ + "▁p", + "arent" + ], + [ + "▁apparent", + "ly" + ], + [ + "▁appar", + "ently" + ], + [ + "▁Hel", + "l" + ], + [ + "▁He", + "ll" + ], + [ + "▁H", + "ell" + ], + [ + "▁fals", + "e" + ], + [ + "▁fal", + "se" + ], + [ + "▁Mor", + "gan" + ], + [ + "▁M", + "organ" + ], + [ + "▁sim", + "ultane" + ], + [ + "▁neighbor", + "hood" + ], + [ + "▁bone", + "s" + ], + [ + "▁bon", + "es" + ], + [ + "▁bo", + "nes" + ], + [ + "▁b", + "ones" + ], + [ + "▁Phil", + "l" + ], + [ + "▁Ph", + "ill" + ], + [ + "▁P", + "hill" + ], + [ + "▁brig", + "ade" + ], + [ + "▁br", + "igade" + ], + [ + "▁Cal", + "l" + ], + [ + "▁Ca", + "ll" + ], + [ + "▁C", + "all" + ], + [ + "▁techn", + "ologies" + ], + [ + "▁talk", + "ing" + ], + [ + "▁tal", + "king" + ], + [ + "▁ch", + "ampion" + ], + [ + "▁wing", + "s" + ], + [ + "▁win", + "gs" + ], + [ + "▁w", + "ings" + ], + [ + "▁Fre", + "d" + ], + [ + "▁Fr", + "ed" + ], + [ + "▁F", + "red" + ], + [ + "▁9", + "7" + ], + [ + "▁", + "97" + ], + [ + "▁age", + "d" + ], + [ + "▁ag", + "ed" + ], + [ + "▁a", + "ged" + ], + [ + "▁", + "aged" + ], + [ + "▁stri", + "ng" + ], + [ + "▁str", + "ing" + ], + [ + "▁st", + "ring" + ], + [ + "▁Al", + "ong" + ], + [ + "▁A", + "long" + ], + [ + "▁concept", + "s" + ], + [ + "▁conce", + "pts" + ], + [ + "▁partners", + "hip" + ], + [ + "▁partner", + "ship" + ], + [ + "▁partn", + "ership" + ], + [ + "▁command", + "ed" + ], + [ + "▁comm", + "anded" + ], + [ + "vel", + "and" + ], + [ + "ve", + "land" + ], + [ + "v", + "eland" + ], + [ + "▁Gree", + "ce" + ], + [ + "▁swit", + "ch" + ], + [ + "▁sw", + "itch" + ], + [ + "▁Robin", + "son" + ], + [ + "▁Rob", + "inson" + ], + [ + "no", + "ld" + ], + [ + "n", + "old" + ], + [ + "▁Gu", + "ide" + ], + [ + "▁rest", + "ric" + ], + [ + "▁gar", + "d" + ], + [ + "▁ga", + "rd" + ], + [ + "▁g", + "ard" + ], + [ + "▁", + "gard" + ], + [ + "▁ask", + "ing" + ], + [ + "▁as", + "king" + ], + [ + "\"", + "," + ], + [ + "agon", + "ist" + ], + [ + "▁division", + "s" + ], + [ + "▁div", + "isions" + ], + [ + "▁Ro", + "w" + ], + [ + "▁R", + "ow" + ], + [ + "▁demonstrate", + "d" + ], + [ + "▁demonst", + "rated" + ], + [ + "▁", + "<" + ], + [ + "▁Tor", + "onto" + ], + [ + "▁tempo", + "r" + ], + [ + "▁tem", + "por" + ], + [ + "E", + "T" + ], + [ + "▁Ge", + "r" + ], + [ + "▁G", + "er" + ], + [ + "▁NAS", + "A" + ], + [ + "▁NA", + "SA" + ], + [ + "▁Student", + "s" + ], + [ + "▁Stud", + "ents" + ], + [ + "▁N", + "elson" + ], + [ + "▁med", + "al" + ], + [ + "▁me", + "dal" + ], + [ + "-2", + "0" + ], + [ + "-", + "20" + ], + [ + "▁depart", + "ure" + ], + [ + "els", + "h" + ], + [ + "el", + "sh" + ], + [ + "▁ang", + "le" + ], + [ + "▁", + "angle" + ], + [ + "▁window", + "s" + ], + [ + "▁wind", + "ows" + ], + [ + "▁clinic", + "al" + ], + [ + "▁clin", + "ical" + ], + [ + "▁fish", + "ing" + ], + [ + "▁f", + "ishing" + ], + [ + "▁reveal", + "s" + ], + [ + "▁reve", + "als" + ], + [ + "▁demo", + "l" + ], + [ + "▁dem", + "ol" + ], + [ + "▁eng", + "age" + ], + [ + "▁en", + "gage" + ], + [ + "▁w", + "ire" + ], + [ + "rast", + "ructure" + ], + [ + "ell", + "i" + ], + [ + "el", + "li" + ], + [ + "▁impr", + "ess" + ], + [ + "▁imp", + "ress" + ], + [ + "▁im", + "press" + ], + [ + "▁Stan", + "ley" + ], + [ + "▁wood", + "en" + ], + [ + "▁neut", + "ral" + ], + [ + "▁was", + "n" + ], + [ + "▁K", + "ansas" + ], + [ + "▁Lis", + "a" + ], + [ + "▁Li", + "sa" + ], + [ + "▁L", + "isa" + ], + [ + "▁electro", + "n" + ], + [ + "▁electr", + "on" + ], + [ + "▁elect", + "ron" + ], + [ + "cher", + "s" + ], + [ + "che", + "rs" + ], + [ + "ch", + "ers" + ], + [ + "c", + "hers" + ], + [ + "▁adapt", + "ation" + ], + [ + "ph", + "oon" + ], + [ + "▁hope", + "d" + ], + [ + "▁hop", + "ed" + ], + [ + "▁ho", + "ped" + ], + [ + "▁h", + "oped" + ], + [ + "▁", + "à" + ], + [ + "▁doub", + "t" + ], + [ + "▁Gar", + "d" + ], + [ + "▁Ga", + "rd" + ], + [ + "▁G", + "ard" + ], + [ + "▁Bi", + "ble" + ], + [ + "▁B", + "ible" + ], + [ + "▁tri", + "es" + ], + [ + "▁tr", + "ies" + ], + [ + "▁t", + "ries" + ], + [ + "▁Sam", + "uel" + ], + [ + "▁personal", + "ity" + ], + [ + "▁person", + "ality" + ], + [ + "▁ha", + "z" + ], + [ + "▁h", + "az" + ], + [ + "▁tox", + "ic" + ], + [ + "▁to", + "xic" + ], + [ + "▁t", + "oxic" + ], + [ + "▁comp", + "rehens" + ], + [ + "▁Pu", + "bl" + ], + [ + "▁P", + "ubl" + ], + [ + "▁Af", + "f" + ], + [ + "▁A", + "ff" + ], + [ + "▁exist", + "ed" + ], + [ + "▁ex", + "isted" + ], + [ + "▁Mil", + "itary" + ], + [ + "▁Im", + "p" + ], + [ + "▁I", + "mp" + ], + [ + "od", + "s" + ], + [ + "o", + "ds" + ], + [ + "▁potential", + "ly" + ], + [ + "▁potent", + "ially" + ], + [ + "▁pot", + "entially" + ], + [ + "▁Cr", + "u" + ], + [ + "▁C", + "ru" + ], + [ + "▁agg", + "ress" + ], + [ + "▁ag", + "gress" + ], + [ + "▁fle", + "d" + ], + [ + "▁fl", + "ed" + ], + [ + "▁f", + "led" + ], + [ + "▁Vin", + "c" + ], + [ + "▁V", + "inc" + ], + [ + "▁orb", + "it" + ], + [ + "▁or", + "bit" + ], + [ + "▁collabor", + "ation" + ], + [ + "▁ba", + "y" + ], + [ + "▁b", + "ay" + ], + [ + "▁I", + "GN" + ], + [ + "▁convince", + "d" + ], + [ + "▁convinc", + "ed" + ], + [ + "▁convin", + "ced" + ], + [ + "▁vote", + "s" + ], + [ + "▁vot", + "es" + ], + [ + "▁vo", + "tes" + ], + [ + "▁v", + "otes" + ], + [ + "▁art", + "s" + ], + [ + "▁ar", + "ts" + ], + [ + "▁", + "arts" + ], + [ + "▁Jos", + "é" + ], + [ + "▁cult", + "iv" + ], + [ + "▁Bel", + "g" + ], + [ + "▁earth", + "qu" + ], + [ + "ier", + "e" + ], + [ + "ie", + "re" + ], + [ + "i", + "ere" + ], + [ + "▁Mac", + "h" + ], + [ + "▁Ma", + "ch" + ], + [ + "▁M", + "ach" + ], + [ + "▁pra", + "ise" + ], + [ + "▁Bi", + "shop" + ], + [ + "▁B", + "ishop" + ], + [ + "S", + "T" + ], + [ + "ò", + "d" + ], + [ + "▁pat", + "rol" + ], + [ + "▁down", + "town" + ], + [ + "▁Cle", + "veland" + ], + [ + "▁Ho", + "p" + ], + [ + "▁H", + "op" + ], + [ + "pa", + "n" + ], + [ + "p", + "an" + ], + [ + "▁sail", + "ed" + ], + [ + "▁sa", + "iled" + ], + [ + "▁s", + "ailed" + ], + [ + "▁unl", + "ess" + ], + [ + "▁un", + "less" + ], + [ + "▁Norm", + "an" + ], + [ + "▁Nor", + "man" + ], + [ + "▁N", + "orman" + ], + [ + "▁low", + "est" + ], + [ + "▁lo", + "west" + ], + [ + "▁val", + "uable" + ], + [ + "▁meet", + "s" + ], + [ + "▁me", + "ets" + ], + [ + "▁arm", + "or" + ], + [ + "cript", + "ion" + ], + [ + "c", + "ription" + ], + [ + "ol", + "ph" + ], + [ + "ri", + "ven" + ], + [ + "r", + "iven" + ], + [ + "▁approach", + "es" + ], + [ + "▁appro", + "aches" + ], + [ + "é", + "r" + ], + [ + "▁delay", + "ed" + ], + [ + "▁del", + "ayed" + ], + [ + "▁Norwe", + "gian" + ], + [ + "▁rec", + "over" + ], + [ + "▁re", + "cover" + ], + [ + "▁obs", + "t" + ], + [ + "▁ob", + "st" + ], + [ + "▁sub", + "t" + ], + [ + "▁D", + "E" + ], + [ + "▁Bor", + "n" + ], + [ + "▁B", + "orn" + ], + [ + "▁controvers", + "ial" + ], + [ + "ri", + "x" + ], + [ + "r", + "ix" + ], + [ + "uter", + "s" + ], + [ + "ute", + "rs" + ], + [ + "ut", + "ers" + ], + [ + "u", + "ters" + ], + [ + "▁Mor", + "t" + ], + [ + "▁M", + "ort" + ], + [ + "▁particle", + "s" + ], + [ + "▁partic", + "les" + ], + [ + "▁part", + "icles" + ], + [ + "so", + "le" + ], + [ + "s", + "ole" + ], + [ + "▁And", + "y" + ], + [ + "▁An", + "dy" + ], + [ + "▁aware", + "ness" + ], + [ + "▁co", + "ff" + ], + [ + "▁c", + "off" + ], + [ + "▁perm", + "ission" + ], + [ + "▁per", + "mission" + ], + [ + "▁Bris", + "t" + ], + [ + "▁Bri", + "st" + ], + [ + "▁Br", + "ist" + ], + [ + "▁B", + "rist" + ], + [ + "-", + "3" + ], + [ + "▁prepar", + "ation" + ], + [ + "▁prep", + "aration" + ], + [ + "▁Ric", + "k" + ], + [ + "▁Ri", + "ck" + ], + [ + "▁R", + "ick" + ], + [ + "▁ga", + "p" + ], + [ + "▁g", + "ap" + ], + [ + "▁ki", + "t" + ], + [ + "▁k", + "it" + ], + [ + "▁B", + "iyografi" + ], + [ + "▁or", + "b" + ], + [ + "▁", + "orb" + ], + [ + "▁T", + "H" + ], + [ + "▁", + "TH" + ], + [ + "▁in", + "put" + ], + [ + "▁mon", + "arch" + ], + [ + "▁rail", + "road" + ], + [ + "I", + "t" + ], + [ + "▁request", + "ed" + ], + [ + "▁requ", + "ested" + ], + [ + "▁strateg", + "ies" + ], + [ + "▁Mississipp", + "i" + ], + [ + "▁ga", + "t" + ], + [ + "▁g", + "at" + ], + [ + "▁Cont", + "in" + ], + [ + "é", + "n" + ], + [ + "▁disast", + "er" + ], + [ + "▁dis", + "aster" + ], + [ + "▁ag", + "ency" + ], + [ + "▁a", + "gency" + ], + [ + "▁situation", + "s" + ], + [ + "▁situ", + "ations" + ], + [ + "▁sit", + "uations" + ], + [ + "▁Bl", + "ood" + ], + [ + "ish", + "ment" + ], + [ + "▁ev", + "il" + ], + [ + "▁e", + "vil" + ], + [ + "▁ton", + "e" + ], + [ + "▁to", + "ne" + ], + [ + "▁t", + "one" + ], + [ + "rit", + "ion" + ], + [ + "r", + "ition" + ], + [ + "▁al", + "ien" + ], + [ + "▁202", + "0" + ], + [ + "▁20", + "20" + ], + [ + "▁Y", + "ank" + ], + [ + "▁whe", + "el" + ], + [ + "if", + "ies" + ], + [ + "▁Fro", + "nt" + ], + [ + "▁Fr", + "ont" + ], + [ + "▁F", + "ront" + ], + [ + "▁Ja", + "m" + ], + [ + "▁J", + "am" + ], + [ + "▁resc", + "ue" + ], + [ + "▁ris", + "ing" + ], + [ + "▁r", + "ising" + ], + [ + "▁", + "rising" + ], + [ + "ather", + "ine" + ], + [ + "amp", + "s" + ], + [ + "am", + "ps" + ], + [ + "▁Ch", + "ron" + ], + [ + "▁Further", + "more" + ], + [ + "▁to", + "ler" + ], + [ + "▁t", + "oler" + ], + [ + "▁philosoph", + "y" + ], + [ + "▁philos", + "ophy" + ], + [ + "▁Never", + "theless" + ], + [ + "ien", + "s" + ], + [ + "ie", + "ns" + ], + [ + "i", + "ens" + ], + [ + "▁dr", + "ink" + ], + [ + "▁shar", + "p" + ], + [ + "▁sh", + "arp" + ], + [ + "▁dominate", + "d" + ], + [ + "▁domin", + "ated" + ], + [ + "▁dom", + "inated" + ], + [ + "▁solution", + "s" + ], + [ + "▁sol", + "utions" + ], + [ + "▁s", + "olutions" + ], + [ + "x", + "ual" + ], + [ + "osy", + "stem" + ], + [ + "▁ass", + "emb" + ], + [ + "igrant", + "s" + ], + [ + "igr", + "ants" + ], + [ + "ig", + "rants" + ], + [ + "▁few", + "er" + ], + [ + "▁fe", + "wer" + ], + [ + "▁offer", + "ing" + ], + [ + "▁off", + "ering" + ], + [ + "▁fiction", + "al" + ], + [ + "▁fict", + "ional" + ], + [ + "▁8", + "4" + ], + [ + "▁Bru", + "n" + ], + [ + "▁Br", + "un" + ], + [ + "▁B", + "run" + ], + [ + "▁Re", + "al" + ], + [ + "▁R", + "eal" + ], + [ + "▁obl", + "ig" + ], + [ + "▁ob", + "lig" + ], + [ + "▁ab", + "use" + ], + [ + "ome", + "s" + ], + [ + "om", + "es" + ], + [ + "o", + "mes" + ], + [ + "▁ri", + "d" + ], + [ + "▁r", + "id" + ], + [ + "▁", + "rid" + ], + [ + "▁clim", + "b" + ], + [ + "▁cl", + "imb" + ], + [ + "ran", + "s" + ], + [ + "ra", + "ns" + ], + [ + "r", + "ans" + ], + [ + "▁diss", + "ip" + ], + [ + "▁expert", + "s" + ], + [ + "▁exper", + "ts" + ], + [ + "▁exp", + "erts" + ], + [ + "▁acc", + "um" + ], + [ + "▁anim", + "ated" + ], + [ + "▁an", + "imated" + ], + [ + "▁attempt", + "ing" + ], + [ + "▁picture", + "s" + ], + [ + "▁pict", + "ures" + ], + [ + "▁pic", + "tures" + ], + [ + "▁Nat", + "ural" + ], + [ + "▁N", + "atural" + ], + [ + "▁club", + "s" + ], + [ + "▁dec", + "ide" + ], + [ + "▁H", + "IV" + ], + [ + "▁ti", + "ght" + ], + [ + "▁t", + "ight" + ], + [ + "▁ent", + "hus" + ], + [ + "▁vess", + "el" + ], + [ + "▁landsc", + "ape" + ], + [ + "▁land", + "scape" + ], + [ + "▁bra", + "n" + ], + [ + "▁br", + "an" + ], + [ + "▁b", + "ran" + ], + [ + "▁indicate", + "s" + ], + [ + "▁indic", + "ates" + ], + [ + "▁ind", + "icates" + ], + [ + "▁princip", + "le" + ], + [ + "▁du", + "b" + ], + [ + "▁d", + "ub" + ], + [ + "al", + "o" + ], + [ + "a", + "lo" + ], + [ + "ach", + "ment" + ], + [ + "▁control", + "s" + ], + [ + "▁contro", + "ls" + ], + [ + "▁bank", + "s" + ], + [ + "▁ban", + "ks" + ], + [ + "▁b", + "anks" + ], + [ + "▁", + "banks" + ], + [ + "uma", + "n" + ], + [ + "um", + "an" + ], + [ + "u", + "man" + ], + [ + "ya", + "rd" + ], + [ + "y", + "ard" + ], + [ + "▁surviv", + "al" + ], + [ + "▁surv", + "ival" + ], + [ + "▁Mor", + "ris" + ], + [ + "▁be", + "n" + ], + [ + "▁b", + "en" + ], + [ + "▁", + "ben" + ], + [ + "▁Bo", + "r" + ], + [ + "▁B", + "or" + ], + [ + "▁fra", + "me" + ], + [ + "▁fr", + "ame" + ], + [ + "▁", + "frame" + ], + [ + "▁flow", + "er" + ], + [ + "▁flo", + "wer" + ], + [ + "▁fl", + "ower" + ], + [ + "▁", + "flower" + ], + [ + "AA", + "F" + ], + [ + "A", + "AF" + ], + [ + "▁er", + "r" + ], + [ + "▁", + "err" + ], + [ + "▁Ta", + "r" + ], + [ + "▁T", + "ar" + ], + [ + "▁Week", + "ly" + ], + [ + "▁T", + "s" + ], + [ + "▁theat", + "re" + ], + [ + "▁the", + "atre" + ], + [ + "▁process", + "ing" + ], + [ + "azi", + "ng" + ], + [ + "az", + "ing" + ], + [ + "a", + "zing" + ], + [ + "▁cover", + "ing" + ], + [ + "▁cov", + "ering" + ], + [ + "▁c", + "overing" + ], + [ + "▁office", + "s" + ], + [ + "▁offic", + "es" + ], + [ + "▁off", + "ices" + ], + [ + "▁influence", + "s" + ], + [ + "▁influ", + "ences" + ], + [ + "▁disc", + "ip" + ], + [ + "▁dis", + "cip" + ], + [ + "▁target", + "s" + ], + [ + "▁tar", + "gets" + ], + [ + "▁lo", + "yal" + ], + [ + "▁l", + "oyal" + ], + [ + "▁underst", + "ood" + ], + [ + "▁under", + "stood" + ], + [ + "▁colleague", + "s" + ], + [ + "▁colle", + "agues" + ], + [ + "▁Bir", + "d" + ], + [ + "▁Bi", + "rd" + ], + [ + "▁B", + "ird" + ], + [ + "▁En", + "ergy" + ], + [ + "▁Wel", + "sh" + ], + [ + "▁W", + "elsh" + ], + [ + "▁Tu", + "n" + ], + [ + "▁T", + "un" + ], + [ + "▁satell", + "ite" + ], + [ + "▁sat", + "ellite" + ], + [ + "▁Len", + "n" + ], + [ + "▁L", + "enn" + ], + [ + "▁encourag", + "e" + ], + [ + "▁encoura", + "ge" + ], + [ + "▁enc", + "ourage" + ], + [ + "▁contrib", + "ute" + ], + [ + "▁191", + "3" + ], + [ + "▁19", + "13" + ], + [ + "fi", + "re" + ], + [ + "f", + "ire" + ], + [ + "▁Sara", + "h" + ], + [ + "▁Sar", + "ah" + ], + [ + "▁Sa", + "rah" + ], + [ + "▁mo", + "on" + ], + [ + "▁m", + "oon" + ], + [ + "▁represent", + "ative" + ], + [ + "▁A", + "h" + ], + [ + "▁sched", + "ule" + ], + [ + "▁sche", + "dule" + ], + [ + "▁Lan", + "e" + ], + [ + "▁La", + "ne" + ], + [ + "▁L", + "ane" + ], + [ + "-", + "0" + ], + [ + "rat", + "ing" + ], + [ + "ra", + "ting" + ], + [ + "r", + "ating" + ], + [ + "▁Gu", + "y" + ], + [ + "▁G", + "uy" + ], + [ + "▁influ", + "ential" + ], + [ + "▁us", + "ual" + ], + [ + "9", + "," + ], + [ + "itude", + "s" + ], + [ + "itud", + "es" + ], + [ + "it", + "udes" + ], + [ + "▁i", + "d" + ], + [ + "▁", + "id" + ], + [ + "we", + "alth" + ], + [ + "▁finish", + "ing" + ], + [ + "▁fin", + "ishing" + ], + [ + "▁9", + "3" + ], + [ + "▁", + "93" + ], + [ + "em", + "et" + ], + [ + "e", + "met" + ], + [ + "▁seed", + "s" + ], + [ + "▁see", + "ds" + ], + [ + "▁se", + "eds" + ], + [ + "▁fest", + "ival" + ], + [ + "▁f", + "estival" + ], + [ + "l", + "s" + ], + [ + "▁Exp", + "er" + ], + [ + "▁Ex", + "per" + ], + [ + "▁pred", + "ecess" + ], + [ + "▁pro", + "g" + ], + [ + "▁pr", + "og" + ], + [ + "▁p", + "rog" + ], + [ + "▁prec", + "ip" + ], + [ + "▁pre", + "cip" + ], + [ + "▁walk", + "ing" + ], + [ + "▁wal", + "king" + ], + [ + "▁(", + "1" + ], + [ + "▁Stud", + "ies" + ], + [ + "▁cut", + "ting" + ], + [ + "▁ab", + "oard" + ], + [ + "▁a", + "board" + ], + [ + "his", + "t" + ], + [ + "hi", + "st" + ], + [ + "h", + "ist" + ], + [ + "▁elev", + "en" + ], + [ + "▁ele", + "ven" + ], + [ + "▁8", + "6" + ], + [ + "▁", + "86" + ], + [ + "ron", + "ze" + ], + [ + "▁antic", + "ip" + ], + [ + "▁anti", + "cip" + ], + [ + "▁ant", + "icip" + ], + [ + "▁penal", + "ty" + ], + [ + "ib", + "ilities" + ], + [ + "▁tu", + "m" + ], + [ + "▁t", + "um" + ], + [ + "▁ju", + "r" + ], + [ + "▁j", + "ur" + ], + [ + "▁de", + "emed" + ], + [ + "▁Orig", + "in" + ], + [ + "▁Ori", + "gin" + ], + [ + "▁resident", + "ial" + ], + [ + "▁resid", + "ential" + ], + [ + "▁convention", + "al" + ], + [ + "▁convent", + "ional" + ], + [ + "▁con", + "ventional" + ], + [ + "▁", + "×" + ], + [ + "▁ne", + "t" + ], + [ + "▁n", + "et" + ], + [ + "▁", + "net" + ], + [ + "▁ere", + "ct" + ], + [ + "▁er", + "ect" + ], + [ + "▁e", + "rect" + ], + [ + "▁claim", + "ing" + ], + [ + "▁F", + "a" + ], + [ + "orp", + "h" + ], + [ + "or", + "ph" + ], + [ + "▁arrange", + "ment" + ], + [ + "▁arrang", + "ement" + ], + [ + "▁S", + "n" + ], + [ + "g", + "i" + ], + [ + "▁musician", + "s" + ], + [ + "▁music", + "ians" + ], + [ + "▁mus", + "icians" + ], + [ + "au", + "x" + ], + [ + "a", + "ux" + ], + [ + "▁Pale", + "st" + ], + [ + "▁Pal", + "est" + ], + [ + "▁To", + "k" + ], + [ + "▁T", + "ok" + ], + [ + "▁Mu", + "ch" + ], + [ + "▁M", + "uch" + ], + [ + "▁Les", + "s" + ], + [ + "▁Le", + "ss" + ], + [ + "▁L", + "ess" + ], + [ + "▁mark", + "s" + ], + [ + "▁mar", + "ks" + ], + [ + "▁m", + "arks" + ], + [ + "▁", + "marks" + ], + [ + "▁block", + "s" + ], + [ + "▁bl", + "ocks" + ], + [ + "oy", + "d" + ], + [ + "o", + "yd" + ], + [ + "▁Sc", + "ully" + ], + [ + "omo", + "t" + ], + [ + "om", + "ot" + ], + [ + "▁Brist", + "ol" + ], + [ + "▁bi", + "ological" + ], + [ + "▁b", + "iological" + ], + [ + "▁Au", + "d" + ], + [ + "▁A", + "ud" + ], + [ + "ag", + "u" + ], + [ + "a", + "gu" + ], + [ + "fi", + "sh" + ], + [ + "f", + "ish" + ], + [ + "st", + "ic" + ], + [ + "s", + "tic" + ], + [ + "▁ma", + "c" + ], + [ + "▁m", + "ac" + ], + [ + "▁thro", + "ne" + ], + [ + "▁thr", + "one" + ], + [ + "un", + "c" + ], + [ + "▁recover", + "y" + ], + [ + "▁rec", + "overy" + ], + [ + "nes", + "t" + ], + [ + "ne", + "st" + ], + [ + "n", + "est" + ], + [ + "▁N", + "BA" + ], + [ + "▁consist", + "ent" + ], + [ + "▁cons", + "istent" + ], + [ + "▁document", + "ary" + ], + [ + "aver", + "y" + ], + [ + "ave", + "ry" + ], + [ + "av", + "ery" + ], + [ + "a", + "very" + ], + [ + "▁el", + "s" + ], + [ + "▁e", + "ls" + ], + [ + "▁", + "els" + ], + [ + "▁feed", + "ing" + ], + [ + "▁fee", + "ding" + ], + [ + "▁fe", + "eding" + ], + [ + "▁", + "feeding" + ], + [ + "▁experiment", + "s" + ], + [ + "▁exper", + "iments" + ], + [ + "enn", + "is" + ], + [ + "en", + "nis" + ], + [ + "▁tru", + "ck" + ], + [ + "▁tr", + "uck" + ], + [ + "▁ri", + "t" + ], + [ + "▁r", + "it" + ], + [ + "▁", + "rit" + ], + [ + "▁D", + "C" + ], + [ + "▁", + "DC" + ], + [ + "▁mar", + "ine" + ], + [ + "▁ma", + "rine" + ], + [ + "▁m", + "arine" + ], + [ + "▁", + "marine" + ], + [ + "▁Pop", + "e" + ], + [ + "▁Po", + "pe" + ], + [ + "▁P", + "ope" + ], + [ + "▁recept", + "ion" + ], + [ + "▁rece", + "ption" + ], + [ + "▁re", + "ception" + ], + [ + "▁fl", + "ank" + ], + [ + "▁paper", + "s" + ], + [ + "▁pap", + "ers" + ], + [ + "▁pa", + "pers" + ], + [ + "▁p", + "apers" + ], + [ + "▁rem", + "n" + ], + [ + "▁re", + "mn" + ], + [ + "▁hor", + "iz" + ], + [ + "▁ho", + "riz" + ], + [ + "atin", + "um" + ], + [ + "▁c", + "avalry" + ], + [ + "▁rem", + "ix" + ], + [ + "ly", + "n" + ], + [ + "l", + "yn" + ], + [ + "▁execute", + "d" + ], + [ + "▁execut", + "ed" + ], + [ + "▁exec", + "uted" + ], + [ + "▁depict", + "ed" + ], + [ + "▁dep", + "icted" + ], + [ + "▁push", + "ed" + ], + [ + "▁p", + "ushed" + ], + [ + "▁Roll", + "ing" + ], + [ + "▁termin", + "us" + ], + [ + "▁term", + "inus" + ], + [ + "▁Da", + "l" + ], + [ + "▁D", + "al" + ], + [ + "▁else", + "where" + ], + [ + "▁els", + "ewhere" + ], + [ + "▁Win", + "ter" + ], + [ + "▁W", + "inter" + ], + [ + "zi", + "ng" + ], + [ + "z", + "ing" + ], + [ + "▁long", + "est" + ], + [ + "▁lon", + "gest" + ], + [ + "▁character", + "ized" + ], + [ + "▁prevent", + "ed" + ], + [ + "▁prev", + "ented" + ], + [ + "ocr", + "acy" + ], + [ + "oc", + "racy" + ], + [ + "▁ab", + "ilities" + ], + [ + "▁", + "abilities" + ], + [ + "▁satis", + "f" + ], + [ + "▁val", + "ley" + ], + [ + "▁v", + "alley" + ], + [ + "▁Sto", + "ry" + ], + [ + "▁St", + "ory" + ], + [ + "▁fit", + "ted" + ], + [ + "▁f", + "itted" + ], + [ + "▁foss", + "il" + ], + [ + "▁limit", + "s" + ], + [ + "▁lim", + "its" + ], + [ + "ick", + "s" + ], + [ + "ic", + "ks" + ], + [ + "▁shif", + "t" + ], + [ + "▁sh", + "ift" + ], + [ + "▁land", + "ed" + ], + [ + "▁lan", + "ded" + ], + [ + "▁l", + "anded" + ], + [ + "emet", + "ery" + ], + [ + "▁insect", + "s" + ], + [ + "▁insec", + "ts" + ], + [ + "▁ins", + "ects" + ], + [ + "▁observation", + "s" + ], + [ + "▁observ", + "ations" + ], + [ + "otto", + "n" + ], + [ + "ott", + "on" + ], + [ + "ot", + "ton" + ], + [ + "▁D", + "a" + ], + [ + "▁Ma", + "s" + ], + [ + "▁M", + "as" + ], + [ + "▁he", + "m" + ], + [ + "▁h", + "em" + ], + [ + "▁", + "hem" + ], + [ + "▁La", + "m" + ], + [ + "▁L", + "am" + ], + [ + "▁friend", + "ly" + ], + [ + "▁", + "friendly" + ], + [ + "▁Arm", + "en" + ], + [ + "▁Ar", + "men" + ], + [ + "▁deliver", + "y" + ], + [ + "▁Thom", + "pson" + ], + [ + "▁Corpor", + "ation" + ], + [ + "▁Corp", + "oration" + ], + [ + "▁sequ", + "el" + ], + [ + "▁se", + "quel" + ], + [ + "▁link", + "s" + ], + [ + "▁lin", + "ks" + ], + [ + "▁l", + "inks" + ], + [ + "no", + "on" + ], + [ + "n", + "oon" + ], + [ + "▁sk", + "y" + ], + [ + "▁s", + "ky" + ], + [ + "▁", + "sky" + ], + [ + "▁pros", + "p" + ], + [ + "▁pro", + "sp" + ], + [ + "▁pr", + "osp" + ], + [ + "usc", + "ript" + ], + [ + "us", + "cript" + ], + [ + "▁afterward", + "s" + ], + [ + "▁after", + "wards" + ], + [ + "▁O", + "t" + ], + [ + "▁mi", + "t" + ], + [ + "▁m", + "it" + ], + [ + "▁", + "mit" + ], + [ + "▁hyp", + "er" + ], + [ + "▁hy", + "per" + ], + [ + "▁rid", + "e" + ], + [ + "▁ri", + "de" + ], + [ + "▁r", + "ide" + ], + [ + "▁", + "ride" + ], + [ + "▁object", + "ive" + ], + [ + "▁Techn", + "ology" + ], + [ + "▁Bro", + "ther" + ], + [ + "▁Br", + "other" + ], + [ + "▁race", + "s" + ], + [ + "▁rac", + "es" + ], + [ + "▁ra", + "ces" + ], + [ + "▁r", + "aces" + ], + [ + "ance", + "r" + ], + [ + "anc", + "er" + ], + [ + "an", + "cer" + ], + [ + "ographic", + "al" + ], + [ + "ograph", + "ical" + ], + [ + "▁Bern", + "ard" + ], + [ + "▁recon", + "st" + ], + [ + "▁rec", + "onst" + ], + [ + "▁W", + "right" + ], + [ + "▁agricult", + "ure" + ], + [ + "▁dens", + "ity" + ], + [ + "▁d", + "ensity" + ], + [ + "▁matter", + "s" + ], + [ + "▁mat", + "ters" + ], + [ + "▁m", + "atters" + ], + [ + "▁live", + "r" + ], + [ + "▁liv", + "er" + ], + [ + "▁li", + "ver" + ], + [ + "▁l", + "iver" + ], + [ + "5", + "." + ], + [ + "ils", + "t" + ], + [ + "il", + "st" + ], + [ + "ol", + "y" + ], + [ + "o", + "ly" + ], + [ + "p", + "òt" + ], + [ + "▁be", + "ach" + ], + [ + "▁Carte", + "r" + ], + [ + "▁Cart", + "er" + ], + [ + "▁Car", + "ter" + ], + [ + "▁C", + "arter" + ], + [ + "▁Russ", + "ell" + ], + [ + "▁Jacqu", + "es" + ], + [ + "▁Jac", + "ques" + ], + [ + "▁tell", + "ing" + ], + [ + "▁tel", + "ling" + ], + [ + "▁t", + "elling" + ], + [ + "▁Fin", + "n" + ], + [ + "▁F", + "inn" + ], + [ + "ot", + "yp" + ], + [ + "▁WW", + "E" + ], + [ + "▁proced", + "ure" + ], + [ + "▁inv", + "ent" + ], + [ + "▁in", + "vent" + ], + [ + "▁Nes", + "ans" + ], + [ + "2", + "4" + ], + [ + "▁Ka", + "l" + ], + [ + "▁K", + "al" + ], + [ + "ga", + "s" + ], + [ + "g", + "as" + ], + [ + "▁aud", + "io" + ], + [ + "▁Nat", + "ure" + ], + [ + "▁Na", + "ture" + ], + [ + "▁N", + "ature" + ], + [ + "▁Sa", + "f" + ], + [ + "▁S", + "af" + ], + [ + "▁co", + "d" + ], + [ + "▁c", + "od" + ], + [ + "▁Sp", + "e" + ], + [ + "▁S", + "pe" + ], + [ + "rupt", + "ion" + ], + [ + "ru", + "ption" + ], + [ + "r", + "uption" + ], + [ + "▁Cr", + "y" + ], + [ + "▁C", + "ry" + ], + [ + "▁fl", + "ash" + ], + [ + "▁f", + "lash" + ], + [ + "ant", + "a" + ], + [ + "an", + "ta" + ], + [ + "▁dang", + "er" + ], + [ + "▁d", + "anger" + ], + [ + "▁hydro", + "gen" + ], + [ + "▁hyd", + "rogen" + ], + [ + "▁bel", + "t" + ], + [ + "▁b", + "elt" + ], + [ + "▁rating", + "s" + ], + [ + "▁rat", + "ings" + ], + [ + "▁rec", + "ip" + ], + [ + "▁re", + "cip" + ], + [ + "▁Ar", + "k" + ], + [ + "▁te", + "x" + ], + [ + "▁t", + "ex" + ], + [ + "▁prov", + "e" + ], + [ + "▁pro", + "ve" + ], + [ + "▁pr", + "ove" + ], + [ + "▁appear", + "ing" + ], + [ + "▁appe", + "aring" + ], + [ + "▁app", + "earing" + ], + [ + "▁ru", + "m" + ], + [ + "▁r", + "um" + ], + [ + "▁", + "rum" + ], + [ + "é", + "d" + ], + [ + "▁stri", + "ct" + ], + [ + "▁str", + "ict" + ], + [ + "▁st", + "rict" + ], + [ + "ix", + "on" + ], + [ + "▁divers", + "e" + ], + [ + "▁diver", + "se" + ], + [ + "▁div", + "erse" + ], + [ + "▁di", + "verse" + ], + [ + "▁ba", + "t" + ], + [ + "▁b", + "at" + ], + [ + "▁", + "bat" + ], + [ + "▁part", + "ly" + ], + [ + "l", + "i" + ], + [ + "▁S", + "T" + ], + [ + "▁", + "ST" + ], + [ + "car", + "e" + ], + [ + "ca", + "re" + ], + [ + "c", + "are" + ], + [ + "▁193", + "4" + ], + [ + "▁19", + "34" + ], + [ + "▁ad", + "m" + ], + [ + "og", + "a" + ], + [ + "o", + "ga" + ], + [ + "▁Anth", + "ony" + ], + [ + "▁graphic", + "s" + ], + [ + "▁graph", + "ics" + ], + [ + "far", + "e" + ], + [ + "fa", + "re" + ], + [ + "f", + "are" + ], + [ + "▁Wa", + "t" + ], + [ + "▁W", + "at" + ], + [ + "▁deploy", + "ed" + ], + [ + "▁president", + "ial" + ], + [ + "▁ind", + "eed" + ], + [ + "▁ass", + "ass" + ], + [ + "u", + "i" + ], + [ + "ik", + "a" + ], + [ + "i", + "ka" + ], + [ + "▁Sa", + "x" + ], + [ + "▁S", + "ax" + ], + [ + "▁w", + "ish" + ], + [ + "▁mon", + "ument" + ], + [ + "▁Na", + "r" + ], + [ + "▁N", + "ar" + ], + [ + "▁al", + "g" + ], + [ + "▁", + "alg" + ], + [ + "▁dis", + "ag" + ], + [ + "iva", + "n" + ], + [ + "iv", + "an" + ], + [ + "i", + "van" + ], + [ + "▁compound", + "s" + ], + [ + "▁comp", + "ounds" + ], + [ + "▁basket", + "ball" + ], + [ + "▁bask", + "etball" + ], + [ + "▁De", + "an" + ], + [ + "▁D", + "ean" + ], + [ + "▁decre", + "ase" + ], + [ + "▁out", + "l" + ], + [ + "t", + "i" + ], + [ + "▁Pu", + "erto" + ], + [ + "▁pou", + "nd" + ], + [ + "▁po", + "und" + ], + [ + "▁p", + "ound" + ], + [ + "tr", + "e" + ], + [ + "t", + "re" + ], + [ + "▁color", + "s" + ], + [ + "▁col", + "ors" + ], + [ + "▁terr", + "or" + ], + [ + "▁ter", + "ror" + ], + [ + "▁happen", + "s" + ], + [ + "▁happ", + "ens" + ], + [ + "▁Pol", + "ice" + ], + [ + "▁Alex", + "and" + ], + [ + "▁mountain", + "s" + ], + [ + "▁mount", + "ains" + ], + [ + "▁moun", + "tains" + ], + [ + "▁pass", + "enger" + ], + [ + "▁ran", + "dom" + ], + [ + "▁r", + "andom" + ], + [ + "▁scen", + "ar" + ], + [ + "▁Min", + "istry" + ], + [ + "▁Wi", + "n" + ], + [ + "▁W", + "in" + ], + [ + "▁su", + "p" + ], + [ + "▁s", + "up" + ], + [ + "▁age", + "s" + ], + [ + "▁ag", + "es" + ], + [ + "▁a", + "ges" + ], + [ + "▁", + "ages" + ], + [ + "▁suppl", + "ement" + ], + [ + "▁supp", + "lement" + ], + [ + "▁task", + "s" + ], + [ + "▁t", + "asks" + ], + [ + "▁gu", + "arant" + ], + [ + "▁surpris", + "e" + ], + [ + "▁sur", + "prise" + ], + [ + "▁mo", + "ist" + ], + [ + "▁adv", + "is" + ], + [ + "▁ad", + "vis" + ], + [ + "▁Me", + "s" + ], + [ + "▁M", + "es" + ], + [ + "▁De", + "ath" + ], + [ + "▁inf", + "rastructure" + ], + [ + "ro", + "t" + ], + [ + "r", + "ot" + ], + [ + "C", + "h" + ], + [ + "▁La", + "s" + ], + [ + "▁L", + "as" + ], + [ + "▁aim", + "ed" + ], + [ + "▁coin", + "s" + ], + [ + "▁co", + "ins" + ], + [ + "ad", + "i" + ], + [ + "a", + "di" + ], + [ + "▁painting", + "s" + ], + [ + "▁paint", + "ings" + ], + [ + "▁Har", + "ris" + ], + [ + "▁vers", + "e" + ], + [ + "▁ver", + "se" + ], + [ + "▁v", + "erse" + ], + [ + "▁", + "verse" + ], + [ + "▁cross", + "es" + ], + [ + "▁cros", + "ses" + ], + [ + "▁secure", + "d" + ], + [ + "▁sec", + "ured" + ], + [ + "▁air", + "port" + ], + [ + "▁unl", + "ike" + ], + [ + "▁un", + "like" + ], + [ + "▁Re", + "ad" + ], + [ + "▁R", + "ead" + ], + [ + "▁enter", + "s" + ], + [ + "▁ent", + "ers" + ], + [ + "▁en", + "ters" + ], + [ + "▁Robert", + "s" + ], + [ + "▁Rober", + "ts" + ], + [ + "▁Rob", + "erts" + ], + [ + "▁fundament", + "al" + ], + [ + "▁fund", + "amental" + ], + [ + "2", + "6" + ], + [ + "▁hypot", + "hes" + ], + [ + "▁hyp", + "othes" + ], + [ + "ja", + "n" + ], + [ + "j", + "an" + ], + [ + "▁Cont", + "rol" + ], + [ + "▁convent", + "ion" + ], + [ + "▁conv", + "ention" + ], + [ + "▁con", + "vention" + ], + [ + "▁swe", + "et" + ], + [ + "▁s", + "weet" + ], + [ + "▁Han", + "s" + ], + [ + "▁Ha", + "ns" + ], + [ + "▁H", + "ans" + ], + [ + "▁fa", + "sc" + ], + [ + "▁f", + "asc" + ], + [ + "▁rec", + "ur" + ], + [ + "▁6", + "1" + ], + [ + "▁191", + "2" + ], + [ + "▁19", + "12" + ], + [ + "ea", + "s" + ], + [ + "e", + "as" + ], + [ + "▁che", + "st" + ], + [ + "▁ch", + "est" + ], + [ + "▁c", + "hest" + ], + [ + "▁", + "chest" + ], + [ + "▁church", + "es" + ], + [ + "▁ch", + "urches" + ], + [ + "▁viol", + "ent" + ], + [ + "▁manufactur", + "ing" + ], + [ + "▁manufact", + "uring" + ], + [ + "▁risk", + "s" + ], + [ + "▁ris", + "ks" + ], + [ + "▁Hous", + "ton" + ], + [ + "▁Hou", + "ston" + ], + [ + "▁A", + "S" + ], + [ + "▁", + "AS" + ], + [ + "▁chor", + "us" + ], + [ + "▁cho", + "rus" + ], + [ + "▁ch", + "orus" + ], + [ + "ump", + "s" + ], + [ + "um", + "ps" + ], + [ + "▁car", + "rier" + ], + [ + "▁Lo", + "ok" + ], + [ + "▁L", + "ook" + ], + [ + "▁over", + "w" + ], + [ + "▁suff", + "er" + ], + [ + "▁Common", + "wealth" + ], + [ + "▁accompan", + "y" + ], + [ + "▁accomp", + "any" + ], + [ + "▁mar", + "t" + ], + [ + "▁m", + "art" + ], + [ + "▁Beat", + "les" + ], + [ + "osl", + "av" + ], + [ + "os", + "lav" + ], + [ + "▁rele", + "vant" + ], + [ + "▁re", + "levant" + ], + [ + "▁manufact", + "ur" + ], + [ + "▁Kell", + "y" + ], + [ + "▁Kel", + "ly" + ], + [ + "▁K", + "elly" + ], + [ + "▁market", + "s" + ], + [ + "▁mark", + "ets" + ], + [ + "▁resour", + "ce" + ], + [ + "▁res", + "ource" + ], + [ + "se", + "e" + ], + [ + "s", + "ee" + ], + [ + "▁em", + "pt" + ], + [ + "▁", + "empt" + ], + [ + "▁display", + "ed" + ], + [ + "▁displ", + "ayed" + ], + [ + "la", + "h" + ], + [ + "l", + "ah" + ], + [ + "ortunate", + "ly" + ], + [ + "ortun", + "ately" + ], + [ + "▁Ra", + "b" + ], + [ + "▁R", + "ab" + ], + [ + "▁partial", + "ly" + ], + [ + "▁part", + "ially" + ], + [ + "▁bat", + "s" + ], + [ + "▁ba", + "ts" + ], + [ + "▁b", + "ats" + ], + [ + "▁troub", + "le" + ], + [ + "▁trou", + "ble" + ], + [ + "▁tro", + "uble" + ], + [ + "▁dismiss", + "ed" + ], + [ + "▁rom", + "antic" + ], + [ + "▁US", + "S" + ], + [ + "▁exist", + "s" + ], + [ + "▁ex", + "ists" + ], + [ + "▁dialog", + "ue" + ], + [ + "▁dial", + "ogue" + ], + [ + "▁el", + "der" + ], + [ + "▁vi", + "c" + ], + [ + "▁v", + "ic" + ], + [ + "▁", + "vic" + ], + [ + "▁Mak", + "e" + ], + [ + "▁Ma", + "ke" + ], + [ + "▁M", + "ake" + ], + [ + "▁Hen", + "d" + ], + [ + "▁He", + "nd" + ], + [ + "▁H", + "end" + ], + [ + "▁engine", + "er" + ], + [ + "▁found", + "er" + ], + [ + "▁fo", + "under" + ], + [ + "▁Die", + "go" + ], + [ + "▁village", + "s" + ], + [ + "▁vill", + "ages" + ], + [ + "▁demand", + "s" + ], + [ + "▁dem", + "ands" + ], + [ + "▁14", + "0" + ], + [ + "▁1", + "40" + ], + [ + "▁put", + "ting" + ], + [ + "▁Fac", + "t" + ], + [ + "▁Fa", + "ct" + ], + [ + "▁F", + "act" + ], + [ + "▁Build", + "ing" + ], + [ + "▁Bu", + "ilding" + ], + [ + "▁rec", + "re" + ], + [ + "▁Que", + "st" + ], + [ + "▁Qu", + "est" + ], + [ + "▁minim", + "al" + ], + [ + "▁mini", + "mal" + ], + [ + "▁min", + "imal" + ], + [ + "▁sa", + "v" + ], + [ + "▁s", + "av" + ], + [ + "li", + "e" + ], + [ + "l", + "ie" + ], + [ + "▁Hor", + "n" + ], + [ + "▁H", + "orn" + ], + [ + "▁attack", + "ing" + ], + [ + "▁att", + "acking" + ], + [ + "▁ski", + "ll" + ], + [ + "▁sk", + "ill" + ], + [ + "▁s", + "kill" + ], + [ + "as", + "p" + ], + [ + "a", + "sp" + ], + [ + "ma", + "d" + ], + [ + "m", + "ad" + ], + [ + "ri", + "n" + ], + [ + "r", + "in" + ], + [ + "▁territ", + "ories" + ], + [ + "▁co", + "in" + ], + [ + "▁c", + "oin" + ], + [ + "▁", + "coin" + ], + [ + "▁Byzant", + "ine" + ], + [ + "▁Byz", + "antine" + ], + [ + "▁consequence", + "s" + ], + [ + "▁consequ", + "ences" + ], + [ + "▁Sm", + "all" + ], + [ + "de", + "d" + ], + [ + "d", + "ed" + ], + [ + "▁wicket", + "s" + ], + [ + "▁wick", + "ets" + ], + [ + "▁artif", + "icial" + ], + [ + "▁art", + "ificial" + ], + [ + "▁Ar", + "senal" + ], + [ + "esp", + "e" + ], + [ + "es", + "pe" + ], + [ + "e", + "spe" + ], + [ + "▁So", + "n" + ], + [ + "▁S", + "on" + ], + [ + "ik", + "s" + ], + [ + "i", + "ks" + ], + [ + "▁Tru", + "st" + ], + [ + "▁Tr", + "ust" + ], + [ + "▁T", + "rust" + ], + [ + "▁extra", + "ct" + ], + [ + "▁extr", + "act" + ], + [ + "▁ext", + "ract" + ], + [ + "ru", + "s" + ], + [ + "r", + "us" + ], + [ + "v", + "y" + ], + [ + "ro", + "it" + ], + [ + "r", + "oit" + ], + [ + "▁Tra", + "d" + ], + [ + "▁Tr", + "ad" + ], + [ + "▁T", + "rad" + ], + [ + "▁li", + "v" + ], + [ + "▁l", + "iv" + ], + [ + "▁pi", + "p" + ], + [ + "▁p", + "ip" + ], + [ + "▁Ben", + "j" + ], + [ + "2", + "3" + ], + [ + "▁cruc", + "ial" + ], + [ + "▁cru", + "cial" + ], + [ + "ow", + "der" + ], + [ + "▁effic", + "iency" + ], + [ + "▁eff", + "iciency" + ], + [ + "▁e", + "fficiency" + ], + [ + "▁Lat", + "e" + ], + [ + "▁La", + "te" + ], + [ + "▁L", + "ate" + ], + [ + "en", + "h" + ], + [ + "▁ra", + "y" + ], + [ + "▁r", + "ay" + ], + [ + "▁", + "ray" + ], + [ + "▁Des", + "ign" + ], + [ + "▁cover", + "age" + ], + [ + "▁co", + "verage" + ], + [ + "▁Hind", + "u" + ], + [ + "▁H", + "indu" + ], + [ + "▁slave", + "s" + ], + [ + "▁sl", + "aves" + ], + [ + "▁on", + "going" + ], + [ + "▁192", + "7" + ], + [ + "▁19", + "27" + ], + [ + "▁print", + "ed" + ], + [ + "▁pr", + "inted" + ], + [ + "ital", + "s" + ], + [ + "ita", + "ls" + ], + [ + "it", + "als" + ], + [ + "oni", + "es" + ], + [ + "on", + "ies" + ], + [ + "▁vic", + "e" + ], + [ + "▁vi", + "ce" + ], + [ + "▁v", + "ice" + ], + [ + "ear", + "ing" + ], + [ + "ea", + "ring" + ], + [ + "e", + "aring" + ], + [ + "▁store", + "s" + ], + [ + "▁st", + "ores" + ], + [ + "▁Se", + "t" + ], + [ + "▁S", + "et" + ], + [ + "▁reyal", + "ize" + ], + [ + "ter", + "y" + ], + [ + "te", + "ry" + ], + [ + "t", + "ery" + ], + [ + "▁improve", + "ment" + ], + [ + "▁improv", + "ement" + ], + [ + "▁impro", + "vement" + ], + [ + "▁5", + "." + ], + [ + "▁", + "5." + ], + [ + "▁Park", + "er" + ], + [ + "▁Par", + "ker" + ], + [ + "▁Gard", + "en" + ], + [ + "▁Gar", + "den" + ], + [ + "▁G", + "arden" + ], + [ + "F", + "C" + ], + [ + "▁su", + "icide" + ], + [ + "▁te", + "l" + ], + [ + "▁t", + "el" + ], + [ + "▁", + "tel" + ], + [ + "ounce", + "d" + ], + [ + "oun", + "ced" + ], + [ + "▁cloth", + "ing" + ], + [ + "▁clot", + "hing" + ], + [ + "▁clo", + "thing" + ], + [ + "▁cl", + "othing" + ], + [ + "oe", + "n" + ], + [ + "o", + "en" + ], + [ + "▁sent", + "ence" + ], + [ + "▁preserve", + "d" + ], + [ + "▁pres", + "erved" + ], + [ + "▁gene", + "s" + ], + [ + "▁gen", + "es" + ], + [ + "▁ge", + "nes" + ], + [ + "▁g", + "enes" + ], + [ + "▁drama", + "tic" + ], + [ + "▁dram", + "atic" + ], + [ + "▁dra", + "matic" + ], + [ + "▁pick", + "ed" + ], + [ + "▁p", + "icked" + ], + [ + "▁prof", + "it" + ], + [ + "▁pro", + "fit" + ], + [ + "▁", + "profit" + ], + [ + "▁former", + "ly" + ], + [ + "▁Du", + "r" + ], + [ + "▁D", + "ur" + ], + [ + "▁list", + "s" + ], + [ + "▁li", + "sts" + ], + [ + "▁l", + "ists" + ], + [ + "ock", + "ing" + ], + [ + "oc", + "king" + ], + [ + "▁die", + "s" + ], + [ + "▁di", + "es" + ], + [ + "▁d", + "ies" + ], + [ + "eo", + "r" + ], + [ + "e", + "or" + ], + [ + "atter", + "ed" + ], + [ + "att", + "ered" + ], + [ + "at", + "tered" + ], + [ + "▁mini", + "ng" + ], + [ + "▁min", + "ing" + ], + [ + "▁mi", + "ning" + ], + [ + "▁m", + "ining" + ], + [ + "▁Mur", + "ray" + ], + [ + ")", + ";" + ], + [ + "▁evolve", + "d" + ], + [ + "▁ev", + "olved" + ], + [ + "ince", + "s" + ], + [ + "inc", + "es" + ], + [ + "in", + "ces" + ], + [ + "▁comm", + "emor" + ], + [ + "our", + "ce" + ], + [ + "nam", + "e" + ], + [ + "na", + "me" + ], + [ + "n", + "ame" + ], + [ + "▁193", + "2" + ], + [ + "▁19", + "32" + ], + [ + "imo", + "re" + ], + [ + "im", + "ore" + ], + [ + "i", + "more" + ], + [ + "▁Pal", + "ace" + ], + [ + "▁anx", + "iety" + ], + [ + "fi", + "t" + ], + [ + "f", + "it" + ], + [ + "ra", + "v" + ], + [ + "r", + "av" + ], + [ + "▁domin", + "ant" + ], + [ + "▁M", + "S" + ], + [ + "▁", + "MS" + ], + [ + "▁synd", + "rome" + ], + [ + "▁ga", + "y" + ], + [ + "▁g", + "ay" + ], + [ + "▁interp", + "re" + ], + [ + "▁inter", + "pre" + ], + [ + "▁after", + "noon" + ], + [ + "▁disorder", + "s" + ], + [ + "▁dis", + "orders" + ], + [ + "obil", + "e" + ], + [ + "obi", + "le" + ], + [ + "ob", + "ile" + ], + [ + "▁for", + "g" + ], + [ + "▁f", + "org" + ], + [ + "ourag", + "e" + ], + [ + "oura", + "ge" + ], + [ + "our", + "age" + ], + [ + "ou", + "rage" + ], + [ + "▁neigh", + "b" + ], + [ + "art", + "h" + ], + [ + "ar", + "th" + ], + [ + "b", + "b" + ], + [ + "▁191", + "1" + ], + [ + "▁19", + "11" + ], + [ + "▁Prem", + "ier" + ], + [ + "▁a", + "qu" + ], + [ + "▁Mes", + "s" + ], + [ + "▁Me", + "ss" + ], + [ + "▁M", + "ess" + ], + [ + "▁the", + "rm" + ], + [ + "▁th", + "erm" + ], + [ + "aire", + "d" + ], + [ + "air", + "ed" + ], + [ + "ai", + "red" + ], + [ + "a", + "ired" + ], + [ + "▁bo", + "il" + ], + [ + "▁pan", + "el" + ], + [ + "▁pa", + "nel" + ], + [ + "▁Marshal", + "l" + ], + [ + "▁Marsh", + "all" + ], + [ + "▁Mars", + "hall" + ], + [ + "▁192", + "6" + ], + [ + "▁19", + "26" + ], + [ + "▁consider", + "ing" + ], + [ + "▁consid", + "ering" + ], + [ + "▁Cub", + "a" + ], + [ + "▁Cu", + "ba" + ], + [ + "▁C", + "uba" + ], + [ + "▁pac", + "e" + ], + [ + "▁pa", + "ce" + ], + [ + "▁p", + "ace" + ], + [ + "▁Ann", + "a" + ], + [ + "▁An", + "na" + ], + [ + "▁bomb", + "ard" + ], + [ + "▁bom", + "bard" + ], + [ + "▁appro", + "val" + ], + [ + "▁sum", + "m" + ], + [ + "▁su", + "mm" + ], + [ + "▁s", + "umm" + ], + [ + "▁encoun", + "ter" + ], + [ + "▁encounter", + "ed" + ], + [ + "▁encoun", + "tered" + ], + [ + "▁Single", + "s" + ], + [ + "▁Sing", + "les" + ], + [ + "ons", + "in" + ], + [ + "▁Swed", + "ish" + ], + [ + "▁stri", + "p" + ], + [ + "▁str", + "ip" + ], + [ + "▁st", + "rip" + ], + [ + "▁W", + "y" + ], + [ + "▁tribe", + "s" + ], + [ + "▁trib", + "es" + ], + [ + "▁tri", + "bes" + ], + [ + "▁t", + "ribes" + ], + [ + "▁release", + "s" + ], + [ + "▁rele", + "ases" + ], + [ + "▁Adv", + "ent" + ], + [ + "▁Ad", + "vent" + ], + [ + "▁ta", + "g" + ], + [ + "▁t", + "ag" + ], + [ + "ove", + "n" + ], + [ + "ov", + "en" + ], + [ + "o", + "ven" + ], + [ + "▁P", + "sych" + ], + [ + "▁collaps", + "e" + ], + [ + "▁coll", + "apse" + ], + [ + "▁Are", + "a" + ], + [ + "▁Ar", + "ea" + ], + [ + "▁A", + "rea" + ], + [ + "▁diagn", + "osis" + ], + [ + "▁inter", + "vention" + ], + [ + "ò", + "m" + ], + [ + "rat", + "or" + ], + [ + "ra", + "tor" + ], + [ + "r", + "ator" + ], + [ + "▁co", + "gn" + ], + [ + "▁c", + "ogn" + ], + [ + "▁battleship", + "s" + ], + [ + "▁battles", + "hips" + ], + [ + "▁adj", + "acent" + ], + [ + "▁Dat", + "a" + ], + [ + "▁Da", + "ta" + ], + [ + "▁D", + "ata" + ], + [ + "▁qui", + "et" + ], + [ + "▁qu", + "iet" + ], + [ + "▁announ", + "ce" + ], + [ + "▁ann", + "ounce" + ], + [ + "▁not", + "ably" + ], + [ + "ac", + "le" + ], + [ + "a", + "cle" + ], + [ + "▁colon", + "ies" + ], + [ + "▁col", + "onies" + ], + [ + "▁Tak", + "e" + ], + [ + "▁Ta", + "ke" + ], + [ + "▁T", + "ake" + ], + [ + "▁Turk", + "ish" + ], + [ + "▁fort", + "h" + ], + [ + "▁for", + "th" + ], + [ + "▁f", + "orth" + ], + [ + "▁", + "forth" + ], + [ + "4", + "4" + ], + [ + "▁pa", + "p" + ], + [ + "▁p", + "ap" + ], + [ + "ibb", + "ean" + ], + [ + "▁Bus", + "iness" + ], + [ + "▁Ba", + "n" + ], + [ + "▁B", + "an" + ], + [ + "age", + "n" + ], + [ + "ag", + "en" + ], + [ + "a", + "gen" + ], + [ + "▁Pi", + "n" + ], + [ + "▁P", + "in" + ], + [ + "▁contin", + "u" + ], + [ + "▁Jes", + "s" + ], + [ + "▁Je", + "ss" + ], + [ + "▁J", + "ess" + ], + [ + "▁Sil", + "ver" + ], + [ + "▁mere", + "ly" + ], + [ + "▁mer", + "ely" + ], + [ + "ster", + "s" + ], + [ + "ste", + "rs" + ], + [ + "st", + "ers" + ], + [ + "s", + "ters" + ], + [ + "▁vert", + "ical" + ], + [ + "isc", + "onsin" + ], + [ + "▁Lo", + "n" + ], + [ + "▁L", + "on" + ], + [ + "otte", + "n" + ], + [ + "ott", + "en" + ], + [ + "ot", + "ten" + ], + [ + "▁dim", + "ens" + ], + [ + "▁d", + "imens" + ], + [ + "▁interact", + "ion" + ], + [ + "▁inter", + "action" + ], + [ + "▁inte", + "raction" + ], + [ + "e", + "u" + ], + [ + "▁course", + "s" + ], + [ + "▁cour", + "ses" + ], + [ + "▁Ol", + "iv" + ], + [ + "y", + "d" + ], + [ + "▁o", + "s" + ], + [ + "▁", + "os" + ], + [ + "▁Mari", + "o" + ], + [ + "▁Mar", + "io" + ], + [ + "▁Ma", + "rio" + ], + [ + "▁M", + "ario" + ], + [ + "is", + "d" + ], + [ + "▁fi", + "ring" + ], + [ + "▁f", + "iring" + ], + [ + "b", + "òl" + ], + [ + "-", + "8" + ], + [ + "▁Aust", + "ria" + ], + [ + "▁W", + "rest" + ], + [ + "▁travel", + "ed" + ], + [ + "▁trav", + "eled" + ], + [ + "▁appoint", + "ment" + ], + [ + "▁Fam", + "e" + ], + [ + "▁Fa", + "me" + ], + [ + "▁F", + "ame" + ], + [ + "▁pollut", + "ion" + ], + [ + "▁poll", + "ution" + ], + [ + "▁Fe", + "m" + ], + [ + "▁F", + "em" + ], + [ + "ffic", + "ient" + ], + [ + "ff", + "icient" + ], + [ + "rop", + "olitan" + ], + [ + "▁sp", + "an" + ], + [ + "▁s", + "pan" + ], + [ + "▁remov", + "al" + ], + [ + "▁rem", + "oval" + ], + [ + "aco", + "n" + ], + [ + "ac", + "on" + ], + [ + "a", + "con" + ], + [ + "▁surg", + "e" + ], + [ + "▁sur", + "ge" + ], + [ + "▁employ", + "ment" + ], + [ + "vert", + "y" + ], + [ + "ver", + "ty" + ], + [ + "▁W", + "isconsin" + ], + [ + "▁nin", + "th" + ], + [ + "▁n", + "inth" + ], + [ + "▁leg", + "end" + ], + [ + "▁ha", + "t" + ], + [ + "▁h", + "at" + ], + [ + "▁", + "hat" + ], + [ + "▁ve", + "l" + ], + [ + "▁v", + "el" + ], + [ + "▁", + "vel" + ], + [ + "▁Ira", + "n" + ], + [ + "▁Ir", + "an" + ], + [ + "▁I", + "ran" + ], + [ + "▁Ten", + "ness" + ], + [ + "ir", + "èl" + ], + [ + "▁rat", + "io" + ], + [ + "▁Clin", + "ton" + ], + [ + "▁Cl", + "inton" + ], + [ + "ark", + "ed" + ], + [ + "▁Egypt", + "ian" + ], + [ + "▁infl", + "amm" + ], + [ + "▁in", + "flamm" + ], + [ + "▁", + "inflamm" + ], + [ + "▁circ", + "le" + ], + [ + "▁cir", + "cle" + ], + [ + "▁te", + "kn" + ], + [ + "▁divers", + "ity" + ], + [ + "▁d", + "iversity" + ], + [ + "▁fact", + "s" + ], + [ + "▁fac", + "ts" + ], + [ + "▁f", + "acts" + ], + [ + "▁Car", + "ibbean" + ], + [ + "▁Hu", + "d" + ], + [ + "▁H", + "ud" + ], + [ + "▁submar", + "ine" + ], + [ + "▁subm", + "arine" + ], + [ + "▁sub", + "marine" + ], + [ + "▁transport", + "ation" + ], + [ + "▁rhy", + "thm" + ], + [ + "▁Hung", + "arian" + ], + [ + "▁under", + "ground" + ], + [ + "é", + "t" + ], + [ + "▁Ari", + "z" + ], + [ + "▁Ar", + "iz" + ], + [ + "▁A", + "riz" + ], + [ + "▁class", + "room" + ], + [ + "▁specimen", + "s" + ], + [ + "▁spec", + "imens" + ], + [ + "▁man", + "uscript" + ], + [ + "▁comp", + "ens" + ], + [ + "▁deb", + "t" + ], + [ + "awa", + "y" + ], + [ + "aw", + "ay" + ], + [ + "a", + "way" + ], + [ + "▁save", + "d" + ], + [ + "▁sav", + "ed" + ], + [ + "▁sa", + "ved" + ], + [ + "▁s", + "aved" + ], + [ + "▁fight", + "er" + ], + [ + "▁f", + "ighter" + ], + [ + "▁o", + "u" + ], + [ + "▁", + "ou" + ], + [ + "▁retire", + "ment" + ], + [ + "▁Bu", + "ck" + ], + [ + "▁B", + "uck" + ], + [ + "▁Law", + "rence" + ], + [ + "espe", + "are" + ], + [ + "▁Conn", + "ect" + ], + [ + "▁C", + "onnect" + ], + [ + "ann", + "y" + ], + [ + "an", + "ny" + ], + [ + "uto", + "r" + ], + [ + "ut", + "or" + ], + [ + "u", + "tor" + ], + [ + "▁lo", + "an" + ], + [ + "▁l", + "oan" + ], + [ + "▁schol", + "ar" + ], + [ + "▁sch", + "olar" + ], + [ + "▁success", + "or" + ], + [ + "▁infection", + "s" + ], + [ + "▁infect", + "ions" + ], + [ + "n", + "t" + ], + [ + "▁ext", + "end" + ], + [ + "▁po", + "verty" + ], + [ + "O", + "C" + ], + [ + "▁aff", + "ord" + ], + [ + "▁af", + "ford" + ], + [ + "▁vulner", + "able" + ], + [ + "ei", + "gn" + ], + [ + "e", + "ign" + ], + [ + "▁Croatia", + "n" + ], + [ + "▁Croat", + "ian" + ], + [ + "▁A", + "N" + ], + [ + "▁", + "AN" + ], + [ + "▁fac", + "ilit" + ], + [ + "▁App", + "le" + ], + [ + "▁Ap", + "ple" + ], + [ + "▁program", + "ming" + ], + [ + "▁fa", + "b" + ], + [ + "▁f", + "ab" + ], + [ + "▁p", + "ush" + ], + [ + "▁song", + "writ" + ], + [ + "▁Exp", + "l" + ], + [ + "▁Ex", + "pl" + ], + [ + "▁Naz", + "i" + ], + [ + "▁Na", + "zi" + ], + [ + "▁N", + "azi" + ], + [ + "▁rang", + "ing" + ], + [ + "▁ran", + "ging" + ], + [ + "orio", + "us" + ], + [ + "ori", + "ous" + ], + [ + "or", + "ious" + ], + [ + "▁du", + "st" + ], + [ + "▁d", + "ust" + ], + [ + "▁ec", + "osystem" + ], + [ + "▁reflect", + "ed" + ], + [ + "▁ref", + "lected" + ], + [ + "▁17", + "0" + ], + [ + "▁1", + "70" + ], + [ + "▁Mana", + "gement" + ], + [ + "▁Man", + "agement" + ], + [ + "▁estimate", + "s" + ], + [ + "▁estim", + "ates" + ], + [ + "▁conf", + "idence" + ], + [ + "▁O", + "ak" + ], + [ + "▁p", + "ump" + ], + [ + "▁rest", + "oration" + ], + [ + "▁192", + "1" + ], + [ + "▁19", + "21" + ], + [ + "▁a", + "u" + ], + [ + "▁", + "au" + ], + [ + "▁conv", + "ection" + ], + [ + "▁Christophe", + "r" + ], + [ + "▁Christ", + "opher" + ], + [ + "▁blo", + "g" + ], + [ + "▁bl", + "og" + ], + [ + "▁b", + "log" + ], + [ + "▁formal", + "ly" + ], + [ + "▁form", + "ally" + ], + [ + "▁can", + "al" + ], + [ + "▁ca", + "nal" + ], + [ + "▁", + "canal" + ], + [ + "▁Tenness", + "ee" + ], + [ + "iam", + "i" + ], + [ + "ia", + "mi" + ], + [ + "i", + "ami" + ], + [ + "▁main", + "stream" + ], + [ + "▁Sport", + "s" + ], + [ + "▁Sp", + "orts" + ], + [ + "▁S", + "ports" + ], + [ + "▁Be", + "d" + ], + [ + "▁B", + "ed" + ], + [ + "arat", + "ion" + ], + [ + "ar", + "ation" + ], + [ + "a", + "ration" + ], + [ + "▁journal", + "ist" + ], + [ + "haus", + "t" + ], + [ + "ha", + "ust" + ], + [ + "▁space", + "s" + ], + [ + "▁sp", + "aces" + ], + [ + "▁wait", + "ing" + ], + [ + "▁wa", + "iting" + ], + [ + "▁novel", + "s" + ], + [ + "▁nov", + "els" + ], + [ + "force", + "d" + ], + [ + "for", + "ced" + ], + [ + "▁wide", + "r" + ], + [ + "▁wid", + "er" + ], + [ + "▁w", + "ider" + ], + [ + "▁rebel", + "l" + ], + [ + "▁reb", + "ell" + ], + [ + "▁re", + "bell" + ], + [ + "idel", + "ines" + ], + [ + "ide", + "lines" + ], + [ + "▁Commun", + "ity" + ], + [ + "▁owners", + "hip" + ], + [ + "▁owner", + "ship" + ], + [ + "▁own", + "ership" + ], + [ + "▁register", + "ed" + ], + [ + "▁regist", + "ered" + ], + [ + "▁reg", + "istered" + ], + [ + "▁bridge", + "s" + ], + [ + "▁br", + "idges" + ], + [ + "▁al", + "ive" + ], + [ + "▁mechan", + "ical" + ], + [ + "name", + "s" + ], + [ + "nam", + "es" + ], + [ + "na", + "mes" + ], + [ + "n", + "ames" + ], + [ + "▁Col", + "d" + ], + [ + "▁Co", + "ld" + ], + [ + "▁C", + "old" + ], + [ + "ho", + "l" + ], + [ + "h", + "ol" + ], + [ + "▁late", + "st" + ], + [ + "▁lat", + "est" + ], + [ + "▁av", + "èk" + ], + [ + "▁en", + "zy" + ], + [ + "▁Sto", + "ck" + ], + [ + "▁St", + "ock" + ], + [ + "▁Har", + "v" + ], + [ + "▁Fer", + "n" + ], + [ + "▁F", + "ern" + ], + [ + "▁or", + "al" + ], + [ + "▁o", + "ral" + ], + [ + "▁", + "oral" + ], + [ + "hes", + "s" + ], + [ + "he", + "ss" + ], + [ + "h", + "ess" + ], + [ + "▁market", + "ing" + ], + [ + "▁contribution", + "s" + ], + [ + "▁contrib", + "utions" + ], + [ + "▁wa", + "it" + ], + [ + "▁Cat", + "eg" + ], + [ + "▁C", + "ateg" + ], + [ + "▁Rep", + "ort" + ], + [ + "▁Re", + "port" + ], + [ + "▁del", + "iber" + ], + [ + "imet", + "er" + ], + [ + "ime", + "ter" + ], + [ + "im", + "eter" + ], + [ + "▁Frank", + "lin" + ], + [ + "▁premier", + "e" + ], + [ + "▁prem", + "iere" + ], + [ + "▁Command", + "er" + ], + [ + "▁Comm", + "ander" + ], + [ + "▁Balt", + "imore" + ], + [ + "▁v", + "s" + ], + [ + "▁Even", + "t" + ], + [ + "▁Eve", + "nt" + ], + [ + "▁Ev", + "ent" + ], + [ + "▁E", + "vent" + ], + [ + "z", + "z" + ], + [ + "▁M", + "P" + ], + [ + "▁", + "MP" + ], + [ + "▁le", + "af" + ], + [ + "▁", + "leaf" + ], + [ + "▁win", + "s" + ], + [ + "▁w", + "ins" + ], + [ + "rupt", + "ed" + ], + [ + "rup", + "ted" + ], + [ + "ame", + "work" + ], + [ + "am", + "ework" + ], + [ + "▁193", + "1" + ], + [ + "▁19", + "31" + ], + [ + "▁super", + "v" + ], + [ + "▁sup", + "erv" + ], + [ + "▁Exp", + "ress" + ], + [ + "▁Ex", + "press" + ], + [ + "▁impr", + "ison" + ], + [ + "▁imp", + "rison" + ], + [ + "▁continu", + "ous" + ], + [ + "▁contin", + "uous" + ], + [ + "▁connection", + "s" + ], + [ + "▁connect", + "ions" + ], + [ + "▁ass", + "um" + ], + [ + "▁Alf", + "red" + ], + [ + "▁Queen", + "s" + ], + [ + "▁Que", + "ens" + ], + [ + "and", + "o" + ], + [ + "an", + "do" + ], + [ + "▁rid", + "ge" + ], + [ + "▁r", + "idge" + ], + [ + "▁", + "ridge" + ], + [ + "▁study", + "ing" + ], + [ + "▁stud", + "ying" + ], + [ + "▁Loc", + "k" + ], + [ + "▁Lo", + "ck" + ], + [ + "▁L", + "ock" + ], + [ + "▁chair", + "man" + ], + [ + "▁Mag", + "n" + ], + [ + "▁Ma", + "gn" + ], + [ + "▁M", + "agn" + ], + [ + "▁coll", + "aps" + ], + [ + "▁Typ", + "e" + ], + [ + "▁Ty", + "pe" + ], + [ + "▁T", + "ype" + ], + [ + "▁radi", + "cal" + ], + [ + "▁rad", + "ical" + ], + [ + "▁prose", + "c" + ], + [ + "▁pros", + "ec" + ], + [ + "▁pro", + "sec" + ], + [ + "af", + "t" + ], + [ + "a", + "ft" + ], + [ + "er", + "b" + ], + [ + "▁192", + "9" + ], + [ + "▁19", + "29" + ], + [ + "▁maintain", + "ing" + ], + [ + "▁main", + "taining" + ], + [ + "▁Ni", + "el" + ], + [ + "▁N", + "iel" + ], + [ + "▁err", + "or" + ], + [ + "▁er", + "ror" + ], + [ + "▁Writ", + "ing" + ], + [ + "▁ask", + "s" + ], + [ + "▁as", + "ks" + ], + [ + "▁", + "asks" + ], + [ + "▁dif", + "f" + ], + [ + "▁di", + "ff" + ], + [ + "▁d", + "iff" + ], + [ + "▁Ye", + "t" + ], + [ + "▁Y", + "et" + ], + [ + "▁hand", + "ed" + ], + [ + "▁h", + "anded" + ], + [ + "▁Benj", + "amin" + ], + [ + "▁moment", + "s" + ], + [ + "▁mom", + "ents" + ], + [ + "▁mo", + "ments" + ], + [ + "▁90", + "0" + ], + [ + "▁9", + "00" + ], + [ + "▁flu", + "id" + ], + [ + "▁Ok", + "lah" + ], + [ + "▁hor", + "m" + ], + [ + "▁ho", + "rm" + ], + [ + "▁h", + "orm" + ], + [ + "▁Dig", + "ital" + ], + [ + "▁ex", + "clud" + ], + [ + "att", + "y" + ], + [ + "at", + "ty" + ], + [ + "▁el", + "abor" + ], + [ + "▁rece", + "pt" + ], + [ + "▁rec", + "ept" + ], + [ + "▁re", + "cept" + ], + [ + "▁occup", + "ation" + ], + [ + "▁lo", + "b" + ], + [ + "▁l", + "ob" + ], + [ + "▁cruise", + "r" + ], + [ + "▁cru", + "iser" + ], + [ + "vel", + "t" + ], + [ + "v", + "elt" + ], + [ + "▁unsuccess", + "ful" + ], + [ + "▁conc", + "ur" + ], + [ + "▁fore", + "cast" + ], + [ + "▁candidate", + "s" + ], + [ + "▁candid", + "ates" + ], + [ + "▁201", + "9" + ], + [ + "▁20", + "19" + ], + [ + "ow", + "ed" + ], + [ + "▁po", + "ol" + ], + [ + "▁p", + "ool" + ], + [ + "▁", + "pool" + ], + [ + "▁div", + "or" + ], + [ + "▁di", + "vor" + ], + [ + "id", + "d" + ], + [ + "i", + "dd" + ], + [ + "▁Jas", + "on" + ], + [ + "▁Ja", + "son" + ], + [ + "▁J", + "ason" + ], + [ + "▁Ri", + "o" + ], + [ + "▁R", + "io" + ], + [ + "▁Bure", + "au" + ], + [ + "▁B", + "ureau" + ], + [ + "enc", + "ing" + ], + [ + "en", + "cing" + ], + [ + "▁imm", + "un" + ], + [ + "▁im", + "mun" + ], + [ + "▁planet", + "s" + ], + [ + "▁plane", + "ts" + ], + [ + "▁plan", + "ets" + ], + [ + "▁submit", + "ted" + ], + [ + "▁subm", + "itted" + ], + [ + "▁sub", + "mitted" + ], + [ + "▁ta", + "ck" + ], + [ + "▁t", + "ack" + ], + [ + "▁189", + "0" + ], + [ + "▁18", + "90" + ], + [ + "▁Ariz", + "ona" + ], + [ + "▁Y", + "e" + ], + [ + "we", + "et" + ], + [ + "ida", + "l" + ], + [ + "id", + "al" + ], + [ + "i", + "dal" + ], + [ + "▁storm", + "s" + ], + [ + "▁st", + "orms" + ], + [ + "▁illeg", + "al" + ], + [ + "▁ille", + "gal" + ], + [ + "▁reaction", + "s" + ], + [ + "▁react", + "ions" + ], + [ + "▁re", + "actions" + ], + [ + "▁Ne", + "ar" + ], + [ + "▁N", + "ear" + ], + [ + "▁G", + "a" + ], + [ + "▁E", + "ff" + ], + [ + "fic", + "ial" + ], + [ + "fi", + "cial" + ], + [ + "f", + "icial" + ], + [ + "▁strong", + "er" + ], + [ + "▁met", + "ab" + ], + [ + "▁tru", + "ly" + ], + [ + "▁household", + "s" + ], + [ + "▁sit", + "ting" + ], + [ + "▁s", + "itting" + ], + [ + "qu", + "ir" + ], + [ + "▁treat", + "y" + ], + [ + "6", + "7" + ], + [ + "▁man", + "if" + ], + [ + "▁Mi", + "ami" + ], + [ + "▁M", + "iami" + ], + [ + "▁Et", + "h" + ], + [ + "▁E", + "th" + ], + [ + "▁Ne", + "xt" + ], + [ + "▁N", + "ext" + ], + [ + "T", + "S" + ], + [ + "▁prim", + "e" + ], + [ + "▁pri", + "me" + ], + [ + "▁pr", + "ime" + ], + [ + "L", + "A" + ], + [ + "▁interpret", + "ation" + ], + [ + "▁Can", + "al" + ], + [ + "▁Ca", + "nal" + ], + [ + "▁organism", + "s" + ], + [ + "▁organ", + "isms" + ], + [ + "▁", + "organisms" + ], + [ + "▁e", + "s" + ], + [ + "▁", + "es" + ], + [ + "ite", + "ly" + ], + [ + "it", + "ely" + ], + [ + "▁Pers", + "on" + ], + [ + "▁Per", + "son" + ], + [ + "▁P", + "erson" + ], + [ + "▁the", + "at" + ], + [ + "onym", + "ous" + ], + [ + "ri", + "p" + ], + [ + "r", + "ip" + ], + [ + "▁text", + "s" + ], + [ + "▁tex", + "ts" + ], + [ + "▁t", + "exts" + ], + [ + "▁fa", + "ult" + ], + [ + "▁f", + "ault" + ], + [ + "▁to", + "n" + ], + [ + "▁t", + "on" + ], + [ + "▁", + "ton" + ], + [ + "▁Treat", + "y" + ], + [ + "▁fur", + "n" + ], + [ + "▁f", + "urn" + ], + [ + "▁en", + "pòt" + ], + [ + "ob", + "i" + ], + [ + "o", + "bi" + ], + [ + "▁He", + "m" + ], + [ + "▁H", + "em" + ], + [ + "▁Oklah", + "oma" + ], + [ + "▁Telev", + "ision" + ], + [ + "▁batt", + "ing" + ], + [ + "▁bat", + "ting" + ], + [ + "▁b", + "atting" + ], + [ + "▁Stew", + "art" + ], + [ + "▁negoti", + "ations" + ], + [ + "▁Vic", + "e" + ], + [ + "▁Vi", + "ce" + ], + [ + "▁V", + "ice" + ], + [ + "▁mar", + "ch" + ], + [ + "▁m", + "arch" + ], + [ + "▁engage", + "ment" + ], + [ + "▁eng", + "agement" + ], + [ + "as", + "m" + ], + [ + "a", + "sm" + ], + [ + "▁Plan", + "t" + ], + [ + "▁Pl", + "ant" + ], + [ + "▁prop", + "ag" + ], + [ + "▁seat", + "s" + ], + [ + "▁sea", + "ts" + ], + [ + "▁se", + "ats" + ], + [ + "▁love", + "d" + ], + [ + "▁lov", + "ed" + ], + [ + "▁lo", + "ved" + ], + [ + "▁l", + "oved" + ], + [ + "ow", + "ing" + ], + [ + "o", + "wing" + ], + [ + "▁port", + "ra" + ], + [ + "▁por", + "tra" + ], + [ + "▁to", + "ll" + ], + [ + "▁t", + "oll" + ], + [ + "▁Cham", + "ber" + ], + [ + "▁Cha", + "mber" + ], + [ + "▁Ch", + "amber" + ], + [ + "▁produce", + "s" + ], + [ + "▁produ", + "ces" + ], + [ + "▁compet", + "e" + ], + [ + "▁comp", + "ete" + ], + [ + "▁anim", + "ation" + ], + [ + "▁an", + "imation" + ], + [ + "▁Shak", + "espeare" + ], + [ + "osp", + "h" + ], + [ + "os", + "ph" + ], + [ + "▁Sp", + "irit" + ], + [ + "▁defend", + "ed" + ], + [ + "▁def", + "ended" + ], + [ + "room", + "s" + ], + [ + "ro", + "oms" + ], + [ + "▁hand", + "le" + ], + [ + "▁overw", + "hel" + ], + [ + "▁mechan", + "ism" + ], + [ + "▁star", + "red" + ], + [ + "▁Ang", + "lo" + ], + [ + "▁Sat", + "ur" + ], + [ + "▁Det", + "roit" + ], + [ + "▁para", + "m" + ], + [ + "▁par", + "am" + ], + [ + "▁pa", + "ram" + ], + [ + "▁Wind", + "ows" + ], + [ + "▁8", + "3" + ], + [ + "2", + "8" + ], + [ + "oc", + "a" + ], + [ + "o", + "ca" + ], + [ + "ra", + "c" + ], + [ + "r", + "ac" + ], + [ + "▁natural", + "ly" + ], + [ + "▁nat", + "urally" + ], + [ + "▁opponent", + "s" + ], + [ + "▁opp", + "onents" + ], + [ + "▁Ru", + "b" + ], + [ + "▁R", + "ub" + ], + [ + "▁Nap", + "ole" + ], + [ + "▁Na", + "pole" + ], + [ + "▁fru", + "st" + ], + [ + "▁fr", + "ust" + ], + [ + "▁f", + "rust" + ], + [ + "▁store", + "d" + ], + [ + "▁st", + "ored" + ], + [ + "ico", + "p" + ], + [ + "ic", + "op" + ], + [ + "i", + "cop" + ], + [ + "▁thought", + "s" + ], + [ + "▁though", + "ts" + ], + [ + "▁th", + "oughts" + ], + [ + "▁Fac", + "e" + ], + [ + "▁Fa", + "ce" + ], + [ + "▁F", + "ace" + ], + [ + "▁Prince", + "ss" + ], + [ + "▁Princ", + "ess" + ], + [ + "▁Pr", + "incess" + ], + [ + "▁Lis", + "t" + ], + [ + "▁Li", + "st" + ], + [ + "▁L", + "ist" + ], + [ + "▁suggest", + "ing" + ], + [ + "▁h", + "idden" + ], + [ + "▁Freder", + "ick" + ], + [ + "▁possess", + "ion" + ], + [ + "▁poss", + "ession" + ], + [ + "ar", + "f" + ], + [ + "isy", + "on" + ], + [ + "is", + "yon" + ], + [ + "▁Ham", + "p" + ], + [ + "▁Ha", + "mp" + ], + [ + "▁H", + "amp" + ], + [ + "▁exc", + "av" + ], + [ + "▁Sk", + "y" + ], + [ + "▁S", + "ky" + ], + [ + "ose", + "velt" + ], + [ + "eral", + "s" + ], + [ + "era", + "ls" + ], + [ + "er", + "als" + ], + [ + "▁C", + "y" + ], + [ + "▁sens", + "itive" + ], + [ + "▁review", + "er" + ], + [ + "oga", + "n" + ], + [ + "og", + "an" + ], + [ + "o", + "gan" + ], + [ + "▁K", + "l" + ], + [ + "▁Ben", + "n" + ], + [ + "▁B", + "enn" + ], + [ + "na", + "l" + ], + [ + "n", + "al" + ], + [ + "▁slave", + "ry" + ], + [ + "▁sl", + "avery" + ], + [ + "▁kind", + "s" + ], + [ + "▁kin", + "ds" + ], + [ + "ia", + "h" + ], + [ + "i", + "ah" + ], + [ + "une", + "s" + ], + [ + "un", + "es" + ], + [ + "u", + "nes" + ], + [ + "▁forc", + "ing" + ], + [ + "▁for", + "cing" + ], + [ + "▁", + "forcing" + ], + [ + "▁Service", + "s" + ], + [ + "▁Serv", + "ices" + ], + [ + "▁reach", + "es" + ], + [ + "▁re", + "aches" + ], + [ + "▁Malay", + "s" + ], + [ + "▁Mal", + "ays" + ], + [ + "▁Mel", + "bourne" + ], + [ + "▁fle", + "w" + ], + [ + "▁fl", + "ew" + ], + [ + "▁f", + "lew" + ], + [ + "▁center", + "s" + ], + [ + "▁cent", + "ers" + ], + [ + "▁among", + "st" + ], + [ + "s", + "k" + ], + [ + "rag", + "e" + ], + [ + "ra", + "ge" + ], + [ + "r", + "age" + ], + [ + "▁driver", + "s" + ], + [ + "▁drive", + "rs" + ], + [ + "▁dr", + "ivers" + ], + [ + "▁sin", + "ema" + ], + [ + "▁s", + "inema" + ], + [ + "▁topic", + "s" + ], + [ + "▁top", + "ics" + ], + [ + "▁f", + "ulf" + ], + [ + "▁So", + "on" + ], + [ + "▁S", + "oon" + ], + [ + "vironment", + "s" + ], + [ + "viron", + "ments" + ], + [ + "▁feel", + "s" + ], + [ + "▁fee", + "ls" + ], + [ + "▁fe", + "els" + ], + [ + "▁s", + "iege" + ], + [ + "▁improv", + "ing" + ], + [ + "▁impro", + "ving" + ], + [ + "L", + "C" + ], + [ + "▁perceive", + "d" + ], + [ + "▁perce", + "ived" + ], + [ + "▁per", + "ceived" + ], + [ + "▁labor", + "atory" + ], + [ + "▁Evan", + "s" + ], + [ + "▁Eva", + "ns" + ], + [ + "▁Ev", + "ans" + ], + [ + "▁Kn", + "ight" + ], + [ + "▁K", + "night" + ], + [ + "▁no", + "m" + ], + [ + "▁n", + "om" + ], + [ + "▁Count", + "ry" + ], + [ + "▁Coun", + "try" + ], + [ + "▁Bec", + "k" + ], + [ + "▁Be", + "ck" + ], + [ + "▁B", + "eck" + ], + [ + "▁power", + "ed" + ], + [ + "▁pow", + "ered" + ], + [ + "▁", + "powered" + ], + [ + "▁Fun", + "d" + ], + [ + "▁Fu", + "nd" + ], + [ + "▁F", + "und" + ], + [ + "▁desc", + "end" + ], + [ + "▁192", + "2" + ], + [ + "▁19", + "22" + ], + [ + "▁Pak", + "istan" + ], + [ + "▁bat", + "h" + ], + [ + "▁ba", + "th" + ], + [ + "▁b", + "ath" + ], + [ + "▁", + "bath" + ], + [ + "▁sp", + "ir" + ], + [ + "▁s", + "pir" + ], + [ + "▁enpòt", + "an" + ], + [ + "▁nat", + "irèl" + ], + [ + "ast", + "s" + ], + [ + "as", + "ts" + ], + [ + "a", + "sts" + ], + [ + "ph", + "a" + ], + [ + "p", + "ha" + ], + [ + "rac", + "e" + ], + [ + "ra", + "ce" + ], + [ + "r", + "ace" + ], + [ + "▁Tow", + "er" + ], + [ + "▁To", + "wer" + ], + [ + "▁T", + "ower" + ], + [ + "▁Bul", + "gar" + ], + [ + "▁newspaper", + "s" + ], + [ + "▁newsp", + "apers" + ], + [ + "▁tub", + "e" + ], + [ + "▁tu", + "be" + ], + [ + "▁t", + "ube" + ], + [ + "▁Se", + "attle" + ], + [ + "▁Mc", + "D" + ], + [ + "▁192", + "8" + ], + [ + "▁19", + "28" + ], + [ + "▁network", + "s" + ], + [ + "▁net", + "works" + ], + [ + "ud", + "a" + ], + [ + "u", + "da" + ], + [ + "▁ad", + "equ" + ], + [ + "▁", + "adequ" + ], + [ + "▁gen", + "t" + ], + [ + "▁ge", + "nt" + ], + [ + "▁g", + "ent" + ], + [ + "▁", + "gent" + ], + [ + "▁design", + "er" + ], + [ + "2", + "7" + ], + [ + "▁Pro", + "p" + ], + [ + "▁Pr", + "op" + ], + [ + "▁P", + "rop" + ], + [ + "st", + "s" + ], + [ + "s", + "ts" + ], + [ + "▁F", + "I" + ], + [ + "▁sequence", + "s" + ], + [ + "▁sequ", + "ences" + ], + [ + "▁ag", + "encies" + ], + [ + "▁inh", + "ib" + ], + [ + "▁in", + "hib" + ], + [ + "▁Yu", + "g" + ], + [ + "▁Y", + "ug" + ], + [ + "▁Hol", + "l" + ], + [ + "▁Ho", + "ll" + ], + [ + "▁H", + "oll" + ], + [ + "▁cra", + "ck" + ], + [ + "▁cr", + "ack" + ], + [ + "▁c", + "rack" + ], + [ + "ension", + "s" + ], + [ + "ens", + "ions" + ], + [ + "ize", + "r" + ], + [ + "iz", + "er" + ], + [ + "i", + "zer" + ], + [ + "asa", + "nt" + ], + [ + "as", + "ant" + ], + [ + "▁Medic", + "ine" + ], + [ + "▁Med", + "icine" + ], + [ + "▁week", + "end" + ], + [ + "ore", + "t" + ], + [ + "or", + "et" + ], + [ + "o", + "ret" + ], + [ + "▁Croat", + "ia" + ], + [ + "▁Ro", + "osevelt" + ], + [ + "▁worsh", + "ip" + ], + [ + "▁wors", + "hip" + ], + [ + "▁wor", + "ship" + ], + [ + "▁w", + "orship" + ], + [ + "▁wors", + "e" + ], + [ + "▁wor", + "se" + ], + [ + "▁w", + "orse" + ], + [ + "▁there", + "after" + ], + [ + "atta", + "n" + ], + [ + "att", + "an" + ], + [ + "▁bl", + "ind" + ], + [ + "▁rock", + "s" + ], + [ + "▁r", + "ocks" + ], + [ + "▁P", + "a" + ], + [ + "▁", + "Pa" + ], + [ + "▁pred", + "omin" + ], + [ + "▁Go", + "n" + ], + [ + "▁G", + "on" + ], + [ + "▁branch", + "es" + ], + [ + "▁bran", + "ches" + ], + [ + "▁restrict", + "ed" + ], + [ + "▁restric", + "ted" + ], + [ + "iza", + "tè" + ], + [ + "iz", + "atè" + ], + [ + "▁survivor", + "s" + ], + [ + "▁surviv", + "ors" + ], + [ + "ife", + "r" + ], + [ + "if", + "er" + ], + [ + "i", + "fer" + ], + [ + "▁Pa", + "p" + ], + [ + "▁P", + "ap" + ], + [ + "▁million", + "s" + ], + [ + "▁mill", + "ions" + ], + [ + "▁ti", + "e" + ], + [ + "▁t", + "ie" + ], + [ + "▁Sy", + "n" + ], + [ + "▁S", + "yn" + ], + [ + "▁Com", + "b" + ], + [ + "▁Co", + "mb" + ], + [ + "▁C", + "omb" + ], + [ + "▁join", + "ing" + ], + [ + "▁jo", + "ining" + ], + [ + "▁affair", + "s" + ], + [ + "▁aff", + "airs" + ], + [ + "orm", + "s" + ], + [ + "or", + "ms" + ], + [ + "▁cop", + "per" + ], + [ + "▁co", + "pper" + ], + [ + "▁fem", + "in" + ], + [ + "▁fe", + "min" + ], + [ + "▁gar", + "rison" + ], + [ + "▁Administ", + "ration" + ], + [ + "▁Initial", + "ly" + ], + [ + "▁Initi", + "ally" + ], + [ + "▁Init", + "ially" + ], + [ + "▁predict", + "ed" + ], + [ + "▁pred", + "icted" + ], + [ + "▁Gra", + "m" + ], + [ + "▁Gr", + "am" + ], + [ + "▁G", + "ram" + ], + [ + "▁sa", + "d" + ], + [ + "▁s", + "ad" + ], + [ + "▁eliminate", + "d" + ], + [ + "▁elimin", + "ated" + ], + [ + "▁Rep", + "resent" + ], + [ + "▁Met", + "h" + ], + [ + "▁Me", + "th" + ], + [ + "▁M", + "eth" + ], + [ + "▁base", + "s" + ], + [ + "▁bas", + "es" + ], + [ + "▁ba", + "ses" + ], + [ + "▁b", + "ases" + ], + [ + "▁premiere", + "d" + ], + [ + "▁premier", + "ed" + ], + [ + "▁Charl", + "ie" + ], + [ + "▁Char", + "lie" + ], + [ + "▁des", + "ert" + ], + [ + "ang", + "le" + ], + [ + "▁Hi", + "nd" + ], + [ + "▁H", + "ind" + ], + [ + "▁poor", + "ly" + ], + [ + "▁present", + "ation" + ], + [ + "▁inhabit", + "ants" + ], + [ + "▁192", + "5" + ], + [ + "▁19", + "25" + ], + [ + "▁reported", + "ly" + ], + [ + "▁particip", + "ation" + ], + [ + "ar", + "o" + ], + [ + "a", + "ro" + ], + [ + "▁pol", + "ar" + ], + [ + "▁po", + "lar" + ], + [ + "▁p", + "olar" + ], + [ + "▁serious", + "ly" + ], + [ + "▁seri", + "ously" + ], + [ + "▁ser", + "iously" + ], + [ + "▁2", + "," + ], + [ + "▁", + "2," + ], + [ + "▁Sig", + "n" + ], + [ + "▁Si", + "gn" + ], + [ + "▁S", + "ign" + ], + [ + "▁imper", + "ial" + ], + [ + "▁im", + "perial" + ], + [ + "▁mat", + "ure" + ], + [ + "▁ma", + "ture" + ], + [ + "▁m", + "ature" + ], + [ + "▁Mon", + "d" + ], + [ + "▁Mo", + "nd" + ], + [ + "▁M", + "ond" + ], + [ + "▁impress", + "ed" + ], + [ + "▁impr", + "essed" + ], + [ + "▁imp", + "ressed" + ], + [ + "▁N", + "FL" + ], + [ + "▁Cam", + "er" + ], + [ + "▁Ca", + "mer" + ], + [ + "▁C", + "amer" + ], + [ + "▁em", + "peror" + ], + [ + "▁In", + "n" + ], + [ + "ci", + "ent" + ], + [ + "c", + "ient" + ], + [ + "▁conv", + "en" + ], + [ + "▁con", + "ven" + ], + [ + "▁Inform", + "ation" + ], + [ + "▁In", + "formation" + ], + [ + "▁Ra", + "w" + ], + [ + "▁R", + "aw" + ], + [ + "▁rad", + "ar" + ], + [ + "▁r", + "adar" + ], + [ + "se", + "ri" + ], + [ + "s", + "eri" + ], + [ + "▁operation", + "al" + ], + [ + "▁oper", + "ational" + ], + [ + "▁Hon", + "g" + ], + [ + "▁Ho", + "ng" + ], + [ + "▁H", + "ong" + ], + [ + "▁Gil", + "bert" + ], + [ + "▁relat", + "ion" + ], + [ + "▁rel", + "ation" + ], + [ + "▁re", + "lation" + ], + [ + "▁pregn", + "ancy" + ], + [ + "▁transm", + "ission" + ], + [ + "▁trans", + "mission" + ], + [ + "▁ind", + "u" + ], + [ + "▁in", + "du" + ], + [ + "▁", + "indu" + ], + [ + "ota", + "l" + ], + [ + "ot", + "al" + ], + [ + "o", + "tal" + ], + [ + "▁muscle", + "s" + ], + [ + "▁musc", + "les" + ], + [ + "▁mus", + "cles" + ], + [ + "▁burn", + "ing" + ], + [ + "▁bur", + "ning" + ], + [ + "▁ex", + "haust" + ], + [ + "▁Da", + "k" + ], + [ + "▁D", + "ak" + ], + [ + "▁ch", + "rom" + ], + [ + "▁experiment", + "al" + ], + [ + "▁exper", + "imental" + ], + [ + "▁fair", + "ly" + ], + [ + "▁An", + "im" + ], + [ + "▁cele", + "b" + ], + [ + "▁cel", + "eb" + ], + [ + "▁sm", + "art" + ], + [ + "▁sk", + "ull" + ], + [ + "▁emphas", + "is" + ], + [ + "▁ab", + "ol" + ], + [ + "▁Mot", + "her" + ], + [ + "▁Mo", + "ther" + ], + [ + "▁M", + "other" + ], + [ + "ub", + "b" + ], + [ + "u", + "bb" + ], + [ + "▁Mr", + "s" + ], + [ + "▁M", + "rs" + ], + [ + "▁alle", + "g" + ], + [ + "▁all", + "eg" + ], + [ + "▁al", + "leg" + ], + [ + "▁Sim", + "pson" + ], + [ + "▁resign", + "ed" + ], + [ + "▁res", + "igned" + ], + [ + "▁Ta", + "n" + ], + [ + "▁T", + "an" + ], + [ + "▁Lit", + "er" + ], + [ + "▁Li", + "ter" + ], + [ + "▁L", + "iter" + ], + [ + "▁know", + "s" + ], + [ + "▁kn", + "ows" + ], + [ + "▁situ", + "ated" + ], + [ + "▁sit", + "uated" + ], + [ + "▁occasion", + "s" + ], + [ + "▁occas", + "ions" + ], + [ + "la", + "in" + ], + [ + "l", + "ain" + ], + [ + "ull", + "ivan" + ], + [ + "▁Mu", + "n" + ], + [ + "▁M", + "un" + ], + [ + "▁lesson", + "s" + ], + [ + "▁less", + "ons" + ], + [ + "▁improvement", + "s" + ], + [ + "▁improve", + "ments" + ], + [ + "▁improv", + "ements" + ], + [ + "▁impro", + "vements" + ], + [ + "▁argue", + "s" + ], + [ + "▁argu", + "es" + ], + [ + "▁arg", + "ues" + ], + [ + "▁N", + "BC" + ], + [ + "▁bo", + "ost" + ], + [ + "▁public", + "ly" + ], + [ + "▁tast", + "e" + ], + [ + "▁ta", + "ste" + ], + [ + "▁t", + "aste" + ], + [ + "ic", + "o" + ], + [ + "i", + "co" + ], + [ + "▁reve", + "al" + ], + [ + "▁rev", + "eal" + ], + [ + "▁hol", + "e" + ], + [ + "▁ho", + "le" + ], + [ + "▁h", + "ole" + ], + [ + "▁", + "hole" + ], + [ + "▁(19", + "9" + ], + [ + "▁(1", + "99" + ], + [ + "▁ant", + "h" + ], + [ + "▁an", + "th" + ], + [ + "▁", + "anth" + ], + [ + "▁Categ", + "ory" + ], + [ + "▁customer", + "s" + ], + [ + "▁custom", + "ers" + ], + [ + "▁cust", + "omers" + ], + [ + "▁reven", + "ue" + ], + [ + "▁recogn", + "ize" + ], + [ + "▁pro", + "s" + ], + [ + "▁pr", + "os" + ], + [ + "▁p", + "ros" + ], + [ + "▁Crow", + "n" + ], + [ + "▁Cro", + "wn" + ], + [ + "▁Cr", + "own" + ], + [ + "▁C", + "rown" + ], + [ + "▁smok", + "e" + ], + [ + "▁sm", + "oke" + ], + [ + "▁regulation", + "s" + ], + [ + "▁reg", + "ulations" + ], + [ + "▁Philippine", + "s" + ], + [ + "▁Philipp", + "ines" + ], + [ + "▁cy", + "l" + ], + [ + "▁c", + "yl" + ], + [ + "▁F", + "riend" + ], + [ + "▁L", + "l" + ], + [ + "▁War", + "ner" + ], + [ + "▁environment", + "s" + ], + [ + "▁en", + "vironments" + ], + [ + "▁succ", + "eed" + ], + [ + "▁suc", + "ceed" + ], + [ + "mate", + "s" + ], + [ + "mat", + "es" + ], + [ + "ma", + "tes" + ], + [ + "m", + "ates" + ], + [ + "fat", + "her" + ], + [ + "fa", + "ther" + ], + [ + "f", + "ather" + ], + [ + "▁Australian", + "s" + ], + [ + "▁Australia", + "ns" + ], + [ + "▁Austral", + "ians" + ], + [ + "▁192", + "4" + ], + [ + "▁19", + "24" + ], + [ + "ze", + "d" + ], + [ + "z", + "ed" + ], + [ + "▁instruct", + "ion" + ], + [ + "▁instr", + "uction" + ], + [ + "▁inst", + "ruction" + ], + [ + "▁jud", + "g" + ], + [ + "iste", + "nt" + ], + [ + "ist", + "ent" + ], + [ + "▁pi", + "one" + ], + [ + "▁p", + "ione" + ], + [ + "▁ra", + "ising" + ], + [ + "▁molecule", + "s" + ], + [ + "▁molec", + "ules" + ], + [ + "ann", + "e" + ], + [ + "an", + "ne" + ], + [ + "roll", + "ed" + ], + [ + "rol", + "led" + ], + [ + "ro", + "lled" + ], + [ + "▁Some", + "rs" + ], + [ + "▁Som", + "ers" + ], + [ + "▁So", + "mers" + ], + [ + "▁S", + "omers" + ], + [ + "▁Yug", + "oslav" + ], + [ + "▁Belg", + "ium" + ], + [ + "▁beh", + "alf" + ], + [ + "▁map", + "s" + ], + [ + "▁ma", + "ps" + ], + [ + "▁m", + "aps" + ], + [ + "▁exc", + "eed" + ], + [ + "▁ex", + "ceed" + ], + [ + "▁disc", + "har" + ], + [ + "▁dis", + "char" + ], + [ + "▁dyn", + "asty" + ], + [ + "▁res", + "ign" + ], + [ + "▁Sec", + "urity" + ], + [ + "▁ret", + "ail" + ], + [ + "▁re", + "tail" + ], + [ + "▁foot", + "age" + ], + [ + "▁sl", + "ave" + ], + [ + "▁enh", + "ance" + ], + [ + "▁loc", + "omot" + ], + [ + "▁procedure", + "s" + ], + [ + "▁proced", + "ures" + ], + [ + "▁exhibit", + "ion" + ], + [ + "▁exhib", + "ition" + ], + [ + "▁ex", + "hibition" + ], + [ + "▁Ra", + "p" + ], + [ + "▁R", + "ap" + ], + [ + "▁phr", + "ase" + ], + [ + "▁categor", + "ies" + ], + [ + "▁categ", + "ories" + ], + [ + "▁unc", + "om" + ], + [ + "▁un", + "com" + ], + [ + "▁Fat", + "her" + ], + [ + "▁Fa", + "ther" + ], + [ + "▁F", + "ather" + ], + [ + "▁Mo", + "h" + ], + [ + "▁M", + "oh" + ], + [ + "▁mo", + "od" + ], + [ + "▁m", + "ood" + ], + [ + "▁Fr", + "ied" + ], + [ + "▁F", + "ried" + ], + [ + "▁Fa", + "l" + ], + [ + "▁F", + "al" + ], + [ + "▁Wol", + "f" + ], + [ + "▁W", + "olf" + ], + [ + "▁pl", + "ain" + ], + [ + "▁p", + "lain" + ], + [ + "gan", + "s" + ], + [ + "ga", + "ns" + ], + [ + "g", + "ans" + ], + [ + "ime", + "n" + ], + [ + "im", + "en" + ], + [ + "i", + "men" + ], + [ + "chel", + "l" + ], + [ + "che", + "ll" + ], + [ + "ch", + "ell" + ], + [ + "c", + "hell" + ], + [ + "▁re", + "ward" + ], + [ + "▁r", + "eward" + ], + [ + "▁kont", + "e" + ], + [ + "▁kon", + "te" + ], + [ + "▁k", + "onte" + ], + [ + "▁Bat", + "man" + ], + [ + "▁theor", + "ies" + ], + [ + "▁the", + "ories" + ], + [ + "▁doctor", + "s" + ], + [ + "▁doct", + "ors" + ], + [ + "▁realize", + "d" + ], + [ + "▁real", + "ized" + ], + [ + "▁proport", + "ion" + ], + [ + "▁prop", + "ortion" + ], + [ + "▁pro", + "portion" + ], + [ + "▁Se", + "m" + ], + [ + "▁S", + "em" + ], + [ + "▁pregn", + "ant" + ], + [ + "▁la", + "d" + ], + [ + "▁l", + "ad" + ], + [ + "▁comp", + "rom" + ], + [ + "yr", + "ight" + ], + [ + "y", + "right" + ], + [ + "▁A", + "M" + ], + [ + "▁", + "AM" + ], + [ + "▁Es", + "s" + ], + [ + "▁E", + "ss" + ], + [ + "▁administ", + "rative" + ], + [ + "oli", + "d" + ], + [ + "ol", + "id" + ], + [ + "▁bound", + "ary" + ], + [ + "ilt", + "y" + ], + [ + "il", + "ty" + ], + [ + "▁physic", + "s" + ], + [ + "▁phys", + "ics" + ], + [ + "▁ph", + "ysics" + ], + [ + "▁att", + "itude" + ], + [ + "ack", + "s" + ], + [ + "ac", + "ks" + ], + [ + "av", + "or" + ], + [ + "a", + "vor" + ], + [ + "re", + "z" + ], + [ + "r", + "ez" + ], + [ + "▁inj", + "ect" + ], + [ + "▁in", + "ject" + ], + [ + "▁Far", + "m" + ], + [ + "▁Fa", + "rm" + ], + [ + "▁F", + "arm" + ], + [ + "▁Fran", + "ç" + ], + [ + "ca", + "r" + ], + [ + "c", + "ar" + ], + [ + "▁act", + "ed" + ], + [ + "▁ac", + "ted" + ], + [ + "▁over", + "t" + ], + [ + "▁ov", + "ert" + ], + [ + "▁o", + "vert" + ], + [ + "▁support", + "s" + ], + [ + "▁supp", + "orts" + ], + [ + "▁sup", + "ports" + ], + [ + "▁lo", + "op" + ], + [ + "▁l", + "oop" + ], + [ + "▁sc", + "r" + ], + [ + "▁s", + "cr" + ], + [ + "▁celebrate", + "d" + ], + [ + "▁celebr", + "ated" + ], + [ + "▁celeb", + "rated" + ], + [ + "od", + "ox" + ], + [ + "ave", + "r" + ], + [ + "av", + "er" + ], + [ + "a", + "ver" + ], + [ + "▁opt", + "im" + ], + [ + "▁prompt", + "ed" + ], + [ + "▁fr", + "a" + ], + [ + "▁f", + "ra" + ], + [ + "▁prof", + "ile" + ], + [ + "▁Hors", + "e" + ], + [ + "▁Hor", + "se" + ], + [ + "▁H", + "orse" + ], + [ + "oc", + "ation" + ], + [ + "h", + "r" + ], + [ + "▁simultaneous", + "ly" + ], + [ + "▁simultane", + "ously" + ], + [ + "▁Force", + "s" + ], + [ + "▁For", + "ces" + ], + [ + "▁meeting", + "s" + ], + [ + "▁meet", + "ings" + ], + [ + "▁poem", + "s" + ], + [ + "▁po", + "ems" + ], + [ + "ott", + "e" + ], + [ + "ot", + "te" + ], + [ + "ond", + "s" + ], + [ + "on", + "ds" + ], + [ + "▁mar", + "ry" + ], + [ + "▁m", + "arry" + ], + [ + "▁depend", + "s" + ], + [ + "▁dep", + "ends" + ], + [ + "▁subst", + "ance" + ], + [ + "▁vegetable", + "s" + ], + [ + "▁veget", + "ables" + ], + [ + "▁fort", + "y" + ], + [ + "▁for", + "ty" + ], + [ + "▁contrib", + "ution" + ], + [ + "▁cont", + "ribution" + ], + [ + "▁beaut", + "y" + ], + [ + "▁ple", + "ase" + ], + [ + "▁p", + "lease" + ], + [ + "▁subs", + "id" + ], + [ + "inc", + "ial" + ], + [ + "in", + "cial" + ], + [ + "▁tren", + "d" + ], + [ + "▁tre", + "nd" + ], + [ + "▁tr", + "end" + ], + [ + "▁De", + "ad" + ], + [ + "▁D", + "ead" + ], + [ + "▁anc", + "h" + ], + [ + "▁an", + "ch" + ], + [ + "▁under", + "w" + ], + [ + "S", + "P" + ], + [ + "▁I", + "ce" + ], + [ + "▁monitor", + "ing" + ], + [ + "▁monit", + "oring" + ], + [ + "itar", + "ian" + ], + [ + "ita", + "rian" + ], + [ + "it", + "arian" + ], + [ + "▁Steven", + "s" + ], + [ + "▁Steve", + "ns" + ], + [ + "▁Ste", + "vens" + ], + [ + "bor", + "ough" + ], + [ + "bo", + "rough" + ], + [ + "b", + "orough" + ], + [ + "▁lab", + "our" + ], + [ + "▁la", + "bour" + ], + [ + "▁disp", + "ute" + ], + [ + "▁athlete", + "s" + ], + [ + "▁athlet", + "es" + ], + [ + "▁tun", + "nel" + ], + [ + "oc", + "c" + ], + [ + "o", + "cc" + ], + [ + "▁cur", + "ric" + ], + [ + "▁c", + "urric" + ], + [ + "aro", + "n" + ], + [ + "ar", + "on" + ], + [ + "a", + "ron" + ], + [ + "ave", + "l" + ], + [ + "av", + "el" + ], + [ + "a", + "vel" + ], + [ + "▁by", + "pass" + ], + [ + "oc", + "y" + ], + [ + "o", + "cy" + ], + [ + "▁S", + "i" + ], + [ + "▁machine", + "s" + ], + [ + "▁mach", + "ines" + ], + [ + "▁artist", + "ic" + ], + [ + "▁art", + "istic" + ], + [ + "▁short", + "er" + ], + [ + "▁sh", + "orter" + ], + [ + "▁bi", + "d" + ], + [ + "▁b", + "id" + ], + [ + "enes", + "s" + ], + [ + "ene", + "ss" + ], + [ + "en", + "ess" + ], + [ + "e", + "ness" + ], + [ + "▁Lit", + "h" + ], + [ + "▁Li", + "th" + ], + [ + "▁L", + "ith" + ], + [ + "▁infect", + "ed" + ], + [ + "▁inf", + "ected" + ], + [ + "”", + "," + ], + [ + "▁Bu", + "ff" + ], + [ + "▁B", + "uff" + ], + [ + "▁en", + "force" + ], + [ + "▁192", + "3" + ], + [ + "▁19", + "23" + ], + [ + "▁RA", + "AF" + ], + [ + "▁R", + "AAF" + ], + [ + "▁fall", + "en" + ], + [ + "▁fal", + "len" + ], + [ + "▁Pen", + "insula" + ], + [ + "▁Man", + "h" + ], + [ + "▁arr", + "ive" + ], + [ + "ro", + "x" + ], + [ + "r", + "ox" + ], + [ + "▁li", + "e" + ], + [ + "▁l", + "ie" + ], + [ + "▁", + "lie" + ], + [ + "▁gre", + "y" + ], + [ + "▁gr", + "ey" + ], + [ + "▁g", + "rey" + ], + [ + "▁He", + "avy" + ], + [ + "▁Star", + "t" + ], + [ + "▁St", + "art" + ], + [ + "▁convers", + "ion" + ], + [ + "▁conv", + "ersion" + ], + [ + "bi", + "rd" + ], + [ + "b", + "ird" + ], + [ + "▁Ag", + "ency" + ], + [ + "▁A", + "gency" + ], + [ + "ov", + "a" + ], + [ + "o", + "va" + ], + [ + "▁leg", + "it" + ], + [ + "▁visit", + "ing" + ], + [ + "▁vis", + "iting" + ], + [ + "▁chemical", + "s" + ], + [ + "▁chem", + "icals" + ], + [ + "▁she", + "ar" + ], + [ + "▁sh", + "ear" + ], + [ + "▁transl", + "ation" + ], + [ + "▁trans", + "lation" + ], + [ + "▁A", + "P" + ], + [ + "▁", + "AP" + ], + [ + "▁Bul", + "l" + ], + [ + "▁Bu", + "ll" + ], + [ + "▁B", + "ull" + ], + [ + "▁man", + "ip" + ], + [ + "▁Kh", + "an" + ], + [ + "▁K", + "han" + ], + [ + "▁RA", + "F" + ], + [ + "▁R", + "AF" + ], + [ + "▁jun", + "ior" + ], + [ + "▁j", + "unior" + ], + [ + "▁flow", + "s" + ], + [ + "▁fl", + "ows" + ], + [ + "▁bar", + "e" + ], + [ + "▁ba", + "re" + ], + [ + "▁b", + "are" + ], + [ + "▁st", + "uff" + ], + [ + "▁shar", + "ing" + ], + [ + "▁sh", + "aring" + ], + [ + "▁depart", + "ed" + ], + [ + "▁dep", + "arted" + ], + [ + "▁K", + "u" + ], + [ + "▁implement", + "ed" + ], + [ + "▁With", + "out" + ], + [ + "▁reside", + "nce" + ], + [ + "▁resid", + "ence" + ], + [ + "▁res", + "idence" + ], + [ + "▁essential", + "ly" + ], + [ + "▁ess", + "entially" + ], + [ + "rar", + "y" + ], + [ + "ra", + "ry" + ], + [ + "r", + "ary" + ], + [ + "gh", + "an" + ], + [ + "g", + "han" + ], + [ + "▁sh", + "ield" + ], + [ + "▁fe", + "ud" + ], + [ + "▁impact", + "s" + ], + [ + "▁imp", + "acts" + ], + [ + "▁distinguish", + "ed" + ], + [ + "▁distingu", + "ished" + ], + [ + "▁dist", + "inguished" + ], + [ + "so", + "ft" + ], + [ + "s", + "oft" + ], + [ + "▁190", + "8" + ], + [ + "her", + "ic" + ], + [ + "he", + "ric" + ], + [ + "▁dec", + "ay" + ], + [ + "▁signific", + "ance" + ], + [ + "▁treatment", + "s" + ], + [ + "▁treat", + "ments" + ], + [ + "▁hy", + "br" + ], + [ + "▁(", + "3" + ], + [ + "g", + "s" + ], + [ + "▁creat", + "or" + ], + [ + "▁cre", + "ator" + ], + [ + "▁gr", + "o" + ], + [ + "▁g", + "ro" + ], + [ + "▁", + "gro" + ], + [ + "▁ti", + "p" + ], + [ + "▁t", + "ip" + ], + [ + "èz", + "bòl" + ], + [ + "▁b", + "èzbòl" + ], + [ + "▁res", + "id" + ], + [ + "▁insu", + "rance" + ], + [ + "▁ins", + "urance" + ], + [ + "iz", + "òd" + ], + [ + "▁vit", + "amin" + ], + [ + "▁Fr", + "iday" + ], + [ + "uit", + "s" + ], + [ + "ui", + "ts" + ], + [ + "u", + "its" + ], + [ + "▁Ali", + "ce" + ], + [ + "▁Al", + "ice" + ], + [ + "ani", + "um" + ], + [ + "an", + "ium" + ], + [ + "▁pull", + "ed" + ], + [ + "▁pul", + "led" + ], + [ + "▁wed", + "ding" + ], + [ + "ut", + "t" + ], + [ + "u", + "tt" + ], + [ + "▁Hill", + "s" + ], + [ + "▁Hil", + "ls" + ], + [ + "▁H", + "ills" + ], + [ + "▁fif", + "ty" + ], + [ + "▁Che", + "m" + ], + [ + "▁Ch", + "em" + ], + [ + "▁C", + "hem" + ], + [ + "ill", + "o" + ], + [ + "il", + "lo" + ], + [ + "▁belief", + "s" + ], + [ + "▁belie", + "fs" + ], + [ + "▁Vince", + "nt" + ], + [ + "▁Vinc", + "ent" + ], + [ + "▁Vin", + "cent" + ], + [ + "ple", + "d" + ], + [ + "pl", + "ed" + ], + [ + "p", + "led" + ], + [ + "▁Louis", + "iana" + ], + [ + "ess", + "ed" + ], + [ + "▁Dav", + "e" + ], + [ + "▁Da", + "ve" + ], + [ + "▁D", + "ave" + ], + [ + "▁layer", + "s" + ], + [ + "▁lay", + "ers" + ], + [ + "▁la", + "yers" + ], + [ + "ome", + "d" + ], + [ + "om", + "ed" + ], + [ + "o", + "med" + ], + [ + "▁clos", + "ing" + ], + [ + "▁cl", + "osing" + ], + [ + "▁travel", + "led" + ], + [ + "▁trav", + "elled" + ], + [ + "▁R", + "u" + ], + [ + "sequent", + "ly" + ], + [ + "sequ", + "ently" + ], + [ + "▁lan", + "m" + ], + [ + "▁l", + "anm" + ], + [ + "▁light", + "s" + ], + [ + "▁l", + "ights" + ], + [ + "▁", + "lights" + ], + [ + "ash", + "es" + ], + [ + "as", + "hes" + ], + [ + "ult", + "y" + ], + [ + "ul", + "ty" + ], + [ + "▁bul", + "k" + ], + [ + "▁b", + "ulk" + ], + [ + "S", + "p" + ], + [ + "lo", + "w" + ], + [ + "l", + "ow" + ], + [ + "aly", + "sis" + ], + [ + "al", + "ysis" + ], + [ + "▁par", + "ish" + ], + [ + "▁card", + "s" + ], + [ + "▁car", + "ds" + ], + [ + "▁c", + "ards" + ], + [ + "▁a", + "f" + ], + [ + "▁", + "af" + ], + [ + "oura", + "g" + ], + [ + "our", + "ag" + ], + [ + "ou", + "rag" + ], + [ + "▁vari", + "able" + ], + [ + "▁var", + "iable" + ], + [ + "▁King", + "s" + ], + [ + "▁Kin", + "gs" + ], + [ + "▁K", + "ings" + ], + [ + "▁origin", + "s" + ], + [ + "▁orig", + "ins" + ], + [ + "▁ori", + "gins" + ], + [ + "im", + "m" + ], + [ + "i", + "mm" + ], + [ + "▁Niel", + "sen" + ], + [ + "▁188", + "0" + ], + [ + "▁18", + "80" + ], + [ + "▁mine", + "s" + ], + [ + "▁min", + "es" + ], + [ + "▁mi", + "nes" + ], + [ + "▁m", + "ines" + ], + [ + "▁tw", + "in" + ], + [ + "▁t", + "win" + ], + [ + "▁Indust", + "ry" + ], + [ + "▁dur", + "ation" + ], + [ + "▁du", + "ration" + ], + [ + "▁d", + "uration" + ], + [ + "▁severe", + "ly" + ], + [ + "▁sever", + "ely" + ], + [ + "▁repl", + "acing" + ], + [ + "▁Claud", + "e" + ], + [ + "▁Cla", + "ude" + ], + [ + "▁rac", + "ial" + ], + [ + "▁ra", + "cial" + ], + [ + "▁distinct", + "ive" + ], + [ + "L", + "L" + ], + [ + "▁V", + "I" + ], + [ + "▁shell", + "s" + ], + [ + "▁shel", + "ls" + ], + [ + "▁sh", + "ells" + ], + [ + "▁gather", + "ed" + ], + [ + "▁gat", + "hered" + ], + [ + "ip", + "h" + ], + [ + "i", + "ph" + ], + [ + "▁withd", + "rew" + ], + [ + "eston", + "e" + ], + [ + "est", + "one" + ], + [ + "e", + "stone" + ], + [ + "▁t", + "u" + ], + [ + "▁pro", + "of" + ], + [ + "▁", + "proof" + ], + [ + "▁l", + "òt" + ], + [ + "▁agg", + "reg" + ], + [ + "▁ag", + "greg" + ], + [ + "ple", + "te" + ], + [ + "pl", + "ete" + ], + [ + "p", + "lete" + ], + [ + "nor", + "m" + ], + [ + "no", + "rm" + ], + [ + "n", + "orm" + ], + [ + "▁Col", + "e" + ], + [ + "▁Co", + "le" + ], + [ + "▁C", + "ole" + ], + [ + "▁She", + "l" + ], + [ + "▁Sh", + "el" + ], + [ + "▁S", + "hel" + ], + [ + "▁assist", + "ed" + ], + [ + "▁ass", + "isted" + ], + [ + "▁interc", + "ept" + ], + [ + "▁inter", + "cept" + ], + [ + "acle", + "s" + ], + [ + "ac", + "les" + ], + [ + "a", + "cles" + ], + [ + "▁Walk", + "er" + ], + [ + "▁Wal", + "ker" + ], + [ + "▁instrument", + "al" + ], + [ + "O", + "M" + ], + [ + "se", + "x" + ], + [ + "s", + "ex" + ], + [ + "▁ra", + "c" + ], + [ + "▁r", + "ac" + ], + [ + "▁", + "rac" + ], + [ + "▁mini", + "m" + ], + [ + "▁min", + "im" + ], + [ + "▁mo", + "s" + ], + [ + "▁m", + "os" + ], + [ + "▁restaur", + "ant" + ], + [ + "▁Satur", + "day" + ], + [ + "▁re", + "un" + ], + [ + "▁Christian", + "s" + ], + [ + "▁Christ", + "ians" + ], + [ + "▁ret", + "ain" + ], + [ + "▁re", + "tain" + ], + [ + "▁vacc", + "ine" + ], + [ + "ros", + "t" + ], + [ + "ro", + "st" + ], + [ + "r", + "ost" + ], + [ + "di", + "e" + ], + [ + "d", + "ie" + ], + [ + "▁0", + "8" + ], + [ + "▁investig", + "ate" + ], + [ + "names", + "e" + ], + [ + "name", + "se" + ], + [ + "nam", + "ese" + ], + [ + "▁access", + "ible" + ], + [ + "dal", + "e" + ], + [ + "da", + "le" + ], + [ + "d", + "ale" + ], + [ + "▁arr", + "iving" + ], + [ + "▁deal", + "ing" + ], + [ + "▁de", + "aling" + ], + [ + "▁Environment", + "al" + ], + [ + "▁Marg", + "aret" + ], + [ + "▁genera", + "te" + ], + [ + "▁gener", + "ate" + ], + [ + "▁gene", + "rate" + ], + [ + "▁gen", + "erate" + ], + [ + "▁equal", + "ly" + ], + [ + "▁equ", + "ally" + ], + [ + "▁struct", + "ural" + ], + [ + "eu", + "r" + ], + [ + "e", + "ur" + ], + [ + "▁Is", + "a" + ], + [ + "▁I", + "sa" + ], + [ + "▁cl", + "ar" + ], + [ + "▁c", + "lar" + ], + [ + "í", + "n" + ], + [ + "▁in", + "aug" + ], + [ + "▁em", + "ail" + ], + [ + "▁e", + "mail" + ], + [ + "▁pilot", + "s" + ], + [ + "▁pil", + "ots" + ], + [ + "▁conv", + "oy" + ], + [ + "▁Histor", + "ic" + ], + [ + "▁Hist", + "oric" + ], + [ + "Th", + "is" + ], + [ + "T", + "his" + ], + [ + "▁king", + "s" + ], + [ + "▁kin", + "gs" + ], + [ + "▁k", + "ings" + ], + [ + "▁magnet", + "ic" + ], + [ + "▁magn", + "etic" + ], + [ + "▁m", + "agnetic" + ], + [ + "▁what", + "ever" + ], + [ + "▁wh", + "atever" + ], + [ + "▁Christian", + "ity" + ], + [ + "▁h", + "ull" + ], + [ + "▁create", + "s" + ], + [ + "▁creat", + "es" + ], + [ + "▁cre", + "ates" + ], + [ + "▁pl", + "is" + ], + [ + "▁p", + "lis" + ], + [ + "▁tor", + "t" + ], + [ + "▁t", + "ort" + ], + [ + "▁prov", + "ision" + ], + [ + "▁rec", + "all" + ], + [ + "▁exam", + "ination" + ], + [ + "▁ex", + "amination" + ], + [ + "▁establish", + "ing" + ], + [ + "▁tent", + "h" + ], + [ + "▁ten", + "th" + ], + [ + "▁t", + "enth" + ], + [ + "▁rank", + "ing" + ], + [ + "▁ran", + "king" + ], + [ + "▁17", + "6" + ], + [ + "▁1", + "76" + ], + [ + "▁Somers", + "et" + ], + [ + "▁Const", + "ruction" + ], + [ + "▁C", + "onstruction" + ], + [ + "▁Vietnam", + "ese" + ], + [ + "▁Viet", + "namese" + ], + [ + "▁Harv", + "ard" + ], + [ + "▁assemb", + "ly" + ], + [ + "▁ass", + "embly" + ], + [ + "▁strateg", + "ic" + ], + [ + "▁strate", + "gic" + ], + [ + "▁190", + "9" + ], + [ + "atis", + "yen" + ], + [ + "at", + "isyen" + ], + [ + "onde", + "r" + ], + [ + "ond", + "er" + ], + [ + "on", + "der" + ], + [ + "▁st", + "om" + ], + [ + "▁(1", + "8" + ], + [ + "▁(", + "18" + ], + [ + "▁Des", + "t" + ], + [ + "▁De", + "st" + ], + [ + "▁D", + "est" + ], + [ + "▁ex", + "it" + ], + [ + "▁dra", + "in" + ], + [ + "▁dr", + "ain" + ], + [ + "▁d", + "rain" + ], + [ + "▁win", + "e" + ], + [ + "▁w", + "ine" + ], + [ + "▁cond", + "em" + ], + [ + "▁con", + "dem" + ], + [ + "ine", + "a" + ], + [ + "in", + "ea" + ], + [ + "▁7", + "1" + ], + [ + "▁upgrade", + "d" + ], + [ + "▁upgr", + "aded" + ], + [ + "▁up", + "graded" + ], + [ + "eri", + "a" + ], + [ + "er", + "ia" + ], + [ + "e", + "ria" + ], + [ + "▁hel", + "icop" + ], + [ + "▁factor", + "y" + ], + [ + "▁facto", + "ry" + ], + [ + "▁fact", + "ory" + ], + [ + "▁fa", + "ctory" + ], + [ + "▁data", + "b" + ], + [ + "▁dat", + "ab" + ], + [ + "▁annual", + "ly" + ], + [ + "▁ann", + "ually" + ], + [ + "▁character", + "istic" + ], + [ + "▁clo", + "ck" + ], + [ + "▁cl", + "ock" + ], + [ + "▁c", + "lock" + ], + [ + "▁marg", + "in" + ], + [ + "▁mar", + "gin" + ], + [ + "rict", + "s" + ], + [ + "ric", + "ts" + ], + [ + "▁ra", + "id" + ], + [ + "▁r", + "aid" + ], + [ + "▁", + "raid" + ], + [ + "be", + "s" + ], + [ + "b", + "es" + ], + [ + "▁Ni", + "k" + ], + [ + "▁N", + "ik" + ], + [ + "iar", + "y" + ], + [ + "ia", + "ry" + ], + [ + "i", + "ary" + ], + [ + "ros", + "e" + ], + [ + "ro", + "se" + ], + [ + "r", + "ose" + ], + [ + "▁adm", + "in" + ], + [ + "▁ad", + "min" + ], + [ + "20", + "0" + ], + [ + "2", + "00" + ], + [ + "▁Hav", + "e" + ], + [ + "▁Ha", + "ve" + ], + [ + "▁H", + "ave" + ], + [ + "▁Sen", + "ator" + ], + [ + "▁ra", + "w" + ], + [ + "▁r", + "aw" + ], + [ + "▁", + "raw" + ], + [ + "▁Similar", + "ly" + ], + [ + "▁Win", + "g" + ], + [ + "▁Wi", + "ng" + ], + [ + "▁W", + "ing" + ], + [ + "▁complet", + "ing" + ], + [ + "▁comple", + "ting" + ], + [ + "▁recognise", + "d" + ], + [ + "▁recogn", + "ised" + ], + [ + "▁hon", + "our" + ], + [ + "ini", + "an" + ], + [ + "in", + "ian" + ], + [ + "i", + "nian" + ], + [ + "▁battles", + "hip" + ], + [ + "▁battle", + "ship" + ], + [ + "▁fighter", + "s" + ], + [ + "▁fight", + "ers" + ], + [ + "▁part", + "ial" + ], + [ + "▁Pe", + "ace" + ], + [ + "▁Sn", + "ow" + ], + [ + "▁S", + "now" + ], + [ + "▁gl", + "ac" + ], + [ + "▁Ob", + "ama" + ], + [ + "▁Princ", + "ip" + ], + [ + "▁Pr", + "incip" + ], + [ + "▁O", + "u" + ], + [ + "▁Camp", + "bell" + ], + [ + "▁susp", + "ended" + ], + [ + "▁gat", + "e" + ], + [ + "▁ga", + "te" + ], + [ + "▁g", + "ate" + ], + [ + "▁", + "gate" + ], + [ + "▁187", + "0" + ], + [ + "▁18", + "70" + ], + [ + "▁tribut", + "e" + ], + [ + "▁trib", + "ute" + ], + [ + "▁un", + "e" + ], + [ + "▁u", + "ne" + ], + [ + "▁", + "une" + ], + [ + "▁are", + "n" + ], + [ + "▁ar", + "en" + ], + [ + "▁a", + "ren" + ], + [ + "▁", + "aren" + ], + [ + "▁aggress", + "ive" + ], + [ + "▁agg", + "ressive" + ], + [ + "us", + "ic" + ], + [ + "ela", + "nd" + ], + [ + "el", + "and" + ], + [ + "e", + "land" + ], + [ + "▁vict", + "im" + ], + [ + "▁ske", + "t" + ], + [ + "▁sk", + "et" + ], + [ + "▁complic", + "ated" + ], + [ + "▁compl", + "icated" + ], + [ + "ida", + "e" + ], + [ + "id", + "ae" + ], + [ + "▁revers", + "e" + ], + [ + "▁rever", + "se" + ], + [ + "▁rev", + "erse" + ], + [ + "▁re", + "verse" + ], + [ + "▁tradition", + "s" + ], + [ + "▁trad", + "itions" + ], + [ + "ense", + "d" + ], + [ + "ens", + "ed" + ], + [ + "▁pen", + "et" + ], + [ + "▁pe", + "net" + ], + [ + "▁comp", + "ound" + ], + [ + "▁constant", + "ly" + ], + [ + "▁const", + "antly" + ], + [ + "▁design", + "ation" + ], + [ + "▁Di", + "d" + ], + [ + "▁D", + "id" + ], + [ + "▁Gen", + "e" + ], + [ + "▁Ge", + "ne" + ], + [ + "▁G", + "ene" + ], + [ + "▁ne", + "u" + ], + [ + "▁n", + "eu" + ], + [ + "▁enc", + "l" + ], + [ + "▁en", + "cl" + ], + [ + "m", + "n" + ], + [ + "▁conserv", + "ative" + ], + [ + "▁cons", + "ervative" + ], + [ + "4", + "," + ], + [ + "▁Ga", + "ga" + ], + [ + "▁G", + "aga" + ], + [ + "▁Z", + "h" + ], + [ + "▁Gl", + "obal" + ], + [ + "▁indust", + "ries" + ], + [ + "▁cu", + "b" + ], + [ + "▁c", + "ub" + ], + [ + "▁dev", + "ast" + ], + [ + "D", + "S" + ], + [ + "▁cha", + "mber" + ], + [ + "▁ch", + "amber" + ], + [ + "▁reviewer", + "s" + ], + [ + "▁review", + "ers" + ], + [ + "▁challeng", + "ing" + ], + [ + "▁fif", + "teen" + ], + [ + "▁Guard", + "ian" + ], + [ + "▁0", + "6" + ], + [ + "▁E", + "qu" + ], + [ + "ber", + "ry" + ], + [ + "ist", + "èm" + ], + [ + "▁car", + "go" + ], + [ + "▁Persia", + "n" + ], + [ + "▁Pers", + "ian" + ], + [ + "▁fra", + "ct" + ], + [ + "▁fr", + "act" + ], + [ + "▁f", + "ract" + ], + [ + "▁conv", + "ey" + ], + [ + "▁con", + "vey" + ], + [ + "▁abs", + "t" + ], + [ + "▁ab", + "st" + ], + [ + "c", + "ribed" + ], + [ + "▁emotion", + "s" + ], + [ + "▁emot", + "ions" + ], + [ + "▁intern", + "et" + ], + [ + "▁inter", + "net" + ], + [ + "oon", + "s" + ], + [ + "oo", + "ns" + ], + [ + "o", + "ons" + ], + [ + "▁represent", + "ation" + ], + [ + "od", + "ore" + ], + [ + "▁Pri", + "m" + ], + [ + "▁Pr", + "im" + ], + [ + "▁P", + "rim" + ], + [ + "▁X", + "box" + ], + [ + "3", + "8" + ], + [ + "el", + "i" + ], + [ + "e", + "li" + ], + [ + "▁signal", + "s" + ], + [ + "▁sign", + "als" + ], + [ + "▁tempor", + "arily" + ], + [ + "▁reg", + "ime" + ], + [ + "gr", + "o" + ], + [ + "g", + "ro" + ], + [ + "▁Work", + "s" + ], + [ + "▁Wor", + "ks" + ], + [ + "▁doll", + "ar" + ], + [ + "▁explos", + "ion" + ], + [ + "▁expl", + "osion" + ], + [ + "▁Her", + "o" + ], + [ + "▁He", + "ro" + ], + [ + "▁H", + "ero" + ], + [ + "▁St", + "ill" + ], + [ + "▁us", + "age" + ], + [ + "▁recording", + "s" + ], + [ + "▁record", + "ings" + ], + [ + "o", + "a" + ], + [ + "▁Do", + "m" + ], + [ + "▁D", + "om" + ], + [ + "▁Che", + "n" + ], + [ + "▁Ch", + "en" + ], + [ + "▁C", + "hen" + ], + [ + "▁ric", + "e" + ], + [ + "▁ri", + "ce" + ], + [ + "▁r", + "ice" + ], + [ + "▁", + "rice" + ], + [ + "▁we", + "igh" + ], + [ + "▁communication", + "s" + ], + [ + "▁commun", + "ications" + ], + [ + "▁Science", + "s" + ], + [ + "▁Sci", + "ences" + ], + [ + "▁Sc", + "iences" + ], + [ + "▁vari", + "ation" + ], + [ + "▁var", + "iation" + ], + [ + "▁instruction", + "s" + ], + [ + "▁instruct", + "ions" + ], + [ + "▁Se", + "ction" + ], + [ + "▁S", + "ection" + ], + [ + "ei", + "ng" + ], + [ + "e", + "ing" + ], + [ + "anger", + "s" + ], + [ + "ange", + "rs" + ], + [ + "ang", + "ers" + ], + [ + "an", + "gers" + ], + [ + "▁cou", + "s" + ], + [ + "▁co", + "us" + ], + [ + "▁c", + "ous" + ], + [ + "▁coin", + "c" + ], + [ + "▁co", + "inc" + ], + [ + "▁purs", + "ue" + ], + [ + "mat", + "e" + ], + [ + "ma", + "te" + ], + [ + "m", + "ate" + ], + [ + "▁sustain", + "able" + ], + [ + "▁190", + "5" + ], + [ + "▁19", + "05" + ], + [ + "▁dive", + "r" + ], + [ + "▁div", + "er" + ], + [ + "▁di", + "ver" + ], + [ + "▁d", + "iver" + ], + [ + "ul", + "ous" + ], + [ + "▁stat", + "ue" + ], + [ + "▁Hung", + "ary" + ], + [ + "▁Hun", + "gary" + ], + [ + "▁cruiser", + "s" + ], + [ + "▁cruise", + "rs" + ], + [ + "▁cru", + "isers" + ], + [ + "▁photograph", + "s" + ], + [ + "▁phot", + "ographs" + ], + [ + "ic", + "ut" + ], + [ + "i", + "cut" + ], + [ + "ople", + "s" + ], + [ + "opl", + "es" + ], + [ + "op", + "les" + ], + [ + "o", + "ples" + ], + [ + "▁align", + "ment" + ], + [ + "▁al", + "ignment" + ], + [ + "▁para", + "s" + ], + [ + "▁par", + "as" + ], + [ + "▁pa", + "ras" + ], + [ + "▁repeated", + "ly" + ], + [ + "▁re", + "j" + ], + [ + "▁War", + "d" + ], + [ + "▁Wa", + "rd" + ], + [ + "▁W", + "ard" + ], + [ + "▁univers", + "al" + ], + [ + "se", + "a" + ], + [ + "s", + "ea" + ], + [ + "▁pitch", + "ed" + ], + [ + "▁pit", + "ched" + ], + [ + "par", + "t" + ], + [ + "p", + "art" + ], + [ + "irt", + "y" + ], + [ + "ir", + "ty" + ], + [ + "▁C", + "atherine" + ], + [ + "▁Manh", + "attan" + ], + [ + "4", + "8" + ], + [ + "▁Conv", + "ention" + ], + [ + "▁Con", + "vention" + ], + [ + "▁entertain", + "ment" + ], + [ + "ig", + "e" + ], + [ + "i", + "ge" + ], + [ + "▁di", + "m" + ], + [ + "▁d", + "im" + ], + [ + "ike", + "ly" + ], + [ + "ik", + "ely" + ], + [ + "▁dig", + "est" + ], + [ + "▁di", + "gest" + ], + [ + "▁depend", + "ent" + ], + [ + "▁d", + "ependent" + ], + [ + "ep", + "ing" + ], + [ + "e", + "ping" + ], + [ + "▁read", + "er" + ], + [ + "▁re", + "ader" + ], + [ + "▁tax", + "es" + ], + [ + "▁observ", + "ation" + ], + [ + "▁obs", + "ervation" + ], + [ + "▁comprehens", + "ive" + ], + [ + "s", + "a" + ], + [ + "▁z", + "ero" + ], + [ + "▁culture", + "s" + ], + [ + "▁cult", + "ures" + ], + [ + "▁cul", + "tures" + ], + [ + "▁Lenn", + "on" + ], + [ + "▁Len", + "non" + ], + [ + "▁settle", + "rs" + ], + [ + "▁sett", + "lers" + ], + [ + "▁computer", + "s" + ], + [ + "▁comp", + "uters" + ], + [ + "ore", + "r" + ], + [ + "or", + "er" + ], + [ + "o", + "rer" + ], + [ + "od", + "ge" + ], + [ + "▁cl", + "ick" + ], + [ + "▁photo", + "s" + ], + [ + "▁phot", + "os" + ], + [ + "▁thor", + "ough" + ], + [ + "▁th", + "orough" + ], + [ + "▁Ber", + "t" + ], + [ + "▁B", + "ert" + ], + [ + "▁8", + "1" + ], + [ + "▁exp", + "ort" + ], + [ + "▁ex", + "port" + ], + [ + "▁indic", + "ating" + ], + [ + "▁ind", + "icating" + ], + [ + "ua", + "ting" + ], + [ + "u", + "ating" + ], + [ + "▁Steve", + "n" + ], + [ + "▁Ste", + "ven" + ], + [ + "▁Spe", + "ars" + ], + [ + "▁Sp", + "ears" + ], + [ + "▁Per", + "form" + ], + [ + "d", + "i" + ], + [ + "▁stone", + "s" + ], + [ + "▁st", + "ones" + ], + [ + "▁", + "stones" + ], + [ + "▁Dep", + "ression" + ], + [ + "▁choice", + "s" + ], + [ + "▁cho", + "ices" + ], + [ + "▁I", + "an" + ], + [ + "▁alter", + "ed" + ], + [ + "▁alt", + "ered" + ], + [ + "▁al", + "tered" + ], + [ + "l", + "è" + ], + [ + "▁flight", + "s" + ], + [ + "▁fl", + "ights" + ], + [ + "▁f", + "lights" + ], + [ + "▁round", + "s" + ], + [ + "▁r", + "ounds" + ], + [ + "oke", + "s" + ], + [ + "ok", + "es" + ], + [ + "o", + "kes" + ], + [ + "▁to", + "r" + ], + [ + "▁t", + "or" + ], + [ + "▁", + "tor" + ], + [ + "▁convers", + "ation" + ], + [ + "▁ha", + "b" + ], + [ + "▁h", + "ab" + ], + [ + "ici", + "ous" + ], + [ + "ic", + "ious" + ], + [ + "i", + "cious" + ], + [ + "▁less", + "on" + ], + [ + "▁les", + "son" + ], + [ + "▁invol", + "ve" + ], + [ + "▁inv", + "olve" + ], + [ + "▁ster", + "e" + ], + [ + "▁ste", + "re" + ], + [ + "▁st", + "ere" + ], + [ + "▁bring", + "s" + ], + [ + "▁br", + "ings" + ], + [ + "ate", + "ur" + ], + [ + "at", + "eur" + ], + [ + "onna", + "issance" + ], + [ + "▁Sw", + "itzer" + ], + [ + "▁my", + "st" + ], + [ + "▁affect", + "s" + ], + [ + "▁aff", + "ects" + ], + [ + "▁La", + "d" + ], + [ + "▁L", + "ad" + ], + [ + "yl", + "an" + ], + [ + "y", + "lan" + ], + [ + "▁pl", + "atinum" + ], + [ + "▁explan", + "ation" + ], + [ + "eto", + "n" + ], + [ + "et", + "on" + ], + [ + "e", + "ton" + ], + [ + "ze", + "ch" + ], + [ + "z", + "ech" + ], + [ + "alion", + "s" + ], + [ + "ali", + "ons" + ], + [ + "al", + "ions" + ], + [ + "▁Co", + "v" + ], + [ + "▁C", + "ov" + ], + [ + "▁mem", + "or" + ], + [ + "▁m", + "emor" + ], + [ + "▁Bank", + "s" + ], + [ + "▁Ban", + "ks" + ], + [ + "▁B", + "anks" + ], + [ + "▁no", + "se" + ], + [ + "▁n", + "ose" + ], + [ + "▁Towns", + "hip" + ], + [ + "▁Town", + "ship" + ], + [ + "▁audience", + "s" + ], + [ + "▁aud", + "iences" + ], + [ + "▁feat", + "her" + ], + [ + "▁fe", + "ather" + ], + [ + "▁Fe", + "l" + ], + [ + "▁F", + "el" + ], + [ + "▁ship", + "ping" + ], + [ + "▁sh", + "ipping" + ], + [ + "th", + "a" + ], + [ + "t", + "ha" + ], + [ + "ante", + "d" + ], + [ + "ant", + "ed" + ], + [ + "an", + "ted" + ], + [ + "inate", + "d" + ], + [ + "ina", + "ted" + ], + [ + "in", + "ated" + ], + [ + "▁Be", + "h" + ], + [ + "▁spoke", + "n" + ], + [ + "▁spok", + "en" + ], + [ + "▁spo", + "ken" + ], + [ + "▁sp", + "oken" + ], + [ + "▁190", + "7" + ], + [ + "▁wh", + "ilst" + ], + [ + "▁cloth", + "es" + ], + [ + "▁clot", + "hes" + ], + [ + "▁clo", + "thes" + ], + [ + "▁cl", + "othes" + ], + [ + "▁Pi", + "l" + ], + [ + "▁P", + "il" + ], + [ + "▁mil", + "d" + ], + [ + "▁mi", + "ld" + ], + [ + "▁m", + "ild" + ], + [ + "▁face", + "s" + ], + [ + "▁fac", + "es" + ], + [ + "▁fa", + "ces" + ], + [ + "▁f", + "aces" + ], + [ + "ource", + "s" + ], + [ + "our", + "ces" + ], + [ + "▁gal", + "ax" + ], + [ + "▁0", + "9" + ], + [ + "▁Record", + "ing" + ], + [ + "▁Rec", + "ording" + ], + [ + "▁cat", + "tle" + ], + [ + "▁c", + "attle" + ], + [ + "ici", + "ng" + ], + [ + "ic", + "ing" + ], + [ + "i", + "cing" + ], + [ + "▁ing", + "red" + ], + [ + "▁critic", + "ised" + ], + [ + "▁concert", + "s" + ], + [ + "▁concer", + "ts" + ], + [ + "▁conc", + "erts" + ], + [ + "▁Re", + "f" + ], + [ + "▁R", + "ef" + ], + [ + "▁", + "Ref" + ], + [ + "▁favor", + "able" + ], + [ + "▁frame", + "work" + ], + [ + "▁fr", + "amework" + ], + [ + "▁10", + "5" + ], + [ + "▁1", + "05" + ], + [ + "▁so", + "d" + ], + [ + "▁s", + "od" + ], + [ + "▁range", + "s" + ], + [ + "▁rang", + "es" + ], + [ + "▁ran", + "ges" + ], + [ + "▁r", + "anges" + ], + [ + "▁Co", + "b" + ], + [ + "▁C", + "ob" + ], + [ + "▁fol", + "d" + ], + [ + "▁fo", + "ld" + ], + [ + "▁f", + "old" + ], + [ + "▁", + "fold" + ], + [ + "▁light", + "ing" + ], + [ + "ulate", + "s" + ], + [ + "ula", + "tes" + ], + [ + "ul", + "ates" + ], + [ + "ocr", + "atic" + ], + [ + "▁rul", + "ing" + ], + [ + "▁ru", + "ling" + ], + [ + "▁r", + "uling" + ], + [ + "mun", + "ition" + ], + [ + "ag", + "h" + ], + [ + "a", + "gh" + ], + [ + "▁Hot", + "el" + ], + [ + "▁Ho", + "tel" + ], + [ + "▁like", + "d" + ], + [ + "▁lik", + "ed" + ], + [ + "▁l", + "iked" + ], + [ + "pen", + "t" + ], + [ + "pe", + "nt" + ], + [ + "p", + "ent" + ], + [ + "▁Ha", + "b" + ], + [ + "▁H", + "ab" + ], + [ + "▁ident", + "ical" + ], + [ + "-", + "5" + ], + [ + "▁visit", + "s" + ], + [ + "▁vis", + "its" + ], + [ + "▁Ti", + "t" + ], + [ + "▁T", + "it" + ], + [ + "▁Mac", + "k" + ], + [ + "▁Ma", + "ck" + ], + [ + "▁M", + "ack" + ], + [ + "▁Dan", + "ce" + ], + [ + "▁Da", + "nce" + ], + [ + "▁D", + "ance" + ], + [ + "itive", + "ly" + ], + [ + "it", + "ively" + ], + [ + "▁no", + "ise" + ], + [ + "▁n", + "oise" + ], + [ + "▁ga", + "ng" + ], + [ + "▁g", + "ang" + ], + [ + "▁", + "gang" + ], + [ + "▁Luc", + "as" + ], + [ + "▁Pro", + "m" + ], + [ + "▁Pr", + "om" + ], + [ + "▁P", + "rom" + ], + [ + "▁12", + "5" + ], + [ + "▁1", + "25" + ], + [ + "▁Islam", + "ic" + ], + [ + "▁Learn", + "ing" + ], + [ + "▁Lear", + "ning" + ], + [ + "tar", + "io" + ], + [ + "ta", + "rio" + ], + [ + "t", + "ario" + ], + [ + "▁s", + "istèm" + ], + [ + "▁expl", + "icit" + ], + [ + "▁fruit", + "s" + ], + [ + "▁fru", + "its" + ], + [ + "▁fr", + "uits" + ], + [ + "▁bear", + "ing" + ], + [ + "▁be", + "aring" + ], + [ + "▁b", + "earing" + ], + [ + "▁lif", + "estyle" + ], + [ + "inal", + "s" + ], + [ + "ina", + "ls" + ], + [ + "in", + "als" + ], + [ + "▁decrease", + "d" + ], + [ + "▁decre", + "ased" + ], + [ + "▁careful", + "ly" + ], + [ + "▁care", + "fully" + ], + [ + "▁9", + "1" + ], + [ + "▁", + "91" + ], + [ + "▁address", + "ed" + ], + [ + "▁add", + "ressed" + ], + [ + "mun", + "d" + ], + [ + "m", + "und" + ], + [ + "▁sign", + "ing" + ], + [ + "▁Switzer", + "land" + ], + [ + "▁kidn", + "ey" + ], + [ + "▁kid", + "ney" + ], + [ + "▁Jos", + "h" + ], + [ + "▁Jo", + "sh" + ], + [ + "▁J", + "osh" + ], + [ + "▁Na", + "g" + ], + [ + "▁N", + "ag" + ], + [ + "▁count", + "ies" + ], + [ + "▁coun", + "ties" + ], + [ + "▁remot", + "e" + ], + [ + "▁rem", + "ote" + ], + [ + "olve", + "s" + ], + [ + "ol", + "ves" + ], + [ + "▁Rec", + "ord" + ], + [ + "▁prot", + "agonist" + ], + [ + "▁Em", + "er" + ], + [ + "▁E", + "mer" + ], + [ + "▁concern", + "ing" + ], + [ + "▁concer", + "ning" + ], + [ + "3", + "6" + ], + [ + "rent", + "ly" + ], + [ + "r", + "ently" + ], + [ + "▁He", + "b" + ], + [ + "▁H", + "eb" + ], + [ + "▁file", + "d" + ], + [ + "▁fil", + "ed" + ], + [ + "▁fi", + "led" + ], + [ + "▁f", + "iled" + ], + [ + "▁Ret", + "urn" + ], + [ + "▁en", + "able" + ], + [ + "▁send", + "ing" + ], + [ + "▁sen", + "ding" + ], + [ + "▁s", + "ending" + ], + [ + "▁strik", + "ing" + ], + [ + "▁stri", + "king" + ], + [ + "▁str", + "iking" + ], + [ + "bo", + "w" + ], + [ + "b", + "ow" + ], + [ + "▁psych", + "ological" + ], + [ + "▁Jon", + "athan" + ], + [ + "▁exercise", + "s" + ], + [ + "▁exerc", + "ises" + ], + [ + "▁organ", + "isation" + ], + [ + "iff", + "er" + ], + [ + "if", + "fer" + ], + [ + "▁escape", + "d" + ], + [ + "▁esc", + "aped" + ], + [ + "▁destroyer", + "s" + ], + [ + "▁destroy", + "ers" + ], + [ + "▁c", + "ir" + ], + [ + "▁un", + "w" + ], + [ + "▁Port", + "land" + ], + [ + "▁Por", + "tland" + ], + [ + "ap", + "ing" + ], + [ + "a", + "ping" + ], + [ + "▁turret", + "s" + ], + [ + "▁tur", + "rets" + ], + [ + "ulu", + "s" + ], + [ + "ul", + "us" + ], + [ + "▁Carlo", + "s" + ], + [ + "▁Carl", + "os" + ], + [ + "▁statement", + "s" + ], + [ + "▁state", + "ments" + ], + [ + "▁stat", + "ements" + ], + [ + "▁di", + "ct" + ], + [ + "▁d", + "ict" + ], + [ + "▁", + "dict" + ], + [ + "▁ta", + "b" + ], + [ + "▁t", + "ab" + ], + [ + "▁hor", + "n" + ], + [ + "▁h", + "orn" + ], + [ + "2", + "9" + ], + [ + "▁10", + "." + ], + [ + "▁1", + "0." + ], + [ + "▁", + "10." + ], + [ + "▁repair", + "s" + ], + [ + "▁rep", + "airs" + ], + [ + "▁her", + "itage" + ], + [ + "T", + "A" + ], + [ + "▁tri", + "ck" + ], + [ + "▁tr", + "ick" + ], + [ + "▁t", + "rick" + ], + [ + "▁sop", + "h" + ], + [ + "▁so", + "ph" + ], + [ + "▁s", + "oph" + ], + [ + "▁War", + "ren" + ], + [ + "▁On", + "tario" + ], + [ + "▁rel", + "uct" + ], + [ + "▁Confeder", + "ate" + ], + [ + "di", + "n" + ], + [ + "d", + "in" + ], + [ + "igg", + "er" + ], + [ + "ig", + "ger" + ], + [ + "▁Dy", + "lan" + ], + [ + "▁D", + "ylan" + ], + [ + "▁Dar", + "win" + ], + [ + "▁cap", + "s" + ], + [ + "▁ca", + "ps" + ], + [ + "▁c", + "aps" + ], + [ + "▁co", + "at" + ], + [ + "is", + "k" + ], + [ + "i", + "sk" + ], + [ + "▁focus", + "es" + ], + [ + "▁foc", + "uses" + ], + [ + "▁C", + "zech" + ], + [ + "▁trad", + "ing" + ], + [ + "▁tra", + "ding" + ], + [ + "▁tr", + "ading" + ], + [ + "▁matem", + "atik" + ], + [ + "oll", + "y" + ], + [ + "ol", + "ly" + ], + [ + "usal", + "em" + ], + [ + "usa", + "lem" + ], + [ + "anda", + "l" + ], + [ + "and", + "al" + ], + [ + "an", + "dal" + ], + [ + "▁week", + "ly" + ], + [ + "▁", + "μ" + ], + [ + "▁tip", + "s" + ], + [ + "▁ti", + "ps" + ], + [ + "▁t", + "ips" + ], + [ + "-", + "1" + ], + [ + "▁nine", + "t" + ], + [ + "▁nin", + "et" + ], + [ + "▁ni", + "net" + ], + [ + "▁n", + "inet" + ], + [ + "asi", + "ve" + ], + [ + "as", + "ive" + ], + [ + "▁con", + "j" + ], + [ + "m", + "o" + ], + [ + "▁Kur", + "t" + ], + [ + "▁K", + "urt" + ], + [ + "▁credit", + "s" + ], + [ + "▁cred", + "its" + ], + [ + "▁attend", + "ance" + ], + [ + "▁Fa", + "b" + ], + [ + "▁F", + "ab" + ], + [ + "▁deter", + "ior" + ], + [ + "▁de", + "terior" + ], + [ + "▁she", + "et" + ], + [ + "▁Album", + "s" + ], + [ + "▁Alb", + "ums" + ], + [ + "▁vari", + "ed" + ], + [ + "▁var", + "ied" + ], + [ + "▁va", + "ried" + ], + [ + "▁Mont", + "real" + ], + [ + "▁pass", + "ion" + ], + [ + "▁Gab", + "ri" + ], + [ + "▁share", + "s" + ], + [ + "▁shar", + "es" + ], + [ + "▁sh", + "ares" + ], + [ + "▁Nas", + "h" + ], + [ + "▁Na", + "sh" + ], + [ + "▁N", + "ash" + ], + [ + "▁jun", + "ction" + ], + [ + "▁j", + "unction" + ], + [ + "ien", + "n" + ], + [ + "i", + "enn" + ], + [ + "ys", + "elf" + ], + [ + "y", + "self" + ], + [ + "▁origin", + "ated" + ], + [ + "▁orig", + "inated" + ], + [ + "amin", + "e" + ], + [ + "ami", + "ne" + ], + [ + "am", + "ine" + ], + [ + "▁Anton", + "io" + ], + [ + "▁evid", + "ent" + ], + [ + "▁ev", + "ident" + ], + [ + "▁plac", + "ing" + ], + [ + "▁pl", + "acing" + ], + [ + "P", + "R" + ], + [ + "▁necess", + "arily" + ], + [ + "cy", + "cl" + ], + [ + "c", + "ycl" + ], + [ + "▁rout", + "ine" + ], + [ + "des", + "s" + ], + [ + "de", + "ss" + ], + [ + "d", + "ess" + ], + [ + "ille", + "s" + ], + [ + "ill", + "es" + ], + [ + "il", + "les" + ], + [ + "▁be", + "am" + ], + [ + "▁grad", + "uate" + ], + [ + "▁", + "graduate" + ], + [ + "ug", + "by" + ], + [ + "▁portion", + "s" + ], + [ + "▁port", + "ions" + ], + [ + "▁bomber", + "s" + ], + [ + "▁bomb", + "ers" + ], + [ + "▁bom", + "bers" + ], + [ + "iet", + "h" + ], + [ + "ie", + "th" + ], + [ + "i", + "eth" + ], + [ + "▁Tre", + "k" + ], + [ + "▁Tr", + "ek" + ], + [ + "▁developer", + "s" + ], + [ + "▁develop", + "ers" + ], + [ + "▁Chan", + "d" + ], + [ + "▁Cha", + "nd" + ], + [ + "▁Ch", + "and" + ], + [ + "▁C", + "hand" + ], + [ + "▁Ju", + "p" + ], + [ + "▁J", + "up" + ], + [ + "come", + "s" + ], + [ + "com", + "es" + ], + [ + "co", + "mes" + ], + [ + "c", + "omes" + ], + [ + "▁rank", + "s" + ], + [ + "▁ran", + "ks" + ], + [ + "▁r", + "anks" + ], + [ + "▁earthqu", + "ake" + ], + [ + "▁Ph", + "oen" + ], + [ + "▁cit", + "ing" + ], + [ + "▁c", + "iting" + ], + [ + "▁form", + "ula" + ], + [ + "▁", + "formula" + ], + [ + "▁estim", + "ate" + ], + [ + "▁est", + "imate" + ], + [ + "▁In", + "s" + ], + [ + "▁I", + "ns" + ], + [ + "▁US", + "D" + ], + [ + "▁Giant", + "s" + ], + [ + "▁Gian", + "ts" + ], + [ + "▁Gi", + "ants" + ], + [ + "▁deep", + "ly" + ], + [ + "▁promise", + "d" + ], + [ + "▁prom", + "ised" + ], + [ + "▁am", + "munition" + ], + [ + "el", + "e" + ], + [ + "e", + "le" + ], + [ + "▁pan", + "d" + ], + [ + "▁pa", + "nd" + ], + [ + "▁p", + "and" + ], + [ + "▁Af", + "ghan" + ], + [ + "iat", + "ric" + ], + [ + "▁art", + "work" + ], + [ + "▁fi", + "b" + ], + [ + "▁f", + "ib" + ], + [ + "▁connect", + "ing" + ], + [ + "▁rest", + "ore" + ], + [ + "▁Sev", + "en" + ], + [ + "▁Se", + "ven" + ], + [ + "▁personal", + "ly" + ], + [ + "▁person", + "ally" + ], + [ + "▁similar", + "ly" + ], + [ + "▁empir", + "e" + ], + [ + "▁em", + "pire" + ], + [ + "▁vict", + "ories" + ], + [ + "org", + "e" + ], + [ + "or", + "ge" + ], + [ + "▁cas", + "h" + ], + [ + "▁ca", + "sh" + ], + [ + "▁c", + "ash" + ], + [ + "▁rec", + "t" + ], + [ + "▁re", + "ct" + ], + [ + "▁r", + "ect" + ], + [ + "▁", + "rect" + ], + [ + "▁Che", + "r" + ], + [ + "▁Ch", + "er" + ], + [ + "▁C", + "her" + ], + [ + "heim", + "er" + ], + [ + "he", + "imer" + ], + [ + "E", + "M" + ], + [ + "▁score", + "s" + ], + [ + "▁sc", + "ores" + ], + [ + "▁qual", + "ified" + ], + [ + "ram", + "s" + ], + [ + "ra", + "ms" + ], + [ + "r", + "ams" + ], + [ + "▁Cy", + "r" + ], + [ + "▁C", + "yr" + ], + [ + "▁Fa", + "t" + ], + [ + "▁F", + "at" + ], + [ + "▁final", + "s" + ], + [ + "▁fin", + "als" + ], + [ + "▁f", + "inals" + ], + [ + "▁Supp", + "ort" + ], + [ + "▁Sup", + "port" + ], + [ + "▁wor", + "e" + ], + [ + "▁w", + "ore" + ], + [ + "▁butt", + "er" + ], + [ + "▁but", + "ter" + ], + [ + "▁b", + "utter" + ], + [ + "▁Mul", + "t" + ], + [ + "▁M", + "ult" + ], + [ + "▁Her", + "itage" + ], + [ + "▁outc", + "ome" + ], + [ + "▁out", + "come" + ], + [ + "▁acc", + "ord" + ], + [ + "▁cr", + "a" + ], + [ + "▁c", + "ra" + ], + [ + "▁can", + "c" + ], + [ + "▁c", + "anc" + ], + [ + "▁co", + "ok" + ], + [ + "▁c", + "ook" + ], + [ + "▁Base", + "d" + ], + [ + "▁Bas", + "ed" + ], + [ + "▁B", + "ased" + ], + [ + "▁36", + "0" + ], + [ + "▁3", + "60" + ], + [ + "▁intellect", + "ual" + ], + [ + "▁Gra", + "n" + ], + [ + "▁Gr", + "an" + ], + [ + "▁G", + "ran" + ], + [ + "▁inf", + "er" + ], + [ + "▁in", + "fer" + ], + [ + "▁seri", + "al" + ], + [ + "▁ser", + "ial" + ], + [ + "▁se", + "rial" + ], + [ + "▁emot", + "ion" + ], + [ + "▁em", + "otion" + ], + [ + "▁resume", + "d" + ], + [ + "▁res", + "umed" + ], + [ + "um", + "s" + ], + [ + "u", + "ms" + ], + [ + "▁ind", + "igenous" + ], + [ + "ch", + "a" + ], + [ + "c", + "ha" + ], + [ + "▁h", + "ockey" + ], + [ + "▁final", + "e" + ], + [ + "▁fin", + "ale" + ], + [ + "▁thank", + "s" + ], + [ + "▁than", + "ks" + ], + [ + "▁th", + "anks" + ], + [ + "▁bad", + "ly" + ], + [ + "ak", + "h" + ], + [ + "a", + "kh" + ], + [ + "▁in", + "land" + ], + [ + "▁190", + "6" + ], + [ + "▁ho", + "ok" + ], + [ + "▁h", + "ook" + ], + [ + "▁execut", + "ion" + ], + [ + "▁exec", + "ution" + ], + [ + "▁Ta", + "g" + ], + [ + "▁T", + "ag" + ], + [ + "▁Pri", + "ze" + ], + [ + "▁Pr", + "ize" + ], + [ + "▁hen", + "ce" + ], + [ + "▁he", + "nce" + ], + [ + "▁h", + "ence" + ], + [ + "▁Fl", + "ight" + ], + [ + "▁F", + "light" + ], + [ + "A", + "n" + ], + [ + "▁M", + "L" + ], + [ + "▁minor", + "ity" + ], + [ + "ue", + "z" + ], + [ + "u", + "ez" + ], + [ + "▁p", + "uzz" + ], + [ + "▁Mountain", + "s" + ], + [ + "▁Mount", + "ains" + ], + [ + "▁Moun", + "tains" + ], + [ + "▁A", + "T" + ], + [ + "▁", + "AT" + ], + [ + "▁tube", + "s" + ], + [ + "▁tub", + "es" + ], + [ + "▁tu", + "bes" + ], + [ + "▁Mitch", + "ell" + ], + [ + "▁Mit", + "chell" + ], + [ + "ani", + "a" + ], + [ + "an", + "ia" + ], + [ + "a", + "nia" + ], + [ + "▁Ka", + "p" + ], + [ + "▁K", + "ap" + ], + [ + "▁jur", + "isd" + ], + [ + "▁Andr", + "e" + ], + [ + "▁And", + "re" + ], + [ + "▁sun", + "k" + ], + [ + "▁s", + "unk" + ], + [ + "▁Lu", + "is" + ], + [ + "▁L", + "uis" + ], + [ + "▁fast", + "est" + ], + [ + "▁Al", + "aska" + ], + [ + "▁Gra", + "ham" + ], + [ + "app", + "y" + ], + [ + "ap", + "py" + ], + [ + "sk", + "y" + ], + [ + "s", + "ky" + ], + [ + "▁opp", + "onent" + ], + [ + "▁sol", + "ve" + ], + [ + "▁s", + "olve" + ], + [ + "▁unlike", + "ly" + ], + [ + "▁unl", + "ikely" + ], + [ + "er", + "k" + ], + [ + "▁Su", + "d" + ], + [ + "▁S", + "ud" + ], + [ + "onne", + "n" + ], + [ + "onn", + "en" + ], + [ + "▁compet", + "itive" + ], + [ + "▁Connect", + "icut" + ], + [ + "▁concentrate", + "d" + ], + [ + "▁concent", + "rated" + ], + [ + "air", + "e" + ], + [ + "ai", + "re" + ], + [ + "a", + "ire" + ], + [ + "▁pal", + "ace" + ], + [ + "▁Mc", + "L" + ], + [ + "aughter", + "s" + ], + [ + "aught", + "ers" + ], + [ + "augh", + "ters" + ], + [ + "▁Be", + "s" + ], + [ + "▁B", + "es" + ], + [ + "ange", + "l" + ], + [ + "ang", + "el" + ], + [ + "an", + "gel" + ], + [ + "a", + "ngel" + ], + [ + "▁Jer", + "usalem" + ], + [ + "▁magn", + "itude" + ], + [ + "▁liber", + "al" + ], + [ + "▁lib", + "eral" + ], + [ + "▁N", + "a" + ], + [ + "▁merch", + "ant" + ], + [ + "▁mer", + "chant" + ], + [ + "▁S", + "ullivan" + ], + [ + "▁representative", + "s" + ], + [ + "▁represent", + "atives" + ], + [ + "▁Ter", + "rit" + ], + [ + "ues", + "e" + ], + [ + "ue", + "se" + ], + [ + "u", + "ese" + ], + [ + "▁intens", + "ified" + ], + [ + "b", + "u" + ], + [ + "▁Lab", + "our" + ], + [ + "▁La", + "bour" + ], + [ + "▁there", + "by" + ], + [ + "▁Ne", + "b" + ], + [ + "▁N", + "eb" + ], + [ + "▁Ang", + "le" + ], + [ + "ensive", + "ly" + ], + [ + "ens", + "ively" + ], + [ + "▁By", + "ografi" + ], + [ + "sk", + "i" + ], + [ + "s", + "ki" + ], + [ + "▁Ag", + "ricult" + ], + [ + "▁Cod", + "e" + ], + [ + "▁Co", + "de" + ], + [ + "▁C", + "ode" + ], + [ + "▁Fi", + "f" + ], + [ + "▁F", + "if" + ], + [ + "▁all", + "ies" + ], + [ + "▁al", + "lies" + ], + [ + "▁wealth", + "y" + ], + [ + "▁integrate", + "d" + ], + [ + "▁integr", + "ated" + ], + [ + "▁all", + "iance" + ], + [ + "▁partner", + "s" + ], + [ + "▁partn", + "ers" + ], + [ + "▁part", + "ners" + ], + [ + "▁permit", + "ted" + ], + [ + "▁perm", + "itted" + ], + [ + "▁per", + "mitted" + ], + [ + "▁stom", + "ach" + ], + [ + "ific", + "e" + ], + [ + "if", + "ice" + ], + [ + "▁civil", + "ian" + ], + [ + "▁Independ", + "ent" + ], + [ + "▁Ind", + "ependent" + ], + [ + "▁occur", + "ring" + ], + [ + "▁occ", + "urring" + ], + [ + "▁Mat", + "h" + ], + [ + "▁Ma", + "th" + ], + [ + "▁M", + "ath" + ], + [ + "▁batter", + "ies" + ], + [ + "▁batt", + "eries" + ], + [ + "ica", + "n" + ], + [ + "ic", + "an" + ], + [ + "i", + "can" + ], + [ + "▁Book", + "s" + ], + [ + "▁B", + "ooks" + ], + [ + "▁camp", + "s" + ], + [ + "▁cam", + "ps" + ], + [ + "▁c", + "amps" + ], + [ + "ouse", + "s" + ], + [ + "ous", + "es" + ], + [ + "ou", + "ses" + ], + [ + "o", + "uses" + ], + [ + "at", + "us" + ], + [ + "▁monit", + "or" + ], + [ + "▁mon", + "itor" + ], + [ + "▁electr", + "o" + ], + [ + "▁elect", + "ro" + ], + [ + "▁prevent", + "ing" + ], + [ + "iol", + "ogy" + ], + [ + "i", + "ology" + ], + [ + "▁av", + "o" + ], + [ + "▁a", + "vo" + ], + [ + "▁message", + "s" + ], + [ + "▁mess", + "ages" + ], + [ + "onne", + "s" + ], + [ + "onn", + "es" + ], + [ + "on", + "nes" + ], + [ + "▁pair", + "s" + ], + [ + "▁pa", + "irs" + ], + [ + "▁p", + "airs" + ], + [ + "▁threat", + "s" + ], + [ + "▁stro", + "ke" + ], + [ + "▁str", + "oke" + ], + [ + "▁st", + "roke" + ], + [ + "▁gra", + "y" + ], + [ + "▁gr", + "ay" + ], + [ + "▁g", + "ray" + ], + [ + "▁Den", + "mark" + ], + [ + "▁present", + "s" + ], + [ + "▁pres", + "ents" + ], + [ + "▁p", + "resents" + ], + [ + "▁district", + "s" + ], + [ + "▁dist", + "ricts" + ], + [ + "▁Al", + "d" + ], + [ + "▁A", + "ld" + ], + [ + "▁decide", + "s" + ], + [ + "▁dec", + "ides" + ], + [ + "▁volume", + "s" + ], + [ + "▁vol", + "umes" + ], + [ + "▁grow", + "s" + ], + [ + "▁gr", + "ows" + ], + [ + "▁g", + "rows" + ], + [ + "▁sister", + "s" + ], + [ + "▁si", + "sters" + ], + [ + "▁s", + "isters" + ], + [ + "▁vel", + "oc" + ], + [ + "▁should", + "er" + ], + [ + "▁sh", + "oulder" + ], + [ + "▁empt", + "y" + ], + [ + "▁fun", + "eral" + ], + [ + "▁Bro", + "s" + ], + [ + "▁Br", + "os" + ], + [ + "▁B", + "ros" + ], + [ + "▁Ki", + "t" + ], + [ + "▁K", + "it" + ], + [ + "▁ly", + "ing" + ], + [ + "▁l", + "ying" + ], + [ + "▁", + "lying" + ], + [ + "▁ur", + "g" + ], + [ + "▁", + "urg" + ], + [ + "▁conf", + "ig" + ], + [ + "▁con", + "fig" + ], + [ + "▁dro", + "ve" + ], + [ + "▁dr", + "ove" + ], + [ + "▁mete", + "r" + ], + [ + "▁met", + "er" + ], + [ + "▁me", + "ter" + ], + [ + "▁m", + "eter" + ], + [ + "uck", + "s" + ], + [ + "uc", + "ks" + ], + [ + "▁Cas", + "s" + ], + [ + "▁Ca", + "ss" + ], + [ + "▁C", + "ass" + ], + [ + "▁guilt", + "y" + ], + [ + "▁gu", + "ilty" + ], + [ + "ac", + "re" + ], + [ + "R", + "I" + ], + [ + "▁diagnose", + "d" + ], + [ + "▁diagn", + "osed" + ], + [ + "▁Ad", + "v" + ], + [ + "▁mix", + "ture" + ], + [ + "ver", + "eign" + ], + [ + "▁Prote", + "st" + ], + [ + "▁Prot", + "est" + ], + [ + "▁Dis", + "e" + ], + [ + "▁Di", + "se" + ], + [ + "▁D", + "ise" + ], + [ + "▁publication", + "s" + ], + [ + "▁public", + "ations" + ], + [ + "▁publ", + "ications" + ], + [ + "▁Gr", + "iff" + ], + [ + "▁min", + "i" + ], + [ + "▁mi", + "ni" + ], + [ + "▁m", + "ini" + ], + [ + "▁bron", + "ze" + ], + [ + "▁b", + "ronze" + ], + [ + "▁burn", + "ed" + ], + [ + "▁bur", + "ned" + ], + [ + "▁D", + "w" + ], + [ + "▁Art", + "icle" + ], + [ + "▁Micro", + "soft" + ], + [ + "▁life", + "time" + ], + [ + "▁lif", + "etime" + ], + [ + "▁AB", + "C" + ], + [ + "▁A", + "BC" + ], + [ + "▁bul", + "l" + ], + [ + "▁bu", + "ll" + ], + [ + "▁b", + "ull" + ], + [ + "ama", + "n" + ], + [ + "am", + "an" + ], + [ + "a", + "man" + ], + [ + "▁generation", + "s" + ], + [ + "▁gener", + "ations" + ], + [ + "▁gene", + "rations" + ], + [ + "▁torn", + "ado" + ], + [ + "▁elev", + "ation" + ], + [ + "▁stabil", + "ity" + ], + [ + "▁stab", + "ility" + ], + [ + "▁st", + "ability" + ], + [ + "▁6", + "." + ], + [ + "▁", + "6." + ], + [ + "▁out", + "d" + ], + [ + "▁N", + "i" + ], + [ + "▁translate", + "d" + ], + [ + "▁transl", + "ated" + ], + [ + "▁initiate", + "d" + ], + [ + "▁initi", + "ated" + ], + [ + "▁init", + "iated" + ], + [ + "k", + "h" + ], + [ + "▁Ro", + "c" + ], + [ + "▁R", + "oc" + ], + [ + "▁ch", + "ick" + ], + [ + "▁Original", + "ly" + ], + [ + "▁Origin", + "ally" + ], + [ + "▁epi", + "d" + ], + [ + "▁ep", + "id" + ], + [ + "▁platform", + "s" + ], + [ + "▁", + "é" + ], + [ + "▁To", + "n" + ], + [ + "▁T", + "on" + ], + [ + "▁Jup", + "iter" + ], + [ + "▁spot", + "ted" + ], + [ + "▁sp", + "otted" + ], + [ + "▁prepar", + "ing" + ], + [ + "▁prep", + "aring" + ], + [ + "▁engineer", + "s" + ], + [ + "▁engine", + "ers" + ], + [ + "▁Event", + "ually" + ], + [ + "▁Vi", + "k" + ], + [ + "▁V", + "ik" + ], + [ + "ag", + "ger" + ], + [ + "▁Bab", + "y" + ], + [ + "▁Ba", + "by" + ], + [ + "▁B", + "aby" + ], + [ + "▁mat", + "h" + ], + [ + "▁ma", + "th" + ], + [ + "▁m", + "ath" + ], + [ + "▁", + "math" + ], + [ + "▁wr", + "eck" + ], + [ + "▁w", + "reck" + ], + [ + "▁phot", + "o" + ], + [ + "▁ph", + "oto" + ], + [ + "▁Res", + "t" + ], + [ + "▁Re", + "st" + ], + [ + "▁R", + "est" + ], + [ + "▁bound", + "aries" + ], + [ + "▁Ar", + "a" + ], + [ + "▁A", + "ra" + ], + [ + "ter", + "ior" + ], + [ + "▁br", + "ill" + ], + [ + "▁b", + "rill" + ], + [ + "▁review", + "ed" + ], + [ + "▁so", + "vereign" + ], + [ + "▁s", + "overeign" + ], + [ + "▁esc", + "ort" + ], + [ + "ell", + "o" + ], + [ + "el", + "lo" + ], + [ + "▁Co", + "w" + ], + [ + "▁C", + "ow" + ], + [ + "▁swim", + "ming" + ], + [ + "▁assist", + "s" + ], + [ + "▁ass", + "ists" + ], + [ + "▁conf", + "irm" + ], + [ + "ho", + "w" + ], + [ + "h", + "ow" + ], + [ + "▁pat", + "ron" + ], + [ + "▁molec", + "ular" + ], + [ + "▁m", + "olecular" + ], + [ + "▁Pat", + "t" + ], + [ + "▁Pa", + "tt" + ], + [ + "▁P", + "att" + ], + [ + "▁en", + "orm" + ], + [ + "▁e", + "norm" + ], + [ + "▁tin", + "y" + ], + [ + "▁ti", + "ny" + ], + [ + "▁t", + "iny" + ], + [ + "▁under", + "lying" + ], + [ + "az", + "e" + ], + [ + "a", + "ze" + ], + [ + "▁Portug", + "uese" + ], + [ + "▁earn", + "ing" + ], + [ + "▁ear", + "ning" + ], + [ + "▁nutrient", + "s" + ], + [ + "▁nutri", + "ents" + ], + [ + "▁br", + "ick" + ], + [ + "▁b", + "rick" + ], + [ + "10", + "." + ], + [ + "1", + "0." + ], + [ + "oo", + "m" + ], + [ + "o", + "om" + ], + [ + "uli", + "n" + ], + [ + "ul", + "in" + ], + [ + "u", + "lin" + ], + [ + "▁9", + "2" + ], + [ + "▁", + "92" + ], + [ + "ros", + "cop" + ], + [ + "r", + "oscop" + ], + [ + "ment", + "ed" + ], + [ + "men", + "ted" + ], + [ + "m", + "ented" + ], + [ + "▁Rac", + "hel" + ], + [ + "▁Ra", + "chel" + ], + [ + "▁R", + "achel" + ], + [ + "▁Liv", + "ing" + ], + [ + "▁Li", + "ving" + ], + [ + "▁L", + "iving" + ], + [ + "▁sold", + "ier" + ], + [ + "▁E", + "U" + ], + [ + "▁ep", + "izòd" + ], + [ + "▁bene", + "ath" + ], + [ + "▁be", + "neath" + ], + [ + "▁rebu", + "ilt" + ], + [ + "▁Dy", + "n" + ], + [ + "▁D", + "yn" + ], + [ + "▁san", + "k" + ], + [ + "▁s", + "ank" + ], + [ + "f", + "r" + ], + [ + "▁Rid", + "ge" + ], + [ + "▁R", + "idge" + ], + [ + "▁close", + "st" + ], + [ + "▁clos", + "est" + ], + [ + "▁N", + "O" + ], + [ + "▁Gon", + "z" + ], + [ + "...", + "." + ], + [ + "..", + ".." + ], + [ + ".", + "..." + ], + [ + "▁coff", + "ee" + ], + [ + "▁le", + "m" + ], + [ + "▁l", + "em" + ], + [ + "▁", + "lem" + ], + [ + "▁Isa", + "b" + ], + [ + "▁Is", + "ab" + ], + [ + "▁advertis", + "ing" + ], + [ + "▁advert", + "ising" + ], + [ + "▁wa", + "l" + ], + [ + "▁w", + "al" + ], + [ + "▁", + "wal" + ], + [ + "▁0", + "5" + ], + [ + "▁", + "05" + ], + [ + "▁Li", + "b" + ], + [ + "▁L", + "ib" + ], + [ + "▁j", + "azz" + ], + [ + "▁interaction", + "s" + ], + [ + "▁interact", + "ions" + ], + [ + "▁inter", + "actions" + ], + [ + "▁Wil", + "hel" + ], + [ + "m", + "i" + ], + [ + "▁Ran", + "d" + ], + [ + "▁Ra", + "nd" + ], + [ + "▁R", + "and" + ], + [ + "▁hole", + "s" + ], + [ + "▁hol", + "es" + ], + [ + "▁ho", + "les" + ], + [ + "▁h", + "oles" + ], + [ + "▁o", + "w" + ], + [ + "▁", + "ow" + ], + [ + "har", + "d" + ], + [ + "ha", + "rd" + ], + [ + "h", + "ard" + ], + [ + "▁Man", + "d" + ], + [ + "▁Ma", + "nd" + ], + [ + "▁M", + "and" + ], + [ + "▁tens", + "ion" + ], + [ + "▁t", + "ension" + ], + [ + "▁", + "tension" + ], + [ + "ga", + "te" + ], + [ + "g", + "ate" + ], + [ + "▁Le", + "n" + ], + [ + "▁L", + "en" + ], + [ + "▁cat", + "s" + ], + [ + "▁ca", + "ts" + ], + [ + "▁c", + "ats" + ], + [ + "▁", + "cats" + ], + [ + "▁Bill", + "y" + ], + [ + "▁Bil", + "ly" + ], + [ + "▁B", + "illy" + ], + [ + "A", + "M" + ], + [ + "it", + "ure" + ], + [ + "i", + "ture" + ], + [ + "▁edit", + "ed" + ], + [ + "▁ed", + "ited" + ], + [ + "▁compete", + "d" + ], + [ + "▁compet", + "ed" + ], + [ + "▁comp", + "eted" + ], + [ + "▁Op", + "p" + ], + [ + "▁O", + "pp" + ], + [ + "▁Const", + "ant" + ], + [ + "▁carrier", + "s" + ], + [ + "▁car", + "riers" + ], + [ + "▁ri", + "b" + ], + [ + "▁r", + "ib" + ], + [ + "▁", + "rib" + ], + [ + "▁Ma", + "j" + ], + [ + "▁M", + "aj" + ], + [ + "3", + "," + ], + [ + "ori", + "th" + ], + [ + "or", + "ith" + ], + [ + "▁conf", + "ident" + ], + [ + "▁precip", + "itation" + ], + [ + "▁examine", + "d" + ], + [ + "▁exam", + "ined" + ], + [ + "op", + "p" + ], + [ + "o", + "pp" + ], + [ + "▁Jeff", + "erson" + ], + [ + "▁prom", + "ise" + ], + [ + "▁er", + "upt" + ], + [ + "▁e", + "rupt" + ], + [ + "anc", + "he" + ], + [ + "an", + "che" + ], + [ + "omet", + "ric" + ], + [ + "▁suppl", + "ied" + ], + [ + "▁supp", + "lied" + ], + [ + "▁curric", + "ulum" + ], + [ + "ik", + "i" + ], + [ + "i", + "ki" + ], + [ + "▁demand", + "ed" + ], + [ + "▁dem", + "anded" + ], + [ + "▁mer", + "c" + ], + [ + "▁m", + "erc" + ], + [ + "▁demonst", + "rate" + ], + [ + "tr", + "a" + ], + [ + "t", + "ra" + ], + [ + "ig", + "s" + ], + [ + "i", + "gs" + ], + [ + "im", + "p" + ], + [ + "i", + "mp" + ], + [ + "rid", + "ge" + ], + [ + "r", + "idge" + ], + [ + "▁defeat", + "ing" + ], + [ + "▁defe", + "ating" + ], + [ + "▁function", + "al" + ], + [ + "em", + "en" + ], + [ + "e", + "men" + ], + [ + "▁Am", + "y" + ], + [ + "▁A", + "my" + ], + [ + "▁ear", + "n" + ], + [ + "▁e", + "arn" + ], + [ + "▁sh", + "ock" + ], + [ + "▁Kar", + "l" + ], + [ + "▁ind", + "ex" + ], + [ + "▁dist", + "ant" + ], + [ + "▁d", + "istant" + ], + [ + "C", + "S" + ], + [ + "▁Mon", + "g" + ], + [ + "▁Mo", + "ng" + ], + [ + "▁M", + "ong" + ], + [ + "▁Lith", + "uan" + ], + [ + "▁susp", + "ect" + ], + [ + "▁sus", + "pect" + ], + [ + "▁campaign", + "s" + ], + [ + "▁director", + "s" + ], + [ + "▁direct", + "ors" + ], + [ + "▁dir", + "ectors" + ], + [ + "▁Lo", + "v" + ], + [ + "▁L", + "ov" + ], + [ + "▁Si", + "d" + ], + [ + "▁S", + "id" + ], + [ + "sh", + "ore" + ], + [ + "▁Drag", + "on" + ], + [ + "▁Dra", + "gon" + ], + [ + "▁Dr", + "agon" + ], + [ + "▁D", + "ragon" + ], + [ + "▁ordin", + "ary" + ], + [ + "▁ord", + "inary" + ], + [ + "▁", + "ordinary" + ], + [ + "one", + "d" + ], + [ + "on", + "ed" + ], + [ + "o", + "ned" + ], + [ + "▁altern", + "ate" + ], + [ + "so", + "r" + ], + [ + "s", + "or" + ], + [ + "▁lack", + "ed" + ], + [ + "▁l", + "acked" + ], + [ + "▁Es", + "c" + ], + [ + "▁E", + "sc" + ], + [ + "▁Ped", + "ro" + ], + [ + "▁nerv", + "ous" + ], + [ + "▁wor", + "n" + ], + [ + "▁w", + "orn" + ], + [ + "▁man", + "eu" + ], + [ + "ist", + "a" + ], + [ + "is", + "ta" + ], + [ + "i", + "sta" + ], + [ + "▁file", + "s" + ], + [ + "▁fil", + "es" + ], + [ + "▁fi", + "les" + ], + [ + "▁f", + "iles" + ], + [ + "▁response", + "s" + ], + [ + "▁respons", + "es" + ], + [ + "▁detect", + "ed" + ], + [ + "▁det", + "ected" + ], + [ + "▁fev", + "er" + ], + [ + "▁fe", + "ver" + ], + [ + "▁f", + "ever" + ], + [ + "▁Ka", + "n" + ], + [ + "▁K", + "an" + ], + [ + "▁Feder", + "ation" + ], + [ + "▁Fed", + "eration" + ], + [ + "r", + "h" + ], + [ + "▁te", + "a" + ], + [ + "▁t", + "ea" + ], + [ + "ock", + "et" + ], + [ + "▁tom", + "b" + ], + [ + "▁to", + "mb" + ], + [ + "▁t", + "omb" + ], + [ + "▁qu", + "e" + ], + [ + "▁q", + "ue" + ], + [ + "▁", + "que" + ], + [ + "▁conc", + "e" + ], + [ + "▁con", + "ce" + ], + [ + "▁co", + "nce" + ], + [ + "▁dim", + "in" + ], + [ + "▁di", + "min" + ], + [ + "▁d", + "imin" + ], + [ + "▁aff", + "air" + ], + [ + "bi", + "shop" + ], + [ + "b", + "ishop" + ], + [ + "▁Bri", + "g" + ], + [ + "▁Br", + "ig" + ], + [ + "▁B", + "rig" + ], + [ + "light", + "s" + ], + [ + "l", + "ights" + ], + [ + "▁flo", + "ur" + ], + [ + "▁fl", + "our" + ], + [ + "▁Play", + "er" + ], + [ + "▁Pl", + "ayer" + ], + [ + "▁P", + "layer" + ], + [ + "▁god", + "s" + ], + [ + "▁go", + "ds" + ], + [ + "▁g", + "ods" + ], + [ + "▁Blue", + "s" + ], + [ + "▁Blu", + "es" + ], + [ + "▁Bl", + "ues" + ], + [ + "▁found", + "ing" + ], + [ + "▁f", + "ounding" + ], + [ + "▁sudden", + "ly" + ], + [ + "▁Go", + "ogle" + ], + [ + "▁", + "Google" + ], + [ + "▁rac", + "ing" + ], + [ + "▁ra", + "cing" + ], + [ + "▁r", + "acing" + ], + [ + "▁hol", + "iday" + ], + [ + "▁ri", + "f" + ], + [ + "▁r", + "if" + ], + [ + "exp", + "ected" + ], + [ + "anne", + "r" + ], + [ + "ann", + "er" + ], + [ + "an", + "ner" + ], + [ + "▁advent", + "ure" + ], + [ + "▁Li", + "z" + ], + [ + "▁L", + "iz" + ], + [ + "▁I", + "l" + ], + [ + "onom", + "y" + ], + [ + "on", + "omy" + ], + [ + "▁pil", + "l" + ], + [ + "▁pi", + "ll" + ], + [ + "▁p", + "ill" + ], + [ + "▁", + "pill" + ], + [ + "▁mag", + "ic" + ], + [ + "▁ma", + "gic" + ], + [ + "ari", + "s" + ], + [ + "ar", + "is" + ], + [ + "a", + "ris" + ], + [ + "▁horr", + "or" + ], + [ + "▁hor", + "ror" + ], + [ + "▁mus", + "h" + ], + [ + "▁m", + "ush" + ], + [ + "▁k", + "onnen" + ], + [ + "▁Men", + "d" + ], + [ + "▁Me", + "nd" + ], + [ + "▁M", + "end" + ], + [ + "▁erect", + "ed" + ], + [ + "▁er", + "ected" + ], + [ + "▁L", + "t" + ], + [ + "▁Tok", + "yo" + ], + [ + "▁remnant", + "s" + ], + [ + "▁remn", + "ants" + ], + [ + "▁Loc", + "al" + ], + [ + "▁Lo", + "cal" + ], + [ + "▁L", + "ocal" + ], + [ + "▁Over", + "all" + ], + [ + "▁Championship", + "s" + ], + [ + "▁Champions", + "hips" + ], + [ + "▁publish", + "ing" + ], + [ + "▁publ", + "ishing" + ], + [ + "▁pres", + "erve" + ], + [ + "ont", + "al" + ], + [ + "on", + "tal" + ], + [ + "▁rel", + "ax" + ], + [ + "▁Barr", + "y" + ], + [ + "▁Bar", + "ry" + ], + [ + "▁B", + "arry" + ], + [ + "▁exclusive", + "ly" + ], + [ + "▁exclus", + "ively" + ], + [ + "▁comp", + "ilation" + ], + [ + "▁Ci", + "t" + ], + [ + "▁C", + "it" + ], + [ + "eta", + "ry" + ], + [ + "et", + "ary" + ], + [ + "▁Year", + "s" + ], + [ + "▁Ye", + "ars" + ], + [ + "▁Y", + "ears" + ], + [ + "▁cor", + "on" + ], + [ + "▁co", + "ron" + ], + [ + "▁Harv", + "ey" + ], + [ + "▁Har", + "vey" + ], + [ + "èn", + "e" + ], + [ + "è", + "ne" + ], + [ + "▁gif", + "t" + ], + [ + "▁g", + "ift" + ], + [ + "▁Vill", + "a" + ], + [ + "▁Vil", + "la" + ], + [ + "▁Vi", + "lla" + ], + [ + "▁V", + "illa" + ], + [ + "▁ch", + "ron" + ], + [ + "▁", + "chron" + ], + [ + "▁Eu", + "g" + ], + [ + "▁E", + "ug" + ], + [ + "▁N", + "ixon" + ], + [ + "▁chem", + "istry" + ], + [ + "op", + "l" + ], + [ + "o", + "pl" + ], + [ + "ug", + "g" + ], + [ + "u", + "gg" + ], + [ + "osp", + "el" + ], + [ + "▁Miss", + "ion" + ], + [ + "▁M", + "ission" + ], + [ + "▁challenge", + "d" + ], + [ + "▁challeng", + "ed" + ], + [ + "▁Ed", + "ge" + ], + [ + "▁or", + "ange" + ], + [ + "▁o", + "range" + ], + [ + ".", + ";" + ], + [ + "ch", + "i" + ], + [ + "c", + "hi" + ], + [ + "▁Ho", + "m" + ], + [ + "▁H", + "om" + ], + [ + "▁fund", + "ed" + ], + [ + "▁fun", + "ded" + ], + [ + "▁head", + "ing" + ], + [ + "▁he", + "ading" + ], + [ + "▁el", + "ig" + ], + [ + "▁e", + "lig" + ], + [ + "let", + "e" + ], + [ + "le", + "te" + ], + [ + "l", + "ete" + ], + [ + "▁incre", + "d" + ], + [ + "▁inc", + "red" + ], + [ + "9", + "5" + ], + [ + "▁Gre", + "y" + ], + [ + "▁Gr", + "ey" + ], + [ + "▁G", + "rey" + ], + [ + "▁crew", + "s" + ], + [ + "▁c", + "rews" + ], + [ + "s", + "m" + ], + [ + "▁voice", + "d" + ], + [ + "▁vo", + "iced" + ], + [ + "ert", + "s" + ], + [ + "er", + "ts" + ], + [ + "▁Cre", + "at" + ], + [ + "▁C", + "reat" + ], + [ + "▁Pa", + "s" + ], + [ + "▁P", + "as" + ], + [ + "▁Atl", + "anta" + ], + [ + "▁prev", + "al" + ], + [ + "▁pre", + "val" + ], + [ + "▁virtual", + "ly" + ], + [ + "▁virt", + "ually" + ], + [ + "▁break", + "s" + ], + [ + "▁bre", + "aks" + ], + [ + "▁promot", + "ing" + ], + [ + "▁prom", + "oting" + ], + [ + "▁16", + "5" + ], + [ + "▁1", + "65" + ], + [ + "atis", + "t" + ], + [ + "ati", + "st" + ], + [ + "at", + "ist" + ], + [ + "▁", + "Æ" + ], + [ + "▁w", + "ound" + ], + [ + "▁Be", + "gin" + ], + [ + "▁desire", + "d" + ], + [ + "▁des", + "ired" + ], + [ + "▁phenomen", + "on" + ], + [ + "▁car", + "ries" + ], + [ + "▁meas", + "uring" + ], + [ + "▁Austria", + "n" + ], + [ + "▁Aust", + "rian" + ], + [ + "▁Somet", + "imes" + ], + [ + "▁kn", + "ee" + ], + [ + "▁filt", + "er" + ], + [ + "▁fil", + "ter" + ], + [ + "▁l", + "ieutenant" + ], + [ + "▁talk", + "s" + ], + [ + "▁tal", + "ks" + ], + [ + "▁waters", + "hed" + ], + [ + "▁190", + "4" + ], + [ + "▁Del", + "aware" + ], + [ + "▁encoura", + "g" + ], + [ + "▁enc", + "ourag" + ], + [ + "▁travel", + "ing" + ], + [ + "▁trav", + "eling" + ], + [ + "▁di", + "ox" + ], + [ + "▁d", + "iox" + ], + [ + "▁fish", + "er" + ], + [ + "▁f", + "isher" + ], + [ + "ades", + "h" + ], + [ + "ade", + "sh" + ], + [ + "ad", + "esh" + ], + [ + "▁Ri", + "ng" + ], + [ + "▁R", + "ing" + ], + [ + "▁Gram", + "my" + ], + [ + "▁y", + "e" + ], + [ + "▁", + "ye" + ], + [ + "▁acknowledge", + "d" + ], + [ + "▁acknowled", + "ged" + ], + [ + "▁port", + "s" + ], + [ + "▁por", + "ts" + ], + [ + "▁p", + "orts" + ], + [ + "▁", + "ports" + ], + [ + "▁Hud", + "son" + ], + [ + "▁weak", + "ness" + ], + [ + "▁gri", + "d" + ], + [ + "▁gr", + "id" + ], + [ + "▁g", + "rid" + ], + [ + "spec", + "ies" + ], + [ + "spe", + "cies" + ], + [ + "▁Tam", + "il" + ], + [ + "▁acid", + "s" + ], + [ + "▁ac", + "ids" + ], + [ + "▁Inter", + "state" + ], + [ + "ca", + "se" + ], + [ + "c", + "ase" + ], + [ + "▁Min", + "d" + ], + [ + "▁Mi", + "nd" + ], + [ + "▁M", + "ind" + ], + [ + "▁thr", + "ew" + ], + [ + "▁th", + "rew" + ], + [ + "▁ta", + "p" + ], + [ + "▁t", + "ap" + ], + [ + "▁members", + "hip" + ], + [ + "▁member", + "ship" + ], + [ + "▁memb", + "ership" + ], + [ + "A", + "D" + ], + [ + "ap", + "y" + ], + [ + "a", + "py" + ], + [ + "▁More", + "over" + ], + [ + "▁overs", + "eas" + ], + [ + "▁neighb", + "our" + ], + [ + "▁neigh", + "bour" + ], + [ + "C", + "O" + ], + [ + "▁100", + "0" + ], + [ + "▁10", + "00" + ], + [ + "▁1", + "000" + ], + [ + "▁Ham", + "m" + ], + [ + "▁Ha", + "mm" + ], + [ + "▁H", + "amm" + ], + [ + "▁harv", + "est" + ], + [ + "▁har", + "vest" + ], + [ + "▁milit", + "ia" + ], + [ + "▁mil", + "itia" + ], + [ + "ru", + "n" + ], + [ + "r", + "un" + ], + [ + "▁arm", + "ies" + ], + [ + "▁Pri", + "v" + ], + [ + "▁Pr", + "iv" + ], + [ + "▁H", + "ockey" + ], + [ + "ta", + "ge" + ], + [ + "t", + "age" + ], + [ + "▁san", + "g" + ], + [ + "▁sa", + "ng" + ], + [ + "▁s", + "ang" + ], + [ + "▁Re", + "z" + ], + [ + "▁R", + "ez" + ], + [ + "▁drum", + "s" + ], + [ + "▁dr", + "ums" + ], + [ + "▁withdraw", + "al" + ], + [ + "▁den", + "t" + ], + [ + "▁de", + "nt" + ], + [ + "▁d", + "ent" + ], + [ + "▁Reserv", + "e" + ], + [ + "▁Res", + "erve" + ], + [ + "▁smok", + "ing" + ], + [ + "▁sm", + "oking" + ], + [ + "▁d", + "ancing" + ], + [ + "▁Train", + "ing" + ], + [ + "▁Tra", + "ining" + ], + [ + "▁Tr", + "aining" + ], + [ + "▁setting", + "s" + ], + [ + "▁sett", + "ings" + ], + [ + "ph", + "ony" + ], + [ + "▁11", + "5" + ], + [ + "▁1", + "15" + ], + [ + "▁thr", + "o" + ], + [ + "▁th", + "ro" + ], + [ + "pat", + "h" + ], + [ + "pa", + "th" + ], + [ + "p", + "ath" + ], + [ + "▁trou", + "b" + ], + [ + "▁tro", + "ub" + ], + [ + "▁tr", + "oub" + ], + [ + "▁univers", + "ities" + ], + [ + "▁P", + "y" + ], + [ + "▁me", + "s" + ], + [ + "▁m", + "es" + ], + [ + "▁", + "mes" + ], + [ + "▁attain", + "ed" + ], + [ + "▁att", + "ained" + ], + [ + "▁at", + "tained" + ], + [ + "▁pe", + "l" + ], + [ + "▁p", + "el" + ], + [ + "▁Labor", + "atory" + ], + [ + "▁ox", + "id" + ], + [ + "pt", + "ic" + ], + [ + "p", + "tic" + ], + [ + "▁approach", + "ing" + ], + [ + "▁appro", + "aching" + ], + [ + "▁bas", + "in" + ], + [ + "▁bor", + "row" + ], + [ + "▁b", + "orrow" + ], + [ + "▁Univers", + "al" + ], + [ + "ir", + "us" + ], + [ + "i", + "rus" + ], + [ + "▁Sa", + "c" + ], + [ + "▁S", + "ac" + ], + [ + "▁bo", + "ss" + ], + [ + "▁b", + "oss" + ], + [ + "▁Per", + "ry" + ], + [ + "▁variation", + "s" + ], + [ + "▁vari", + "ations" + ], + [ + "▁Pl", + "ace" + ], + [ + "▁Nat", + "ion" + ], + [ + "▁N", + "ation" + ], + [ + "▁Hamp", + "shire" + ], + [ + "▁refer", + "ring" + ], + [ + "▁consider", + "ation" + ], + [ + "▁consid", + "eration" + ], + [ + "ur", + "d" + ], + [ + "u", + "rd" + ], + [ + "▁cogn", + "itive" + ], + [ + "▁Ra", + "l" + ], + [ + "▁R", + "al" + ], + [ + "▁coc", + "k" + ], + [ + "▁co", + "ck" + ], + [ + "▁c", + "ock" + ], + [ + "▁", + "cock" + ], + [ + "▁myst", + "er" + ], + [ + "▁my", + "ster" + ], + [ + "v", + "o" + ], + [ + "▁mor", + "ph" + ], + [ + "▁m", + "orph" + ], + [ + "▁nerv", + "e" + ], + [ + "▁n", + "erve" + ], + [ + "▁belie", + "ving" + ], + [ + "lo", + "ck" + ], + [ + "l", + "ock" + ], + [ + "▁main", + "land" + ], + [ + "▁Fore", + "ign" + ], + [ + "▁For", + "eign" + ], + [ + "▁travel", + "s" + ], + [ + "▁trav", + "els" + ], + [ + "▁hand", + "ling" + ], + [ + "▁fert", + "il" + ], + [ + "▁fer", + "til" + ], + [ + "▁Critic", + "s" + ], + [ + "▁Crit", + "ics" + ], + [ + "▁constitution", + "al" + ], + [ + "▁con", + "stitutional" + ], + [ + "cl", + "ass" + ], + [ + "c", + "lass" + ], + [ + "▁Al", + "i" + ], + [ + "▁A", + "li" + ], + [ + "▁Inv", + "est" + ], + [ + "▁In", + "vest" + ], + [ + "▁Don", + "ald" + ], + [ + "▁D", + "onald" + ], + [ + "▁Ab", + "d" + ], + [ + "▁Ben", + "g" + ], + [ + "▁Be", + "ng" + ], + [ + "▁B", + "eng" + ], + [ + "▁image", + "ry" + ], + [ + "▁imag", + "ery" + ], + [ + "▁rem", + "ind" + ], + [ + "▁re", + "mind" + ], + [ + "ember", + "s" + ], + [ + "emb", + "ers" + ], + [ + "em", + "bers" + ], + [ + "▁wild", + "life" + ], + [ + "▁display", + "s" + ], + [ + "▁displ", + "ays" + ], + [ + "▁requ", + "iring" + ], + [ + "ua", + "ge" + ], + [ + "u", + "age" + ], + [ + "▁disco", + "nt" + ], + [ + "▁disc", + "ont" + ], + [ + "▁dis", + "cont" + ], + [ + "▁I", + "P" + ], + [ + "▁", + "IP" + ], + [ + "▁Napole", + "on" + ], + [ + "M", + "I" + ], + [ + "ison", + "s" + ], + [ + "is", + "ons" + ], + [ + "▁obs", + "c" + ], + [ + "▁ob", + "sc" + ], + [ + "▁trip", + "le" + ], + [ + "▁tri", + "ple" + ], + [ + "▁sun", + "g" + ], + [ + "▁su", + "ng" + ], + [ + "▁s", + "ung" + ], + [ + "▁Bo", + "x" + ], + [ + "▁B", + "ox" + ], + [ + "▁Med", + "al" + ], + [ + "▁Me", + "dal" + ], + [ + "▁add", + "s" + ], + [ + "▁ad", + "ds" + ], + [ + "ide", + "n" + ], + [ + "id", + "en" + ], + [ + "i", + "den" + ], + [ + "▁legisl", + "ature" + ], + [ + "rap", + "ped" + ], + [ + "ra", + "pped" + ], + [ + "r", + "apped" + ], + [ + "▁secret", + "ary" + ], + [ + "▁forg", + "et" + ], + [ + "▁for", + "get" + ], + [ + "▁bear", + "s" + ], + [ + "▁be", + "ars" + ], + [ + "▁b", + "ears" + ], + [ + "▁Am", + "b" + ], + [ + "▁A", + "mb" + ], + [ + "▁stop", + "s" + ], + [ + "▁st", + "ops" + ], + [ + "azine", + "s" + ], + [ + "azi", + "nes" + ], + [ + "az", + "ines" + ], + [ + "s", + "is" + ], + [ + "▁Turk", + "ey" + ], + [ + "▁Tur", + "key" + ], + [ + "▁report", + "ing" + ], + [ + "▁fr", + "ig" + ], + [ + "▁f", + "rig" + ], + [ + "▁Mi", + "k" + ], + [ + "▁M", + "ik" + ], + [ + "elin", + "g" + ], + [ + "eli", + "ng" + ], + [ + "el", + "ing" + ], + [ + "e", + "ling" + ], + [ + "idan", + "ce" + ], + [ + "ida", + "nce" + ], + [ + "id", + "ance" + ], + [ + "9", + "9" + ], + [ + "▁atom", + "ic" + ], + [ + "▁at", + "omic" + ], + [ + "isher", + "s" + ], + [ + "ish", + "ers" + ], + [ + "is", + "hers" + ], + [ + "▁vot", + "ing" + ], + [ + "▁vo", + "ting" + ], + [ + "▁v", + "oting" + ], + [ + "▁uncle", + "ar" + ], + [ + "▁feed", + "back" + ], + [ + "▁attend", + "ing" + ], + [ + "▁att", + "ending" + ], + [ + "▁bi", + "o" + ], + [ + "▁b", + "io" + ], + [ + "▁Ind", + "ies" + ], + [ + "ou", + "ch" + ], + [ + "o", + "uch" + ], + [ + "▁lot", + "s" + ], + [ + "▁lo", + "ts" + ], + [ + "▁l", + "ots" + ], + [ + "▁Bak", + "er" + ], + [ + "▁Ba", + "ker" + ], + [ + "▁B", + "aker" + ], + [ + "▁back", + "ed" + ], + [ + "▁b", + "acked" + ], + [ + "▁vi", + "g" + ], + [ + "▁v", + "ig" + ], + [ + "▁vert", + "e" + ], + [ + "▁ver", + "te" + ], + [ + "▁conf", + "usion" + ], + [ + "istic", + "al" + ], + [ + "ist", + "ical" + ], + [ + "▁ho", + "sp" + ], + [ + "▁h", + "osp" + ], + [ + "iph", + "er" + ], + [ + "ip", + "her" + ], + [ + "▁armor", + "ed" + ], + [ + "▁arm", + "ored" + ], + [ + "▁Y", + "ellow" + ], + [ + "▁strong", + "est" + ], + [ + "it", + "ative" + ], + [ + "▁I", + "N" + ], + [ + "▁", + "IN" + ], + [ + "vers", + "e" + ], + [ + "ver", + "se" + ], + [ + "v", + "erse" + ], + [ + "▁human", + "ity" + ], + [ + "▁commit", + "ment" + ], + [ + "▁volunteer", + "s" + ], + [ + "▁volunte", + "ers" + ], + [ + "▁cha", + "nt" + ], + [ + "▁ch", + "ant" + ], + [ + "▁", + "chant" + ], + [ + "▁dens", + "e" + ], + [ + "▁den", + "se" + ], + [ + "▁d", + "ense" + ], + [ + "ori", + "a" + ], + [ + "or", + "ia" + ], + [ + "o", + "ria" + ], + [ + "▁cut", + "s" + ], + [ + "▁cu", + "ts" + ], + [ + "▁c", + "uts" + ], + [ + "▁theat", + "er" + ], + [ + "▁the", + "ater" + ], + [ + "▁Organ", + "ization" + ], + [ + "▁C", + "S" + ], + [ + "▁", + "CS" + ], + [ + "▁pro", + "x" + ], + [ + "▁pr", + "ox" + ], + [ + "▁p", + "rox" + ], + [ + "▁host", + "s" + ], + [ + "▁ho", + "sts" + ], + [ + "▁document", + "ed" + ], + [ + "▁struggle", + "d" + ], + [ + "▁strugg", + "led" + ], + [ + "▁0", + "7" + ], + [ + "▁park", + "s" + ], + [ + "▁par", + "ks" + ], + [ + "▁p", + "arks" + ], + [ + "▁strengthen", + "ed" + ], + [ + "▁strength", + "ened" + ], + [ + "apo", + "lis" + ], + [ + "ap", + "olis" + ], + [ + "▁Pitt", + "s" + ], + [ + "▁Pit", + "ts" + ], + [ + "▁exhib", + "it" + ], + [ + "▁Pol", + "l" + ], + [ + "▁Po", + "ll" + ], + [ + "▁P", + "oll" + ], + [ + "yr", + "am" + ], + [ + "y", + "ram" + ], + [ + "as", + "a" + ], + [ + "a", + "sa" + ], + [ + "▁Produ", + "ct" + ], + [ + "▁Pro", + "duct" + ], + [ + "emi", + "a" + ], + [ + "em", + "ia" + ], + [ + "e", + "mia" + ], + [ + "▁dent", + "al" + ], + [ + "▁den", + "tal" + ], + [ + "▁d", + "ental" + ], + [ + "▁remov", + "ing" + ], + [ + "▁M", + "i" + ], + [ + "▁E", + "P" + ], + [ + "▁", + "EP" + ], + [ + "▁Jo", + "y" + ], + [ + "▁J", + "oy" + ], + [ + "itate", + "d" + ], + [ + "ita", + "ted" + ], + [ + "it", + "ated" + ], + [ + "▁scient", + "ist" + ], + [ + "ager", + "s" + ], + [ + "age", + "rs" + ], + [ + "ag", + "ers" + ], + [ + "a", + "gers" + ], + [ + "▁last", + "ing" + ], + [ + "▁las", + "ting" + ], + [ + "▁l", + "asting" + ], + [ + "▁cos", + "m" + ], + [ + "▁co", + "sm" + ], + [ + "▁c", + "osm" + ], + [ + "z", + "o" + ], + [ + "ance", + "ll" + ], + [ + "anc", + "ell" + ], + [ + "an", + "cell" + ], + [ + "▁sc", + "attered" + ], + [ + "▁Sa", + "y" + ], + [ + "▁S", + "ay" + ], + [ + "▁creature", + "s" + ], + [ + "▁creat", + "ures" + ], + [ + "▁cre", + "atures" + ], + [ + "▁mill", + "imet" + ], + [ + "▁Mur", + "phy" + ], + [ + "▁Cent", + "ury" + ], + [ + "▁objective", + "s" + ], + [ + "▁object", + "ives" + ], + [ + "▁implement", + "ation" + ], + [ + "D", + "F" + ], + [ + "iff", + "s" + ], + [ + "if", + "fs" + ], + [ + "▁fire", + "s" + ], + [ + "▁fi", + "res" + ], + [ + "▁f", + "ires" + ], + [ + "▁", + "fires" + ], + [ + "▁Ath", + "let" + ], + [ + "▁A", + "thlet" + ], + [ + "▁Ric", + "o" + ], + [ + "▁Ri", + "co" + ], + [ + "▁R", + "ico" + ], + [ + "c", + "ut" + ], + [ + "▁F", + "u" + ], + [ + "▁Kr", + "a" + ], + [ + "▁K", + "ra" + ], + [ + "▁line", + "ar" + ], + [ + "▁lin", + "ear" + ], + [ + "▁back", + "ing" + ], + [ + "▁b", + "acking" + ], + [ + "▁Ut", + "ah" + ], + [ + "▁architect", + "ural" + ], + [ + "▁guide", + "lines" + ], + [ + "▁gu", + "idelines" + ], + [ + "n", + "i" + ], + [ + "▁trib", + "e" + ], + [ + "▁tri", + "be" + ], + [ + "▁t", + "ribe" + ], + [ + "▁consp", + "ir" + ], + [ + "▁cons", + "pir" + ], + [ + "▁accel", + "er" + ], + [ + "▁acc", + "eler" + ], + [ + "▁Z", + "e" + ], + [ + "▁argument", + "s" + ], + [ + "▁argu", + "ments" + ], + [ + "▁arg", + "uments" + ], + [ + "▁en", + "v" + ], + [ + "▁Man", + "s" + ], + [ + "▁Ma", + "ns" + ], + [ + "▁M", + "ans" + ], + [ + "▁surface", + "s" + ], + [ + "▁surf", + "aces" + ], + [ + "▁movie", + "s" + ], + [ + "▁mov", + "ies" + ], + [ + "▁listen", + "ing" + ], + [ + "▁list", + "ening" + ], + [ + "▁Conserv", + "ation" + ], + [ + "▁Cons", + "ervation" + ], + [ + "eye", + "r" + ], + [ + "ey", + "er" + ], + [ + "e", + "yer" + ], + [ + "▁Han", + "n" + ], + [ + "▁H", + "ann" + ], + [ + "out", + "ing" + ], + [ + "ou", + "ting" + ], + [ + "o", + "uting" + ], + [ + "4", + "7" + ], + [ + "▁k", + "W" + ], + [ + "▁respect", + "ive" + ], + [ + "▁resp", + "ective" + ], + [ + "▁res", + "pective" + ], + [ + "ada", + "l" + ], + [ + "ad", + "al" + ], + [ + "a", + "dal" + ], + [ + "▁gra", + "in" + ], + [ + "▁gr", + "ain" + ], + [ + "▁g", + "rain" + ], + [ + "▁answer", + "s" + ], + [ + "▁answ", + "ers" + ], + [ + "▁ins", + "isted" + ], + [ + "▁We", + "d" + ], + [ + "▁W", + "ed" + ], + [ + "▁wars", + "hip" + ], + [ + "▁war", + "ship" + ], + [ + "A", + "P" + ], + [ + "ro", + "v" + ], + [ + "r", + "ov" + ], + [ + "th", + "odox" + ], + [ + "▁argu", + "e" + ], + [ + "▁arg", + "ue" + ], + [ + "▁ar", + "gue" + ], + [ + "▁John", + "ny" + ], + [ + "▁Du", + "b" + ], + [ + "▁D", + "ub" + ], + [ + "▁farm", + "ing" + ], + [ + "▁far", + "ming" + ], + [ + "rimin", + "ation" + ], + [ + "rim", + "ination" + ], + [ + "r", + "imination" + ], + [ + "▁inter", + "medi" + ], + [ + "▁print", + "ing" + ], + [ + "▁Si", + "g" + ], + [ + "▁S", + "ig" + ], + [ + "▁Li", + "on" + ], + [ + "▁L", + "ion" + ], + [ + "▁hon", + "ey" + ], + [ + "▁ho", + "ney" + ], + [ + "▁h", + "oney" + ], + [ + "▁qu", + "ad" + ], + [ + "▁cott", + "on" + ], + [ + "▁c", + "otton" + ], + [ + "▁organ", + "s" + ], + [ + "▁or", + "gans" + ], + [ + "▁Mos", + "c" + ], + [ + "▁Mo", + "sc" + ], + [ + "▁M", + "osc" + ], + [ + "▁advise", + "d" + ], + [ + "▁advis", + "ed" + ], + [ + "▁adv", + "ised" + ], + [ + "▁cancell", + "ed" + ], + [ + "▁cancel", + "led" + ], + [ + "▁canc", + "elled" + ], + [ + "▁disag", + "re" + ], + [ + "▁pri", + "est" + ], + [ + "▁pr", + "iest" + ], + [ + "▁Mc", + "M" + ], + [ + "▁Ap", + "oll" + ], + [ + "▁gold", + "en" + ], + [ + "▁Ful", + "l" + ], + [ + "▁Fu", + "ll" + ], + [ + "▁F", + "ull" + ], + [ + "▁190", + "1" + ], + [ + "▁conf", + "ron" + ], + [ + "ou", + "b" + ], + [ + "o", + "ub" + ], + [ + "▁186", + "0" + ], + [ + "▁18", + "60" + ], + [ + "▁Ju", + "n" + ], + [ + "▁J", + "un" + ], + [ + "▁To", + "b" + ], + [ + "▁T", + "ob" + ], + [ + "▁sec", + "t" + ], + [ + "▁se", + "ct" + ], + [ + "▁s", + "ect" + ], + [ + "▁", + "sect" + ], + [ + "▁wor", + "s" + ], + [ + "▁w", + "ors" + ], + [ + "▁Arn", + "old" + ], + [ + "▁Ar", + "nold" + ], + [ + "amma", + "r" + ], + [ + "amm", + "ar" + ], + [ + "am", + "mar" + ], + [ + "▁people", + "s" + ], + [ + "▁pe", + "oples" + ], + [ + "▁commun", + "icate" + ], + [ + "▁arrangement", + "s" + ], + [ + "▁arrange", + "ments" + ], + [ + "▁arrang", + "ements" + ], + [ + "▁", + ">" + ], + [ + "▁dis", + "l" + ], + [ + "▁di", + "sl" + ], + [ + "▁d", + "isl" + ], + [ + "▁Rail", + "road" + ], + [ + "▁co", + "w" + ], + [ + "▁c", + "ow" + ], + [ + "▁Kir", + "k" + ], + [ + "▁K", + "irk" + ], + [ + "▁Mu", + "ham" + ], + [ + "ris", + "e" + ], + [ + "ri", + "se" + ], + [ + "r", + "ise" + ], + [ + "▁bomb", + "s" + ], + [ + "▁bom", + "bs" + ], + [ + "▁know", + "ing" + ], + [ + "▁kn", + "owing" + ], + [ + "▁mon", + "aster" + ], + [ + "▁W", + "ol" + ], + [ + "▁rel", + "y" + ], + [ + "▁re", + "ly" + ], + [ + "▁r", + "ely" + ], + [ + "▁focus", + "ing" + ], + [ + "▁foc", + "using" + ], + [ + "▁ban", + "ned" + ], + [ + "▁b", + "anned" + ], + [ + "▁confron", + "t" + ], + [ + "▁conf", + "ront" + ], + [ + "▁con", + "front" + ], + [ + "▁birth", + "day" + ], + [ + "▁exclus", + "ive" + ], + [ + "▁ex", + "clusive" + ], + [ + "▁o", + "v" + ], + [ + "▁", + "ov" + ], + [ + "O", + "L" + ], + [ + "▁Ha", + "z" + ], + [ + "▁H", + "az" + ], + [ + "▁Grad", + "e" + ], + [ + "▁Gra", + "de" + ], + [ + "▁Gr", + "ade" + ], + [ + "▁corpor", + "ate" + ], + [ + "▁corp", + "orate" + ], + [ + "▁veget", + "ation" + ], + [ + "▁apart", + "ment" + ], + [ + "▁ap", + "artment" + ], + [ + "▁Son", + "y" + ], + [ + "▁So", + "ny" + ], + [ + "▁S", + "ony" + ], + [ + "empl", + "oy" + ], + [ + "em", + "ploy" + ], + [ + "eno", + "v" + ], + [ + "en", + "ov" + ], + [ + "▁Wa", + "g" + ], + [ + "▁W", + "ag" + ], + [ + "▁Sy", + "ria" + ], + [ + "▁interpret", + "ed" + ], + [ + "▁interpre", + "ted" + ], + [ + "end", + "a" + ], + [ + "en", + "da" + ], + [ + "▁Ex", + "ec" + ], + [ + "ic", + "ular" + ], + [ + "ir", + "s" + ], + [ + "i", + "rs" + ], + [ + "ear", + "ed" + ], + [ + "ea", + "red" + ], + [ + "e", + "ared" + ], + [ + "▁Jim", + "my" + ], + [ + "▁fab", + "ric" + ], + [ + "▁Philipp", + "e" + ], + [ + "▁Philip", + "pe" + ], + [ + "▁pol", + "e" + ], + [ + "▁po", + "le" + ], + [ + "▁p", + "ole" + ], + [ + "▁", + "pole" + ], + [ + "▁un", + "expected" + ], + [ + "▁terra", + "in" + ], + [ + "▁terr", + "ain" + ], + [ + "▁ter", + "rain" + ], + [ + "enb", + "erg" + ], + [ + "en", + "berg" + ], + [ + "▁help", + "ful" + ], + [ + "ouv", + "er" + ], + [ + "ou", + "ver" + ], + [ + "▁initi", + "ative" + ], + [ + "irt", + "s" + ], + [ + "ir", + "ts" + ], + [ + "anto", + "n" + ], + [ + "ant", + "on" + ], + [ + "an", + "ton" + ], + [ + "▁att", + "orney" + ], + [ + "▁relative", + "s" + ], + [ + "▁relat", + "ives" + ], + [ + "▁rel", + "atives" + ], + [ + "▁tale", + "nt" + ], + [ + "▁tal", + "ent" + ], + [ + "▁impress", + "ion" + ], + [ + "▁impr", + "ession" + ], + [ + "▁imp", + "ression" + ], + [ + "▁s", + "q" + ], + [ + "▁lanm", + "è" + ], + [ + "▁Di", + "am" + ], + [ + "▁D", + "iam" + ], + [ + "▁stret", + "ch" + ], + [ + "▁que", + "en" + ], + [ + "▁qu", + "een" + ], + [ + "▁crime", + "s" + ], + [ + "▁cr", + "imes" + ], + [ + "▁aer", + "ial" + ], + [ + "▁excess", + "ive" + ], + [ + "▁exc", + "essive" + ], + [ + "▁gu", + "st" + ], + [ + "▁g", + "ust" + ], + [ + "▁aff", + "ili" + ], + [ + "▁D", + "S" + ], + [ + "▁", + "DS" + ], + [ + "▁d", + "a" + ], + [ + "▁", + "da" + ], + [ + "▁Des", + "c" + ], + [ + "▁De", + "sc" + ], + [ + "▁D", + "esc" + ], + [ + "▁conflict", + "s" + ], + [ + "▁Fi", + "sh" + ], + [ + "▁F", + "ish" + ], + [ + "▁auto", + "bi" + ], + [ + "▁aut", + "obi" + ], + [ + "▁predecess", + "or" + ], + [ + "▁fe", + "d" + ], + [ + "▁f", + "ed" + ], + [ + "▁ma", + "d" + ], + [ + "▁m", + "ad" + ], + [ + "▁", + "mad" + ], + [ + "▁Chan", + "g" + ], + [ + "▁Cha", + "ng" + ], + [ + "▁Ch", + "ang" + ], + [ + "▁Indones", + "ia" + ], + [ + "▁surprise", + "d" + ], + [ + "▁surpris", + "ed" + ], + [ + "ol", + "ving" + ], + [ + "▁calculate", + "d" + ], + [ + "▁calc", + "ulated" + ], + [ + "▁E", + "y" + ], + [ + "▁Dee", + "p" + ], + [ + "▁De", + "ep" + ], + [ + "ro", + "e" + ], + [ + "r", + "oe" + ], + [ + "▁north", + "ward" + ], + [ + "▁professional", + "s" + ], + [ + "▁profession", + "als" + ], + [ + "ode", + "d" + ], + [ + "od", + "ed" + ], + [ + "o", + "ded" + ], + [ + "▁is", + "ot" + ], + [ + "▁alg", + "orith" + ], + [ + "▁notice", + "d" + ], + [ + "▁not", + "iced" + ], + [ + "▁rider", + "s" + ], + [ + "▁ride", + "rs" + ], + [ + "▁rid", + "ers" + ], + [ + "▁ri", + "ders" + ], + [ + "▁r", + "iders" + ], + [ + "▁trans", + "p" + ], + [ + "▁tran", + "sp" + ], + [ + "▁west", + "ward" + ], + [ + "2", + ")" + ], + [ + "onia", + "n" + ], + [ + "oni", + "an" + ], + [ + "on", + "ian" + ], + [ + "o", + "nian" + ], + [ + "▁warm", + "ing" + ], + [ + "▁war", + "ming" + ], + [ + "▁benefic", + "ial" + ], + [ + "▁benef", + "icial" + ], + [ + "▁bene", + "ficial" + ], + [ + "▁restriction", + "s" + ], + [ + "▁restrict", + "ions" + ], + [ + "▁auth", + "en" + ], + [ + "▁aut", + "hen" + ], + [ + "▁au", + "then" + ], + [ + "▁mechanism", + "s" + ], + [ + "▁mechan", + "isms" + ], + [ + "▁shall", + "ow" + ], + [ + "▁mathematic", + "s" + ], + [ + "▁mathemat", + "ics" + ], + [ + "▁or", + "n" + ], + [ + "▁", + "orn" + ], + [ + "▁lane", + "s" + ], + [ + "▁lan", + "es" + ], + [ + "▁la", + "nes" + ], + [ + "▁l", + "anes" + ], + [ + "rib", + "e" + ], + [ + "ri", + "be" + ], + [ + "▁Muslim", + "s" + ], + [ + "▁Musl", + "ims" + ], + [ + "▁tour", + "ing" + ], + [ + "▁tou", + "ring" + ], + [ + "▁to", + "uring" + ], + [ + "▁Rac", + "e" + ], + [ + "▁Ra", + "ce" + ], + [ + "▁R", + "ace" + ], + [ + "▁Hawai", + "i" + ], + [ + "▁Les", + "lie" + ], + [ + "us", + "c" + ], + [ + "u", + "sc" + ], + [ + "oth", + "y" + ], + [ + "ot", + "hy" + ], + [ + "o", + "thy" + ], + [ + "▁door", + "s" + ], + [ + "▁do", + "ors" + ], + [ + "▁", + "doors" + ], + [ + "enn", + "ium" + ], + [ + "▁ch", + "lor" + ], + [ + "▁Los", + "t" + ], + [ + "▁Lo", + "st" + ], + [ + "▁L", + "ost" + ], + [ + "▁Edward", + "s" + ], + [ + "▁Ed", + "wards" + ], + [ + "4", + "6" + ], + [ + "▁Hal", + "o" + ], + [ + "▁Ha", + "lo" + ], + [ + "▁H", + "alo" + ], + [ + "▁rec", + "ycl" + ], + [ + "▁re", + "cycl" + ], + [ + "▁rel", + "iable" + ], + [ + "▁Not", + "e" + ], + [ + "▁No", + "te" + ], + [ + "▁N", + "ote" + ], + [ + "▁Mont", + "e" + ], + [ + "▁Mon", + "te" + ], + [ + "▁M", + "onte" + ], + [ + "▁Read", + "ing" + ], + [ + "▁Re", + "ading" + ], + [ + "▁absol", + "ute" + ], + [ + "eth", + "eless" + ], + [ + "et", + "heless" + ], + [ + "e", + "theless" + ], + [ + "▁dy", + "ing" + ], + [ + "▁d", + "ying" + ], + [ + "▁lic", + "ense" + ], + [ + "▁St", + "u" + ], + [ + "▁deep", + "er" + ], + [ + "▁de", + "eper" + ], + [ + "▁organ", + "ised" + ], + [ + "▁consider", + "s" + ], + [ + "▁consid", + "ers" + ], + [ + "▁cons", + "iders" + ], + [ + "▁real", + "ize" + ], + [ + "R", + "C" + ], + [ + "wi", + "th" + ], + [ + "w", + "ith" + ], + [ + "▁rec", + "on" + ], + [ + "▁re", + "con" + ], + [ + "gh", + "t" + ], + [ + "g", + "ht" + ], + [ + "▁ren", + "ov" + ], + [ + "▁r", + "enov" + ], + [ + "▁fat", + "e" + ], + [ + "▁fa", + "te" + ], + [ + "▁f", + "ate" + ], + [ + "▁ass", + "ign" + ], + [ + "▁diox", + "ide" + ], + [ + "▁di", + "oxide" + ], + [ + "▁ekri", + "ven" + ], + [ + "▁ek", + "riven" + ], + [ + "▁overc", + "ome" + ], + [ + "▁over", + "come" + ], + [ + "▁my", + "self" + ], + [ + "▁m", + "yself" + ], + [ + "▁sur", + "pass" + ], + [ + "▁battalion", + "s" + ], + [ + "▁batt", + "alions" + ], + [ + "▁conscious", + "ness" + ], + [ + "▁remark", + "ed" + ], + [ + "▁rem", + "arked" + ], + [ + "▁spec", + "imen" + ], + [ + "▁garden", + "s" + ], + [ + "▁gard", + "ens" + ], + [ + "ro", + "us" + ], + [ + "r", + "ous" + ], + [ + "▁Beau", + "t" + ], + [ + "▁Bea", + "ut" + ], + [ + "▁Be", + "aut" + ], + [ + "ID", + "S" + ], + [ + "I", + "DS" + ], + [ + "an", + "z" + ], + [ + "▁i", + "on" + ], + [ + "▁", + "ion" + ], + [ + "▁Pi", + "c" + ], + [ + "▁P", + "ic" + ], + [ + "▁Gar", + "y" + ], + [ + "▁Ga", + "ry" + ], + [ + "▁G", + "ary" + ], + [ + "▁emerg", + "ing" + ], + [ + "▁emer", + "ging" + ], + [ + "acc", + "o" + ], + [ + "ac", + "co" + ], + [ + "anger", + "ed" + ], + [ + "ange", + "red" + ], + [ + "ang", + "ered" + ], + [ + "3", + "7" + ], + [ + "go", + "v" + ], + [ + "g", + "ov" + ], + [ + "▁bre", + "ad" + ], + [ + "▁br", + "ead" + ], + [ + "▁b", + "read" + ], + [ + "▁ac", + "ou" + ], + [ + "▁Surv", + "ey" + ], + [ + "▁Sur", + "vey" + ], + [ + "▁Te", + "d" + ], + [ + "▁T", + "ed" + ], + [ + "▁190", + "3" + ], + [ + "▁tra", + "ct" + ], + [ + "▁tr", + "act" + ], + [ + "▁t", + "ract" + ], + [ + "▁Pear", + "l" + ], + [ + "idi", + "ty" + ], + [ + "id", + "ity" + ], + [ + "A", + "L" + ], + [ + "▁pin", + "k" + ], + [ + "▁p", + "ink" + ], + [ + "▁Phoen", + "ix" + ], + [ + "▁sub", + "species" + ], + [ + "▁correspond", + "ing" + ], + [ + "▁Si", + "t" + ], + [ + "▁S", + "it" + ], + [ + "▁Che", + "l" + ], + [ + "▁Ch", + "el" + ], + [ + "▁C", + "hel" + ], + [ + "▁Le", + "m" + ], + [ + "▁L", + "em" + ], + [ + "▁assemble", + "d" + ], + [ + "▁assemb", + "led" + ], + [ + "▁rebell", + "ion" + ], + [ + "▁lo", + "ud" + ], + [ + "▁l", + "oud" + ], + [ + "▁could", + "n" + ], + [ + "iction", + "ary" + ], + [ + "irm", + "s" + ], + [ + "ir", + "ms" + ], + [ + "▁ass", + "ert" + ], + [ + "▁hope", + "s" + ], + [ + "▁hop", + "es" + ], + [ + "▁ho", + "pes" + ], + [ + "▁h", + "opes" + ], + [ + "▁devote", + "d" + ], + [ + "▁dev", + "oted" + ], + [ + "▁enl", + "isted" + ], + [ + "▁flags", + "hip" + ], + [ + "▁flag", + "ship" + ], + [ + "ming", + "ham" + ], + [ + "m", + "ingham" + ], + [ + "▁magazine", + "s" + ], + [ + "▁mag", + "azines" + ], + [ + "▁medication", + "s" + ], + [ + "▁medic", + "ations" + ], + [ + "▁med", + "ications" + ], + [ + "▁transport", + "ed" + ], + [ + "▁transp", + "orted" + ], + [ + "▁trans", + "ported" + ], + [ + "▁incl", + "usion" + ], + [ + "▁in", + "clusion" + ], + [ + "cial", + "ly" + ], + [ + "ci", + "ally" + ], + [ + "c", + "ially" + ], + [ + "8", + "8" + ], + [ + "▁bomb", + "ing" + ], + [ + "▁bom", + "bing" + ], + [ + "▁Broad", + "way" + ], + [ + "▁separ", + "ation" + ], + [ + "asc", + "ular" + ], + [ + "▁Flor", + "e" + ], + [ + "▁Fl", + "ore" + ], + [ + "▁F", + "lore" + ], + [ + "▁ab", + "norm" + ], + [ + "▁introdu", + "ce" + ], + [ + "▁Israel", + "i" + ], + [ + "▁g", + "if" + ], + [ + "▁don", + "ated" + ], + [ + "uk", + "i" + ], + [ + "u", + "ki" + ], + [ + "▁15", + "5" + ], + [ + "▁1", + "55" + ], + [ + "▁Pas", + "t" + ], + [ + "▁Pa", + "st" + ], + [ + "▁P", + "ast" + ], + [ + "▁dress", + "ed" + ], + [ + "▁dr", + "essed" + ], + [ + "▁d", + "ressed" + ], + [ + "▁compet", + "ing" + ], + [ + "ni", + "k" + ], + [ + "n", + "ik" + ], + [ + "rib", + "le" + ], + [ + "ri", + "ble" + ], + [ + "r", + "ible" + ], + [ + "▁pen", + "t" + ], + [ + "▁pe", + "nt" + ], + [ + "▁p", + "ent" + ], + [ + "▁", + "pent" + ], + [ + "▁cat", + "al" + ], + [ + "▁ca", + "tal" + ], + [ + "▁c", + "atal" + ], + [ + "▁young", + "est" + ], + [ + "W", + "C" + ], + [ + "▁pa", + "j" + ], + [ + "▁p", + "aj" + ], + [ + "▁Victoria", + "n" + ], + [ + "▁Victor", + "ian" + ], + [ + "▁Vict", + "orian" + ], + [ + "▁Ra", + "n" + ], + [ + "▁R", + "an" + ], + [ + "be", + "l" + ], + [ + "b", + "el" + ], + [ + "▁rule", + "r" + ], + [ + "▁rul", + "er" + ], + [ + "▁ru", + "ler" + ], + [ + "▁physical", + "ly" + ], + [ + "▁physic", + "ally" + ], + [ + "▁phys", + "ically" + ], + [ + "R", + "E" + ], + [ + "▁Wat", + "ch" + ], + [ + "▁W", + "atch" + ], + [ + "▁enthus", + "i" + ], + [ + "▁Ant", + "ar" + ], + [ + "▁An", + "tar" + ], + [ + "▁cast", + "ing" + ], + [ + "▁cas", + "ting" + ], + [ + "▁c", + "asting" + ], + [ + "▁f", + "o" + ], + [ + "▁", + "fo" + ], + [ + "▁update", + "d" + ], + [ + "▁upd", + "ated" + ], + [ + "▁graduate", + "d" + ], + [ + "▁grad", + "uated" + ], + [ + "ü", + "r" + ], + [ + "▁measurement", + "s" + ], + [ + "▁measure", + "ments" + ], + [ + "ole", + "n" + ], + [ + "ol", + "en" + ], + [ + "o", + "len" + ], + [ + "str", + "ong" + ], + [ + "st", + "rong" + ], + [ + "▁ce", + "ns" + ], + [ + "▁c", + "ens" + ], + [ + "▁Girl", + "s" + ], + [ + "▁Gir", + "ls" + ], + [ + "▁So", + "m" + ], + [ + "▁S", + "om" + ], + [ + "▁en", + "act" + ], + [ + "▁an", + "e" + ], + [ + "▁a", + "ne" + ], + [ + "▁", + "ane" + ], + [ + "▁Other", + "s" + ], + [ + "▁Ot", + "hers" + ], + [ + "han", + "d" + ], + [ + "ha", + "nd" + ], + [ + "h", + "and" + ], + [ + "ude", + "d" + ], + [ + "ud", + "ed" + ], + [ + "u", + "ded" + ], + [ + "▁sh", + "aft" + ], + [ + "les", + "h" + ], + [ + "le", + "sh" + ], + [ + "l", + "esh" + ], + [ + "▁Turn", + "er" + ], + [ + "▁Tur", + "ner" + ], + [ + "▁voice", + "s" + ], + [ + "▁vo", + "ices" + ], + [ + "▁target", + "ed" + ], + [ + "▁Bat", + "h" + ], + [ + "▁Ba", + "th" + ], + [ + "▁B", + "ath" + ], + [ + "▁bel", + "l" + ], + [ + "▁be", + "ll" + ], + [ + "▁b", + "ell" + ], + [ + "▁", + "bell" + ], + [ + "▁arm", + "our" + ], + [ + "▁ar", + "mour" + ], + [ + "▁Engineer", + "ing" + ], + [ + "▁Engine", + "ering" + ], + [ + "▁Nichol", + "as" + ], + [ + "▁Nich", + "olas" + ], + [ + "▁manag", + "ing" + ], + [ + "▁man", + "aging" + ], + [ + "▁Ke", + "ith" + ], + [ + "ort", + "ion" + ], + [ + "▁ph", + "osph" + ], + [ + "▁circ", + "ular" + ], + [ + "▁arm", + "ament" + ], + [ + "▁Muham", + "mad" + ], + [ + "ader", + "s" + ], + [ + "ade", + "rs" + ], + [ + "ad", + "ers" + ], + [ + "a", + "ders" + ], + [ + "▁Hen", + "ri" + ], + [ + "▁pri", + "ze" + ], + [ + "▁pr", + "ize" + ], + [ + "is", + "y" + ], + [ + "i", + "sy" + ], + [ + "▁190", + "2" + ], + [ + "art", + "ney" + ], + [ + "▁Un", + "til" + ], + [ + "▁Argent", + "ina" + ], + [ + "▁predator", + "s" + ], + [ + "▁pred", + "ators" + ], + [ + "▁Got", + "h" + ], + [ + "▁Go", + "th" + ], + [ + "▁G", + "oth" + ], + [ + "▁Sch", + "e" + ], + [ + "▁Sc", + "he" + ], + [ + "▁S", + "che" + ], + [ + "▁mar", + "g" + ], + [ + "ute", + "ly" + ], + [ + "ut", + "ely" + ], + [ + "▁Trad", + "e" + ], + [ + "▁Tra", + "de" + ], + [ + "▁Tr", + "ade" + ], + [ + "▁Peter", + "s" + ], + [ + "▁Pete", + "rs" + ], + [ + "▁Pet", + "ers" + ], + [ + "▁Pe", + "ters" + ], + [ + "▁P", + "eters" + ], + [ + "▁sul", + "f" + ], + [ + "▁s", + "ulf" + ], + [ + "▁dynam", + "ic" + ], + [ + "▁dyn", + "amic" + ], + [ + "▁mammal", + "s" + ], + [ + "▁mamm", + "als" + ], + [ + "▁rec", + "onnaissance" + ], + [ + "▁breath", + "ing" + ], + [ + "▁breat", + "hing" + ], + [ + "▁interview", + "s" + ], + [ + "▁En", + "t" + ], + [ + "▁E", + "nt" + ], + [ + "▁Sou", + "t" + ], + [ + "▁So", + "ut" + ], + [ + "▁S", + "out" + ], + [ + "▁chap", + "el" + ], + [ + "▁d", + "y" + ], + [ + "▁", + "dy" + ], + [ + "ci", + "es" + ], + [ + "c", + "ies" + ], + [ + "▁Sou", + "l" + ], + [ + "▁So", + "ul" + ], + [ + "▁S", + "oul" + ], + [ + "▁Hu", + "r" + ], + [ + "▁H", + "ur" + ], + [ + "▁Main", + "e" + ], + [ + "▁Ma", + "ine" + ], + [ + "▁M", + "aine" + ], + [ + "▁Tod", + "d" + ], + [ + "▁To", + "dd" + ], + [ + "icia", + "l" + ], + [ + "ici", + "al" + ], + [ + "ic", + "ial" + ], + [ + "i", + "cial" + ], + [ + "▁Hol", + "d" + ], + [ + "▁Ho", + "ld" + ], + [ + "▁H", + "old" + ], + [ + "▁Sol", + "ar" + ], + [ + "▁So", + "lar" + ], + [ + "▁S", + "olar" + ], + [ + "▁Le", + "x" + ], + [ + "▁L", + "ex" + ], + [ + "▁veloc", + "ity" + ], + [ + "▁Am", + "endment" + ], + [ + "os", + "ion" + ], + [ + "▁fail", + "ing" + ], + [ + "▁fa", + "iling" + ], + [ + "▁f", + "ailing" + ], + [ + "▁space", + "craft" + ], + [ + "▁overl", + "ook" + ], + [ + "▁over", + "look" + ], + [ + "bin", + "g" + ], + [ + "bi", + "ng" + ], + [ + "b", + "ing" + ], + [ + "ament", + "s" + ], + [ + "amen", + "ts" + ], + [ + "am", + "ents" + ], + [ + "a", + "ments" + ], + [ + "▁Coll", + "ins" + ], + [ + "▁35", + "0" + ], + [ + "▁3", + "50" + ], + [ + "asc", + "ar" + ], + [ + "as", + "car" + ], + [ + "▁an", + "lè" + ], + [ + "▁post", + "s" + ], + [ + "▁pos", + "ts" + ], + [ + "▁po", + "sts" + ], + [ + "▁screen", + "ing" + ], + [ + "▁Fi", + "l" + ], + [ + "▁F", + "il" + ], + [ + "▁Nin", + "e" + ], + [ + "▁Ni", + "ne" + ], + [ + "▁N", + "ine" + ], + [ + "▁column", + "s" + ], + [ + "▁T", + "ogether" + ], + [ + "▁law", + "yer" + ], + [ + "ura", + "s" + ], + [ + "ur", + "as" + ], + [ + "u", + "ras" + ], + [ + "▁Mark", + "et" + ], + [ + "▁Luk", + "e" + ], + [ + "▁Lu", + "ke" + ], + [ + "▁L", + "uke" + ], + [ + "▁fing", + "er" + ], + [ + "▁fin", + "ger" + ], + [ + "▁f", + "inger" + ], + [ + "▁", + "finger" + ], + [ + "▁defend", + "ing" + ], + [ + "▁def", + "ending" + ], + [ + "ni", + "a" + ], + [ + "n", + "ia" + ], + [ + "▁ba", + "b" + ], + [ + "▁b", + "ab" + ], + [ + "▁W", + "or" + ], + [ + "▁celebr", + "ate" + ], + [ + "▁celeb", + "rate" + ], + [ + "▁cele", + "brate" + ], + [ + "▁comfort", + "able" + ], + [ + "▁Ka", + "m" + ], + [ + "▁K", + "am" + ], + [ + "▁spot", + "s" + ], + [ + "▁spo", + "ts" + ], + [ + "▁sp", + "ots" + ], + [ + "▁ca", + "m" + ], + [ + "▁c", + "am" + ], + [ + "▁collapse", + "d" + ], + [ + "▁collaps", + "ed" + ], + [ + "▁Abb", + "ey" + ], + [ + "▁Stud", + "y" + ], + [ + "▁Stu", + "dy" + ], + [ + "▁Up", + "per" + ], + [ + "▁U", + "pper" + ], + [ + "▁assum", + "e" + ], + [ + "▁ass", + "ume" + ], + [ + "▁pay", + "ing" + ], + [ + "▁pa", + "ying" + ], + [ + "▁p", + "aying" + ], + [ + "▁Oliv", + "er" + ], + [ + "▁Ol", + "iver" + ], + [ + "▁aut", + "umn" + ], + [ + "ori", + "c" + ], + [ + "or", + "ic" + ], + [ + "o", + "ric" + ], + [ + "fol", + "k" + ], + [ + "f", + "olk" + ], + [ + "is", + "ition" + ], + [ + "▁asset", + "s" + ], + [ + "▁ass", + "ets" + ], + [ + "▁ca", + "d" + ], + [ + "▁c", + "ad" + ], + [ + "▁Hug", + "h" + ], + [ + "▁Hu", + "gh" + ], + [ + "▁explor", + "ation" + ], + [ + "▁explo", + "ration" + ], + [ + "▁expl", + "oration" + ], + [ + "▁i", + "P" + ], + [ + "▁Ko", + "n" + ], + [ + "▁K", + "on" + ], + [ + "▁tekn", + "ik" + ], + [ + "▁In", + "v" + ], + [ + "▁accur", + "acy" + ], + [ + "ult", + "an" + ], + [ + "▁Sha", + "w" + ], + [ + "▁Sh", + "aw" + ], + [ + "▁S", + "haw" + ], + [ + "anc", + "ouver" + ], + [ + "▁educate", + "d" + ], + [ + "▁educ", + "ated" + ], + [ + "▁coun", + "sel" + ], + [ + "ato", + "es" + ], + [ + "at", + "oes" + ], + [ + "annel", + "s" + ], + [ + "anne", + "ls" + ], + [ + "ann", + "els" + ], + [ + "an", + "nels" + ], + [ + "▁she", + "ep" + ], + [ + "yle", + "r" + ], + [ + "yl", + "er" + ], + [ + "y", + "ler" + ], + [ + "oc", + "ent" + ], + [ + "o", + "cent" + ], + [ + "▁sal", + "v" + ], + [ + "▁sa", + "lv" + ], + [ + "▁writing", + "s" + ], + [ + "▁writ", + "ings" + ], + [ + "▁Bir", + "mingham" + ], + [ + "▁al", + "arm" + ], + [ + "▁may", + "or" + ], + [ + "▁nob", + "le" + ], + [ + "▁no", + "ble" + ], + [ + "▁legisl", + "ative" + ], + [ + "4", + "9" + ], + [ + "▁185", + "0" + ], + [ + "▁18", + "50" + ], + [ + "▁prove", + "n" + ], + [ + "▁prov", + "en" + ], + [ + "▁pro", + "ven" + ], + [ + "▁pr", + "oven" + ], + [ + "▁hon", + "est" + ], + [ + "▁ho", + "nest" + ], + [ + "▁Franç", + "ois" + ], + [ + "▁Un", + "f" + ], + [ + "▁bowl", + "ing" + ], + [ + "▁bow", + "ling" + ], + [ + "▁daughter", + "s" + ], + [ + "▁d", + "aughters" + ], + [ + "▁announce", + "ment" + ], + [ + "▁cl", + "ay" + ], + [ + "▁c", + "lay" + ], + [ + "▁corp", + "s" + ], + [ + "▁cor", + "ps" + ], + [ + "▁c", + "orps" + ], + [ + "▁abs", + "ent" + ], + [ + "▁receive", + "s" + ], + [ + "▁recei", + "ves" + ], + [ + "▁rece", + "ives" + ], + [ + "mat", + "h" + ], + [ + "ma", + "th" + ], + [ + "m", + "ath" + ], + [ + "▁Res", + "p" + ], + [ + "▁Re", + "sp" + ], + [ + "▁R", + "esp" + ], + [ + "▁May", + "a" + ], + [ + "▁Ma", + "ya" + ], + [ + "▁M", + "aya" + ], + [ + "at", + "ra" + ], + [ + "a", + "tra" + ], + [ + "▁Su", + "g" + ], + [ + "▁S", + "ug" + ], + [ + "▁sw", + "it" + ], + [ + "▁canc", + "el" + ], + [ + "▁can", + "cel" + ], + [ + "▁prosp", + "er" + ], + [ + "▁pros", + "per" + ], + [ + "ours", + "e" + ], + [ + "our", + "se" + ], + [ + "o", + "urse" + ], + [ + "▁nic", + "e" + ], + [ + "▁ni", + "ce" + ], + [ + "▁n", + "ice" + ], + [ + "iti", + "c" + ], + [ + "it", + "ic" + ], + [ + "i", + "tic" + ], + [ + "▁Le", + "v" + ], + [ + "▁L", + "ev" + ], + [ + "▁virt", + "ual" + ], + [ + "▁T", + "u" + ], + [ + "▁Act", + "ion" + ], + [ + "▁A", + "ction" + ], + [ + "▁fe", + "e" + ], + [ + "▁f", + "ee" + ], + [ + "▁ki", + "ss" + ], + [ + "▁k", + "iss" + ], + [ + "▁province", + "s" + ], + [ + "▁prov", + "inces" + ], + [ + "▁Ru", + "d" + ], + [ + "▁R", + "ud" + ], + [ + "▁Commun", + "ist" + ], + [ + "reg", + "ular" + ], + [ + "▁mine", + "ral" + ], + [ + "▁min", + "eral" + ], + [ + "fe", + "ld" + ], + [ + "f", + "eld" + ], + [ + "▁extend", + "ing" + ], + [ + "▁ext", + "ending" + ], + [ + "▁m", + "èt" + ], + [ + "▁Dak", + "ota" + ], + [ + "▁chart", + "er" + ], + [ + "▁char", + "ter" + ], + [ + "▁ch", + "arter" + ], + [ + "▁demol", + "ished" + ], + [ + "▁demo", + "lished" + ], + [ + "▁traditional", + "ly" + ], + [ + "▁tradition", + "ally" + ], + [ + "▁direction", + "s" + ], + [ + "▁direct", + "ions" + ], + [ + "▁dire", + "ctions" + ], + [ + "ism", + "an" + ], + [ + "is", + "man" + ], + [ + "▁war", + "ri" + ], + [ + "8", + "5" + ], + [ + "▁loc", + "k" + ], + [ + "▁lo", + "ck" + ], + [ + "▁l", + "ock" + ], + [ + "▁", + "lock" + ], + [ + "▁sc", + "ar" + ], + [ + "▁s", + "car" + ], + [ + "▁Way", + "ne" + ], + [ + "se", + "ud" + ], + [ + "▁enable", + "d" + ], + [ + "▁en", + "abled" + ], + [ + "▁prov", + "incial" + ], + [ + "▁revis", + "ed" + ], + [ + "▁rev", + "ised" + ], + [ + "▁highway", + "s" + ], + [ + "▁high", + "ways" + ], + [ + "the", + "l" + ], + [ + "th", + "el" + ], + [ + "t", + "hel" + ], + [ + "▁Gra", + "y" + ], + [ + "▁Gr", + "ay" + ], + [ + "▁G", + "ray" + ], + [ + "rect", + "ion" + ], + [ + "re", + "ction" + ], + [ + "r", + "ection" + ], + [ + "▁V", + "ancouver" + ], + [ + "▁cer", + "e" + ], + [ + "▁ce", + "re" + ], + [ + "▁c", + "ere" + ], + [ + "▁fun", + "ny" + ], + [ + "▁Ja", + "r" + ], + [ + "▁J", + "ar" + ], + [ + "▁plate", + "s" + ], + [ + "▁plat", + "es" + ], + [ + "▁pl", + "ates" + ], + [ + "▁Or", + "i" + ], + [ + "▁O", + "ri" + ], + [ + "▁Elect", + "ric" + ], + [ + "▁E", + "lectric" + ], + [ + "▁Che", + "s" + ], + [ + "▁Ch", + "es" + ], + [ + "▁C", + "hes" + ], + [ + "▁friends", + "hip" + ], + [ + "▁friend", + "ship" + ], + [ + "▁ton", + "nes" + ], + [ + "▁t", + "onnes" + ], + [ + "ink", + "s" + ], + [ + "in", + "ks" + ], + [ + "ple", + "r" + ], + [ + "pl", + "er" + ], + [ + "p", + "ler" + ], + [ + "▁comment", + "ary" + ], + [ + "▁require", + "ment" + ], + [ + "▁Fil", + "es" + ], + [ + "▁Fi", + "les" + ], + [ + "▁F", + "iles" + ], + [ + "▁as", + "ide" + ], + [ + "▁a", + "side" + ], + [ + "ily", + "en" + ], + [ + "il", + "yen" + ], + [ + "▁ste", + "ep" + ], + [ + "▁A", + "qu" + ], + [ + "▁expectation", + "s" + ], + [ + "▁expect", + "ations" + ], + [ + "vent", + "h" + ], + [ + "ven", + "th" + ], + [ + "v", + "enth" + ], + [ + "▁Ty", + "p" + ], + [ + "▁T", + "yp" + ], + [ + "▁Par", + "s" + ], + [ + "▁Pa", + "rs" + ], + [ + "▁P", + "ars" + ], + [ + "6", + "5" + ], + [ + "▁Ba", + "pt" + ], + [ + "▁B", + "apt" + ], + [ + "▁Ed", + "in" + ], + [ + "▁E", + "din" + ], + [ + "▁Mad", + "ag" + ], + [ + "▁defin", + "e" + ], + [ + "▁def", + "ine" + ], + [ + "▁wick", + "et" + ], + [ + "▁handle", + "d" + ], + [ + "▁hand", + "led" + ], + [ + "▁Ba", + "k" + ], + [ + "▁B", + "ak" + ], + [ + "▁open", + "s" + ], + [ + "▁op", + "ens" + ], + [ + "▁end", + "ors" + ], + [ + "▁ratio", + "nal" + ], + [ + "▁rat", + "ional" + ], + [ + "▁r", + "ational" + ], + [ + "ef", + "f" + ], + [ + "e", + "ff" + ], + [ + "▁Dal", + "l" + ], + [ + "▁Da", + "ll" + ], + [ + "▁D", + "all" + ], + [ + "▁jur", + "y" + ], + [ + "▁ju", + "ry" + ], + [ + "▁j", + "ury" + ], + [ + "te", + "gr" + ], + [ + "▁Bac", + "h" + ], + [ + "▁Ba", + "ch" + ], + [ + "▁B", + "ach" + ], + [ + "▁Dr", + "ive" + ], + [ + "A", + "l" + ], + [ + "▁du", + "al" + ], + [ + "▁d", + "ual" + ], + [ + "cr", + "u" + ], + [ + "c", + "ru" + ], + [ + "▁Villa", + "ge" + ], + [ + "▁Vill", + "age" + ], + [ + "▁Enter", + "prise" + ], + [ + "▁cur", + "ve" + ], + [ + "▁outcome", + "s" + ], + [ + "▁outc", + "omes" + ], + [ + "▁out", + "comes" + ], + [ + "▁destroy", + "ing" + ], + [ + "▁hybr", + "id" + ], + [ + "▁immigrant", + "s" + ], + [ + "▁imm", + "igrants" + ], + [ + "oti", + "ng" + ], + [ + "ot", + "ing" + ], + [ + "o", + "ting" + ], + [ + "▁ty", + "phoon" + ], + [ + "fl", + "y" + ], + [ + "f", + "ly" + ], + [ + "iner", + "y" + ], + [ + "ine", + "ry" + ], + [ + "in", + "ery" + ], + [ + "i", + "nery" + ], + [ + "int", + "ed" + ], + [ + "in", + "ted" + ], + [ + "▁Fig", + "ht" + ], + [ + "▁Fi", + "ght" + ], + [ + "▁F", + "ight" + ], + [ + "▁active", + "ly" + ], + [ + "▁activ", + "ely" + ], + [ + "▁act", + "ively" + ], + [ + "ulator", + "y" + ], + [ + "ul", + "atory" + ], + [ + "▁seize", + "d" + ], + [ + "▁seiz", + "ed" + ], + [ + "▁se", + "ized" + ], + [ + "onal", + "d" + ], + [ + "ona", + "ld" + ], + [ + "on", + "ald" + ], + [ + "▁grav", + "e" + ], + [ + "▁gra", + "ve" + ], + [ + "▁gr", + "ave" + ], + [ + "ane", + "ous" + ], + [ + "an", + "eous" + ], + [ + "▁vary", + "ing" + ], + [ + "▁var", + "ying" + ], + [ + "▁va", + "rying" + ], + [ + "▁Ab", + "ra" + ], + [ + "▁A", + "bra" + ], + [ + "▁bi", + "shop" + ], + [ + "▁b", + "ishop" + ], + [ + "▁", + "bishop" + ], + [ + "▁consumer", + "s" + ], + [ + "▁consume", + "rs" + ], + [ + "▁consum", + "ers" + ], + [ + "▁pre", + "l" + ], + [ + "▁pr", + "el" + ], + [ + "▁p", + "rel" + ], + [ + "ci", + "ence" + ], + [ + "c", + "ience" + ], + [ + "▁ident", + "ification" + ], + [ + "l", + "u" + ], + [ + "erve", + "r" + ], + [ + "erv", + "er" + ], + [ + "er", + "ver" + ], + [ + "▁protect", + "ing" + ], + [ + "▁regard", + "less" + ], + [ + "▁it", + "em" + ], + [ + "▁con", + "greg" + ], + [ + "▁local", + "ly" + ], + [ + "▁loc", + "ally" + ], + [ + "▁achieve", + "ment" + ], + [ + "▁achie", + "vement" + ], + [ + "▁music", + "ian" + ], + [ + "▁mus", + "ician" + ], + [ + "▁180", + "0" + ], + [ + "▁18", + "00" + ], + [ + "cycl", + "op" + ], + [ + "▁Chi", + "le" + ], + [ + "▁Ch", + "ile" + ], + [ + "▁prevent", + "ion" + ], + [ + "▁prev", + "ention" + ], + [ + "▁pre", + "vention" + ], + [ + "▁Mosc", + "ow" + ], + [ + "▁Ha", + "d" + ], + [ + "▁H", + "ad" + ], + [ + "▁mas", + "k" + ], + [ + "▁ma", + "sk" + ], + [ + "▁m", + "ask" + ], + [ + "▁collection", + "s" + ], + [ + "▁collect", + "ions" + ], + [ + "▁colle", + "ctions" + ], + [ + "ew", + "ise" + ], + [ + "e", + "wise" + ], + [ + "▁All", + "ies" + ], + [ + "▁Al", + "lies" + ], + [ + "▁Pa", + "m" + ], + [ + "▁P", + "am" + ], + [ + "▁wa", + "ke" + ], + [ + "▁w", + "ake" + ], + [ + "▁brill", + "iant" + ], + [ + "▁explain", + "ing" + ], + [ + "▁expl", + "aining" + ], + [ + "▁development", + "s" + ], + [ + "▁develop", + "ments" + ], + [ + "▁panel", + "s" + ], + [ + "▁pan", + "els" + ], + [ + "▁pa", + "nels" + ], + [ + "▁recommendation", + "s" + ], + [ + "▁recommend", + "ations" + ], + [ + "▁On", + "line" + ], + [ + "▁deb", + "ris" + ], + [ + "▁gra", + "n" + ], + [ + "▁gr", + "an" + ], + [ + "▁g", + "ran" + ], + [ + "▁error", + "s" + ], + [ + "▁err", + "ors" + ], + [ + "▁er", + "rors" + ], + [ + "▁tele", + "sc" + ], + [ + "▁tel", + "esc" + ], + [ + "▁hypothes", + "is" + ], + [ + "▁pra", + "y" + ], + [ + "▁pr", + "ay" + ], + [ + "▁p", + "ray" + ], + [ + "▁metal", + "s" + ], + [ + "▁met", + "als" + ], + [ + "▁regist", + "er" + ], + [ + "▁reg", + "ister" + ], + [ + "oke", + "r" + ], + [ + "ok", + "er" + ], + [ + "o", + "ker" + ], + [ + "▁Pa", + "d" + ], + [ + "▁P", + "ad" + ], + [ + "▁orchest", + "ra" + ], + [ + "ze", + "s" + ], + [ + "z", + "es" + ], + [ + "▁U", + "k" + ], + [ + "▁Sw", + "iss" + ], + [ + "▁compl", + "iment" + ], + [ + "osaur", + "s" + ], + [ + "osa", + "urs" + ], + [ + "▁follow", + "ers" + ], + [ + "▁foll", + "owers" + ], + [ + "▁analy", + "s" + ], + [ + "▁anal", + "ys" + ], + [ + "▁cons", + "ole" + ], + [ + "▁con", + "sole" + ], + [ + "▁elimin", + "ate" + ], + [ + ".", + "5" + ], + [ + "k", + "t" + ], + [ + "▁Cra", + "ig" + ], + [ + "▁ups", + "et" + ], + [ + "▁up", + "set" + ], + [ + "▁Di", + "n" + ], + [ + "▁D", + "in" + ], + [ + "▁Ek", + "ip" + ], + [ + "▁peak", + "ing" + ], + [ + "▁pe", + "aking" + ], + [ + "▁block", + "ed" + ], + [ + "▁bl", + "ocked" + ], + [ + "▁Cant", + "er" + ], + [ + "▁Can", + "ter" + ], + [ + "▁vers", + "us" + ], + [ + "▁adequ", + "ate" + ], + [ + "ows", + "ki" + ], + [ + "ow", + "ski" + ], + [ + "▁Origin", + "al" + ], + [ + "▁Orig", + "inal" + ], + [ + "D", + "P" + ], + [ + "reen", + "s" + ], + [ + "ree", + "ns" + ], + [ + "re", + "ens" + ], + [ + "▁Pr", + "uss" + ], + [ + "▁being", + "s" + ], + [ + "▁be", + "ings" + ], + [ + "▁stat", + "istics" + ], + [ + "elf", + "are" + ], + [ + "el", + "fare" + ], + [ + "▁97", + "8" + ], + [ + "▁9", + "78" + ], + [ + "▁Cy", + "cl" + ], + [ + "▁C", + "ycl" + ], + [ + "▁vari", + "es" + ], + [ + "▁var", + "ies" + ], + [ + "▁va", + "ries" + ], + [ + "▁v", + "aries" + ], + [ + "▁Ral", + "ph" + ], + [ + "▁Democrat", + "s" + ], + [ + "▁Democr", + "ats" + ], + [ + "▁accompany", + "ing" + ], + [ + "▁accompan", + "ying" + ], + [ + "▁Hon", + "or" + ], + [ + "▁Ho", + "nor" + ], + [ + "ati", + "s" + ], + [ + "at", + "is" + ], + [ + "▁char", + "ity" + ], + [ + "▁ch", + "arity" + ], + [ + "▁Ta", + "i" + ], + [ + "▁T", + "ai" + ], + [ + "ct", + "ive" + ], + [ + "is", + "ode" + ], + [ + "▁Boy", + "s" + ], + [ + "▁Bo", + "ys" + ], + [ + "▁B", + "oys" + ], + [ + "▁enorm", + "ous" + ], + [ + "▁Vie", + "w" + ], + [ + "▁Vi", + "ew" + ], + [ + "▁V", + "iew" + ], + [ + "▁ma", + "il" + ], + [ + "▁m", + "ail" + ], + [ + "▁", + "mail" + ], + [ + "▁perm", + "it" + ], + [ + "▁per", + "mit" + ], + [ + "▁gu", + "idance" + ], + [ + "▁impress", + "ive" + ], + [ + "▁impr", + "essive" + ], + [ + "▁imp", + "ressive" + ], + [ + "▁red", + "e" + ], + [ + "▁re", + "de" + ], + [ + "▁r", + "ede" + ], + [ + "▁priorit", + "y" + ], + [ + "▁prior", + "ity" + ], + [ + "ig", + "ation" + ], + [ + "▁sav", + "ing" + ], + [ + "▁sa", + "ving" + ], + [ + "▁s", + "aving" + ], + [ + "▁akt", + "è" + ], + [ + "▁ak", + "tè" + ], + [ + "▁a", + "ktè" + ], + [ + "ha", + "r" + ], + [ + "h", + "ar" + ], + [ + "ab", + "ul" + ], + [ + "a", + "bul" + ], + [ + "go", + "n" + ], + [ + "g", + "on" + ], + [ + "▁fe", + "st" + ], + [ + "▁f", + "est" + ], + [ + "▁p", + "y" + ], + [ + "▁", + "py" + ], + [ + "▁dy", + "s" + ], + [ + "▁d", + "ys" + ], + [ + "▁eng", + "aging" + ], + [ + "▁farm", + "s" + ], + [ + "▁far", + "ms" + ], + [ + "▁f", + "arms" + ], + [ + "▁rej", + "yon" + ], + [ + "▁Fish", + "er" + ], + [ + "▁F", + "isher" + ], + [ + "▁rid", + "ing" + ], + [ + "▁ri", + "ding" + ], + [ + "▁r", + "iding" + ], + [ + "▁quarter", + "back" + ], + [ + "▁effective", + "ness" + ], + [ + "▁effect", + "iveness" + ], + [ + "▁datab", + "ase" + ], + [ + "▁data", + "base" + ], + [ + "▁Tra", + "il" + ], + [ + "▁Tr", + "ail" + ], + [ + "▁hill", + "s" + ], + [ + "▁h", + "ills" + ], + [ + "▁repl", + "ied" + ], + [ + "▁rep", + "lied" + ], + [ + "▁var", + "ieties" + ], + [ + "▁amp", + "h" + ], + [ + "▁am", + "ph" + ], + [ + "▁a", + "mph" + ], + [ + "▁", + "amph" + ], + [ + "▁tal", + "e" + ], + [ + "▁ta", + "le" + ], + [ + "▁t", + "ale" + ], + [ + "ipe", + "r" + ], + [ + "ip", + "er" + ], + [ + "i", + "per" + ], + [ + "▁Ho", + "b" + ], + [ + "▁H", + "ob" + ], + [ + "▁Sp", + "art" + ], + [ + "▁S", + "part" + ], + [ + "▁Fig", + "ure" + ], + [ + "▁", + "Figure" + ], + [ + "▁Man", + "uel" + ], + [ + "ne", + "t" + ], + [ + "n", + "et" + ], + [ + "▁bo", + "ot" + ], + [ + "▁b", + "oot" + ], + [ + "hi", + "n" + ], + [ + "h", + "in" + ], + [ + "izer", + "s" + ], + [ + "ize", + "rs" + ], + [ + "iz", + "ers" + ], + [ + "▁station", + "ed" + ], + [ + "▁stat", + "ioned" + ], + [ + "▁Anc", + "ient" + ], + [ + "▁An", + "cient" + ], + [ + "▁hit", + "ting" + ], + [ + "▁h", + "itting" + ], + [ + "▁Wal", + "t" + ], + [ + "▁W", + "alt" + ], + [ + "aya", + "n" + ], + [ + "ay", + "an" + ], + [ + "a", + "yan" + ], + [ + "rus", + "t" + ], + [ + "ru", + "st" + ], + [ + "r", + "ust" + ], + [ + "tain", + "s" + ], + [ + "ta", + "ins" + ], + [ + "t", + "ains" + ], + [ + "uss", + "ion" + ], + [ + "▁Common", + "s" + ], + [ + "▁Comm", + "ons" + ], + [ + "▁Com", + "mons" + ], + [ + "▁Os", + "c" + ], + [ + "▁O", + "sc" + ], + [ + "▁Ri", + "h" + ], + [ + "▁R", + "ih" + ], + [ + "ori", + "g" + ], + [ + "or", + "ig" + ], + [ + "o", + "rig" + ], + [ + "ann", + "on" + ], + [ + "an", + "non" + ], + [ + "▁dub", + "bed" + ], + [ + "ose", + "xual" + ], + [ + "▁pi", + "bl" + ], + [ + "▁p", + "ibl" + ], + [ + "▁calc", + "ium" + ], + [ + "▁Edin", + "burgh" + ], + [ + "▁dom", + "ain" + ], + [ + "▁lif", + "t" + ], + [ + "▁li", + "ft" + ], + [ + "▁l", + "ift" + ], + [ + "▁war", + "s" + ], + [ + "▁wa", + "rs" + ], + [ + "▁w", + "ars" + ], + [ + "▁Tw", + "itter" + ], + [ + "▁R", + "y" + ], + [ + "▁Ne", + "v" + ], + [ + "▁N", + "ev" + ], + [ + "▁gain", + "ing" + ], + [ + "▁ga", + "ining" + ], + [ + "▁g", + "aining" + ], + [ + "▁k", + "reyòl" + ], + [ + "▁associ", + "ate" + ], + [ + "▁substit", + "ute" + ], + [ + "▁sub", + "stitute" + ], + [ + "▁Bal", + "d" + ], + [ + "▁Ba", + "ld" + ], + [ + "▁B", + "ald" + ], + [ + "▁Tre", + "e" + ], + [ + "▁Tr", + "ee" + ], + [ + "▁T", + "ree" + ], + [ + "▁Ae", + "r" + ], + [ + "▁A", + "er" + ], + [ + "▁tri", + "gg" + ], + [ + "▁tr", + "igg" + ], + [ + "▁suspect", + "ed" + ], + [ + "▁susp", + "ected" + ], + [ + "▁question", + "ed" + ], + [ + "▁quest", + "ioned" + ], + [ + "raw", + "n" + ], + [ + "ra", + "wn" + ], + [ + "r", + "awn" + ], + [ + "▁ind", + "irect" + ], + [ + "▁tactic", + "s" + ], + [ + "▁tact", + "ics" + ], + [ + "▁Def", + "ence" + ], + [ + "▁harm", + "ful" + ], + [ + "▁Cel", + "t" + ], + [ + "▁C", + "elt" + ], + [ + "▁Tra", + "cy" + ], + [ + "▁Tr", + "acy" + ], + [ + "▁T", + "racy" + ], + [ + "▁Morris", + "on" + ], + [ + "▁Mor", + "rison" + ], + [ + "▁bon", + "us" + ], + [ + "▁theor", + "et" + ], + [ + "▁the", + "oret" + ], + [ + "▁m", + "ud" + ], + [ + "▁Chap", + "ter" + ], + [ + "▁inflamm", + "ation" + ], + [ + "▁provision", + "s" + ], + [ + "▁prov", + "isions" + ], + [ + "▁Tab", + "le" + ], + [ + "▁Ta", + "ble" + ], + [ + "▁T", + "able" + ], + [ + "▁clear", + "ed" + ], + [ + "▁cle", + "ared" + ], + [ + "▁cl", + "eared" + ], + [ + "▁je", + "t" + ], + [ + "▁j", + "et" + ], + [ + "▁tap", + "e" + ], + [ + "▁ta", + "pe" + ], + [ + "▁t", + "ape" + ], + [ + "▁http", + "s" + ], + [ + "▁htt", + "ps" + ], + [ + "▁O", + "m" + ], + [ + "▁t", + "a" + ], + [ + "▁", + "ta" + ], + [ + "▁raid", + "s" + ], + [ + "▁ra", + "ids" + ], + [ + "▁cease", + "d" + ], + [ + "▁ce", + "ased" + ], + [ + "▁consume", + "r" + ], + [ + "▁consum", + "er" + ], + [ + "▁cons", + "umer" + ], + [ + "aj", + "a" + ], + [ + "a", + "ja" + ], + [ + "▁Pra", + "ct" + ], + [ + "▁Pr", + "act" + ], + [ + "▁P", + "ract" + ], + [ + "▁Camp", + "aign" + ], + [ + "▁So", + "ph" + ], + [ + "▁S", + "oph" + ], + [ + "▁fac", + "ulty" + ], + [ + "▁war", + "fare" + ], + [ + "▁Tan", + "k" + ], + [ + "▁T", + "ank" + ], + [ + "▁Rih", + "anna" + ], + [ + "▁Ri", + "hanna" + ], + [ + "▁evacuate", + "d" + ], + [ + "▁evac", + "uated" + ], + [ + "▁blo", + "w" + ], + [ + "▁bl", + "ow" + ], + [ + "▁b", + "low" + ], + [ + "▁c", + "inem" + ], + [ + "ass", + "ador" + ], + [ + "▁W", + "oman" + ], + [ + "▁exam", + "ine" + ], + [ + "▁ex", + "amine" + ], + [ + "▁channel", + "s" + ], + [ + "▁ch", + "annels" + ], + [ + "▁success", + "ion" + ], + [ + "▁succ", + "ession" + ], + [ + "▁fant", + "asy" + ], + [ + "▁f", + "antasy" + ], + [ + "▁W", + "a" + ], + [ + "▁Ve", + "l" + ], + [ + "▁V", + "el" + ], + [ + "▁cab", + "le" + ], + [ + "▁ca", + "ble" + ], + [ + "▁c", + "able" + ], + [ + "ational", + "ly" + ], + [ + "ation", + "ally" + ], + [ + "▁Base", + "ball" + ], + [ + "aut", + "ical" + ], + [ + "▁cons", + "olid" + ], + [ + "▁displace", + "d" + ], + [ + "▁displ", + "aced" + ], + [ + "▁absorb", + "ed" + ], + [ + "▁absor", + "bed" + ], + [ + "▁A", + "x" + ], + [ + "▁Gat", + "e" + ], + [ + "▁Ga", + "te" + ], + [ + "▁G", + "ate" + ], + [ + "▁Ter", + "m" + ], + [ + "▁Te", + "rm" + ], + [ + "▁T", + "erm" + ], + [ + "▁Fin", + "land" + ], + [ + "▁every", + "day" + ], + [ + "▁politician", + "s" + ], + [ + "▁polit", + "icians" + ], + [ + "▁consequ", + "ence" + ], + [ + "ira", + "tes" + ], + [ + "ir", + "ates" + ], + [ + "i", + "rates" + ], + [ + "▁conce", + "ived" + ], + [ + "▁con", + "ceived" + ], + [ + "▁discover", + "s" + ], + [ + "▁disco", + "vers" + ], + [ + "▁disc", + "overs" + ], + [ + "▁Charl", + "otte" + ], + [ + "▁N", + "S" + ], + [ + "▁", + "NS" + ], + [ + "ares", + "t" + ], + [ + "are", + "st" + ], + [ + "ar", + "est" + ], + [ + "a", + "rest" + ], + [ + "▁any", + "where" + ], + [ + "▁crit", + "eria" + ], + [ + "▁Heb", + "rew" + ], + [ + "▁migr", + "ation" + ], + [ + "▁mig", + "ration" + ], + [ + "▁m", + "igration" + ], + [ + "▁segment", + "s" + ], + [ + "▁seg", + "ments" + ], + [ + "▁Do", + "d" + ], + [ + "▁D", + "od" + ], + [ + "▁Bom", + "b" + ], + [ + "▁Bo", + "mb" + ], + [ + "▁B", + "omb" + ], + [ + "▁Ri", + "ght" + ], + [ + "▁R", + "ight" + ], + [ + "▁Canter", + "bury" + ], + [ + "et", + "o" + ], + [ + "e", + "to" + ], + [ + "lean", + "s" + ], + [ + "le", + "ans" + ], + [ + "▁Def", + "ense" + ], + [ + "▁Madag", + "ascar" + ], + [ + "▁Mar", + "x" + ], + [ + "▁Ha", + "s" + ], + [ + "▁H", + "as" + ], + [ + "▁cous", + "in" + ], + [ + "▁Gan", + "g" + ], + [ + "▁Ga", + "ng" + ], + [ + "▁G", + "ang" + ], + [ + "ut", + "o" + ], + [ + "u", + "to" + ], + [ + "▁highlight", + "ed" + ], + [ + "▁consider", + "ably" + ], + [ + "▁H", + "D" + ], + [ + "▁", + "HD" + ], + [ + "▁publish", + "er" + ], + [ + "▁publ", + "isher" + ], + [ + "▁na", + "vy" + ], + [ + "▁n", + "avy" + ], + [ + "▁tick", + "et" + ], + [ + "▁th", + "under" + ], + [ + "▁pet", + "ition" + ], + [ + "▁New", + "ton" + ], + [ + "▁distinct", + "ion" + ], + [ + "▁dist", + "inction" + ], + [ + "▁Min", + "t" + ], + [ + "▁Mi", + "nt" + ], + [ + "▁M", + "int" + ], + [ + "▁", + "Á" + ], + [ + "▁Queens", + "land" + ], + [ + "ack", + "ed" + ], + [ + "▁lake", + "s" + ], + [ + "▁la", + "kes" + ], + [ + "▁l", + "akes" + ], + [ + "▁reform", + "s" + ], + [ + "▁ref", + "orms" + ], + [ + "oni", + "um" + ], + [ + "on", + "ium" + ], + [ + "▁celebr", + "ation" + ], + [ + "▁celeb", + "ration" + ], + [ + "▁tre", + "m" + ], + [ + "▁tr", + "em" + ], + [ + "▁t", + "rem" + ], + [ + "▁extensive", + "ly" + ], + [ + "▁ext", + "ensively" + ], + [ + "▁for", + "b" + ], + [ + "▁f", + "orb" + ], + [ + "▁Comp", + "uter" + ], + [ + "▁elev", + "ated" + ], + [ + "▁habitat", + "s" + ], + [ + "▁habit", + "ats" + ], + [ + "4", + "3" + ], + [ + "▁avoid", + "ed" + ], + [ + "▁avo", + "ided" + ], + [ + "▁Cur", + "t" + ], + [ + "▁C", + "urt" + ], + [ + "▁Bob", + "by" + ], + [ + "▁Hop", + "e" + ], + [ + "▁Ho", + "pe" + ], + [ + "▁H", + "ope" + ], + [ + "amber", + "s" + ], + [ + "amb", + "ers" + ], + [ + "am", + "bers" + ], + [ + "▁accommod", + "ate" + ], + [ + "▁o", + "l" + ], + [ + "▁", + "ol" + ], + [ + "▁medic", + "ation" + ], + [ + "▁med", + "ication" + ], + [ + "▁h", + "o" + ], + [ + "▁", + "ho" + ], + [ + "▁Ser", + "ge" + ], + [ + "maker", + "s" + ], + [ + "m", + "akers" + ], + [ + "▁Alt", + "ern" + ], + [ + "▁Al", + "tern" + ], + [ + "▁physic", + "ian" + ], + [ + "▁phys", + "ician" + ], + [ + "ru", + "p" + ], + [ + "r", + "up" + ], + [ + "ump", + "h" + ], + [ + "um", + "ph" + ], + [ + "u", + "mph" + ], + [ + "▁Gar", + "c" + ], + [ + "▁G", + "arc" + ], + [ + "▁constit", + "u" + ], + [ + "▁flood", + "ed" + ], + [ + "▁flo", + "oded" + ], + [ + "ato", + "n" + ], + [ + "at", + "on" + ], + [ + "a", + "ton" + ], + [ + "ich", + "e" + ], + [ + "ic", + "he" + ], + [ + "i", + "che" + ], + [ + "▁gen", + "u" + ], + [ + "part", + "s" + ], + [ + "par", + "ts" + ], + [ + "p", + "arts" + ], + [ + "▁ven", + "ue" + ], + [ + "▁priv", + "ile" + ], + [ + "▁Author", + "ity" + ], + [ + "▁work", + "er" + ], + [ + "▁wor", + "ker" + ], + [ + "ui", + "s" + ], + [ + "u", + "is" + ], + [ + "▁Pot", + "ter" + ], + [ + "▁thir", + "teen" + ], + [ + "▁expand", + "ing" + ], + [ + "▁189", + "8" + ], + [ + "▁18", + "98" + ], + [ + "▁Mas", + "on" + ], + [ + "▁Ma", + "son" + ], + [ + "▁M", + "ason" + ], + [ + "▁din", + "ner" + ], + [ + "▁operate", + "s" + ], + [ + "▁opera", + "tes" + ], + [ + "▁oper", + "ates" + ], + [ + "▁protest", + "s" + ], + [ + "▁prote", + "sts" + ], + [ + "▁prot", + "ests" + ], + [ + "▁Jam", + "a" + ], + [ + "▁Ja", + "ma" + ], + [ + "▁J", + "ama" + ], + [ + "▁m", + "a" + ], + [ + "▁", + "ma" + ], + [ + "▁star", + "ring" + ], + [ + "ren", + "e" + ], + [ + "re", + "ne" + ], + [ + "r", + "ene" + ], + [ + "▁conver", + "t" + ], + [ + "▁conv", + "ert" + ], + [ + "▁con", + "vert" + ], + [ + "▁illustrate", + "d" + ], + [ + "▁illust", + "rated" + ], + [ + "▁Ple", + "ase" + ], + [ + "▁P", + "lease" + ], + [ + "▁photograph", + "y" + ], + [ + "▁phot", + "ography" + ], + [ + "▁warning", + "s" + ], + [ + "▁warn", + "ings" + ], + [ + "▁war", + "nings" + ], + [ + "▁Pa", + "y" + ], + [ + "▁P", + "ay" + ], + [ + "▁189", + "6" + ], + [ + "▁18", + "96" + ], + [ + "kin", + "g" + ], + [ + "ki", + "ng" + ], + [ + "k", + "ing" + ], + [ + "▁cann", + "on" + ], + [ + "▁can", + "non" + ], + [ + "▁c", + "annon" + ], + [ + "igi", + "ous" + ], + [ + "ig", + "ious" + ], + [ + "▁sign", + "ature" + ], + [ + "H", + "A" + ], + [ + "gi", + "e" + ], + [ + "g", + "ie" + ], + [ + "▁E", + "ight" + ], + [ + "▁defence", + "s" + ], + [ + "▁def", + "ences" + ], + [ + "▁manif", + "est" + ], + [ + "▁dr", + "ead" + ], + [ + "▁d", + "read" + ], + [ + "▁cont", + "amin" + ], + [ + "ark", + "s" + ], + [ + "ar", + "ks" + ], + [ + "▁sk", + "i" + ], + [ + "▁s", + "ki" + ], + [ + "▁", + "ski" + ], + [ + "▁pay", + "ment" + ], + [ + "co", + "tt" + ], + [ + "c", + "ott" + ], + [ + "▁ac", + "ute" + ], + [ + "▁Stand", + "ard" + ], + [ + "▁chance", + "s" + ], + [ + "▁chanc", + "es" + ], + [ + "▁ch", + "ances" + ], + [ + "▁proposal", + "s" + ], + [ + "▁propos", + "als" + ], + [ + "au", + "c" + ], + [ + "a", + "uc" + ], + [ + "▁Ti", + "g" + ], + [ + "▁T", + "ig" + ], + [ + "▁opinion", + "s" + ], + [ + "▁opin", + "ions" + ], + [ + "arm", + "a" + ], + [ + "ar", + "ma" + ], + [ + "▁Sus", + "an" + ], + [ + "▁gene", + "t" + ], + [ + "▁gen", + "et" + ], + [ + "▁ge", + "net" + ], + [ + "▁substance", + "s" + ], + [ + "▁subst", + "ances" + ], + [ + "enov", + "ela" + ], + [ + "unn", + "ing" + ], + [ + "un", + "ning" + ], + [ + "▁fort", + "ress" + ], + [ + "▁C", + "P" + ], + [ + "▁", + "CP" + ], + [ + "quir", + "y" + ], + [ + "▁beat", + "s" + ], + [ + "▁be", + "ats" + ], + [ + "▁O", + "cc" + ], + [ + "▁Har", + "bor" + ], + [ + "▁Wall", + "ace" + ], + [ + "▁Wrest", + "ling" + ], + [ + "▁Ma", + "p" + ], + [ + "▁M", + "ap" + ], + [ + "▁works", + "h" + ], + [ + "▁work", + "sh" + ], + [ + "▁underw", + "ent" + ], + [ + "▁dissip", + "ated" + ], + [ + "1", + ")" + ], + [ + "enda", + "r" + ], + [ + "end", + "ar" + ], + [ + "▁Lowe", + "r" + ], + [ + "▁Low", + "er" + ], + [ + "▁Lo", + "wer" + ], + [ + "▁L", + "ower" + ], + [ + "ou", + "x" + ], + [ + "o", + "ux" + ], + [ + "▁am", + "azing" + ], + [ + "▁dw", + "arf" + ], + [ + "▁throw", + "n" + ], + [ + "▁thro", + "wn" + ], + [ + "▁thr", + "own" + ], + [ + "▁th", + "rown" + ], + [ + "▁Prote", + "ction" + ], + [ + "▁Prot", + "ection" + ], + [ + "▁j", + "ilyen" + ], + [ + "▁Rich", + "mond" + ], + [ + "bo", + "y" + ], + [ + "b", + "oy" + ], + [ + "▁ori", + "ent" + ], + [ + "▁or", + "ient" + ], + [ + "▁", + "orient" + ], + [ + "▁playoff", + "s" + ], + [ + "▁play", + "offs" + ], + [ + "▁Brother", + "s" + ], + [ + "▁decor", + "ated" + ], + [ + "▁Ki", + "d" + ], + [ + "▁K", + "id" + ], + [ + "▁tou", + "gh" + ], + [ + "▁t", + "ough" + ], + [ + "rain", + "e" + ], + [ + "ra", + "ine" + ], + [ + "r", + "aine" + ], + [ + "▁contrib", + "uting" + ], + [ + "▁j", + "ack" + ], + [ + "▁met", + "h" + ], + [ + "▁me", + "th" + ], + [ + "▁m", + "eth" + ], + [ + "go", + "m" + ], + [ + "g", + "om" + ], + [ + "▁ton", + "g" + ], + [ + "▁to", + "ng" + ], + [ + "▁t", + "ong" + ], + [ + "▁off", + "s" + ], + [ + "▁of", + "fs" + ], + [ + "▁", + "offs" + ], + [ + "▁Arc", + "tic" + ], + [ + "▁Ar", + "ctic" + ], + [ + "▁shift", + "ed" + ], + [ + "▁shif", + "ted" + ], + [ + "▁sh", + "ifted" + ], + [ + "▁mort", + "ality" + ], + [ + "▁Kat", + "e" + ], + [ + "▁Ka", + "te" + ], + [ + "▁K", + "ate" + ], + [ + "▁fan", + "t" + ], + [ + "▁fa", + "nt" + ], + [ + "▁f", + "ant" + ], + [ + "▁voy", + "e" + ], + [ + "▁vo", + "ye" + ], + [ + "▁shel", + "ter" + ], + [ + "▁literal", + "ly" + ], + [ + "▁liter", + "ally" + ], + [ + "T", + "ube" + ], + [ + "▁ba", + "pt" + ], + [ + "▁b", + "apt" + ], + [ + "▁tower", + "s" + ], + [ + "▁tow", + "ers" + ], + [ + "▁t", + "owers" + ], + [ + "▁tur", + "ret" + ], + [ + "▁ring", + "s" + ], + [ + "▁r", + "ings" + ], + [ + "▁reg", + "ulation" + ], + [ + "▁amp", + "l" + ], + [ + "▁am", + "pl" + ], + [ + "▁ext", + "inct" + ], + [ + "ris", + "ing" + ], + [ + "r", + "ising" + ], + [ + "▁aud", + "ition" + ], + [ + "▁au", + "dition" + ], + [ + "▁Ll", + "oyd" + ], + [ + "▁ab", + "road" + ], + [ + "▁Pu", + "t" + ], + [ + "▁P", + "ut" + ], + [ + "ubb", + "le" + ], + [ + "ub", + "ble" + ], + [ + "▁cloud", + "s" + ], + [ + "rick", + "s" + ], + [ + "ric", + "ks" + ], + [ + "r", + "icks" + ], + [ + "▁Ce", + "r" + ], + [ + "▁C", + "er" + ], + [ + "▁Fall", + "s" + ], + [ + "▁Fal", + "ls" + ], + [ + "▁guitar", + "ist" + ], + [ + "▁I", + "C" + ], + [ + "▁", + "IC" + ], + [ + "▁Bl", + "u" + ], + [ + "▁B", + "lu" + ], + [ + "▁gent", + "le" + ], + [ + "▁gen", + "tle" + ], + [ + "▁Or", + "leans" + ], + [ + "▁nit", + "rogen" + ], + [ + "▁Ver", + "s" + ], + [ + "▁Ve", + "rs" + ], + [ + "▁V", + "ers" + ], + [ + "▁qu", + "ar" + ], + [ + "▁Player", + "s" + ], + [ + "▁Play", + "ers" + ], + [ + "▁Independ", + "ence" + ], + [ + "▁off", + "ense" + ], + [ + "▁real", + "istic" + ], + [ + "▁Sp", + "r" + ], + [ + "▁S", + "pr" + ], + [ + "▁cens", + "us" + ], + [ + "▁c", + "ensus" + ], + [ + "▁ac", + "claim" + ], + [ + "4", + ")" + ], + [ + "adi", + "er" + ], + [ + "ad", + "ier" + ], + [ + "▁symbol", + "s" + ], + [ + "▁symb", + "ols" + ], + [ + "▁Ca", + "d" + ], + [ + "▁C", + "ad" + ], + [ + "▁Mus", + "t" + ], + [ + "▁Mu", + "st" + ], + [ + "▁M", + "ust" + ], + [ + "▁heat", + "ing" + ], + [ + "▁he", + "ating" + ], + [ + "▁reinforce", + "d" + ], + [ + "▁rein", + "forced" + ], + [ + "▁top", + "ped" + ], + [ + "▁to", + "pped" + ], + [ + "ild", + "er" + ], + [ + "il", + "der" + ], + [ + "▁Gra", + "ce" + ], + [ + "▁Gr", + "ace" + ], + [ + "▁G", + "race" + ], + [ + "▁Scient", + "ology" + ], + [ + "▁independent", + "ly" + ], + [ + "▁independ", + "ently" + ], + [ + "▁spect", + "rum" + ], + [ + "▁S", + "weet" + ], + [ + "ove", + "s" + ], + [ + "ov", + "es" + ], + [ + "o", + "ves" + ], + [ + "at", + "ural" + ], + [ + "▁medi", + "c" + ], + [ + "▁med", + "ic" + ], + [ + "▁distingu", + "ish" + ], + [ + "▁U", + "C" + ], + [ + "▁", + "UC" + ], + [ + "▁TH", + "E" + ], + [ + "▁Hugh", + "es" + ], + [ + "▁Hug", + "hes" + ], + [ + "▁habit", + "s" + ], + [ + "▁hab", + "its" + ], + [ + "▁Ex", + "am" + ], + [ + "▁car", + "b" + ], + [ + "▁c", + "arb" + ], + [ + "eter", + "s" + ], + [ + "ete", + "rs" + ], + [ + "et", + "ers" + ], + [ + "e", + "ters" + ], + [ + "▁enhance", + "d" + ], + [ + "▁enh", + "anced" + ], + [ + "▁pun", + "k" + ], + [ + "▁p", + "unk" + ], + [ + "▁Ed", + "ition" + ], + [ + "▁E", + "dition" + ], + [ + "▁revolution", + "ary" + ], + [ + "▁Cam", + "b" + ], + [ + "▁Ca", + "mb" + ], + [ + "▁C", + "amb" + ], + [ + "▁inherit", + "ed" + ], + [ + "▁inher", + "ited" + ], + [ + "ud", + "i" + ], + [ + "u", + "di" + ], + [ + "▁alt", + "itude" + ], + [ + "▁remark", + "able" + ], + [ + "▁theat", + "rical" + ], + [ + "isi", + "ve" + ], + [ + "is", + "ive" + ], + [ + "ali", + "a" + ], + [ + "al", + "ia" + ], + [ + "a", + "lia" + ], + [ + "isd", + "om" + ], + [ + "is", + "dom" + ], + [ + "omo", + "n" + ], + [ + "om", + "on" + ], + [ + "o", + "mon" + ], + [ + "▁enc", + "om" + ], + [ + "▁en", + "com" + ], + [ + "▁ir", + "regular" + ], + [ + "▁Jer", + "ry" + ], + [ + "▁hum", + "or" + ], + [ + "▁g", + "h" + ], + [ + "▁", + "gh" + ], + [ + "▁Pin", + "k" + ], + [ + "▁P", + "ink" + ], + [ + "▁trade", + "d" + ], + [ + "▁trad", + "ed" + ], + [ + "▁tra", + "ded" + ], + [ + "▁tr", + "aded" + ], + [ + "▁co", + "c" + ], + [ + "▁c", + "oc" + ], + [ + "rest", + "rial" + ], + [ + "M", + "E" + ], + [ + "na", + "n" + ], + [ + "n", + "an" + ], + [ + "▁You", + "Tube" + ], + [ + "▁affect", + "ing" + ], + [ + "vi", + "a" + ], + [ + "v", + "ia" + ], + [ + "▁shape", + "s" + ], + [ + "▁sh", + "apes" + ], + [ + "▁innov", + "ative" + ], + [ + "erie", + "s" + ], + [ + "eri", + "es" + ], + [ + "er", + "ies" + ], + [ + "e", + "ries" + ], + [ + "▁Lin", + "k" + ], + [ + "▁L", + "ink" + ], + [ + "iden", + "cy" + ], + [ + "id", + "ency" + ], + [ + "▁arr", + "ay" + ], + [ + "▁ar", + "ray" + ], + [ + "leg", + "raph" + ], + [ + "▁int", + "ake" + ], + [ + "▁consistent", + "ly" + ], + [ + "▁consist", + "ently" + ], + [ + "▁Barb", + "ara" + ], + [ + "em", + "a" + ], + [ + "e", + "ma" + ], + [ + "▁Kee", + "p" + ], + [ + "▁Ke", + "ep" + ], + [ + "▁ge", + "st" + ], + [ + "▁g", + "est" + ], + [ + "▁", + "gest" + ], + [ + "▁Tra", + "ck" + ], + [ + "▁Tr", + "ack" + ], + [ + "▁T", + "rack" + ], + [ + "▁Maur", + "ice" + ], + [ + "▁Mau", + "rice" + ], + [ + "▁10", + "9" + ], + [ + "▁all", + "erg" + ], + [ + "▁grav", + "ity" + ], + [ + "▁tie", + "s" + ], + [ + "▁ti", + "es" + ], + [ + "▁t", + "ies" + ], + [ + "▁", + "ties" + ], + [ + "angu", + "lar" + ], + [ + "ang", + "ular" + ], + [ + "▁bu", + "ff" + ], + [ + "▁b", + "uff" + ], + [ + "▁progress", + "ive" + ], + [ + "▁prog", + "ressive" + ], + [ + "ological", + "ly" + ], + [ + "ologic", + "ally" + ], + [ + "olog", + "ically" + ], + [ + "3", + "9" + ], + [ + "▁eval", + "uation" + ], + [ + "ella", + "r" + ], + [ + "ell", + "ar" + ], + [ + "el", + "lar" + ], + [ + "▁pie", + "r" + ], + [ + "▁pi", + "er" + ], + [ + "▁p", + "ier" + ], + [ + "▁Ev", + "e" + ], + [ + "▁E", + "ve" + ], + [ + "▁RN", + "A" + ], + [ + "▁R", + "NA" + ], + [ + "▁", + "RNA" + ], + [ + "▁avail", + "ability" + ], + [ + "wo", + "rd" + ], + [ + "w", + "ord" + ], + [ + "▁Exec", + "utive" + ], + [ + "lo", + "n" + ], + [ + "l", + "on" + ], + [ + "▁P", + "M" + ], + [ + "▁", + "PM" + ], + [ + "▁br", + "ig" + ], + [ + "▁b", + "rig" + ], + [ + "▁arrive", + "s" + ], + [ + "▁arr", + "ives" + ], + [ + "▁observ", + "e" + ], + [ + "▁obs", + "erve" + ], + [ + "▁li", + "p" + ], + [ + "▁l", + "ip" + ], + [ + "▁ignore", + "d" + ], + [ + "▁ignor", + "ed" + ], + [ + "▁ign", + "ored" + ], + [ + "▁health", + "care" + ], + [ + "pl", + "ing" + ], + [ + "p", + "ling" + ], + [ + "▁speed", + "s" + ], + [ + "▁spe", + "eds" + ], + [ + "▁S", + "P" + ], + [ + "▁", + "SP" + ], + [ + "ick", + "ing" + ], + [ + "ic", + "king" + ], + [ + "▁Ya", + "m" + ], + [ + "▁Y", + "am" + ], + [ + "▁l", + "un" + ], + [ + "U", + "S" + ], + [ + "▁ult", + "imate" + ], + [ + "gg", + "ed" + ], + [ + "g", + "ged" + ], + [ + "▁Ern", + "est" + ], + [ + "▁Er", + "nest" + ], + [ + "▁conf", + "used" + ], + [ + "p", + "iece" + ], + [ + "▁Aust", + "in" + ], + [ + "▁dis", + "rupt" + ], + [ + "▁deposit", + "s" + ], + [ + "▁depos", + "its" + ], + [ + "m", + "m" + ], + [ + "onic", + "a" + ], + [ + "oni", + "ca" + ], + [ + "on", + "ica" + ], + [ + "▁pat", + "ri" + ], + [ + "▁p", + "atri" + ], + [ + "▁McC", + "artney" + ], + [ + "▁sculpt", + "ure" + ], + [ + "▁come", + "d" + ], + [ + "▁com", + "ed" + ], + [ + "▁co", + "med" + ], + [ + "▁c", + "omed" + ], + [ + "▁", + "comed" + ], + [ + "▁desc", + "ent" + ], + [ + "▁des", + "cent" + ], + [ + "▁scenar", + "io" + ], + [ + "▁scen", + "ario" + ], + [ + "ult", + "ure" + ], + [ + "ul", + "ture" + ], + [ + "ist", + "ing" + ], + [ + "is", + "ting" + ], + [ + "▁Yank", + "ees" + ], + [ + "▁reve", + "r" + ], + [ + "▁rev", + "er" + ], + [ + "▁re", + "ver" + ], + [ + "▁r", + "ever" + ], + [ + "▁a", + "est" + ], + [ + "▁trou", + "gh" + ], + [ + "▁tr", + "ough" + ], + [ + "▁t", + "rough" + ], + [ + "▁reh", + "e" + ], + [ + "▁re", + "he" + ], + [ + "▁Dw", + "ight" + ], + [ + "itor", + "y" + ], + [ + "ito", + "ry" + ], + [ + "it", + "ory" + ], + [ + "ah", + "a" + ], + [ + "a", + "ha" + ], + [ + "rie", + "n" + ], + [ + "ri", + "en" + ], + [ + "r", + "ien" + ], + [ + "▁Liber", + "al" + ], + [ + "▁Lib", + "eral" + ], + [ + "▁p", + "m" + ], + [ + "▁", + "pm" + ], + [ + "ali", + "n" + ], + [ + "al", + "in" + ], + [ + "a", + "lin" + ], + [ + "▁aim", + "s" + ], + [ + "▁a", + "ims" + ], + [ + "▁protect", + "ive" + ], + [ + "▁prote", + "ctive" + ], + [ + "▁prot", + "ective" + ], + [ + "chi", + "ld" + ], + [ + "ch", + "ild" + ], + [ + "▁excit", + "ing" + ], + [ + "▁exc", + "iting" + ], + [ + "▁moist", + "ure" + ], + [ + "lay", + "er" + ], + [ + "la", + "yer" + ], + [ + "l", + "ayer" + ], + [ + "▁kill", + "s" + ], + [ + "▁kil", + "ls" + ], + [ + "▁k", + "ills" + ], + [ + "y", + "è" + ], + [ + "▁keep", + "s" + ], + [ + "▁ke", + "eps" + ], + [ + "▁sole", + "ly" + ], + [ + "▁sol", + "ely" + ], + [ + "▁sh", + "r" + ], + [ + "▁s", + "hr" + ], + [ + "▁sy", + "ans" + ], + [ + "▁se", + "l" + ], + [ + "▁s", + "el" + ], + [ + "▁", + "sel" + ], + [ + "▁Ind", + "eed" + ], + [ + "▁L", + "é" + ], + [ + "arch", + "y" + ], + [ + "arc", + "hy" + ], + [ + "ar", + "chy" + ], + [ + "▁Que", + "bec" + ], + [ + "▁ten", + "ure" + ], + [ + "▁cooper", + "ation" + ], + [ + "fr", + "ee" + ], + [ + "f", + "ree" + ], + [ + "enn", + "ial" + ], + [ + "▁contra", + "d" + ], + [ + "▁cont", + "rad" + ], + [ + "▁discussion", + "s" + ], + [ + "▁discuss", + "ions" + ], + [ + "▁", + "·" + ], + [ + "▁Or", + "ange" + ], + [ + "▁O", + "range" + ], + [ + "▁learn", + "s" + ], + [ + "▁lear", + "ns" + ], + [ + "▁Abra", + "ham" + ], + [ + "▁ele", + "ph" + ], + [ + "▁el", + "eph" + ], + [ + "▁cap", + "abilities" + ], + [ + "▁Sal", + "t" + ], + [ + "▁S", + "alt" + ], + [ + "imon", + "y" + ], + [ + "imo", + "ny" + ], + [ + "im", + "ony" + ], + [ + "▁h", + "ier" + ], + [ + "▁sea", + "s" + ], + [ + "▁se", + "as" + ], + [ + "▁s", + "eas" + ], + [ + "▁Be", + "ing" + ], + [ + "▁B", + "eing" + ], + [ + "▁Prov", + "ince" + ], + [ + "▁qual", + "ities" + ], + [ + "▁qu", + "alities" + ], + [ + "ro", + "d" + ], + [ + "r", + "od" + ], + [ + "▁prom", + "in" + ], + [ + "▁pro", + "min" + ], + [ + "▁pr", + "omin" + ], + [ + "a", + "que" + ], + [ + "▁Ab", + "u" + ], + [ + "▁A", + "bu" + ], + [ + "▁ang", + "ry" + ], + [ + "▁argu", + "ing" + ], + [ + "▁arg", + "uing" + ], + [ + "▁Mic", + "k" + ], + [ + "▁Mi", + "ck" + ], + [ + "▁M", + "ick" + ], + [ + "▁hur", + "t" + ], + [ + "▁h", + "urt" + ], + [ + "▁big", + "ger" + ], + [ + "▁b", + "igger" + ], + [ + "act", + "ion" + ], + [ + "a", + "ction" + ], + [ + "▁sw", + "ord" + ], + [ + "▁s", + "word" + ], + [ + "urs", + "e" + ], + [ + "ur", + "se" + ], + [ + "▁tim", + "ber" + ], + [ + "▁ti", + "mber" + ], + [ + "▁civilian", + "s" + ], + [ + "▁civil", + "ians" + ], + [ + "▁acou", + "stic" + ], + [ + "▁mineral", + "s" + ], + [ + "▁min", + "erals" + ], + [ + "▁sal", + "ary" + ], + [ + "▁curren", + "cy" + ], + [ + "▁cur", + "rency" + ], + [ + "▁Fer", + "r" + ], + [ + "▁F", + "err" + ], + [ + "▁Ver", + "m" + ], + [ + "▁Ve", + "rm" + ], + [ + "▁V", + "erm" + ], + [ + "▁mi", + "g" + ], + [ + "▁m", + "ig" + ], + [ + "▁judge", + "s" + ], + [ + "▁judg", + "es" + ], + [ + "▁jud", + "ges" + ], + [ + "▁trigg", + "er" + ], + [ + "▁tr", + "igger" + ], + [ + "▁Arm", + "strong" + ], + [ + "▁stra", + "in" + ], + [ + "▁str", + "ain" + ], + [ + "▁st", + "rain" + ], + [ + "▁consume", + "d" + ], + [ + "▁consum", + "ed" + ], + [ + "▁cons", + "umed" + ], + [ + "▁kilomet", + "ers" + ], + [ + "ida", + "n" + ], + [ + "id", + "an" + ], + [ + "i", + "dan" + ], + [ + "rol", + "og" + ], + [ + "ro", + "log" + ], + [ + "r", + "olog" + ], + [ + "▁neur", + "o" + ], + [ + "▁neu", + "ro" + ], + [ + "▁ne", + "uro" + ], + [ + "▁proceed", + "ed" + ], + [ + "▁pro", + "ceeded" + ], + [ + "?", + "”" + ], + [ + "▁lo", + "ose" + ], + [ + "▁P", + "i" + ], + [ + "▁Cla", + "y" + ], + [ + "▁Cl", + "ay" + ], + [ + "▁C", + "lay" + ], + [ + "ent", + "ieth" + ], + [ + "▁Apoll", + "o" + ], + [ + "▁am", + "ateur" + ], + [ + "urricane", + "s" + ], + [ + "urric", + "anes" + ], + [ + "apt", + "ers" + ], + [ + "ap", + "ters" + ], + [ + "▁hard", + "ware" + ], + [ + "10", + "0" + ], + [ + "1", + "00" + ], + [ + "uc", + "e" + ], + [ + "u", + "ce" + ], + [ + "▁zone", + "s" + ], + [ + "▁zo", + "nes" + ], + [ + "▁z", + "ones" + ], + [ + "▁similar", + "ities" + ], + [ + "▁commun", + "ist" + ], + [ + "▁settlement", + "s" + ], + [ + "▁settle", + "ments" + ], + [ + "▁sett", + "lements" + ], + [ + "elt", + "a" + ], + [ + "el", + "ta" + ], + [ + "8", + "6" + ], + [ + "uls", + "ion" + ], + [ + "▁Transport", + "ation" + ], + [ + "ike", + "s" + ], + [ + "ik", + "es" + ], + [ + "i", + "kes" + ], + [ + "ancer", + "s" + ], + [ + "ance", + "rs" + ], + [ + "anc", + "ers" + ], + [ + "an", + "cers" + ], + [ + "▁discipl", + "ine" + ], + [ + "▁discip", + "line" + ], + [ + "▁Se", + "p" + ], + [ + "▁S", + "ep" + ], + [ + "pres", + "s" + ], + [ + "pre", + "ss" + ], + [ + "pr", + "ess" + ], + [ + "p", + "ress" + ], + [ + "▁mig", + "r" + ], + [ + "▁mi", + "gr" + ], + [ + "▁m", + "igr" + ], + [ + "▁Telev", + "izyon" + ], + [ + "▁O", + "il" + ], + [ + "i", + "ón" + ], + [ + "▁York", + "shire" + ], + [ + "▁Out", + "standing" + ], + [ + "ash", + "i" + ], + [ + "as", + "hi" + ], + [ + "a", + "shi" + ], + [ + "▁super", + "n" + ], + [ + "▁sup", + "ern" + ], + [ + "▁colour", + "s" + ], + [ + "▁col", + "ours" + ], + [ + "▁Guin", + "ea" + ], + [ + "▁Gu", + "inea" + ], + [ + "▁f", + "u" + ], + [ + "▁", + "fu" + ], + [ + "▁Pu", + "l" + ], + [ + "▁P", + "ul" + ], + [ + "▁har", + "sh" + ], + [ + "▁h", + "arsh" + ], + [ + "▁Tal", + "k" + ], + [ + "▁T", + "alk" + ], + [ + "4", + "2" + ], + [ + "▁Cl", + "in" + ], + [ + "▁C", + "lin" + ], + [ + "▁four", + "teen" + ], + [ + "avi", + "a" + ], + [ + "av", + "ia" + ], + [ + "a", + "via" + ], + [ + "▁Marc", + "el" + ], + [ + "▁Mar", + "cel" + ], + [ + "ik", + "o" + ], + [ + "i", + "ko" + ], + [ + "▁neu", + "r" + ], + [ + "▁ne", + "ur" + ], + [ + "▁n", + "eur" + ], + [ + "▁impose", + "d" + ], + [ + "▁imp", + "osed" + ], + [ + "rat", + "ropical" + ], + [ + "▁sponsor", + "ed" + ], + [ + "▁spons", + "ored" + ], + [ + "8", + "9" + ], + [ + "▁189", + "3" + ], + [ + "▁18", + "93" + ], + [ + "▁advance", + "s" + ], + [ + "▁adv", + "ances" + ], + [ + "▁volcan", + "ic" + ], + [ + "▁E", + "is" + ], + [ + "olo", + "ji" + ], + [ + "▁De", + "b" + ], + [ + "▁D", + "eb" + ], + [ + "uster", + "s" + ], + [ + "ust", + "ers" + ], + [ + "us", + "ters" + ], + [ + "u", + "sters" + ], + [ + "▁color", + "ed" + ], + [ + "▁col", + "ored" + ], + [ + "▁h", + "ide" + ], + [ + "th", + "rough" + ], + [ + "▁remember", + "ed" + ], + [ + "▁str", + "ange" + ], + [ + "▁st", + "range" + ], + [ + "▁Pitts", + "burgh" + ], + [ + "▁Aff", + "airs" + ], + [ + "▁contin", + "ent" + ], + [ + "▁cont", + "inent" + ], + [ + "▁Cu", + "t" + ], + [ + "▁C", + "ut" + ], + [ + "▁Tr", + "y" + ], + [ + "▁T", + "ry" + ], + [ + "▁comple", + "ment" + ], + [ + "▁compl", + "ement" + ], + [ + "▁comp", + "lement" + ], + [ + "▁Malays", + "ia" + ], + [ + "▁conduct", + "ing" + ], + [ + "▁rebel", + "s" + ], + [ + "▁reb", + "els" + ], + [ + "▁re", + "bels" + ], + [ + "▁virus", + "es" + ], + [ + "▁vir", + "uses" + ], + [ + "▁six", + "teen" + ], + [ + "▁pou", + "r" + ], + [ + "▁po", + "ur" + ], + [ + "▁p", + "our" + ], + [ + "▁elabor", + "ate" + ], + [ + "▁jo", + "y" + ], + [ + "▁j", + "oy" + ], + [ + "▁", + "joy" + ], + [ + "▁dem", + "ocracy" + ], + [ + "▁3", + "," + ], + [ + "▁", + "3," + ], + [ + "▁Ste", + "f" + ], + [ + "▁St", + "ef" + ], + [ + "▁surrender", + "ed" + ], + [ + "▁wid", + "th" + ], + [ + "▁J", + "T" + ], + [ + "ir", + "atory" + ], + [ + "▁quant", + "ity" + ], + [ + "▁she", + "d" + ], + [ + "▁sh", + "ed" + ], + [ + "▁s", + "hed" + ], + [ + "▁post", + "er" + ], + [ + "▁pos", + "ter" + ], + [ + "▁po", + "ster" + ], + [ + "▁p", + "oster" + ], + [ + "▁j", + "e" + ], + [ + "▁", + "je" + ], + [ + "▁We", + "l" + ], + [ + "▁W", + "el" + ], + [ + "▁ph", + "arm" + ], + [ + "▁p", + "harm" + ], + [ + "]", + "." + ], + [ + "▁Joh", + "ann" + ], + [ + "▁bur", + "ial" + ], + [ + "▁bu", + "rial" + ], + [ + "▁prec", + "ise" + ], + [ + "▁jurisd", + "iction" + ], + [ + "▁transform", + "ed" + ], + [ + "▁trans", + "formed" + ], + [ + "▁P", + "S" + ], + [ + "▁", + "PS" + ], + [ + "▁sp", + "ur" + ], + [ + "▁s", + "pur" + ], + [ + "▁contract", + "s" + ], + [ + "ipp", + "er" + ], + [ + "ip", + "per" + ], + [ + "i", + "pper" + ], + [ + "▁do", + "zen" + ], + [ + "▁after", + "math" + ], + [ + "hm", + "a" + ], + [ + "h", + "ma" + ], + [ + "▁Mont", + "h" + ], + [ + "▁Mon", + "th" + ], + [ + "▁Trip", + "le" + ], + [ + "▁Tri", + "ple" + ], + [ + "a", + "o" + ], + [ + "▁Ste", + "el" + ], + [ + "▁quant", + "ities" + ], + [ + "0", + "." + ], + [ + "n", + "ut" + ], + [ + "▁positive", + "ly" + ], + [ + "▁pos", + "itively" + ], + [ + "va", + "r" + ], + [ + "v", + "ar" + ], + [ + "▁nutrit", + "ion" + ], + [ + "▁nut", + "rition" + ], + [ + "▁grand", + "father" + ], + [ + "rel", + "s" + ], + [ + "re", + "ls" + ], + [ + "r", + "els" + ], + [ + "min", + "ster" + ], + [ + "▁resolve", + "d" + ], + [ + "▁res", + "olved" + ], + [ + "id", + "o" + ], + [ + "i", + "do" + ], + [ + "▁Al", + "t" + ], + [ + "▁cul", + "min" + ], + [ + "▁soc", + "ieties" + ], + [ + "▁Historic", + "al" + ], + [ + "▁Histor", + "ical" + ], + [ + "▁Hist", + "orical" + ], + [ + "ong", + "e" + ], + [ + "on", + "ge" + ], + [ + "▁ur", + "anium" + ], + [ + "▁Sy", + "l" + ], + [ + "▁S", + "yl" + ], + [ + "▁Hal", + "f" + ], + [ + "▁H", + "alf" + ], + [ + "▁Flem", + "ing" + ], + [ + "▁Fle", + "ming" + ], + [ + "▁Office", + "r" + ], + [ + "▁Offic", + "er" + ], + [ + "ond", + "e" + ], + [ + "on", + "de" + ], + [ + "▁af", + "t" + ], + [ + "▁a", + "ft" + ], + [ + "▁", + "aft" + ], + [ + "▁re", + "ass" + ], + [ + "▁Age", + "s" + ], + [ + "▁Ag", + "es" + ], + [ + "▁A", + "ges" + ], + [ + "▁189", + "9" + ], + [ + "▁18", + "99" + ], + [ + "▁Dav", + "ies" + ], + [ + "▁7", + "." + ], + [ + "▁", + "7." + ], + [ + "▁not", + "ion" + ], + [ + "▁n", + "otion" + ], + [ + "▁Begin", + "ning" + ], + [ + "iks", + "yon" + ], + [ + "i", + "ksyon" + ], + [ + "▁warn", + "ed" + ], + [ + "▁war", + "ned" + ], + [ + "▁reduce", + "s" + ], + [ + "▁redu", + "ces" + ], + [ + "▁May", + "or" + ], + [ + "▁do", + "i" + ], + [ + "▁d", + "oi" + ], + [ + "▁read", + "ily" + ], + [ + "▁Dan", + "ish" + ], + [ + "▁D", + "anish" + ], + [ + "▁definite", + "ly" + ], + [ + "▁defin", + "itely" + ], + [ + "▁def", + "initely" + ], + [ + "▁Po", + "w" + ], + [ + "▁P", + "ow" + ], + [ + "▁ext", + "ratropical" + ], + [ + "le", + "m" + ], + [ + "l", + "em" + ], + [ + "▁Ye", + "s" + ], + [ + "▁Y", + "es" + ], + [ + "▁Ge", + "off" + ], + [ + "▁V", + "l" + ], + [ + "▁Belg", + "ian" + ], + [ + "▁Bel", + "gian" + ], + [ + "▁discrimin", + "ation" + ], + [ + "▁disc", + "rimination" + ], + [ + "▁melod", + "y" + ], + [ + "▁mel", + "ody" + ], + [ + "hu", + "m" + ], + [ + "h", + "um" + ], + [ + "▁fi", + "er" + ], + [ + "▁f", + "ier" + ], + [ + "cel", + "and" + ], + [ + "ce", + "land" + ], + [ + "c", + "eland" + ], + [ + "▁Hard", + "y" + ], + [ + "▁Har", + "dy" + ], + [ + "▁stab", + "il" + ], + [ + "▁st", + "abil" + ], + [ + "▁detect", + "ion" + ], + [ + "▁det", + "ection" + ], + [ + "▁particip", + "ating" + ], + [ + "▁Che", + "ck" + ], + [ + "▁Ch", + "eck" + ], + [ + "▁Benn", + "ett" + ], + [ + "▁Th", + "under" + ], + [ + "▁trap", + "ped" + ], + [ + "▁tra", + "pped" + ], + [ + "▁tr", + "apped" + ], + [ + "▁t", + "rapped" + ], + [ + "▁P", + "R" + ], + [ + "▁", + "PR" + ], + [ + "▁summ", + "it" + ], + [ + "▁sum", + "mit" + ], + [ + "▁ex", + "chang" + ], + [ + "▁tele", + "phone" + ], + [ + "▁Ch", + "o" + ], + [ + "▁C", + "ho" + ], + [ + "▁Day", + "s" + ], + [ + "▁Da", + "ys" + ], + [ + "▁D", + "ays" + ], + [ + "▁Give", + "n" + ], + [ + "▁Gi", + "ven" + ], + [ + "▁G", + "iven" + ], + [ + "▁lack", + "ing" + ], + [ + "▁lac", + "king" + ], + [ + "▁l", + "acking" + ], + [ + "▁A", + "L" + ], + [ + "▁", + "AL" + ], + [ + "▁automatic", + "ally" + ], + [ + "▁autom", + "atically" + ], + [ + "rodu", + "ction" + ], + [ + "rod", + "uction" + ], + [ + "ro", + "duction" + ], + [ + "ogra", + "m" + ], + [ + "og", + "ram" + ], + [ + "o", + "gram" + ], + [ + "isation", + "s" + ], + [ + "is", + "ations" + ], + [ + "▁production", + "s" + ], + [ + "▁product", + "ions" + ], + [ + "▁produ", + "ctions" + ], + [ + "▁pre", + "f" + ], + [ + "▁pr", + "ef" + ], + [ + "▁W", + "H" + ], + [ + "▁Bre", + "n" + ], + [ + "▁Br", + "en" + ], + [ + "▁B", + "ren" + ], + [ + "▁Tan", + "g" + ], + [ + "▁Ta", + "ng" + ], + [ + "▁T", + "ang" + ], + [ + "▁cart", + "oon" + ], + [ + "▁punish", + "ment" + ], + [ + "▁pun", + "ishment" + ], + [ + "▁Nor", + "d" + ], + [ + "▁No", + "rd" + ], + [ + "▁N", + "ord" + ], + [ + "▁eas", + "e" + ], + [ + "▁e", + "ase" + ], + [ + "▁Imp", + "act" + ], + [ + "▁indu", + "ct" + ], + [ + "▁ind", + "uct" + ], + [ + "▁in", + "duct" + ], + [ + "▁mat", + "e" + ], + [ + "▁ma", + "te" + ], + [ + "▁m", + "ate" + ], + [ + "▁", + "mate" + ], + [ + "▁Safe", + "ty" + ], + [ + "▁Saf", + "ety" + ], + [ + "▁heal", + "ing" + ], + [ + "▁he", + "aling" + ], + [ + "▁advert", + "is" + ], + [ + "iy", + "a" + ], + [ + "i", + "ya" + ], + [ + "▁NA", + "T" + ], + [ + "▁N", + "AT" + ], + [ + "▁li", + "b" + ], + [ + "▁l", + "ib" + ], + [ + "▁breat", + "h" + ], + [ + "▁bre", + "ath" + ], + [ + "▁Chronic", + "le" + ], + [ + "▁Chron", + "icle" + ], + [ + "▁perce", + "ption" + ], + [ + "▁per", + "ception" + ], + [ + "▁Wilhel", + "m" + ], + [ + "▁Face", + "book" + ], + [ + "▁mathematic", + "al" + ], + [ + "▁mathemat", + "ical" + ], + [ + "▁ang", + "er" + ], + [ + "▁an", + "ger" + ], + [ + "▁", + "anger" + ], + [ + "▁cook", + "ing" + ], + [ + "▁co", + "oking" + ], + [ + "▁abund", + "ant" + ], + [ + "mer", + "s" + ], + [ + "me", + "rs" + ], + [ + "m", + "ers" + ], + [ + "▁Gu", + "itar" + ], + [ + "▁Cre", + "d" + ], + [ + "▁Cr", + "ed" + ], + [ + "▁C", + "red" + ], + [ + "it", + "ivity" + ], + [ + "▁st", + "ake" + ], + [ + "▁Portug", + "al" + ], + [ + "7", + "," + ], + [ + "▁epi", + "c" + ], + [ + "▁ep", + "ic" + ], + [ + "▁feather", + "s" + ], + [ + "▁feat", + "hers" + ], + [ + "▁div", + "ine" + ], + [ + "▁anim", + "e" + ], + [ + "▁an", + "ime" + ], + [ + "▁prison", + "er" + ], + [ + "II", + "I" + ], + [ + "I", + "II" + ], + [ + "al", + "g" + ], + [ + "▁hospital", + "s" + ], + [ + "▁hosp", + "itals" + ], + [ + "▁Nor", + "folk" + ], + [ + "▁put", + "s" + ], + [ + "▁p", + "uts" + ], + [ + "▁sacr", + "ed" + ], + [ + "▁sac", + "red" + ], + [ + "▁Lut", + "her" + ], + [ + "▁Lu", + "ther" + ], + [ + "▁L", + "uther" + ], + [ + "▁undertake", + "n" + ], + [ + "▁undert", + "aken" + ], + [ + "otype", + "s" + ], + [ + "otyp", + "es" + ], + [ + "▁Mal", + "t" + ], + [ + "▁M", + "alt" + ], + [ + "▁care", + "ful" + ], + [ + "▁tissue", + "s" + ], + [ + "▁tiss", + "ues" + ], + [ + "▁rot", + "ation" + ], + [ + "▁controll", + "ing" + ], + [ + "▁control", + "ling" + ], + [ + "▁cont", + "rolling" + ], + [ + "▁champion", + "s" + ], + [ + "▁ch", + "ampions" + ], + [ + "▁Ne", + "il" + ], + [ + "▁para", + "d" + ], + [ + "▁par", + "ad" + ], + [ + "▁pa", + "rad" + ], + [ + "▁repe", + "t" + ], + [ + "▁rep", + "et" + ], + [ + "▁re", + "pet" + ], + [ + "▁Unf", + "ortunately" + ], + [ + "▁Ver", + "n" + ], + [ + "▁V", + "ern" + ], + [ + "▁pupil", + "s" + ], + [ + "▁pup", + "ils" + ], + [ + "le", + "z" + ], + [ + "l", + "ez" + ], + [ + "▁po", + "r" + ], + [ + "▁p", + "or" + ], + [ + "▁", + "por" + ], + [ + "▁Fly", + "ing" + ], + [ + "▁Fl", + "ying" + ], + [ + "▁F", + "lying" + ], + [ + "▁Gall", + "ery" + ], + [ + "▁cabin", + "et" + ], + [ + "▁cab", + "inet" + ], + [ + "▁stream", + "s" + ], + [ + "▁stre", + "ams" + ], + [ + "▁author", + "ized" + ], + [ + "▁Lar", + "ry" + ], + [ + "▁L", + "arry" + ], + [ + "▁Gle", + "n" + ], + [ + "▁Gl", + "en" + ], + [ + "▁G", + "len" + ], + [ + "▁accomplish", + "ed" + ], + [ + "▁accompl", + "ished" + ], + [ + "▁accomp", + "lished" + ], + [ + "▁voter", + "s" + ], + [ + "▁vote", + "rs" + ], + [ + "▁vot", + "ers" + ], + [ + "▁vo", + "ters" + ], + [ + "umb", + "le" + ], + [ + "um", + "ble" + ], + [ + "▁portray", + "al" + ], + [ + "▁portra", + "yal" + ], + [ + "atche", + "s" + ], + [ + "atch", + "es" + ], + [ + "at", + "ches" + ], + [ + "▁Tit", + "an" + ], + [ + "▁T", + "itan" + ], + [ + "▁Har", + "old" + ], + [ + "▁const", + "ra" + ], + [ + "▁cons", + "tra" + ], + [ + "▁refugee", + "s" + ], + [ + "▁refuge", + "es" + ], + [ + "▁bi", + "ology" + ], + [ + "▁b", + "iology" + ], + [ + "▁financ", + "e" + ], + [ + "▁fin", + "ance" + ], + [ + "▁fi", + "nance" + ], + [ + "▁Collect", + "ion" + ], + [ + "▁Colle", + "ction" + ], + [ + "▁Coll", + "ection" + ], + [ + "▁Col", + "lection" + ], + [ + "▁ge", + "ar" + ], + [ + "▁g", + "ear" + ], + [ + "▁inh", + "ab" + ], + [ + "▁rede", + "s" + ], + [ + "▁red", + "es" + ], + [ + "▁re", + "des" + ], + [ + "▁Camer", + "on" + ], + [ + "▁z", + "ye" + ], + [ + "▁How", + "e" + ], + [ + "▁Ho", + "we" + ], + [ + "▁Wi", + "k" + ], + [ + "▁W", + "ik" + ], + [ + "▁ir", + "rit" + ], + [ + "▁par", + "ody" + ], + [ + "▁voy", + "age" + ], + [ + "▁Great", + "er" + ], + [ + "▁Gre", + "ater" + ], + [ + "▁sc", + "ope" + ], + [ + "▁s", + "cope" + ], + [ + "▁commercial", + "ly" + ], + [ + "▁commer", + "cially" + ], + [ + "▁Me", + "g" + ], + [ + "▁M", + "eg" + ], + [ + "▁I", + "b" + ], + [ + "▁Da", + "w" + ], + [ + "▁D", + "aw" + ], + [ + "alli", + "ng" + ], + [ + "all", + "ing" + ], + [ + "al", + "ling" + ], + [ + "h", + "u" + ], + [ + "oli", + "n" + ], + [ + "ol", + "in" + ], + [ + "o", + "lin" + ], + [ + "▁purs", + "uit" + ], + [ + "▁search", + "ing" + ], + [ + "▁sear", + "ching" + ], + [ + "az", + "on" + ], + [ + "a", + "zon" + ], + [ + "▁light", + "er" + ], + [ + "▁l", + "ighter" + ], + [ + "▁revol", + "t" + ], + [ + "▁rev", + "olt" + ], + [ + "▁reinforcement", + "s" + ], + [ + "▁reinforce", + "ments" + ], + [ + "ri", + "um" + ], + [ + "r", + "ium" + ], + [ + "▁Bou", + "r" + ], + [ + "▁Bo", + "ur" + ], + [ + "▁B", + "our" + ], + [ + "▁Four", + "th" + ], + [ + "▁divor", + "ce" + ], + [ + "▁wish", + "ed" + ], + [ + "▁w", + "ished" + ], + [ + "▁Min", + "or" + ], + [ + "▁Mi", + "nor" + ], + [ + "▁Champ", + "ion" + ], + [ + "▁Ch", + "ampion" + ], + [ + "▁Lon", + "j" + ], + [ + "istan", + "t" + ], + [ + "ista", + "nt" + ], + [ + "ist", + "ant" + ], + [ + "▁cal", + "m" + ], + [ + "▁c", + "alm" + ], + [ + "▁Free", + "dom" + ], + [ + "▁Fre", + "edom" + ], + [ + "▁imp", + "er" + ], + [ + "▁im", + "per" + ], + [ + "▁promotion", + "al" + ], + [ + "▁promot", + "ional" + ], + [ + "▁prom", + "otional" + ], + [ + "▁Det", + "ay" + ], + [ + "▁fear", + "ed" + ], + [ + "▁fe", + "ared" + ], + [ + "▁f", + "eared" + ], + [ + "▁commander", + "s" + ], + [ + "▁command", + "ers" + ], + [ + "▁Afghan", + "istan" + ], + [ + "et", + "a" + ], + [ + "e", + "ta" + ], + [ + "▁Sw", + "ift" + ], + [ + "▁commence", + "d" + ], + [ + "▁comm", + "enced" + ], + [ + "ques", + "t" + ], + [ + "que", + "st" + ], + [ + "qu", + "est" + ], + [ + "▁rit", + "ual" + ], + [ + "▁Lat", + "itid" + ], + [ + "▁Go", + "t" + ], + [ + "▁G", + "ot" + ], + [ + "▁cor", + "d" + ], + [ + "▁co", + "rd" + ], + [ + "▁c", + "ord" + ], + [ + "▁Meth", + "od" + ], + [ + "▁Met", + "hod" + ], + [ + "▁Lonj", + "itid" + ], + [ + "▁Ow", + "en" + ], + [ + "▁O", + "wen" + ], + [ + "▁accept", + "ance" + ], + [ + "▁ram", + "p" + ], + [ + "▁ra", + "mp" + ], + [ + "▁r", + "amp" + ], + [ + "here", + "nt" + ], + [ + "her", + "ent" + ], + [ + "he", + "rent" + ], + [ + "▁rad", + "i" + ], + [ + "▁ra", + "di" + ], + [ + "▁r", + "adi" + ], + [ + "▁fib", + "er" + ], + [ + "▁fi", + "ber" + ], + [ + "▁f", + "iber" + ], + [ + "▁safe", + "ly" + ], + [ + "▁saf", + "ely" + ], + [ + "▁re", + "h" + ], + [ + "act", + "ic" + ], + [ + "ac", + "tic" + ], + [ + "a", + "ctic" + ], + [ + "▁withdraw", + "n" + ], + [ + "▁withd", + "rawn" + ], + [ + "▁occasion", + "al" + ], + [ + "▁occas", + "ional" + ], + [ + "▁tou", + "t" + ], + [ + "▁to", + "ut" + ], + [ + "▁t", + "out" + ], + [ + "▁Protest", + "ant" + ], + [ + "▁T", + "NA" + ], + [ + "▁adv", + "ancing" + ], + [ + "▁NC", + "AA" + ], + [ + "▁hop", + "ing" + ], + [ + "▁ho", + "ping" + ], + [ + "▁h", + "oping" + ], + [ + "▁assign", + "ment" + ], + [ + "▁ass", + "ignment" + ], + [ + "▁blue", + "s" + ], + [ + "▁bl", + "ues" + ], + [ + "▁Bur", + "ton" + ], + [ + "ana", + "s" + ], + [ + "an", + "as" + ], + [ + "a", + "nas" + ], + [ + "fl", + "ow" + ], + [ + "f", + "low" + ], + [ + "▁sp", + "awn" + ], + [ + "fo", + "und" + ], + [ + "f", + "ound" + ], + [ + "▁re", + "organ" + ], + [ + "▁quarter", + "s" + ], + [ + "▁quar", + "ters" + ], + [ + "▁qu", + "arters" + ], + [ + "▁", + "quarters" + ], + [ + "I", + "ON" + ], + [ + "▁me", + "al" + ], + [ + "▁m", + "eal" + ], + [ + "hy", + "d" + ], + [ + "h", + "yd" + ], + [ + "oc", + "ene" + ], + [ + "▁Ren", + "a" + ], + [ + "▁Re", + "na" + ], + [ + "▁R", + "ena" + ], + [ + "▁border", + "s" + ], + [ + "▁bord", + "ers" + ], + [ + "▁bor", + "ders" + ], + [ + "▁b", + "orders" + ], + [ + "▁Bu", + "d" + ], + [ + "▁B", + "ud" + ], + [ + "▁Region", + "al" + ], + [ + "▁Reg", + "ional" + ], + [ + "▁C", + "H" + ], + [ + "▁", + "CH" + ], + [ + "▁du", + "o" + ], + [ + "▁d", + "uo" + ], + [ + "grad", + "e" + ], + [ + "gra", + "de" + ], + [ + "gr", + "ade" + ], + [ + "▁ac", + "re" + ], + [ + "▁", + "acre" + ], + [ + "▁outd", + "oor" + ], + [ + "▁horizon", + "tal" + ], + [ + "▁horiz", + "ontal" + ], + [ + "▁Ta", + "k" + ], + [ + "▁T", + "ak" + ], + [ + "▁encom", + "pass" + ], + [ + "utt", + "on" + ], + [ + "ut", + "ton" + ], + [ + "▁Comm", + "er" + ], + [ + "▁Com", + "mer" + ], + [ + "▁tr", + "unk" + ], + [ + "▁Brazil", + "ian" + ], + [ + "ash", + "a" + ], + [ + "as", + "ha" + ], + [ + "▁Int", + "ellig" + ], + [ + "▁Lor", + "e" + ], + [ + "▁Lo", + "re" + ], + [ + "▁L", + "ore" + ], + [ + "▁mi", + "z" + ], + [ + "▁m", + "iz" + ], + [ + "▁host", + "ile" + ], + [ + "▁Well", + "s" + ], + [ + "▁Wel", + "ls" + ], + [ + "▁W", + "ells" + ], + [ + "con", + "s" + ], + [ + "co", + "ns" + ], + [ + "c", + "ons" + ], + [ + "▁Pa", + "ge" + ], + [ + "▁P", + "age" + ], + [ + "▁our", + "selves" + ], + [ + "ili", + "a" + ], + [ + "il", + "ia" + ], + [ + "i", + "lia" + ], + [ + "back", + "s" + ], + [ + "b", + "acks" + ], + [ + "lis", + "t" + ], + [ + "li", + "st" + ], + [ + "l", + "ist" + ], + [ + "▁doctr", + "ine" + ], + [ + "▁doct", + "rine" + ], + [ + "ur", + "i" + ], + [ + "u", + "ri" + ], + [ + "▁Lang", + "uage" + ], + [ + "▁Cat", + "hedral" + ], + [ + "ran", + "g" + ], + [ + "ra", + "ng" + ], + [ + "r", + "ang" + ], + [ + "ard", + "ed" + ], + [ + "ar", + "ded" + ], + [ + "▁Can", + "d" + ], + [ + "▁Ca", + "nd" + ], + [ + "▁C", + "and" + ], + [ + "IN", + "G" + ], + [ + "I", + "NG" + ], + [ + "▁Stu", + "art" + ], + [ + "▁189", + "5" + ], + [ + "▁18", + "95" + ], + [ + "▁si", + "d" + ], + [ + "▁s", + "id" + ], + [ + "ch", + "t" + ], + [ + "c", + "ht" + ], + [ + "▁historical", + "ly" + ], + [ + "▁historic", + "ally" + ], + [ + "▁histor", + "ically" + ], + [ + "h", + "o" + ], + [ + "▁summ", + "ar" + ], + [ + "▁sum", + "mar" + ], + [ + "▁inf", + "ant" + ], + [ + "▁pack", + "age" + ], + [ + "▁i", + "b" + ], + [ + "▁", + "ib" + ], + [ + "▁Leg", + "isl" + ], + [ + "▁R", + "P" + ], + [ + "▁disturb", + "ance" + ], + [ + "▁Ter", + "ry" + ], + [ + "▁Reg", + "ister" + ], + [ + "▁battle", + "cru" + ], + [ + "▁per", + "pet" + ], + [ + "▁Ice", + "land" + ], + [ + "▁I", + "celand" + ], + [ + "▁termin", + "al" + ], + [ + "▁term", + "inal" + ], + [ + "▁hun", + "g" + ], + [ + "▁h", + "ung" + ], + [ + "▁Brad", + "man" + ], + [ + "▁Republican", + "s" + ], + [ + "▁Republic", + "ans" + ], + [ + "ne", + "um" + ], + [ + "n", + "eum" + ], + [ + "▁her", + "b" + ], + [ + "▁h", + "erb" + ], + [ + "▁bar", + "rier" + ], + [ + "▁wor", + "ry" + ], + [ + "▁Product", + "ion" + ], + [ + "▁Produ", + "ction" + ], + [ + "▁Pro", + "duction" + ], + [ + "▁P", + "roduction" + ], + [ + "G", + "B" + ], + [ + "be", + "at" + ], + [ + "▁Vi", + "t" + ], + [ + "▁V", + "it" + ], + [ + "▁cho", + "osing" + ], + [ + "▁inter", + "ven" + ], + [ + "▁number", + "ed" + ], + [ + "▁n", + "umbered" + ], + [ + "▁install", + "ation" + ], + [ + "▁0", + "3" + ], + [ + "▁pow", + "der" + ], + [ + "▁p", + "owder" + ], + [ + "▁", + "powder" + ], + [ + "▁philos", + "oph" + ], + [ + "▁Sal", + "v" + ], + [ + "▁Sa", + "lv" + ], + [ + "▁may", + "be" + ], + [ + "E", + "L" + ], + [ + "ling", + "s" + ], + [ + "lin", + "gs" + ], + [ + "l", + "ings" + ], + [ + "▁Jo", + "int" + ], + [ + "▁J", + "oint" + ], + [ + "imin", + "ary" + ], + [ + "im", + "inary" + ], + [ + "▁fr", + "o" + ], + [ + "▁f", + "ro" + ], + [ + "▁cons", + "ent" + ], + [ + "▁god", + "dess" + ], + [ + "▁view", + "ing" + ], + [ + "▁vie", + "wing" + ], + [ + "▁enl", + "ar" + ], + [ + "▁en", + "lar" + ], + [ + "h", + "n" + ], + [ + "▁invent", + "ed" + ], + [ + "▁inv", + "ented" + ], + [ + "▁Constant", + "in" + ], + [ + "▁Cro", + "w" + ], + [ + "▁Cr", + "ow" + ], + [ + "▁C", + "row" + ], + [ + "▁leg", + "acy" + ], + [ + "▁would", + "n" + ], + [ + "▁Ga", + "y" + ], + [ + "▁G", + "ay" + ], + [ + "utor", + "s" + ], + [ + "uto", + "rs" + ], + [ + "ut", + "ors" + ], + [ + "▁R", + "é" + ], + [ + "▁Bet", + "h" + ], + [ + "▁Be", + "th" + ], + [ + "▁B", + "eth" + ], + [ + "▁ma", + "s" + ], + [ + "▁m", + "as" + ], + [ + "▁", + "mas" + ], + [ + "ubl", + "in" + ], + [ + "ub", + "lin" + ], + [ + "▁Rut", + "h" + ], + [ + "▁Ru", + "th" + ], + [ + "▁R", + "uth" + ], + [ + "▁trait", + "s" + ], + [ + "▁tra", + "its" + ], + [ + "▁Pict", + "ure" + ], + [ + "▁Pic", + "ture" + ], + [ + "▁Sk", + "in" + ], + [ + "▁S", + "kin" + ], + [ + "ail", + "ing" + ], + [ + "ai", + "ling" + ], + [ + "a", + "iling" + ], + [ + "▁Num", + "ber" + ], + [ + "▁Nu", + "mber" + ], + [ + "▁N", + "umber" + ], + [ + "▁dro", + "wn" + ], + [ + "▁dr", + "own" + ], + [ + "▁d", + "rown" + ], + [ + "▁Dall", + "as" + ], + [ + "▁Dal", + "las" + ], + [ + "▁un", + "employ" + ], + [ + "▁collect", + "ing" + ], + [ + "hel", + "d" + ], + [ + "he", + "ld" + ], + [ + "h", + "eld" + ], + [ + "▁mark", + "ing" + ], + [ + "▁mar", + "king" + ], + [ + "ba", + "st" + ], + [ + "b", + "ast" + ], + [ + "▁boiler", + "s" + ], + [ + "▁boil", + "ers" + ], + [ + "ig", + "a" + ], + [ + "i", + "ga" + ], + [ + "▁total", + "ly" + ], + [ + "▁tot", + "ally" + ], + [ + "▁ball", + "ad" + ], + [ + "▁per", + "m" + ], + [ + "▁pe", + "rm" + ], + [ + "▁p", + "erm" + ], + [ + "est", + "ock" + ], + [ + "e", + "stock" + ], + [ + "▁Cl", + "ick" + ], + [ + "▁matem", + "atisyen" + ], + [ + "am", + "ation" + ], + [ + "▁wrest", + "ling" + ], + [ + "E", + "P" + ], + [ + "oli", + "a" + ], + [ + "ol", + "ia" + ], + [ + "o", + "lia" + ], + [ + "▁ch", + "a" + ], + [ + "▁c", + "ha" + ], + [ + "▁", + "cha" + ], + [ + "clus", + "ive" + ], + [ + "cl", + "usive" + ], + [ + "▁render", + "ed" + ], + [ + "ior", + "s" + ], + [ + "io", + "rs" + ], + [ + "i", + "ors" + ], + [ + "▁ju", + "ven" + ], + [ + "▁citiz", + "en" + ], + [ + "▁opp", + "osing" + ], + [ + "▁innov", + "ation" + ], + [ + "ray", + "s" + ], + [ + "ra", + "ys" + ], + [ + "r", + "ays" + ], + [ + "▁strike", + "s" + ], + [ + "▁strik", + "es" + ], + [ + "▁stri", + "kes" + ], + [ + "▁str", + "ikes" + ], + [ + "▁pwo", + "d" + ], + [ + "▁pw", + "od" + ], + [ + "▁Ranger", + "s" + ], + [ + "▁Range", + "rs" + ], + [ + "▁Ran", + "gers" + ], + [ + "▁R", + "angers" + ], + [ + "N", + "C" + ], + [ + "▁k", + "a" + ], + [ + "▁", + "ka" + ], + [ + "▁cre", + "am" + ], + [ + "▁c", + "ream" + ], + [ + "▁Dise", + "ase" + ], + [ + "▁ingredient", + "s" + ], + [ + "▁ingred", + "ients" + ], + [ + "pin", + "e" + ], + [ + "pi", + "ne" + ], + [ + "p", + "ine" + ], + [ + "U", + "C" + ], + [ + "cop", + "e" + ], + [ + "co", + "pe" + ], + [ + "c", + "ope" + ], + [ + "▁ins", + "u" + ], + [ + "▁cre", + "st" + ], + [ + "▁cr", + "est" + ], + [ + "▁c", + "rest" + ], + [ + "ie", + "u" + ], + [ + "i", + "eu" + ], + [ + "▁sea", + "l" + ], + [ + "▁se", + "al" + ], + [ + "▁s", + "eal" + ], + [ + "▁command", + "ing" + ], + [ + "▁threaten", + "ing" + ], + [ + "▁threat", + "ening" + ], + [ + "▁Can", + "cer" + ], + [ + "▁C", + "ancer" + ], + [ + "▁bi", + "n" + ], + [ + "▁b", + "in" + ], + [ + "▁", + "bin" + ], + [ + "▁reserve", + "d" + ], + [ + "▁reserv", + "ed" + ], + [ + "▁res", + "erved" + ], + [ + "iti", + "me" + ], + [ + "it", + "ime" + ], + [ + "i", + "time" + ], + [ + "I", + "P" + ], + [ + "▁189", + "7" + ], + [ + "▁18", + "97" + ], + [ + "▁Fut", + "ure" + ], + [ + "▁Fu", + "ture" + ], + [ + "▁F", + "uture" + ], + [ + "olin", + "e" + ], + [ + "oli", + "ne" + ], + [ + "ol", + "ine" + ], + [ + "o", + "line" + ], + [ + "▁fin", + "g" + ], + [ + "▁fi", + "ng" + ], + [ + "▁f", + "ing" + ], + [ + "other", + "apy" + ], + [ + "▁i", + "c" + ], + [ + "▁", + "ic" + ], + [ + "▁bow", + "l" + ], + [ + "▁b", + "owl" + ], + [ + "erate", + "d" + ], + [ + "erat", + "ed" + ], + [ + "era", + "ted" + ], + [ + "er", + "ated" + ], + [ + "e", + "rated" + ], + [ + "▁prot", + "otype" + ], + [ + "▁concentration", + "s" + ], + [ + "▁concent", + "rations" + ], + [ + "▁E", + "C" + ], + [ + "▁", + "EC" + ], + [ + "▁special", + "ized" + ], + [ + "▁1", + ":" + ], + [ + "holder", + "s" + ], + [ + "hold", + "ers" + ], + [ + "hol", + "ders" + ], + [ + "wh", + "ich" + ], + [ + "▁size", + "d" + ], + [ + "▁si", + "zed" + ], + [ + "▁s", + "ized" + ], + [ + "▁compar", + "e" + ], + [ + "▁comp", + "are" + ], + [ + "▁perfect", + "ly" + ], + [ + "ens", + "is" + ], + [ + "en", + "sis" + ], + [ + "▁air", + "field" + ], + [ + "▁relat", + "ing" + ], + [ + "▁rel", + "ating" + ], + [ + "oir", + "s" + ], + [ + "oi", + "rs" + ], + [ + "o", + "irs" + ], + [ + "ma", + "king" + ], + [ + "m", + "aking" + ], + [ + "▁Fin", + "d" + ], + [ + "▁Fi", + "nd" + ], + [ + "▁F", + "ind" + ], + [ + "▁archae", + "ological" + ], + [ + "6", + "," + ], + [ + "iz", + "z" + ], + [ + "i", + "zz" + ], + [ + "▁", + "»" + ], + [ + "ama", + "s" + ], + [ + "am", + "as" + ], + [ + "a", + "mas" + ], + [ + "▁His", + "pan" + ], + [ + "▁Satur", + "n" + ], + [ + "▁Sat", + "urn" + ], + [ + "▁beat", + "ing" + ], + [ + "▁be", + "ating" + ], + [ + "▁myster", + "ious" + ], + [ + "▁Mate", + "r" + ], + [ + "▁Mat", + "er" + ], + [ + "▁Ma", + "ter" + ], + [ + "▁M", + "ater" + ], + [ + "▁res", + "on" + ], + [ + "▁re", + "son" + ], + [ + "abul", + "ary" + ], + [ + "atist", + "ik" + ], + [ + "▁recur", + "ring" + ], + [ + "▁rec", + "urring" + ], + [ + "▁Sax", + "on" + ], + [ + "▁table", + "s" + ], + [ + "▁tab", + "les" + ], + [ + "▁t", + "ables" + ], + [ + "▁subs", + "c" + ], + [ + "▁sub", + "sc" + ], + [ + "▁therm", + "al" + ], + [ + "▁up", + "coming" + ], + [ + "▁portra", + "it" + ], + [ + "▁l", + "augh" + ], + [ + "▁haz", + "ard" + ], + [ + "ani", + "m" + ], + [ + "an", + "im" + ], + [ + "▁fun", + "gus" + ], + [ + "▁Star", + "s" + ], + [ + "▁Sta", + "rs" + ], + [ + "▁St", + "ars" + ], + [ + "7", + "7" + ], + [ + "isa", + "n" + ], + [ + "is", + "an" + ], + [ + "▁ca", + "v" + ], + [ + "▁c", + "av" + ], + [ + "▁Mont", + "ana" + ], + [ + "▁:", + "2" + ], + [ + "▁cl", + "ient" + ], + [ + "itt", + "ed" + ], + [ + "it", + "ted" + ], + [ + "▁ree", + "f" + ], + [ + "▁re", + "ef" + ], + [ + "ö", + "n" + ], + [ + "▁Ha", + "v" + ], + [ + "▁H", + "av" + ], + [ + "be", + "ing" + ], + [ + "b", + "eing" + ], + [ + "▁metab", + "ol" + ], + [ + "▁Mar", + "vel" + ], + [ + "▁fam", + "e" + ], + [ + "▁fa", + "me" + ], + [ + "▁f", + "ame" + ], + [ + "▁pray", + "er" + ], + [ + "▁pra", + "yer" + ], + [ + "▁pr", + "ayer" + ], + [ + "esi", + "ty" + ], + [ + "es", + "ity" + ], + [ + "▁Isa", + "ac" + ], + [ + "▁Johns", + "ton" + ], + [ + "▁John", + "ston" + ], + [ + "▁diplom", + "atic" + ], + [ + "▁Obs", + "erv" + ], + [ + "▁house", + "d" + ], + [ + "▁hous", + "ed" + ], + [ + "▁ho", + "used" + ], + [ + "▁h", + "oused" + ], + [ + "▁atmosp", + "heric" + ], + [ + "▁Sa", + "k" + ], + [ + "▁S", + "ak" + ], + [ + "▁desp", + "er" + ], + [ + "▁des", + "per" + ], + [ + "▁Cra", + "w" + ], + [ + "▁Cr", + "aw" + ], + [ + "▁C", + "raw" + ], + [ + "▁can", + "t" + ], + [ + "▁ca", + "nt" + ], + [ + "▁c", + "ant" + ], + [ + "▁Cha", + "ir" + ], + [ + "▁Ch", + "air" + ], + [ + "▁overwhel", + "ming" + ], + [ + "est", + "on" + ], + [ + "es", + "ton" + ], + [ + "e", + "ston" + ], + [ + "▁atom", + "s" + ], + [ + "▁at", + "oms" + ], + [ + "▁behavior", + "s" + ], + [ + "▁behavi", + "ors" + ], + [ + "▁behav", + "iors" + ], + [ + "▁Os", + "lo" + ], + [ + "▁dec", + "e" + ], + [ + "▁de", + "ce" + ], + [ + "▁fro", + "n" + ], + [ + "▁fr", + "on" + ], + [ + "▁f", + "ron" + ], + [ + "▁Picture", + "s" + ], + [ + "▁Pict", + "ures" + ], + [ + "▁Pic", + "tures" + ], + [ + "▁favour", + "ite" + ], + [ + "▁happen", + "ing" + ], + [ + "▁happ", + "ening" + ], + [ + "▁Acc", + "ess" + ], + [ + "▁Ac", + "cess" + ], + [ + "▁A", + "ccess" + ], + [ + "▁limit", + "ations" + ], + [ + "▁lim", + "itations" + ], + [ + "▁F", + "BI" + ], + [ + "▁Rez", + "ime" + ], + [ + "▁con", + "gress" + ], + [ + "▁southeast", + "ern" + ], + [ + "▁sout", + "heastern" + ], + [ + "▁tour", + "s" + ], + [ + "▁tou", + "rs" + ], + [ + "▁to", + "urs" + ], + [ + "▁t", + "ours" + ], + [ + "▁Æ", + "thel" + ], + [ + "▁advantage", + "s" + ], + [ + "▁advant", + "ages" + ], + [ + "▁Re", + "ich" + ], + [ + "▁orient", + "ed" + ], + [ + "▁ori", + "ented" + ], + [ + "▁Alb", + "an" + ], + [ + "▁Al", + "ban" + ], + [ + "▁Bry", + "an" + ], + [ + "▁Br", + "yan" + ], + [ + "▁depict", + "s" + ], + [ + "▁comp", + "iled" + ], + [ + "nel", + "s" + ], + [ + "ne", + "ls" + ], + [ + "n", + "els" + ], + [ + "▁to", + "b" + ], + [ + "▁t", + "ob" + ], + [ + "▁Nan", + "cy" + ], + [ + "▁N", + "ancy" + ], + [ + "▁compar", + "ing" + ], + [ + "▁comp", + "aring" + ], + [ + "H", + "S" + ], + [ + "▁Li", + "s" + ], + [ + "▁L", + "is" + ], + [ + "▁Sa", + "d" + ], + [ + "▁S", + "ad" + ], + [ + "▁j", + "aw" + ], + [ + "▁un", + "t" + ], + [ + "▁u", + "nt" + ], + [ + "▁", + "unt" + ], + [ + "▁Mal", + "l" + ], + [ + "▁Ma", + "ll" + ], + [ + "▁M", + "all" + ], + [ + "▁Her", + "ald" + ], + [ + "▁H", + "erald" + ], + [ + "▁Again", + "st" + ], + [ + "▁creat", + "ure" + ], + [ + "▁cre", + "ature" + ], + [ + "▁Athen", + "s" + ], + [ + "▁Ath", + "ens" + ], + [ + "▁At", + "hens" + ], + [ + "▁el", + "ite" + ], + [ + "▁accompl", + "ish" + ], + [ + "▁accomp", + "lish" + ], + [ + "ult", + "s" + ], + [ + "ul", + "ts" + ], + [ + "▁Le", + "ad" + ], + [ + "▁L", + "ead" + ], + [ + "▁fossil", + "s" + ], + [ + "▁foss", + "ils" + ], + [ + "▁myth", + "ology" + ], + [ + "▁rel", + "ocated" + ], + [ + "▁pup", + "p" + ], + [ + "▁p", + "upp" + ], + [ + "▁Pat", + "ri" + ], + [ + "▁P", + "atri" + ], + [ + "▁est", + "atistik" + ], + [ + "▁travel", + "ling" + ], + [ + "▁trav", + "elling" + ], + [ + "N", + "e" + ], + [ + "▁Cor", + "t" + ], + [ + "▁C", + "ort" + ], + [ + "▁pres", + "t" + ], + [ + "▁pre", + "st" + ], + [ + "▁pr", + "est" + ], + [ + "▁p", + "rest" + ], + [ + "▁Hy", + "d" + ], + [ + "▁H", + "yd" + ], + [ + "▁George", + "s" + ], + [ + "▁Georg", + "es" + ], + [ + "▁Geor", + "ges" + ], + [ + "ender", + "s" + ], + [ + "end", + "ers" + ], + [ + "en", + "ders" + ], + [ + "▁super", + "st" + ], + [ + "da", + "m" + ], + [ + "d", + "am" + ], + [ + "ma", + "t" + ], + [ + "m", + "at" + ], + [ + "▁cav", + "e" + ], + [ + "▁ca", + "ve" + ], + [ + "▁c", + "ave" + ], + [ + "▁myster", + "y" + ], + [ + "▁myst", + "ery" + ], + [ + "▁Champion", + "s" + ], + [ + "▁Champ", + "ions" + ], + [ + "▁Ch", + "ampions" + ], + [ + "▁intellig", + "ent" + ], + [ + "▁discuss", + "ing" + ], + [ + "gom", + "ery" + ], + [ + "▁Ag", + "u" + ], + [ + "▁A", + "gu" + ], + [ + "▁Un", + "it" + ], + [ + "▁edge", + "s" + ], + [ + "▁ed", + "ges" + ], + [ + "ob", + "a" + ], + [ + "o", + "ba" + ], + [ + "G", + "rain" + ], + [ + "▁pro", + "ud" + ], + [ + "▁pr", + "oud" + ], + [ + "ed", + "a" + ], + [ + "e", + "da" + ], + [ + "ini", + "s" + ], + [ + "in", + "is" + ], + [ + "i", + "nis" + ], + [ + "▁Lev", + "el" + ], + [ + "▁Le", + "vel" + ], + [ + "▁You", + "th" + ], + [ + "▁Yo", + "uth" + ], + [ + "▁Y", + "outh" + ], + [ + "iste", + "nce" + ], + [ + "ist", + "ence" + ], + [ + "ount", + "ers" + ], + [ + "oun", + "ters" + ], + [ + "▁Cru", + "s" + ], + [ + "▁Cr", + "us" + ], + [ + "▁C", + "rus" + ], + [ + "▁rej", + "o" + ], + [ + "▁re", + "jo" + ], + [ + "▁explore", + "d" + ], + [ + "▁explor", + "ed" + ], + [ + "▁explo", + "red" + ], + [ + "▁expl", + "ored" + ], + [ + "ordin", + "ary" + ], + [ + "ord", + "inary" + ], + [ + "▁speak", + "er" + ], + [ + "▁spe", + "aker" + ], + [ + "▁Hunt", + "er" + ], + [ + "▁Hun", + "ter" + ], + [ + "▁V", + "o" + ], + [ + "▁Pr", + "a" + ], + [ + "▁P", + "ra" + ], + [ + "▁sail", + "ing" + ], + [ + "▁sa", + "iling" + ], + [ + "▁s", + "ailing" + ], + [ + "▁dam", + "aging" + ], + [ + "V", + "ID" + ], + [ + "itt", + "ing" + ], + [ + "it", + "ting" + ], + [ + "▁nomination", + "s" + ], + [ + "▁nomin", + "ations" + ], + [ + "▁nom", + "inations" + ], + [ + "▁correct", + "ly" + ], + [ + "▁thick", + "ness" + ], + [ + "▁di", + "l" + ], + [ + "▁d", + "il" + ], + [ + "▁scra", + "p" + ], + [ + "▁scr", + "ap" + ], + [ + "▁sc", + "rap" + ], + [ + "eli", + "hood" + ], + [ + "▁sacrific", + "e" + ], + [ + "▁sacr", + "ifice" + ], + [ + "▁Lu", + "d" + ], + [ + "▁L", + "ud" + ], + [ + "▁Cost", + "a" + ], + [ + "▁Cos", + "ta" + ], + [ + "▁Co", + "sta" + ], + [ + "ons", + "o" + ], + [ + "on", + "so" + ], + [ + "▁Zo", + "ne" + ], + [ + "▁Z", + "one" + ], + [ + "ac", + "ular" + ], + [ + "▁conf", + "er" + ], + [ + "▁con", + "fer" + ], + [ + "▁treat", + "ing" + ], + [ + "▁tre", + "ating" + ], + [ + "▁cons", + "ensus" + ], + [ + "ass", + "ium" + ], + [ + "▁n", + "autical" + ], + [ + "▁disappear", + "ed" + ], + [ + "▁disapp", + "eared" + ], + [ + "▁CB", + "S" + ], + [ + "▁C", + "BS" + ], + [ + "▁Friend", + "s" + ], + [ + "unc", + "t" + ], + [ + "un", + "ct" + ], + [ + "▁memor", + "ies" + ], + [ + "▁mem", + "ories" + ], + [ + "▁identify", + "ing" + ], + [ + "▁ident", + "ifying" + ], + [ + "▁shark", + "s" + ], + [ + "▁shar", + "ks" + ], + [ + "▁sh", + "arks" + ], + [ + "ran", + "d" + ], + [ + "ra", + "nd" + ], + [ + "r", + "and" + ], + [ + "▁Na", + "v" + ], + [ + "▁N", + "av" + ], + [ + "then", + "ing" + ], + [ + "the", + "ning" + ], + [ + "th", + "ening" + ], + [ + "▁Wor", + "d" + ], + [ + "▁W", + "ord" + ], + [ + "▁Mont", + "gomery" + ], + [ + "we", + "r" + ], + [ + "w", + "er" + ], + [ + "hi", + "ll" + ], + [ + "h", + "ill" + ], + [ + "▁bus", + "y" + ], + [ + "▁bu", + "sy" + ], + [ + "ig", + "o" + ], + [ + "i", + "go" + ], + [ + "▁20", + "2" + ], + [ + "▁fat", + "al" + ], + [ + "▁fa", + "tal" + ], + [ + "▁f", + "atal" + ], + [ + "▁anticip", + "ated" + ], + [ + "▁bond", + "s" + ], + [ + "▁bon", + "ds" + ], + [ + "▁b", + "onds" + ], + [ + "▁Clark", + "e" + ], + [ + "▁Pri", + "x" + ], + [ + "▁Pr", + "ix" + ], + [ + "▁P", + "rix" + ], + [ + "▁track", + "ing" + ], + [ + "▁tr", + "acking" + ], + [ + "▁air", + "line" + ], + [ + "▁out", + "standing" + ], + [ + "▁Iv", + "an" + ], + [ + "▁I", + "van" + ], + [ + "--", + "-" + ], + [ + "-", + "--" + ], + [ + "In", + "Grain" + ], + [ + "▁intersect", + "s" + ], + [ + "▁inters", + "ects" + ], + [ + "▁Fall", + "InGrain" + ], + [ + "▁met", + "ric" + ], + [ + "▁belong", + "ing" + ], + [ + "▁wonder", + "ful" + ], + [ + "▁Bod", + "y" + ], + [ + "▁Bo", + "dy" + ], + [ + "▁B", + "ody" + ], + [ + "▁hard", + "er" + ], + [ + "▁har", + "der" + ], + [ + "▁Brook", + "s" + ], + [ + "▁Br", + "ooks" + ], + [ + "▁beat", + "en" + ], + [ + "mas", + "ter" + ], + [ + "ma", + "ster" + ], + [ + "m", + "aster" + ], + [ + "▁C", + "ricket" + ], + [ + "▁elder", + "ly" + ], + [ + "▁renew", + "ed" + ], + [ + "▁U", + "E" + ], + [ + "▁Mi", + "g" + ], + [ + "▁M", + "ig" + ], + [ + "ing", + "ham" + ], + [ + "▁dist", + "ract" + ], + [ + "▁Perform", + "ance" + ], + [ + "ru", + "b" + ], + [ + "r", + "ub" + ], + [ + "▁collect", + "ive" + ], + [ + "▁colle", + "ctive" + ], + [ + "▁coll", + "ective" + ], + [ + "▁Fi", + "tz" + ], + [ + "▁F", + "itz" + ], + [ + "▁Rob", + "in" + ], + [ + "▁Ro", + "bin" + ], + [ + "▁breed", + "s" + ], + [ + "▁bree", + "ds" + ], + [ + "▁bre", + "eds" + ], + [ + "▁attract", + "ive" + ], + [ + "▁cree", + "k" + ], + [ + "▁cre", + "ek" + ], + [ + "▁c", + "reek" + ], + [ + "▁Tro", + "phy" + ], + [ + "▁Tr", + "ophy" + ], + [ + "▁ray", + "s" + ], + [ + "▁ra", + "ys" + ], + [ + "▁r", + "ays" + ], + [ + "▁", + "rays" + ], + [ + "▁extend", + "s" + ], + [ + "▁ext", + "ends" + ], + [ + "▁reserve", + "s" + ], + [ + "▁reserv", + "es" + ], + [ + "▁res", + "erves" + ], + [ + "od", + "a" + ], + [ + "o", + "da" + ], + [ + "▁Neb", + "r" + ], + [ + "▁Ne", + "br" + ], + [ + "▁urg", + "ed" + ], + [ + "▁ur", + "ged" + ], + [ + "▁guest", + "s" + ], + [ + "▁gu", + "ests" + ], + [ + "▁abst", + "ract" + ], + [ + "-20", + "0" + ], + [ + "-2", + "00" + ], + [ + "-", + "200" + ], + [ + "▁Econom", + "ic" + ], + [ + "▁Ec", + "onomic" + ], + [ + "▁Pen", + "t" + ], + [ + "▁Pe", + "nt" + ], + [ + "▁P", + "ent" + ], + [ + "▁rival", + "ry" + ], + [ + "▁corrupt", + "ion" + ], + [ + "▁cor", + "ruption" + ], + [ + "▁inc", + "l" + ], + [ + "▁in", + "cl" + ], + [ + "reat", + "ed" + ], + [ + "rea", + "ted" + ], + [ + "re", + "ated" + ], + [ + "▁Marg", + "e" + ], + [ + "▁Mar", + "ge" + ], + [ + "ens", + "on" + ], + [ + "en", + "son" + ], + [ + "Ar", + "thur" + ], + [ + "’", + "." + ], + [ + "▁ro", + "d" + ], + [ + "▁r", + "od" + ], + [ + "▁", + "rod" + ], + [ + "▁clean", + "ing" + ], + [ + "▁cle", + "aning" + ], + [ + "▁er", + "osion" + ], + [ + "▁Ins", + "p" + ], + [ + "▁In", + "sp" + ], + [ + "▁capt", + "uring" + ], + [ + "▁Ste", + "in" + ], + [ + "arent", + "s" + ], + [ + "aren", + "ts" + ], + [ + "ar", + "ents" + ], + [ + "▁pra", + "ising" + ], + [ + "▁Ro", + "u" + ], + [ + "▁R", + "ou" + ], + [ + "▁sp", + "ar" + ], + [ + "▁s", + "par" + ], + [ + "▁mist", + "ake" + ], + [ + "▁destroy", + "er" + ], + [ + "▁Met", + "ropolitan" + ], + [ + "▁Wi", + "i" + ], + [ + "▁W", + "ii" + ], + [ + "utt", + "er" + ], + [ + "ut", + "ter" + ], + [ + "▁under", + "go" + ], + [ + "▁Church", + "ill" + ], + [ + "▁stole", + "n" + ], + [ + "▁st", + "olen" + ], + [ + "▁vol", + "tage" + ], + [ + "▁territ", + "orial" + ], + [ + "or", + "rect" + ], + [ + "▁Att", + "orney" + ], + [ + "▁che", + "ap" + ], + [ + "▁tour", + "ed" + ], + [ + "▁tou", + "red" + ], + [ + "▁to", + "ured" + ], + [ + "▁t", + "oured" + ], + [ + "▁discont", + "in" + ], + [ + "▁dis", + "contin" + ], + [ + "▁Sha", + "h" + ], + [ + "▁Sh", + "ah" + ], + [ + "▁pl", + "enty" + ], + [ + ".", + "|" + ], + [ + "ces", + "ter" + ], + [ + "ce", + "ster" + ], + [ + "c", + "ester" + ], + [ + "ble", + "m" + ], + [ + "bl", + "em" + ], + [ + "b", + "lem" + ], + [ + "ig", + "ue" + ], + [ + "i", + "gue" + ], + [ + "▁pin", + "e" + ], + [ + "▁pi", + "ne" + ], + [ + "▁p", + "ine" + ], + [ + "▁", + "pine" + ], + [ + "iotic", + "s" + ], + [ + "iot", + "ics" + ], + [ + "▁less", + "er" + ], + [ + "▁incorpor", + "ate" + ], + [ + "▁Laur", + "a" + ], + [ + "▁La", + "ura" + ], + [ + "▁acqu", + "ire" + ], + [ + "▁mic", + "e" + ], + [ + "▁mi", + "ce" + ], + [ + "▁m", + "ice" + ], + [ + "▁essay", + "s" + ], + [ + "▁ess", + "ays" + ], + [ + "he", + "a" + ], + [ + "h", + "ea" + ], + [ + "▁administer", + "ed" + ], + [ + "▁administ", + "ered" + ], + [ + "▁admin", + "istered" + ], + [ + "en", + "z" + ], + [ + "▁dis", + "k" + ], + [ + "▁di", + "sk" + ], + [ + "▁d", + "isk" + ], + [ + "▁fear", + "s" + ], + [ + "▁fe", + "ars" + ], + [ + "▁f", + "ears" + ], + [ + "▁gl", + "uc" + ], + [ + "▁ar", + "ose" + ], + [ + "▁a", + "rose" + ], + [ + "▁kit", + "chen" + ], + [ + "▁Pe", + "l" + ], + [ + "▁P", + "el" + ], + [ + "▁ten", + "t" + ], + [ + "▁te", + "nt" + ], + [ + "▁t", + "ent" + ], + [ + "▁un", + "h" + ], + [ + "apo", + "r" + ], + [ + "ap", + "or" + ], + [ + "a", + "por" + ], + [ + "▁rain", + "s" + ], + [ + "▁ra", + "ins" + ], + [ + "▁r", + "ains" + ], + [ + "ra", + "id" + ], + [ + "r", + "aid" + ], + [ + "▁All", + "iance" + ], + [ + "▁Resource", + "s" + ], + [ + "▁Res", + "ources" + ], + [ + "▁reason", + "able" + ], + [ + "pe", + "s" + ], + [ + "p", + "es" + ], + [ + "▁fle", + "sh" + ], + [ + "▁fl", + "esh" + ], + [ + "▁f", + "lesh" + ], + [ + "▁event", + "ual" + ], + [ + "▁Constantin", + "e" + ], + [ + "▁Constant", + "ine" + ], + [ + "▁Const", + "antine" + ], + [ + "ag", + "ram" + ], + [ + "a", + "gram" + ], + [ + "▁reyal", + "izatè" + ], + [ + "▁Nebr", + "aska" + ], + [ + "▁gu", + "y" + ], + [ + "▁g", + "uy" + ], + [ + "▁vi", + "n" + ], + [ + "▁v", + "in" + ], + [ + "▁", + "vin" + ], + [ + "▁Ray", + "mond" + ], + [ + "fa", + "st" + ], + [ + "f", + "ast" + ], + [ + "▁recruit", + "ed" + ], + [ + "▁recru", + "ited" + ], + [ + "▁soph", + "istic" + ], + [ + "▁24", + "0" + ], + [ + "▁2", + "40" + ], + [ + "▁Ra", + "t" + ], + [ + "▁R", + "at" + ], + [ + "▁Ur", + "ban" + ], + [ + "▁bi", + "ography" + ], + [ + "▁evolution", + "ary" + ], + [ + "rator", + "s" + ], + [ + "rat", + "ors" + ], + [ + "r", + "ators" + ], + [ + "▁merge", + "d" + ], + [ + "▁mer", + "ged" + ], + [ + "▁Class", + "ic" + ], + [ + "▁Cl", + "assic" + ], + [ + "▁186", + "1" + ], + [ + "▁Co", + "al" + ], + [ + "in", + "stein" + ], + [ + "▁copy", + "right" + ], + [ + "▁cop", + "yright" + ], + [ + "no", + "t" + ], + [ + "n", + "ot" + ], + [ + "urs", + "t" + ], + [ + "ur", + "st" + ], + [ + "▁Chang", + "e" + ], + [ + "▁Chan", + "ge" + ], + [ + "▁Ch", + "ange" + ], + [ + "▁", + "«" + ], + [ + "eng", + "u" + ], + [ + "en", + "gu" + ], + [ + "▁Si", + "c" + ], + [ + "▁S", + "ic" + ], + [ + "▁ancestor", + "s" + ], + [ + "▁ancest", + "ors" + ], + [ + "▁absolute", + "ly" + ], + [ + "▁absol", + "utely" + ], + [ + "enz", + "a" + ], + [ + "en", + "za" + ], + [ + "▁th", + "y" + ], + [ + "▁t", + "hy" + ], + [ + "▁", + "thy" + ], + [ + "onia", + "l" + ], + [ + "oni", + "al" + ], + [ + "on", + "ial" + ], + [ + "▁verse", + "s" + ], + [ + "▁vers", + "es" + ], + [ + "▁ver", + "ses" + ], + [ + "▁throw", + "ing" + ], + [ + "▁thro", + "wing" + ], + [ + "▁thr", + "owing" + ], + [ + "▁th", + "rowing" + ], + [ + "▁per", + "f" + ], + [ + "▁experien", + "cing" + ], + [ + "▁dos", + "e" + ], + [ + "▁do", + "se" + ], + [ + "▁d", + "ose" + ], + [ + "▁complic", + "ations" + ], + [ + "▁compl", + "ications" + ], + [ + "▁quote", + "d" + ], + [ + "▁quot", + "ed" + ], + [ + "▁qu", + "oted" + ], + [ + "▁0", + "4" + ], + [ + "▁Are", + "n" + ], + [ + "▁Ar", + "en" + ], + [ + "▁A", + "ren" + ], + [ + "▁Bran", + "ch" + ], + [ + "▁B", + "ranch" + ], + [ + "▁Vale", + "nt" + ], + [ + "▁Val", + "ent" + ], + [ + "▁W", + "onder" + ], + [ + "▁circle", + "s" + ], + [ + "▁circ", + "les" + ], + [ + "▁cir", + "cles" + ], + [ + "▁incident", + "s" + ], + [ + "▁inc", + "idents" + ], + [ + "ac", + "o" + ], + [ + "a", + "co" + ], + [ + "▁O", + "F" + ], + [ + "icit", + "y" + ], + [ + "ici", + "ty" + ], + [ + "ic", + "ity" + ], + [ + "▁Kan", + "e" + ], + [ + "▁Ka", + "ne" + ], + [ + "▁K", + "ane" + ], + [ + "osa", + "l" + ], + [ + "os", + "al" + ], + [ + "▁cinem", + "a" + ], + [ + "▁c", + "inema" + ], + [ + "▁Test", + "ament" + ], + [ + "▁special", + "ist" + ], + [ + "▁Burn", + "s" + ], + [ + "▁Bur", + "ns" + ], + [ + "arian", + "s" + ], + [ + "aria", + "ns" + ], + [ + "ari", + "ans" + ], + [ + "ar", + "ians" + ], + [ + "a", + "rians" + ], + [ + "▁gather", + "ing" + ], + [ + "▁Kr", + "ist" + ], + [ + "▁K", + "rist" + ], + [ + "▁Thank", + "s" + ], + [ + "▁Than", + "ks" + ], + [ + "▁Th", + "anks" + ], + [ + "▁Ka", + "iser" + ], + [ + "▁scale", + "s" + ], + [ + "▁scal", + "es" + ], + [ + "▁sc", + "ales" + ], + [ + "▁She", + "ff" + ], + [ + "▁Sh", + "eff" + ], + [ + "▁Dub", + "lin" + ], + [ + "▁D", + "ublin" + ], + [ + "que", + "r" + ], + [ + "qu", + "er" + ], + [ + "q", + "uer" + ], + [ + "▁Pan", + "t" + ], + [ + "▁Pa", + "nt" + ], + [ + "▁P", + "ant" + ], + [ + "▁cur", + "e" + ], + [ + "▁cu", + "re" + ], + [ + "▁c", + "ure" + ], + [ + "abl", + "ing" + ], + [ + "ab", + "ling" + ], + [ + "aug", + "e" + ], + [ + "au", + "ge" + ], + [ + "a", + "uge" + ], + [ + "▁ear", + "s" + ], + [ + "▁e", + "ars" + ], + [ + "▁", + "ears" + ], + [ + "plan", + "t" + ], + [ + "pl", + "ant" + ], + [ + "ke", + "eper" + ], + [ + "▁Rat", + "her" + ], + [ + "▁Ra", + "ther" + ], + [ + "▁R", + "ather" + ], + [ + "ling", + "ton" + ], + [ + "l", + "ington" + ], + [ + "omic", + "al" + ], + [ + "omi", + "cal" + ], + [ + "om", + "ical" + ], + [ + "▁develop", + "s" + ], + [ + "▁Fl", + "ag" + ], + [ + "hel", + "l" + ], + [ + "he", + "ll" + ], + [ + "h", + "ell" + ], + [ + "land", + "ers" + ], + [ + "lan", + "ders" + ], + [ + "▁Na", + "d" + ], + [ + "▁N", + "ad" + ], + [ + "▁Per", + "haps" + ], + [ + "▁stay", + "ing" + ], + [ + "▁st", + "aying" + ], + [ + "▁tob", + "acco" + ], + [ + "▁intermedi", + "ate" + ], + [ + "▁Mi", + "x" + ], + [ + "▁M", + "ix" + ], + [ + "▁nineteen", + "th" + ], + [ + "▁ninet", + "eenth" + ], + [ + "▁nine", + "teenth" + ], + [ + "mon", + "t" + ], + [ + "mo", + "nt" + ], + [ + "m", + "ont" + ], + [ + "▁predominant", + "ly" + ], + [ + "▁predomin", + "antly" + ], + [ + "▁na", + "m" + ], + [ + "▁n", + "am" + ], + [ + "▁", + "nam" + ], + [ + "▁Arch", + "ae" + ], + [ + "▁au", + "x" + ], + [ + "▁a", + "ux" + ], + [ + "▁", + "aux" + ], + [ + "▁Mond", + "ay" + ], + [ + "▁Mon", + "day" + ], + [ + "▁achie", + "ving" + ], + [ + "▁Roman", + "s" + ], + [ + "▁Rom", + "ans" + ], + [ + "▁Ro", + "mans" + ], + [ + "▁R", + "omans" + ], + [ + "ñ", + "a" + ], + [ + "▁bor", + "e" + ], + [ + "▁bo", + "re" + ], + [ + "▁b", + "ore" + ], + [ + "▁elig", + "ible" + ], + [ + "▁whale", + "s" + ], + [ + "▁wh", + "ales" + ], + [ + "pi", + "ke" + ], + [ + "p", + "ike" + ], + [ + "▁Se", + "x" + ], + [ + "▁S", + "ex" + ], + [ + "▁so", + "r" + ], + [ + "▁s", + "or" + ], + [ + "▁", + "sor" + ], + [ + "▁Osc", + "ar" + ], + [ + "▁Os", + "car" + ], + [ + "▁Buff", + "alo" + ], + [ + "or", + "f" + ], + [ + "▁reflect", + "s" + ], + [ + "▁screen", + "s" + ], + [ + "▁sc", + "reens" + ], + [ + "ah", + "l" + ], + [ + "a", + "hl" + ], + [ + "▁Mar", + "ía" + ], + [ + "▁pursue", + "d" + ], + [ + "▁purs", + "ued" + ], + [ + "▁Sc", + "ar" + ], + [ + "▁S", + "car" + ], + [ + "iffer", + "ent" + ], + [ + "▁compl", + "ained" + ], + [ + "▁Sr", + "i" + ], + [ + "▁S", + "ri" + ], + [ + "lete", + "d" + ], + [ + "let", + "ed" + ], + [ + "le", + "ted" + ], + [ + "l", + "eted" + ], + [ + "▁lib", + "r" + ], + [ + "▁li", + "br" + ], + [ + "▁l", + "ibr" + ], + [ + "▁rock", + "et" + ], + [ + "▁r", + "ocket" + ], + [ + "▁rehe", + "ars" + ], + [ + "▁reh", + "ears" + ], + [ + "▁bl", + "ast" + ], + [ + "▁b", + "last" + ], + [ + "ise", + "ly" + ], + [ + "is", + "ely" + ], + [ + "▁To", + "l" + ], + [ + "▁T", + "ol" + ], + [ + "▁Cyr", + "us" + ], + [ + "▁Cy", + "rus" + ], + [ + "istical", + "ly" + ], + [ + "istic", + "ally" + ], + [ + "ist", + "ically" + ], + [ + "▁persuade", + "d" + ], + [ + "▁persu", + "aded" + ], + [ + "▁sentence", + "d" + ], + [ + "▁sent", + "enced" + ], + [ + "▁dimension", + "s" + ], + [ + "▁dimens", + "ions" + ], + [ + "▁dim", + "ensions" + ], + [ + "▁Gl", + "obe" + ], + [ + "▁modes", + "t" + ], + [ + "▁mode", + "st" + ], + [ + "▁mod", + "est" + ], + [ + "▁mo", + "dest" + ], + [ + "▁cyclone", + "s" + ], + [ + "▁cycl", + "ones" + ], + [ + "▁compan", + "ion" + ], + [ + "▁Do", + "es" + ], + [ + "▁D", + "oes" + ], + [ + "▁gar", + "n" + ], + [ + "▁g", + "arn" + ], + [ + "▁Jud", + "ge" + ], + [ + "▁J", + "udge" + ], + [ + "▁imagin", + "e" + ], + [ + "▁imag", + "ine" + ], + [ + "act", + "s" + ], + [ + "ac", + "ts" + ], + [ + "▁JT", + "WC" + ], + [ + "▁thr", + "ead" + ], + [ + "▁th", + "read" + ], + [ + "▁spec", + "ified" + ], + [ + "▁tun", + "e" + ], + [ + "▁tu", + "ne" + ], + [ + "▁t", + "une" + ], + [ + "▁D", + "j" + ], + [ + "uck", + "er" + ], + [ + "uc", + "ker" + ], + [ + "▁plant", + "ed" + ], + [ + "▁plan", + "ted" + ], + [ + "▁pl", + "anted" + ], + [ + "▁Sheff", + "ield" + ], + [ + "▁center", + "ed" + ], + [ + "▁cent", + "ered" + ], + [ + "▁rele", + "asing" + ], + [ + "▁size", + "s" + ], + [ + "▁si", + "zes" + ], + [ + "▁s", + "izes" + ], + [ + "▁manufacture", + "d" + ], + [ + "▁manufactur", + "ed" + ], + [ + "▁manufact", + "ured" + ], + [ + "▁We", + "s" + ], + [ + "▁W", + "es" + ], + [ + "the", + "tic" + ], + [ + "th", + "etic" + ], + [ + "t", + "hetic" + ], + [ + "▁Cl", + "imate" + ], + [ + "▁cat", + "hedral" + ], + [ + "▁draft", + "ed" + ], + [ + "▁employ", + "ee" + ], + [ + "eno", + "s" + ], + [ + "en", + "os" + ], + [ + "▁UE", + "FA" + ], + [ + "▁Mad", + "ison" + ], + [ + "▁C", + "emetery" + ], + [ + "ett", + "a" + ], + [ + "et", + "ta" + ], + [ + "io", + "p" + ], + [ + "i", + "op" + ], + [ + "▁flu", + "or" + ], + [ + "▁rele", + "g" + ], + [ + "▁rel", + "eg" + ], + [ + "▁re", + "leg" + ], + [ + "▁od", + "d" + ], + [ + "▁o", + "dd" + ], + [ + "▁deal", + "s" + ], + [ + "▁de", + "als" + ], + [ + "▁authen", + "tic" + ], + [ + "ier", + "ra" + ], + [ + "▁dig", + "it" + ], + [ + "▁sp", + "ite" + ], + [ + "▁chapter", + "s" + ], + [ + "▁chap", + "ters" + ], + [ + "▁ch", + "apters" + ], + [ + "ch", + "y" + ], + [ + "c", + "hy" + ], + [ + "▁Just", + "in" + ], + [ + "ian", + "g" + ], + [ + "ia", + "ng" + ], + [ + "i", + "ang" + ], + [ + "▁Vi", + "c" + ], + [ + "▁V", + "ic" + ], + [ + "adow", + "s" + ], + [ + "ad", + "ows" + ], + [ + "▁Kid", + "s" + ], + [ + "▁Ki", + "ds" + ], + [ + "▁K", + "ids" + ], + [ + "▁repe", + "at" + ], + [ + "asm", + "a" + ], + [ + "as", + "ma" + ], + [ + "ft", + "en" + ], + [ + "f", + "ten" + ], + [ + "lev", + "ard" + ], + [ + "▁walk", + "ed" + ], + [ + "▁Cha", + "n" + ], + [ + "▁Ch", + "an" + ], + [ + "▁C", + "han" + ], + [ + "▁assess", + "ed" + ], + [ + "▁ass", + "essed" + ], + [ + "▁connect", + "s" + ], + [ + "▁conn", + "ects" + ], + [ + "▁Indonesia", + "n" + ], + [ + "▁Indones", + "ian" + ], + [ + "▁Stud", + "io" + ], + [ + "▁o", + "ct" + ], + [ + "board", + "s" + ], + [ + "bo", + "ards" + ], + [ + "▁mass", + "es" + ], + [ + "▁mas", + "ses" + ], + [ + "▁m", + "asses" + ], + [ + "ist", + "e" + ], + [ + "is", + "te" + ], + [ + "i", + "ste" + ], + [ + "ass", + "y" + ], + [ + "as", + "sy" + ], + [ + "▁chor", + "e" + ], + [ + "▁cho", + "re" + ], + [ + "▁ch", + "ore" + ], + [ + "▁manufacturer", + "s" + ], + [ + "▁manufacture", + "rs" + ], + [ + "▁manufactur", + "ers" + ], + [ + "▁manufact", + "urers" + ], + [ + "▁tend", + "s" + ], + [ + "▁ten", + "ds" + ], + [ + "▁t", + "ends" + ], + [ + "oti", + "on" + ], + [ + "ot", + "ion" + ], + [ + "▁Bo", + "at" + ], + [ + "▁invade", + "d" + ], + [ + "▁inv", + "aded" + ], + [ + "▁Bar", + "on" + ], + [ + "▁Ba", + "ron" + ], + [ + "▁B", + "aron" + ], + [ + "▁man", + "ga" + ], + [ + "▁m", + "anga" + ], + [ + "▁sing", + "s" + ], + [ + "▁sin", + "gs" + ], + [ + "▁s", + "ings" + ], + [ + "▁never", + "theless" + ], + [ + "▁188", + "9" + ], + [ + "▁18", + "89" + ], + [ + "▁Man", + "n" + ], + [ + "▁M", + "ann" + ], + [ + "▁kid", + "n" + ], + [ + "▁Sid", + "e" + ], + [ + "▁Si", + "de" + ], + [ + "▁S", + "ide" + ], + [ + "▁ly", + "r" + ], + [ + "▁l", + "yr" + ], + [ + "▁mis", + "c" + ], + [ + "▁mi", + "sc" + ], + [ + "▁m", + "isc" + ], + [ + "▁tend", + "ency" + ], + [ + "▁un", + "ve" + ], + [ + "▁Gabri", + "el" + ], + [ + "O", + "W" + ], + [ + "▁S", + "ultan" + ], + [ + "▁judg", + "ment" + ], + [ + "▁jud", + "gment" + ], + [ + "▁critical", + "ly" + ], + [ + "▁critic", + "ally" + ], + [ + "▁crit", + "ically" + ], + [ + "▁fragment", + "s" + ], + [ + "▁frag", + "ments" + ], + [ + "our", + "t" + ], + [ + "o", + "urt" + ], + [ + "▁Pr", + "inc" + ], + [ + "▁cor", + "rid" + ], + [ + "▁kill", + "er" + ], + [ + "▁kil", + "ler" + ], + [ + "▁ki", + "ller" + ], + [ + "▁k", + "iller" + ], + [ + "▁comprise", + "d" + ], + [ + "▁compris", + "ed" + ], + [ + "▁Representative", + "s" + ], + [ + "▁Represent", + "atives" + ], + [ + "▁CE", + "O" + ], + [ + "da", + "n" + ], + [ + "d", + "an" + ], + [ + "omet", + "ry" + ], + [ + "ome", + "try" + ], + [ + "om", + "etry" + ], + [ + "▁Ta", + "b" + ], + [ + "▁T", + "ab" + ], + [ + "▁load", + "ed" + ], + [ + "▁lo", + "aded" + ], + [ + "▁", + "loaded" + ], + [ + "▁sil", + "ent" + ], + [ + "▁suggest", + "ion" + ], + [ + "▁sug", + "gestion" + ], + [ + "I", + "s" + ], + [ + "og", + "s" + ], + [ + "o", + "gs" + ], + [ + "▁epi", + "t" + ], + [ + "▁ep", + "it" + ], + [ + "▁e", + "pit" + ], + [ + "oca", + "ust" + ], + [ + "▁Libert", + "y" + ], + [ + "▁Liber", + "ty" + ], + [ + "▁Indust", + "rial" + ], + [ + "pi", + "n" + ], + [ + "p", + "in" + ], + [ + "ula", + "tor" + ], + [ + "ul", + "ator" + ], + [ + "gu", + "ard" + ], + [ + "ep", + "s" + ], + [ + "e", + "ps" + ], + [ + "▁eat", + "en" + ], + [ + "▁imprison", + "ed" + ], + [ + "▁NAT", + "O" + ], + [ + "▁NA", + "TO" + ], + [ + "▁Mac", + "ed" + ], + [ + "▁Ma", + "ced" + ], + [ + "▁M", + "aced" + ], + [ + "▁bi", + "ographer" + ], + [ + "▁qualify", + "ing" + ], + [ + "▁qual", + "ifying" + ], + [ + "qu", + "is" + ], + [ + "q", + "uis" + ], + [ + "and", + "ro" + ], + [ + "▁impl", + "ications" + ], + [ + "▁McK", + "in" + ], + [ + "ina", + "ting" + ], + [ + "in", + "ating" + ], + [ + "▁park", + "ing" + ], + [ + "▁par", + "king" + ], + [ + "▁strugg", + "ling" + ], + [ + "ric", + "e" + ], + [ + "ri", + "ce" + ], + [ + "r", + "ice" + ], + [ + "urate", + "d" + ], + [ + "ura", + "ted" + ], + [ + "ur", + "ated" + ], + [ + "u", + "rated" + ], + [ + "▁Jun", + "ior" + ], + [ + "▁J", + "unior" + ], + [ + "▁Leon", + "ard" + ], + [ + "enb", + "urg" + ], + [ + "en", + "burg" + ], + [ + "▁gas", + "es" + ], + [ + "▁ga", + "ses" + ], + [ + "▁g", + "ases" + ], + [ + "▁diam", + "ond" + ], + [ + "▁techn", + "ological" + ], + [ + "An", + "d" + ], + [ + "A", + "nd" + ], + [ + "ov", + "ić" + ], + [ + "o", + "vić" + ], + [ + "ure", + "r" + ], + [ + "ur", + "er" + ], + [ + "u", + "rer" + ], + [ + "▁land", + "mark" + ], + [ + "▁To", + "y" + ], + [ + "▁T", + "oy" + ], + [ + "ov", + "ic" + ], + [ + "o", + "vic" + ], + [ + "▁Roger", + "s" + ], + [ + "▁Rog", + "ers" + ], + [ + "▁Ro", + "gers" + ], + [ + "▁please", + "d" + ], + [ + "▁ple", + "ased" + ], + [ + "▁p", + "leased" + ], + [ + "▁track", + "ed" + ], + [ + "▁tr", + "acked" + ], + [ + "▁Chel", + "sea" + ], + [ + "▁municip", + "al" + ], + [ + "▁complex", + "ity" + ], + [ + "▁green", + "house" + ], + [ + "▁measure", + "ment" + ], + [ + "▁rob", + "ot" + ], + [ + "▁ro", + "bot" + ], + [ + "▁Re", + "agan" + ], + [ + "iol", + "et" + ], + [ + "io", + "let" + ], + [ + "▁Merc", + "ury" + ], + [ + "▁Ca", + "es" + ], + [ + "▁Merc", + "ed" + ], + [ + "▁Mer", + "ced" + ], + [ + "fi", + "m" + ], + [ + "f", + "im" + ], + [ + "▁thro", + "at" + ], + [ + "▁conqu", + "est" + ], + [ + "▁con", + "quest" + ], + [ + "▁interf", + "ace" + ], + [ + "▁inter", + "face" + ], + [ + "tha", + "l" + ], + [ + "th", + "al" + ], + [ + "t", + "hal" + ], + [ + "▁Dan", + "ny" + ], + [ + "▁D", + "anny" + ], + [ + "▁navig", + "ation" + ], + [ + "de", + "s" + ], + [ + "d", + "es" + ], + [ + "▁membran", + "e" + ], + [ + "▁memb", + "rane" + ], + [ + "▁Palest", + "ine" + ], + [ + "▁188", + "8" + ], + [ + "▁18", + "88" + ], + [ + "▁Em", + "my" + ], + [ + "▁ann", + "e" + ], + [ + "▁an", + "ne" + ], + [ + "▁", + "anne" + ], + [ + "▁Scot", + "s" + ], + [ + "▁Sc", + "ots" + ], + [ + "▁ne", + "p" + ], + [ + "▁n", + "ep" + ], + [ + "▁gross", + "ing" + ], + [ + "▁mo", + "use" + ], + [ + "▁m", + "ouse" + ], + [ + "▁spe", + "ll" + ], + [ + "▁sp", + "ell" + ], + [ + "▁car", + "ved" + ], + [ + "▁wel", + "fare" + ], + [ + "▁w", + "elfare" + ], + [ + "ibli", + "cal" + ], + [ + "ibl", + "ical" + ], + [ + "▁knock", + "ed" + ], + [ + "▁kn", + "ocked" + ], + [ + "ie", + "g" + ], + [ + "i", + "eg" + ], + [ + "▁An", + "a" + ], + [ + "▁A", + "na" + ], + [ + "ve", + "t" + ], + [ + "v", + "et" + ], + [ + "▁subt", + "le" + ], + [ + "▁sub", + "tle" + ], + [ + "▁dancer", + "s" + ], + [ + "▁dance", + "rs" + ], + [ + "▁d", + "ancers" + ], + [ + "▁O", + "S" + ], + [ + "▁", + "OS" + ], + [ + "ina", + "te" + ], + [ + "in", + "ate" + ], + [ + "▁recru", + "it" + ], + [ + "▁rec", + "ruit" + ], + [ + "R", + "S" + ], + [ + "▁gain", + "s" + ], + [ + "▁ga", + "ins" + ], + [ + "▁g", + "ains" + ], + [ + "▁butt", + "on" + ], + [ + "▁but", + "ton" + ], + [ + "▁b", + "utton" + ], + [ + "▁trend", + "s" + ], + [ + "▁tren", + "ds" + ], + [ + "▁tr", + "ends" + ], + [ + "▁pitch", + "er" + ], + [ + "▁pit", + "cher" + ], + [ + "▁tour", + "ist" + ], + [ + "▁tou", + "rist" + ], + [ + "▁murder", + "ed" + ], + [ + "▁fro", + "g" + ], + [ + "▁fr", + "og" + ], + [ + "▁f", + "rog" + ], + [ + "▁prom", + "ising" + ], + [ + "me", + "l" + ], + [ + "m", + "el" + ], + [ + "▁stead", + "y" + ], + [ + "▁ste", + "ady" + ], + [ + "att", + "s" + ], + [ + "at", + "ts" + ], + [ + "ova", + "k" + ], + [ + "ov", + "ak" + ], + [ + "▁Pic", + "k" + ], + [ + "▁Pi", + "ck" + ], + [ + "▁P", + "ick" + ], + [ + "▁Cla", + "ud" + ], + [ + "▁Cl", + "aud" + ], + [ + "▁radi", + "us" + ], + [ + "▁rad", + "ius" + ], + [ + "▁rescue", + "d" + ], + [ + "▁resc", + "ued" + ], + [ + "alt", + "ies" + ], + [ + "al", + "ties" + ], + [ + "▁cool", + "ing" + ], + [ + "▁composition", + "s" + ], + [ + "▁compos", + "itions" + ], + [ + "▁sty", + "l" + ], + [ + "▁st", + "yl" + ], + [ + "▁System", + "s" + ], + [ + "▁Trad", + "ition" + ], + [ + "▁Tra", + "dition" + ], + [ + "▁war", + "d" + ], + [ + "▁wa", + "rd" + ], + [ + "▁w", + "ard" + ], + [ + "▁", + "ward" + ], + [ + "▁Fu", + "n" + ], + [ + "▁F", + "un" + ], + [ + "▁Pars", + "ons" + ], + [ + "▁sent", + "iment" + ], + [ + "▁accidental", + "ly" + ], + [ + "▁accident", + "ally" + ], + [ + "ht", + "m" + ], + [ + "▁custom", + "er" + ], + [ + "▁cust", + "omer" + ], + [ + "▁vol", + "unt" + ], + [ + "▁Albert", + "a" + ], + [ + "▁veter", + "an" + ], + [ + "ke", + "ley" + ], + [ + "▁Nev", + "ada" + ], + [ + "▁Arab", + "ic" + ], + [ + "ju", + "d" + ], + [ + "j", + "ud" + ], + [ + "▁189", + "4" + ], + [ + "▁18", + "94" + ], + [ + "▁Pa", + "in" + ], + [ + "▁P", + "ain" + ], + [ + "▁drive", + "s" + ], + [ + "▁dr", + "ives" + ], + [ + "▁month", + "ly" + ], + [ + "▁b", + "a" + ], + [ + "▁", + "ba" + ], + [ + "▁AI", + "DS" + ], + [ + "▁A", + "IDS" + ], + [ + "▁content", + "s" + ], + [ + "▁cont", + "ents" + ], + [ + "▁fe", + "t" + ], + [ + "▁f", + "et" + ], + [ + "▁To", + "tal" + ], + [ + "▁T", + "otal" + ], + [ + "▁10", + "1" + ], + [ + "▁Sea", + "n" + ], + [ + "▁Se", + "an" + ], + [ + "▁S", + "ean" + ], + [ + "▁fra", + "ud" + ], + [ + "▁fr", + "aud" + ], + [ + "▁ic", + "on" + ], + [ + "▁i", + "con" + ], + [ + "▁", + "icon" + ], + [ + "▁embark", + "ed" + ], + [ + "▁emb", + "arked" + ], + [ + "▁Serbia", + "n" + ], + [ + "▁Serb", + "ian" + ], + [ + "▁Ser", + "bian" + ], + [ + "▁permanent", + "ly" + ], + [ + "▁perman", + "ently" + ], + [ + "▁spec", + "ulation" + ], + [ + "▁No", + "u" + ], + [ + "▁N", + "ou" + ], + [ + "▁reg", + "ist" + ], + [ + "50", + "0" + ], + [ + "5", + "00" + ], + [ + "▁Ar", + "c" + ], + [ + "▁Card", + "iff" + ], + [ + "9", + "3" + ], + [ + "▁Greg", + "ory" + ], + [ + "▁P", + "s" + ], + [ + "▁", + "Ps" + ], + [ + "mo", + "ther" + ], + [ + "m", + "other" + ], + [ + "▁bill", + "s" + ], + [ + "▁bil", + "ls" + ], + [ + "▁b", + "ills" + ], + [ + "▁Brig", + "ht" + ], + [ + "▁Bri", + "ght" + ], + [ + "▁Br", + "ight" + ], + [ + "▁B", + "right" + ], + [ + "▁tra", + "ce" + ], + [ + "▁tr", + "ace" + ], + [ + "▁t", + "race" + ], + [ + "▁satisf", + "act" + ], + [ + "▁satis", + "fact" + ], + [ + "▁end", + "angered" + ], + [ + "-", + "6" + ], + [ + "▁45", + "0" + ], + [ + "▁4", + "50" + ], + [ + "▁c", + "ig" + ], + [ + "▁Nov", + "a" + ], + [ + "▁No", + "va" + ], + [ + "▁N", + "ova" + ], + [ + "as", + "ury" + ], + [ + "less", + "ly" + ], + [ + "▁Bran", + "d" + ], + [ + "▁Bra", + "nd" + ], + [ + "▁Br", + "and" + ], + [ + "▁B", + "rand" + ], + [ + "▁Sea", + "r" + ], + [ + "▁Se", + "ar" + ], + [ + "▁S", + "ear" + ], + [ + "▁dra", + "g" + ], + [ + "▁dr", + "ag" + ], + [ + "▁d", + "rag" + ], + [ + "O", + "U" + ], + [ + "ba", + "ge" + ], + [ + "b", + "age" + ], + [ + "▁vir", + "al" + ], + [ + "▁vi", + "ral" + ], + [ + "▁v", + "iral" + ], + [ + "▁vic", + "inity" + ], + [ + "▁Mode", + "l" + ], + [ + "▁Mod", + "el" + ], + [ + "▁al", + "umin" + ], + [ + "▁jud", + "icial" + ], + [ + "▁competition", + "s" + ], + [ + "▁compet", + "itions" + ], + [ + "amp", + "ton" + ], + [ + "am", + "pton" + ], + [ + "▁enforce", + "ment" + ], + [ + "▁Ro", + "om" + ], + [ + "▁R", + "oom" + ], + [ + "▁bar", + "s" + ], + [ + "▁ba", + "rs" + ], + [ + "▁b", + "ars" + ], + [ + "▁Addition", + "al" + ], + [ + "▁pa", + "s" + ], + [ + "▁p", + "as" + ], + [ + "ach", + "ute" + ], + [ + "▁Great", + "est" + ], + [ + "▁insp", + "ect" + ], + [ + "▁ins", + "pect" + ], + [ + "av", + "i" + ], + [ + "a", + "vi" + ], + [ + "▁bit", + "ter" + ], + [ + "▁b", + "itter" + ], + [ + "▁mut", + "ual" + ], + [ + "▁shop", + "ping" + ], + [ + "▁girl", + "friend" + ], + [ + "ha", + "w" + ], + [ + "h", + "aw" + ], + [ + "▁Sa", + "w" + ], + [ + "▁S", + "aw" + ], + [ + "▁Bur", + "ke" + ], + [ + "▁Str", + "e" + ], + [ + "▁St", + "re" + ], + [ + "▁S", + "tre" + ], + [ + "▁dis", + "h" + ], + [ + "▁di", + "sh" + ], + [ + "▁d", + "ish" + ], + [ + "▁", + "dish" + ], + [ + "▁stead", + "ily" + ], + [ + "▁C", + "N" + ], + [ + "eller", + "s" + ], + [ + "elle", + "rs" + ], + [ + "ell", + "ers" + ], + [ + "el", + "lers" + ], + [ + "▁Lar", + "ge" + ], + [ + "▁Or", + "thodox" + ], + [ + "▁position", + "ed" + ], + [ + "▁Hun", + "t" + ], + [ + "▁Hu", + "nt" + ], + [ + "▁H", + "unt" + ], + [ + "▁Sher", + "man" + ], + [ + "▁Sh", + "erman" + ], + [ + "io", + "v" + ], + [ + "i", + "ov" + ], + [ + "▁BC", + "E" + ], + [ + "▁B", + "CE" + ], + [ + "▁prosp", + "ect" + ], + [ + "▁pros", + "pect" + ], + [ + "▁home", + "less" + ], + [ + "▁hom", + "eless" + ], + [ + "os", + "ity" + ], + [ + "▁exp", + "ense" + ], + [ + "▁ens", + "uring" + ], + [ + "▁disapp", + "ear" + ], + [ + "▁10", + "4" + ], + [ + "▁harb", + "our" + ], + [ + "▁har", + "bour" + ], + [ + "▁ticket", + "s" + ], + [ + "▁tick", + "ets" + ], + [ + "▁evac", + "uation" + ], + [ + "mi", + "ll" + ], + [ + "m", + "ill" + ], + [ + "ita", + "te" + ], + [ + "it", + "ate" + ], + [ + "▁mol", + "d" + ], + [ + "▁mo", + "ld" + ], + [ + "▁m", + "old" + ], + [ + "cast", + "le" + ], + [ + "col", + "m" + ], + [ + "▁La", + "z" + ], + [ + "▁L", + "az" + ], + [ + "▁h", + "ur" + ], + [ + "▁reconstruct", + "ion" + ], + [ + "▁reconst", + "ruction" + ], + [ + "▁rec", + "onstruction" + ], + [ + "Ne", + "w" + ], + [ + "N", + "ew" + ], + [ + "▁am", + "ino" + ], + [ + "▁bind", + "ing" + ], + [ + "▁bin", + "ding" + ], + [ + "▁b", + "inding" + ], + [ + "ty", + "e" + ], + [ + "t", + "ye" + ], + [ + "▁Chal", + "l" + ], + [ + "▁Cha", + "ll" + ], + [ + "▁Ch", + "all" + ], + [ + "▁C", + "hall" + ], + [ + "▁task", + "ed" + ], + [ + "▁12", + "7" + ], + [ + "▁1", + "27" + ], + [ + "▁whe", + "at" + ], + [ + "▁Cap", + "ital" + ], + [ + "▁speaker", + "s" + ], + [ + "▁speak", + "ers" + ], + [ + "▁spe", + "akers" + ], + [ + "▁weaken", + "ing" + ], + [ + "▁weak", + "ening" + ], + [ + "▁rival", + "s" + ], + [ + "▁riv", + "als" + ], + [ + "▁ri", + "vals" + ], + [ + "▁r", + "ivals" + ], + [ + "▁rev", + "ival" + ], + [ + "rian", + "s" + ], + [ + "ria", + "ns" + ], + [ + "ri", + "ans" + ], + [ + "r", + "ians" + ], + [ + "▁Tai", + "wan" + ], + [ + "▁Prince", + "ton" + ], + [ + "▁Princ", + "eton" + ], + [ + "▁Mach", + "ine" + ], + [ + "▁189", + "1" + ], + [ + "▁18", + "91" + ], + [ + "▁gas", + "t" + ], + [ + "▁ga", + "st" + ], + [ + "▁g", + "ast" + ], + [ + "osy", + "ete" + ], + [ + "▁13", + "5" + ], + [ + "▁1", + "35" + ], + [ + "▁int", + "act" + ], + [ + "▁Mile", + "s" + ], + [ + "▁Mil", + "es" + ], + [ + "▁Mi", + "les" + ], + [ + "▁M", + "iles" + ], + [ + "▁ball", + "s" + ], + [ + "▁bal", + "ls" + ], + [ + "▁Balt", + "ic" + ], + [ + "▁Bal", + "tic" + ], + [ + "▁cler", + "gy" + ], + [ + "▁cl", + "ergy" + ], + [ + "▁dis", + "abled" + ], + [ + "▁C", + "C" + ], + [ + "▁", + "CC" + ], + [ + "amo", + "unt" + ], + [ + "am", + "ount" + ], + [ + "▁m", + "g" + ], + [ + "▁Le", + "af" + ], + [ + "▁progress", + "ion" + ], + [ + "▁prog", + "ression" + ], + [ + "oles", + "c" + ], + [ + "ole", + "sc" + ], + [ + "ol", + "esc" + ], + [ + "▁ax", + "is" + ], + [ + "▁", + "axis" + ], + [ + "ogen", + "ic" + ], + [ + "og", + "enic" + ], + [ + "▁enter", + "t" + ], + [ + "▁ent", + "ert" + ], + [ + "▁Ty", + "ler" + ], + [ + "▁T", + "yler" + ], + [ + "▁mechan", + "ics" + ], + [ + "▁resp", + "iratory" + ], + [ + "my", + "e" + ], + [ + "m", + "ye" + ], + [ + "▁tong", + "ue" + ], + [ + "▁ton", + "gue" + ], + [ + "ild", + "a" + ], + [ + "il", + "da" + ], + [ + "▁ech", + "o" + ], + [ + "▁ec", + "ho" + ], + [ + "▁e", + "cho" + ], + [ + "▁dro", + "ught" + ], + [ + "▁dr", + "ought" + ], + [ + "▁d", + "rought" + ], + [ + "▁squadron", + "s" + ], + [ + "▁squad", + "rons" + ], + [ + "▁determ", + "ining" + ], + [ + "▁fo", + "l" + ], + [ + "▁f", + "ol" + ], + [ + "▁", + "fol" + ], + [ + "▁dest", + "ination" + ], + [ + "▁insu", + "fficient" + ], + [ + "un", + "s" + ], + [ + "u", + "ns" + ], + [ + "▁quant", + "um" + ], + [ + "▁Whe", + "ther" + ], + [ + "▁Wh", + "ether" + ], + [ + "▁tw", + "entieth" + ], + [ + "▁As", + "k" + ], + [ + "▁A", + "sk" + ], + [ + "ipe", + "dia" + ], + [ + "ip", + "edia" + ], + [ + "ground", + "s" + ], + [ + "gr", + "ounds" + ], + [ + "pr", + "int" + ], + [ + "▁encounter", + "s" + ], + [ + "▁encoun", + "ters" + ], + [ + "▁enc", + "ounters" + ], + [ + "▁theoret", + "ical" + ], + [ + "▁Jos", + "e" + ], + [ + "▁Jo", + "se" + ], + [ + "▁J", + "ose" + ], + [ + "▁drum", + "mer" + ], + [ + "▁dr", + "ummer" + ], + [ + "▁graph", + "ic" + ], + [ + "▁ec", + "ological" + ], + [ + "▁Con", + "d" + ], + [ + "▁Co", + "nd" + ], + [ + "▁C", + "ond" + ], + [ + "▁Shi", + "p" + ], + [ + "▁Sh", + "ip" + ], + [ + "▁S", + "hip" + ], + [ + "▁adopt", + "ion" + ], + [ + "▁tourist", + "s" + ], + [ + "▁tour", + "ists" + ], + [ + "ini", + "te" + ], + [ + "in", + "ite" + ], + [ + "▁San", + "s" + ], + [ + "▁Sa", + "ns" + ], + [ + "▁S", + "ans" + ], + [ + "▁crus", + "t" + ], + [ + "▁cru", + "st" + ], + [ + "▁cr", + "ust" + ], + [ + "▁c", + "rust" + ], + [ + "▁ex", + "ile" + ], + [ + "▁mention", + "s" + ], + [ + "▁ment", + "ions" + ], + [ + "▁off", + "shore" + ], + [ + "▁witness", + "ed" + ], + [ + "▁Fa", + "c" + ], + [ + "▁F", + "ac" + ], + [ + "▁186", + "5" + ], + [ + "▁18", + "65" + ], + [ + "▁attract", + "ion" + ], + [ + "▁att", + "raction" + ], + [ + "▁achievement", + "s" + ], + [ + "▁achieve", + "ments" + ], + [ + "▁achie", + "vements" + ], + [ + "▁Act", + "or" + ], + [ + "▁Ac", + "tor" + ], + [ + "▁A", + "ctor" + ], + [ + "▁gh", + "ost" + ], + [ + "▁distance", + "s" + ], + [ + "▁dist", + "ances" + ], + [ + "▁se", + "iz" + ], + [ + "▁Spec", + "t" + ], + [ + "▁Spe", + "ct" + ], + [ + "▁Sp", + "ect" + ], + [ + "▁S", + "pect" + ], + [ + "▁Pol", + "icy" + ], + [ + "▁subm", + "it" + ], + [ + "▁sub", + "mit" + ], + [ + "▁Sof", + "t" + ], + [ + "▁So", + "ft" + ], + [ + "▁S", + "oft" + ], + [ + "▁Thing", + "s" + ], + [ + "▁Th", + "ings" + ], + [ + "▁Gene", + "sis" + ], + [ + "▁Gen", + "esis" + ], + [ + "ito", + "l" + ], + [ + "it", + "ol" + ], + [ + "in", + "z" + ], + [ + "▁gl", + "y" + ], + [ + "▁g", + "ly" + ], + [ + "▁We", + "ather" + ], + [ + "▁diss", + "olved" + ], + [ + "▁vib", + "r" + ], + [ + "▁vi", + "br" + ], + [ + "▁v", + "ibr" + ], + [ + "▁scholars", + "hip" + ], + [ + "▁scholar", + "ship" + ], + [ + "▁mi", + "m" + ], + [ + "▁m", + "im" + ], + [ + "▁bru", + "t" + ], + [ + "▁br", + "ut" + ], + [ + "▁round", + "ed" + ], + [ + "▁r", + "ounded" + ], + [ + "ad", + "vant" + ], + [ + "▁consum", + "e" + ], + [ + "▁cons", + "ume" + ], + [ + "▁sentence", + "s" + ], + [ + "▁sent", + "ences" + ], + [ + "▁comprom", + "ise" + ], + [ + "ade", + "qu" + ], + [ + "ad", + "equ" + ], + [ + "▁del", + "ight" + ], + [ + "▁de", + "light" + ], + [ + "▁gu", + "t" + ], + [ + "▁g", + "ut" + ], + [ + "od", + "ing" + ], + [ + "o", + "ding" + ], + [ + "▁dem", + "o" + ], + [ + "▁de", + "mo" + ], + [ + "▁Research", + "ers" + ], + [ + "▁Resear", + "chers" + ], + [ + "▁22", + "0" + ], + [ + "▁2", + "20" + ], + [ + "▁El", + "d" + ], + [ + "▁E", + "ld" + ], + [ + "ancell", + "or" + ], + [ + "▁instance", + "s" + ], + [ + "▁inst", + "ances" + ], + [ + "▁machine", + "ry" + ], + [ + "▁mach", + "inery" + ], + [ + "ul", + "u" + ], + [ + "u", + "lu" + ], + [ + "▁Vo", + "y" + ], + [ + "▁V", + "oy" + ], + [ + "ost", + "ic" + ], + [ + "os", + "tic" + ], + [ + "o", + "stic" + ], + [ + "▁Ins", + "ide" + ], + [ + "▁In", + "side" + ], + [ + "▁Rod", + "rig" + ], + [ + "▁an", + "k" + ], + [ + "▁", + "ank" + ], + [ + "▁Se", + "ga" + ], + [ + "ley", + "s" + ], + [ + "le", + "ys" + ], + [ + "▁Om", + "ar" + ], + [ + "▁O", + "mar" + ], + [ + "▁temple", + "s" + ], + [ + "▁tem", + "ples" + ], + [ + "▁air", + "ing" + ], + [ + "▁a", + "iring" + ], + [ + "▁variable", + "s" + ], + [ + "▁vari", + "ables" + ], + [ + "ence", + "r" + ], + [ + "enc", + "er" + ], + [ + "en", + "cer" + ], + [ + "▁Ze", + "ro" + ], + [ + "▁Z", + "ero" + ], + [ + "isp", + "here" + ], + [ + "▁Yo", + "n" + ], + [ + "▁Y", + "on" + ], + [ + "▁188", + "5" + ], + [ + "▁18", + "85" + ], + [ + "▁Shi", + "va" + ], + [ + "▁Sh", + "iva" + ], + [ + "▁walk", + "s" + ], + [ + "▁wal", + "ks" + ], + [ + "▁Na", + "m" + ], + [ + "▁N", + "am" + ], + [ + "▁Gene", + "r" + ], + [ + "▁Gen", + "er" + ], + [ + "▁Ge", + "ner" + ], + [ + "▁bl", + "ank" + ], + [ + "oles", + "ter" + ], + [ + "ole", + "ster" + ], + [ + "ol", + "ester" + ], + [ + "▁comment", + "ing" + ], + [ + "▁Bar", + "k" + ], + [ + "▁B", + "ark" + ], + [ + "▁Pro", + "gress" + ], + [ + "▁integr", + "ation" + ], + [ + "3", + "2" + ], + [ + "▁transm", + "it" + ], + [ + "▁trans", + "mit" + ], + [ + "▁fl", + "av" + ], + [ + "▁f", + "lav" + ], + [ + "▁Str", + "ong" + ], + [ + "▁St", + "rong" + ], + [ + "▁ash", + "ore" + ], + [ + "▁a", + "shore" + ], + [ + "▁encourag", + "ing" + ], + [ + "▁encoura", + "ging" + ], + [ + "▁hun", + "t" + ], + [ + "▁h", + "unt" + ], + [ + "▁Hel", + "en" + ], + [ + "▁He", + "len" + ], + [ + "eli", + "a" + ], + [ + "el", + "ia" + ], + [ + "e", + "lia" + ], + [ + "▁bee", + "r" + ], + [ + "▁be", + "er" + ], + [ + "▁Ari", + "st" + ], + [ + "▁Ar", + "ist" + ], + [ + "▁A", + "rist" + ], + [ + "▁chrom", + "os" + ], + [ + "▁crash", + "ed" + ], + [ + "▁cr", + "ashed" + ], + [ + "ordin", + "ation" + ], + [ + "ord", + "ination" + ], + [ + "gar", + "t" + ], + [ + "g", + "art" + ], + [ + "▁gra", + "ce" + ], + [ + "▁gr", + "ace" + ], + [ + "▁g", + "race" + ], + [ + "▁Bo", + "eing" + ], + [ + "▁189", + "2" + ], + [ + "▁18", + "92" + ], + [ + "▁suite", + "d" + ], + [ + "▁suit", + "ed" + ], + [ + "▁su", + "ited" + ], + [ + "▁Man", + "g" + ], + [ + "▁Ma", + "ng" + ], + [ + "▁M", + "ang" + ], + [ + "let", + "t" + ], + [ + "le", + "tt" + ], + [ + "l", + "ett" + ], + [ + "▁stre", + "ak" + ], + [ + "▁ins", + "ight" + ], + [ + "af", + "e" + ], + [ + "a", + "fe" + ], + [ + "air", + "y" + ], + [ + "ai", + "ry" + ], + [ + "▁ling", + "u" + ], + [ + "▁lin", + "gu" + ], + [ + "▁l", + "ingu" + ], + [ + "ail", + "able" + ], + [ + "▁ple", + "asure" + ], + [ + "▁extinct", + "ion" + ], + [ + "▁ext", + "inction" + ], + [ + "▁songwrit", + "er" + ], + [ + "▁song", + "writer" + ], + [ + "’", + "," + ], + [ + "▁unc", + "on" + ], + [ + "▁un", + "con" + ], + [ + "▁preced", + "ing" + ], + [ + "▁prec", + "eding" + ], + [ + "▁multip", + "layer" + ], + [ + "▁investigate", + "d" + ], + [ + "▁investig", + "ated" + ], + [ + "▁Cha", + "d" + ], + [ + "▁Ch", + "ad" + ], + [ + "E", + "F" + ], + [ + "▁184", + "0" + ], + [ + "▁18", + "40" + ], + [ + "▁dem", + "ographic" + ], + [ + "▁parliament", + "ary" + ], + [ + "▁different", + "ly" + ], + [ + "▁differ", + "ently" + ], + [ + "G", + "M" + ], + [ + "▁Bes", + "ides" + ], + [ + "▁prol", + "ong" + ], + [ + "▁pro", + "long" + ], + [ + "▁transform", + "ation" + ], + [ + "▁trans", + "formation" + ], + [ + "▁Nob", + "el" + ], + [ + "▁No", + "bel" + ], + [ + "▁War", + "ri" + ], + [ + "▁Rem", + "ember" + ], + [ + "▁Na", + "s" + ], + [ + "▁N", + "as" + ], + [ + "▁tra", + "p" + ], + [ + "▁tr", + "ap" + ], + [ + "▁t", + "rap" + ], + [ + "fr", + "ont" + ], + [ + "f", + "ront" + ], + [ + "▁al", + "ert" + ], + [ + "uate", + "s" + ], + [ + "ua", + "tes" + ], + [ + "u", + "ates" + ], + [ + "▁grant", + "s" + ], + [ + "▁gran", + "ts" + ], + [ + "▁gr", + "ants" + ], + [ + "▁g", + "rants" + ], + [ + "▁mother", + "s" + ], + [ + "▁mot", + "hers" + ], + [ + "▁w", + "ww" + ], + [ + "▁", + "www" + ], + [ + "▁live", + "stock" + ], + [ + "▁liv", + "estock" + ], + [ + "▁Ab", + "er" + ], + [ + "▁A", + "ber" + ], + [ + "▁Reg", + "ion" + ], + [ + "▁convinc", + "e" + ], + [ + "▁convin", + "ce" + ], + [ + "▁conv", + "ince" + ], + [ + "▁Mal", + "colm" + ], + [ + "▁rep", + "ublic" + ], + [ + "▁Hu", + "s" + ], + [ + "▁H", + "us" + ], + [ + "imi", + "ty" + ], + [ + "im", + "ity" + ], + [ + "▁in", + "ev" + ], + [ + "▁River", + "s" + ], + [ + "▁Riv", + "ers" + ], + [ + "▁Ri", + "vers" + ], + [ + "▁R", + "ivers" + ], + [ + "▁dec", + "omp" + ], + [ + "▁de", + "comp" + ], + [ + "▁sed", + "iment" + ], + [ + "▁int", + "r" + ], + [ + "▁in", + "tr" + ], + [ + "clud", + "ing" + ], + [ + "cl", + "uding" + ], + [ + "▁Barn", + "es" + ], + [ + "▁Bar", + "nes" + ], + [ + "▁ag", + "g" + ], + [ + "▁a", + "gg" + ], + [ + "▁Ed", + "die" + ], + [ + "▁Constantin", + "ople" + ], + [ + "▁Pres", + "t" + ], + [ + "▁Pre", + "st" + ], + [ + "▁Pr", + "est" + ], + [ + "▁P", + "rest" + ], + [ + "olit", + "h" + ], + [ + "oli", + "th" + ], + [ + "ol", + "ith" + ], + [ + "▁fan", + "m" + ], + [ + "▁f", + "anm" + ], + [ + "▁Del", + "ta" + ], + [ + "▁D", + "elta" + ], + [ + "▁buy", + "ing" + ], + [ + "▁bu", + "ying" + ], + [ + "▁convict", + "ed" + ], + [ + "▁conv", + "icted" + ], + [ + "▁X", + "X" + ], + [ + "▁slow", + "er" + ], + [ + "▁sl", + "ower" + ], + [ + "▁gl", + "ob" + ], + [ + "ious", + "ly" + ], + [ + "i", + "ously" + ], + [ + "▁4", + "," + ], + [ + "▁", + "4," + ], + [ + "ju", + "st" + ], + [ + "j", + "ust" + ], + [ + "▁Mich", + "a" + ], + [ + "▁Mic", + "ha" + ], + [ + "▁Mi", + "cha" + ], + [ + "▁sus", + "cept" + ], + [ + "▁Ark", + "ansas" + ], + [ + "▁reconst", + "ruct" + ], + [ + "G", + "S" + ], + [ + "ank", + "a" + ], + [ + "an", + "ka" + ], + [ + "▁Ma", + "k" + ], + [ + "▁M", + "ak" + ], + [ + "own", + "ed" + ], + [ + "ow", + "ned" + ], + [ + "▁Die", + "t" + ], + [ + "▁Di", + "et" + ], + [ + "▁D", + "iet" + ], + [ + "▁Park", + "s" + ], + [ + "▁Par", + "ks" + ], + [ + "▁P", + "arks" + ], + [ + "▁Chap", + "el" + ], + [ + "▁Ed", + "mund" + ], + [ + "▁las", + "er" + ], + [ + "▁l", + "aser" + ], + [ + "▁trip", + "s" + ], + [ + "▁tri", + "ps" + ], + [ + "▁tr", + "ips" + ], + [ + "opa", + "rd" + ], + [ + "op", + "ard" + ], + [ + "▁Bea", + "u" + ], + [ + "▁Be", + "au" + ], + [ + "▁drain", + "age" + ], + [ + "oni", + "ng" + ], + [ + "on", + "ing" + ], + [ + "o", + "ning" + ], + [ + "▁p", + "seud" + ], + [ + "lement", + "s" + ], + [ + "lem", + "ents" + ], + [ + "le", + "ments" + ], + [ + "l", + "ements" + ], + [ + "▁Reg", + "ard" + ], + [ + "▁Re", + "gard" + ], + [ + "▁C", + "avalry" + ], + [ + "▁edition", + "s" + ], + [ + "▁edit", + "ions" + ], + [ + "▁ed", + "itions" + ], + [ + "▁depict", + "ing" + ], + [ + "ami", + "c" + ], + [ + "am", + "ic" + ], + [ + "a", + "mic" + ], + [ + "work", + "s" + ], + [ + "▁uns", + "t" + ], + [ + "▁un", + "st" + ], + [ + "▁susp", + "ension" + ], + [ + "▁mir", + "ror" + ], + [ + "▁cour", + "age" + ], + [ + "▁cou", + "rage" + ], + [ + "▁c", + "ourage" + ], + [ + "▁excit", + "ed" + ], + [ + "▁exc", + "ited" + ], + [ + "▁witness", + "es" + ], + [ + "h", + "l" + ], + [ + "▁adm", + "it" + ], + [ + "▁ad", + "mit" + ], + [ + "▁license", + "d" + ], + [ + "▁lic", + "ensed" + ], + [ + "T", + "M" + ], + [ + "▁Th", + "an" + ], + [ + "▁T", + "han" + ], + [ + "▁compar", + "able" + ], + [ + "▁C", + "M" + ], + [ + "▁warship", + "s" + ], + [ + "▁wars", + "hips" + ], + [ + "em", + "pl" + ], + [ + "▁Le", + "o" + ], + [ + "▁L", + "eo" + ], + [ + "▁Brook", + "lyn" + ], + [ + "▁mer", + "e" + ], + [ + "▁me", + "re" + ], + [ + "▁m", + "ere" + ], + [ + "▁", + "mere" + ], + [ + "iction", + "s" + ], + [ + "ict", + "ions" + ], + [ + "i", + "ctions" + ], + [ + "▁mas", + "c" + ], + [ + "▁ma", + "sc" + ], + [ + "▁m", + "asc" + ], + [ + "▁pen", + "n" + ], + [ + "▁p", + "enn" + ], + [ + "▁chart", + "ed" + ], + [ + "▁char", + "ted" + ], + [ + "▁ch", + "arted" + ], + [ + "▁contra", + "ry" + ], + [ + "▁cont", + "rary" + ], + [ + "▁manager", + "s" + ], + [ + "▁manage", + "rs" + ], + [ + "▁manag", + "ers" + ], + [ + "▁man", + "agers" + ], + [ + "▁isol", + "ation" + ], + [ + "▁is", + "olation" + ], + [ + "▁can", + "on" + ], + [ + "▁ca", + "non" + ], + [ + "▁spr", + "ay" + ], + [ + "▁sp", + "ray" + ], + [ + "▁S", + "ource" + ], + [ + "▁Bas", + "k" + ], + [ + "▁Ba", + "sk" + ], + [ + "▁B", + "ask" + ], + [ + "▁Schu", + "m" + ], + [ + "▁Sch", + "um" + ], + [ + "▁Sc", + "hum" + ], + [ + "▁sw", + "ing" + ], + [ + "▁s", + "wing" + ], + [ + "▁prof", + "ound" + ], + [ + "▁pro", + "found" + ], + [ + "▁Marine", + "s" + ], + [ + "▁Marin", + "es" + ], + [ + "▁Mari", + "nes" + ], + [ + "▁Mar", + "ines" + ], + [ + "▁Hi", + "m" + ], + [ + "▁H", + "im" + ], + [ + "▁progress", + "ed" + ], + [ + "▁prog", + "ressed" + ], + [ + "-", + "4" + ], + [ + "▁import", + "ed" + ], + [ + "▁imp", + "orted" + ], + [ + "▁im", + "ported" + ], + [ + "▁comp", + "at" + ], + [ + "▁com", + "pat" + ], + [ + "▁Or", + "chest" + ], + [ + "▁Inc", + "re" + ], + [ + "▁ex", + "terior" + ], + [ + "▁", + "~" + ], + [ + "▁Ti", + "b" + ], + [ + "▁T", + "ib" + ], + [ + "▁tri", + "umph" + ], + [ + "w", + "right" + ], + [ + "▁pres", + "ervation" + ], + [ + "▁be", + "r" + ], + [ + "▁b", + "er" + ], + [ + "▁", + "ber" + ], + [ + "▁Cor", + "e" + ], + [ + "▁Co", + "re" + ], + [ + "▁C", + "ore" + ], + [ + "▁man", + "t" + ], + [ + "▁ma", + "nt" + ], + [ + "▁m", + "ant" + ], + [ + "▁Nat", + "han" + ], + [ + "▁N", + "athan" + ], + [ + "▁res", + "olve" + ], + [ + "▁continent", + "al" + ], + [ + "▁contin", + "ental" + ], + [ + "▁", + "continental" + ], + [ + "ia", + "go" + ], + [ + "i", + "ago" + ], + [ + "▁Buddh", + "ist" + ], + [ + "▁Budd", + "hist" + ], + [ + "di", + "v" + ], + [ + "d", + "iv" + ], + [ + "▁Joa", + "n" + ], + [ + "▁Jo", + "an" + ], + [ + "▁J", + "oan" + ], + [ + "▁der", + "iv" + ], + [ + "▁Gro", + "und" + ], + [ + "▁Gr", + "ound" + ], + [ + "▁G", + "round" + ], + [ + "▁drop", + "ping" + ], + [ + "▁dro", + "pping" + ], + [ + "▁heav", + "ier" + ], + [ + "▁he", + "avier" + ], + [ + "▁pl", + "ug" + ], + [ + "▁Flore", + "nce" + ], + [ + "▁Flor", + "ence" + ], + [ + "▁Se", + "y" + ], + [ + "▁S", + "ey" + ], + [ + "▁so", + "ap" + ], + [ + "idi", + "a" + ], + [ + "id", + "ia" + ], + [ + "i", + "dia" + ], + [ + "▁Kyl", + "e" + ], + [ + "▁Ky", + "le" + ], + [ + "▁K", + "yle" + ], + [ + "▁North", + "west" + ], + [ + "▁Bo", + "t" + ], + [ + "▁B", + "ot" + ], + [ + "▁propag", + "anda" + ], + [ + "ocol", + "ate" + ], + [ + "▁ra", + "b" + ], + [ + "▁r", + "ab" + ], + [ + "▁", + "rab" + ], + [ + "▁Cry", + "st" + ], + [ + "▁cha", + "se" + ], + [ + "▁ch", + "ase" + ], + [ + "▁Mov", + "ement" + ], + [ + "▁Mo", + "vement" + ], + [ + "▁liter", + "acy" + ], + [ + "▁defender", + "s" + ], + [ + "▁defend", + "ers" + ], + [ + "▁def", + "enders" + ], + [ + "▁monaster", + "y" + ], + [ + "▁Kenn", + "eth" + ], + [ + "▁Sym", + "phony" + ], + [ + "▁(", + "5" + ], + [ + "▁8", + "." + ], + [ + "▁", + "8." + ], + [ + "▁She", + "p" + ], + [ + "▁Sh", + "ep" + ], + [ + "▁Lear", + "n" + ], + [ + "▁Le", + "arn" + ], + [ + "▁edit", + "ing" + ], + [ + "▁ed", + "iting" + ], + [ + "▁Gate", + "s" + ], + [ + "▁Gat", + "es" + ], + [ + "▁Ga", + "tes" + ], + [ + "▁G", + "ates" + ], + [ + "▁inter", + "f" + ], + [ + "▁L", + "P" + ], + [ + "if", + "ier" + ], + [ + "riage", + "s" + ], + [ + "ria", + "ges" + ], + [ + "ri", + "ages" + ], + [ + "▁Andr", + "é" + ], + [ + "▁And", + "ré" + ], + [ + "▁pen", + "insula" + ], + [ + "▁To", + "w" + ], + [ + "▁T", + "ow" + ], + [ + "▁sea", + "r" + ], + [ + "▁se", + "ar" + ], + [ + "▁s", + "ear" + ], + [ + "▁Vi", + "enn" + ], + [ + "▁V", + "ienn" + ], + [ + "▁Publ", + "ishing" + ], + [ + "▁amph", + "ib" + ], + [ + "▁amp", + "hib" + ], + [ + "▁nam", + "ing" + ], + [ + "▁na", + "ming" + ], + [ + "▁n", + "aming" + ], + [ + "▁avoid", + "ing" + ], + [ + "▁avo", + "iding" + ], + [ + "▁Territ", + "ory" + ], + [ + "▁seem", + "ingly" + ], + [ + "▁dem", + "ocratic" + ], + [ + "osph", + "ere" + ], + [ + "osp", + "here" + ], + [ + "▁", + "₹" + ], + [ + "▁So", + "r" + ], + [ + "▁S", + "or" + ], + [ + "▁VII", + "I" + ], + [ + "▁VI", + "II" + ], + [ + "▁V", + "III" + ], + [ + "▁Herb", + "ert" + ], + [ + "▁Her", + "bert" + ], + [ + "ati", + "al" + ], + [ + "at", + "ial" + ], + [ + "W", + "A" + ], + [ + "-1", + "8" + ], + [ + "-", + "18" + ], + [ + "▁Th", + "ames" + ], + [ + "▁camera", + "s" + ], + [ + "▁camer", + "as" + ], + [ + "▁came", + "ras" + ], + [ + "go", + "w" + ], + [ + "g", + "ow" + ], + [ + "▁tour", + "ism" + ], + [ + "3", + "1" + ], + [ + "▁CO", + "VID" + ], + [ + "▁mind", + "s" + ], + [ + "▁min", + "ds" + ], + [ + "▁partic", + "le" + ], + [ + "▁part", + "icle" + ], + [ + "ri", + "l" + ], + [ + "r", + "il" + ], + [ + "▁wh", + "ale" + ], + [ + "▁metal", + "l" + ], + [ + "▁met", + "all" + ], + [ + "▁project", + "ed" + ], + [ + "avi", + "er" + ], + [ + "av", + "ier" + ], + [ + "▁sym", + "met" + ], + [ + "ist", + "le" + ], + [ + "is", + "tle" + ], + [ + "▁Phil", + "os" + ], + [ + "▁Sel", + "f" + ], + [ + "▁S", + "elf" + ], + [ + "▁dr", + "unk" + ], + [ + "ene", + "z" + ], + [ + "en", + "ez" + ], + [ + "e", + "nez" + ], + [ + "▁Mac", + "Arthur" + ], + [ + "oth", + "s" + ], + [ + "o", + "ths" + ], + [ + "▁inte", + "st" + ], + [ + "▁int", + "est" + ], + [ + "▁dramatic", + "ally" + ], + [ + "▁dram", + "atically" + ], + [ + "▁sh", + "adow" + ], + [ + "bu", + "t" + ], + [ + "b", + "ut" + ], + [ + "▁vent", + "ure" + ], + [ + "▁ven", + "ture" + ], + [ + "▁condem", + "ned" + ], + [ + "▁pers", + "ec" + ], + [ + "▁per", + "sec" + ], + [ + "ple", + "x" + ], + [ + "pl", + "ex" + ], + [ + "p", + "lex" + ], + [ + "-", + "7" + ], + [ + "▁14", + "5" + ], + [ + "▁1", + "45" + ], + [ + "▁Du", + "c" + ], + [ + "▁D", + "uc" + ], + [ + "▁Ph", + "ot" + ], + [ + "▁P", + "hot" + ], + [ + "▁Contin", + "ental" + ], + [ + "▁descendant", + "s" + ], + [ + "▁descend", + "ants" + ], + [ + "▁Cl", + "oud" + ], + [ + "▁Gl", + "as" + ], + [ + "▁G", + "las" + ], + [ + "▁anth", + "rop" + ], + [ + "▁", + "anthrop" + ], + [ + "▁sleep", + "ing" + ], + [ + "▁slee", + "ping" + ], + [ + "▁sle", + "eping" + ], + [ + "▁electron", + "s" + ], + [ + "▁electro", + "ns" + ], + [ + "▁electr", + "ons" + ], + [ + "▁elect", + "rons" + ], + [ + "▁helicop", + "ter" + ], + [ + "▁Plan", + "et" + ], + [ + "▁transmit", + "ted" + ], + [ + "▁transm", + "itted" + ], + [ + "▁trans", + "mitted" + ], + [ + "▁", + "′" + ], + [ + "▁war", + "t" + ], + [ + "▁w", + "art" + ], + [ + "▁civil", + "ization" + ], + [ + "roc", + "k" + ], + [ + "ro", + "ck" + ], + [ + "r", + "ock" + ], + [ + "▁Wild", + "life" + ], + [ + "grad", + "uate" + ], + [ + "▁conj", + "unction" + ], + [ + "▁H", + "i" + ], + [ + "ve", + "ill" + ], + [ + "▁ce", + "ment" + ], + [ + "▁c", + "ement" + ], + [ + "▁tra", + "uma" + ], + [ + "▁deliberate", + "ly" + ], + [ + "▁deliber", + "ately" + ], + [ + "▁hol", + "y" + ], + [ + "▁ho", + "ly" + ], + [ + "▁h", + "oly" + ], + [ + "ishop", + "s" + ], + [ + "ish", + "ops" + ], + [ + "▁Sp", + "ort" + ], + [ + "▁S", + "port" + ], + [ + "▁wish", + "es" + ], + [ + "▁w", + "ishes" + ], + [ + "▁name", + "ly" + ], + [ + "▁nam", + "ely" + ], + [ + "▁accurate", + "ly" + ], + [ + "▁accur", + "ately" + ], + [ + "des", + "t" + ], + [ + "de", + "st" + ], + [ + "d", + "est" + ], + [ + "▁bo", + "l" + ], + [ + "▁b", + "ol" + ], + [ + "▁ster", + "n" + ], + [ + "▁st", + "ern" + ], + [ + "▁s", + "tern" + ], + [ + "▁Work", + "ing" + ], + [ + "▁Wor", + "king" + ], + [ + "▁Clair", + "e" + ], + [ + "▁Cla", + "ire" + ], + [ + "▁Cl", + "aire" + ], + [ + "▁Seas", + "on" + ], + [ + "▁Sea", + "son" + ], + [ + "▁Se", + "ason" + ], + [ + "▁S", + "eason" + ], + [ + "▁Em", + "ma" + ], + [ + "▁p", + "neum" + ], + [ + "▁Dal", + "e" + ], + [ + "▁Da", + "le" + ], + [ + "▁D", + "ale" + ], + [ + "▁dep", + "uty" + ], + [ + "▁trans", + "it" + ], + [ + "▁Do", + "c" + ], + [ + "▁D", + "oc" + ], + [ + "▁bee", + "s" + ], + [ + "▁be", + "es" + ], + [ + "▁b", + "ees" + ], + [ + "▁clos", + "ure" + ], + [ + "▁cl", + "osure" + ], + [ + "▁swe", + "pt" + ], + [ + "▁sw", + "ept" + ], + [ + "cl", + "iff" + ], + [ + "▁dark", + "er" + ], + [ + "▁Ho", + "od" + ], + [ + "▁H", + "ood" + ], + [ + "▁vari", + "ant" + ], + [ + "▁var", + "iant" + ], + [ + "▁float", + "ing" + ], + [ + "▁flo", + "ating" + ], + [ + "▁damage", + "s" + ], + [ + "▁dam", + "ages" + ], + [ + "agle", + "s" + ], + [ + "ag", + "les" + ], + [ + "▁wel", + "come" + ], + [ + "▁nick", + "name" + ], + [ + "▁Po", + "k" + ], + [ + "▁P", + "ok" + ], + [ + "▁Imp", + "ro" + ], + [ + "▁Im", + "pro" + ], + [ + "▁underw", + "ater" + ], + [ + "▁under", + "water" + ], + [ + "▁Rena", + "issance" + ], + [ + "yram", + "id" + ], + [ + "▁w", + "isdom" + ], + [ + "▁mete", + "or" + ], + [ + "▁met", + "eor" + ], + [ + "▁S", + "C" + ], + [ + "▁cor", + "rel" + ], + [ + "▁extra", + "ordinary" + ], + [ + "gar", + "y" + ], + [ + "ga", + "ry" + ], + [ + "g", + "ary" + ], + [ + "pr", + "ing" + ], + [ + "p", + "ring" + ], + [ + "▁Nig", + "er" + ], + [ + "▁Ni", + "ger" + ], + [ + "▁N", + "iger" + ], + [ + "▁Rou", + "nd" + ], + [ + "▁Ro", + "und" + ], + [ + "▁R", + "ound" + ], + [ + "▁c", + "emetery" + ], + [ + "▁Vari", + "ous" + ], + [ + "▁Var", + "ious" + ], + [ + "▁V", + "arious" + ], + [ + "▁Corn", + "wall" + ], + [ + "▁balance", + "d" + ], + [ + "▁bal", + "anced" + ], + [ + "▁legitim", + "ate" + ], + [ + "▁legit", + "imate" + ], + [ + "▁psych", + "ology" + ], + [ + "▁Ches", + "ter" + ], + [ + "▁Che", + "ster" + ], + [ + "▁Ch", + "ester" + ], + [ + "▁C", + "hester" + ], + [ + "▁Je", + "n" + ], + [ + "▁J", + "en" + ], + [ + "▁Cla", + "ra" + ], + [ + "▁Cl", + "ara" + ], + [ + "▁Mag", + "ic" + ], + [ + "▁Ma", + "gic" + ], + [ + "umber", + "land" + ], + [ + "▁interfere", + "nce" + ], + [ + "▁interfer", + "ence" + ], + [ + "▁inter", + "ference" + ], + [ + "▁Ka", + "z" + ], + [ + "▁K", + "az" + ], + [ + "▁Lo", + "g" + ], + [ + "▁L", + "og" + ], + [ + "▁L", + "òt" + ], + [ + "isch", + "er" + ], + [ + "isc", + "her" + ], + [ + "is", + "cher" + ], + [ + "ment", + "ation" + ], + [ + "▁highlight", + "s" + ], + [ + "▁high", + "lights" + ], + [ + "▁acqu", + "isition" + ], + [ + "olar", + "s" + ], + [ + "ola", + "rs" + ], + [ + "ol", + "ars" + ], + [ + "▁art", + "h" + ], + [ + "▁ar", + "th" + ], + [ + "▁", + "arth" + ], + [ + "olester", + "ol" + ], + [ + "▁Is", + "s" + ], + [ + "▁I", + "ss" + ], + [ + "ring", + "e" + ], + [ + "rin", + "ge" + ], + [ + "r", + "inge" + ], + [ + "▁Vo", + "ice" + ], + [ + "▁V", + "oice" + ], + [ + "▁sink", + "ing" + ], + [ + "▁sin", + "king" + ], + [ + "▁s", + "inking" + ], + [ + "▁accept", + "able" + ], + [ + "▁ac", + "ceptable" + ], + [ + "▁assert", + "ed" + ], + [ + "▁ass", + "erted" + ], + [ + "▁invent", + "ion" + ], + [ + "▁inv", + "ention" + ], + [ + "▁in", + "vention" + ], + [ + "▁0", + "1" + ], + [ + "▁Julia", + "n" + ], + [ + "▁Jul", + "ian" + ], + [ + "▁183", + "0" + ], + [ + "▁18", + "30" + ], + [ + "▁Vic", + "k" + ], + [ + "▁Vi", + "ck" + ], + [ + "▁V", + "ick" + ], + [ + "8", + "7" + ], + [ + "rack", + "s" + ], + [ + "rac", + "ks" + ], + [ + "r", + "acks" + ], + [ + "▁ant", + "ye" + ], + [ + "▁an", + "tye" + ], + [ + "▁push", + "ing" + ], + [ + "▁p", + "ushing" + ], + [ + "▁School", + "s" + ], + [ + "▁Sch", + "ools" + ], + [ + "ush", + "es" + ], + [ + "us", + "hes" + ], + [ + "▁pract", + "ition" + ], + [ + "▁ar", + "bit" + ], + [ + "▁favor", + "ed" + ], + [ + "▁fav", + "ored" + ], + [ + "▁mix", + "ing" + ], + [ + "▁march", + "ed" + ], + [ + "▁mar", + "ched" + ], + [ + "▁rush", + "ing" + ], + [ + "▁r", + "ushing" + ], + [ + "▁Air", + "lines" + ], + [ + "▁reveal", + "ing" + ], + [ + "▁reve", + "aling" + ], + [ + "▁synthes", + "is" + ], + [ + "▁synth", + "esis" + ], + [ + "▁syn", + "thesis" + ], + [ + "▁s", + "ynthesis" + ], + [ + "▁contact", + "ed" + ], + [ + "8", + "," + ], + [ + "▁accident", + "s" + ], + [ + "▁acc", + "idents" + ], + [ + "▁account", + "ing" + ], + [ + "▁Pac", + "k" + ], + [ + "▁Pa", + "ck" + ], + [ + "▁P", + "ack" + ], + [ + "I", + "f" + ], + [ + "rit", + "is" + ], + [ + "r", + "itis" + ], + [ + "▁C", + "inc" + ], + [ + "▁ana", + "t" + ], + [ + "▁an", + "at" + ], + [ + "▁ch", + "im" + ], + [ + "▁c", + "him" + ], + [ + "▁tem", + "po" + ], + [ + "▁t", + "empo" + ], + [ + "▁wage", + "s" + ], + [ + "▁wag", + "es" + ], + [ + "▁wa", + "ges" + ], + [ + "▁w", + "ages" + ], + [ + "▁Leg", + "end" + ], + [ + "iza", + "rd" + ], + [ + "iz", + "ard" + ], + [ + "▁cost", + "ume" + ], + [ + "▁dark", + "ness" + ], + [ + "9", + "7" + ], + [ + "▁fer", + "ry" + ], + [ + "▁comp", + "ass" + ], + [ + "▁com", + "pass" + ], + [ + "▁Mov", + "ie" + ], + [ + "▁Mo", + "vie" + ], + [ + "▁Wag", + "ner" + ], + [ + "▁length", + "s" + ], + [ + "▁leng", + "ths" + ], + [ + "▁dischar", + "ge" + ], + [ + "▁dis", + "charge" + ], + [ + "▁at", + "op" + ], + [ + "▁a", + "top" + ], + [ + "w", + "orld" + ], + [ + "upt", + "ion" + ], + [ + "u", + "ption" + ], + [ + "▁free", + "ly" + ], + [ + "▁fre", + "ely" + ], + [ + "▁autom", + "atic" + ], + [ + "▁auto", + "matic" + ], + [ + "ava", + "n" + ], + [ + "av", + "an" + ], + [ + "a", + "van" + ], + [ + "▁eval", + "uate" + ], + [ + "▁possess", + "ed" + ], + [ + "▁poss", + "essed" + ], + [ + "▁emb", + "ry" + ], + [ + "▁Sp", + "ider" + ], + [ + "▁inter", + "c" + ], + [ + "▁int", + "erc" + ], + [ + "▁France", + "s" + ], + [ + "▁Franc", + "es" + ], + [ + "▁Fran", + "ces" + ], + [ + "▁Fr", + "ances" + ], + [ + "▁F", + "rances" + ], + [ + "▁Mi", + "z" + ], + [ + "▁M", + "iz" + ], + [ + "▁flex", + "ible" + ], + [ + "▁polit", + "ician" + ], + [ + "ali", + "s" + ], + [ + "al", + "is" + ], + [ + "a", + "lis" + ], + [ + "▁Ven", + "us" + ], + [ + "▁ben", + "ch" + ], + [ + "▁agree", + "s" + ], + [ + "▁agre", + "es" + ], + [ + "▁ag", + "rees" + ], + [ + "▁sun", + "light" + ], + [ + "▁A", + "j" + ], + [ + "▁Sl", + "av" + ], + [ + "▁S", + "lav" + ], + [ + "on", + "i" + ], + [ + "o", + "ni" + ], + [ + "vention", + "s" + ], + [ + "vent", + "ions" + ], + [ + "▁report", + "er" + ], + [ + "▁rep", + "orter" + ], + [ + "z", + "h" + ], + [ + "▁dep", + "r" + ], + [ + "▁de", + "pr" + ], + [ + "▁Greek", + "s" + ], + [ + "▁Gree", + "ks" + ], + [ + "▁Gre", + "eks" + ], + [ + "▁cerem", + "onies" + ], + [ + "▁pron", + "ounced" + ], + [ + "▁separate", + "ly" + ], + [ + "▁separ", + "ately" + ], + [ + "▁Ke", + "l" + ], + [ + "▁K", + "el" + ], + [ + "▁nep", + "hew" + ], + [ + "▁conspir", + "acy" + ], + [ + "▁international", + "ly" + ], + [ + "▁intern", + "ationally" + ], + [ + "▁adm", + "ir" + ], + [ + "▁ad", + "mir" + ], + [ + "▁sec", + "ular" + ], + [ + "▁compens", + "ation" + ], + [ + "erv", + "ing" + ], + [ + "er", + "ving" + ], + [ + "▁curve", + "d" + ], + [ + "▁cur", + "ved" + ], + [ + "▁Form", + "ation" + ], + [ + "ede", + "d" + ], + [ + "ed", + "ed" + ], + [ + "e", + "ded" + ], + [ + "fore", + "st" + ], + [ + "for", + "est" + ], + [ + "fo", + "rest" + ], + [ + "▁heav", + "en" + ], + [ + "▁he", + "aven" + ], + [ + "▁relieve", + "d" + ], + [ + "▁relie", + "ved" + ], + [ + "path", + "y" + ], + [ + "pat", + "hy" + ], + [ + "pa", + "thy" + ], + [ + "p", + "athy" + ], + [ + "▁vill", + "ain" + ], + [ + "▁vil", + "lain" + ], + [ + "▁Li", + "e" + ], + [ + "▁L", + "ie" + ], + [ + "▁Mid", + "d" + ], + [ + "▁Mi", + "dd" + ], + [ + "▁M", + "idd" + ], + [ + "▁ruler", + "s" + ], + [ + "▁rule", + "rs" + ], + [ + "▁rul", + "ers" + ], + [ + "▁ru", + "lers" + ], + [ + "▁belong", + "ed" + ], + [ + "▁erupt", + "ion" + ], + [ + "▁er", + "uption" + ], + [ + "▁e", + "ruption" + ], + [ + "▁demonst", + "ration" + ], + [ + "va", + "e" + ], + [ + "v", + "ae" + ], + [ + "▁D", + "J" + ], + [ + "▁imagin", + "ation" + ], + [ + "▁imag", + "ination" + ], + [ + "que", + "t" + ], + [ + "qu", + "et" + ], + [ + "▁Gib", + "ral" + ], + [ + "▁Gi", + "bral" + ], + [ + "▁but", + "t" + ], + [ + "▁bu", + "tt" + ], + [ + "▁b", + "utt" + ], + [ + "▁Lord", + "s" + ], + [ + "▁Lor", + "ds" + ], + [ + "▁L", + "ords" + ], + [ + "▁Son", + "ic" + ], + [ + "▁So", + "nic" + ], + [ + "▁S", + "onic" + ], + [ + "iji", + "ng" + ], + [ + "ij", + "ing" + ], + [ + "▁deal", + "t" + ], + [ + "▁de", + "alt" + ], + [ + "▁drop", + "s" + ], + [ + "▁dro", + "ps" + ], + [ + "▁dr", + "ops" + ], + [ + "▁d", + "rops" + ], + [ + "▁subm", + "er" + ], + [ + "▁sub", + "mer" + ], + [ + "am", + "o" + ], + [ + "a", + "mo" + ], + [ + "▁Fried", + "rich" + ], + [ + "▁Con", + "sequently" + ], + [ + "▁genre", + "s" + ], + [ + "▁gen", + "res" + ], + [ + "▁apply", + "ing" + ], + [ + "▁appl", + "ying" + ], + [ + "▁app", + "lying" + ], + [ + "pi", + "t" + ], + [ + "p", + "it" + ], + [ + "▁M", + "C" + ], + [ + "▁", + "MC" + ], + [ + "▁ab", + "b" + ], + [ + "▁a", + "bb" + ], + [ + "▁Gu", + "st" + ], + [ + "▁G", + "ust" + ], + [ + "▁Ron", + "ald" + ], + [ + "▁R", + "onald" + ], + [ + "▁Hol", + "ocaust" + ], + [ + "-1", + "2" + ], + [ + "-", + "12" + ], + [ + "▁cub", + "ic" + ], + [ + "▁em", + "power" + ], + [ + "▁air", + "borne" + ], + [ + "cyclop", + "edia" + ], + [ + "ashi", + "ng" + ], + [ + "ash", + "ing" + ], + [ + "as", + "hing" + ], + [ + "▁imm", + "igration" + ], + [ + "▁Ev", + "il" + ], + [ + "▁E", + "vil" + ], + [ + "▁monk", + "ey" + ], + [ + "▁mon", + "key" + ], + [ + "R", + "e" + ], + [ + "▁ant", + "s" + ], + [ + "▁an", + "ts" + ], + [ + "▁", + "ants" + ], + [ + "▁Mig", + "uel" + ], + [ + "▁dis", + "ability" + ], + [ + "▁ER", + "A" + ], + [ + "▁E", + "RA" + ], + [ + "4", + "1" + ], + [ + "▁Pap", + "er" + ], + [ + "▁Pa", + "per" + ], + [ + "▁P", + "aper" + ], + [ + "ach", + "t" + ], + [ + "ac", + "ht" + ], + [ + "a", + "cht" + ], + [ + "▁Ree", + "d" + ], + [ + "▁Re", + "ed" + ], + [ + "▁R", + "eed" + ], + [ + "▁aren", + "a" + ], + [ + "▁are", + "na" + ], + [ + "▁ar", + "ena" + ], + [ + "▁mot", + "if" + ], + [ + "▁inc", + "orrect" + ], + [ + "▁compris", + "ing" + ], + [ + "▁comp", + "rising" + ], + [ + "▁conf", + "ined" + ], + [ + "▁garn", + "ered" + ], + [ + "▁laws", + "uit" + ], + [ + "▁publ", + "ish" + ], + [ + "▁pub", + "lish" + ], + [ + "▁Pet", + "e" + ], + [ + "▁Pe", + "te" + ], + [ + "▁P", + "ete" + ], + [ + "▁Ath", + "en" + ], + [ + "▁At", + "hen" + ], + [ + "▁A", + "then" + ], + [ + "▁ir", + "rig" + ], + [ + "▁read", + "s" + ], + [ + "▁re", + "ads" + ], + [ + "▁comp", + "act" + ], + [ + "▁wound", + "s" + ], + [ + "▁w", + "ounds" + ], + [ + "▁Nu", + "m" + ], + [ + "▁N", + "um" + ], + [ + "▁Mey", + "er" + ], + [ + "▁Me", + "yer" + ], + [ + "▁M", + "eyer" + ], + [ + "▁Trib", + "une" + ], + [ + "▁season", + "al" + ], + [ + "▁seas", + "onal" + ], + [ + "▁prox", + "imity" + ], + [ + "▁anal", + "og" + ], + [ + "▁ana", + "log" + ], + [ + "▁economic", + "s" + ], + [ + "▁econom", + "ics" + ], + [ + "▁Test", + "s" + ], + [ + "▁Te", + "sts" + ], + [ + "▁T", + "ests" + ], + [ + "▁blame", + "d" + ], + [ + "▁bl", + "amed" + ], + [ + "▁pest", + "ic" + ], + [ + "▁pe", + "stic" + ], + [ + "▁p", + "estic" + ], + [ + "▁Revolution", + "ary" + ], + [ + "▁Ad", + "ri" + ], + [ + "▁Bur", + "g" + ], + [ + "▁B", + "urg" + ], + [ + "▁bombard", + "ment" + ], + [ + "ab", + "e" + ], + [ + "a", + "be" + ], + [ + "▁C", + "u" + ], + [ + "▁Den", + "nis" + ], + [ + "▁D", + "ennis" + ], + [ + "▁fine", + "st" + ], + [ + "▁fin", + "est" + ], + [ + "▁fi", + "nest" + ], + [ + "▁demand", + "ing" + ], + [ + "▁e", + "agle" + ], + [ + "▁ap", + "olog" + ], + [ + "▁Nu", + "t" + ], + [ + "▁N", + "ut" + ], + [ + "▁Game", + "Sp" + ], + [ + "i", + "ability" + ], + [ + "▁K", + "y" + ], + [ + "▁chain", + "s" + ], + [ + "▁cha", + "ins" + ], + [ + "▁ch", + "ains" + ], + [ + "▁le", + "an" + ], + [ + "▁l", + "ean" + ], + [ + "▁", + "lean" + ], + [ + "form", + "ed" + ], + [ + "for", + "med" + ], + [ + "▁cent", + "imet" + ], + [ + "▁accord", + "ance" + ], + [ + "▁facilit", + "ate" + ], + [ + "▁function", + "ing" + ], + [ + "c", + "ul" + ], + [ + "ette", + "s" + ], + [ + "ett", + "es" + ], + [ + "et", + "tes" + ], + [ + "e", + "ttes" + ], + [ + "▁caut", + "ion" + ], + [ + "▁ca", + "ution" + ], + [ + "▁Armenia", + "n" + ], + [ + "▁Armen", + "ian" + ], + [ + "▁introdu", + "cing" + ], + [ + "▁battle", + "field" + ], + [ + "ater", + "n" + ], + [ + "at", + "ern" + ], + [ + "a", + "tern" + ], + [ + "▁refer", + "e" + ], + [ + "▁ref", + "ere" + ], + [ + "▁inad", + "equ" + ], + [ + "▁in", + "adequ" + ], + [ + "▁Ana", + "t" + ], + [ + "▁An", + "at" + ], + [ + "▁profit", + "s" + ], + [ + "▁prof", + "its" + ], + [ + "▁pro", + "fits" + ], + [ + "▁lap", + "s" + ], + [ + "▁la", + "ps" + ], + [ + "▁l", + "aps" + ], + [ + "▁key", + "board" + ], + [ + "▁Gibral", + "tar" + ], + [ + "▁inv", + "er" + ], + [ + "▁in", + "ver" + ], + [ + "yer", + "s" + ], + [ + "ye", + "rs" + ], + [ + "y", + "ers" + ], + [ + "▁attribute", + "s" + ], + [ + "▁attrib", + "utes" + ], + [ + "har", + "t" + ], + [ + "h", + "art" + ], + [ + "▁Water", + "s" + ], + [ + "▁Wat", + "ers" + ], + [ + "▁Wa", + "ters" + ], + [ + "▁W", + "aters" + ], + [ + "e", + "o" + ], + [ + "ik", + "h" + ], + [ + "i", + "kh" + ], + [ + "igh", + "ed" + ], + [ + "ig", + "hed" + ], + [ + "▁Can", + "t" + ], + [ + "▁Ca", + "nt" + ], + [ + "▁C", + "ant" + ], + [ + "▁Pro", + "du" + ], + [ + "▁P", + "rodu" + ], + [ + "▁res", + "ur" + ], + [ + "▁prel", + "iminary" + ], + [ + "iss", + "a" + ], + [ + "is", + "sa" + ], + [ + "▁turbine", + "s" + ], + [ + "▁turb", + "ines" + ], + [ + "▁disappoint", + "ed" + ], + [ + "▁disapp", + "ointed" + ], + [ + "▁journalist", + "s" + ], + [ + "▁journal", + "ists" + ], + [ + "▁asp", + "ir" + ], + [ + "▁as", + "pir" + ], + [ + "▁wor", + "ried" + ], + [ + "eche", + "s" + ], + [ + "ech", + "es" + ], + [ + "ec", + "hes" + ], + [ + "e", + "ches" + ], + [ + "▁equal", + "ity" + ], + [ + "▁equ", + "ality" + ], + [ + "▁e", + "quality" + ], + [ + "h", + "m" + ], + [ + "ah", + "n" + ], + [ + "a", + "hn" + ], + [ + "▁met", + "re" + ], + [ + "▁me", + "tre" + ], + [ + "▁Wat", + "son" + ], + [ + "▁string", + "s" + ], + [ + "▁str", + "ings" + ], + [ + "▁11", + "1" + ], + [ + "▁1", + "11" + ], + [ + "▁Chamber", + "lain" + ], + [ + "avia", + "n" + ], + [ + "avi", + "an" + ], + [ + "av", + "ian" + ], + [ + "▁Brad", + "ley" + ], + [ + "▁he", + "ir" + ], + [ + "▁relie", + "d" + ], + [ + "▁rel", + "ied" + ], + [ + "▁re", + "lied" + ], + [ + "▁science", + "s" + ], + [ + "▁sc", + "iences" + ], + [ + "ne", + "ath" + ], + [ + "▁Dra", + "ft" + ], + [ + "▁Dr", + "aft" + ], + [ + "▁D", + "raft" + ], + [ + "▁resemb", + "le" + ], + [ + "▁res", + "emble" + ], + [ + "▁renew", + "able" + ], + [ + "oche", + "m" + ], + [ + "och", + "em" + ], + [ + "oc", + "hem" + ], + [ + "o", + "chem" + ], + [ + "▁La", + "f" + ], + [ + "▁L", + "af" + ], + [ + "▁l", + "ux" + ], + [ + "est", + "e" + ], + [ + "es", + "te" + ], + [ + "e", + "ste" + ], + [ + "▁cor", + "t" + ], + [ + "▁c", + "ort" + ], + [ + "od", + "ied" + ], + [ + "▁Can", + "yon" + ], + [ + "▁Heart", + "s" + ], + [ + "▁Hear", + "ts" + ], + [ + "▁He", + "arts" + ], + [ + "▁Fight", + "er" + ], + [ + "▁F", + "ighter" + ], + [ + "▁Lt", + "d" + ], + [ + "▁meal", + "s" + ], + [ + "▁me", + "als" + ], + [ + "▁cal", + "endar" + ], + [ + "▁Bou", + "levard" + ], + [ + "▁process", + "ed" + ], + [ + "▁proc", + "essed" + ], + [ + "▁emb", + "ed" + ], + [ + "▁em", + "bed" + ], + [ + "oura", + "ble" + ], + [ + "our", + "able" + ], + [ + "o", + "urable" + ], + [ + "▁displ", + "ace" + ], + [ + "▁dis", + "place" + ], + [ + "▁thunder", + "st" + ], + [ + "g", + "é" + ], + [ + "▁Her", + "m" + ], + [ + "▁He", + "rm" + ], + [ + "▁H", + "erm" + ], + [ + "▁medal", + "s" + ], + [ + "▁med", + "als" + ], + [ + "olan", + "d" + ], + [ + "ola", + "nd" + ], + [ + "ol", + "and" + ], + [ + "o", + "land" + ], + [ + "▁Fan", + "m" + ], + [ + "▁F", + "anm" + ], + [ + "▁Oliv", + "ia" + ], + [ + "▁Ol", + "ivia" + ], + [ + "▁Act", + "ress" + ], + [ + "▁website", + "s" + ], + [ + "▁webs", + "ites" + ], + [ + "▁Ta", + "s" + ], + [ + "▁T", + "as" + ], + [ + "▁anne", + "x" + ], + [ + "▁ann", + "ex" + ], + [ + "mp", + "h" + ], + [ + "m", + "ph" + ], + [ + "▁S", + "H" + ], + [ + "▁Cas", + "e" + ], + [ + "▁Ca", + "se" + ], + [ + "▁C", + "ase" + ], + [ + "▁insu", + "lin" + ], + [ + "▁ins", + "ulin" + ], + [ + "▁rout", + "ing" + ], + [ + "▁rou", + "ting" + ], + [ + "▁ro", + "uting" + ], + [ + "▁r", + "outing" + ], + [ + "▁proclaim", + "ed" + ], + [ + "▁pro", + "claimed" + ], + [ + "▁Le", + "d" + ], + [ + "▁L", + "ed" + ], + [ + "▁186", + "2" + ], + [ + "itect", + "s" + ], + [ + "it", + "ects" + ], + [ + "▁br", + "ows" + ], + [ + "▁b", + "rows" + ], + [ + "▁think", + "s" + ], + [ + "▁thin", + "ks" + ], + [ + "▁th", + "inks" + ], + [ + "▁attitude", + "s" + ], + [ + "▁att", + "itudes" + ], + [ + "ike", + "d" + ], + [ + "ik", + "ed" + ], + [ + "lon", + "g" + ], + [ + "lo", + "ng" + ], + [ + "l", + "ong" + ], + [ + "oid", + "s" + ], + [ + "oi", + "ds" + ], + [ + "o", + "ids" + ], + [ + "pos", + "t" + ], + [ + "po", + "st" + ], + [ + "p", + "ost" + ], + [ + "▁escort", + "ed" + ], + [ + "▁esc", + "orted" + ], + [ + "ent", + "e" + ], + [ + "en", + "te" + ], + [ + "▁Ru", + "s" + ], + [ + "▁R", + "us" + ], + [ + "▁186", + "4" + ], + [ + "▁18", + "64" + ], + [ + "▁div", + "e" + ], + [ + "▁di", + "ve" + ], + [ + "▁d", + "ive" + ], + [ + "▁free", + "d" + ], + [ + "▁fre", + "ed" + ], + [ + "▁fr", + "eed" + ], + [ + "▁ob", + "esity" + ], + [ + "▁Gro", + "w" + ], + [ + "▁Gr", + "ow" + ], + [ + "▁G", + "row" + ], + [ + "▁Pan", + "d" + ], + [ + "▁Pa", + "nd" + ], + [ + "▁P", + "and" + ], + [ + "▁pri", + "nce" + ], + [ + "▁pr", + "ince" + ], + [ + "▁trail", + "er" + ], + [ + "▁tra", + "iler" + ], + [ + "▁scan", + "dal" + ], + [ + "▁sc", + "andal" + ], + [ + "▁command", + "s" + ], + [ + "▁comm", + "ands" + ], + [ + "▁spread", + "ing" + ], + [ + "▁orient", + "ation" + ], + [ + "▁illustration", + "s" + ], + [ + "▁illust", + "rations" + ], + [ + "ab", + "a" + ], + [ + "a", + "ba" + ], + [ + "▁Ber", + "keley" + ], + [ + "ë", + "l" + ], + [ + "▁Mad", + "e" + ], + [ + "▁Ma", + "de" + ], + [ + "▁M", + "ade" + ], + [ + "▁Rus", + "h" + ], + [ + "▁Ru", + "sh" + ], + [ + "▁R", + "ush" + ], + [ + "ruct", + "ive" + ], + [ + "ru", + "ctive" + ], + [ + "▁Celt", + "ic" + ], + [ + "▁Cel", + "tic" + ], + [ + "▁Im", + "m" + ], + [ + "▁I", + "mm" + ], + [ + "▁Alm", + "ost" + ], + [ + "▁Al", + "most" + ], + [ + "▁Town", + "s" + ], + [ + "▁Tow", + "ns" + ], + [ + "▁wash", + "ed" + ], + [ + "▁was", + "hed" + ], + [ + "▁w", + "ashed" + ], + [ + "ine", + "ly" + ], + [ + "in", + "ely" + ], + [ + "▁sche", + "m" + ], + [ + "▁sch", + "em" + ], + [ + "▁sc", + "hem" + ], + [ + "▁s", + "chem" + ], + [ + "▁Sant", + "iago" + ], + [ + "▁continuous", + "ly" + ], + [ + "▁continu", + "ously" + ], + [ + "▁R", + "I" + ], + [ + "▁", + "RI" + ], + [ + "▁Wa", + "nt" + ], + [ + "▁W", + "ant" + ], + [ + "▁Cons", + "erv" + ], + [ + "▁Agricult", + "ure" + ], + [ + "▁h", + "ind" + ], + [ + "▁Franc", + "o" + ], + [ + "▁Fran", + "co" + ], + [ + "▁Serb", + "ia" + ], + [ + "▁bab", + "ies" + ], + [ + "▁comb", + "ine" + ], + [ + "▁decl", + "aration" + ], + [ + "mo", + "d" + ], + [ + "m", + "od" + ], + [ + "▁FI", + "FA" + ], + [ + "▁reve", + "l" + ], + [ + "▁rev", + "el" + ], + [ + "▁re", + "vel" + ], + [ + "▁Be", + "ijing" + ], + [ + "▁dec", + "isive" + ], + [ + "ht", + "t" + ], + [ + "h", + "tt" + ], + [ + "▁Wa", + "s" + ], + [ + "▁W", + "as" + ], + [ + "▁peer", + "s" + ], + [ + "▁pe", + "ers" + ], + [ + "clusion", + "s" + ], + [ + "clus", + "ions" + ], + [ + "cl", + "usions" + ], + [ + "▁opera", + "tor" + ], + [ + "▁oper", + "ator" + ], + [ + "fol", + "d" + ], + [ + "fo", + "ld" + ], + [ + "f", + "old" + ], + [ + "▁po", + "d" + ], + [ + "▁p", + "od" + ], + [ + "veill", + "ance" + ], + [ + "eli", + "n" + ], + [ + "el", + "in" + ], + [ + "e", + "lin" + ], + [ + "▁complaint", + "s" + ], + [ + "▁compl", + "aints" + ], + [ + "bert", + "o" + ], + [ + "ber", + "to" + ], + [ + "b", + "erto" + ], + [ + "▁So", + "x" + ], + [ + "▁S", + "ox" + ], + [ + "rim", + "in" + ], + [ + "ri", + "min" + ], + [ + "r", + "imin" + ], + [ + "▁gate", + "s" + ], + [ + "▁gat", + "es" + ], + [ + "▁ga", + "tes" + ], + [ + "▁g", + "ates" + ], + [ + "orig", + "inal" + ], + [ + "▁t", + "v" + ], + [ + "▁client", + "s" + ], + [ + "▁cl", + "ients" + ], + [ + "▁Arch", + "bishop" + ], + [ + "▁0", + "2" + ], + [ + "olic", + "s" + ], + [ + "oli", + "cs" + ], + [ + "ol", + "ics" + ], + [ + "▁Duc", + "h" + ], + [ + "▁Du", + "ch" + ], + [ + "▁D", + "uch" + ], + [ + "▁man", + "ual" + ], + [ + "fl", + "u" + ], + [ + "f", + "lu" + ], + [ + "man", + "s" + ], + [ + "ma", + "ns" + ], + [ + "m", + "ans" + ], + [ + "▁opt", + "ical" + ], + [ + "▁o", + "ptical" + ], + [ + "▁college", + "s" + ], + [ + "▁colle", + "ges" + ], + [ + "▁o", + "z" + ], + [ + "▁", + "oz" + ], + [ + "▁than", + "k" + ], + [ + "▁th", + "ank" + ], + [ + "▁Fif", + "th" + ], + [ + "▁love", + "r" + ], + [ + "▁lov", + "er" + ], + [ + "▁lo", + "ver" + ], + [ + "▁l", + "over" + ], + [ + "▁ab", + "d" + ], + [ + "▁log", + "ic" + ], + [ + "▁lo", + "gic" + ], + [ + "▁f", + "i" + ], + [ + "▁", + "fi" + ], + [ + "▁Au", + "b" + ], + [ + "▁A", + "ub" + ], + [ + "se", + "zon" + ], + [ + "▁Gu", + "ild" + ], + [ + "▁", + "⁄" + ], + [ + "▁r", + "ugby" + ], + [ + "▁10", + "6" + ], + [ + "▁minister", + "s" + ], + [ + "▁mini", + "sters" + ], + [ + "▁min", + "isters" + ], + [ + "▁West", + "minster" + ], + [ + "▁Budd", + "h" + ], + [ + "▁inc", + "om" + ], + [ + "▁in", + "com" + ], + [ + "any", + "òl" + ], + [ + "▁New", + "castle" + ], + [ + "▁plane", + "s" + ], + [ + "▁plan", + "es" + ], + [ + "▁pl", + "anes" + ], + [ + "▁config", + "uration" + ], + [ + "▁organisation", + "s" + ], + [ + "▁organ", + "isations" + ], + [ + "c", + "i" + ], + [ + "▁chick", + "en" + ], + [ + "▁inn", + "ing" + ], + [ + "▁in", + "ning" + ], + [ + "▁trib", + "al" + ], + [ + "▁tri", + "bal" + ], + [ + "▁tr", + "ibal" + ], + [ + "▁east", + "ward" + ], + [ + "fig", + "ht" + ], + [ + "fi", + "ght" + ], + [ + "f", + "ight" + ], + [ + "▁All", + "ah" + ], + [ + "▁Al", + "lah" + ], + [ + "ma", + "ker" + ], + [ + "m", + "aker" + ], + [ + "▁Mon", + "ey" + ], + [ + "▁Mo", + "ney" + ], + [ + "▁M", + "oney" + ], + [ + "ator", + "ial" + ], + [ + "ato", + "rial" + ], + [ + "at", + "orial" + ], + [ + "lic", + "ation" + ], + [ + "l", + "ication" + ], + [ + "▁Cinc", + "inn" + ], + [ + "▁enroll", + "ed" + ], + [ + "▁en", + "rolled" + ], + [ + "▁prohib", + "ited" + ], + [ + "▁os", + "wa" + ], + [ + "▁political", + "ly" + ], + [ + "▁polit", + "ically" + ], + [ + "H", + "D" + ], + [ + "▁explor", + "ing" + ], + [ + "▁explo", + "ring" + ], + [ + "▁expl", + "oring" + ], + [ + "▁Met", + "ro" + ], + [ + "▁art", + "if" + ], + [ + "▁mob", + "il" + ], + [ + "▁m", + "obil" + ], + [ + "▁sufficient", + "ly" + ], + [ + "▁S", + "leep" + ], + [ + "▁amb", + "it" + ], + [ + "▁am", + "bit" + ], + [ + "▁Mor", + "ning" + ], + [ + "▁collaborate", + "d" + ], + [ + "▁collabor", + "ated" + ], + [ + "▁exec", + "ut" + ], + [ + "uk", + "a" + ], + [ + "u", + "ka" + ], + [ + "▁Wa", + "ng" + ], + [ + "▁W", + "ang" + ], + [ + "▁Stan", + "ford" + ], + [ + "▁Theod", + "ore" + ], + [ + "▁The", + "odore" + ], + [ + "rit", + "ic" + ], + [ + "ri", + "tic" + ], + [ + "r", + "itic" + ], + [ + "▁nurs", + "e" + ], + [ + "▁n", + "urse" + ], + [ + "▁Member", + "s" + ], + [ + "▁Mem", + "bers" + ], + [ + "▁M", + "embers" + ], + [ + "▁Ce", + "c" + ], + [ + "▁C", + "ec" + ], + [ + "▁But", + "ler" + ], + [ + "▁Come", + "dy" + ], + [ + "▁Com", + "edy" + ], + [ + "▁grade", + "s" + ], + [ + "▁grad", + "es" + ], + [ + "▁gra", + "des" + ], + [ + "▁gr", + "ades" + ], + [ + "▁g", + "rades" + ], + [ + "▁phase", + "s" + ], + [ + "▁ph", + "ases" + ], + [ + "gi", + "o" + ], + [ + "g", + "io" + ], + [ + "fit", + "s" + ], + [ + "fi", + "ts" + ], + [ + "f", + "its" + ], + [ + "▁Analy", + "sis" + ], + [ + "▁An", + "alysis" + ], + [ + "▁reflect", + "ion" + ], + [ + "▁ref", + "lection" + ], + [ + "▁guard", + "s" + ], + [ + "▁gu", + "ards" + ], + [ + "▁volunte", + "er" + ], + [ + "▁al", + "k" + ], + [ + "▁", + "alk" + ], + [ + "3", + "4" + ], + [ + "C", + "l" + ], + [ + "▁Sit", + "e" + ], + [ + "▁Si", + "te" + ], + [ + "▁S", + "ite" + ], + [ + "▁war", + "rant" + ], + [ + "▁Carol", + "ine" + ], + [ + "▁Car", + "oline" + ], + [ + "▁utilize", + "d" + ], + [ + "▁util", + "ized" + ], + [ + "oun", + "ce" + ], + [ + "ou", + "nce" + ], + [ + "ace", + "ous" + ], + [ + "ac", + "eous" + ], + [ + "▁ast", + "er" + ], + [ + "▁as", + "ter" + ], + [ + "▁a", + "ster" + ], + [ + "▁", + "aster" + ], + [ + "M", + "C" + ], + [ + "▁un", + "re" + ], + [ + "▁bur", + "den" + ], + [ + "▁determ", + "ination" + ], + [ + "▁term", + "ed" + ], + [ + "▁ter", + "med" + ], + [ + "▁Tin", + "t" + ], + [ + "▁Ti", + "nt" + ], + [ + "▁T", + "int" + ], + [ + "▁pe", + "er" + ], + [ + "▁Vol", + "ume" + ], + [ + "▁ship", + "ped" + ], + [ + "▁sh", + "ipped" + ], + [ + "▁element", + "ary" + ], + [ + "sta", + "n" + ], + [ + "st", + "an" + ], + [ + "▁Pin", + "e" + ], + [ + "▁Pi", + "ne" + ], + [ + "▁P", + "ine" + ], + [ + "▁sacr", + "ific" + ], + [ + "▁hom", + "osexual" + ], + [ + "od", + "ia" + ], + [ + "o", + "dia" + ], + [ + "A", + "meric" + ], + [ + "▁Ind", + "ivid" + ], + [ + "▁Mob", + "ile" + ], + [ + "▁M", + "obile" + ], + [ + "▁aut", + "o" + ], + [ + "▁au", + "to" + ], + [ + "▁a", + "uto" + ], + [ + "▁Ap", + "art" + ], + [ + "▁A", + "part" + ], + [ + "▁on", + "set" + ], + [ + "▁suggestion", + "s" + ], + [ + "▁suggest", + "ions" + ], + [ + "acher", + "s" + ], + [ + "ache", + "rs" + ], + [ + "ach", + "ers" + ], + [ + "ac", + "hers" + ], + [ + "a", + "chers" + ], + [ + "▁Le", + "ban" + ], + [ + "▁Goth", + "ic" + ], + [ + "▁team", + "mate" + ], + [ + "▁dis", + "advant" + ], + [ + "▁ste", + "r" + ], + [ + "▁st", + "er" + ], + [ + "▁s", + "ter" + ], + [ + "▁", + "ster" + ], + [ + "▁Merced", + "es" + ], + [ + "▁exhibit", + "ed" + ], + [ + "▁exhib", + "ited" + ], + [ + "sta", + "ge" + ], + [ + "st", + "age" + ], + [ + "s", + "tage" + ], + [ + "▁Ven", + "ice" + ], + [ + "▁Scient", + "ists" + ], + [ + "▁Conserv", + "ative" + ], + [ + "▁Cons", + "ervative" + ], + [ + "ari", + "um" + ], + [ + "ar", + "ium" + ], + [ + "a", + "rium" + ], + [ + "▁Ve", + "gas" + ], + [ + "▁bare", + "ly" + ], + [ + "▁bar", + "ely" + ], + [ + "▁the", + "sis" + ], + [ + "▁th", + "esis" + ], + [ + "▁", + "thesis" + ], + [ + "▁Kil", + "l" + ], + [ + "▁Ki", + "ll" + ], + [ + "▁K", + "ill" + ], + [ + "▁Ant", + "i" + ], + [ + "▁An", + "ti" + ], + [ + "▁comic", + "s" + ], + [ + "▁com", + "ics" + ], + [ + "▁veteran", + "s" + ], + [ + "▁veter", + "ans" + ], + [ + "▁Ki", + "l" + ], + [ + "▁K", + "il" + ], + [ + "▁ga", + "uge" + ], + [ + "▁g", + "auge" + ], + [ + "▁bomb", + "er" + ], + [ + "▁bom", + "ber" + ], + [ + "▁bo", + "mber" + ], + [ + "▁ple", + "d" + ], + [ + "▁pl", + "ed" + ], + [ + "▁p", + "led" + ], + [ + "▁", + "pled" + ], + [ + "▁cl", + "uster" + ], + [ + "▁Mate", + "m" + ], + [ + "▁Mat", + "em" + ], + [ + "▁M", + "atem" + ], + [ + "▁supp", + "l" + ], + [ + "▁sup", + "pl" + ], + [ + "▁Pan", + "zer" + ], + [ + "▁pl", + "um" + ], + [ + "▁Al", + "pha" + ], + [ + "▁draw", + "s" + ], + [ + "▁dr", + "aws" + ], + [ + "▁loyal", + "ty" + ], + [ + "▁Cult", + "ure" + ], + [ + "▁Cul", + "ture" + ], + [ + "▁C", + "ulture" + ], + [ + "▁Car", + "r" + ], + [ + "▁C", + "arr" + ], + [ + "▁sail", + "ors" + ], + [ + "ber", + "y" + ], + [ + "be", + "ry" + ], + [ + "b", + "ery" + ], + [ + "▁aut", + "ism" + ], + [ + "▁broad", + "er" + ], + [ + "▁bro", + "ader" + ], + [ + "▁restaurant", + "s" + ], + [ + "▁restaur", + "ants" + ], + [ + "▁10", + "2" + ], + [ + "▁Scient", + "ific" + ], + [ + "▁Intellig", + "ence" + ], + [ + "▁M", + "V" + ], + [ + "▁cryst", + "al" + ], + [ + "ba", + "ch" + ], + [ + "b", + "ach" + ], + [ + "▁at", + "is" + ], + [ + "▁", + "atis" + ], + [ + "▁Ran", + "ge" + ], + [ + "▁R", + "ange" + ], + [ + "▁Den", + "ver" + ], + [ + "▁Des", + "ert" + ], + [ + "▁bacteria", + "l" + ], + [ + "▁bacter", + "ial" + ], + [ + "imm", + "er" + ], + [ + "im", + "mer" + ], + [ + "▁substantial", + "ly" + ], + [ + "▁substant", + "ially" + ], + [ + "D", + "I" + ], + [ + "ful", + "ness" + ], + [ + "▁ped", + "est" + ], + [ + "▁pe", + "dest" + ], + [ + "▁Marsh", + "al" + ], + [ + "▁Mars", + "hal" + ], + [ + "▁castle", + "s" + ], + [ + "▁cast", + "les" + ], + [ + "▁mart", + "ial" + ], + [ + "H", + "g" + ], + [ + "bo", + "at" + ], + [ + "▁He", + "at" + ], + [ + "▁ke", + "en" + ], + [ + "▁k", + "een" + ], + [ + "▁Holl", + "and" + ], + [ + "▁Hol", + "land" + ], + [ + ".", + "1" + ], + [ + "▁Ale", + "j" + ], + [ + "ag", + "raph" + ], + [ + "ount", + "ed" + ], + [ + "oun", + "ted" + ], + [ + "o", + "unted" + ], + [ + "▁o", + "ak" + ], + [ + "▁...", + "." + ], + [ + "▁..", + ".." + ], + [ + "▁.", + "..." + ], + [ + "▁", + "...." + ], + [ + "▁sod", + "ium" + ], + [ + "▁sc", + "an" + ], + [ + "▁s", + "can" + ], + [ + "▁Hen", + "ce" + ], + [ + "▁He", + "nce" + ], + [ + "▁H", + "ence" + ], + [ + "▁Rom", + "ney" + ], + [ + "aba", + "d" + ], + [ + "ab", + "ad" + ], + [ + "▁qui", + "t" + ], + [ + "▁qu", + "it" + ], + [ + "▁q", + "uit" + ], + [ + "▁loc", + "ate" + ], + [ + "▁l", + "ocate" + ], + [ + "L", + "E" + ], + [ + "esi", + "um" + ], + [ + "es", + "ium" + ], + [ + "▁Lam", + "b" + ], + [ + "▁La", + "mb" + ], + [ + "▁L", + "amb" + ], + [ + "▁symbol", + "ic" + ], + [ + "▁symb", + "olic" + ], + [ + "▁screen", + "play" + ], + [ + "▁addict", + "ion" + ], + [ + "▁add", + "iction" + ], + [ + "▁manufacture", + "r" + ], + [ + "▁manufactur", + "er" + ], + [ + "▁manufact", + "urer" + ], + [ + "ed", + "e" + ], + [ + "e", + "de" + ], + [ + "▁unn", + "ecess" + ], + [ + "▁he", + "ct" + ], + [ + "▁h", + "ect" + ], + [ + "▁pi", + "st" + ], + [ + "▁p", + "ist" + ], + [ + "▁Treat", + "ment" + ], + [ + "▁abund", + "ance" + ], + [ + "▁boy", + "friend" + ], + [ + "asi", + "a" + ], + [ + "as", + "ia" + ], + [ + "▁Circ", + "le" + ], + [ + "▁interf", + "er" + ], + [ + "▁inter", + "fer" + ], + [ + "pp", + "e" + ], + [ + "p", + "pe" + ], + [ + "ian", + "e" + ], + [ + "ia", + "ne" + ], + [ + "i", + "ane" + ], + [ + "yl", + "um" + ], + [ + "▁til", + "l" + ], + [ + "▁ti", + "ll" + ], + [ + "▁t", + "ill" + ], + [ + "▁Louis", + "e" + ], + [ + "▁Lou", + "ise" + ], + [ + "▁under", + "s" + ], + [ + "▁unde", + "rs" + ], + [ + "▁und", + "ers" + ], + [ + "▁un", + "ders" + ], + [ + "▁", + "unders" + ], + [ + "off", + "ic" + ], + [ + "of", + "fic" + ], + [ + "o", + "ffic" + ], + [ + "iol", + "ogical" + ], + [ + "i", + "ological" + ], + [ + "▁L", + "S" + ], + [ + "▁", + "LS" + ], + [ + "uro", + "p" + ], + [ + "ur", + "op" + ], + [ + "u", + "rop" + ], + [ + "thlet", + "e" + ], + [ + "th", + "lete" + ], + [ + "▁have", + "n" + ], + [ + "▁ha", + "ven" + ], + [ + "▁h", + "aven" + ], + [ + "▁", + "haven" + ], + [ + "▁Cincinn", + "ati" + ], + [ + "▁ir", + "re" + ], + [ + "▁invest", + "ors" + ], + [ + "▁sophistic", + "ated" + ], + [ + "▁Ke", + "r" + ], + [ + "▁K", + "er" + ], + [ + "▁flow", + "n" + ], + [ + "▁flo", + "wn" + ], + [ + "▁fl", + "own" + ], + [ + "▁Ka", + "w" + ], + [ + "▁K", + "aw" + ], + [ + "▁gam", + "b" + ], + [ + "▁ga", + "mb" + ], + [ + "▁g", + "amb" + ], + [ + "pper", + "s" + ], + [ + "ppe", + "rs" + ], + [ + "pp", + "ers" + ], + [ + "p", + "pers" + ], + [ + "achel", + "or" + ], + [ + "ache", + "lor" + ], + [ + "gen", + "ce" + ], + [ + "ge", + "nce" + ], + [ + "g", + "ence" + ], + [ + "▁am", + "id" + ], + [ + "▁a", + "mid" + ], + [ + "▁guarant", + "ee" + ], + [ + "▁Gre", + "n" + ], + [ + "▁Gr", + "en" + ], + [ + "▁G", + "ren" + ], + [ + "▁ur", + "ine" + ], + [ + "▁u", + "rine" + ], + [ + "▁designer", + "s" + ], + [ + "▁design", + "ers" + ], + [ + "9", + "6" + ], + [ + "▁la", + "n" + ], + [ + "▁l", + "an" + ], + [ + "▁", + "lan" + ], + [ + "▁Bar", + "cel" + ], + [ + "▁poison", + "ing" + ], + [ + "yl", + "l" + ], + [ + "y", + "ll" + ], + [ + "eda", + "r" + ], + [ + "ed", + "ar" + ], + [ + "▁horm", + "one" + ], + [ + "O", + "P" + ], + [ + "▁Trin", + "ity" + ], + [ + "▁Tr", + "inity" + ], + [ + "▁Mo", + "l" + ], + [ + "▁M", + "ol" + ], + [ + "th", + "ood" + ], + [ + "t", + "hood" + ], + [ + "▁survey", + "s" + ], + [ + "▁Ju", + "r" + ], + [ + "▁J", + "ur" + ], + [ + "▁Act", + "iv" + ], + [ + "▁sens", + "itivity" + ], + [ + "ime", + "r" + ], + [ + "im", + "er" + ], + [ + "i", + "mer" + ], + [ + "▁Tas", + "k" + ], + [ + "▁Ta", + "sk" + ], + [ + "▁T", + "ask" + ], + [ + "▁Gh", + "ost" + ], + [ + "▁delegate", + "s" + ], + [ + "▁deleg", + "ates" + ], + [ + "▁Ti", + "r" + ], + [ + "▁T", + "ir" + ], + [ + "com", + "mun" + ], + [ + "▁Gu", + "adal" + ], + [ + "▁research", + "er" + ], + [ + "▁researc", + "her" + ], + [ + "▁resear", + "cher" + ], + [ + "▁Fo", + "ster" + ], + [ + "▁F", + "oster" + ], + [ + "Wh", + "at" + ], + [ + "W", + "hat" + ], + [ + "▁Au", + "r" + ], + [ + "▁A", + "ur" + ], + [ + "▁Nas", + "s" + ], + [ + "▁Na", + "ss" + ], + [ + "▁N", + "ass" + ], + [ + "▁unit", + "ed" + ], + [ + "▁un", + "ited" + ], + [ + "▁Spring", + "field" + ], + [ + "▁reg", + "en" + ], + [ + "▁re", + "gen" + ], + [ + "▁maintain", + "s" + ], + [ + "▁main", + "tains" + ], + [ + "iod", + "iversity" + ], + [ + "▁U", + "m" + ], + [ + "▁Ra", + "f" + ], + [ + "▁R", + "af" + ], + [ + "▁Pas", + "c" + ], + [ + "▁Pa", + "sc" + ], + [ + "▁P", + "asc" + ], + [ + "▁Ott", + "awa" + ], + [ + "▁nutri", + "t" + ], + [ + "▁nut", + "rit" + ], + [ + "arth", + "y" + ], + [ + "art", + "hy" + ], + [ + "ar", + "thy" + ], + [ + "▁wood", + "s" + ], + [ + "▁equ", + "ation" + ], + [ + "▁Ri", + "v" + ], + [ + "▁R", + "iv" + ], + [ + "▁sw", + "all" + ], + [ + "▁s", + "wall" + ], + [ + "▁Jav", + "a" + ], + [ + "▁Ja", + "va" + ], + [ + "▁J", + "ava" + ], + [ + "▁spo", + "nt" + ], + [ + "▁sp", + "ont" + ], + [ + "▁He", + "aven" + ], + [ + "j", + "u" + ], + [ + "▁ag", + "ing" + ], + [ + "▁a", + "ging" + ], + [ + "▁", + "aging" + ], + [ + "▁mount", + "s" + ], + [ + "▁moun", + "ts" + ], + [ + "▁mo", + "unts" + ], + [ + "▁And", + "al" + ], + [ + "▁An", + "dal" + ], + [ + "▁tire", + "d" + ], + [ + "▁ti", + "red" + ], + [ + "▁t", + "ired" + ], + [ + "▁bed", + "s" + ], + [ + "▁be", + "ds" + ], + [ + "▁b", + "eds" + ], + [ + "▁far", + "t" + ], + [ + "▁f", + "art" + ], + [ + "book", + "s" + ], + [ + "b", + "ooks" + ], + [ + "▁mars", + "h" + ], + [ + "▁mar", + "sh" + ], + [ + "▁m", + "arsh" + ], + [ + "▁Spring", + "s" + ], + [ + "▁Spr", + "ings" + ], + [ + "▁wart", + "ime" + ], + [ + "▁war", + "time" + ], + [ + "▁resist", + "ant" + ], + [ + "▁res", + "istant" + ], + [ + "name", + "d" + ], + [ + "nam", + "ed" + ], + [ + "na", + "med" + ], + [ + "n", + "amed" + ], + [ + "▁unit", + "y" + ], + [ + "▁un", + "ity" + ], + [ + "▁galax", + "y" + ], + [ + "▁gal", + "axy" + ], + [ + "▁Wh", + "ich" + ], + [ + "▁department", + "s" + ], + [ + "▁depart", + "ments" + ], + [ + "▁dep", + "artments" + ], + [ + "▁ce", + "iling" + ], + [ + "▁aggreg", + "ate" + ], + [ + "▁batt", + "ed" + ], + [ + "▁bat", + "ted" + ], + [ + "▁guide", + "d" + ], + [ + "▁gu", + "ided" + ], + [ + "tee", + "s" + ], + [ + "te", + "es" + ], + [ + "t", + "ees" + ], + [ + "▁Fl", + "y" + ], + [ + "▁F", + "ly" + ], + [ + "▁cl", + "ip" + ], + [ + "▁--", + "--" + ], + [ + "▁-", + "---" + ], + [ + "▁", + "----" + ], + [ + "▁Mul", + "l" + ], + [ + "▁Mu", + "ll" + ], + [ + "▁M", + "ull" + ], + [ + "▁chor", + "d" + ], + [ + "▁cho", + "rd" + ], + [ + "▁ch", + "ord" + ], + [ + "▁infant", + "s" + ], + [ + "▁inf", + "ants" + ], + [ + "▁Bon", + "n" + ], + [ + "▁B", + "onn" + ], + [ + "▁mon", + "ster" + ], + [ + "▁Orchest", + "ra" + ], + [ + "▁preparation", + "s" + ], + [ + "▁prepar", + "ations" + ], + [ + "pl", + "ate" + ], + [ + "▁Tel", + "l" + ], + [ + "▁Te", + "ll" + ], + [ + "▁T", + "ell" + ], + [ + "▁li", + "on" + ], + [ + "▁l", + "ion" + ], + [ + "____", + "____" + ], + [ + "▁enable", + "s" + ], + [ + "▁en", + "ables" + ], + [ + "▁switch", + "ed" + ], + [ + "▁swit", + "ched" + ], + [ + "▁da", + "wn" + ], + [ + "▁d", + "awn" + ], + [ + "▁Columb", + "us" + ], + [ + "▁strengthen", + "ing" + ], + [ + "▁strength", + "ening" + ], + [ + "▁streng", + "thening" + ], + [ + "▁Bang", + "l" + ], + [ + "▁Ban", + "gl" + ], + [ + "▁assass", + "ination" + ], + [ + "▁dis", + "in" + ], + [ + "▁Am", + "azon" + ], + [ + "▁advers", + "e" + ], + [ + "▁adv", + "erse" + ], + [ + "▁ad", + "verse" + ], + [ + "▁ambit", + "ious" + ], + [ + "▁amb", + "itious" + ], + [ + "▁eth", + "ical" + ], + [ + "▁reven", + "ge" + ], + [ + "▁rev", + "enge" + ], + [ + "▁Polit", + "ical" + ], + [ + "▁public", + "ity" + ], + [ + "▁publ", + "icity" + ], + [ + "▁enzy", + "me" + ], + [ + "▁inc", + "ent" + ], + [ + "▁in", + "cent" + ], + [ + "▁rever", + "s" + ], + [ + "▁reve", + "rs" + ], + [ + "▁rev", + "ers" + ], + [ + "▁re", + "vers" + ], + [ + "▁11", + "7" + ], + [ + "▁1", + "17" + ], + [ + "▁Bre", + "ak" + ], + [ + "▁soil", + "s" + ], + [ + "▁so", + "ils" + ], + [ + "▁when", + "ever" + ], + [ + "fo", + "ot" + ], + [ + "f", + "oot" + ], + [ + "▁hat", + "ch" + ], + [ + "▁h", + "atch" + ], + [ + "▁cylind", + "er" + ], + [ + "▁cyl", + "inder" + ], + [ + "▁to", + "x" + ], + [ + "▁t", + "ox" + ], + [ + "▁box", + "es" + ], + [ + "▁A", + "A" + ], + [ + "▁", + "AA" + ], + [ + "▁pip", + "e" + ], + [ + "▁pi", + "pe" + ], + [ + "▁p", + "ipe" + ], + [ + "▁ret", + "rie" + ], + [ + "▁length", + "y" + ], + [ + "▁leng", + "thy" + ], + [ + "▁inters", + "ect" + ], + [ + "▁inter", + "sect" + ], + [ + "▁Com", + "e" + ], + [ + "▁Co", + "me" + ], + [ + "▁C", + "ome" + ], + [ + "▁submarine", + "s" + ], + [ + "▁submar", + "ines" + ], + [ + "ack", + "ing" + ], + [ + "ac", + "king" + ], + [ + "▁ar", + "ist" + ], + [ + "▁a", + "rist" + ], + [ + "▁centre", + "s" + ], + [ + "▁cent", + "res" + ], + [ + "▁fo", + "x" + ], + [ + "▁f", + "ox" + ], + [ + "▁dis", + "b" + ], + [ + "▁stal", + "l" + ], + [ + "▁st", + "all" + ], + [ + "▁cru", + "ise" + ], + [ + "▁direct", + "ing" + ], + [ + "▁shop", + "s" + ], + [ + "▁sh", + "ops" + ], + [ + "▁inaug", + "ural" + ], + [ + "arte", + "d" + ], + [ + "art", + "ed" + ], + [ + "ar", + "ted" + ], + [ + "or", + "o" + ], + [ + "o", + "ro" + ], + [ + "▁186", + "3" + ], + [ + "▁Is", + "le" + ], + [ + "▁near", + "est" + ], + [ + "▁ne", + "arest" + ], + [ + "▁Bear", + "s" + ], + [ + "▁Bea", + "rs" + ], + [ + "▁Be", + "ars" + ], + [ + "▁B", + "ears" + ], + [ + "▁pres", + "um" + ], + [ + "▁23", + "0" + ], + [ + "▁2", + "30" + ], + [ + "▁all", + "ied" + ], + [ + "▁al", + "lied" + ], + [ + "bu", + "l" + ], + [ + "b", + "ul" + ], + [ + "▁basic", + "ally" + ], + [ + "▁bas", + "ically" + ], + [ + ".", + "’" + ], + [ + "um", + "i" + ], + [ + "u", + "mi" + ], + [ + "▁Mu", + "t" + ], + [ + "▁M", + "ut" + ], + [ + "▁fac", + "ial" + ], + [ + "▁fa", + "cial" + ], + [ + "▁tim", + "ing" + ], + [ + "▁ti", + "ming" + ], + [ + "▁interact", + "ive" + ], + [ + "▁inter", + "active" + ], + [ + "▁flood", + "s" + ], + [ + "▁flo", + "ods" + ], + [ + "imin", + "ation" + ], + [ + "imi", + "nation" + ], + [ + "im", + "ination" + ], + [ + "▁av", + "iation" + ], + [ + "hal", + "l" + ], + [ + "ha", + "ll" + ], + [ + "h", + "all" + ], + [ + "▁bott", + "le" + ], + [ + "▁bot", + "tle" + ], + [ + "▁organ", + "ize" + ], + [ + "▁Nam", + "e" + ], + [ + "▁Na", + "me" + ], + [ + "▁N", + "ame" + ], + [ + "▁Ber", + "g" + ], + [ + "▁B", + "erg" + ], + [ + "▁Sur", + "v" + ], + [ + "▁northeast", + "ern" + ], + [ + "▁nort", + "heastern" + ], + [ + "O", + "D" + ], + [ + "▁Pri", + "ce" + ], + [ + "▁Pr", + "ice" + ], + [ + "▁P", + "rice" + ], + [ + "▁Fer", + "din" + ], + [ + "▁Vienn", + "a" + ], + [ + "▁Vi", + "enna" + ], + [ + "▁cap", + "ability" + ], + [ + "ag", + "i" + ], + [ + "a", + "gi" + ], + [ + "▁formation", + "s" + ], + [ + "▁format", + "ions" + ], + [ + "▁form", + "ations" + ], + [ + "y", + "t" + ], + [ + "▁Bas", + "s" + ], + [ + "▁Ba", + "ss" + ], + [ + "▁B", + "ass" + ], + [ + "▁de", + "er" + ], + [ + "▁pain", + "ful" + ], + [ + "▁advoc", + "ate" + ], + [ + "▁adv", + "ocate" + ], + [ + "ik", + "tè" + ], + [ + "i", + "ktè" + ], + [ + "▁product", + "ive" + ], + [ + "▁produ", + "ctive" + ], + [ + "▁G", + "M" + ], + [ + "▁", + "GM" + ], + [ + "▁Tru", + "e" + ], + [ + "▁Tr", + "ue" + ], + [ + "▁T", + "rue" + ], + [ + "▁Tom", + "my" + ], + [ + "▁coll", + "ision" + ], + [ + "▁pot", + "assium" + ], + [ + "▁Mo", + "m" + ], + [ + "▁M", + "om" + ], + [ + "cor", + "e" + ], + [ + "co", + "re" + ], + [ + "c", + "ore" + ], + [ + "▁ver", + "b" + ], + [ + "▁v", + "erb" + ], + [ + "action", + "s" + ], + [ + "act", + "ions" + ], + [ + "a", + "ctions" + ], + [ + "▁Mart", + "ha" + ], + [ + "▁Mar", + "tha" + ], + [ + "▁fit", + "ness" + ], + [ + "▁f", + "itness" + ], + [ + "▁description", + "s" + ], + [ + "▁descript", + "ions" + ], + [ + "▁des", + "criptions" + ], + [ + "▁cr", + "o" + ], + [ + "▁c", + "ro" + ], + [ + "▁mode", + "s" + ], + [ + "▁mod", + "es" + ], + [ + "▁mo", + "des" + ], + [ + "▁m", + "odes" + ], + [ + "▁Solo", + "mon" + ], + [ + "▁Sol", + "omon" + ], + [ + "▁retreat", + "ed" + ], + [ + "▁ret", + "reated" + ], + [ + "▁re", + "treated" + ], + [ + "in", + "qu" + ], + [ + "▁au", + "g" + ], + [ + "▁a", + "ug" + ], + [ + "▁", + "aug" + ], + [ + "▁Dec", + "l" + ], + [ + "▁De", + "cl" + ], + [ + "▁acc", + "us" + ], + [ + "▁lun", + "ch" + ], + [ + "▁l", + "unch" + ], + [ + "▁Dru", + "g" + ], + [ + "▁Dr", + "ug" + ], + [ + "▁D", + "rug" + ], + [ + "▁dig", + "n" + ], + [ + "▁di", + "gn" + ], + [ + "▁d", + "ign" + ], + [ + "U", + "n" + ], + [ + "ones", + "ans" + ], + [ + "▁fil", + "t" + ], + [ + "▁f", + "ilt" + ], + [ + "▁aid", + "ed" + ], + [ + "▁a", + "ided" + ], + [ + "ast", + "ing" + ], + [ + "as", + "ting" + ], + [ + "▁san", + "ct" + ], + [ + "bu", + "s" + ], + [ + "b", + "us" + ], + [ + "▁East", + "er" + ], + [ + "▁E", + "aster" + ], + [ + "▁Critic", + "al" + ], + [ + "▁Crit", + "ical" + ], + [ + "▁per", + "ipher" + ], + [ + "▁M", + "s" + ], + [ + "▁he", + "ter" + ], + [ + "▁h", + "eter" + ], + [ + "▁lung", + "s" + ], + [ + "▁lun", + "gs" + ], + [ + "▁rise", + "s" + ], + [ + "▁ris", + "es" + ], + [ + "▁ri", + "ses" + ], + [ + "▁r", + "ises" + ], + [ + "▁manage", + "s" + ], + [ + "▁manag", + "es" + ], + [ + "▁man", + "ages" + ], + [ + "▁Yugoslav", + "ia" + ], + [ + "amm", + "a" + ], + [ + "am", + "ma" + ], + [ + "▁gift", + "s" + ], + [ + "▁gif", + "ts" + ], + [ + "▁g", + "ifts" + ], + [ + "▁ruin", + "s" + ], + [ + "▁ru", + "ins" + ], + [ + "▁Bey", + "ond" + ], + [ + "▁conce", + "d" + ], + [ + "▁conc", + "ed" + ], + [ + "▁con", + "ced" + ], + [ + "ield", + "er" + ], + [ + "iel", + "der" + ], + [ + "▁popul", + "ated" + ], + [ + "▁pop", + "ulated" + ], + [ + "L", + "e" + ], + [ + "ko", + "ut" + ], + [ + "k", + "out" + ], + [ + "▁emb", + "ra" + ], + [ + "▁em", + "bra" + ], + [ + "▁Jak", + "e" + ], + [ + "▁Ja", + "ke" + ], + [ + "▁J", + "ake" + ], + [ + "▁z", + "inc" + ], + [ + "▁disc", + "l" + ], + [ + "▁dis", + "cl" + ], + [ + "▁rob", + "ust" + ], + [ + "▁Glas", + "s" + ], + [ + "▁Gl", + "ass" + ], + [ + "▁G", + "lass" + ], + [ + "▁un", + "anim" + ], + [ + "▁Broad", + "cast" + ], + [ + "▁emphasize", + "d" + ], + [ + "▁emphas", + "ized" + ], + [ + "ess", + "a" + ], + [ + "es", + "sa" + ], + [ + "house", + "s" + ], + [ + "hous", + "es" + ], + [ + "hou", + "ses" + ], + [ + "ho", + "uses" + ], + [ + "h", + "ouses" + ], + [ + "▁Patri", + "c" + ], + [ + "▁Pat", + "ric" + ], + [ + "▁lift", + "ed" + ], + [ + "▁lif", + "ted" + ], + [ + "▁l", + "ifted" + ], + [ + "▁relat", + "e" + ], + [ + "▁rel", + "ate" + ], + [ + "▁road", + "way" + ], + [ + "▁He", + "y" + ], + [ + "▁H", + "ey" + ], + [ + "▁Na", + "k" + ], + [ + "▁N", + "ak" + ], + [ + "▁Co", + "ol" + ], + [ + "▁C", + "ool" + ], + [ + "▁incon", + "s" + ], + [ + "▁inc", + "ons" + ], + [ + "▁in", + "cons" + ], + [ + "▁winner", + "s" + ], + [ + "▁win", + "ners" + ], + [ + "▁w", + "inners" + ], + [ + "▁Richards", + "on" + ], + [ + "▁Richard", + "son" + ], + [ + "9", + "8" + ], + [ + "ata", + "r" + ], + [ + "at", + "ar" + ], + [ + "a", + "tar" + ], + [ + "agne", + "tic" + ], + [ + "agn", + "etic" + ], + [ + "▁genu", + "ine" + ], + [ + "▁supp", + "ress" + ], + [ + "▁sup", + "press" + ], + [ + ".", + "2" + ], + [ + "▁reprodu", + "ctive" + ], + [ + "▁Ber", + "m" + ], + [ + "▁Be", + "rm" + ], + [ + "▁B", + "erm" + ], + [ + "head", + "s" + ], + [ + "hea", + "ds" + ], + [ + "he", + "ads" + ], + [ + "ung", + "le" + ], + [ + "▁S", + "ierra" + ], + [ + "▁sil", + "ence" + ], + [ + "▁ble", + "eding" + ], + [ + "▁Co", + "x" + ], + [ + "▁C", + "ox" + ], + [ + "▁Du", + "d" + ], + [ + "▁D", + "ud" + ], + [ + "▁sp", + "here" + ], + [ + "▁nurs", + "ing" + ], + [ + "orn", + "e" + ], + [ + "or", + "ne" + ], + [ + "▁fail", + "s" + ], + [ + "▁fa", + "ils" + ], + [ + "▁f", + "ails" + ], + [ + "▁st", + "uck" + ], + [ + "▁couple", + "d" + ], + [ + "▁coup", + "led" + ], + [ + "▁cou", + "pled" + ], + [ + "▁I", + "g" + ], + [ + "▁Qu", + "al" + ], + [ + "▁Q", + "ual" + ], + [ + "▁small", + "est" + ], + [ + "▁prob", + "ability" + ], + [ + "▁line", + "r" + ], + [ + "▁lin", + "er" + ], + [ + "▁li", + "ner" + ], + [ + "▁l", + "iner" + ], + [ + "▁serve", + "r" + ], + [ + "▁serv", + "er" + ], + [ + "▁ser", + "ver" + ], + [ + "▁s", + "erver" + ], + [ + "▁post", + "p" + ], + [ + "▁manufactur", + "e" + ], + [ + "▁manufact", + "ure" + ], + [ + "kin", + "d" + ], + [ + "ki", + "nd" + ], + [ + "k", + "ind" + ], + [ + "▁Malt", + "a" + ], + [ + "▁Mal", + "ta" + ], + [ + "in", + "us" + ], + [ + "▁Lee", + "ds" + ], + [ + "▁Le", + "eds" + ], + [ + "▁motiv", + "ated" + ], + [ + "▁mot", + "ivated" + ], + [ + "▁Bell", + "e" + ], + [ + "▁Bel", + "le" + ], + [ + "▁B", + "elle" + ], + [ + "▁Lake", + "s" + ], + [ + "▁Lak", + "es" + ], + [ + "▁La", + "kes" + ], + [ + "▁L", + "akes" + ], + [ + "▁explos", + "ive" + ], + [ + "▁key", + "s" + ], + [ + "▁ke", + "ys" + ], + [ + "▁fus", + "ion" + ], + [ + "▁f", + "usion" + ], + [ + "▁imagin", + "g" + ], + [ + "▁imag", + "ing" + ], + [ + "▁im", + "aging" + ], + [ + "V", + "A" + ], + [ + "pr", + "e" + ], + [ + "p", + "re" + ], + [ + "▁To", + "o" + ], + [ + "▁T", + "oo" + ], + [ + "▁Athlet", + "ic" + ], + [ + "s", + "l" + ], + [ + "▁ch", + "olesterol" + ], + [ + "▁na", + "s" + ], + [ + "▁n", + "as" + ], + [ + "▁", + "nas" + ], + [ + "▁ow", + "ing" + ], + [ + "▁o", + "wing" + ], + [ + "▁", + "owing" + ], + [ + "▁world", + "s" + ], + [ + "▁poss", + "ibilities" + ], + [ + "▁Ta", + "x" + ], + [ + "▁T", + "ax" + ], + [ + "▁Mil", + "an" + ], + [ + "▁Mi", + "lan" + ], + [ + "▁nucle", + "us" + ], + [ + "▁Mo", + "z" + ], + [ + "▁M", + "oz" + ], + [ + "▁Win", + "n" + ], + [ + "▁W", + "inn" + ], + [ + "▁kon", + "s" + ], + [ + "▁ko", + "ns" + ], + [ + "▁k", + "ons" + ], + [ + "▁2", + ":" + ], + [ + "▁sp", + "o" + ], + [ + "▁s", + "po" + ], + [ + "▁Spee", + "d" + ], + [ + "▁Spe", + "ed" + ], + [ + "▁Sp", + "eed" + ], + [ + "▁Let", + "t" + ], + [ + "▁Le", + "tt" + ], + [ + "▁L", + "ett" + ], + [ + "▁Mot", + "or" + ], + [ + "▁Mo", + "tor" + ], + [ + "▁on", + "wards" + ], + [ + "amin", + "ation" + ], + [ + "ami", + "nation" + ], + [ + "am", + "ination" + ], + [ + "▁barrier", + "s" + ], + [ + "▁bar", + "riers" + ], + [ + "ater", + "al" + ], + [ + "ate", + "ral" + ], + [ + "at", + "eral" + ], + [ + "▁summar", + "y" + ], + [ + "▁summ", + "ary" + ], + [ + "▁product", + "ivity" + ], + [ + "▁tu", + "t" + ], + [ + "▁t", + "ut" + ], + [ + "ptic", + "al" + ], + [ + "pt", + "ical" + ], + [ + "▁southwest", + "ern" + ], + [ + "▁south", + "western" + ], + [ + "H", + "e" + ], + [ + "bird", + "s" + ], + [ + "▁magn", + "et" + ], + [ + "▁mag", + "net" + ], + [ + "ona", + "l" + ], + [ + "on", + "al" + ], + [ + "o", + "nal" + ], + [ + "▁trib", + "ut" + ], + [ + "▁tri", + "but" + ], + [ + "▁Glas", + "gow" + ], + [ + "▁Norman", + "dy" + ], + [ + "▁Norm", + "andy" + ], + [ + "lev", + "el" + ], + [ + "le", + "vel" + ], + [ + "▁present", + "ing" + ], + [ + "▁Her", + "n" + ], + [ + "▁H", + "ern" + ], + [ + "▁res", + "ort" + ], + [ + "▁success", + "ive" + ], + [ + "▁succ", + "essive" + ], + [ + "▁seg", + "reg" + ], + [ + "▁se", + "greg" + ], + [ + "▁trade", + "m" + ], + [ + "▁trad", + "em" + ], + [ + "▁tra", + "dem" + ], + [ + "▁media", + "n" + ], + [ + "▁medi", + "an" + ], + [ + "▁med", + "ian" + ], + [ + "▁gall", + "ery" + ], + [ + "▁rom", + "ance" + ], + [ + "oma", + "l" + ], + [ + "om", + "al" + ], + [ + "o", + "mal" + ], + [ + "▁Ma", + "il" + ], + [ + "▁M", + "ail" + ], + [ + "▁glob", + "e" + ], + [ + "▁gl", + "obe" + ], + [ + "▁reb", + "el" + ], + [ + "▁re", + "bel" + ], + [ + "▁Herm", + "an" + ], + [ + "▁Her", + "man" + ], + [ + "▁H", + "erman" + ], + [ + "▁coach", + "es" + ], + [ + "▁co", + "aches" + ], + [ + "▁drawing", + "s" + ], + [ + "▁draw", + "ings" + ], + [ + "▁reluct", + "ant" + ], + [ + "▁Bel", + "ie" + ], + [ + "▁Be", + "lie" + ], + [ + "▁reh", + "abil" + ], + [ + "▁Jenn", + "ifer" + ], + [ + "▁(1", + "0" + ], + [ + "▁(", + "10" + ], + [ + "tra", + "ns" + ], + [ + "tr", + "ans" + ], + [ + "t", + "rans" + ], + [ + "▁188", + "7" + ], + [ + "▁18", + "87" + ], + [ + "▁Ad", + "ela" + ], + [ + "▁tro", + "op" + ], + [ + "▁tr", + "oop" + ], + [ + "ator", + "ies" + ], + [ + "ato", + "ries" + ], + [ + "at", + "ories" + ], + [ + "3", + ")" + ], + [ + "▁fee", + "s" + ], + [ + "▁fe", + "es" + ], + [ + "▁f", + "ees" + ], + [ + "▁disp", + "ar" + ], + [ + "▁dis", + "par" + ], + [ + "▁Del", + "hi" + ], + [ + "▁phys", + "ic" + ], + [ + "aru", + "s" + ], + [ + "ar", + "us" + ], + [ + "a", + "rus" + ], + [ + "B", + "rien" + ], + [ + "▁num", + "er" + ], + [ + "▁nu", + "mer" + ], + [ + "▁n", + "umer" + ], + [ + "▁board", + "s" + ], + [ + "▁bo", + "ards" + ], + [ + "▁", + "boards" + ], + [ + "ust", + "ain" + ], + [ + "us", + "tain" + ], + [ + "▁Cat", + "al" + ], + [ + "▁Ca", + "tal" + ], + [ + "▁C", + "atal" + ], + [ + "▁indo", + "or" + ], + [ + "▁ind", + "oor" + ], + [ + "▁request", + "s" + ], + [ + "▁requ", + "ests" + ], + [ + "▁investigation", + "s" + ], + [ + "▁investig", + "ations" + ], + [ + "▁sur", + "g" + ], + [ + "▁s", + "urg" + ], + [ + "▁refuse", + "s" + ], + [ + "▁ref", + "uses" + ], + [ + "▁prompt", + "ing" + ], + [ + "▁custom", + "s" + ], + [ + "▁cust", + "oms" + ], + [ + "▁Wi", + "t" + ], + [ + "▁W", + "it" + ], + [ + "▁Ne", + "ed" + ], + [ + "▁N", + "eed" + ], + [ + "▁under", + "m" + ], + [ + "▁unde", + "rm" + ], + [ + "▁und", + "erm" + ], + [ + "▁relie", + "ve" + ], + [ + "▁deploy", + "ment" + ], + [ + "▁188", + "6" + ], + [ + "▁18", + "86" + ], + [ + "u", + "um" + ], + [ + "▁rel", + "ay" + ], + [ + "▁re", + "lay" + ], + [ + "▁Dun", + "can" + ], + [ + "▁lar", + "vae" + ], + [ + "▁miss", + "ile" + ], + [ + "▁Operation", + "s" + ], + [ + "▁Oper", + "ations" + ], + [ + "od", + "ic" + ], + [ + "▁attach", + "ment" + ], + [ + "▁att", + "achment" + ], + [ + "▁mode", + "r" + ], + [ + "▁mod", + "er" + ], + [ + "▁mo", + "der" + ], + [ + "▁m", + "oder" + ], + [ + "▁Anim", + "al" + ], + [ + "▁An", + "imal" + ], + [ + "▁cancel", + "ed" + ], + [ + "▁canc", + "eled" + ], + [ + "▁Dev", + "il" + ], + [ + "▁De", + "vil" + ], + [ + "▁talk", + "ed" + ], + [ + "vo", + "l" + ], + [ + "v", + "ol" + ], + [ + "▁Ant", + "o" + ], + [ + "▁An", + "to" + ], + [ + "▁Hu", + "ll" + ], + [ + "▁H", + "ull" + ], + [ + "▁sexual", + "ly" + ], + [ + "▁sex", + "ually" + ], + [ + "▁Dr", + "y" + ], + [ + "▁D", + "ry" + ], + [ + "▁Tru", + "th" + ], + [ + "▁Tr", + "uth" + ], + [ + "▁pron", + "e" + ], + [ + "▁pro", + "ne" + ], + [ + "▁pr", + "one" + ], + [ + "▁point", + "ing" + ], + [ + "▁voc", + "abulary" + ], + [ + "Do", + "wn" + ], + [ + "D", + "own" + ], + [ + "cean", + "s" + ], + [ + "ce", + "ans" + ], + [ + "▁deg", + "en" + ], + [ + "▁de", + "gen" + ], + [ + "▁af", + "raid" + ], + [ + "▁fore", + "ver" + ], + [ + "▁for", + "ever" + ], + [ + "▁advocate", + "d" + ], + [ + "▁advoc", + "ated" + ], + [ + "▁adv", + "ocated" + ], + [ + "▁rem", + "inis" + ], + [ + "▁armour", + "ed" + ], + [ + "▁arm", + "oured" + ], + [ + "▁surpris", + "ing" + ], + [ + "▁fort", + "ifications" + ], + [ + "▁bank", + "rupt" + ], + [ + "▁Mill", + "ennium" + ], + [ + "▁D", + "h" + ], + [ + "▁Stud", + "ent" + ], + [ + "ff", + "e" + ], + [ + "f", + "fe" + ], + [ + "▁car", + "n" + ], + [ + "▁c", + "arn" + ], + [ + "▁Alban", + "y" + ], + [ + "▁Alb", + "any" + ], + [ + "▁un", + "aware" + ], + [ + "▁cert", + "ific" + ], + [ + "▁eight", + "een" + ], + [ + "co", + "r" + ], + [ + "c", + "or" + ], + [ + "▁h", + "iding" + ], + [ + "▁skill", + "ed" + ], + [ + "▁ski", + "lled" + ], + [ + "▁sk", + "illed" + ], + [ + "ier", + "re" + ], + [ + "▁ce", + "ase" + ], + [ + "▁Shi", + "eld" + ], + [ + "▁Sh", + "ield" + ], + [ + "▁provide", + "r" + ], + [ + "▁prov", + "ider" + ], + [ + "▁Th", + "urs" + ], + [ + "▁analyze", + "d" + ], + [ + "▁analy", + "zed" + ], + [ + "mit", + "t" + ], + [ + "mi", + "tt" + ], + [ + "m", + "itt" + ], + [ + "▁Pl", + "at" + ], + [ + "▁Colle", + "ct" + ], + [ + "▁Coll", + "ect" + ], + [ + "▁Col", + "lect" + ], + [ + "▁touchdown", + "s" + ], + [ + "è", + "b" + ], + [ + "▁Col", + "in" + ], + [ + "▁Co", + "lin" + ], + [ + "▁C", + "olin" + ], + [ + "unc", + "iation" + ], + [ + "▁ecosystem", + "s" + ], + [ + "▁M", + "A" + ], + [ + "▁", + "MA" + ], + [ + "bon", + "e" + ], + [ + "bo", + "ne" + ], + [ + "b", + "one" + ], + [ + "ili", + "s" + ], + [ + "il", + "is" + ], + [ + "i", + "lis" + ], + [ + "▁fat", + "igue" + ], + [ + "▁Im", + "ag" + ], + [ + "▁bl", + "ame" + ], + [ + "▁Pow", + "ell" + ], + [ + "▁Po", + "well" + ], + [ + "▁Vl", + "ad" + ], + [ + "▁le", + "ns" + ], + [ + "▁l", + "ens" + ], + [ + "▁log", + "o" + ], + [ + "▁lo", + "go" + ], + [ + "▁l", + "ogo" + ], + [ + "▁nou", + "n" + ], + [ + "▁no", + "un" + ], + [ + "▁n", + "oun" + ], + [ + "▁instruct", + "ed" + ], + [ + "ij", + "yon" + ], + [ + "▁C", + "T" + ], + [ + "asure", + "s" + ], + [ + "as", + "ures" + ], + [ + "▁Oper", + "a" + ], + [ + "▁Op", + "era" + ], + [ + "▁enzyme", + "s" + ], + [ + "▁enzy", + "mes" + ], + [ + "▁S", + "A" + ], + [ + "▁", + "SA" + ], + [ + "▁Dra", + "ke" + ], + [ + "▁Dr", + "ake" + ], + [ + "▁Example", + "s" + ], + [ + "▁Exam", + "ples" + ], + [ + "▁depict", + "ion" + ], + [ + "▁depi", + "ction" + ], + [ + "▁dep", + "iction" + ], + [ + "▁75", + "0" + ], + [ + "▁7", + "50" + ], + [ + "▁Hend", + "erson" + ], + [ + "▁Conv", + "ers" + ], + [ + "▁Con", + "vers" + ], + [ + "▁Kl", + "e" + ], + [ + "▁K", + "le" + ], + [ + "▁athlet", + "ic" + ], + [ + "▁sub", + "ordin" + ], + [ + "▁Sout", + "heast" + ], + [ + "▁break", + "down" + ], + [ + "▁C", + "A" + ], + [ + "▁", + "CA" + ], + [ + "▁Re", + "ar" + ], + [ + "▁R", + "ear" + ], + [ + "▁en", + "abling" + ], + [ + "oc", + "ese" + ], + [ + "▁Sto", + "ries" + ], + [ + "▁St", + "ories" + ], + [ + "▁Barcel", + "ona" + ], + [ + "▁J", + "a" + ], + [ + "▁Ga", + "z" + ], + [ + "▁G", + "az" + ], + [ + "▁Wood", + "s" + ], + [ + "▁gluc", + "ose" + ], + [ + "▁uncertain", + "ty" + ], + [ + "istan", + "ce" + ], + [ + "ista", + "nce" + ], + [ + "ist", + "ance" + ], + [ + "▁place", + "ment" + ], + [ + "▁plac", + "ement" + ], + [ + "ola", + "n" + ], + [ + "ol", + "an" + ], + [ + "o", + "lan" + ], + [ + "▁E", + "agle" + ], + [ + "▁explicit", + "ly" + ], + [ + "iv", + "ic" + ], + [ + "i", + "vic" + ], + [ + "▁max", + "im" + ], + [ + "▁akt", + "ris" + ], + [ + "▁firm", + "s" + ], + [ + "▁f", + "irms" + ], + [ + "▁Angel", + "ou" + ], + [ + "▁develop", + "er" + ], + [ + "▁187", + "5" + ], + [ + "▁18", + "75" + ], + [ + "▁Not", + "hing" + ], + [ + "▁No", + "thing" + ], + [ + "▁N", + "othing" + ], + [ + "▁bol", + "d" + ], + [ + "▁bo", + "ld" + ], + [ + "▁b", + "old" + ], + [ + "▁Tor", + "res" + ], + [ + "▁I", + "D" + ], + [ + "▁", + "ID" + ], + [ + "á", + "s" + ], + [ + "▁Hi", + "g" + ], + [ + "▁H", + "ig" + ], + [ + "▁ec", + "l" + ], + [ + "▁e", + "cl" + ], + [ + "▁Bea", + "r" + ], + [ + "▁Be", + "ar" + ], + [ + "▁B", + "ear" + ], + [ + "▁da", + "ns" + ], + [ + "▁d", + "ans" + ], + [ + "▁Form", + "er" + ], + [ + "▁For", + "mer" + ], + [ + "▁plant", + "ing" + ], + [ + "▁plan", + "ting" + ], + [ + "▁Elect", + "ronic" + ], + [ + "▁é", + "p" + ], + [ + "ali", + "d" + ], + [ + "al", + "id" + ], + [ + "ung", + "e" + ], + [ + "un", + "ge" + ], + [ + "▁16", + "6" + ], + [ + "▁1", + "66" + ], + [ + "ari", + "ty" + ], + [ + "ar", + "ity" + ], + [ + "▁tension", + "s" + ], + [ + "▁tens", + "ions" + ], + [ + "▁t", + "ensions" + ], + [ + "▁k", + "onesans" + ], + [ + "▁struggle", + "s" + ], + [ + "▁strugg", + "les" + ], + [ + "▁j", + "am" + ], + [ + "▁cra", + "n" + ], + [ + "▁cr", + "an" + ], + [ + "▁c", + "ran" + ], + [ + "▁Jul", + "ie" + ], + [ + "▁Ju", + "lie" + ], + [ + "▁curve", + "s" + ], + [ + "▁cur", + "ves" + ], + [ + "▁activate", + "d" + ], + [ + "▁activ", + "ated" + ], + [ + "▁act", + "ivated" + ], + [ + "S", + "h" + ], + [ + "▁Wal", + "d" + ], + [ + "▁Wa", + "ld" + ], + [ + "▁W", + "ald" + ], + [ + "▁Sta", + "lin" + ], + [ + "▁St", + "alin" + ], + [ + "▁Ki", + "n" + ], + [ + "▁K", + "in" + ], + [ + "▁A", + "u" + ], + [ + "▁O", + "w" + ], + [ + "▁Ell", + "en" + ], + [ + "▁El", + "len" + ], + [ + "▁emerg", + "e" + ], + [ + "▁emer", + "ge" + ], + [ + "▁volcan", + "o" + ], + [ + "▁mistake", + "s" + ], + [ + "▁mist", + "akes" + ], + [ + "ove", + "d" + ], + [ + "ov", + "ed" + ], + [ + "o", + "ved" + ], + [ + "▁ly", + "mph" + ], + [ + "▁shoe", + "s" + ], + [ + "▁sh", + "oes" + ], + [ + "▁Col", + "omb" + ], + [ + "▁floor", + "s" + ], + [ + "▁flo", + "ors" + ], + [ + "▁expense", + "s" + ], + [ + "▁exp", + "enses" + ], + [ + "▁Alma", + "n" + ], + [ + "▁Alm", + "an" + ], + [ + "▁Al", + "man" + ], + [ + "▁Bo", + "d" + ], + [ + "▁B", + "od" + ], + [ + "▁Cel", + "l" + ], + [ + "▁Ce", + "ll" + ], + [ + "▁C", + "ell" + ], + [ + "▁test", + "imony" + ], + [ + "▁Po", + "e" + ], + [ + "▁P", + "oe" + ], + [ + "▁gener", + "a" + ], + [ + "▁gene", + "ra" + ], + [ + "▁gen", + "era" + ], + [ + "▁lay", + "ing" + ], + [ + "▁la", + "ying" + ], + [ + "▁l", + "aying" + ], + [ + "▁harb", + "or" + ], + [ + "▁har", + "bor" + ], + [ + "▁categ", + "or" + ], + [ + "▁Ch", + "i" + ], + [ + "▁C", + "hi" + ], + [ + "▁Ce", + "na" + ], + [ + "▁C", + "ena" + ], + [ + "▁dread", + "n" + ], + [ + "▁telesc", + "ope" + ], + [ + "▁16", + "7" + ], + [ + "▁1", + "67" + ], + [ + "▁coal", + "ition" + ], + [ + "▁Ga", + "t" + ], + [ + "▁G", + "at" + ], + [ + "▁187", + "6" + ], + [ + "▁18", + "76" + ], + [ + "▁pos", + "e" + ], + [ + "▁po", + "se" + ], + [ + "▁p", + "ose" + ], + [ + "▁contem", + "por" + ], + [ + "▁Go", + "r" + ], + [ + "▁G", + "or" + ], + [ + "▁Mill", + "s" + ], + [ + "▁Mil", + "ls" + ], + [ + "▁M", + "ills" + ], + [ + "▁gre", + "et" + ], + [ + "▁g", + "reet" + ], + [ + "▁Ast", + "ron" + ], + [ + "▁j", + "an" + ], + [ + "▁", + "jan" + ], + [ + "▁lack", + "s" + ], + [ + "▁lac", + "ks" + ], + [ + "▁l", + "acks" + ], + [ + "▁nest", + "s" + ], + [ + "▁ne", + "sts" + ], + [ + "▁n", + "ests" + ], + [ + "ak", + "u" + ], + [ + "roll", + "ing" + ], + [ + "rol", + "ling" + ], + [ + "▁career", + "s" + ], + [ + "▁care", + "ers" + ], + [ + "▁finger", + "s" + ], + [ + "▁fing", + "ers" + ], + [ + "▁fin", + "gers" + ], + [ + "li", + "a" + ], + [ + "l", + "ia" + ], + [ + "here", + "s" + ], + [ + "her", + "es" + ], + [ + "he", + "res" + ], + [ + "h", + "eres" + ], + [ + "▁Bri", + "s" + ], + [ + "▁Br", + "is" + ], + [ + "▁B", + "ris" + ], + [ + "amin", + "s" + ], + [ + "ami", + "ns" + ], + [ + "am", + "ins" + ], + [ + "▁Mar", + "l" + ], + [ + "▁g", + "olf" + ], + [ + "▁alloc", + "ated" + ], + [ + "▁all", + "ocated" + ], + [ + "▁Mon", + "roe" + ], + [ + "▁har", + "ass" + ], + [ + "▁Hop", + "kins" + ], + [ + "pt", + "om" + ], + [ + "▁tend", + "ed" + ], + [ + "▁ten", + "ded" + ], + [ + "▁t", + "ended" + ], + [ + "▁Se", + "bast" + ], + [ + "▁jump", + "ing" + ], + [ + "▁Bri", + "d" + ], + [ + "▁Br", + "id" + ], + [ + "▁B", + "rid" + ], + [ + "▁doc", + "k" + ], + [ + "▁do", + "ck" + ], + [ + "▁d", + "ock" + ], + [ + "▁bit", + "e" + ], + [ + "▁bi", + "te" + ], + [ + "▁b", + "ite" + ], + [ + "▁drink", + "s" + ], + [ + "▁dr", + "inks" + ], + [ + "▁load", + "ing" + ], + [ + "▁lo", + "ading" + ], + [ + "▁coast", + "line" + ], + [ + "hen", + "d" + ], + [ + "he", + "nd" + ], + [ + "h", + "end" + ], + [ + "▁A", + "aron" + ], + [ + "▁bee", + "t" + ], + [ + "▁be", + "et" + ], + [ + "raine", + "d" + ], + [ + "rain", + "ed" + ], + [ + "ra", + "ined" + ], + [ + "r", + "ained" + ], + [ + "▁util", + "ity" + ], + [ + "▁ut", + "ility" + ], + [ + "▁D", + "ictionary" + ], + [ + "▁Ko", + "l" + ], + [ + "▁K", + "ol" + ], + [ + "▁ce", + "l" + ], + [ + "▁c", + "el" + ], + [ + "▁", + "cel" + ], + [ + "▁Sto", + "re" + ], + [ + "▁St", + "ore" + ], + [ + "▁code", + "s" + ], + [ + "▁cod", + "es" + ], + [ + "▁co", + "des" + ], + [ + "▁c", + "odes" + ], + [ + "▁list", + "ing" + ], + [ + "▁l", + "isting" + ], + [ + "ru", + "it" + ], + [ + "r", + "uit" + ], + [ + "▁submer", + "ged" + ], + [ + "▁Fem", + "ale" + ], + [ + "▁Hol", + "mes" + ], + [ + "▁dispute", + "d" + ], + [ + "▁disp", + "uted" + ], + [ + "▁p", + "H" + ], + [ + "th", + "on" + ], + [ + "sc", + "ale" + ], + [ + "▁Chi", + "n" + ], + [ + "▁Ch", + "in" + ], + [ + "▁C", + "hin" + ], + [ + "▁ride", + "r" + ], + [ + "▁rid", + "er" + ], + [ + "▁ri", + "der" + ], + [ + "▁r", + "ider" + ], + [ + "▁consequ", + "ently" + ], + [ + "▁con", + "sequently" + ], + [ + "it", + "us" + ], + [ + "▁go", + "ver" + ], + [ + "▁g", + "over" + ], + [ + "▁fract", + "ion" + ], + [ + "▁fra", + "ction" + ], + [ + "▁fr", + "action" + ], + [ + "▁f", + "raction" + ], + [ + "enn", + "e" + ], + [ + "en", + "ne" + ], + [ + "▁Tw", + "enty" + ], + [ + "▁priest", + "s" + ], + [ + "▁pri", + "ests" + ], + [ + "F", + "ig" + ], + [ + "vo", + "r" + ], + [ + "v", + "or" + ], + [ + "▁Of", + "ten" + ], + [ + "▁O", + "ften" + ], + [ + "▁cab", + "in" + ], + [ + "▁ca", + "bin" + ], + [ + "umber", + "ed" + ], + [ + "umb", + "ered" + ], + [ + "▁unre", + "st" + ], + [ + "▁un", + "rest" + ], + [ + "▁respect", + "ed" + ], + [ + "▁resp", + "ected" + ], + [ + "ã", + "o" + ], + [ + "▁rev", + "ol" + ], + [ + "▁re", + "vol" + ], + [ + "▁spore", + "s" + ], + [ + "▁spor", + "es" + ], + [ + "▁spo", + "res" + ], + [ + "▁sp", + "ores" + ], + [ + "▁integr", + "ity" + ], + [ + "▁pres", + "idency" + ], + [ + "▁roll", + "ing" + ], + [ + "▁", + "rolling" + ], + [ + "▁int", + "im" + ], + [ + "▁inher", + "it" + ], + [ + "▁dispute", + "s" + ], + [ + "▁disp", + "utes" + ], + [ + "▁infl", + "ation" + ], + [ + "▁inf", + "lation" + ], + [ + "▁stat", + "istical" + ], + [ + "▁La", + "v" + ], + [ + "▁L", + "av" + ], + [ + "fl", + "ies" + ], + [ + "f", + "lies" + ], + [ + "▁Mos", + "es" + ], + [ + "▁Mo", + "ses" + ], + [ + "▁M", + "oses" + ], + [ + "▁regiment", + "s" + ], + [ + "▁reg", + "iments" + ], + [ + "▁championship", + "s" + ], + [ + "▁champions", + "hips" + ], + [ + "ur", + "u" + ], + [ + "u", + "ru" + ], + [ + "imi", + "r" + ], + [ + "im", + "ir" + ], + [ + "i", + "mir" + ], + [ + "▁presc", + "ribed" + ], + [ + "▁pres", + "cribed" + ], + [ + "▁Sh", + "a" + ], + [ + "▁S", + "ha" + ], + [ + "▁catal", + "y" + ], + [ + "▁cat", + "aly" + ], + [ + "▁The", + "ater" + ], + [ + "▁Ben", + "e" + ], + [ + "▁Be", + "ne" + ], + [ + "▁B", + "ene" + ], + [ + "▁neighbor", + "ing" + ], + [ + "▁neighb", + "oring" + ], + [ + "▁delay", + "s" + ], + [ + "▁del", + "ays" + ], + [ + "R", + "T" + ], + [ + "mat", + "ic" + ], + [ + "ma", + "tic" + ], + [ + "m", + "atic" + ], + [ + "▁Ke", + "pler" + ], + [ + "▁govern", + "ing" + ], + [ + "▁gover", + "ning" + ], + [ + "▁parameter", + "s" + ], + [ + "▁param", + "eters" + ], + [ + "▁philosoph", + "ical" + ], + [ + "▁cyl", + "ind" + ], + [ + "▁dist", + "ress" + ], + [ + "▁Hu", + "bb" + ], + [ + "▁H", + "ubb" + ], + [ + "▁cal", + "ories" + ], + [ + "oh", + "yd" + ], + [ + "o", + "hyd" + ], + [ + "oto", + "n" + ], + [ + "ot", + "on" + ], + [ + "o", + "ton" + ], + [ + "▁Jama", + "ica" + ], + [ + "▁pand", + "emic" + ], + [ + "▁acclaim", + "ed" + ], + [ + "▁ac", + "claimed" + ], + [ + "▁comprise", + "s" + ], + [ + "▁compris", + "es" + ], + [ + "▁com", + "prises" + ], + [ + "▁incomp", + "lete" + ], + [ + "▁incom", + "plete" + ], + [ + "▁Hel", + "p" + ], + [ + "▁interview", + "ed" + ], + [ + "▁hang", + "ing" + ], + [ + "▁resign", + "ation" + ], + [ + "ö", + "r" + ], + [ + "▁row", + "s" + ], + [ + "▁r", + "ows" + ], + [ + "▁", + "rows" + ], + [ + "▁Gro", + "ve" + ], + [ + "▁Gr", + "ove" + ], + [ + "▁subst", + "it" + ], + [ + "▁sub", + "stit" + ], + [ + "og", + "g" + ], + [ + "o", + "gg" + ], + [ + "▁Univers", + "e" + ], + [ + "▁dec", + "iding" + ], + [ + "▁Heavy", + "weight" + ], + [ + "ira", + "ble" + ], + [ + "ir", + "able" + ], + [ + "▁night", + "s" + ], + [ + "▁n", + "ights" + ], + [ + "▁weigh", + "ed" + ], + [ + "▁we", + "ighed" + ], + [ + "▁Phillip", + "s" + ], + [ + "▁Phill", + "ips" + ], + [ + "▁Pre", + "vention" + ], + [ + "▁cl", + "an" + ], + [ + "▁c", + "lan" + ], + [ + "▁Pat", + "h" + ], + [ + "▁Pa", + "th" + ], + [ + "▁P", + "ath" + ], + [ + "▁Tint", + "in" + ], + [ + "▁Diam", + "ond" + ], + [ + "▁", + "Đ" + ], + [ + "▁ar", + "ise" + ], + [ + "▁a", + "rise" + ], + [ + "▁run", + "ner" + ], + [ + "▁Ty", + "phoon" + ], + [ + "▁amend", + "ment" + ], + [ + "▁am", + "endment" + ], + [ + "amp", + "a" + ], + [ + "am", + "pa" + ], + [ + "▁Ide", + "nt" + ], + [ + "▁Id", + "ent" + ], + [ + "▁open", + "ly" + ], + [ + "▁commer", + "ce" + ], + [ + "▁dis", + "abilities" + ], + [ + "ate", + "m" + ], + [ + "at", + "em" + ], + [ + "▁Ne", + "g" + ], + [ + "▁N", + "eg" + ], + [ + "▁sl", + "e" + ], + [ + "▁s", + "le" + ], + [ + "▁Isle", + "s" + ], + [ + "▁Is", + "les" + ], + [ + "▁Sta", + "ge" + ], + [ + "▁St", + "age" + ], + [ + "▁S", + "tage" + ], + [ + "▁gu", + "ess" + ], + [ + "▁torpedo", + "es" + ], + [ + "▁torped", + "oes" + ], + [ + "▁X", + "I" + ], + [ + "iot", + "ic" + ], + [ + "io", + "tic" + ], + [ + "i", + "otic" + ], + [ + "▁fl", + "ies" + ], + [ + "▁f", + "lies" + ], + [ + "▁", + "flies" + ], + [ + "▁venue", + "s" + ], + [ + "▁ven", + "ues" + ], + [ + "▁pibl", + "ikasyon" + ], + [ + "ission", + "ed" + ], + [ + "iss", + "ioned" + ], + [ + "▁in", + "quiry" + ], + [ + "▁mistake", + "n" + ], + [ + "▁mist", + "aken" + ], + [ + "▁dimension", + "al" + ], + [ + "▁dimens", + "ional" + ], + [ + "▁d", + "imensional" + ], + [ + "▁", + "dimensional" + ], + [ + "▁Cit", + "iz" + ], + [ + "zen", + "s" + ], + [ + "ze", + "ns" + ], + [ + "z", + "ens" + ], + [ + "ott", + "o" + ], + [ + "ot", + "to" + ], + [ + "▁Lu", + "ft" + ], + [ + "▁Sc", + "reen" + ], + [ + "▁den", + "omin" + ], + [ + "▁Ben", + "t" + ], + [ + "▁Be", + "nt" + ], + [ + "▁B", + "ent" + ], + [ + "ring", + "ton" + ], + [ + "r", + "ington" + ], + [ + "pha", + "l" + ], + [ + "ph", + "al" + ], + [ + "p", + "hal" + ], + [ + "▁studio", + "s" + ], + [ + "▁stud", + "ios" + ], + [ + "▁moment", + "um" + ], + [ + "▁toler", + "ance" + ], + [ + "ul", + "i" + ], + [ + "u", + "li" + ], + [ + "▁Lauren", + "t" + ], + [ + "▁Laure", + "nt" + ], + [ + "▁Laur", + "ent" + ], + [ + "▁Oliv", + "ier" + ], + [ + "avi", + "l" + ], + [ + "av", + "il" + ], + [ + "a", + "vil" + ], + [ + "▁Ch", + "a" + ], + [ + "▁C", + "ha" + ], + [ + "▁spe", + "rm" + ], + [ + "▁sp", + "erm" + ], + [ + "▁merchant", + "s" + ], + [ + "▁merch", + "ants" + ], + [ + "▁pose", + "d" + ], + [ + "▁pos", + "ed" + ], + [ + "▁p", + "osed" + ], + [ + "▁diet", + "ary" + ], + [ + "▁di", + "etary" + ], + [ + "▁McC", + "arthy" + ], + [ + "▁reverse", + "d" + ], + [ + "▁revers", + "ed" + ], + [ + "▁rev", + "ersed" + ], + [ + "▁Brun", + "o" + ], + [ + "▁Bru", + "no" + ], + [ + "▁clot", + "h" + ], + [ + "▁clo", + "th" + ], + [ + "▁cl", + "oth" + ], + [ + "▁Prim", + "ary" + ], + [ + "5", + "5" + ], + [ + "oh", + "n" + ], + [ + "o", + "hn" + ], + [ + "▁Sto", + "p" + ], + [ + "▁St", + "op" + ], + [ + "▁S", + "top" + ], + [ + "▁bi", + "as" + ], + [ + "▁b", + "ias" + ], + [ + "arr", + "ass" + ], + [ + "▁modification", + "s" + ], + [ + "▁mod", + "ifications" + ], + [ + "rip", + "p" + ], + [ + "ri", + "pp" + ], + [ + "r", + "ipp" + ], + [ + "uit", + "y" + ], + [ + "ui", + "ty" + ], + [ + "u", + "ity" + ], + [ + "▁n", + "aked" + ], + [ + "▁dream", + "s" + ], + [ + "▁contin", + "g" + ], + [ + "▁cont", + "ing" + ], + [ + "▁con", + "ting" + ], + [ + "▁lyric", + "al" + ], + [ + "▁lyr", + "ical" + ], + [ + "▁ly", + "rical" + ], + [ + "▁address", + "es" + ], + [ + "▁add", + "resses" + ], + [ + "ma", + "l" + ], + [ + "m", + "al" + ], + [ + "▁188", + "4" + ], + [ + "▁average", + "d" + ], + [ + "▁aver", + "aged" + ], + [ + "ens", + "ing" + ], + [ + "▁Met", + "eor" + ], + [ + "▁bur", + "st" + ], + [ + "▁b", + "urst" + ], + [ + "▁induct", + "ed" + ], + [ + "▁Bulgaria", + "n" + ], + [ + "▁Bulgar", + "ian" + ], + [ + "P", + "C" + ], + [ + "▁o", + "k" + ], + [ + "▁", + "ok" + ], + [ + "▁Po", + "n" + ], + [ + "▁P", + "on" + ], + [ + "The", + "re" + ], + [ + "Th", + "ere" + ], + [ + "T", + "here" + ], + [ + "ver", + "age" + ], + [ + "ve", + "rage" + ], + [ + "▁real", + "m" + ], + [ + "▁re", + "alm" + ], + [ + "▁st", + "air" + ], + [ + "▁conclude", + "s" + ], + [ + "▁conclud", + "es" + ], + [ + "▁Car", + "n" + ], + [ + "▁C", + "arn" + ], + [ + "▁conf", + "orm" + ], + [ + "▁con", + "form" + ], + [ + "lease", + "d" + ], + [ + "le", + "ased" + ], + [ + "▁Aust", + "ro" + ], + [ + "▁rub", + "ber" + ], + [ + "▁Start", + "ing" + ], + [ + "▁Star", + "ting" + ], + [ + "▁executive", + "s" + ], + [ + "▁execut", + "ives" + ], + [ + "up", + "s" + ], + [ + "u", + "ps" + ], + [ + "▁depr", + "ess" + ], + [ + "▁dep", + "ress" + ], + [ + "▁de", + "press" + ], + [ + "▁coach", + "ing" + ], + [ + "▁co", + "aching" + ], + [ + "▁Catholic", + "s" + ], + [ + "▁Cath", + "olics" + ], + [ + "▁Bas", + "in" + ], + [ + "▁Wed", + "nes" + ], + [ + "▁Ott", + "o" + ], + [ + "▁Ot", + "to" + ], + [ + "▁Sol", + "d" + ], + [ + "▁So", + "ld" + ], + [ + "▁S", + "old" + ], + [ + "▁div", + "ide" + ], + [ + "▁ri", + "c" + ], + [ + "▁r", + "ic" + ], + [ + "▁", + "ric" + ], + [ + "▁cho", + "ir" + ], + [ + "▁ch", + "oir" + ], + [ + "▁loan", + "s" + ], + [ + "▁lo", + "ans" + ], + [ + "▁summ", + "on" + ], + [ + "▁sum", + "mon" + ], + [ + "▁peace", + "ful" + ], + [ + "▁prefer", + "ence" + ], + [ + "▁pre", + "ference" + ], + [ + "▁esc", + "al" + ], + [ + "▁es", + "cal" + ], + [ + "▁spin", + "e" + ], + [ + "▁sp", + "ine" + ], + [ + "▁s", + "pine" + ], + [ + "▁Beng", + "al" + ], + [ + "▁Ben", + "gal" + ], + [ + "▁Mad", + "rid" + ], + [ + "rib", + "ution" + ], + [ + "▁Tiger", + "s" + ], + [ + "▁Tig", + "ers" + ], + [ + "▁Ti", + "gers" + ], + [ + "▁impro", + "v" + ], + [ + "▁impr", + "ov" + ], + [ + "▁imp", + "rov" + ], + [ + "▁pat", + "ch" + ], + [ + "▁p", + "atch" + ], + [ + "▁Hubb", + "ard" + ], + [ + "▁provider", + "s" + ], + [ + "▁provide", + "rs" + ], + [ + "▁prov", + "iders" + ], + [ + "▁hurricane", + "s" + ], + [ + "▁h", + "urricanes" + ], + [ + "▁induce", + "d" + ], + [ + "▁indu", + "ced" + ], + [ + "▁Ho", + "k" + ], + [ + "▁H", + "ok" + ], + [ + "▁Mi", + "s" + ], + [ + "▁M", + "is" + ], + [ + "▁elect", + "oral" + ], + [ + "▁expert", + "ise" + ], + [ + "▁persist", + "ent" + ], + [ + "▁pers", + "istent" + ], + [ + "▁Ri", + "f" + ], + [ + "▁R", + "if" + ], + [ + "▁du", + "g" + ], + [ + "▁d", + "ug" + ], + [ + "▁disb", + "anded" + ], + [ + "▁monument", + "s" + ], + [ + "▁mon", + "uments" + ], + [ + "▁C", + "B" + ], + [ + "▁Su", + "z" + ], + [ + "▁S", + "uz" + ], + [ + "▁Pro", + "s" + ], + [ + "▁Pr", + "os" + ], + [ + "▁P", + "ros" + ], + [ + "▁Br", + "i" + ], + [ + "▁B", + "ri" + ], + [ + "▁Comp", + "an" + ], + [ + "▁Com", + "pan" + ], + [ + "▁subt", + "ropical" + ], + [ + "co", + "ck" + ], + [ + "c", + "ock" + ], + [ + "▁defense", + "s" + ], + [ + "▁def", + "enses" + ], + [ + "ogram", + "s" + ], + [ + "ogra", + "ms" + ], + [ + "og", + "rams" + ], + [ + "▁acc", + "el" + ], + [ + "▁ac", + "cel" + ], + [ + "▁gam", + "ing" + ], + [ + "▁ga", + "ming" + ], + [ + "▁g", + "aming" + ], + [ + "▁lay", + "out" + ], + [ + "▁Pro", + "cess" + ], + [ + "▁trem", + "end" + ], + [ + "▁Gen", + "t" + ], + [ + "▁Ge", + "nt" + ], + [ + "▁G", + "ent" + ], + [ + "▁proceed", + "s" + ], + [ + "im", + "o" + ], + [ + "i", + "mo" + ], + [ + "▁bet", + "a" + ], + [ + "▁be", + "ta" + ], + [ + "▁b", + "eta" + ], + [ + "▁every", + "where" + ], + [ + "▁tri", + "o" + ], + [ + "▁tr", + "io" + ], + [ + "▁t", + "rio" + ], + [ + "▁le", + "ather" + ], + [ + "▁foundation", + "s" + ], + [ + "▁found", + "ations" + ], + [ + "▁Has", + "s" + ], + [ + "▁Ha", + "ss" + ], + [ + "▁H", + "ass" + ], + [ + "▁m", + "ansion" + ], + [ + "▁sever", + "ity" + ], + [ + "▁emb", + "arrass" + ], + [ + "▁legal", + "ly" + ], + [ + "▁leg", + "ally" + ], + [ + "▁Tel", + "e" + ], + [ + "▁Te", + "le" + ], + [ + "▁T", + "ele" + ], + [ + "▁Tra", + "vel" + ], + [ + "▁Tr", + "avel" + ], + [ + "▁Co", + "u" + ], + [ + "▁C", + "ou" + ], + [ + "▁ad", + "olesc" + ], + [ + "▁servant", + "s" + ], + [ + "▁serv", + "ants" + ], + [ + "▁up", + "s" + ], + [ + "▁u", + "ps" + ], + [ + "▁", + "ups" + ], + [ + "▁re", + "op" + ], + [ + "▁Cast", + "ro" + ], + [ + "▁reason", + "ing" + ], + [ + "▁bu", + "ck" + ], + [ + "▁b", + "uck" + ], + [ + "▁maneu", + "ver" + ], + [ + "▁precise", + "ly" + ], + [ + "▁prec", + "isely" + ], + [ + "▁va", + "mp" + ], + [ + "▁v", + "amp" + ], + [ + "sea", + "son" + ], + [ + "se", + "ason" + ], + [ + "s", + "eason" + ], + [ + "▁pri", + "de" + ], + [ + "▁pr", + "ide" + ], + [ + "▁p", + "ride" + ], + [ + "oute", + "d" + ], + [ + "out", + "ed" + ], + [ + "ou", + "ted" + ], + [ + "o", + "uted" + ], + [ + "▁rush", + "ed" + ], + [ + "▁r", + "ushed" + ], + [ + "▁payment", + "s" + ], + [ + "▁pay", + "ments" + ], + [ + "▁in", + "Hg" + ], + [ + "▁bet", + "ray" + ], + [ + "▁fill", + "ing" + ], + [ + "▁fil", + "ling" + ], + [ + "▁f", + "illing" + ], + [ + "▁e", + "g" + ], + [ + "▁", + "eg" + ], + [ + "▁Li", + "v" + ], + [ + "▁L", + "iv" + ], + [ + "▁Tas", + "man" + ], + [ + "▁lav", + "a" + ], + [ + "▁la", + "va" + ], + [ + "▁l", + "ava" + ], + [ + "▁satisf", + "ied" + ], + [ + "▁satis", + "fied" + ], + [ + "▁R", + "O" + ], + [ + "▁", + "RO" + ], + [ + "port", + "ed" + ], + [ + "por", + "ted" + ], + [ + "p", + "orted" + ], + [ + "▁aw", + "a" + ], + [ + "▁a", + "wa" + ], + [ + "▁", + "awa" + ], + [ + "▁Mys", + "t" + ], + [ + "▁My", + "st" + ], + [ + "▁terr", + "ible" + ], + [ + "▁ter", + "rible" + ], + [ + "▁Mc", + "N" + ], + [ + "cal", + "led" + ], + [ + "ca", + "lled" + ], + [ + "c", + "alled" + ], + [ + "ount", + "ain" + ], + [ + "oun", + "tain" + ], + [ + "▁att", + "ain" + ], + [ + "▁at", + "tain" + ], + [ + "▁speak", + "s" + ], + [ + "▁spe", + "aks" + ], + [ + "▁press", + "ed" + ], + [ + "▁pr", + "essed" + ], + [ + "▁p", + "ressed" + ], + [ + "▁analys", + "es" + ], + [ + "▁analy", + "ses" + ], + [ + "bi", + "an" + ], + [ + "b", + "ian" + ], + [ + "▁fu", + "t" + ], + [ + "▁f", + "ut" + ], + [ + "▁Marc", + "us" + ], + [ + "▁gen", + "ome" + ], + [ + "lan", + "e" + ], + [ + "la", + "ne" + ], + [ + "l", + "ane" + ], + [ + "uan", + "a" + ], + [ + "ua", + "na" + ], + [ + "u", + "ana" + ], + [ + "▁hard", + "ly" + ], + [ + "▁Te", + "legraph" + ], + [ + "▁locomotive", + "s" + ], + [ + "▁locomot", + "ives" + ], + [ + "▁wag", + "e" + ], + [ + "▁wa", + "ge" + ], + [ + "▁w", + "age" + ], + [ + "▁Sch", + "olar" + ], + [ + "▁theater", + "s" + ], + [ + "▁theat", + "ers" + ], + [ + "▁the", + "aters" + ], + [ + "ll", + "a" + ], + [ + "l", + "la" + ], + [ + "▁Pol", + "y" + ], + [ + "▁Po", + "ly" + ], + [ + "▁P", + "oly" + ], + [ + "▁Kat", + "h" + ], + [ + "▁Ka", + "th" + ], + [ + "▁K", + "ath" + ], + [ + "▁tra", + "ged" + ], + [ + "▁tr", + "aged" + ], + [ + "▁t", + "raged" + ], + [ + "▁Sha", + "n" + ], + [ + "▁Sh", + "an" + ], + [ + "▁S", + "han" + ], + [ + "▁six", + "ty" + ], + [ + "▁descend", + "ed" + ], + [ + "▁desc", + "ended" + ], + [ + "aur", + "us" + ], + [ + "au", + "rus" + ], + [ + "a", + "urus" + ], + [ + "ograph", + "ed" + ], + [ + "ograp", + "hed" + ], + [ + "▁dinosaur", + "s" + ], + [ + "▁din", + "osaurs" + ], + [ + "▁Cr", + "ime" + ], + [ + "▁stage", + "d" + ], + [ + "▁st", + "aged" + ], + [ + "▁Ultimate", + "ly" + ], + [ + "▁Ult", + "imately" + ], + [ + "▁S", + "N" + ], + [ + "▁in", + "ability" + ], + [ + "▁association", + "s" + ], + [ + "▁associ", + "ations" + ], + [ + "f", + "a" + ], + [ + "ch", + "w" + ], + [ + "▁10", + "8" + ], + [ + "▁Du", + "m" + ], + [ + "▁D", + "um" + ], + [ + "alin", + "e" + ], + [ + "ali", + "ne" + ], + [ + "al", + "ine" + ], + [ + "a", + "line" + ], + [ + "▁lect", + "ure" + ], + [ + "▁operator", + "s" + ], + [ + "▁oper", + "ators" + ], + [ + "M", + "P" + ], + [ + "▁citizens", + "hip" + ], + [ + "▁citizen", + "ship" + ], + [ + "▁P", + "é" + ], + [ + "▁Min", + "e" + ], + [ + "▁Mi", + "ne" + ], + [ + "▁M", + "ine" + ], + [ + "▁sket", + "ch" + ], + [ + "ica", + "ting" + ], + [ + "ic", + "ating" + ], + [ + "▁ast", + "hma" + ], + [ + "▁mat", + "rix" + ], + [ + "ñ", + "o" + ], + [ + "ir", + "i" + ], + [ + "i", + "ri" + ], + [ + "▁Advent", + "ure" + ], + [ + "▁Per", + "cy" + ], + [ + "▁mo", + "uri" + ], + [ + "▁m", + "ouri" + ], + [ + "▁Ferdin", + "and" + ], + [ + "ici", + "a" + ], + [ + "ic", + "ia" + ], + [ + "i", + "cia" + ], + [ + "▁oxid", + "e" + ], + [ + "▁ox", + "ide" + ], + [ + "▁", + "oxide" + ], + [ + "▁want", + "ing" + ], + [ + "▁composer", + "s" + ], + [ + "▁compose", + "rs" + ], + [ + "▁compos", + "ers" + ], + [ + "▁(2", + ")" + ], + [ + "▁(", + "2)" + ], + [ + "▁Fl", + "ood" + ], + [ + "▁Comic", + "s" + ], + [ + "▁Com", + "ics" + ], + [ + "▁Prop", + "er" + ], + [ + "▁Pro", + "per" + ], + [ + "▁Pr", + "oper" + ], + [ + "▁bor", + "ough" + ], + [ + "▁bo", + "rough" + ], + [ + "▁b", + "orough" + ], + [ + "▁", + "borough" + ], + [ + "▁inst", + "ant" + ], + [ + "▁front", + "ier" + ], + [ + "▁design", + "ing" + ], + [ + "▁z", + "o" + ], + [ + "▁", + "zo" + ], + [ + "▁Li", + "l" + ], + [ + "▁L", + "il" + ], + [ + "▁Pu", + "n" + ], + [ + "▁P", + "un" + ], + [ + "▁F", + "ischer" + ], + [ + "▁tum", + "or" + ], + [ + "▁theme", + "d" + ], + [ + "▁them", + "ed" + ], + [ + "▁the", + "med" + ], + [ + "▁th", + "emed" + ], + [ + "▁stop", + "ping" + ], + [ + "▁187", + "7" + ], + [ + "▁18", + "77" + ], + [ + "▁Cris", + "t" + ], + [ + "▁Cr", + "ist" + ], + [ + "▁C", + "rist" + ], + [ + "▁chant", + "è" + ], + [ + "▁ch", + "antè" + ], + [ + "ene", + "s" + ], + [ + "en", + "es" + ], + [ + "e", + "nes" + ], + [ + "▁flow", + "ing" + ], + [ + "▁flo", + "wing" + ], + [ + "▁fl", + "owing" + ], + [ + "▁Hon", + "d" + ], + [ + "▁Ho", + "nd" + ], + [ + "▁H", + "ond" + ], + [ + "▁Ver", + "y" + ], + [ + "▁Ve", + "ry" + ], + [ + "▁V", + "ery" + ], + [ + "▁climb", + "ing" + ], + [ + "▁clim", + "bing" + ], + [ + "▁defic", + "iency" + ], + [ + "▁def", + "iciency" + ], + [ + "▁Yar", + "d" + ], + [ + "▁Ya", + "rd" + ], + [ + "▁Y", + "ard" + ], + [ + "▁McD", + "onald" + ], + [ + "▁activist", + "s" + ], + [ + "▁activ", + "ists" + ], + [ + "▁contract", + "ed" + ], + [ + "▁cont", + "racted" + ], + [ + "ah", + "o" + ], + [ + "a", + "ho" + ], + [ + "wi", + "g" + ], + [ + "w", + "ig" + ], + [ + "cle", + "r" + ], + [ + "cl", + "er" + ], + [ + "c", + "ler" + ], + [ + "▁Bas", + "t" + ], + [ + "▁Ba", + "st" + ], + [ + "▁B", + "ast" + ], + [ + "▁Ho", + "ff" + ], + [ + "▁H", + "off" + ], + [ + "▁dr", + "ied" + ], + [ + "▁d", + "ried" + ], + [ + "▁ek", + "ri" + ], + [ + "▁out", + "s" + ], + [ + "▁ou", + "ts" + ], + [ + "▁o", + "uts" + ], + [ + "▁", + "outs" + ], + [ + "mit", + "h" + ], + [ + "mi", + "th" + ], + [ + "m", + "ith" + ], + [ + "▁Gib", + "son" + ], + [ + "▁estate", + "s" + ], + [ + "▁est", + "ates" + ], + [ + "▁alt", + "ogether" + ], + [ + "▁vi", + "v" + ], + [ + "▁v", + "iv" + ], + [ + "▁Cult", + "ural" + ], + [ + "▁C", + "ultural" + ], + [ + "▁performer", + "s" + ], + [ + "▁perform", + "ers" + ], + [ + "▁autobi", + "ography" + ], + [ + "art", + "e" + ], + [ + "ar", + "te" + ], + [ + "he", + "alth" + ], + [ + "▁wid", + "ow" + ], + [ + "R", + "NA" + ], + [ + "▁sector", + "s" + ], + [ + "▁sect", + "ors" + ], + [ + "▁s", + "ectors" + ], + [ + "▁mobil", + "ity" + ], + [ + "▁mob", + "ility" + ], + [ + "▁New", + "man" + ], + [ + "ug", + "s" + ], + [ + "u", + "gs" + ], + [ + "s", + "uch" + ], + [ + "▁En", + "c" + ], + [ + "mus", + "ic" + ], + [ + "m", + "usic" + ], + [ + "▁colour", + "ed" + ], + [ + "▁col", + "oured" + ], + [ + "▁contain", + "er" + ], + [ + "uc", + "c" + ], + [ + "u", + "cc" + ], + [ + "ran", + "o" + ], + [ + "ra", + "no" + ], + [ + "r", + "ano" + ], + [ + "isan", + "s" + ], + [ + "isa", + "ns" + ], + [ + "is", + "ans" + ], + [ + "▁Cho", + "ice" + ], + [ + "▁Ch", + "oice" + ], + [ + "▁reflect", + "ing" + ], + [ + "zi", + "g" + ], + [ + "z", + "ig" + ], + [ + "▁Hug", + "o" + ], + [ + "▁Hu", + "go" + ], + [ + "▁comp", + "uting" + ], + [ + "▁Gle", + "e" + ], + [ + "▁Gl", + "ee" + ], + [ + "▁G", + "lee" + ], + [ + "▁lit", + "h" + ], + [ + "▁li", + "th" + ], + [ + "▁l", + "ith" + ], + [ + "▁sm", + "ell" + ], + [ + "▁repair", + "ed" + ], + [ + "▁rep", + "aired" + ], + [ + "▁Sa", + "u" + ], + [ + "▁S", + "au" + ], + [ + "▁ge", + "rm" + ], + [ + "▁g", + "erm" + ], + [ + "▁monk", + "s" + ], + [ + "▁mon", + "ks" + ], + [ + "▁fro", + "zen" + ], + [ + "▁Cryst", + "al" + ], + [ + "▁mal", + "aria" + ], + [ + "▁McKin", + "ley" + ], + [ + "▁fle", + "e" + ], + [ + "▁fl", + "ee" + ], + [ + "▁f", + "lee" + ], + [ + "▁p", + "ocket" + ], + [ + "ca", + "t" + ], + [ + "c", + "at" + ], + [ + "▁sin", + "k" + ], + [ + "▁s", + "ink" + ], + [ + "▁genera", + "ting" + ], + [ + "▁gener", + "ating" + ], + [ + "▁gene", + "rating" + ], + [ + "▁thorough", + "ly" + ], + [ + "▁Schum", + "acher" + ], + [ + "▁Er", + "n" + ], + [ + "▁ma", + "j" + ], + [ + "▁m", + "aj" + ], + [ + "elle", + "s" + ], + [ + "ell", + "es" + ], + [ + "el", + "les" + ], + [ + "▁rat", + "s" + ], + [ + "▁ra", + "ts" + ], + [ + "▁r", + "ats" + ], + [ + "▁logic", + "al" + ], + [ + "▁log", + "ical" + ], + [ + "▁l", + "ogical" + ], + [ + "▁Fu", + "r" + ], + [ + "▁F", + "ur" + ], + [ + "▁spin", + "al" + ], + [ + "▁sp", + "inal" + ], + [ + "ographer", + "s" + ], + [ + "ograph", + "ers" + ], + [ + "ograp", + "hers" + ], + [ + "F", + "S" + ], + [ + "▁Ell", + "is" + ], + [ + "▁El", + "lis" + ], + [ + "▁prim", + "itive" + ], + [ + "get", + "t" + ], + [ + "ge", + "tt" + ], + [ + "g", + "ett" + ], + [ + "▁Pl", + "y" + ], + [ + "▁P", + "ly" + ], + [ + "▁undert", + "ook" + ], + [ + "▁188", + "1" + ], + [ + "▁Shi", + "n" + ], + [ + "▁Sh", + "in" + ], + [ + "▁S", + "hin" + ], + [ + "▁rif", + "le" + ], + [ + "▁ri", + "fle" + ], + [ + "▁mush", + "room" + ], + [ + "ima", + "n" + ], + [ + "im", + "an" + ], + [ + "i", + "man" + ], + [ + "▁Sing", + "h" + ], + [ + "▁Sin", + "gh" + ], + [ + "▁Ke", + "m" + ], + [ + "▁K", + "em" + ], + [ + "▁bin", + "d" + ], + [ + "▁bi", + "nd" + ], + [ + "▁b", + "ind" + ], + [ + "▁sil", + "k" + ], + [ + "▁stem", + "s" + ], + [ + "▁ste", + "ms" + ], + [ + "▁st", + "ems" + ], + [ + "▁Tru", + "man" + ], + [ + "▁Tr", + "uman" + ], + [ + "▁188", + "3" + ], + [ + "▁Brown", + "s" + ], + [ + "▁Ver", + "onica" + ], + [ + "▁recommend", + "ation" + ], + [ + "▁gu", + "m" + ], + [ + "▁g", + "um" + ], + [ + "▁Max", + "im" + ], + [ + "▁thr", + "ust" + ], + [ + "▁th", + "rust" + ], + [ + "otte", + "d" + ], + [ + "ott", + "ed" + ], + [ + "ot", + "ted" + ], + [ + "▁Gi", + "ve" + ], + [ + "▁G", + "ive" + ], + [ + "▁in", + "equ" + ], + [ + "▁fatal", + "ities" + ], + [ + "▁fat", + "alities" + ], + [ + "pre", + "s" + ], + [ + "pr", + "es" + ], + [ + "p", + "res" + ], + [ + "ish", + "n" + ], + [ + "is", + "hn" + ], + [ + "gr", + "im" + ], + [ + "g", + "rim" + ], + [ + "▁per", + "c" + ], + [ + "▁p", + "erc" + ], + [ + "▁subject", + "ed" + ], + [ + "▁Th", + "r" + ], + [ + "▁T", + "hr" + ], + [ + "▁Sp", + "encer" + ], + [ + "▁disp", + "atched" + ], + [ + "H", + "L" + ], + [ + "as", + "i" + ], + [ + "ida", + "d" + ], + [ + "id", + "ad" + ], + [ + "i", + "dad" + ], + [ + "▁Al", + "z" + ], + [ + "uzz", + "le" + ], + [ + "▁Jul", + "ia" + ], + [ + "▁Ju", + "lia" + ], + [ + "▁al", + "ike" + ], + [ + "▁a", + "like" + ], + [ + "▁bull", + "et" + ], + [ + "▁bul", + "let" + ], + [ + "▁Romania", + "n" + ], + [ + "▁Roman", + "ian" + ], + [ + "▁Gener", + "ation" + ], + [ + "▁Gene", + "ration" + ], + [ + "▁Gen", + "eration" + ], + [ + "▁Tib", + "et" + ], + [ + "▁Ti", + "bet" + ], + [ + "▁Har", + "per" + ], + [ + "▁label", + "s" + ], + [ + "▁lab", + "els" + ], + [ + "▁la", + "bels" + ], + [ + "▁block", + "ade" + ], + [ + "▁lim", + "estone" + ], + [ + "▁ten", + "s" + ], + [ + "▁te", + "ns" + ], + [ + "▁t", + "ens" + ], + [ + "▁Turk", + "s" + ], + [ + "▁Tur", + "ks" + ], + [ + "▁fight", + "s" + ], + [ + "▁f", + "ights" + ], + [ + "▁label", + "ed" + ], + [ + "▁lab", + "eled" + ], + [ + "▁far", + "e" + ], + [ + "▁fa", + "re" + ], + [ + "▁f", + "are" + ], + [ + "▁", + "fare" + ], + [ + "▁Mal", + "ay" + ], + [ + "▁Ma", + "lay" + ], + [ + "▁rid", + "ic" + ], + [ + "eff", + "ective" + ], + [ + "▁ML", + "B" + ], + [ + "▁Cru", + "z" + ], + [ + "▁Cr", + "uz" + ], + [ + "▁C", + "ruz" + ], + [ + "▁Gl", + "ou" + ], + [ + "▁Sen", + "ior" + ], + [ + "▁integr", + "al" + ], + [ + "▁mat", + "urity" + ], + [ + "▁introduce", + "s" + ], + [ + "▁introdu", + "ces" + ], + [ + "▁passage", + "s" + ], + [ + "▁pass", + "ages" + ], + [ + "▁inhabit", + "ed" + ], + [ + "▁inhab", + "ited" + ], + [ + "▁ru", + "sh" + ], + [ + "▁r", + "ush" + ], + [ + "▁", + "rush" + ], + [ + "▁Pan", + "ama" + ], + [ + "▁intens", + "ive" + ], + [ + "▁int", + "ensive" + ], + [ + "▁cor", + "p" + ], + [ + "▁c", + "orp" + ], + [ + "▁Ort", + "on" + ], + [ + "▁Or", + "ton" + ], + [ + "▁Bl", + "ock" + ], + [ + "▁B", + "lock" + ], + [ + "▁ins", + "ert" + ], + [ + "▁pat", + "ent" + ], + [ + "▁answer", + "ed" + ], + [ + "▁answ", + "ered" + ], + [ + "▁Meg", + "a" + ], + [ + "▁Me", + "ga" + ], + [ + "▁under", + "neath" + ], + [ + "▁Bl", + "air" + ], + [ + "▁Se", + "d" + ], + [ + "▁S", + "ed" + ], + [ + "▁186", + "9" + ], + [ + "▁Bot", + "t" + ], + [ + "▁Bo", + "tt" + ], + [ + "▁B", + "ott" + ], + [ + "▁happ", + "iness" + ], + [ + "ab", + "l" + ], + [ + "a", + "bl" + ], + [ + "▁grain", + "s" + ], + [ + "▁gra", + "ins" + ], + [ + "▁gr", + "ains" + ], + [ + "▁anti", + "qu" + ], + [ + "▁ant", + "iqu" + ], + [ + "▁cluster", + "s" + ], + [ + "▁cl", + "usters" + ], + [ + "▁Ga", + "s" + ], + [ + "▁G", + "as" + ], + [ + "pha", + "bet" + ], + [ + "ph", + "abet" + ], + [ + "▁sol", + "ving" + ], + [ + "▁s", + "olving" + ], + [ + "▁trigger", + "ed" + ], + [ + "▁trigg", + "ered" + ], + [ + "app", + "a" + ], + [ + "ap", + "pa" + ], + [ + "▁La", + "g" + ], + [ + "▁L", + "ag" + ], + [ + "▁La", + "n" + ], + [ + "▁L", + "an" + ], + [ + "▁ti", + "de" + ], + [ + "▁t", + "ide" + ], + [ + "▁join", + "s" + ], + [ + "▁jo", + "ins" + ], + [ + "▁outl", + "ine" + ], + [ + "▁out", + "line" + ], + [ + "▁Os", + "t" + ], + [ + "▁O", + "st" + ], + [ + "▁drag", + "on" + ], + [ + "▁dra", + "gon" + ], + [ + "▁dr", + "agon" + ], + [ + "▁d", + "ragon" + ], + [ + "▁Cert", + "ain" + ], + [ + "▁Cer", + "tain" + ], + [ + "▁C", + "ertain" + ], + [ + "▁Spec", + "ies" + ], + [ + "▁Spe", + "cies" + ], + [ + "▁me", + "ks" + ], + [ + "▁m", + "eks" + ], + [ + "▁ter", + "restrial" + ], + [ + "▁Ser", + "i" + ], + [ + "▁Se", + "ri" + ], + [ + "▁S", + "eri" + ], + [ + "▁mel", + "an" + ], + [ + "▁me", + "lan" + ], + [ + "▁absor", + "b" + ], + [ + "▁abs", + "orb" + ], + [ + "pha", + "n" + ], + [ + "ph", + "an" + ], + [ + "p", + "han" + ], + [ + "▁Phys", + "ical" + ], + [ + "▁Ph", + "ysical" + ], + [ + "▁concent", + "rate" + ], + [ + "▁costume", + "s" + ], + [ + "▁cost", + "umes" + ], + [ + "▁variant", + "s" + ], + [ + "▁vari", + "ants" + ], + [ + "▁Bangl", + "adesh" + ], + [ + "▁appreciate", + "d" + ], + [ + "▁apprec", + "iated" + ], + [ + "▁Julie", + "t" + ], + [ + "▁Jul", + "iet" + ], + [ + "▁incom", + "p" + ], + [ + "▁inc", + "omp" + ], + [ + "▁in", + "comp" + ], + [ + "▁overt", + "h" + ], + [ + "▁over", + "th" + ], + [ + "▁unve", + "iled" + ], + [ + "▁el", + "dest" + ], + [ + "▁aqu", + "atic" + ], + [ + "▁La", + "c" + ], + [ + "▁L", + "ac" + ], + [ + "▁defin", + "ing" + ], + [ + "▁def", + "ining" + ], + [ + "▁investig", + "ating" + ], + [ + "o", + "qu" + ], + [ + "▁F", + "M" + ], + [ + "▁187", + "1" + ], + [ + "▁Sc", + "out" + ], + [ + "▁st", + "iff" + ], + [ + "▁V", + "a" + ], + [ + "▁Tal", + "l" + ], + [ + "▁Ta", + "ll" + ], + [ + "▁T", + "all" + ], + [ + "▁incorporate", + "s" + ], + [ + "▁incorpor", + "ates" + ], + [ + "▁Chu", + "ck" + ], + [ + "▁Ch", + "uck" + ], + [ + "▁Bet", + "ter" + ], + [ + "▁em", + "ission" + ], + [ + "▁e", + "mission" + ], + [ + "▁reprodu", + "ction" + ], + [ + "▁rep", + "roduction" + ], + [ + "▁sy", + "ll" + ], + [ + "▁s", + "yll" + ], + [ + "▁tea", + "r" + ], + [ + "▁te", + "ar" + ], + [ + "▁t", + "ear" + ], + [ + "▁war", + "e" + ], + [ + "▁wa", + "re" + ], + [ + "▁w", + "are" + ], + [ + "▁", + "ware" + ], + [ + "▁Gonz", + "á" + ], + [ + "▁gust", + "s" + ], + [ + "▁gu", + "sts" + ], + [ + "▁Dep", + "uty" + ], + [ + "▁Circ", + "uit" + ], + [ + "▁Tel", + "enovela" + ], + [ + "ic", + "us" + ], + [ + "▁je", + "n" + ], + [ + "▁j", + "en" + ], + [ + "iox", + "id" + ], + [ + "▁Bu", + "ch" + ], + [ + "▁B", + "uch" + ], + [ + "▁Har", + "m" + ], + [ + "▁Ha", + "rm" + ], + [ + "▁H", + "arm" + ], + [ + "▁Sm", + "ack" + ], + [ + "▁Cont", + "em" + ], + [ + "▁influ", + "enza" + ], + [ + "▁N", + "L" + ], + [ + "▁Hawaii", + "an" + ], + [ + "▁Hawai", + "ian" + ], + [ + "▁Nicol", + "as" + ], + [ + "▁Nic", + "olas" + ], + [ + "G", + "A" + ], + [ + "of", + "t" + ], + [ + "o", + "ft" + ], + [ + "▁ta", + "n" + ], + [ + "▁t", + "an" + ], + [ + "ati", + "le" + ], + [ + "at", + "ile" + ], + [ + "emic", + "s" + ], + [ + "emi", + "cs" + ], + [ + "em", + "ics" + ], + [ + "▁Soviet", + "s" + ], + [ + "▁pl", + "aque" + ], + [ + "▁forg", + "otten" + ], + [ + "ou", + "k" + ], + [ + "o", + "uk" + ], + [ + "▁Gr", + "u" + ], + [ + "▁G", + "ru" + ], + [ + "▁hel", + "l" + ], + [ + "▁he", + "ll" + ], + [ + "▁h", + "ell" + ], + [ + "▁", + "hell" + ], + [ + "▁rall", + "y" + ], + [ + "▁r", + "ally" + ], + [ + "▁cat", + "er" + ], + [ + "▁ca", + "ter" + ], + [ + "▁c", + "ater" + ], + [ + "▁disg", + "u" + ], + [ + "▁dis", + "gu" + ], + [ + "▁ve", + "ctor" + ], + [ + "▁v", + "ector" + ], + [ + "art", + "z" + ], + [ + "ar", + "tz" + ], + [ + "▁repe", + "r" + ], + [ + "▁rep", + "er" + ], + [ + "▁re", + "per" + ], + [ + "▁r", + "eper" + ], + [ + "▁tack", + "le" + ], + [ + "▁somew", + "here" + ], + [ + "▁some", + "where" + ], + [ + "ci", + "n" + ], + [ + "c", + "in" + ], + [ + "ère", + "s" + ], + [ + "è", + "res" + ], + [ + "▁Ne", + "u" + ], + [ + "▁N", + "eu" + ], + [ + "▁Exp", + "ed" + ], + [ + "▁Ex", + "ped" + ], + [ + "▁Palm", + "er" + ], + [ + "▁Pal", + "mer" + ], + [ + "▁hero", + "es" + ], + [ + "▁her", + "oes" + ], + [ + "▁value", + "d" + ], + [ + "▁val", + "ued" + ], + [ + "▁O", + "C" + ], + [ + "▁", + "OC" + ], + [ + "▁J", + "NA" + ], + [ + "▁ent", + "ity" + ], + [ + "ado", + "s" + ], + [ + "ad", + "os" + ], + [ + "▁Kr", + "u" + ], + [ + "▁K", + "ru" + ], + [ + "▁Nep", + "t" + ], + [ + "▁Ne", + "pt" + ], + [ + "▁N", + "ept" + ], + [ + "▁do", + "rm" + ], + [ + "▁d", + "orm" + ], + [ + "▁Emil", + "y" + ], + [ + "▁Em", + "ily" + ], + [ + "▁Mak", + "ing" + ], + [ + "▁Ma", + "king" + ], + [ + "▁M", + "aking" + ], + [ + "▁frame", + "s" + ], + [ + "▁fra", + "mes" + ], + [ + "▁fr", + "ames" + ], + [ + "▁revive", + "d" + ], + [ + "▁rev", + "ived" + ], + [ + "▁incorpor", + "ating" + ], + [ + "▁sym", + "pat" + ], + [ + "▁Phill", + "ies" + ], + [ + "▁Phil", + "lies" + ], + [ + "▁absor", + "ption" + ], + [ + "▁Ass", + "ess" + ], + [ + "▁bar", + "k" + ], + [ + "▁b", + "ark" + ], + [ + "▁Ill", + "ust" + ], + [ + "▁Gonzá", + "lez" + ], + [ + "▁", + "©" + ], + [ + "st", + "ock" + ], + [ + "▁purp", + "le" + ], + [ + "▁pur", + "ple" + ], + [ + "▁ens", + "uing" + ], + [ + "ical", + "s" + ], + [ + "ica", + "ls" + ], + [ + "ic", + "als" + ], + [ + "▁Su", + "ff" + ], + [ + "▁S", + "uff" + ], + [ + "▁w", + "ool" + ], + [ + "▁seek", + "s" + ], + [ + "▁see", + "ks" + ], + [ + "▁se", + "eks" + ], + [ + "▁the", + "or" + ], + [ + "▁th", + "eor" + ], + [ + "omet", + "er" + ], + [ + "ome", + "ter" + ], + [ + "om", + "eter" + ], + [ + "▁heat", + "ed" + ], + [ + "▁he", + "ated" + ], + [ + "▁Michel", + "le" + ], + [ + "▁Mich", + "elle" + ], + [ + "▁pa", + "d" + ], + [ + "▁p", + "ad" + ], + [ + "▁ad", + "ul" + ], + [ + "▁Ste", + "am" + ], + [ + "▁observ", + "ing" + ], + [ + "▁obs", + "erving" + ], + [ + "▁spec", + "ulated" + ], + [ + "▁Che", + "t" + ], + [ + "▁Ch", + "et" + ], + [ + "▁C", + "het" + ], + [ + "▁fat", + "ty" + ], + [ + "▁f", + "atty" + ], + [ + "▁Gu", + "atem" + ], + [ + "▁appeal", + "ed" + ], + [ + "▁appe", + "aled" + ], + [ + "le", + "n" + ], + [ + "l", + "en" + ], + [ + "▁Du", + "p" + ], + [ + "▁D", + "up" + ], + [ + "▁intr", + "ig" + ], + [ + "▁int", + "rig" + ], + [ + "▁sport", + "ing" + ], + [ + "▁spor", + "ting" + ], + [ + "▁address", + "ing" + ], + [ + "urb", + "s" + ], + [ + "ur", + "bs" + ], + [ + "arm", + "ed" + ], + [ + "ar", + "med" + ], + [ + "▁Curt", + "is" + ], + [ + "▁F", + "landers" + ], + [ + "é", + "mon" + ], + [ + "▁qual", + "ify" + ], + [ + "▁regard", + "s" + ], + [ + "▁reg", + "ards" + ], + [ + "▁offs", + "pring" + ], + [ + "▁1", + "/" + ], + [ + "▁", + "1/" + ], + [ + "▁2", + ")" + ], + [ + "▁", + "2)" + ], + [ + "▁U", + "B" + ], + [ + "▁all", + "y" + ], + [ + "▁al", + "ly" + ], + [ + "▁", + "ally" + ], + [ + "▁fa", + "ke" + ], + [ + "▁f", + "ake" + ], + [ + "▁sh", + "irt" + ], + [ + "▁T", + "ucker" + ], + [ + "▁cycle", + "s" + ], + [ + "▁cycl", + "es" + ], + [ + "▁cy", + "cles" + ], + [ + "▁upd", + "ate" + ], + [ + "▁unnecess", + "ary" + ], + [ + "▁pe", + "as" + ], + [ + "▁p", + "eas" + ], + [ + "ret", + "ion" + ], + [ + "▁Film", + "s" + ], + [ + "▁Fil", + "ms" + ], + [ + "▁do", + "rs" + ], + [ + "▁d", + "ors" + ], + [ + "ashi", + "re" + ], + [ + "ash", + "ire" + ], + [ + "as", + "hire" + ], + [ + "a", + "shire" + ], + [ + "ren", + "s" + ], + [ + "re", + "ns" + ], + [ + "r", + "ens" + ], + [ + "▁5", + "," + ], + [ + "▁", + "5," + ], + [ + "sta", + "d" + ], + [ + "st", + "ad" + ], + [ + "▁186", + "6" + ], + [ + "▁18", + "66" + ], + [ + "▁Head", + "quarters" + ], + [ + "▁ter", + "r" + ], + [ + "▁t", + "err" + ], + [ + "asa", + "ki" + ], + [ + "as", + "aki" + ], + [ + "erve", + "s" + ], + [ + "erv", + "es" + ], + [ + "er", + "ves" + ], + [ + "▁pa", + "ved" + ], + [ + "▁p", + "aved" + ], + [ + "▁count", + "s" + ], + [ + "▁coun", + "ts" + ], + [ + "▁co", + "unts" + ], + [ + "▁receive", + "r" + ], + [ + "▁recei", + "ver" + ], + [ + "▁rece", + "iver" + ], + [ + "iov", + "ascular" + ], + [ + "▁surpass", + "ed" + ], + [ + "▁Vir", + "t" + ], + [ + "▁V", + "irt" + ], + [ + "velop", + "ed" + ], + [ + "vel", + "oped" + ], + [ + "▁conquer", + "ed" + ], + [ + "▁conqu", + "ered" + ], + [ + "▁unusual", + "ly" + ], + [ + "▁unus", + "ually" + ], + [ + "▁10", + "7" + ], + [ + "▁Cab", + "inet" + ], + [ + "▁system", + "atic" + ], + [ + "op", + "ol" + ], + [ + "▁EP", + "A" + ], + [ + "▁E", + "PA" + ], + [ + "st", + "own" + ], + [ + "s", + "town" + ], + [ + "▁Can", + "n" + ], + [ + "▁C", + "ann" + ], + [ + "▁d", + "airy" + ], + [ + "▁Sh", + "ould" + ], + [ + "▁rem", + "ake" + ], + [ + "▁speech", + "es" + ], + [ + "▁spe", + "eches" + ], + [ + "ew", + "ard" + ], + [ + "e", + "ward" + ], + [ + "vance", + "d" + ], + [ + "van", + "ced" + ], + [ + "v", + "anced" + ], + [ + "▁Mem", + "ber" + ], + [ + "▁Me", + "mber" + ], + [ + "▁M", + "ember" + ], + [ + "▁Craw", + "ford" + ], + [ + "▁exhibit", + "s" + ], + [ + "▁exhib", + "its" + ], + [ + "▁prolong", + "ed" + ], + [ + "▁cy", + "t" + ], + [ + "▁c", + "yt" + ], + [ + "▁interrupt", + "ed" + ], + [ + "▁inter", + "rupted" + ], + [ + "P", + "V" + ], + [ + "▁ma", + "id" + ], + [ + "▁m", + "aid" + ], + [ + "▁ph", + "on" + ], + [ + "èt", + "isman" + ], + [ + "▁Bask", + "etball" + ], + [ + "▁Ma", + "m" + ], + [ + "▁M", + "am" + ], + [ + "och", + "ond" + ], + [ + "▁Bro", + "n" + ], + [ + "▁Br", + "on" + ], + [ + "▁B", + "ron" + ], + [ + "▁Middle", + "s" + ], + [ + "▁Midd", + "les" + ], + [ + "▁break", + "through" + ], + [ + "d", + "f" + ], + [ + "p", + "y" + ], + [ + "tha", + "t" + ], + [ + "th", + "at" + ], + [ + "t", + "hat" + ], + [ + "▁sl", + "ope" + ], + [ + "▁Well", + "ington" + ], + [ + "▁Wel", + "lington" + ], + [ + "▁proceeding", + "s" + ], + [ + "▁proceed", + "ings" + ], + [ + "▁G", + "w" + ], + [ + "▁Pon", + "t" + ], + [ + "▁Po", + "nt" + ], + [ + "▁P", + "ont" + ], + [ + "▁lob", + "by" + ], + [ + "▁Ham", + "b" + ], + [ + "▁Ha", + "mb" + ], + [ + "▁H", + "amb" + ], + [ + "▁186", + "7" + ], + [ + "▁18", + "67" + ], + [ + "▁188", + "2" + ], + [ + "▁Fer", + "gus" + ], + [ + "▁phenomen", + "a" + ], + [ + "▁cust", + "ody" + ], + [ + "▁competitor", + "s" + ], + [ + "▁compet", + "itors" + ], + [ + "▁devast", + "ating" + ], + [ + "agn", + "e" + ], + [ + "ag", + "ne" + ], + [ + "▁che", + "ss" + ], + [ + "▁ch", + "ess" + ], + [ + "▁c", + "hess" + ], + [ + "▁di", + "ary" + ], + [ + "▁d", + "iary" + ], + [ + "ript", + "ion" + ], + [ + "ri", + "ption" + ], + [ + "▁Pri", + "son" + ], + [ + "▁Pr", + "ison" + ], + [ + "▁P", + "rison" + ], + [ + "▁Roman", + "ia" + ], + [ + "▁Rom", + "ania" + ], + [ + "▁contact", + "s" + ], + [ + "▁cont", + "acts" + ], + [ + "▁Cardinal", + "s" + ], + [ + "▁Card", + "inals" + ], + [ + "▁E", + "b" + ], + [ + "▁organ", + "ism" + ], + [ + "▁S", + "r" + ], + [ + "idia", + "n" + ], + [ + "idi", + "an" + ], + [ + "id", + "ian" + ], + [ + "▁landing", + "s" + ], + [ + "▁land", + "ings" + ], + [ + "▁Rob", + "b" + ], + [ + "▁Ro", + "bb" + ], + [ + "▁Sea", + "s" + ], + [ + "▁Se", + "as" + ], + [ + "▁S", + "eas" + ], + [ + "▁appl", + "ies" + ], + [ + "▁app", + "lies" + ], + [ + "▁Inter", + "est" + ], + [ + "▁T", + "ournament" + ], + [ + "▁radio", + "active" + ], + [ + "▁ble", + "ss" + ], + [ + "▁bl", + "ess" + ], + [ + "▁b", + "less" + ], + [ + "▁motiv", + "ation" + ], + [ + "▁mot", + "ivation" + ], + [ + "ass", + "e" + ], + [ + "as", + "se" + ], + [ + "ma", + "il" + ], + [ + "m", + "ail" + ], + [ + "▁ha", + "ul" + ], + [ + "▁h", + "aul" + ], + [ + "▁opin", + "ed" + ], + [ + "▁op", + "ined" + ], + [ + "Y", + "ou" + ], + [ + "▁Y", + "o" + ], + [ + "▁187", + "3" + ], + [ + "▁priv", + "acy" + ], + [ + "▁singer", + "s" + ], + [ + "▁sing", + "ers" + ], + [ + "▁sin", + "gers" + ], + [ + "▁Thurs", + "day" + ], + [ + "▁every", + "body" + ], + [ + "▁Lanc", + "ashire" + ], + [ + "▁reminis", + "cent" + ], + [ + "▁te", + "t" + ], + [ + "▁t", + "et" + ], + [ + "▁h", + "ub" + ], + [ + "▁dead", + "ly" + ], + [ + "▁j", + "ersey" + ], + [ + "▁margin", + "al" + ], + [ + "▁marg", + "inal" + ], + [ + "▁capt", + "ivity" + ], + [ + "▁amb", + "assador" + ], + [ + "-1", + "0" + ], + [ + "-", + "10" + ], + [ + "ne", + "w" + ], + [ + "n", + "ew" + ], + [ + "▁Mil", + "e" + ], + [ + "▁Mi", + "le" + ], + [ + "▁M", + "ile" + ], + [ + "▁strict", + "ly" + ], + [ + "▁Cle", + "ar" + ], + [ + "▁Cl", + "ear" + ], + [ + "▁fit", + "ting" + ], + [ + "▁f", + "itting" + ], + [ + "ices", + "ter" + ], + [ + "ice", + "ster" + ], + [ + "ic", + "ester" + ], + [ + "i", + "cester" + ], + [ + "▁black", + "s" + ], + [ + "▁bl", + "acks" + ], + [ + "▁reb", + "ounds" + ], + [ + "▁spar", + "k" + ], + [ + "▁sp", + "ark" + ], + [ + "▁wit", + "ch" + ], + [ + "▁w", + "itch" + ], + [ + "▁lo", + "n" + ], + [ + "▁l", + "on" + ], + [ + "▁", + "lon" + ], + [ + "▁Par", + "ad" + ], + [ + "▁Pa", + "rad" + ], + [ + "▁e", + "ject" + ], + [ + "▁Antar", + "ctic" + ], + [ + "▁9", + "." + ], + [ + "▁", + "9." + ], + [ + "▁Cal", + "vin" + ], + [ + "▁Jer", + "emy" + ], + [ + "▁festival", + "s" + ], + [ + "▁fest", + "ivals" + ], + [ + "▁practice", + "d" + ], + [ + "▁pract", + "iced" + ], + [ + "mi", + "d" + ], + [ + "m", + "id" + ], + [ + "▁y", + "d" + ], + [ + "▁", + "yd" + ], + [ + "pro", + "du" + ], + [ + "p", + "rodu" + ], + [ + "▁sh", + "ar" + ], + [ + "▁s", + "har" + ], + [ + "▁Ed", + "win" + ], + [ + "onom", + "ous" + ], + [ + "▁range", + "d" + ], + [ + "▁rang", + "ed" + ], + [ + "▁ran", + "ged" + ], + [ + "▁", + "ranged" + ], + [ + "▁ro", + "ster" + ], + [ + "▁r", + "oster" + ], + [ + "▁sec", + "uring" + ], + [ + "▁algorith", + "m" + ], + [ + "▁private", + "ly" + ], + [ + "▁priv", + "ately" + ], + [ + "la", + "y" + ], + [ + "l", + "ay" + ], + [ + "amo", + "us" + ], + [ + "am", + "ous" + ], + [ + "▁gen", + "ius" + ], + [ + "▁pl", + "asma" + ], + [ + "itation", + "al" + ], + [ + "it", + "ational" + ], + [ + "▁sovereign", + "ty" + ], + [ + "▁unsuccessful", + "ly" + ], + [ + "▁unsuccess", + "fully" + ], + [ + "te", + "xt" + ], + [ + "t", + "ext" + ], + [ + "ucle", + "ar" + ], + [ + "▁lock", + "ed" + ], + [ + "▁l", + "ocked" + ], + [ + "▁send", + "s" + ], + [ + "▁sen", + "ds" + ], + [ + "▁s", + "ends" + ], + [ + "▁govern", + "ed" + ], + [ + "▁gover", + "ned" + ], + [ + "▁tactic", + "al" + ], + [ + "▁tact", + "ical" + ], + [ + "▁Ha", + "t" + ], + [ + "▁H", + "at" + ], + [ + "▁conce", + "ss" + ], + [ + "▁conc", + "ess" + ], + [ + "▁con", + "cess" + ], + [ + "▁Adela", + "ide" + ], + [ + "▁Michael", + "s" + ], + [ + "▁Micha", + "els" + ], + [ + "illo", + "n" + ], + [ + "ill", + "on" + ], + [ + "il", + "lon" + ], + [ + "ul", + "ative" + ], + [ + "▁analy", + "ze" + ], + [ + "▁jo", + "ke" + ], + [ + "▁j", + "oke" + ], + [ + "▁Master", + "s" + ], + [ + "▁Mas", + "ters" + ], + [ + "▁Ma", + "sters" + ], + [ + "▁M", + "asters" + ], + [ + "▁Alz", + "heimer" + ], + [ + "▁Co", + "s" + ], + [ + "▁C", + "os" + ], + [ + "▁Daw", + "n" + ], + [ + "▁Da", + "wn" + ], + [ + "▁D", + "awn" + ], + [ + "gest", + "ion" + ], + [ + "▁angle", + "s" + ], + [ + "▁ang", + "les" + ], + [ + "▁", + "angles" + ], + [ + "▁gram", + "mar" + ], + [ + "▁gr", + "ammar" + ], + [ + "▁saving", + "s" + ], + [ + "▁sav", + "ings" + ], + [ + "▁Russian", + "s" + ], + [ + "▁Russia", + "ns" + ], + [ + "▁Russ", + "ians" + ], + [ + "▁Ca", + "v" + ], + [ + "▁C", + "av" + ], + [ + "▁Ren", + "é" + ], + [ + "▁def", + "ault" + ], + [ + "▁B", + "é" + ], + [ + "▁Un", + "e" + ], + [ + "▁U", + "ne" + ], + [ + "▁Gan", + "d" + ], + [ + "▁Ga", + "nd" + ], + [ + "▁G", + "and" + ], + [ + "▁Offic", + "ial" + ], + [ + "▁Off", + "icial" + ], + [ + "▁Of", + "ficial" + ], + [ + "▁express", + "ing" + ], + [ + "za", + "c" + ], + [ + "z", + "ac" + ], + [ + "▁1", + ")" + ], + [ + "▁", + "1)" + ], + [ + "▁st", + "ance" + ], + [ + "▁unemploy", + "ment" + ], + [ + "asse", + "s" + ], + [ + "ass", + "es" + ], + [ + "as", + "ses" + ], + [ + "▁kn", + "ock" + ], + [ + "▁inadequ", + "ate" + ], + [ + "▁investment", + "s" + ], + [ + "▁invest", + "ments" + ], + [ + "▁Fl", + "oyd" + ], + [ + "G", + "o" + ], + [ + "▁j", + "ail" + ], + [ + "ption", + "s" + ], + [ + "pt", + "ions" + ], + [ + "▁Tu", + "es" + ], + [ + "▁T", + "ues" + ], + [ + "▁le", + "ak" + ], + [ + "▁art", + "er" + ], + [ + "▁ar", + "ter" + ], + [ + "▁", + "arter" + ], + [ + "▁convin", + "c" + ], + [ + "▁conv", + "inc" + ], + [ + "▁magic", + "al" + ], + [ + "▁mag", + "ical" + ], + [ + "▁occur", + "rence" + ], + [ + "ose", + "ly" + ], + [ + "os", + "ely" + ], + [ + "kins", + "on" + ], + [ + "kin", + "son" + ], + [ + "k", + "inson" + ], + [ + "▁Ed", + "gar" + ], + [ + "▁neighbour", + "ing" + ], + [ + "ay", + "e" + ], + [ + "a", + "ye" + ], + [ + "eu", + "t" + ], + [ + "e", + "ut" + ], + [ + "▁187", + "8" + ], + [ + "▁18", + "78" + ], + [ + "cription", + "s" + ], + [ + "cript", + "ions" + ], + [ + "▁limit", + "ing" + ], + [ + "▁lim", + "iting" + ], + [ + "▁Rel", + "ations" + ], + [ + "ner", + "y" + ], + [ + "ne", + "ry" + ], + [ + "n", + "ery" + ], + [ + "od", + "on" + ], + [ + "o", + "don" + ], + [ + "▁Me", + "et" + ], + [ + "▁promise", + "s" + ], + [ + "▁prom", + "ises" + ], + [ + "▁sur", + "veillance" + ], + [ + "op", + "ing" + ], + [ + "o", + "ping" + ], + [ + "▁Caes", + "ar" + ], + [ + "▁paint", + "er" + ], + [ + "▁pain", + "ter" + ], + [ + "▁pa", + "inter" + ], + [ + "ats", + "u" + ], + [ + "▁pure", + "ly" + ], + [ + "▁pur", + "ely" + ], + [ + "▁Av", + "iation" + ], + [ + "▁exceed", + "ed" + ], + [ + "▁ex", + "ceeded" + ], + [ + "▁recreation", + "al" + ], + [ + "▁recre", + "ational" + ], + [ + "la", + "ke" + ], + [ + "l", + "ake" + ], + [ + "▁10", + "," + ], + [ + "▁exclud", + "ed" + ], + [ + "ir", + "k" + ], + [ + "▁Lo", + "c" + ], + [ + "▁L", + "oc" + ], + [ + "▁Ha", + "iti" + ], + [ + "▁Met", + "ac" + ], + [ + "▁to", + "ile" + ], + [ + "▁met", + "ropolitan" + ], + [ + "▁t", + "i" + ], + [ + "▁", + "ti" + ], + [ + "▁cell", + "ular" + ], + [ + "▁compliment", + "ed" + ], + [ + "▁ent", + "ries" + ], + [ + "▁geographic", + "al" + ], + [ + "▁ge", + "ographical" + ], + [ + "▁he", + "s" + ], + [ + "▁h", + "es" + ], + [ + "▁", + "hes" + ], + [ + "rec", + "ed" + ], + [ + "re", + "ced" + ], + [ + "▁b", + "ureau" + ], + [ + "▁sal", + "mon" + ], + [ + "▁enact", + "ed" + ], + [ + "▁sensor", + "s" + ], + [ + "▁sens", + "ors" + ], + [ + "I", + "R" + ], + [ + "▁thr", + "es" + ], + [ + "▁th", + "res" + ], + [ + "▁hat", + "e" + ], + [ + "▁ha", + "te" + ], + [ + "▁h", + "ate" + ], + [ + "▁Sm", + "art" + ], + [ + "▁micros", + "cop" + ], + [ + "▁mic", + "roscop" + ], + [ + "▁15", + "6" + ], + [ + "▁1", + "56" + ], + [ + "▁lo", + "s" + ], + [ + "▁l", + "os" + ], + [ + "▁athlet", + "e" + ], + [ + "▁a", + "thlete" + ], + [ + "▁tunnel", + "s" + ], + [ + "▁tun", + "nels" + ], + [ + "▁Vi", + "ol" + ], + [ + "▁V", + "iol" + ], + [ + "▁gra", + "t" + ], + [ + "▁gr", + "at" + ], + [ + "▁g", + "rat" + ], + [ + "▁", + "grat" + ], + [ + "▁slope", + "s" + ], + [ + "▁sl", + "opes" + ], + [ + "▁embed", + "ded" + ], + [ + "▁scenario", + "s" + ], + [ + "▁scenar", + "ios" + ], + [ + "▁pro", + "c" + ], + [ + "▁pr", + "oc" + ], + [ + "▁p", + "roc" + ], + [ + "▁Rock", + "y" + ], + [ + "▁Roc", + "ky" + ], + [ + "▁ra", + "m" + ], + [ + "▁r", + "am" + ], + [ + "▁", + "ram" + ], + [ + "▁lun", + "ar" + ], + [ + "▁ro", + "ok" + ], + [ + "▁r", + "ook" + ], + [ + "▁Squ", + "ad" + ], + [ + "▁instrument", + "ation" + ], + [ + "I", + "L" + ], + [ + "▁Sc", + "and" + ], + [ + "ult", + "ural" + ], + [ + "â", + "tre" + ], + [ + "M", + "usic" + ], + [ + "▁back", + "up" + ], + [ + "▁libert", + "y" + ], + [ + "▁liber", + "ty" + ], + [ + "▁white", + "s" + ], + [ + "▁whit", + "es" + ], + [ + "▁wh", + "ites" + ], + [ + "char", + "d" + ], + [ + "cha", + "rd" + ], + [ + "ch", + "ard" + ], + [ + "c", + "hard" + ], + [ + "▁Sy", + "ans" + ], + [ + "▁skelet", + "on" + ], + [ + "▁ske", + "leton" + ], + [ + "▁nut", + "s" + ], + [ + "▁nu", + "ts" + ], + [ + "▁n", + "uts" + ], + [ + "▁sn", + "ake" + ], + [ + "▁Sing", + "le" + ], + [ + "▁S", + "ingle" + ], + [ + "▁deleg", + "ation" + ], + [ + "elf", + "th" + ], + [ + "▁ant", + "en" + ], + [ + "▁an", + "ten" + ], + [ + "iment", + "al" + ], + [ + "imen", + "tal" + ], + [ + "im", + "ental" + ], + [ + "i", + "mental" + ], + [ + "▁match", + "ed" + ], + [ + "▁mat", + "ched" + ], + [ + "▁m", + "atched" + ], + [ + "▁short", + "age" + ], + [ + "▁Bl", + "ake" + ], + [ + "▁B", + "lake" + ], + [ + "▁Bald", + "win" + ], + [ + "▁Fernand", + "o" + ], + [ + "▁Fern", + "ando" + ], + [ + "plan", + "e" + ], + [ + "pl", + "ane" + ], + [ + "p", + "lane" + ], + [ + "▁occup", + "y" + ], + [ + "▁honor", + "ary" + ], + [ + "▁support", + "er" + ], + [ + "▁supp", + "orter" + ], + [ + "▁Fr", + "a" + ], + [ + "▁F", + "ra" + ], + [ + "▁Cl", + "if" + ], + [ + "▁fre", + "ight" + ], + [ + "▁horse", + "power" + ], + [ + "ule", + "nt" + ], + [ + "ul", + "ent" + ], + [ + "▁path", + "s" + ], + [ + "▁pa", + "ths" + ], + [ + "▁tri", + "angle" + ], + [ + "▁par", + "agraph" + ], + [ + "▁du", + "mp" + ], + [ + "▁d", + "ump" + ], + [ + "▁Engineer", + "s" + ], + [ + "▁Engine", + "ers" + ], + [ + "▁Bo", + "g" + ], + [ + "▁B", + "og" + ], + [ + "▁Cuba", + "n" + ], + [ + "▁Cub", + "an" + ], + [ + "▁Cu", + "ban" + ], + [ + "▁stress", + "ed" + ], + [ + "▁str", + "essed" + ], + [ + "▁st", + "ressed" + ], + [ + "▁contest", + "ed" + ], + [ + "▁cont", + "ested" + ], + [ + "T", + "unes" + ], + [ + "▁Inst", + "it" + ], + [ + "▁In", + "stit" + ], + [ + "▁Ey", + "e" + ], + [ + "▁E", + "ye" + ], + [ + "▁tend", + "er" + ], + [ + "▁ten", + "der" + ], + [ + "▁t", + "ender" + ], + [ + "▁Geoff", + "rey" + ], + [ + "▁Jo", + "b" + ], + [ + "▁J", + "ob" + ], + [ + "▁play", + "able" + ], + [ + "▁decl", + "aring" + ], + [ + "▁national", + "ly" + ], + [ + "▁nation", + "ally" + ], + [ + "▁n", + "ationally" + ], + [ + "▁purch", + "asing" + ], + [ + "id", + "i" + ], + [ + "i", + "di" + ], + [ + "▁ten", + "nis" + ], + [ + "▁t", + "ennis" + ], + [ + "▁worth", + "y" + ], + [ + "▁wor", + "thy" + ], + [ + "▁w", + "orthy" + ], + [ + "▁", + "worthy" + ], + [ + "la", + "r" + ], + [ + "l", + "ar" + ], + [ + "▁ex", + "empl" + ], + [ + "▁corrid", + "or" + ], + [ + "▁mater", + "nal" + ], + [ + "▁ma", + "ternal" + ], + [ + "▁m", + "aternal" + ], + [ + "▁spect", + "ators" + ], + [ + "▁mos", + "qu" + ], + [ + "▁discuss", + "es" + ], + [ + "ov", + "sky" + ], + [ + "▁Par", + "aly" + ], + [ + "▁conclusion", + "s" + ], + [ + "▁con", + "clusions" + ], + [ + "A", + "s" + ], + [ + "▁Imp", + "ort" + ], + [ + "▁Im", + "port" + ], + [ + "▁orchestra", + "l" + ], + [ + "▁orchest", + "ral" + ], + [ + "%", + ")" + ], + [ + "be", + "it" + ], + [ + "▁resemble", + "s" + ], + [ + "▁resemb", + "les" + ], + [ + "▁Lind", + "a" + ], + [ + "▁Lin", + "da" + ], + [ + "▁L", + "inda" + ], + [ + "▁The", + "ory" + ], + [ + "▁Le", + "icester" + ], + [ + "▁Ess", + "ex" + ], + [ + "▁Es", + "sex" + ], + [ + "▁love", + "s" + ], + [ + "▁lov", + "es" + ], + [ + "▁lo", + "ves" + ], + [ + "▁l", + "oves" + ], + [ + "▁186", + "8" + ], + [ + "▁18", + "68" + ], + [ + "▁Wednes", + "day" + ], + [ + "uma", + "r" + ], + [ + "um", + "ar" + ], + [ + "u", + "mar" + ], + [ + "▁intervention", + "s" + ], + [ + "▁inter", + "ventions" + ], + [ + "ias", + "m" + ], + [ + "ia", + "sm" + ], + [ + "i", + "asm" + ], + [ + "▁Cal", + "gary" + ], + [ + "▁Smack", + "Down" + ], + [ + "▁or", + "e" + ], + [ + "▁o", + "re" + ], + [ + "▁", + "ore" + ], + [ + "▁farm", + "er" + ], + [ + "▁far", + "mer" + ], + [ + "▁ess", + "ence" + ], + [ + "▁synth", + "etic" + ], + [ + "▁syn", + "thetic" + ], + [ + "▁initiative", + "s" + ], + [ + "▁initi", + "atives" + ], + [ + "▁Gra", + "d" + ], + [ + "▁Gr", + "ad" + ], + [ + "▁G", + "rad" + ], + [ + "▁Knight", + "s" + ], + [ + "▁Kn", + "ights" + ], + [ + "▁count", + "ed" + ], + [ + "▁coun", + "ted" + ], + [ + "▁co", + "unted" + ], + [ + "▁c", + "ounted" + ], + [ + "▁general", + "s" + ], + [ + "▁genera", + "ls" + ], + [ + "▁gener", + "als" + ], + [ + "▁gen", + "erals" + ], + [ + "▁I", + "B" + ], + [ + "▁Ann", + "ie" + ], + [ + "▁An", + "nie" + ], + [ + "▁halt", + "ed" + ], + [ + "▁hal", + "ted" + ], + [ + "▁phone", + "s" + ], + [ + "▁phon", + "es" + ], + [ + "▁ph", + "ones" + ], + [ + "▁", + "phones" + ], + [ + "▁antibiotic", + "s" + ], + [ + "▁antib", + "iotics" + ], + [ + "▁Hi", + "l" + ], + [ + "▁H", + "il" + ], + [ + "▁Su", + "e" + ], + [ + "▁S", + "ue" + ], + [ + "▁Bra", + "in" + ], + [ + "▁Br", + "ain" + ], + [ + "▁B", + "rain" + ], + [ + "▁Gal", + "ile" + ], + [ + "▁iron", + "cl" + ], + [ + "▁ch", + "ocolate" + ], + [ + "▁Commission", + "er" + ], + [ + "so", + "ver" + ], + [ + "s", + "over" + ], + [ + "▁cop", + "e" + ], + [ + "▁co", + "pe" + ], + [ + "▁c", + "ope" + ], + [ + "▁", + "cope" + ], + [ + "▁Tig", + "er" + ], + [ + "▁Ti", + "ger" + ], + [ + "▁T", + "iger" + ], + [ + "▁ut", + "ter" + ], + [ + "▁", + "utter" + ], + [ + "▁fact", + "ion" + ], + [ + "▁fa", + "ction" + ], + [ + "▁f", + "action" + ], + [ + "▁", + "faction" + ], + [ + "▁Mons", + "ter" + ], + [ + "▁Mon", + "ster" + ], + [ + "▁Ko", + "s" + ], + [ + "▁K", + "os" + ], + [ + "▁Pal", + "l" + ], + [ + "▁Pa", + "ll" + ], + [ + "▁P", + "all" + ], + [ + "▁Bl", + "anc" + ], + [ + "▁Chair", + "man" + ], + [ + "▁comb", + "ining" + ], + [ + "▁obvious", + "ly" + ], + [ + "za", + "n" + ], + [ + "z", + "an" + ], + [ + "ich", + "i" + ], + [ + "ic", + "hi" + ], + [ + "i", + "chi" + ], + [ + "ast", + "on" + ], + [ + "as", + "ton" + ], + [ + "a", + "ston" + ], + [ + "ex", + "ample" + ], + [ + "▁dynamic", + "s" + ], + [ + "▁dynam", + "ics" + ], + [ + "▁dyn", + "amics" + ], + [ + "▁med", + "itation" + ], + [ + "am", + "y" + ], + [ + "a", + "my" + ], + [ + "sp", + "e" + ], + [ + "s", + "pe" + ], + [ + "▁Aren", + "a" + ], + [ + "▁Are", + "na" + ], + [ + "▁Ar", + "ena" + ], + [ + "cl", + "amation" + ], + [ + "▁Ply", + "mouth" + ], + [ + "▁memor", + "able" + ], + [ + "op", + "y" + ], + [ + "o", + "py" + ], + [ + "obi", + "c" + ], + [ + "ob", + "ic" + ], + [ + "▁R", + "BI" + ], + [ + "▁va", + "g" + ], + [ + "▁v", + "ag" + ], + [ + "brate", + "s" + ], + [ + "bra", + "tes" + ], + [ + "br", + "ates" + ], + [ + "b", + "rates" + ], + [ + "▁Plat", + "e" + ], + [ + "▁Pl", + "ate" + ], + [ + "▁suscept", + "ible" + ], + [ + "ap", + "a" + ], + [ + "a", + "pa" + ], + [ + "ill", + "ion" + ], + [ + "▁mass", + "acre" + ], + [ + "ero", + "s" + ], + [ + "er", + "os" + ], + [ + "e", + "ros" + ], + [ + "▁Bre", + "w" + ], + [ + "▁Br", + "ew" + ], + [ + "▁B", + "rew" + ], + [ + "▁frig", + "ate" + ], + [ + "▁current", + "s" + ], + [ + "▁curren", + "ts" + ], + [ + "▁Decl", + "aration" + ], + [ + "ér", + "ard" + ], + [ + "▁to", + "ss" + ], + [ + "▁t", + "oss" + ], + [ + "▁Nor", + "se" + ], + [ + "▁N", + "orse" + ], + [ + "▁uncon", + "s" + ], + [ + "▁unc", + "ons" + ], + [ + "▁un", + "cons" + ], + [ + "▁surg", + "ical" + ], + [ + "▁s", + "urgical" + ], + [ + "/", + "20" + ], + [ + "▁li", + "g" + ], + [ + "▁l", + "ig" + ], + [ + "▁", + "lig" + ], + [ + "▁tear", + "s" + ], + [ + "▁tea", + "rs" + ], + [ + "▁te", + "ars" + ], + [ + "▁t", + "ears" + ], + [ + "▁congreg", + "ation" + ], + [ + "▁vo", + "m" + ], + [ + "▁v", + "om" + ], + [ + "▁Ros", + "a" + ], + [ + "▁Ro", + "sa" + ], + [ + "▁R", + "osa" + ], + [ + "▁was", + "h" + ], + [ + "▁wa", + "sh" + ], + [ + "▁w", + "ash" + ], + [ + "▁Adri", + "an" + ], + [ + "▁Ad", + "rian" + ], + [ + "ell", + "ation" + ], + [ + "el", + "lation" + ], + [ + "▁New", + "port" + ], + [ + "▁Park", + "way" + ], + [ + "▁decl", + "ining" + ], + [ + "▁dec", + "lining" + ], + [ + "▁Tale", + "s" + ], + [ + "▁Tal", + "es" + ], + [ + "▁Ta", + "les" + ], + [ + "▁T", + "ales" + ], + [ + "▁Ste", + "r" + ], + [ + "▁St", + "er" + ], + [ + "▁S", + "ter" + ], + [ + "▁unp", + "reced" + ], + [ + "▁Fan", + "t" + ], + [ + "▁Fa", + "nt" + ], + [ + "▁F", + "ant" + ], + [ + "ester", + "s" + ], + [ + "este", + "rs" + ], + [ + "est", + "ers" + ], + [ + "es", + "ters" + ], + [ + "e", + "sters" + ], + [ + "▁over", + "h" + ], + [ + "▁up", + "rising" + ], + [ + "▁commentator", + "s" + ], + [ + "▁comment", + "ators" + ], + [ + "▁187", + "2" + ], + [ + "▁Ber", + "ry" + ], + [ + "▁Kar", + "en" + ], + [ + "▁Ka", + "ren" + ], + [ + "▁K", + "aren" + ], + [ + "▁anth", + "em" + ], + [ + "▁ant", + "hem" + ], + [ + "▁pressure", + "s" + ], + [ + "▁press", + "ures" + ], + [ + "▁unpreced", + "ented" + ], + [ + "ili", + "ze" + ], + [ + "il", + "ize" + ], + [ + "▁Fa", + "ith" + ], + [ + "▁Barr", + "ett" + ], + [ + "▁Bar", + "rett" + ], + [ + "▁ins", + "cription" + ], + [ + "▁neighborhood", + "s" + ], + [ + "▁du", + "p" + ], + [ + "▁d", + "up" + ], + [ + "▁st", + "y" + ], + [ + "▁s", + "ty" + ], + [ + "▁spar", + "e" + ], + [ + "▁sp", + "are" + ], + [ + "▁upgr", + "ade" + ], + [ + "▁up", + "grade" + ], + [ + "igg", + "ins" + ], + [ + "ig", + "gins" + ], + [ + "▁flag", + "s" + ], + [ + "▁fl", + "ags" + ], + [ + "▁infer", + "ior" + ], + [ + "▁Byz", + "ant" + ], + [ + "▁editor", + "s" + ], + [ + "▁edit", + "ors" + ], + [ + "▁ed", + "itors" + ], + [ + "▁intention", + "s" + ], + [ + "▁intent", + "ions" + ], + [ + "▁m", + "bar" + ], + [ + "▁Met", + "al" + ], + [ + "▁Me", + "tal" + ], + [ + "▁bowl", + "ed" + ], + [ + "▁bow", + "led" + ], + [ + "▁perform", + "s" + ], + [ + "▁perf", + "orms" + ], + [ + "▁alleg", + "ations" + ], + [ + "▁development", + "al" + ], + [ + "▁develop", + "mental" + ], + [ + "▁Josh", + "ua" + ], + [ + "▁honor", + "ed" + ], + [ + "▁hon", + "ored" + ], + [ + "▁Res", + "ident" + ], + [ + "▁northwest", + "ern" + ], + [ + "▁north", + "western" + ], + [ + "P", + "a" + ], + [ + "ab", + "out" + ], + [ + "▁Paraly", + "mp" + ], + [ + "▁prevent", + "s" + ], + [ + "▁prev", + "ents" + ], + [ + "▁R", + "S" + ], + [ + "▁", + "RS" + ], + [ + "▁men", + "u" + ], + [ + "▁div", + "ing" + ], + [ + "▁di", + "ving" + ], + [ + "▁d", + "iving" + ], + [ + "▁prem", + "ye" + ], + [ + "▁pre", + "mye" + ], + [ + "ception", + "s" + ], + [ + "cept", + "ions" + ], + [ + "ce", + "ptions" + ], + [ + "▁ex", + "agger" + ], + [ + "u", + "j" + ], + [ + "▁Ann", + "ual" + ], + [ + "eb", + "e" + ], + [ + "e", + "be" + ], + [ + "unt", + "ing" + ], + [ + "un", + "ting" + ], + [ + "▁limb", + "s" + ], + [ + "▁lim", + "bs" + ], + [ + "▁line", + "d" + ], + [ + "▁lin", + "ed" + ], + [ + "▁li", + "ned" + ], + [ + "▁l", + "ined" + ], + [ + "▁", + "lined" + ], + [ + "▁patrol", + "s" + ], + [ + "▁Al", + "c" + ], + [ + "▁g", + "ig" + ], + [ + "▁amb", + "ig" + ], + [ + "▁i", + "Tunes" + ], + [ + "▁pack", + "ed" + ], + [ + "▁p", + "acked" + ], + [ + "▁accept", + "ing" + ], + [ + "▁exception", + "al" + ], + [ + "▁except", + "ional" + ], + [ + "▁Li", + "c" + ], + [ + "▁L", + "ic" + ], + [ + "▁rap", + "e" + ], + [ + "▁ra", + "pe" + ], + [ + "▁r", + "ape" + ], + [ + "▁rep", + "r" + ], + [ + "▁re", + "pr" + ], + [ + "ail", + "and" + ], + [ + "ai", + "land" + ], + [ + "▁bot", + "an" + ], + [ + "▁Can", + "ucks" + ], + [ + "rew", + "s" + ], + [ + "htm", + "l" + ], + [ + "M", + "ed" + ], + [ + "na", + "r" + ], + [ + "n", + "ar" + ], + [ + "pent", + "er" + ], + [ + "pen", + "ter" + ], + [ + "p", + "enter" + ], + [ + "▁recon", + "cil" + ], + [ + "▁Exped", + "ition" + ], + [ + "▁Dra", + "g" + ], + [ + "▁Dr", + "ag" + ], + [ + "▁D", + "rag" + ], + [ + "▁En", + "ix" + ], + [ + "▁Qu", + "arter" + ], + [ + "li", + "m" + ], + [ + "l", + "im" + ], + [ + "▁flu", + "ct" + ], + [ + "▁fl", + "uct" + ], + [ + "app", + "ropri" + ], + [ + "▁Pok", + "émon" + ], + [ + "▁I", + "T" + ], + [ + "▁", + "IT" + ], + [ + "ias", + "t" + ], + [ + "ia", + "st" + ], + [ + "i", + "ast" + ], + [ + "▁bar", + "n" + ], + [ + "▁b", + "arn" + ], + [ + "▁tro", + "p" + ], + [ + "▁tr", + "op" + ], + [ + "▁t", + "rop" + ], + [ + "▁ju", + "ice" + ], + [ + "▁Bapt", + "ist" + ], + [ + "▁Max", + "well" + ], + [ + "▁inform", + "al" + ], + [ + "▁inf", + "ormal" + ], + [ + "▁preval", + "ent" + ], + [ + "▁Dol", + "l" + ], + [ + "▁Do", + "ll" + ], + [ + "▁D", + "oll" + ], + [ + "▁via", + "ble" + ], + [ + "▁vi", + "able" + ], + [ + "▁v", + "iable" + ], + [ + "▁New", + "found" + ], + [ + "qu", + "al" + ], + [ + "q", + "ual" + ], + [ + "▁11", + "6" + ], + [ + "▁1", + "16" + ], + [ + "▁Le", + "igh" + ], + [ + "▁impact", + "ed" + ], + [ + "▁viol", + "ation" + ], + [ + "▁vi", + "olation" + ], + [ + "▁ob", + "l" + ], + [ + "▁o", + "bl" + ], + [ + "▁au", + "ction" + ], + [ + "▁a", + "uction" + ], + [ + "▁editor", + "ial" + ], + [ + "▁edit", + "orial" + ], + [ + "▁Mana", + "ger" + ], + [ + "▁Man", + "ager" + ], + [ + "▁link", + "ing" + ], + [ + "▁lin", + "king" + ], + [ + "▁l", + "inking" + ], + [ + "val", + "s" + ], + [ + "va", + "ls" + ], + [ + "v", + "als" + ], + [ + "▁fun", + "gi" + ], + [ + "▁trail", + "s" + ], + [ + "▁tra", + "ils" + ], + [ + "▁tr", + "ails" + ], + [ + "▁neuro", + "ns" + ], + [ + "▁neur", + "ons" + ], + [ + "▁neu", + "rons" + ], + [ + "▁flex", + "ibility" + ], + [ + "E", + "E" + ], + [ + "▁at", + "om" + ], + [ + "▁step", + "ped" + ], + [ + "▁ste", + "pped" + ], + [ + "▁August", + "us" + ], + [ + "▁instruct", + "or" + ], + [ + "▁mas", + "t" + ], + [ + "▁ma", + "st" + ], + [ + "▁m", + "ast" + ], + [ + "▁furn", + "iture" + ], + [ + "t", + "z" + ], + [ + "▁met", + "ap" + ], + [ + "▁va", + "ult" + ], + [ + "▁v", + "ault" + ], + [ + "▁roll", + "er" + ], + [ + "▁ro", + "ller" + ], + [ + "▁post", + "hum" + ], + [ + "p", + "a" + ], + [ + "▁Luc", + "y" + ], + [ + "▁Lu", + "cy" + ], + [ + "iliar", + "y" + ], + [ + "ilia", + "ry" + ], + [ + "ili", + "ary" + ], + [ + "il", + "iary" + ], + [ + "▁sn", + "e" + ], + [ + "▁s", + "ne" + ], + [ + "▁truck", + "s" + ], + [ + "▁tr", + "ucks" + ], + [ + "▁prec", + "urs" + ], + [ + "▁27", + "0" + ], + [ + "▁2", + "70" + ], + [ + "▁ni", + "c" + ], + [ + "▁n", + "ic" + ], + [ + "▁", + "nic" + ], + [ + "lett", + "e" + ], + [ + "let", + "te" + ], + [ + "l", + "ette" + ], + [ + "▁sit", + "s" + ], + [ + "▁si", + "ts" + ], + [ + "▁s", + "its" + ], + [ + "▁reg", + "ulate" + ], + [ + "▁decrease", + "s" + ], + [ + "▁decre", + "ases" + ], + [ + "▁None", + "theless" + ], + [ + "▁Non", + "etheless" + ], + [ + "ere", + "n" + ], + [ + "er", + "en" + ], + [ + "e", + "ren" + ], + [ + "▁det", + "on" + ], + [ + "▁de", + "ton" + ], + [ + "▁d", + "eton" + ], + [ + "▁fuel", + "s" + ], + [ + "▁fu", + "els" + ], + [ + "avel", + "ength" + ], + [ + "inter", + "s" + ], + [ + "int", + "ers" + ], + [ + "in", + "ters" + ], + [ + "▁monarch", + "y" + ], + [ + "▁mon", + "archy" + ], + [ + "▁meaning", + "ful" + ], + [ + "▁fon", + "d" + ], + [ + "▁fo", + "nd" + ], + [ + "▁f", + "ond" + ], + [ + "▁Pre", + "vious" + ], + [ + "end", + "um" + ], + [ + "▁Berm", + "uda" + ], + [ + "▁bic", + "y" + ], + [ + "▁bi", + "cy" + ], + [ + "▁b", + "icy" + ], + [ + "▁pl", + "ag" + ], + [ + "▁reg", + "ulatory" + ], + [ + "N", + "S" + ], + [ + "▁Cycl", + "one" + ], + [ + "▁lower", + "ed" + ], + [ + "▁low", + "ered" + ], + [ + "▁T", + "i" + ], + [ + "di", + "ct" + ], + [ + "d", + "ict" + ], + [ + "her", + "o" + ], + [ + "he", + "ro" + ], + [ + "h", + "ero" + ], + [ + "▁Ri", + "ley" + ], + [ + "▁R", + "iley" + ], + [ + "▁sheet", + "s" + ], + [ + "▁she", + "ets" + ], + [ + "▁behavior", + "al" + ], + [ + "▁behavi", + "oral" + ], + [ + "▁fe", + "as" + ], + [ + "▁f", + "eas" + ], + [ + "ibl", + "ings" + ], + [ + "ib", + "lings" + ], + [ + "▁Korean", + "s" + ], + [ + "▁Korea", + "ns" + ], + [ + "▁Kore", + "ans" + ], + [ + "▁Look", + "ing" + ], + [ + "▁Lo", + "oking" + ], + [ + "▁nickname", + "d" + ], + [ + "▁nick", + "named" + ], + [ + "▁Ve", + "ter" + ], + [ + "▁V", + "eter" + ], + [ + "▁Shell", + "ey" + ], + [ + "▁Shel", + "ley" + ], + [ + "▁success", + "es" + ], + [ + "▁succ", + "esses" + ], + [ + "oa", + "n" + ], + [ + "o", + "an" + ], + [ + "▁lawyer", + "s" + ], + [ + "▁law", + "yers" + ], + [ + "▁Wik", + "ipedia" + ], + [ + "ang", + "a" + ], + [ + "an", + "ga" + ], + [ + "▁Id", + "e" + ], + [ + "▁I", + "de" + ], + [ + "▁Co", + "hen" + ], + [ + "lect", + "ric" + ], + [ + "▁Cap", + "itol" + ], + [ + "▁Contem", + "porary" + ], + [ + "nd", + "ez" + ], + [ + "n", + "dez" + ], + [ + "▁Advance", + "d" + ], + [ + "▁Adv", + "anced" + ], + [ + "▁Ad", + "vanced" + ], + [ + "ogen", + "s" + ], + [ + "og", + "ens" + ], + [ + "▁art", + "ic" + ], + [ + "▁ar", + "tic" + ], + [ + "▁antib", + "odies" + ], + [ + "▁nation", + "wide" + ], + [ + "▁accelerate", + "d" + ], + [ + "▁acceler", + "ated" + ], + [ + "▁accel", + "erated" + ], + [ + "▁sustain", + "ability" + ], + [ + "▁H", + "M" + ], + [ + "▁qu", + "ot" + ], + [ + "▁belong", + "s" + ], + [ + "▁bel", + "ongs" + ], + [ + "▁Chand", + "ler" + ], + [ + "ume", + "r" + ], + [ + "um", + "er" + ], + [ + "u", + "mer" + ], + [ + "itar", + "s" + ], + [ + "ita", + "rs" + ], + [ + "it", + "ars" + ], + [ + "▁susp", + "ic" + ], + [ + "aut", + "hor" + ], + [ + "▁tale", + "s" + ], + [ + "▁tal", + "es" + ], + [ + "▁ta", + "les" + ], + [ + "▁t", + "ales" + ], + [ + "▁scheme", + "s" + ], + [ + "▁schem", + "es" + ], + [ + "▁sche", + "mes" + ], + [ + "▁warrior", + "s" + ], + [ + "▁warri", + "ors" + ], + [ + "▁WW", + "F" + ], + [ + "▁Heat", + "h" + ], + [ + "▁He", + "ath" + ], + [ + "▁infect", + "ious" + ], + [ + "ci", + "p" + ], + [ + "c", + "ip" + ], + [ + "wo", + "n" + ], + [ + "w", + "on" + ], + [ + "▁vo", + "w" + ], + [ + "▁v", + "ow" + ], + [ + "▁Han", + "c" + ], + [ + "▁H", + "anc" + ], + [ + "▁ann", + "oy" + ], + [ + "▁sl", + "ide" + ], + [ + "▁n", + "a" + ], + [ + "▁", + "na" + ], + [ + "▁J", + "in" + ], + [ + "▁Sa", + "h" + ], + [ + "▁S", + "ah" + ], + [ + "▁ille", + "g" + ], + [ + "▁ill", + "eg" + ], + [ + "▁il", + "leg" + ], + [ + "▁Dud", + "ley" + ], + [ + "▁Mot", + "ion" + ], + [ + "▁M", + "otion" + ], + [ + "o", + "i" + ], + [ + "▁D", + "y" + ], + [ + "▁discip", + "l" + ], + [ + "▁disc", + "ipl" + ], + [ + "▁under", + "graduate" + ], + [ + "▁Ra", + "h" + ], + [ + "▁R", + "ah" + ], + [ + "▁Cho", + "p" + ], + [ + "▁Ch", + "op" + ], + [ + "▁C", + "hop" + ], + [ + "▁catal", + "og" + ], + [ + "▁physician", + "s" + ], + [ + "▁physic", + "ians" + ], + [ + "▁phys", + "icians" + ], + [ + "ust", + "y" + ], + [ + "us", + "ty" + ], + [ + "▁adm", + "ission" + ], + [ + "▁ad", + "mission" + ], + [ + "▁g", + "a" + ], + [ + "▁", + "ga" + ], + [ + "▁und", + "e" + ], + [ + "▁un", + "de" + ], + [ + "▁Bos", + "nia" + ], + [ + "sta", + "r" + ], + [ + "st", + "ar" + ], + [ + "s", + "tar" + ], + [ + "▁Ric", + "e" + ], + [ + "▁Ri", + "ce" + ], + [ + "▁R", + "ice" + ], + [ + "▁bou", + "t" + ], + [ + "▁bo", + "ut" + ], + [ + "▁b", + "out" + ], + [ + "▁convict", + "ion" + ], + [ + "▁conv", + "iction" + ], + [ + "nold", + "s" + ], + [ + "n", + "olds" + ], + [ + "▁Le", + "ft" + ], + [ + "ura", + "ble" + ], + [ + "ur", + "able" + ], + [ + "▁Saint", + "s" + ], + [ + "▁Sa", + "ints" + ], + [ + "▁S", + "aints" + ], + [ + "▁cool", + "er" + ], + [ + "▁co", + "oler" + ], + [ + "▁libr", + "aries" + ], + [ + "▁Newfound", + "land" + ], + [ + "9", + "2" + ], + [ + "▁creat", + "ivity" + ], + [ + "▁counterpart", + "s" + ], + [ + "▁counter", + "parts" + ], + [ + "▁u", + "l" + ], + [ + "▁", + "ul" + ], + [ + "▁ph", + "yl" + ], + [ + "▁enthusi", + "astic" + ], + [ + "▁Ro", + "t" + ], + [ + "▁R", + "ot" + ], + [ + "▁Cro", + "m" + ], + [ + "▁Cr", + "om" + ], + [ + "▁C", + "rom" + ], + [ + "▁Fe", + "ar" + ], + [ + "▁F", + "ear" + ], + [ + "▁orbit", + "al" + ], + [ + "▁orb", + "ital" + ], + [ + "▁redes", + "ign" + ], + [ + "▁X", + "V" + ], + [ + "▁Writ", + "ten" + ], + [ + "ug", + "u" + ], + [ + "u", + "gu" + ], + [ + "orp", + "e" + ], + [ + "or", + "pe" + ], + [ + "ine", + "e" + ], + [ + "in", + "ee" + ], + [ + "▁g", + "ym" + ], + [ + "ift", + "ing" + ], + [ + "if", + "ting" + ], + [ + "▁che", + "ese" + ], + [ + "▁joint", + "s" + ], + [ + "▁join", + "ts" + ], + [ + "▁jo", + "ints" + ], + [ + "▁mid", + "night" + ], + [ + "rie", + "t" + ], + [ + "ri", + "et" + ], + [ + "r", + "iet" + ], + [ + "▁Ra", + "v" + ], + [ + "▁R", + "av" + ], + [ + "anza", + "s" + ], + [ + "anz", + "as" + ], + [ + "▁Bel", + "ow" + ], + [ + "▁Be", + "low" + ], + [ + "▁Di", + "ana" + ], + [ + "▁D", + "iana" + ], + [ + "▁Rhod", + "e" + ], + [ + "▁Rh", + "ode" + ], + [ + "▁fort", + "une" + ], + [ + "▁Tre", + "asury" + ], + [ + "á", + "r" + ], + [ + "ok", + "tè" + ], + [ + "o", + "ktè" + ], + [ + "▁imp", + "air" + ], + [ + "▁Verm", + "ont" + ], + [ + "▁Ver", + "mont" + ], + [ + "▁merc", + "ury" + ], + [ + "▁disp", + "osal" + ], + [ + "P", + "D" + ], + [ + "ro", + "b" + ], + [ + "r", + "ob" + ], + [ + "ari", + "n" + ], + [ + "ar", + "in" + ], + [ + "a", + "rin" + ], + [ + "▁Vi", + "v" + ], + [ + "▁V", + "iv" + ], + [ + "▁slow", + "ed" + ], + [ + "▁sl", + "owed" + ], + [ + "▁preced", + "ed" + ], + [ + "▁prec", + "eded" + ], + [ + "▁Ra", + "re" + ], + [ + "▁R", + "are" + ], + [ + "▁Gro", + "ss" + ], + [ + "▁Gr", + "oss" + ], + [ + "▁G", + "ross" + ], + [ + "▁shift", + "s" + ], + [ + "▁shif", + "ts" + ], + [ + "▁sh", + "ifts" + ], + [ + "▁La", + "y" + ], + [ + "▁L", + "ay" + ], + [ + "▁ost", + "e" + ], + [ + "▁os", + "te" + ], + [ + "▁o", + "ste" + ], + [ + "▁Cor", + "d" + ], + [ + "▁Co", + "rd" + ], + [ + "▁C", + "ord" + ], + [ + "▁Ya", + "ng" + ], + [ + "▁Y", + "ang" + ], + [ + "▁Tak", + "ing" + ], + [ + "▁Ta", + "king" + ], + [ + "▁T", + "aking" + ], + [ + "rar", + "ed" + ], + [ + "ra", + "red" + ], + [ + "r", + "ared" + ], + [ + "▁bus", + "es" + ], + [ + "▁bu", + "ses" + ], + [ + "▁b", + "uses" + ], + [ + "▁d", + "olph" + ], + [ + "▁observer", + "s" + ], + [ + "▁observe", + "rs" + ], + [ + "▁observ", + "ers" + ], + [ + "▁eng", + "ra" + ], + [ + "▁en", + "gra" + ], + [ + "▁new", + "er" + ], + [ + "▁ne", + "wer" + ], + [ + "▁text", + "ure" + ], + [ + "▁tex", + "ture" + ], + [ + "rox", + "imately" + ], + [ + "▁Bus", + "ch" + ], + [ + "▁Bu", + "sch" + ], + [ + "▁programme", + "s" + ], + [ + "▁program", + "mes" + ], + [ + "dom", + "s" + ], + [ + "do", + "ms" + ], + [ + "d", + "oms" + ], + [ + "▁jw", + "e" + ], + [ + "▁j", + "we" + ], + [ + "▁displace", + "ment" + ], + [ + "add", + "er" + ], + [ + "ad", + "der" + ], + [ + "▁Ad", + "ult" + ], + [ + "▁obstacle", + "s" + ], + [ + "▁obst", + "acles" + ], + [ + "ool", + "s" + ], + [ + "oo", + "ls" + ], + [ + "o", + "ols" + ], + [ + "▁dece", + "ased" + ], + [ + "▁agreement", + "s" + ], + [ + "▁agree", + "ments" + ], + [ + "▁agre", + "ements" + ], + [ + "▁adaptation", + "s" + ], + [ + "▁adapt", + "ations" + ], + [ + "▁Jane", + "t" + ], + [ + "▁Jan", + "et" + ], + [ + "▁Ja", + "net" + ], + [ + "▁discontin", + "ued" + ], + [ + "O", + "s" + ], + [ + "▁pl", + "ut" + ], + [ + "▁dozen", + "s" + ], + [ + "▁do", + "zens" + ], + [ + "▁strip", + "ped" + ], + [ + "▁stri", + "pped" + ], + [ + "▁str", + "ipped" + ], + [ + "▁Associate", + "d" + ], + [ + "▁Associ", + "ated" + ], + [ + "gr", + "a" + ], + [ + "g", + "ra" + ], + [ + "▁s", + "i" + ], + [ + "▁trace", + "s" + ], + [ + "▁tra", + "ces" + ], + [ + "▁tr", + "aces" + ], + [ + "▁crown", + "ed" + ], + [ + "▁crow", + "ned" + ], + [ + "▁cr", + "owned" + ], + [ + "▁Log", + "an" + ], + [ + "▁Lo", + "gan" + ], + [ + "▁L", + "ogan" + ], + [ + "▁Alej", + "andro" + ], + [ + "▁Per", + "iod" + ], + [ + "enh", + "ower" + ], + [ + "▁Vis", + "ual" + ], + [ + "▁Ne", + "ither" + ], + [ + "▁Sch", + "w" + ], + [ + "▁S", + "chw" + ], + [ + "▁opt", + "ed" + ], + [ + "▁op", + "ted" + ], + [ + "▁melt", + "ing" + ], + [ + "▁mel", + "ting" + ], + [ + "▁AN", + "D" + ], + [ + "▁missile", + "s" + ], + [ + "▁miss", + "iles" + ], + [ + "▁consum", + "ing" + ], + [ + "▁cons", + "uming" + ], + [ + "▁inv", + "itation" + ], + [ + "aff", + "e" + ], + [ + "af", + "fe" + ], + [ + "a", + "ffe" + ], + [ + "ror", + "s" + ], + [ + "ro", + "rs" + ], + [ + "r", + "ors" + ], + [ + "iza", + "ble" + ], + [ + "iz", + "able" + ], + [ + "▁pe", + "c" + ], + [ + "▁p", + "ec" + ], + [ + "▁ren", + "t" + ], + [ + "▁re", + "nt" + ], + [ + "▁r", + "ent" + ], + [ + "▁", + "rent" + ], + [ + "▁Cha", + "se" + ], + [ + "▁Ch", + "ase" + ], + [ + "▁crowd", + "s" + ], + [ + "▁crow", + "ds" + ], + [ + "▁187", + "9" + ], + [ + "▁end", + "e" + ], + [ + "▁en", + "de" + ], + [ + "▁Dam", + "age" + ], + [ + "▁Sur", + "rey" + ], + [ + "▁sexual", + "ity" + ], + [ + "ishn", + "a" + ], + [ + "ish", + "na" + ], + [ + "dis", + "c" + ], + [ + "di", + "sc" + ], + [ + "d", + "isc" + ], + [ + "hol", + "m" + ], + [ + "rin", + "a" + ], + [ + "ri", + "na" + ], + [ + "r", + "ina" + ], + [ + "oca", + "te" + ], + [ + "oc", + "ate" + ], + [ + "▁Comb", + "at" + ], + [ + "▁Com", + "bat" + ], + [ + "▁C", + "ombat" + ], + [ + "▁impl", + "ies" + ], + [ + "▁imp", + "lies" + ], + [ + "▁Thai", + "land" + ], + [ + "▁Th", + "ailand" + ], + [ + "▁continu", + "ally" + ], + [ + "▁contin", + "ually" + ], + [ + "▁expression", + "s" + ], + [ + "▁express", + "ions" + ], + [ + "▁Or", + "d" + ], + [ + "▁O", + "rd" + ], + [ + "▁pal", + "m" + ], + [ + "▁p", + "alm" + ], + [ + "▁regist", + "ration" + ], + [ + "ross", + "e" + ], + [ + "ros", + "se" + ], + [ + "▁Priv", + "ate" + ], + [ + "▁ens", + "emble" + ], + [ + "▁alleged", + "ly" + ], + [ + "e", + "a" + ], + [ + "▁Pun", + "k" + ], + [ + "▁P", + "unk" + ], + [ + "▁br", + "it" + ], + [ + "▁b", + "rit" + ], + [ + "▁lad", + "y" + ], + [ + "▁la", + "dy" + ], + [ + "▁l", + "ady" + ], + [ + "▁dose", + "s" + ], + [ + "▁dos", + "es" + ], + [ + "▁do", + "ses" + ], + [ + "▁d", + "oses" + ], + [ + "so", + "on" + ], + [ + "s", + "oon" + ], + [ + "▁Ko", + "m" + ], + [ + "▁K", + "om" + ], + [ + "▁Chic", + "k" + ], + [ + "▁Chi", + "ck" + ], + [ + "▁Ch", + "ick" + ], + [ + "▁irrig", + "ation" + ], + [ + "é", + "âtre" + ], + [ + "▁Fr", + "aser" + ], + [ + "▁activ", + "ist" + ], + [ + "▁Lanc", + "aster" + ], + [ + "▁Lan", + "caster" + ], + [ + "▁3", + ":" + ], + [ + "▁15", + "7" + ], + [ + "▁Ke", + "s" + ], + [ + "▁K", + "es" + ], + [ + "▁Lo", + "t" + ], + [ + "▁L", + "ot" + ], + [ + "lan", + "ce" + ], + [ + "la", + "nce" + ], + [ + "l", + "ance" + ], + [ + "▁Frans", + "e" + ], + [ + "▁Fran", + "se" + ], + [ + "▁phrase", + "s" + ], + [ + "▁phr", + "ases" + ], + [ + "me", + "ga" + ], + [ + "▁21", + "0" + ], + [ + "▁2", + "10" + ], + [ + "▁an", + "arch" + ], + [ + "ox", + "ide" + ], + [ + "▁P", + "anyòl" + ], + [ + "▁ps", + "y" + ], + [ + "▁p", + "sy" + ], + [ + "▁", + "psy" + ], + [ + "▁Bir", + "th" + ], + [ + "▁B", + "irth" + ], + [ + "▁Sau", + "di" + ], + [ + "▁Sa", + "udi" + ], + [ + "▁came", + "o" + ], + [ + "▁cam", + "eo" + ], + [ + "▁ren", + "owned" + ], + [ + "▁contamin", + "ated" + ], + [ + "▁Ram", + "s" + ], + [ + "▁Ra", + "ms" + ], + [ + "▁R", + "ams" + ], + [ + "▁Pl", + "aza" + ], + [ + "▁G", + "érard" + ], + [ + "▁Mec", + "han" + ], + [ + "▁Me", + "chan" + ], + [ + "▁dece", + "nt" + ], + [ + "▁dec", + "ent" + ], + [ + "▁de", + "cent" + ], + [ + "▁sib", + "lings" + ], + [ + "▁s", + "iblings" + ], + [ + "▁femin", + "ist" + ], + [ + "▁fe", + "minist" + ], + [ + "▁factor", + "ies" + ], + [ + "▁facto", + "ries" + ], + [ + "▁fact", + "ories" + ], + [ + "ho", + "t" + ], + [ + "h", + "ot" + ], + [ + "▁sub", + "urb" + ], + [ + "▁double", + "d" + ], + [ + "▁doub", + "led" + ], + [ + "▁Adv", + "ance" + ], + [ + "▁Ad", + "vance" + ], + [ + "▁lik", + "elihood" + ], + [ + "ipe", + "l" + ], + [ + "ip", + "el" + ], + [ + "▁V", + "ul" + ], + [ + "▁G", + "ospel" + ], + [ + "▁Place", + "s" + ], + [ + "▁Pl", + "aces" + ], + [ + "▁Tim", + "ber" + ], + [ + "▁Ti", + "mber" + ], + [ + "▁st", + "amp" + ], + [ + "▁conduct", + "or" + ], + [ + "at", + "ri" + ], + [ + "▁bo", + "om" + ], + [ + "▁b", + "oom" + ], + [ + "agon", + "al" + ], + [ + "ago", + "nal" + ], + [ + "ag", + "onal" + ], + [ + "▁Bene", + "d" + ], + [ + "▁Ben", + "ed" + ], + [ + "▁Be", + "ned" + ], + [ + "▁B", + "ened" + ], + [ + "▁Sh", + "adow" + ], + [ + "▁Hanc", + "ock" + ], + [ + "▁Han", + "cock" + ], + [ + "ilo", + "gy" + ], + [ + "il", + "ogy" + ], + [ + "▁hyd", + "ro" + ], + [ + "▁rac", + "ism" + ], + [ + "▁10", + "3" + ], + [ + "▁si", + "c" + ], + [ + "▁s", + "ic" + ], + [ + "▁Star", + "r" + ], + [ + "▁St", + "arr" + ], + [ + "▁emerge", + "nce" + ], + [ + "▁emerg", + "ence" + ], + [ + "▁emer", + "gence" + ], + [ + "▁evaluate", + "d" + ], + [ + "▁eval", + "uated" + ], + [ + "form", + "ula" + ], + [ + "▁conclud", + "e" + ], + [ + "▁Qu", + "r" + ], + [ + "▁Q", + "ur" + ], + [ + "s", + "burg" + ], + [ + "▁like", + "s" + ], + [ + "▁lik", + "es" + ], + [ + "▁li", + "kes" + ], + [ + "▁l", + "ikes" + ], + [ + "pective", + "s" + ], + [ + "pect", + "ives" + ], + [ + "▁molec", + "ule" + ], + [ + "▁En", + "cyclopedia" + ], + [ + "▁honor", + "s" + ], + [ + "▁hon", + "ors" + ], + [ + "▁stat", + "ic" + ], + [ + "▁st", + "atic" + ], + [ + "du", + "e" + ], + [ + "d", + "ue" + ], + [ + "▁184", + "8" + ], + [ + "▁18", + "48" + ], + [ + "▁Per", + "u" + ], + [ + "▁Pe", + "ru" + ], + [ + "▁Th", + "ink" + ], + [ + "▁wheel", + "s" + ], + [ + "▁whe", + "els" + ], + [ + "▁hand", + "ful" + ], + [ + "▁minim", + "ize" + ], + [ + "▁Eis", + "enhower" + ], + [ + "▁accumulate", + "d" + ], + [ + "▁accum", + "ulated" + ], + [ + "▁Lo", + "r" + ], + [ + "▁L", + "or" + ], + [ + "▁Po", + "s" + ], + [ + "▁P", + "os" + ], + [ + "▁juven", + "ile" + ], + [ + "▁nutri", + "ent" + ], + [ + "▁Ger", + "ald" + ], + [ + "▁G", + "erald" + ], + [ + "▁lecture", + "s" + ], + [ + "▁lect", + "ures" + ], + [ + "▁Mal", + "e" + ], + [ + "▁Ma", + "le" + ], + [ + "▁M", + "ale" + ], + [ + "▁in", + "ex" + ], + [ + "▁Lyn", + "ch" + ], + [ + "▁cons", + "p" + ], + [ + "▁con", + "sp" + ], + [ + "▁Daniel", + "s" + ], + [ + "▁calib", + "er" + ], + [ + "▁cal", + "iber" + ], + [ + "▁realize", + "s" + ], + [ + "▁real", + "izes" + ], + [ + "▁teaching", + "s" + ], + [ + "▁teach", + "ings" + ], + [ + "fa", + "m" + ], + [ + "f", + "am" + ], + [ + "ause", + "s" + ], + [ + "aus", + "es" + ], + [ + "au", + "ses" + ], + [ + "a", + "uses" + ], + [ + "gen", + "cy" + ], + [ + "g", + "ency" + ], + [ + "▁cost", + "ly" + ], + [ + "▁indic", + "ation" + ], + [ + "▁ind", + "ication" + ], + [ + "▁sp", + "atial" + ], + [ + "▁enthusi", + "asm" + ], + [ + "▁enthus", + "iasm" + ], + [ + "▁incred", + "ible" + ], + [ + "▁correspond", + "ence" + ], + [ + "▁12", + "8" + ], + [ + "▁1", + "28" + ], + [ + "▁Ag", + "re" + ], + [ + "▁A", + "gre" + ], + [ + "▁w", + "ise" + ], + [ + "▁", + "wise" + ], + [ + "asi", + "s" + ], + [ + "as", + "is" + ], + [ + "a", + "sis" + ], + [ + "ay", + "ette" + ], + [ + "▁Mount", + "ed" + ], + [ + "▁Moun", + "ted" + ], + [ + "▁Mo", + "unted" + ], + [ + "▁M", + "ounted" + ], + [ + "▁ant", + "ioxid" + ], + [ + "gro", + "up" + ], + [ + "gr", + "oup" + ], + [ + "g", + "roup" + ], + [ + "▁elect", + "r" + ], + [ + "▁inc", + "idence" + ], + [ + "9", + ")" + ], + [ + "▁pound", + "er" + ], + [ + "▁po", + "under" + ], + [ + "▁disl", + "iked" + ], + [ + "▁background", + "s" + ], + [ + "▁back", + "grounds" + ], + [ + "ovic", + "h" + ], + [ + "ov", + "ich" + ], + [ + "▁enlar", + "ged" + ], + [ + "▁inn", + "ocent" + ], + [ + "▁cre", + "e" + ], + [ + "▁cr", + "ee" + ], + [ + "▁c", + "ree" + ], + [ + "▁Ir", + "ving" + ], + [ + "▁comm", + "od" + ], + [ + "▁com", + "mod" + ], + [ + "▁c", + "ommod" + ], + [ + "▁Arch", + "itect" + ], + [ + "▁Nash", + "ville" + ], + [ + "▁Adventure", + "s" + ], + [ + "▁Advent", + "ures" + ], + [ + "▁Cy", + "p" + ], + [ + "▁C", + "yp" + ], + [ + "▁exp", + "end" + ], + [ + "▁ex", + "pend" + ], + [ + "▁guide", + "s" + ], + [ + "▁gu", + "ides" + ], + [ + "▁league", + "s" + ], + [ + "▁le", + "agues" + ], + [ + "ka", + "n" + ], + [ + "k", + "an" + ], + [ + "▁mod", + "ule" + ], + [ + "▁mo", + "dule" + ], + [ + "▁Fa", + "n" + ], + [ + "▁F", + "an" + ], + [ + "isc", + "al" + ], + [ + "is", + "cal" + ], + [ + "▁202", + "1" + ], + [ + "▁20", + "21" + ], + [ + "▁dir", + "t" + ], + [ + "▁d", + "irt" + ], + [ + "▁Word", + "s" + ], + [ + "▁Wor", + "ds" + ], + [ + "▁W", + "ords" + ], + [ + "▁Prest", + "on" + ], + [ + "▁Pres", + "ton" + ], + [ + "▁Pre", + "ston" + ], + [ + "▁Pr", + "eston" + ], + [ + "▁bats", + "man" + ], + [ + "▁pun", + "ct" + ], + [ + "▁p", + "unct" + ], + [ + "▁insert", + "ed" + ], + [ + "▁ins", + "erted" + ], + [ + "wa", + "ffe" + ], + [ + "w", + "affe" + ], + [ + "▁where", + "by" + ], + [ + "▁tan", + "g" + ], + [ + "▁ta", + "ng" + ], + [ + "▁t", + "ang" + ], + [ + "▁Beaut", + "iful" + ], + [ + "▁aest", + "hetic" + ], + [ + "▁fort", + "ified" + ], + [ + "ie", + "v" + ], + [ + "i", + "ev" + ], + [ + "adi", + "c" + ], + [ + "ad", + "ic" + ], + [ + "ois", + "e" + ], + [ + "oi", + "se" + ], + [ + "o", + "ise" + ], + [ + "▁Glen", + "n" + ], + [ + "▁Gl", + "enn" + ], + [ + "▁det", + "ached" + ], + [ + "▁recycl", + "ing" + ], + [ + "pl", + "us" + ], + [ + "▁Li", + "k" + ], + [ + "▁L", + "ik" + ], + [ + "oti", + "lla" + ], + [ + "ot", + "illa" + ], + [ + "▁Wol", + "ver" + ], + [ + "▁deliver", + "ing" + ], + [ + "5", + "," + ], + [ + "▁p", + "s" + ], + [ + "▁", + "ps" + ], + [ + "le", + "af" + ], + [ + "ch", + "ron" + ], + [ + "▁Sp", + "in" + ], + [ + "▁S", + "pin" + ], + [ + "▁W", + "ool" + ], + [ + "igr", + "ant" + ], + [ + "ig", + "rant" + ], + [ + "▁certific", + "ation" + ], + [ + "▁cert", + "ification" + ], + [ + "rol", + "e" + ], + [ + "ro", + "le" + ], + [ + "r", + "ole" + ], + [ + "au", + "er" + ], + [ + "a", + "uer" + ], + [ + "▁bra", + "ss" + ], + [ + "▁br", + "ass" + ], + [ + "▁teen", + "s" + ], + [ + "▁te", + "ens" + ], + [ + "▁vitamin", + "s" + ], + [ + "▁vit", + "amins" + ], + [ + "▁negoti", + "ate" + ], + [ + "pa", + "y" + ], + [ + "p", + "ay" + ], + [ + "▁fl", + "aw" + ], + [ + "▁f", + "law" + ], + [ + "op", + "ular" + ], + [ + "▁joke", + "s" + ], + [ + "▁jo", + "kes" + ], + [ + "▁j", + "okes" + ], + [ + "▁ske", + "let" + ], + [ + "▁Bulgar", + "ia" + ], + [ + "▁Finn", + "ish" + ], + [ + "▁Tues", + "day" + ], + [ + "▁entertain", + "ing" + ], + [ + "▁entert", + "aining" + ], + [ + "▁enter", + "taining" + ], + [ + "▁N", + "E" + ], + [ + "▁la", + "v" + ], + [ + "▁l", + "av" + ], + [ + "▁", + "lav" + ], + [ + "▁Pre", + "d" + ], + [ + "▁Pr", + "ed" + ], + [ + "▁P", + "red" + ], + [ + "▁blow", + "n" + ], + [ + "▁blo", + "wn" + ], + [ + "▁bl", + "own" + ], + [ + "▁Sel", + "ect" + ], + [ + "▁Se", + "lect" + ], + [ + "%", + "." + ], + [ + "▁cor", + "al" + ], + [ + "▁co", + "ral" + ], + [ + "▁c", + "oral" + ], + [ + "▁teen", + "age" + ], + [ + "▁16", + "8" + ], + [ + "▁1", + "68" + ], + [ + "▁Mann", + "ing" + ], + [ + "▁Man", + "ning" + ], + [ + "▁gas", + "oline" + ], + [ + "bra", + "l" + ], + [ + "br", + "al" + ], + [ + "b", + "ral" + ], + [ + "▁gener", + "ic" + ], + [ + "▁gene", + "ric" + ], + [ + "▁mar", + "itime" + ], + [ + "▁conven", + "ient" + ], + [ + "▁Shar", + "p" + ], + [ + "▁Sh", + "arp" + ], + [ + "▁guitar", + "s" + ], + [ + "▁gu", + "itars" + ], + [ + "▁Ku", + "b" + ], + [ + "▁K", + "ub" + ], + [ + "▁av", + "en" + ], + [ + "▁a", + "ven" + ], + [ + "▁", + "aven" + ], + [ + "▁Ven", + "ez" + ], + [ + "▁Ve", + "nez" + ], + [ + "▁V", + "enez" + ], + [ + "▁save", + "s" + ], + [ + "▁sav", + "es" + ], + [ + "▁sa", + "ves" + ], + [ + "▁s", + "aves" + ], + [ + "▁domin", + "ance" + ], + [ + "▁co", + "v" + ], + [ + "▁c", + "ov" + ], + [ + "onne", + "ll" + ], + [ + "onn", + "ell" + ], + [ + "on", + "nell" + ], + [ + "▁Pres", + "ent" + ], + [ + "▁P", + "resent" + ], + [ + "▁bru", + "sh" + ], + [ + "▁br", + "ush" + ], + [ + "▁b", + "rush" + ], + [ + "▁", + "brush" + ], + [ + "▁adv", + "ers" + ], + [ + "▁ad", + "vers" + ], + [ + "▁coordin", + "ation" + ], + [ + "▁co", + "ordination" + ], + [ + "▁odd", + "s" + ], + [ + "▁od", + "ds" + ], + [ + "▁intr", + "a" + ], + [ + "▁int", + "ra" + ], + [ + "▁in", + "tra" + ], + [ + "▁dies", + "el" + ], + [ + "▁die", + "sel" + ], + [ + "▁d", + "iesel" + ], + [ + "▁12", + "6" + ], + [ + "▁1", + "26" + ], + [ + "▁Pop", + "ular" + ], + [ + "▁P", + "opular" + ], + [ + "▁purs", + "uing" + ], + [ + "▁Bal", + "k" + ], + [ + "▁B", + "alk" + ], + [ + "ér", + "ic" + ], + [ + "é", + "ric" + ], + [ + "▁Armen", + "ia" + ], + [ + "▁Arm", + "enia" + ], + [ + "▁philosoph", + "er" + ], + [ + "▁philos", + "opher" + ], + [ + "▁Subsequent", + "ly" + ], + [ + "▁Sub", + "sequently" + ], + [ + "th", + "s" + ], + [ + "▁11", + "3" + ], + [ + "▁1", + "13" + ], + [ + "olog", + "ic" + ], + [ + "olo", + "gic" + ], + [ + "▁Wars", + "aw" + ], + [ + "▁ex", + "empt" + ], + [ + "▁locomot", + "ive" + ], + [ + "▁dish", + "es" + ], + [ + "▁dis", + "hes" + ], + [ + "▁d", + "ishes" + ], + [ + "gi", + "c" + ], + [ + "g", + "ic" + ], + [ + "▁Ele", + "ment" + ], + [ + "▁El", + "ement" + ], + [ + "▁E", + "lement" + ], + [ + "▁grand", + "son" + ], + [ + "▁os", + "t" + ], + [ + "▁o", + "st" + ], + [ + "▁", + "ost" + ], + [ + "itia", + "n" + ], + [ + "iti", + "an" + ], + [ + "it", + "ian" + ], + [ + "▁Ker", + "r" + ], + [ + "▁K", + "err" + ], + [ + "▁pan", + "ic" + ], + [ + "▁pa", + "nic" + ], + [ + "▁p", + "anic" + ], + [ + "▁trou", + "t" + ], + [ + "▁tro", + "ut" + ], + [ + "▁tr", + "out" + ], + [ + "let", + "cher" + ], + [ + "▁comparison", + "s" + ], + [ + "▁compar", + "isons" + ], + [ + "6", + ")" + ], + [ + "▁Ph", + "D" + ], + [ + "iance", + "s" + ], + [ + "ian", + "ces" + ], + [ + "i", + "ances" + ], + [ + "▁fart", + "her" + ], + [ + "▁far", + "ther" + ], + [ + "▁refere", + "e" + ], + [ + "▁refer", + "ee" + ], + [ + "▁Consid", + "er" + ], + [ + "▁Cons", + "ider" + ], + [ + "▁Metac", + "ritic" + ], + [ + "▁e", + "ager" + ], + [ + "▁cat", + "ast" + ], + [ + "▁retro", + "s" + ], + [ + "▁ret", + "ros" + ], + [ + "▁sens", + "or" + ], + [ + "▁sen", + "sor" + ], + [ + "▁Jeff", + "rey" + ], + [ + "▁nest", + "ing" + ], + [ + "▁strain", + "s" + ], + [ + "▁stra", + "ins" + ], + [ + "▁str", + "ains" + ], + [ + "▁carb", + "ohyd" + ], + [ + "▁nob", + "ility" + ], + [ + "▁RP", + "G" + ], + [ + "▁beach", + "es" + ], + [ + "▁be", + "aches" + ], + [ + "▁abol", + "ished" + ], + [ + "▁manuscript", + "s" + ], + [ + "▁uncons", + "cious" + ], + [ + "▁religion", + "s" + ], + [ + "▁relig", + "ions" + ], + [ + "he", + "v" + ], + [ + "h", + "ev" + ], + [ + "▁T", + "O" + ], + [ + "▁", + "TO" + ], + [ + "▁regain", + "ed" + ], + [ + "▁reg", + "ained" + ], + [ + "bi", + "n" + ], + [ + "b", + "in" + ], + [ + "▁Doub", + "le" + ], + [ + "▁Dou", + "ble" + ], + [ + "▁Do", + "uble" + ], + [ + "▁Po", + "r" + ], + [ + "▁P", + "or" + ], + [ + "▁wh", + "it" + ], + [ + "▁B", + "L" + ], + [ + "▁", + "BL" + ], + [ + "▁Sac", + "r" + ], + [ + "▁Sa", + "cr" + ], + [ + "▁ol", + "ive" + ], + [ + "▁orbit", + "s" + ], + [ + "▁orb", + "its" + ], + [ + "▁chamber", + "s" + ], + [ + "▁ch", + "ambers" + ], + [ + "▁11", + "2" + ], + [ + "▁1", + "12" + ], + [ + "▁tie", + "r" + ], + [ + "▁ti", + "er" + ], + [ + "▁t", + "ier" + ], + [ + "▁ag", + "enda" + ], + [ + "▁Cur", + "rent" + ], + [ + "▁immun", + "ity" + ], + [ + "▁Admiral", + "ty" + ], + [ + "▁alternative", + "s" + ], + [ + "▁altern", + "atives" + ], + [ + "amb", + "o" + ], + [ + "am", + "bo" + ], + [ + "▁relate", + "s" + ], + [ + "▁relat", + "es" + ], + [ + "▁rel", + "ates" + ], + [ + "▁Mon", + "ument" + ], + [ + "▁veget", + "able" + ], + [ + "k", + "rit" + ], + [ + "▁Wi", + "s" + ], + [ + "▁W", + "is" + ], + [ + "▁sa", + "int" + ], + [ + "▁s", + "aint" + ], + [ + "▁Imag", + "e" + ], + [ + "▁Im", + "age" + ], + [ + "▁constra", + "ints" + ], + [ + "▁Leg", + "ion" + ], + [ + "▁Luft", + "waffe" + ], + [ + "ione", + "d" + ], + [ + "ion", + "ed" + ], + [ + "io", + "ned" + ], + [ + "i", + "oned" + ], + [ + "▁Comm", + "ent" + ], + [ + "▁Com", + "ment" + ], + [ + "▁remark", + "s" + ], + [ + "▁rem", + "arks" + ], + [ + "▁re", + "marks" + ], + [ + "▁Int", + "roduction" + ], + [ + "ana", + "n" + ], + [ + "an", + "an" + ], + [ + "a", + "nan" + ], + [ + "▁Fran", + "z" + ], + [ + "▁Fr", + "anz" + ], + [ + "▁Griff", + "in" + ], + [ + "▁retain", + "ing" + ], + [ + "▁ret", + "aining" + ], + [ + "▁re", + "taining" + ], + [ + "▁ge", + "ographic" + ], + [ + "iba", + "l" + ], + [ + "ib", + "al" + ], + [ + "i", + "bal" + ], + [ + "▁ib", + "n" + ], + [ + "▁Mon", + "s" + ], + [ + "▁Mo", + "ns" + ], + [ + "▁M", + "ons" + ], + [ + "▁gap", + "s" + ], + [ + "▁ga", + "ps" + ], + [ + "▁g", + "aps" + ], + [ + "▁virt", + "ue" + ], + [ + "▁ritual", + "s" + ], + [ + "▁rit", + "uals" + ], + [ + "ag", + "s" + ], + [ + "a", + "gs" + ], + [ + "le", + "w" + ], + [ + "l", + "ew" + ], + [ + "qu", + "in" + ], + [ + "▁Ta", + "t" + ], + [ + "▁T", + "at" + ], + [ + "▁ste", + "al" + ], + [ + "▁st", + "eal" + ], + [ + "▁Garden", + "s" + ], + [ + "▁Gard", + "ens" + ], + [ + "▁nick", + "el" + ], + [ + "▁decl", + "are" + ], + [ + "▁gross", + "ed" + ], + [ + "▁spirit", + "s" + ], + [ + "▁spir", + "its" + ], + [ + "▁w", + "avelength" + ], + [ + "ov", + "o" + ], + [ + "o", + "vo" + ], + [ + "33", + "33" + ], + [ + "vo", + "us" + ], + [ + "v", + "ous" + ], + [ + "▁Mun", + "ich" + ], + [ + "▁hol", + "low" + ], + [ + "▁h", + "ollow" + ], + [ + "▁obtain", + "ing" + ], + [ + "▁ob", + "taining" + ], + [ + "▁pi", + "r" + ], + [ + "▁p", + "ir" + ], + [ + "▁", + "pir" + ], + [ + "▁182", + "0" + ], + [ + "▁18", + "20" + ], + [ + "▁Wing", + "s" + ], + [ + "▁Win", + "gs" + ], + [ + "▁W", + "ings" + ], + [ + "▁imprison", + "ment" + ], + [ + "▁g", + "w" + ], + [ + "asc", + "o" + ], + [ + "as", + "co" + ], + [ + "ubl", + "e" + ], + [ + "ub", + "le" + ], + [ + "u", + "ble" + ], + [ + "▁pull", + "ing" + ], + [ + "▁pul", + "ling" + ], + [ + "▁battlecruiser", + "s" + ], + [ + "▁battlecru", + "isers" + ], + [ + "▁suc", + "k" + ], + [ + "▁su", + "ck" + ], + [ + "▁s", + "uck" + ], + [ + "▁electro", + "m" + ], + [ + "▁electr", + "om" + ], + [ + "▁elect", + "rom" + ], + [ + "chan", + "t" + ], + [ + "cha", + "nt" + ], + [ + "ch", + "ant" + ], + [ + "▁Per", + "th" + ], + [ + "▁Phys", + "ics" + ], + [ + "▁Ph", + "ysics" + ], + [ + "▁Ass", + "istant" + ], + [ + "▁Dou", + "g" + ], + [ + "▁Do", + "ug" + ], + [ + "▁Port", + "er" + ], + [ + "▁Por", + "ter" + ], + [ + "▁P", + "orter" + ], + [ + "▁suburb", + "an" + ], + [ + "▁sub", + "urban" + ], + [ + "▁mutation", + "s" + ], + [ + "▁mut", + "ations" + ], + [ + "▁", + "u" + ], + [ + "v", + "wa" + ], + [ + "▁lemur", + "s" + ], + [ + "▁lem", + "urs" + ], + [ + "▁re", + "writ" + ], + [ + "▁fulf", + "ill" + ], + [ + "el", + "ong" + ], + [ + "e", + "long" + ], + [ + "▁Arab", + "ia" + ], + [ + "▁differ", + "s" + ], + [ + "▁diff", + "ers" + ], + [ + "▁epid", + "emic" + ], + [ + "▁invest", + "ed" + ], + [ + "▁inv", + "ested" + ], + [ + "▁metaph", + "or" + ], + [ + "▁metap", + "hor" + ], + [ + "▁necess", + "ity" + ], + [ + "ath", + "a" + ], + [ + "at", + "ha" + ], + [ + "a", + "tha" + ], + [ + "bi", + "al" + ], + [ + "b", + "ial" + ], + [ + "▁or", + "th" + ], + [ + "▁", + "orth" + ], + [ + "al", + "m" + ], + [ + "olith", + "ic" + ], + [ + "rict", + "ion" + ], + [ + "ri", + "ction" + ], + [ + "r", + "iction" + ], + [ + "▁mar", + "ble" + ], + [ + "▁Chap", + "man" + ], + [ + "▁real", + "ised" + ], + [ + "▁fant", + "astic" + ], + [ + "▁prec", + "ision" + ], + [ + "offic", + "ial" + ], + [ + "off", + "icial" + ], + [ + "of", + "ficial" + ], + [ + "▁Skin", + "ner" + ], + [ + "▁toy", + "s" + ], + [ + "▁to", + "ys" + ], + [ + "▁t", + "oys" + ], + [ + "▁Cle", + "an" + ], + [ + "▁Cl", + "ean" + ], + [ + "▁C", + "lean" + ], + [ + "▁le", + "ase" + ], + [ + "▁", + "lease" + ], + [ + "▁vac", + "uum" + ], + [ + "▁harmon", + "y" + ], + [ + "▁harm", + "ony" + ], + [ + "▁borrow", + "ed" + ], + [ + "▁uncom", + "mon" + ], + [ + "▁country", + "side" + ], + [ + "anc", + "ial" + ], + [ + "an", + "cial" + ], + [ + "▁Agu", + "il" + ], + [ + "▁Wind", + "sor" + ], + [ + "▁Der", + "e" + ], + [ + "▁De", + "re" + ], + [ + "▁D", + "ere" + ], + [ + "i", + "ère" + ], + [ + "▁Min", + "g" + ], + [ + "▁Mi", + "ng" + ], + [ + "▁M", + "ing" + ], + [ + "eal", + "ous" + ], + [ + "gi", + "ving" + ], + [ + "g", + "iving" + ], + [ + "▁Syria", + "n" + ], + [ + "▁Sy", + "rian" + ], + [ + "we", + "b" + ], + [ + "w", + "eb" + ], + [ + "▁Wa", + "ke" + ], + [ + "▁W", + "ake" + ], + [ + "▁out", + "fit" + ], + [ + "▁D", + "ifferent" + ], + [ + "▁supplement", + "s" + ], + [ + "▁suppl", + "ements" + ], + [ + "▁supp", + "lements" + ], + [ + "▁C", + "F" + ], + [ + "▁C", + "G" + ], + [ + "▁Dar", + "t" + ], + [ + "▁D", + "art" + ], + [ + "▁Grand", + "e" + ], + [ + "▁Gran", + "de" + ], + [ + "▁Gr", + "ande" + ], + [ + "▁al", + "beit" + ], + [ + "▁disturb", + "ed" + ], + [ + "ili", + "b" + ], + [ + "il", + "ib" + ], + [ + "umat", + "ic" + ], + [ + "uma", + "tic" + ], + [ + "um", + "atic" + ], + [ + "u", + "matic" + ], + [ + "▁lose", + "s" + ], + [ + "▁los", + "es" + ], + [ + "▁lo", + "ses" + ], + [ + "▁l", + "oses" + ], + [ + "▁reg", + "ret" + ], + [ + "▁revenue", + "s" + ], + [ + "▁reven", + "ues" + ], + [ + "rid", + "e" + ], + [ + "ri", + "de" + ], + [ + "r", + "ide" + ], + [ + "▁lo", + "d" + ], + [ + "▁l", + "od" + ], + [ + "▁du", + "ll" + ], + [ + "▁d", + "ull" + ], + [ + "▁1", + "⁄" + ], + [ + "▁he", + "al" + ], + [ + "▁h", + "eal" + ], + [ + "astic", + "s" + ], + [ + "ast", + "ics" + ], + [ + "▁trans", + "f" + ], + [ + "▁Brig", + "adier" + ], + [ + "▁national", + "ist" + ], + [ + "▁supervis", + "ion" + ], + [ + "▁superv", + "ision" + ], + [ + "▁Ya", + "le" + ], + [ + "▁Y", + "ale" + ], + [ + "phone", + "s" + ], + [ + "ph", + "ones" + ], + [ + "▁an", + "onymous" + ], + [ + "▁apprec", + "iate" + ], + [ + "que", + "z" + ], + [ + "qu", + "ez" + ], + [ + "q", + "uez" + ], + [ + "▁anch", + "or" + ], + [ + "▁anc", + "hor" + ], + [ + "▁Hispan", + "ic" + ], + [ + "▁ancest", + "or" + ], + [ + "▁colle", + "ague" + ], + [ + "▁Di", + "re" + ], + [ + "▁D", + "ire" + ], + [ + "▁Bird", + "s" + ], + [ + "▁Bir", + "ds" + ], + [ + "▁Scand", + "in" + ], + [ + "▁metabol", + "ic" + ], + [ + "▁metab", + "olic" + ], + [ + "▁pw", + "o" + ], + [ + "▁p", + "wo" + ], + [ + "▁vocal", + "ist" + ], + [ + "▁tremend", + "ous" + ], + [ + "come", + "d" + ], + [ + "com", + "ed" + ], + [ + "co", + "med" + ], + [ + "c", + "omed" + ], + [ + "▁Sear", + "ch" + ], + [ + "▁Se", + "arch" + ], + [ + "▁bin", + "ary" + ], + [ + "▁b", + "inary" + ], + [ + "rolog", + "ical" + ], + [ + "rol", + "ogical" + ], + [ + "r", + "ological" + ], + [ + "▁accommod", + "ation" + ], + [ + "r", + "è" + ], + [ + "isl", + "e" + ], + [ + "is", + "le" + ], + [ + "▁Win", + "c" + ], + [ + "▁W", + "inc" + ], + [ + "▁Lead", + "er" + ], + [ + "▁Le", + "ader" + ], + [ + "▁corner", + "s" + ], + [ + "▁corn", + "ers" + ], + [ + "▁cor", + "ners" + ], + [ + "▁clear", + "ing" + ], + [ + "▁cle", + "aring" + ], + [ + "▁cl", + "earing" + ], + [ + "ul", + "k" + ], + [ + "▁cle", + "ver" + ], + [ + "▁cl", + "ever" + ], + [ + "▁vaccine", + "s" + ], + [ + "▁vacc", + "ines" + ], + [ + "▁Wi", + "d" + ], + [ + "▁W", + "id" + ], + [ + "▁Ki", + "ss" + ], + [ + "▁K", + "iss" + ], + [ + "▁spell", + "ing" + ], + [ + "▁sp", + "elling" + ], + [ + "▁Dev", + "on" + ], + [ + "▁Angel", + "a" + ], + [ + "▁Ang", + "ela" + ], + [ + "E", + "x" + ], + [ + "▁Mun", + "icip" + ], + [ + "▁M", + "unicip" + ], + [ + "▁confront", + "ed" + ], + [ + "▁confron", + "ted" + ], + [ + "▁sa", + "b" + ], + [ + "▁s", + "ab" + ], + [ + "▁poet", + "s" + ], + [ + "▁po", + "ets" + ], + [ + "▁Burg", + "er" + ], + [ + "▁Bur", + "ger" + ], + [ + "▁Dyn", + "asty" + ], + [ + "ina", + "s" + ], + [ + "in", + "as" + ], + [ + "i", + "nas" + ], + [ + "ur", + "red" + ], + [ + "▁demo", + "n" + ], + [ + "▁dem", + "on" + ], + [ + "▁de", + "mon" + ], + [ + "▁trace", + "d" + ], + [ + "▁tra", + "ced" + ], + [ + "▁tr", + "aced" + ], + [ + "▁artif", + "acts" + ], + [ + "ok", + "a" + ], + [ + "o", + "ka" + ], + [ + "▁O", + "g" + ], + [ + "onn", + "e" + ], + [ + "on", + "ne" + ], + [ + "▁Ind", + "ex" + ], + [ + "▁Power", + "s" + ], + [ + "▁Pow", + "ers" + ], + [ + "▁P", + "owers" + ], + [ + "▁Compl", + "ete" + ], + [ + "▁Comp", + "lete" + ], + [ + "▁Com", + "plete" + ], + [ + "▁grad", + "uating" + ], + [ + "▁negotiate", + "d" + ], + [ + "▁negoti", + "ated" + ], + [ + "▁Pri", + "est" + ], + [ + "▁Pr", + "iest" + ], + [ + "▁guarantee", + "d" + ], + [ + "▁guarant", + "eed" + ], + [ + "▁demonstrate", + "s" + ], + [ + "▁demonst", + "rates" + ], + [ + "pi", + "l" + ], + [ + "p", + "il" + ], + [ + "▁A", + "U" + ], + [ + "▁Ri", + "d" + ], + [ + "▁R", + "id" + ], + [ + "▁We", + "nd" + ], + [ + "▁W", + "end" + ], + [ + "▁judge", + "d" + ], + [ + "▁judg", + "ed" + ], + [ + "▁jud", + "ged" + ], + [ + "C", + "P" + ], + [ + "G", + "en" + ], + [ + "▁Joe", + "l" + ], + [ + "▁Jo", + "el" + ], + [ + "▁cry", + "pt" + ], + [ + "▁frust", + "rated" + ], + [ + "ent", + "ric" + ], + [ + "▁Sug", + "ar" + ], + [ + "▁Su", + "gar" + ], + [ + "▁firm", + "ly" + ], + [ + "▁6", + "," + ], + [ + "▁", + "6," + ], + [ + "▁Ve", + "d" + ], + [ + "▁V", + "ed" + ], + [ + "▁g", + "ospel" + ], + [ + "▁Senator", + "s" + ], + [ + "▁Sen", + "ators" + ], + [ + "▁ele", + "g" + ], + [ + "▁el", + "eg" + ], + [ + "▁e", + "leg" + ], + [ + "▁ent", + "rep" + ], + [ + "▁Lithuan", + "ia" + ], + [ + "▁apprec", + "iation" + ], + [ + "▁scrap", + "ped" + ], + [ + "▁scra", + "pped" + ], + [ + "▁scr", + "apped" + ], + [ + "▁sc", + "rapped" + ], + [ + "▁suc", + "c" + ], + [ + "▁su", + "cc" + ], + [ + "▁s", + "ucc" + ], + [ + "▁Aguil", + "era" + ], + [ + "▁Peters", + "burg" + ], + [ + "▁Peter", + "sburg" + ], + [ + "▁Production", + "s" + ], + [ + "▁Product", + "ions" + ], + [ + "▁Produ", + "ctions" + ], + [ + "A", + "d" + ], + [ + "▁Doc", + "t" + ], + [ + "▁Do", + "ct" + ], + [ + "▁rep", + "t" + ], + [ + "▁re", + "pt" + ], + [ + "▁r", + "ept" + ], + [ + "▁tort", + "ure" + ], + [ + "▁tor", + "ture" + ], + [ + "▁base", + "ment" + ], + [ + "▁bas", + "ement" + ], + [ + "▁dom", + "e" + ], + [ + "▁do", + "me" + ], + [ + "▁d", + "ome" + ], + [ + "▁outlet", + "s" + ], + [ + "▁outl", + "ets" + ], + [ + "▁out", + "lets" + ], + [ + "▁match", + "ing" + ], + [ + "▁mat", + "ching" + ], + [ + "▁Palest", + "inian" + ], + [ + "▁b", + "iodiversity" + ], + [ + "ta", + "ker" + ], + [ + "t", + "aker" + ], + [ + "▁Her", + "gé" + ], + [ + "▁Port", + "s" + ], + [ + "▁Por", + "ts" + ], + [ + "▁P", + "orts" + ], + [ + "▁wire", + "less" + ], + [ + "▁perc", + "ussion" + ], + [ + "▁O", + "z" + ], + [ + "▁2004", + "," + ], + [ + "▁200", + "4," + ], + [ + "▁Eugen", + "e" + ], + [ + "▁Eug", + "ene" + ], + [ + "▁Fergus", + "on" + ], + [ + "▁digest", + "ive" + ], + [ + "N", + "T" + ], + [ + "ij", + "i" + ], + [ + "i", + "ji" + ], + [ + "▁Kan", + "g" + ], + [ + "▁Ka", + "ng" + ], + [ + "▁K", + "ang" + ], + [ + "▁inspect", + "ion" + ], + [ + "▁insp", + "ection" + ], + [ + "▁patch", + "es" + ], + [ + "▁pat", + "ches" + ], + [ + "▁p", + "atches" + ], + [ + "▁Dru", + "m" + ], + [ + "▁Dr", + "um" + ], + [ + "▁D", + "rum" + ], + [ + "▁alt", + "ar" + ], + [ + "▁al", + "tar" + ], + [ + "▁frig", + "ht" + ], + [ + "▁fr", + "ight" + ], + [ + "▁f", + "right" + ], + [ + "▁grand", + "mother" + ], + [ + "▁card", + "iovascular" + ], + [ + "▁Sp", + "y" + ], + [ + "▁S", + "py" + ], + [ + "▁her", + "ald" + ], + [ + "▁h", + "erald" + ], + [ + "'", + "," + ], + [ + "omy", + "s" + ], + [ + "om", + "ys" + ], + [ + "▁Sa", + "g" + ], + [ + "▁S", + "ag" + ], + [ + "▁Plan", + "ning" + ], + [ + "▁MV", + "P" + ], + [ + "▁Domin", + "ican" + ], + [ + "▁assum", + "ption" + ], + [ + "▁ass", + "umption" + ], + [ + "▁abol", + "ition" + ], + [ + "▁define", + "s" + ], + [ + "▁defin", + "es" + ], + [ + "▁def", + "ines" + ], + [ + "▁Emer", + "gency" + ], + [ + "▁Philipp", + "ine" + ], + [ + "▁Philip", + "pine" + ], + [ + "▁cultiv", + "ated" + ], + [ + "▁cult", + "ivated" + ], + [ + "▁ka", + "p" + ], + [ + "▁k", + "ap" + ], + [ + "▁hormone", + "s" + ], + [ + "▁horm", + "ones" + ], + [ + "▁", + "€" + ], + [ + "f", + "unction" + ], + [ + "▁definition", + "s" + ], + [ + "▁defin", + "itions" + ], + [ + "▁elimin", + "ation" + ], + [ + "▁el", + "imination" + ], + [ + "mont", + "on" + ], + [ + "mon", + "ton" + ], + [ + "▁Av", + "oid" + ], + [ + "▁Ch", + "ancellor" + ], + [ + "/", + "0" + ], + [ + "ien", + "cy" + ], + [ + "i", + "ency" + ], + [ + "▁dors", + "al" + ], + [ + "▁optim", + "al" + ], + [ + "▁opt", + "imal" + ], + [ + "▁controll", + "er" + ], + [ + "▁control", + "ler" + ], + [ + "▁contro", + "ller" + ], + [ + "iday", + "s" + ], + [ + "ida", + "ys" + ], + [ + "id", + "ays" + ], + [ + "i", + "days" + ], + [ + "▁Mult", + "ip" + ], + [ + "▁welcome", + "d" + ], + [ + "▁wel", + "comed" + ], + [ + "▁Current", + "ly" + ], + [ + "▁Cur", + "rently" + ], + [ + "▁architect", + "s" + ], + [ + "▁arch", + "itects" + ], + [ + "▁A", + "w" + ], + [ + "▁Zo", + "o" + ], + [ + "▁Z", + "oo" + ], + [ + "▁187", + "4" + ], + [ + "▁ion", + "s" + ], + [ + "▁i", + "ons" + ], + [ + "▁", + "ions" + ], + [ + "▁over", + "night" + ], + [ + "▁review", + "ing" + ], + [ + "unte", + "d" + ], + [ + "unt", + "ed" + ], + [ + "un", + "ted" + ], + [ + "▁ou", + "ght" + ], + [ + "▁o", + "ught" + ], + [ + "▁", + "ought" + ], + [ + "▁But", + "ter" + ], + [ + "▁B", + "utter" + ], + [ + "▁grad", + "uation" + ], + [ + "arr", + "e" + ], + [ + "ar", + "re" + ], + [ + "▁He", + "d" + ], + [ + "▁H", + "ed" + ], + [ + "▁Si", + "b" + ], + [ + "▁S", + "ib" + ], + [ + "▁Form", + "ula" + ], + [ + "▁Rey", + "nolds" + ], + [ + "uch", + "i" + ], + [ + "uc", + "hi" + ], + [ + "u", + "chi" + ], + [ + "▁Sp", + "it" + ], + [ + "▁S", + "pit" + ], + [ + "▁Hab", + "ana" + ], + [ + "▁ab", + "rupt" + ], + [ + "▁John", + "s" + ], + [ + "▁Joh", + "ns" + ], + [ + "▁Cont", + "act" + ], + [ + "▁Pear", + "son" + ], + [ + "▁America", + "s" + ], + [ + "▁Americ", + "as" + ], + [ + "▁hip", + "p" + ], + [ + "▁h", + "ipp" + ], + [ + "▁st", + "ip" + ], + [ + "▁European", + "s" + ], + [ + "▁Europe", + "ans" + ], + [ + "▁Ce", + "l" + ], + [ + "▁C", + "el" + ], + [ + "▁Cel", + "e" + ], + [ + "▁Ce", + "le" + ], + [ + "▁C", + "ele" + ], + [ + "grade", + "d" + ], + [ + "grad", + "ed" + ], + [ + "gra", + "ded" + ], + [ + "gr", + "aded" + ], + [ + "▁cru", + "el" + ], + [ + "▁cr", + "uel" + ], + [ + "▁galax", + "ies" + ], + [ + "▁educ", + "ators" + ], + [ + "▁A", + "F" + ], + [ + "▁", + "AF" + ], + [ + "her", + "d" + ], + [ + "he", + "rd" + ], + [ + "▁icon", + "ic" + ], + [ + "▁ic", + "onic" + ], + [ + "▁Trad", + "iksyon" + ], + [ + "▁exception", + "s" + ], + [ + "▁except", + "ions" + ], + [ + "▁ex", + "ceptions" + ], + [ + "▁financial", + "ly" + ], + [ + "▁financ", + "ially" + ], + [ + "est", + "y" + ], + [ + "es", + "ty" + ], + [ + "▁Us", + "her" + ], + [ + "▁predecessor", + "s" + ], + [ + "▁predecess", + "ors" + ], + [ + "▁Nicol", + "e" + ], + [ + "▁Nic", + "ole" + ], + [ + "▁Ne", + "t" + ], + [ + "▁N", + "et" + ], + [ + "▁Tra", + "in" + ], + [ + "▁Tr", + "ain" + ], + [ + "▁T", + "rain" + ], + [ + "▁wood", + "land" + ], + [ + "atic", + "s" + ], + [ + "ati", + "cs" + ], + [ + "at", + "ics" + ], + [ + "anz", + "a" + ], + [ + "an", + "za" + ], + [ + "▁Lu", + "t" + ], + [ + "▁L", + "ut" + ], + [ + "▁Hay", + "es" + ], + [ + "▁prosper", + "ity" + ], + [ + "▁fasc", + "inating" + ], + [ + "▁W", + "u" + ], + [ + "oup", + "e" + ], + [ + "ou", + "pe" + ], + [ + "▁Sel", + "ena" + ], + [ + "▁break", + "fast" + ], + [ + "▁municipal", + "ity" + ], + [ + "▁municip", + "ality" + ], + [ + "▁surrounding", + "s" + ], + [ + "▁surround", + "ings" + ], + [ + "▁Sen", + "t" + ], + [ + "▁Se", + "nt" + ], + [ + "▁S", + "ent" + ], + [ + "▁fort", + "s" + ], + [ + "▁for", + "ts" + ], + [ + "▁f", + "orts" + ], + [ + "▁puzzle", + "s" + ], + [ + "▁puzz", + "les" + ], + [ + "▁astron", + "aut" + ], + [ + "B", + "O" + ], + [ + "▁Pal", + "m" + ], + [ + "▁P", + "alm" + ], + [ + "▁Wal", + "s" + ], + [ + "▁Wa", + "ls" + ], + [ + "▁W", + "als" + ], + [ + "▁Joy", + "ce" + ], + [ + "▁Mov", + "ing" + ], + [ + "▁Mo", + "ving" + ], + [ + "▁Pier", + "ce" + ], + [ + "▁crystal", + "l" + ], + [ + "▁cryst", + "all" + ], + [ + "▁metabol", + "ism" + ], + [ + "ac", + "a" + ], + [ + "a", + "ca" + ], + [ + "▁28", + "0" + ], + [ + "▁2", + "80" + ], + [ + "▁Id", + "aho" + ], + [ + "▁pipe", + "s" + ], + [ + "▁pip", + "es" + ], + [ + "▁pi", + "pes" + ], + [ + "▁p", + "ipes" + ], + [ + "▁Hall", + "ow" + ], + [ + "▁Hal", + "low" + ], + [ + "▁superv", + "is" + ], + [ + "▁super", + "vis" + ], + [ + "▁sup", + "ervis" + ], + [ + "aste", + "d" + ], + [ + "ast", + "ed" + ], + [ + "as", + "ted" + ], + [ + "a", + "sted" + ], + [ + "▁120", + "0" + ], + [ + "▁12", + "00" + ], + [ + "▁1", + "200" + ], + [ + "▁learn", + "ers" + ], + [ + "▁lear", + "ners" + ], + [ + "da", + "l" + ], + [ + "d", + "al" + ], + [ + "ari", + "o" + ], + [ + "ar", + "io" + ], + [ + "a", + "rio" + ], + [ + "▁meant", + "ime" + ], + [ + "▁mean", + "time" + ], + [ + "▁ded", + "ication" + ], + [ + "isc", + "h" + ], + [ + "is", + "ch" + ], + [ + "i", + "sch" + ], + [ + "ren", + "cy" + ], + [ + "r", + "ency" + ], + [ + "▁Mat", + "hemat" + ], + [ + "▁narr", + "ator" + ], + [ + "▁nar", + "rator" + ], + [ + "▁sam", + "pling" + ], + [ + "sh", + "e" + ], + [ + "s", + "he" + ], + [ + "▁Dram", + "a" + ], + [ + "▁Dra", + "ma" + ], + [ + "▁Dr", + "ama" + ], + [ + "▁shoulder", + "s" + ], + [ + "▁should", + "ers" + ], + [ + "▁roof", + "s" + ], + [ + "▁Tun", + "nel" + ], + [ + "▁third", + "s" + ], + [ + "▁thir", + "ds" + ], + [ + "▁Alexand", + "ria" + ], + [ + "▁stra", + "w" + ], + [ + "▁str", + "aw" + ], + [ + "▁st", + "raw" + ], + [ + "▁Ob", + "ject" + ], + [ + "▁ident", + "ifies" + ], + [ + "▁M", + "é" + ], + [ + "ant", + "i" + ], + [ + "an", + "ti" + ], + [ + "▁He", + "in" + ], + [ + "▁gra", + "b" + ], + [ + "▁gr", + "ab" + ], + [ + "▁g", + "rab" + ], + [ + "▁ble", + "nd" + ], + [ + "▁bl", + "end" + ], + [ + "▁rel", + "at" + ], + [ + "▁m", + "uzzle" + ], + [ + "▁ocean", + "s" + ], + [ + "▁o", + "ceans" + ], + [ + "▁seal", + "ed" + ], + [ + "▁sea", + "led" + ], + [ + "▁se", + "aled" + ], + [ + "▁bishop", + "s" + ], + [ + "▁b", + "ishops" + ], + [ + "▁serv", + "ant" + ], + [ + "▁ser", + "vant" + ], + [ + "arm", + "s" + ], + [ + "ar", + "ms" + ], + [ + "▁She", + "n" + ], + [ + "▁Sh", + "en" + ], + [ + "▁S", + "hen" + ], + [ + "▁L", + "ED" + ], + [ + "▁seiz", + "e" + ], + [ + "▁se", + "ize" + ], + [ + "▁bi", + "ke" + ], + [ + "▁b", + "ike" + ], + [ + "▁11", + "8" + ], + [ + "▁1", + "18" + ], + [ + "▁an", + "s" + ], + [ + "▁a", + "ns" + ], + [ + "▁", + "ans" + ], + [ + "▁Bow", + "ie" + ], + [ + "▁pop", + "ilasyon" + ], + [ + "▁dest", + "ructive" + ], + [ + "c", + "r" + ], + [ + "fire", + "s" + ], + [ + "fi", + "res" + ], + [ + "f", + "ires" + ], + [ + "▁Serb", + "s" + ], + [ + "▁Ser", + "bs" + ], + [ + "▁cr", + "imin" + ], + [ + "▁c", + "rimin" + ], + [ + "▁ext", + "ant" + ], + [ + "▁defic", + "it" + ], + [ + "▁def", + "icit" + ], + [ + "▁tradem", + "ark" + ], + [ + "▁trade", + "mark" + ], + [ + "▁decre", + "asing" + ], + [ + "P", + "ierre" + ], + [ + "▁exhaust", + "ed" + ], + [ + "bro", + "ok" + ], + [ + "br", + "ook" + ], + [ + "own", + "ers" + ], + [ + "ow", + "ners" + ], + [ + "▁comp", + "elling" + ], + [ + "▁negative", + "ly" + ], + [ + "▁neg", + "atively" + ], + [ + "▁che", + "er" + ], + [ + "onnect", + "ed" + ], + [ + "onn", + "ected" + ], + [ + "▁Wheel", + "er" + ], + [ + "▁Whe", + "eler" + ], + [ + "▁broad", + "ly" + ], + [ + "au", + "d" + ], + [ + "a", + "ud" + ], + [ + "ips", + "e" + ], + [ + "ip", + "se" + ], + [ + "▁sl", + "ip" + ], + [ + "▁GameSp", + "ot" + ], + [ + "▁Mil", + "ton" + ], + [ + "▁M", + "ilton" + ], + [ + "▁abnorm", + "al" + ], + [ + "▁endors", + "ed" + ], + [ + "lin", + "ary" + ], + [ + "l", + "inary" + ], + [ + "▁sulf", + "ur" + ], + [ + "ara", + "n" + ], + [ + "ar", + "an" + ], + [ + "a", + "ran" + ], + [ + "ira", + "l" + ], + [ + "ir", + "al" + ], + [ + "i", + "ral" + ], + [ + "▁Ne", + "p" + ], + [ + "▁N", + "ep" + ], + [ + "▁:2", + "2." + ], + [ + "▁Az", + "erb" + ], + [ + "▁Ec", + "onom" + ], + [ + "▁acc", + "ent" + ], + [ + "▁ac", + "cent" + ], + [ + "▁illust", + "rate" + ], + [ + "▁refer", + "endum" + ], + [ + "▁Spe", + "e" + ], + [ + "▁Sp", + "ee" + ], + [ + "p", + "m" + ], + [ + "berg", + "er" + ], + [ + "ber", + "ger" + ], + [ + "▁C", + "ensus" + ], + [ + "▁kick", + "ed" + ], + [ + "▁k", + "icked" + ], + [ + "and", + "ra" + ], + [ + "isi", + "ble" + ], + [ + "is", + "ible" + ], + [ + "▁inflict", + "ed" + ], + [ + "▁infl", + "icted" + ], + [ + "▁preval", + "ence" + ], + [ + "▁practition", + "ers" + ], + [ + "D", + "R" + ], + [ + "igg", + "s" + ], + [ + "ig", + "gs" + ], + [ + "▁Happ", + "y" + ], + [ + "▁H", + "appy" + ], + [ + "▁pre", + "jud" + ], + [ + "▁trop", + "hy" + ], + [ + "▁tro", + "phy" + ], + [ + "▁tr", + "ophy" + ], + [ + "▁touch", + "ed" + ], + [ + "▁tou", + "ched" + ], + [ + "▁min", + "istry" + ], + [ + "▁26", + "0" + ], + [ + "▁2", + "60" + ], + [ + "▁Azerb", + "ai" + ], + [ + "▁recip", + "ient" + ], + [ + "▁stretch", + "ed" + ], + [ + "▁stret", + "ched" + ], + [ + "in", + "f" + ], + [ + "▁Ya", + "h" + ], + [ + "▁Y", + "ah" + ], + [ + "▁lyr", + "ic" + ], + [ + "▁ly", + "ric" + ], + [ + "▁Arabia", + "n" + ], + [ + "▁Arab", + "ian" + ], + [ + "▁Ara", + "bian" + ], + [ + "erg", + "et" + ], + [ + "er", + "get" + ], + [ + "ers", + "ion" + ], + [ + "iva", + "ted" + ], + [ + "iv", + "ated" + ], + [ + "▁cl", + "ause" + ], + [ + "▁access", + "ed" + ], + [ + "▁acc", + "essed" + ], + [ + "▁Princip", + "al" + ], + [ + "▁Princ", + "ipal" + ], + [ + "▁sympath", + "etic" + ], + [ + "▁sympat", + "hetic" + ], + [ + "▁collective", + "ly" + ], + [ + "▁collect", + "ively" + ], + [ + "lin", + "wa" + ], + [ + "–", + "19" + ], + [ + "▁Vi", + "e" + ], + [ + "▁V", + "ie" + ], + [ + "gre", + "en" + ], + [ + "gr", + "een" + ], + [ + "g", + "reen" + ], + [ + "anner", + "s" + ], + [ + "anne", + "rs" + ], + [ + "ann", + "ers" + ], + [ + "an", + "ners" + ], + [ + "▁Rand", + "y" + ], + [ + "▁Ran", + "dy" + ], + [ + "▁R", + "andy" + ], + [ + "E", + "G" + ], + [ + "ano", + "l" + ], + [ + "an", + "ol" + ], + [ + "▁H", + "utch" + ], + [ + "▁Sp", + "iel" + ], + [ + "▁Ed", + "monton" + ], + [ + "▁F", + "letcher" + ], + [ + "▁prosec", + "ution" + ], + [ + "▁Shan", + "k" + ], + [ + "▁Sh", + "ank" + ], + [ + "▁Ku", + "r" + ], + [ + "▁K", + "ur" + ], + [ + "▁So", + "u" + ], + [ + "▁S", + "ou" + ], + [ + "▁cle", + "r" + ], + [ + "▁cl", + "er" + ], + [ + "▁c", + "ler" + ], + [ + "▁", + "cler" + ], + [ + "▁Fl", + "ames" + ], + [ + "▁dec", + "omm" + ], + [ + "▁account", + "ed" + ], + [ + "▁acc", + "ounted" + ], + [ + "is", + "i" + ], + [ + "air", + "o" + ], + [ + "ai", + "ro" + ], + [ + "a", + "iro" + ], + [ + "▁Hes", + "s" + ], + [ + "▁He", + "ss" + ], + [ + "▁H", + "ess" + ], + [ + "▁ham", + "let" + ], + [ + "▁opera", + "s" + ], + [ + "▁oper", + "as" + ], + [ + "▁disappoint", + "ment" + ], + [ + "▁Ka", + "s" + ], + [ + "▁K", + "as" + ], + [ + "▁Tex", + "t" + ], + [ + "▁Te", + "xt" + ], + [ + "▁T", + "ext" + ], + [ + "▁sat", + "ir" + ], + [ + "▁script", + "s" + ], + [ + "▁Air", + "borne" + ], + [ + "▁inv", + "asive" + ], + [ + "▁I", + "X" + ], + [ + "▁11", + "," + ], + [ + "▁1", + "1," + ], + [ + "▁Shi", + "r" + ], + [ + "▁Sh", + "ir" + ], + [ + "▁I", + "linwa" + ], + [ + "▁persu", + "ade" + ], + [ + "▁efficient", + "ly" + ], + [ + "pe", + "n" + ], + [ + "p", + "en" + ], + [ + "ara", + "t" + ], + [ + "ar", + "at" + ], + [ + "a", + "rat" + ], + [ + "▁ret", + "ro" + ], + [ + "▁Guard", + "s" + ], + [ + "▁Gu", + "ards" + ], + [ + "▁screen", + "ed" + ], + [ + "▁incred", + "ibly" + ], + [ + "e", + "g" + ], + [ + "GB", + "T" + ], + [ + "▁H", + "V" + ], + [ + "▁Th", + "or" + ], + [ + "▁T", + "hor" + ], + [ + "▁Par", + "amount" + ], + [ + "▁supposed", + "ly" + ], + [ + "▁tra", + "m" + ], + [ + "▁tr", + "am" + ], + [ + "▁t", + "ram" + ], + [ + "ew", + "ater" + ], + [ + "e", + "water" + ], + [ + "▁ball", + "ot" + ], + [ + "▁bal", + "lot" + ], + [ + "▁encl", + "osed" + ], + [ + "▁conversation", + "s" + ], + [ + "▁convers", + "ations" + ], + [ + "▁Hi", + "p" + ], + [ + "▁H", + "ip" + ], + [ + "▁Fa", + "st" + ], + [ + "▁F", + "ast" + ], + [ + "▁Tre", + "n" + ], + [ + "▁Tr", + "en" + ], + [ + "▁T", + "ren" + ], + [ + "Americ", + "an" + ], + [ + "▁Corn", + "ell" + ], + [ + "▁Cor", + "nell" + ], + [ + "F", + "or" + ], + [ + "mo", + "ur" + ], + [ + "m", + "our" + ], + [ + "▁surge", + "on" + ], + [ + "▁sur", + "geon" + ], + [ + "▁contamin", + "ation" + ], + [ + "▁cont", + "amination" + ], + [ + "em", + "i" + ], + [ + "e", + "mi" + ], + [ + "gie", + "ne" + ], + [ + "gi", + "ene" + ], + [ + "▁exc", + "it" + ], + [ + "▁ass", + "ured" + ], + [ + "▁escape", + "s" + ], + [ + "▁esc", + "apes" + ], + [ + "iki", + "ng" + ], + [ + "ik", + "ing" + ], + [ + "i", + "king" + ], + [ + "▁view", + "er" + ], + [ + "▁vie", + "wer" + ], + [ + "▁repl", + "y" + ], + [ + "▁rep", + "ly" + ], + [ + "▁re", + "ply" + ], + [ + "▁Stra", + "it" + ], + [ + "▁merge", + "r" + ], + [ + "▁mer", + "ger" + ], + [ + "▁reg", + "ain" + ], + [ + "▁re", + "gain" + ], + [ + "▁Ukrain", + "e" + ], + [ + "▁Uk", + "raine" + ], + [ + "▁ill", + "umin" + ], + [ + "▁dimin", + "ished" + ], + [ + "▁dim", + "inished" + ], + [ + "▁problem", + "atic" + ], + [ + "▁proble", + "matic" + ], + [ + "T", + "H" + ], + [ + "dr", + "op" + ], + [ + "d", + "rop" + ], + [ + "▁War", + "wick" + ], + [ + "▁launch", + "ing" + ], + [ + "▁laun", + "ching" + ], + [ + "▁govern", + "ance" + ], + [ + "▁gover", + "nance" + ], + [ + "▁rect", + "angular" + ], + [ + "cles", + "iast" + ], + [ + "▁block", + "ing" + ], + [ + "▁bl", + "ocking" + ], + [ + "▁Ja", + "k" + ], + [ + "▁J", + "ak" + ], + [ + "▁bi", + "l" + ], + [ + "▁b", + "il" + ], + [ + "▁quot", + "e" + ], + [ + "▁qu", + "ote" + ], + [ + "▁scr", + "atch" + ], + [ + "▁Patric", + "ia" + ], + [ + "▁Patri", + "cia" + ], + [ + "▁calc", + "ulate" + ], + [ + "ott", + "a" + ], + [ + "ot", + "ta" + ], + [ + "▁inf", + "ilt" + ], + [ + "▁app", + "rent" + ], + [ + "▁celebration", + "s" + ], + [ + "▁celebr", + "ations" + ], + [ + "▁celeb", + "rations" + ], + [ + "U", + "P" + ], + [ + "▁eleph", + "ant" + ], + [ + "hemat", + "ic" + ], + [ + "hem", + "atic" + ], + [ + "he", + "matic" + ], + [ + "▁secret", + "ly" + ], + [ + "po", + "p" + ], + [ + "p", + "op" + ], + [ + "▁Brand", + "on" + ], + [ + "▁Bran", + "don" + ], + [ + "▁Br", + "andon" + ], + [ + "▁special", + "ly" + ], + [ + "▁spec", + "ially" + ], + [ + "▁spe", + "cially" + ], + [ + "▁sp", + "ecially" + ], + [ + "▁extract", + "ion" + ], + [ + "▁extra", + "ction" + ], + [ + "▁extr", + "action" + ], + [ + "▁ext", + "raction" + ], + [ + "▁Ken", + "s" + ], + [ + "▁Ke", + "ns" + ], + [ + "▁K", + "ens" + ], + [ + "▁cl", + "iff" + ], + [ + "▁", + "cliff" + ], + [ + "▁bank", + "ing" + ], + [ + "▁ban", + "king" + ], + [ + "ec", + "a" + ], + [ + "e", + "ca" + ], + [ + "▁vi", + "b" + ], + [ + "▁v", + "ib" + ], + [ + "▁explore", + "s" + ], + [ + "▁explor", + "es" + ], + [ + "▁explo", + "res" + ], + [ + "▁expl", + "ores" + ], + [ + "▁fier", + "ce" + ], + [ + "▁double", + "s" + ], + [ + "▁doub", + "les" + ], + [ + "▁Salv", + "ador" + ], + [ + "be", + "t" + ], + [ + "b", + "et" + ], + [ + "anto", + "m" + ], + [ + "ant", + "om" + ], + [ + "▁Cu", + "st" + ], + [ + "▁C", + "ust" + ], + [ + "▁pig", + "e" + ], + [ + "▁pi", + "ge" + ], + [ + "▁p", + "ige" + ], + [ + "▁Lim", + "ited" + ], + [ + "▁L", + "imited" + ], + [ + "▁persist", + "ed" + ], + [ + "▁pers", + "isted" + ], + [ + "▁satellite", + "s" + ], + [ + "▁satell", + "ites" + ], + [ + "▁bag", + "s" + ], + [ + "▁ba", + "gs" + ], + [ + "▁b", + "ags" + ], + [ + "▁Boot", + "h" + ], + [ + "▁Bo", + "oth" + ], + [ + "▁B", + "ooth" + ], + [ + "▁Nort", + "on" + ], + [ + "▁Nor", + "ton" + ], + [ + "▁affect", + "ion" + ], + [ + "▁aff", + "ection" + ], + [ + "▁ca", + "ut" + ], + [ + "▁c", + "aut" + ], + [ + "▁vin", + "e" + ], + [ + "▁vi", + "ne" + ], + [ + "▁v", + "ine" + ], + [ + "usion", + "s" + ], + [ + "us", + "ions" + ], + [ + "▁Animal", + "s" + ], + [ + "▁Anim", + "als" + ], + [ + "▁light", + "ning" + ], + [ + "▁companion", + "s" + ], + [ + "▁compan", + "ions" + ], + [ + "gg", + "y" + ], + [ + "g", + "gy" + ], + [ + "▁McC", + "ain" + ], + [ + "▁mamm", + "al" + ], + [ + "▁grad", + "ual" + ], + [ + "es", + "h" + ], + [ + "e", + "sh" + ], + [ + "▁185", + "1" + ], + [ + "▁Syn", + "d" + ], + [ + "▁Sy", + "nd" + ], + [ + "▁Art", + "ist" + ], + [ + "▁like", + "wise" + ], + [ + "▁lik", + "ewise" + ], + [ + "▁unp", + "opular" + ], + [ + "roph", + "ic" + ], + [ + "▁Ang", + "lic" + ], + [ + "▁revis", + "ion" + ], + [ + "▁rev", + "ision" + ], + [ + "▁illness", + "es" + ], + [ + "▁reserv", + "oir" + ], + [ + "aw", + "k" + ], + [ + "▁Id", + "ol" + ], + [ + "▁den", + "y" + ], + [ + "▁de", + "ny" + ], + [ + "▁lands", + "l" + ], + [ + "▁land", + "sl" + ], + [ + "▁failure", + "s" + ], + [ + "▁fail", + "ures" + ], + [ + "abl", + "o" + ], + [ + "ab", + "lo" + ], + [ + "▁filter", + "s" + ], + [ + "▁filt", + "ers" + ], + [ + "▁fil", + "ters" + ], + [ + "▁crystal", + "s" + ], + [ + "▁cryst", + "als" + ], + [ + "osh", + "i" + ], + [ + "os", + "hi" + ], + [ + "o", + "shi" + ], + [ + "▁Anto", + "ine" + ], + [ + "▁teammate", + "s" + ], + [ + "▁team", + "mates" + ], + [ + "r", + "í" + ], + [ + "▁Vol", + "unte" + ], + [ + "▁runner", + "s" + ], + [ + "▁run", + "ners" + ], + [ + "▁Rhodes", + "ia" + ], + [ + "▁p", + "ub" + ], + [ + "▁ensure", + "d" + ], + [ + "▁ens", + "ured" + ], + [ + "▁humid", + "ity" + ], + [ + "▁hum", + "idity" + ], + [ + "▁volunt", + "ary" + ], + [ + "ou", + "zi" + ], + [ + "▁ki", + "n" + ], + [ + "▁k", + "in" + ], + [ + "▁", + "kin" + ], + [ + "per", + "ed" + ], + [ + "pe", + "red" + ], + [ + "p", + "ered" + ], + [ + "ophon", + "e" + ], + [ + "oph", + "one" + ], + [ + "o", + "phone" + ], + [ + "▁Out", + "side" + ], + [ + "▁sw", + "elling" + ], + [ + "▁Fin", + "ancial" + ], + [ + "▁elimin", + "ating" + ], + [ + "▁protoc", + "ol" + ], + [ + "▁prot", + "ocol" + ], + [ + "▁J", + "G" + ], + [ + "▁ign", + "or" + ], + [ + "▁Ga", + "v" + ], + [ + "▁G", + "av" + ], + [ + "▁Has", + "t" + ], + [ + "▁Ha", + "st" + ], + [ + "▁H", + "ast" + ], + [ + "▁nurse", + "s" + ], + [ + "▁nurs", + "es" + ], + [ + "▁Ca", + "y" + ], + [ + "▁C", + "ay" + ], + [ + "▁Lan", + "ka" + ], + [ + "▁L", + "anka" + ], + [ + "▁Sp", + "onge" + ], + [ + "ingu", + "ished" + ], + [ + "▁helicopter", + "s" + ], + [ + "▁helicop", + "ters" + ], + [ + "dis", + "h" + ], + [ + "di", + "sh" + ], + [ + "d", + "ish" + ], + [ + "iot", + "t" + ], + [ + "io", + "tt" + ], + [ + "i", + "ott" + ], + [ + "▁eth", + "ics" + ], + [ + "▁colon", + "el" + ], + [ + "eff", + "icient" + ], + [ + "e", + "fficient" + ], + [ + "▁Roberts", + "on" + ], + [ + "▁Robert", + "son" + ], + [ + "▁genetic", + "ally" + ], + [ + "▁genet", + "ically" + ], + [ + "▁Profess", + "ional" + ], + [ + "▁spoke", + "s" + ], + [ + "▁spok", + "es" + ], + [ + "▁spo", + "kes" + ], + [ + "▁sp", + "okes" + ], + [ + "▁lor", + "d" + ], + [ + "▁lo", + "rd" + ], + [ + "▁l", + "ord" + ], + [ + "▁", + "lord" + ], + [ + "▁maker", + "s" + ], + [ + "▁make", + "rs" + ], + [ + "▁m", + "akers" + ], + [ + "▁", + "makers" + ], + [ + "▁period", + "ic" + ], + [ + "▁flav", + "or" + ], + [ + "▁fl", + "avor" + ], + [ + "enn", + "y" + ], + [ + "en", + "ny" + ], + [ + "opa", + "l" + ], + [ + "op", + "al" + ], + [ + "ogen", + "e" + ], + [ + "og", + "ene" + ], + [ + "▁Bra", + "n" + ], + [ + "▁Br", + "an" + ], + [ + "▁B", + "ran" + ], + [ + "▁gre", + "g" + ], + [ + "▁gr", + "eg" + ], + [ + "▁g", + "reg" + ], + [ + "▁", + "greg" + ], + [ + "▁pi", + "an" + ], + [ + "▁p", + "ian" + ], + [ + "▁Om", + "aha" + ], + [ + "▁Rev", + "en" + ], + [ + "▁Re", + "ven" + ], + [ + "▁gram", + "s" + ], + [ + "▁gra", + "ms" + ], + [ + "▁gr", + "ams" + ], + [ + "▁g", + "rams" + ], + [ + "▁prev", + "iew" + ], + [ + "▁pre", + "view" + ], + [ + "▁Ven", + "t" + ], + [ + "▁Ve", + "nt" + ], + [ + "▁V", + "ent" + ], + [ + "▁law", + "n" + ], + [ + "▁la", + "wn" + ], + [ + "▁l", + "awn" + ], + [ + "ys", + "ical" + ], + [ + "▁spawn", + "ed" + ], + [ + "▁celebr", + "ity" + ], + [ + "▁prem", + "ature" + ], + [ + "▁Gar", + "field" + ], + [ + "▁work", + "place" + ], + [ + "d", + "ition" + ], + [ + "▁Sic", + "ily" + ], + [ + "▁Effect", + "s" + ], + [ + "▁Eff", + "ects" + ], + [ + "▁Jess", + "ica" + ], + [ + "▁order", + "ing" + ], + [ + "▁ord", + "ering" + ], + [ + "▁Agre", + "ement" + ], + [ + "▁individual", + "ly" + ], + [ + "▁individ", + "ually" + ], + [ + "ed", + "u" + ], + [ + "e", + "du" + ], + [ + "▁gre", + "n" + ], + [ + "▁gr", + "en" + ], + [ + "▁g", + "ren" + ], + [ + "▁", + "gren" + ], + [ + "▁se", + "pt" + ], + [ + "▁s", + "ept" + ], + [ + "▁Cor", + "on" + ], + [ + "▁Co", + "ron" + ], + [ + "▁Lo", + "pe" + ], + [ + "▁L", + "ope" + ], + [ + "▁isotope", + "s" + ], + [ + "▁isot", + "opes" + ], + [ + "▁shelter", + "s" + ], + [ + "▁shel", + "ters" + ], + [ + "is", + "ure" + ], + [ + "opol", + "y" + ], + [ + "op", + "oly" + ], + [ + "▁Ob", + "er" + ], + [ + "▁O", + "ber" + ], + [ + "▁bre", + "d" + ], + [ + "▁br", + "ed" + ], + [ + "▁b", + "red" + ], + [ + "▁", + "bred" + ], + [ + "▁prop", + "he" + ], + [ + "▁pr", + "ophe" + ], + [ + "▁northwest", + "ward" + ], + [ + "ali", + "e" + ], + [ + "al", + "ie" + ], + [ + "a", + "lie" + ], + [ + "▁Buddh", + "a" + ], + [ + "▁Budd", + "ha" + ], + [ + "▁gar", + "age" + ], + [ + "▁ga", + "rage" + ], + [ + "▁Argent", + "ine" + ], + [ + "▁interfer", + "e" + ], + [ + "▁interf", + "ere" + ], + [ + "▁M", + "k" + ], + [ + "▁Ar", + "n" + ], + [ + "▁Tri", + "n" + ], + [ + "▁Tr", + "in" + ], + [ + "▁T", + "rin" + ], + [ + "▁Garc", + "ía" + ], + [ + "▁Gian", + "t" + ], + [ + "▁Gi", + "ant" + ], + [ + "▁G", + "iant" + ], + [ + "▁eleven", + "th" + ], + [ + "▁elev", + "enth" + ], + [ + "▁ele", + "venth" + ], + [ + "▁bee", + "f" + ], + [ + "▁be", + "ef" + ], + [ + "▁Thor", + "n" + ], + [ + "▁Th", + "orn" + ], + [ + "▁insight", + "s" + ], + [ + "▁ins", + "ights" + ], + [ + "▁San", + "ct" + ], + [ + "▁worksh", + "op" + ], + [ + "▁works", + "hop" + ], + [ + "▁work", + "shop" + ], + [ + "▁F", + "i" + ], + [ + "▁Have", + "n" + ], + [ + "▁Hav", + "en" + ], + [ + "▁Ha", + "ven" + ], + [ + "▁H", + "aven" + ], + [ + "▁tra", + "ff" + ], + [ + "▁tr", + "aff" + ], + [ + "▁Andal", + "ouzi" + ], + [ + "▁dimens", + "ion" + ], + [ + "▁dim", + "ension" + ], + [ + "▁align", + "ed" + ], + [ + "▁al", + "igned" + ], + [ + ":", + "10." + ], + [ + "och", + "e" + ], + [ + "oc", + "he" + ], + [ + "o", + "che" + ], + [ + "▁hal", + "t" + ], + [ + "▁h", + "alt" + ], + [ + "▁plot", + "s" + ], + [ + "▁pl", + "ots" + ], + [ + "iv", + "ation" + ], + [ + "om", + "orph" + ], + [ + "raw", + "l" + ], + [ + "▁Cran", + "e" + ], + [ + "▁Cra", + "ne" + ], + [ + "▁Cr", + "ane" + ], + [ + "▁C", + "rane" + ], + [ + "▁exp", + "elled" + ], + [ + "▁15", + "8" + ], + [ + "ass", + "ic" + ], + [ + "atter", + "y" + ], + [ + "att", + "ery" + ], + [ + "at", + "tery" + ], + [ + "▁sh", + "ade" + ], + [ + "▁cheap", + "er" + ], + [ + "▁che", + "aper" + ], + [ + "▁adventure", + "s" + ], + [ + "▁advent", + "ures" + ], + [ + "▁corpor", + "ation" + ], + [ + "▁corp", + "oration" + ], + [ + "h", + "urst" + ], + [ + "▁Den", + "is" + ], + [ + "▁De", + "nis" + ], + [ + "▁warm", + "er" + ], + [ + "▁war", + "mer" + ], + [ + "▁traged", + "y" + ], + [ + "▁Ind", + "igenous" + ], + [ + "va", + "s" + ], + [ + "v", + "as" + ], + [ + "▁val", + "ve" + ], + [ + "▁Jenn", + "ings" + ], + [ + "▁Jen", + "nings" + ], + [ + "I", + "M" + ], + [ + "lor", + "e" + ], + [ + "lo", + "re" + ], + [ + "l", + "ore" + ], + [ + "umin", + "g" + ], + [ + "umi", + "ng" + ], + [ + "um", + "ing" + ], + [ + "u", + "ming" + ], + [ + "▁mal", + "l" + ], + [ + "▁ma", + "ll" + ], + [ + "▁m", + "all" + ], + [ + "▁Scot", + "ia" + ], + [ + "▁luc", + "k" + ], + [ + "▁l", + "uck" + ], + [ + "▁Leban", + "on" + ], + [ + "▁colon", + "ists" + ], + [ + "es", + "y" + ], + [ + "e", + "sy" + ], + [ + "▁N", + "u" + ], + [ + "▁Cha", + "l" + ], + [ + "▁Ch", + "al" + ], + [ + "▁C", + "hal" + ], + [ + "▁rh", + "et" + ], + [ + "▁r", + "het" + ], + [ + "▁sle", + "e" + ], + [ + "▁sl", + "ee" + ], + [ + "▁s", + "lee" + ], + [ + "▁tru", + "mp" + ], + [ + "▁tr", + "ump" + ], + [ + "▁Mir", + "ror" + ], + [ + "▁unst", + "able" + ], + [ + "ij", + "uana" + ], + [ + "▁Arab", + "s" + ], + [ + "▁Ara", + "bs" + ], + [ + "▁Ar", + "abs" + ], + [ + "▁Bet", + "ty" + ], + [ + "▁Super", + "man" + ], + [ + "▁Sup", + "erman" + ], + [ + "▁General", + "ly" + ], + [ + "▁Gener", + "ally" + ], + [ + "▁Yo", + "k" + ], + [ + "▁Y", + "ok" + ], + [ + "▁rap", + "per" + ], + [ + "▁ra", + "pper" + ], + [ + "▁r", + "apper" + ], + [ + "▁unh", + "appy" + ], + [ + "▁Bi", + "o" + ], + [ + "▁B", + "io" + ], + [ + "▁Al", + "am" + ], + [ + "▁A", + "lam" + ], + [ + "▁pet", + "s" + ], + [ + "▁pe", + "ts" + ], + [ + "▁p", + "ets" + ], + [ + "▁gu", + "ilt" + ], + [ + "▁E", + "S" + ], + [ + "▁", + "ES" + ], + [ + "▁Lithuania", + "n" + ], + [ + "▁Lithuan", + "ian" + ], + [ + "▁spect", + "acular" + ], + [ + "▁Communication", + "s" + ], + [ + "▁Commun", + "ications" + ], + [ + "▁plut", + "onium" + ], + [ + "▁eighteen", + "th" + ], + [ + "▁eight", + "eenth" + ], + [ + "▁Car", + "bon" + ], + [ + "▁C", + "arbon" + ], + [ + "▁astronomer", + "s" + ], + [ + "▁astron", + "omers" + ], + [ + "oqu", + "e" + ], + [ + "o", + "que" + ], + [ + "adi", + "an" + ], + [ + "ad", + "ian" + ], + [ + "ste", + "ad" + ], + [ + "st", + "ead" + ], + [ + "▁As", + "ide" + ], + [ + "▁A", + "side" + ], + [ + "▁Andre", + "a" + ], + [ + "▁Andr", + "ea" + ], + [ + "▁And", + "rea" + ], + [ + "▁Su", + "ccess" + ], + [ + "▁S", + "uccess" + ], + [ + "▁defeat", + "s" + ], + [ + "▁defe", + "ats" + ], + [ + "▁employer", + "s" + ], + [ + "▁employ", + "ers" + ], + [ + "▁electronic", + "s" + ], + [ + "▁electron", + "ics" + ], + [ + "eli", + "c" + ], + [ + "el", + "ic" + ], + [ + "e", + "lic" + ], + [ + "▁Ba", + "v" + ], + [ + "▁B", + "av" + ], + [ + "▁PD", + "F" + ], + [ + "▁P", + "DF" + ], + [ + "▁alien", + "s" + ], + [ + "▁al", + "iens" + ], + [ + "▁uncom", + "fort" + ], + [ + "▁discover", + "ies" + ], + [ + "▁kn", + "ife" + ], + [ + "▁heart", + "s" + ], + [ + "▁hear", + "ts" + ], + [ + "▁he", + "arts" + ], + [ + "▁Gard", + "ner" + ], + [ + "▁mit", + "ochond" + ], + [ + "▁cru", + "s" + ], + [ + "▁cr", + "us" + ], + [ + "▁c", + "rus" + ], + [ + "▁Chem", + "ical" + ], + [ + "▁counter", + "att" + ], + [ + "▁Wy", + "oming" + ], + [ + "▁neighbor", + "s" + ], + [ + "▁neighb", + "ors" + ], + [ + "pat", + "itis" + ], + [ + "▁bes", + "ide" + ], + [ + "▁be", + "side" + ], + [ + "▁alpha", + "bet" + ], + [ + "▁al", + "phabet" + ], + [ + "▁d", + "é" + ], + [ + "▁18", + "12" + ], + [ + "for", + "ward" + ], + [ + "in", + "cluding" + ], + [ + "▁Ne", + "d" + ], + [ + "▁N", + "ed" + ], + [ + "▁ed", + "it" + ], + [ + "ra", + "h" + ], + [ + "r", + "ah" + ], + [ + "▁Coc", + "k" + ], + [ + "▁Co", + "ck" + ], + [ + "▁C", + "ock" + ], + [ + "▁Beh", + "ind" + ], + [ + "ar", + "u" + ], + [ + "a", + "ru" + ], + [ + "▁Marc", + "o" + ], + [ + "▁Mar", + "co" + ], + [ + "▁watch", + "es" + ], + [ + "▁w", + "atches" + ], + [ + "▁interval", + "s" + ], + [ + "▁inter", + "vals" + ], + [ + "▁medicine", + "s" + ], + [ + "▁medic", + "ines" + ], + [ + "▁Stra", + "t" + ], + [ + "▁Str", + "at" + ], + [ + "▁St", + "rat" + ], + [ + "▁admir", + "ed" + ], + [ + "▁adm", + "ired" + ], + [ + "▁suburb", + "s" + ], + [ + "▁sub", + "urbs" + ], + [ + "▁encourage", + "s" + ], + [ + "▁encourag", + "es" + ], + [ + "▁encoura", + "ges" + ], + [ + "▁Lope", + "z" + ], + [ + "▁Lo", + "pez" + ], + [ + "▁Ze", + "l" + ], + [ + "▁Z", + "el" + ], + [ + "▁Bl", + "oom" + ], + [ + "9", + "4" + ], + [ + "ya", + "t" + ], + [ + "y", + "at" + ], + [ + "▁Dr", + "e" + ], + [ + "▁D", + "re" + ], + [ + "▁hel", + "ium" + ], + [ + "▁sub", + "div" + ], + [ + "▁exam", + "ining" + ], + [ + "rit", + "e" + ], + [ + "ri", + "te" + ], + [ + "r", + "ite" + ], + [ + "▁Ba", + "iley" + ], + [ + "▁sevent", + "een" + ], + [ + "▁seven", + "teen" + ], + [ + "che", + "z" + ], + [ + "ch", + "ez" + ], + [ + "▁Non", + "e" + ], + [ + "▁No", + "ne" + ], + [ + "▁N", + "one" + ], + [ + "▁Mon", + "ica" + ], + [ + "▁M", + "onica" + ], + [ + "▁touch", + "ing" + ], + [ + "▁tou", + "ching" + ], + [ + "▁185", + "9" + ], + [ + "▁Web", + "er" + ], + [ + "▁We", + "ber" + ], + [ + "▁capt", + "ive" + ], + [ + "oy", + "a" + ], + [ + "o", + "ya" + ], + [ + "▁L", + "GBT" + ], + [ + "▁Man", + "ila" + ], + [ + "▁sp", + "ider" + ], + [ + "▁conf", + "ess" + ], + [ + "▁structure", + "d" + ], + [ + "▁struct", + "ured" + ], + [ + ".", + "'" + ], + [ + "▁Sw", + "an" + ], + [ + "▁S", + "wan" + ], + [ + "▁Mario", + "n" + ], + [ + "▁Mari", + "on" + ], + [ + "▁Mar", + "ion" + ], + [ + "▁pass", + "ive" + ], + [ + "▁merch", + "and" + ], + [ + "▁merc", + "hand" + ], + [ + "▁App", + "roximately" + ], + [ + "▁cy", + "ber" + ], + [ + "▁fair", + "y" + ], + [ + "▁f", + "airy" + ], + [ + "▁overl", + "ap" + ], + [ + "▁sl", + "aughter" + ], + [ + "uk", + "e" + ], + [ + "u", + "ke" + ], + [ + "▁Mu", + "mb" + ], + [ + "▁M", + "umb" + ], + [ + "▁pan", + "c" + ], + [ + "▁p", + "anc" + ], + [ + "▁bes", + "ie" + ], + [ + "▁conclud", + "ing" + ], + [ + "▁con", + "cluding" + ], + [ + "H", + "ow" + ], + [ + "▁15", + "2" + ], + [ + "us", + "ive" + ], + [ + "rop", + "olis" + ], + [ + "▁Rec", + "ent" + ], + [ + "▁Re", + "cent" + ], + [ + "▁after", + "ward" + ], + [ + "▁7", + "," + ], + [ + "▁", + "7," + ], + [ + "▁comp", + "uls" + ], + [ + "▁tw", + "elfth" + ], + [ + "ata", + "l" + ], + [ + "at", + "al" + ], + [ + "a", + "tal" + ], + [ + "▁bit", + "s" + ], + [ + "▁bi", + "ts" + ], + [ + "▁b", + "its" + ], + [ + "▁pul", + "s" + ], + [ + "▁p", + "uls" + ], + [ + "▁Man", + "or" + ], + [ + "▁Ma", + "nor" + ], + [ + "▁M", + "anor" + ], + [ + "cent", + "ury" + ], + [ + "▁host", + "ing" + ], + [ + "▁(1", + "7" + ], + [ + "▁(", + "17" + ], + [ + "▁Cris", + "is" + ], + [ + "▁C", + "risis" + ], + [ + "▁unn", + "amed" + ], + [ + "▁un", + "named" + ], + [ + "▁Pract", + "ice" + ], + [ + "▁deposit", + "ed" + ], + [ + "▁depos", + "ited" + ], + [ + "▁South", + "ampton" + ], + [ + "▁fo", + "g" + ], + [ + "▁f", + "og" + ], + [ + "▁Dam", + "e" + ], + [ + "▁Da", + "me" + ], + [ + "▁D", + "ame" + ], + [ + "▁neur", + "al" + ], + [ + "▁neu", + "ral" + ], + [ + "▁ne", + "ural" + ], + [ + "▁1,", + "000" + ], + [ + "▁1", + ",000" + ], + [ + "▁Patt", + "on" + ], + [ + "▁Pat", + "ton" + ], + [ + "▁Engine", + "er" + ], + [ + "igm", + "a" + ], + [ + "ig", + "ma" + ], + [ + "▁bu", + "nd" + ], + [ + "▁b", + "und" + ], + [ + "▁du", + "ck" + ], + [ + "▁d", + "uck" + ], + [ + "▁Sus", + "sex" + ], + [ + "ax", + "y" + ], + [ + "▁N", + "y" + ], + [ + "▁13", + "7" + ], + [ + "▁1", + "37" + ], + [ + "▁la", + "s" + ], + [ + "▁l", + "as" + ], + [ + "▁", + "las" + ], + [ + "▁rum", + "ors" + ], + [ + "▁danger", + "s" + ], + [ + "▁dang", + "ers" + ], + [ + "▁d", + "angers" + ], + [ + "▁combination", + "s" + ], + [ + "▁comb", + "inations" + ], + [ + "▁ES", + "P" + ], + [ + "▁E", + "SP" + ], + [ + "▁storyline", + "s" + ], + [ + "▁story", + "lines" + ], + [ + "▁to", + "y" + ], + [ + "▁t", + "oy" + ], + [ + "▁overs", + "ee" + ], + [ + "▁over", + "see" + ], + [ + "velop", + "ment" + ], + [ + "▁ste", + "ering" + ], + [ + "▁tre", + "asure" + ], + [ + "▁ec", + "c" + ], + [ + "▁e", + "cc" + ], + [ + "▁Tri", + "p" + ], + [ + "▁Tr", + "ip" + ], + [ + "▁T", + "rip" + ], + [ + "▁brigade", + "s" + ], + [ + "▁brig", + "ades" + ], + [ + "▁Ev", + "olution" + ], + [ + "▁Em", + "b" + ], + [ + "▁E", + "mb" + ], + [ + "▁Arm", + "ed" + ], + [ + "▁Ar", + "med" + ], + [ + "▁cha", + "os" + ], + [ + "▁sc", + "ream" + ], + [ + "▁important", + "ly" + ], + [ + "▁import", + "antly" + ], + [ + "▁Cou", + "l" + ], + [ + "▁Co", + "ul" + ], + [ + "▁C", + "oul" + ], + [ + "▁Rot", + "h" + ], + [ + "▁Ro", + "th" + ], + [ + "▁R", + "oth" + ], + [ + "▁no", + "st" + ], + [ + "▁n", + "ost" + ], + [ + "▁explo", + "r" + ], + [ + "▁expl", + "or" + ], + [ + "▁exp", + "lor" + ], + [ + "▁nerve", + "s" + ], + [ + "▁nerv", + "es" + ], + [ + "▁n", + "erves" + ], + [ + "▁employ", + "er" + ], + [ + "▁str", + "o" + ], + [ + "▁st", + "ro" + ], + [ + "▁tube", + "r" + ], + [ + "▁tub", + "er" + ], + [ + "▁tu", + "ber" + ], + [ + "▁t", + "uber" + ], + [ + "▁Dur", + "ham" + ], + [ + "▁grave", + "l" + ], + [ + "▁grav", + "el" + ], + [ + "▁gra", + "vel" + ], + [ + "▁gr", + "avel" + ], + [ + "▁react", + "or" + ], + [ + "▁din", + "osaur" + ], + [ + "B", + "ob" + ], + [ + "▁bar", + "b" + ], + [ + "▁b", + "arb" + ], + [ + "▁Sw", + "ord" + ], + [ + "▁S", + "word" + ], + [ + "▁res", + "il" + ], + [ + "▁Will", + "is" + ], + [ + "▁Wil", + "lis" + ], + [ + "▁couple", + "s" + ], + [ + "▁coup", + "les" + ], + [ + "▁cou", + "ples" + ], + [ + "ace", + "ut" + ], + [ + "ac", + "eut" + ], + [ + "▁Ref", + "orm" + ], + [ + "▁Re", + "form" + ], + [ + "▁short", + "ened" + ], + [ + "igo", + "n" + ], + [ + "ig", + "on" + ], + [ + "i", + "gon" + ], + [ + "word", + "s" + ], + [ + "w", + "ords" + ], + [ + "▁Sh", + "ore" + ], + [ + "▁mill", + "s" + ], + [ + "▁mil", + "ls" + ], + [ + "▁m", + "ills" + ], + [ + "▁corporation", + "s" + ], + [ + "▁corpor", + "ations" + ], + [ + "?", + "\"" + ], + [ + "▁Eg", + "g" + ], + [ + "▁E", + "gg" + ], + [ + "▁Ow", + "n" + ], + [ + "▁O", + "wn" + ], + [ + "▁Coc", + "h" + ], + [ + "▁Co", + "ch" + ], + [ + "▁C", + "och" + ], + [ + "▁Hum", + "ph" + ], + [ + "▁Hu", + "mph" + ], + [ + "▁H", + "umph" + ], + [ + "irc", + "raft" + ], + [ + "ir", + "craft" + ], + [ + "▁Hamb", + "urg" + ], + [ + "▁Ham", + "burg" + ], + [ + "▁organ", + "izing" + ], + [ + "]", + "," + ], + [ + "he", + "y" + ], + [ + "h", + "ey" + ], + [ + "▁o", + "t" + ], + [ + "▁", + "ot" + ], + [ + "astic", + "ally" + ], + [ + "ast", + "ically" + ], + [ + "▁Re", + "qu" + ], + [ + "▁R", + "equ" + ], + [ + "▁Mort", + "on" + ], + [ + "▁Mor", + "ton" + ], + [ + "▁Sus", + "tain" + ], + [ + "▁S", + "ustain" + ], + [ + "▁dev", + "ised" + ], + [ + "▁Ig", + "n" + ], + [ + "▁I", + "gn" + ], + [ + "▁se", + "w" + ], + [ + "▁s", + "ew" + ], + [ + "isy", + "èl" + ], + [ + "is", + "yèl" + ], + [ + "▁D", + "O" + ], + [ + "▁meks", + "iken" + ], + [ + "ard", + "i" + ], + [ + "ar", + "di" + ], + [ + "▁Bol", + "ton" + ], + [ + "▁p", + "yramid" + ], + [ + "▁sensor", + "y" + ], + [ + "▁sens", + "ory" + ], + [ + "▁Georgia", + "n" + ], + [ + "▁Georg", + "ian" + ], + [ + "▁Geor", + "gian" + ], + [ + "▁presum", + "ably" + ], + [ + "▁similar", + "ity" + ], + [ + "etic", + "s" + ], + [ + "et", + "ics" + ], + [ + "▁sw", + "ift" + ], + [ + "▁union", + "s" + ], + [ + "▁un", + "ions" + ], + [ + "▁later", + "al" + ], + [ + "▁late", + "ral" + ], + [ + "▁lat", + "eral" + ], + [ + "▁l", + "ateral" + ], + [ + "▁Light", + "ning" + ], + [ + "▁det", + "achment" + ], + [ + "8", + ")" + ], + [ + "▁bio", + "m" + ], + [ + "▁bi", + "om" + ], + [ + "▁les", + "bian" + ], + [ + "ighth", + "ouse" + ], + [ + "ight", + "house" + ], + [ + "igh", + "thouse" + ], + [ + "▁emotional", + "ly" + ], + [ + "▁emotion", + "ally" + ], + [ + "pt", + "s" + ], + [ + "p", + "ts" + ], + [ + "ot", + "le" + ], + [ + "o", + "tle" + ], + [ + "eway", + "s" + ], + [ + "ew", + "ays" + ], + [ + "e", + "ways" + ], + [ + "illa", + "s" + ], + [ + "ill", + "as" + ], + [ + "il", + "las" + ], + [ + "▁Fel", + "l" + ], + [ + "▁Fe", + "ll" + ], + [ + "▁F", + "ell" + ], + [ + "bu", + "ilding" + ], + [ + "▁faction", + "s" + ], + [ + "▁fact", + "ions" + ], + [ + "▁fa", + "ctions" + ], + [ + "▁f", + "actions" + ], + [ + "▁social", + "ist" + ], + [ + "▁Hou", + "s" + ], + [ + "▁Ho", + "us" + ], + [ + "▁H", + "ous" + ], + [ + "▁h", + "ire" + ], + [ + "▁", + "hire" + ], + [ + "▁rod", + "e" + ], + [ + "▁ro", + "de" + ], + [ + "▁r", + "ode" + ], + [ + "▁Whit", + "ney" + ], + [ + "▁Spiel", + "berg" + ], + [ + "▁cultiv", + "ation" + ], + [ + "▁cult", + "ivation" + ], + [ + "▁Broadcast", + "ing" + ], + [ + "▁soc", + "io" + ], + [ + "▁run", + "way" + ], + [ + "▁grav", + "itational" + ], + [ + "ry", + "s" + ], + [ + "r", + "ys" + ], + [ + "ody", + "nam" + ], + [ + "▁Cong", + "o" + ], + [ + "▁Con", + "go" + ], + [ + "▁C", + "ongo" + ], + [ + "▁Buddh", + "ism" + ], + [ + "▁regulate", + "d" + ], + [ + "▁reg", + "ulated" + ], + [ + "▁innovation", + "s" + ], + [ + "▁innov", + "ations" + ], + [ + "▁Bes", + "s" + ], + [ + "▁Be", + "ss" + ], + [ + "▁B", + "ess" + ], + [ + "▁Sar", + "a" + ], + [ + "▁Sa", + "ra" + ], + [ + "▁S", + "ara" + ], + [ + "▁For", + "bes" + ], + [ + "▁bre", + "ach" + ], + [ + "▁b", + "reach" + ], + [ + "▁ab", + "ortion" + ], + [ + "▁P", + "w" + ], + [ + "▁13", + "1" + ], + [ + "▁1", + "31" + ], + [ + "▁constitu", + "te" + ], + [ + "▁constit", + "ute" + ], + [ + "▁con", + "stitute" + ], + [ + "iri", + "e" + ], + [ + "ir", + "ie" + ], + [ + "i", + "rie" + ], + [ + "ox", + "ic" + ], + [ + "o", + "xic" + ], + [ + "is", + "bury" + ], + [ + "red", + "ited" + ], + [ + "▁Min", + "ogue" + ], + [ + "▁murder", + "s" + ], + [ + "▁mur", + "ders" + ], + [ + "▁M", + "ü" + ], + [ + "▁N", + "G" + ], + [ + "▁", + "NG" + ], + [ + "agonist", + "s" + ], + [ + "agon", + "ists" + ], + [ + "ord", + "e" + ], + [ + "or", + "de" + ], + [ + "▁Ru", + "p" + ], + [ + "▁R", + "up" + ], + [ + "▁Hunt", + "ing" + ], + [ + "▁Hun", + "ting" + ], + [ + "▁H", + "unting" + ], + [ + "▁enter", + "prise" + ], + [ + "am", + "us" + ], + [ + "a", + "mus" + ], + [ + "▁tour", + "n" + ], + [ + "▁to", + "urn" + ], + [ + "▁t", + "ourn" + ], + [ + "▁Hanna", + "h" + ], + [ + "▁Hann", + "ah" + ], + [ + "▁H", + "annah" + ], + [ + "▁check", + "ed" + ], + [ + "▁target", + "ing" + ], + [ + "no", + "r" + ], + [ + "n", + "or" + ], + [ + "pa", + "ge" + ], + [ + "p", + "age" + ], + [ + "▁San", + "g" + ], + [ + "▁Sa", + "ng" + ], + [ + "▁S", + "ang" + ], + [ + "re", + "b" + ], + [ + "r", + "eb" + ], + [ + "oman", + "s" + ], + [ + "oma", + "ns" + ], + [ + "om", + "ans" + ], + [ + "o", + "mans" + ], + [ + "▁Pres", + "ley" + ], + [ + "▁profit", + "able" + ], + [ + "▁prof", + "itable" + ], + [ + "▁S", + "E" + ], + [ + "ett", + "i" + ], + [ + "et", + "ti" + ], + [ + "e", + "tti" + ], + [ + "▁Fo", + "l" + ], + [ + "▁F", + "ol" + ], + [ + "▁Ko", + "t" + ], + [ + "▁K", + "ot" + ], + [ + "▁u", + "mp" + ], + [ + "▁", + "ump" + ], + [ + "▁Boy", + "d" + ], + [ + "▁Bo", + "yd" + ], + [ + "▁B", + "oyd" + ], + [ + "▁dis", + "g" + ], + [ + "▁pipe", + "line" + ], + [ + "▁pip", + "eline" + ], + [ + "pe", + "z" + ], + [ + "p", + "ez" + ], + [ + "ible", + "s" + ], + [ + "ibl", + "es" + ], + [ + "ib", + "les" + ], + [ + "▁cou", + "gh" + ], + [ + "▁c", + "ough" + ], + [ + "▁convention", + "s" + ], + [ + "▁convent", + "ions" + ], + [ + "▁con", + "ventions" + ], + [ + "▁37", + "0" + ], + [ + "▁3", + "70" + ], + [ + "▁Jess", + "e" + ], + [ + "▁Jes", + "se" + ], + [ + "▁robot", + "s" + ], + [ + "▁rob", + "ots" + ], + [ + "st", + "op" + ], + [ + "s", + "top" + ], + [ + "▁Qu", + "inn" + ], + [ + "▁gu", + "err" + ], + [ + "▁sym", + "ptom" + ], + [ + "▁util", + "ize" + ], + [ + "▁ut", + "ilize" + ], + [ + "▁per", + "imeter" + ], + [ + "R", + "L" + ], + [ + "▁Bu", + "n" + ], + [ + "▁B", + "un" + ], + [ + "▁Aust", + "en" + ], + [ + "▁Aus", + "ten" + ], + [ + "▁Au", + "sten" + ], + [ + "▁thy", + "roid" + ], + [ + "▁st", + "ing" + ], + [ + "▁s", + "ting" + ], + [ + "ann", + "i" + ], + [ + "an", + "ni" + ], + [ + "htt", + "p" + ], + [ + "▁Do", + "l" + ], + [ + "▁D", + "ol" + ], + [ + "▁Y", + "u" + ], + [ + "▁Ac", + "h" + ], + [ + "▁A", + "ch" + ], + [ + "▁Adv", + "is" + ], + [ + "▁Ad", + "vis" + ], + [ + "▁al", + "pha" + ], + [ + "▁gl", + "ory" + ], + [ + "▁Art", + "illery" + ], + [ + "▁MI", + "T" + ], + [ + "▁M", + "IT" + ], + [ + "▁mat", + "ing" + ], + [ + "▁ma", + "ting" + ], + [ + "▁m", + "ating" + ], + [ + "▁mon", + "etary" + ], + [ + "▁Cre", + "t" + ], + [ + "▁Cr", + "et" + ], + [ + "▁C", + "ret" + ], + [ + "▁All", + "an" + ], + [ + "▁Al", + "lan" + ], + [ + "▁A", + "llan" + ], + [ + "▁Guer", + "r" + ], + [ + "▁Gu", + "err" + ], + [ + "▁G", + "DP" + ], + [ + "▁promin", + "ence" + ], + [ + "▁Cra", + "n" + ], + [ + "▁Cr", + "an" + ], + [ + "▁C", + "ran" + ], + [ + "▁Sym", + "ptoms" + ], + [ + "▁pneum", + "onia" + ], + [ + "▁stretch", + "ing" + ], + [ + "▁stret", + "ching" + ], + [ + "▁be", + "e" + ], + [ + "▁b", + "ee" + ], + [ + "▁", + "bee" + ], + [ + "▁guy", + "s" + ], + [ + "▁gu", + "ys" + ], + [ + "▁Im", + "medi" + ], + [ + "ä", + "n" + ], + [ + "▁print", + "s" + ], + [ + "▁pr", + "ints" + ], + [ + "▁", + "prints" + ], + [ + "▁verb", + "al" + ], + [ + "▁ver", + "bal" + ], + [ + "▁13", + "8" + ], + [ + "▁1", + "38" + ], + [ + "▁gl", + "ut" + ], + [ + "▁faith", + "ful" + ], + [ + "if", + "a" + ], + [ + "i", + "fa" + ], + [ + "rus", + "h" + ], + [ + "ru", + "sh" + ], + [ + "r", + "ush" + ], + [ + "▁Ne", + "m" + ], + [ + "▁N", + "em" + ], + [ + "▁Lo", + "mb" + ], + [ + "▁L", + "omb" + ], + [ + "▁Be", + "ver" + ], + [ + "▁B", + "ever" + ], + [ + "▁hind", + "er" + ], + [ + "▁h", + "inder" + ], + [ + "▁Compl", + "ex" + ], + [ + "▁Comp", + "lex" + ], + [ + "▁Com", + "plex" + ], + [ + "▁Soft", + "ware" + ], + [ + "▁Venez", + "uel" + ], + [ + "▁up", + "t" + ], + [ + "▁u", + "pt" + ], + [ + "▁", + "upt" + ], + [ + "▁thres", + "hold" + ], + [ + "▁Fo", + "w" + ], + [ + "▁F", + "ow" + ], + [ + "▁Techn", + "ical" + ], + [ + "▁donation", + "s" + ], + [ + "▁don", + "ations" + ], + [ + "▁maneuver", + "s" + ], + [ + "▁maneu", + "vers" + ], + [ + "agu", + "s" + ], + [ + "ag", + "us" + ], + [ + "a", + "gus" + ], + [ + "eo", + "us" + ], + [ + "e", + "ous" + ], + [ + "▁Dere", + "k" + ], + [ + "▁Der", + "ek" + ], + [ + "▁shock", + "ed" + ], + [ + "▁sh", + "ocked" + ], + [ + "▁Til", + "l" + ], + [ + "▁Ti", + "ll" + ], + [ + "▁T", + "ill" + ], + [ + "▁rock", + "y" + ], + [ + "▁it", + "ilize" + ], + [ + "▁Der", + "by" + ], + [ + "▁Hamm", + "er" + ], + [ + "▁Ham", + "mer" + ], + [ + "▁nob", + "ody" + ], + [ + "▁no", + "body" + ], + [ + "▁Ar", + "d" + ], + [ + "▁A", + "rd" + ], + [ + "▁Re", + "bec" + ], + [ + "▁re", + "app" + ], + [ + "▁H", + "undred" + ], + [ + "▁Christ", + "ine" + ], + [ + "mark", + "et" + ], + [ + "▁fed", + "er" + ], + [ + "▁fe", + "der" + ], + [ + "▁f", + "eder" + ], + [ + "▁pione", + "er" + ], + [ + "▁moral", + "ity" + ], + [ + "▁mor", + "ality" + ], + [ + "▁assessment", + "s" + ], + [ + "▁assess", + "ments" + ], + [ + "▁frag", + "ment" + ], + [ + "▁fra", + "gment" + ], + [ + "opt", + "er" + ], + [ + "op", + "ter" + ], + [ + "▁Kenn", + "y" + ], + [ + "▁Ken", + "ny" + ], + [ + "▁K", + "enny" + ], + [ + "▁dome", + "st" + ], + [ + "▁dom", + "est" + ], + [ + "▁moral", + "e" + ], + [ + "▁mor", + "ale" + ], + [ + "▁snake", + "s" + ], + [ + "▁sn", + "akes" + ], + [ + "▁ref", + "ined" + ], + [ + "▁mand", + "atory" + ], + [ + "▁subsid", + "iary" + ], + [ + "ro", + "ft" + ], + [ + "r", + "oft" + ], + [ + "ron", + "es" + ], + [ + "ro", + "nes" + ], + [ + "r", + "ones" + ], + [ + "▁be", + "ans" + ], + [ + "▁fost", + "er" + ], + [ + "▁fo", + "ster" + ], + [ + "▁f", + "oster" + ], + [ + "▁prec", + "ious" + ], + [ + "▁pre", + "cious" + ], + [ + "▁Par", + "achute" + ], + [ + ".", + "0" + ], + [ + "▁med", + "i" + ], + [ + "▁me", + "di" + ], + [ + "▁", + "medi" + ], + [ + "▁Bas", + "il" + ], + [ + "▁Fol", + "k" + ], + [ + "▁F", + "olk" + ], + [ + "▁Po", + "or" + ], + [ + "▁P", + "oor" + ], + [ + "▁Rec", + "re" + ], + [ + "▁And", + "ers" + ], + [ + "▁An", + "ders" + ], + [ + "▁en", + "roll" + ], + [ + "▁monster", + "s" + ], + [ + "▁mon", + "sters" + ], + [ + "▁S", + "M" + ], + [ + "▁En", + "s" + ], + [ + "▁E", + "ns" + ], + [ + "▁Han", + "k" + ], + [ + "▁H", + "ank" + ], + [ + "▁Pit", + "t" + ], + [ + "▁Pi", + "tt" + ], + [ + "▁P", + "itt" + ], + [ + "▁spe", + "ar" + ], + [ + "▁sp", + "ear" + ], + [ + "▁s", + "osyete" + ], + [ + "▁motor", + "way" + ], + [ + "▁desper", + "ate" + ], + [ + "▁desp", + "erate" + ], + [ + "▁C", + "L" + ], + [ + "▁Jo", + "urn" + ], + [ + "▁J", + "ourn" + ], + [ + "▁liber", + "t" + ], + [ + "▁lib", + "ert" + ], + [ + "▁li", + "bert" + ], + [ + "▁Vari", + "ety" + ], + [ + "▁Var", + "iety" + ], + [ + "▁crush", + "ed" + ], + [ + "▁crus", + "hed" + ], + [ + "▁cr", + "ushed" + ], + [ + "op", + "us" + ], + [ + "▁Ho", + "d" + ], + [ + "▁H", + "od" + ], + [ + "co", + "urt" + ], + [ + "c", + "ourt" + ], + [ + "▁Kin", + "d" + ], + [ + "▁Ki", + "nd" + ], + [ + "▁K", + "ind" + ], + [ + "ulator", + "s" + ], + [ + "ul", + "ators" + ], + [ + "▁Ev", + "idence" + ], + [ + "P", + "ro" + ], + [ + "▁t", + "s" + ], + [ + "▁", + "ts" + ], + [ + "opol", + "d" + ], + [ + "op", + "old" + ], + [ + "▁wel", + "ding" + ], + [ + "▁depress", + "ed" + ], + [ + "▁depr", + "essed" + ], + [ + "▁dep", + "ressed" + ], + [ + "▁convinc", + "ing" + ], + [ + "▁convin", + "cing" + ], + [ + "▁mine", + "rs" + ], + [ + "▁min", + "ers" + ], + [ + "▁mi", + "ners" + ], + [ + "▁prem", + "ise" + ], + [ + "▁therap", + "eut" + ], + [ + "▁en", + "f" + ], + [ + "▁Pir", + "ates" + ], + [ + "▁Pi", + "rates" + ], + [ + "▁P", + "irates" + ], + [ + "▁energ", + "et" + ], + [ + "▁en", + "erget" + ], + [ + "▁Fr", + "o" + ], + [ + "▁F", + "ro" + ], + [ + "▁Eu", + "ro" + ], + [ + "▁E", + "uro" + ], + [ + "▁sou", + "p" + ], + [ + "▁so", + "up" + ], + [ + "▁s", + "oup" + ], + [ + "▁st", + "ir" + ], + [ + "opher", + "s" + ], + [ + "ophe", + "rs" + ], + [ + "oph", + "ers" + ], + [ + "op", + "hers" + ], + [ + "▁def", + "ic" + ], + [ + "▁de", + "fic" + ], + [ + "▁ex", + "otic" + ], + [ + "▁Jun", + "ction" + ], + [ + "▁J", + "unction" + ], + [ + "▁Sp", + "l" + ], + [ + "▁S", + "pl" + ], + [ + "▁Eight", + "h" + ], + [ + "▁E", + "ighth" + ], + [ + "▁Eth", + "iop" + ], + [ + "▁phyl", + "ogen" + ], + [ + "▁psych", + "iat" + ], + [ + "▁down", + "stream" + ], + [ + "▁nutrition", + "al" + ], + [ + "▁nutrit", + "ional" + ], + [ + "▁photograph", + "er" + ], + [ + "▁phot", + "ographer" + ], + [ + "▁P", + "L" + ], + [ + "▁", + "PL" + ], + [ + "▁Pal", + "e" + ], + [ + "▁Pa", + "le" + ], + [ + "▁P", + "ale" + ], + [ + "▁Step", + "h" + ], + [ + "▁Ste", + "ph" + ], + [ + "▁St", + "eph" + ], + [ + "▁Road", + "s" + ], + [ + "▁Ro", + "ads" + ], + [ + "▁mod", + "ification" + ], + [ + "bor", + "o" + ], + [ + "bo", + "ro" + ], + [ + "b", + "oro" + ], + [ + "▁bl", + "o" + ], + [ + "▁b", + "lo" + ], + [ + "▁Eld", + "er" + ], + [ + "▁El", + "der" + ], + [ + "▁Bor", + "ough" + ], + [ + "▁Bo", + "rough" + ], + [ + "▁B", + "orough" + ], + [ + "▁Sal", + "isbury" + ], + [ + "u", + "f" + ], + [ + "▁cav", + "ity" + ], + [ + "▁All", + "music" + ], + [ + "▁pack", + "aging" + ], + [ + "▁I", + "L" + ], + [ + "▁", + "IL" + ], + [ + "▁fin", + "s" + ], + [ + "▁fi", + "ns" + ], + [ + "▁f", + "ins" + ], + [ + "▁Fl", + "ash" + ], + [ + "▁F", + "lash" + ], + [ + "▁were", + "n" + ], + [ + "▁we", + "ren" + ], + [ + "▁w", + "eren" + ], + [ + "▁trouble", + "s" + ], + [ + "▁troub", + "les" + ], + [ + "na", + "s" + ], + [ + "n", + "as" + ], + [ + "oy", + "le" + ], + [ + "o", + "yle" + ], + [ + "hold", + "er" + ], + [ + "hol", + "der" + ], + [ + "p", + "i" + ], + [ + "ant", + "o" + ], + [ + "an", + "to" + ], + [ + "wo", + "man" + ], + [ + "w", + "oman" + ], + [ + "▁Wil", + "m" + ], + [ + "▁W", + "ilm" + ], + [ + "umber", + "s" + ], + [ + "umb", + "ers" + ], + [ + "um", + "bers" + ], + [ + "▁dw", + "ell" + ], + [ + "▁d", + "well" + ], + [ + "▁Tank", + "ou" + ], + [ + "▁dial", + "ect" + ], + [ + "▁favour", + "ed" + ], + [ + "▁fav", + "oured" + ], + [ + "▁possession", + "s" + ], + [ + "▁possess", + "ions" + ], + [ + "▁poss", + "essions" + ], + [ + "ope", + "d" + ], + [ + "op", + "ed" + ], + [ + "o", + "ped" + ], + [ + "▁Vit", + "amin" + ], + [ + "▁cancer", + "s" + ], + [ + "▁canc", + "ers" + ], + [ + "▁can", + "cers" + ], + [ + "▁c", + "ancers" + ], + [ + "▁acknowled", + "ge" + ], + [ + "▁acknow", + "ledge" + ], + [ + "d", + "r" + ], + [ + "▁S", + "D" + ], + [ + "▁st", + "up" + ], + [ + "▁di", + "arr" + ], + [ + "ilib", + "rium" + ], + [ + "▁hect", + "ares" + ], + [ + "ne", + "z" + ], + [ + "n", + "ez" + ], + [ + "▁sea", + "m" + ], + [ + "▁se", + "am" + ], + [ + "al", + "izatè" + ], + [ + "▁cont", + "ra" + ], + [ + "▁con", + "tra" + ], + [ + "▁parad", + "e" + ], + [ + "▁para", + "de" + ], + [ + "▁par", + "ade" + ], + [ + "▁Brit", + "t" + ], + [ + "▁Bri", + "tt" + ], + [ + "▁Br", + "itt" + ], + [ + "▁board", + "ing" + ], + [ + "▁l", + "è" + ], + [ + "▁", + "lè" + ], + [ + "▁defect", + "s" + ], + [ + "▁def", + "ects" + ], + [ + "▁height", + "s" + ], + [ + "▁he", + "ights" + ], + [ + "▁statue", + "s" + ], + [ + "▁stat", + "ues" + ], + [ + "▁moderate", + "ly" + ], + [ + "▁moder", + "ately" + ], + [ + "▁n", + "i" + ], + [ + "▁", + "ni" + ], + [ + "oir", + "e" + ], + [ + "oi", + "re" + ], + [ + "o", + "ire" + ], + [ + "▁te", + "ch" + ], + [ + "▁t", + "ech" + ], + [ + "▁visual", + "s" + ], + [ + "▁vis", + "uals" + ], + [ + "▁Democr", + "at" + ], + [ + "▁inject", + "ion" + ], + [ + "▁inj", + "ection" + ], + [ + "▁not", + "orious" + ], + [ + "appropri", + "ate" + ], + [ + "▁container", + "s" + ], + [ + "▁contain", + "ers" + ], + [ + "▁U", + "g" + ], + [ + "ente", + "r" + ], + [ + "ent", + "er" + ], + [ + "en", + "ter" + ], + [ + "aint", + "ed" + ], + [ + "ain", + "ted" + ], + [ + "a", + "inted" + ], + [ + "▁inc", + "on" + ], + [ + "▁in", + "con" + ], + [ + "▁build", + "s" + ], + [ + "ug", + "ht" + ], + [ + "u", + "ght" + ], + [ + "▁dam", + "s" + ], + [ + "▁da", + "ms" + ], + [ + "▁d", + "ams" + ], + [ + "▁tri", + "m" + ], + [ + "▁tr", + "im" + ], + [ + "▁t", + "rim" + ], + [ + "▁Clem", + "ent" + ], + [ + "▁Cle", + "ment" + ], + [ + "▁Cl", + "ement" + ], + [ + "▁C", + "lement" + ], + [ + "▁ref", + "usal" + ], + [ + "▁ecc", + "entric" + ], + [ + "ze", + "l" + ], + [ + "z", + "el" + ], + [ + "▁Nu", + "rs" + ], + [ + "▁N", + "urs" + ], + [ + "▁just", + "ified" + ], + [ + "ish", + "i" + ], + [ + "is", + "hi" + ], + [ + "i", + "shi" + ], + [ + "▁32", + "0" + ], + [ + "▁3", + "20" + ], + [ + "sw", + "ick" + ], + [ + "s", + "wick" + ], + [ + "▁Dan", + "a" + ], + [ + "▁Da", + "na" + ], + [ + "▁D", + "ana" + ], + [ + "▁unw", + "illing" + ], + [ + "▁co", + "tt" + ], + [ + "▁c", + "ott" + ], + [ + "▁", + "cott" + ], + [ + "▁planet", + "ary" + ], + [ + "▁plan", + "etary" + ], + [ + "▁show", + "c" + ], + [ + "mas", + "s" + ], + [ + "ma", + "ss" + ], + [ + "m", + "ass" + ], + [ + "umn", + "i" + ], + [ + "um", + "ni" + ], + [ + "▁format", + "s" + ], + [ + "▁form", + "ats" + ], + [ + "▁portrait", + "s" + ], + [ + "▁portra", + "its" + ], + [ + "▁L", + "odge" + ], + [ + "▁la", + "c" + ], + [ + "▁l", + "ac" + ], + [ + "▁Her", + "s" + ], + [ + "▁He", + "rs" + ], + [ + "▁H", + "ers" + ], + [ + "▁tem", + "pt" + ], + [ + "▁t", + "empt" + ], + [ + "▁La", + "k" + ], + [ + "▁L", + "ak" + ], + [ + "▁Maria", + "n" + ], + [ + "▁Mari", + "an" + ], + [ + "▁Mar", + "ian" + ], + [ + "▁Ma", + "rian" + ], + [ + "▁M", + "arian" + ], + [ + "▁concept", + "ion" + ], + [ + "▁conce", + "ption" + ], + [ + "▁con", + "ception" + ], + [ + "▁contrad", + "ict" + ], + [ + "▁contra", + "dict" + ], + [ + "▁Under", + "standing" + ], + [ + "ab", + "i" + ], + [ + "a", + "bi" + ], + [ + "▁ga", + "m" + ], + [ + "▁g", + "am" + ], + [ + "▁De", + "al" + ], + [ + "▁D", + "eal" + ], + [ + "▁Cred", + "it" + ], + [ + "add", + "y" + ], + [ + "ad", + "dy" + ], + [ + "▁la", + "g" + ], + [ + "▁l", + "ag" + ], + [ + "can", + "al" + ], + [ + "ca", + "nal" + ], + [ + "▁Go", + "eb" + ], + [ + "▁ca", + "ge" + ], + [ + "▁c", + "age" + ], + [ + "▁yield", + "s" + ], + [ + "rik", + "e" + ], + [ + "ri", + "ke" + ], + [ + "r", + "ike" + ], + [ + "▁Rose", + "n" + ], + [ + "▁Ros", + "en" + ], + [ + "▁Ro", + "sen" + ], + [ + "▁R", + "osen" + ], + [ + "▁w", + "ives" + ], + [ + "▁att", + "ach" + ], + [ + "▁puzz", + "le" + ], + [ + "▁p", + "uzzle" + ], + [ + "▁bar", + "racks" + ], + [ + "▁museum", + "s" + ], + [ + "▁tank", + "ou" + ], + [ + "▁Po", + "u" + ], + [ + "▁P", + "ou" + ], + [ + "cha", + "ir" + ], + [ + "ch", + "air" + ], + [ + "ilia", + "n" + ], + [ + "ili", + "an" + ], + [ + "il", + "ian" + ], + [ + "cliff", + "e" + ], + [ + "ovak", + "ia" + ], + [ + "writ", + "er" + ], + [ + "▁Shaw", + "n" + ], + [ + "▁Sha", + "wn" + ], + [ + "▁Sh", + "awn" + ], + [ + "▁cra", + "zy" + ], + [ + "▁cr", + "azy" + ], + [ + "▁gland", + "s" + ], + [ + "▁gl", + "ands" + ], + [ + "▁g", + "lands" + ], + [ + "▁ide", + "ology" + ], + [ + "▁calculation", + "s" + ], + [ + "▁calc", + "ulations" + ], + [ + "yl", + "on" + ], + [ + "y", + "lon" + ], + [ + "ifier", + "s" + ], + [ + "if", + "iers" + ], + [ + "▁alle", + "v" + ], + [ + "▁all", + "ev" + ], + [ + "▁al", + "lev" + ], + [ + "▁red", + "dish" + ], + [ + "▁wash", + "ing" + ], + [ + "▁was", + "hing" + ], + [ + "▁w", + "ashing" + ], + [ + "▁de", + "ity" + ], + [ + "▁Final", + "s" + ], + [ + "▁Fin", + "als" + ], + [ + "▁F", + "inals" + ], + [ + "▁ende", + "mic" + ], + [ + "▁end", + "emic" + ], + [ + "▁sharp", + "ly" + ], + [ + "▁shar", + "ply" + ], + [ + "▁economic", + "ally" + ], + [ + "▁econom", + "ically" + ], + [ + "F", + "ar" + ], + [ + "▁Fe", + "n" + ], + [ + "▁F", + "en" + ], + [ + "▁Kar", + "n" + ], + [ + "▁K", + "arn" + ], + [ + "▁admit", + "s" + ], + [ + "▁adm", + "its" + ], + [ + "▁Ell", + "iott" + ], + [ + "▁affiliate", + "d" + ], + [ + "▁affili", + "ated" + ], + [ + "▁contempor", + "aries" + ], + [ + "ova", + "n" + ], + [ + "ov", + "an" + ], + [ + "o", + "van" + ], + [ + "xt", + "er" + ], + [ + "x", + "ter" + ], + [ + "▁Le", + "y" + ], + [ + "▁L", + "ey" + ], + [ + "▁R", + "ugby" + ], + [ + "▁Music", + "al" + ], + [ + "▁Mus", + "ical" + ], + [ + "win", + "d" + ], + [ + "wi", + "nd" + ], + [ + "w", + "ind" + ], + [ + "▁ref", + "use" + ], + [ + "▁Nept", + "une" + ], + [ + "▁cons", + "erv" + ], + [ + "▁fresh", + "water" + ], + [ + ".", + "3" + ], + [ + "ys", + "s" + ], + [ + "y", + "ss" + ], + [ + "ook", + "s" + ], + [ + "oo", + "ks" + ], + [ + "▁Sans", + "krit" + ], + [ + "▁U", + "V" + ], + [ + "fr", + "om" + ], + [ + "f", + "rom" + ], + [ + "ino", + "s" + ], + [ + "in", + "os" + ], + [ + "▁ép", + "isode" + ], + [ + "▁assum", + "ing" + ], + [ + "▁ass", + "uming" + ], + [ + "▁disrupt", + "ed" + ], + [ + "▁dis", + "rupted" + ], + [ + "▁water", + "line" + ], + [ + "oh", + "l" + ], + [ + "o", + "hl" + ], + [ + "▁mo", + "l" + ], + [ + "▁m", + "ol" + ], + [ + "ena", + "ry" + ], + [ + "en", + "ary" + ], + [ + "▁ro", + "pe" + ], + [ + "▁r", + "ope" + ], + [ + "point", + "s" + ], + [ + "po", + "ints" + ], + [ + "▁local", + "s" + ], + [ + "▁loc", + "als" + ], + [ + "▁story", + "t" + ], + [ + "▁compl", + "aint" + ], + [ + "▁My", + "c" + ], + [ + "▁ve", + "st" + ], + [ + "▁v", + "est" + ], + [ + "▁", + "vest" + ], + [ + "▁mark", + "er" + ], + [ + "▁mar", + "ker" + ], + [ + "▁pole", + "s" + ], + [ + "▁pol", + "es" + ], + [ + "▁po", + "les" + ], + [ + "▁p", + "oles" + ], + [ + "▁Bu", + "enos" + ], + [ + "▁mort", + "ar" + ], + [ + "▁mor", + "tar" + ], + [ + "▁Hallow", + "een" + ], + [ + "▁Act", + "s" + ], + [ + "▁Ac", + "ts" + ], + [ + "▁In", + "tegr" + ], + [ + "mi", + "c" + ], + [ + "m", + "ic" + ], + [ + "et", + "ry" + ], + [ + "e", + "try" + ], + [ + "ou", + "fl" + ], + [ + "▁ko", + "te" + ], + [ + "▁k", + "ote" + ], + [ + "▁Jac", + "qu" + ], + [ + "▁el", + "ong" + ], + [ + "▁e", + "long" + ], + [ + "▁", + "elong" + ], + [ + "▁rem", + "ed" + ], + [ + "▁re", + "med" + ], + [ + "▁r", + "emed" + ], + [ + "▁Bo", + "m" + ], + [ + "▁B", + "om" + ], + [ + "ift", + "ed" + ], + [ + "if", + "ted" + ], + [ + "▁last", + "s" + ], + [ + "▁las", + "ts" + ], + [ + "▁la", + "sts" + ], + [ + "▁l", + "asts" + ], + [ + "▁m", + "uc" + ], + [ + "▁Sen", + "s" + ], + [ + "▁Se", + "ns" + ], + [ + "▁S", + "ens" + ], + [ + "▁theolog", + "y" + ], + [ + "▁the", + "ology" + ], + [ + "▁Arm", + "s" + ], + [ + "▁Ar", + "ms" + ], + [ + "▁perc", + "e" + ], + [ + "▁per", + "ce" + ], + [ + "▁sound", + "ed" + ], + [ + "▁s", + "ounded" + ], + [ + "▁stat", + "ute" + ], + [ + "▁prob", + "able" + ], + [ + "9", + "1" + ], + [ + "▁185", + "7" + ], + [ + "▁Ga", + "el" + ], + [ + "▁G", + "ael" + ], + [ + "▁some", + "how" + ], + [ + "grad", + "ation" + ], + [ + "▁aver", + "aging" + ], + [ + "▁mean", + "while" + ], + [ + "▁bus", + "h" + ], + [ + "▁bu", + "sh" + ], + [ + "▁b", + "ush" + ], + [ + "acio", + "us" + ], + [ + "ac", + "ious" + ], + [ + "a", + "cious" + ], + [ + "▁Mumb", + "ai" + ], + [ + "▁cor", + "rupt" + ], + [ + "▁gamb", + "ling" + ], + [ + "▁I", + "o" + ], + [ + "tt", + "es" + ], + [ + "t", + "tes" + ], + [ + "▁institution", + "al" + ], + [ + "▁in", + "stitutional" + ], + [ + "▁Fe", + "w" + ], + [ + "▁F", + "ew" + ], + [ + "▁New", + "ark" + ], + [ + "▁debate", + "s" + ], + [ + "▁deb", + "ates" + ], + [ + "▁Every", + "thing" + ], + [ + "▁illust", + "ration" + ], + [ + "▁Ad", + "olf" + ], + [ + "▁cerem", + "onial" + ], + [ + "▁P", + "H" + ], + [ + "▁Card", + "inal" + ], + [ + "▁Gaz", + "a" + ], + [ + "▁Ga", + "za" + ], + [ + "▁G", + "aza" + ], + [ + "▁E", + "instein" + ], + [ + "▁ec", + "h" + ], + [ + "▁e", + "ch" + ], + [ + "▁", + "ech" + ], + [ + "▁yo", + "ga" + ], + [ + "▁y", + "oga" + ], + [ + "▁Bac", + "on" + ], + [ + "▁Ba", + "con" + ], + [ + "▁B", + "acon" + ], + [ + "▁neg", + "lect" + ], + [ + "▁render", + "ing" + ], + [ + "fo", + "l" + ], + [ + "f", + "ol" + ], + [ + "ani", + "c" + ], + [ + "an", + "ic" + ], + [ + "a", + "nic" + ], + [ + "ete", + "d" + ], + [ + "et", + "ed" + ], + [ + "e", + "ted" + ], + [ + "▁Aut", + "o" + ], + [ + "▁Au", + "to" + ], + [ + "▁A", + "uto" + ], + [ + "▁re", + "iss" + ], + [ + "▁ge", + "ometry" + ], + [ + "▁publisher", + "s" + ], + [ + "▁publish", + "ers" + ], + [ + "▁publ", + "ishers" + ], + [ + "▁Ja", + "g" + ], + [ + "▁J", + "ag" + ], + [ + "▁Ka", + "y" + ], + [ + "▁K", + "ay" + ], + [ + "▁Li", + "u" + ], + [ + "▁L", + "iu" + ], + [ + "▁app", + "l" + ], + [ + "▁ap", + "pl" + ], + [ + "▁mo", + "ck" + ], + [ + "▁m", + "ock" + ], + [ + "▁Can", + "ber" + ], + [ + "▁Ult", + "imate" + ], + [ + "▁mushroom", + "s" + ], + [ + "▁mush", + "rooms" + ], + [ + "▁Gor", + "e" + ], + [ + "▁Go", + "re" + ], + [ + "▁G", + "ore" + ], + [ + "▁Ur", + "an" + ], + [ + "▁U", + "ran" + ], + [ + "▁horn", + "s" + ], + [ + "▁hor", + "ns" + ], + [ + "▁h", + "orns" + ], + [ + "▁bed", + "room" + ], + [ + "▁uncomfort", + "able" + ], + [ + "oke", + "n" + ], + [ + "ok", + "en" + ], + [ + "o", + "ken" + ], + [ + "▁CI", + "A" + ], + [ + "▁C", + "IA" + ], + [ + "▁che", + "r" + ], + [ + "▁ch", + "er" + ], + [ + "▁c", + "her" + ], + [ + "▁", + "cher" + ], + [ + "ita", + "ting" + ], + [ + "it", + "ating" + ], + [ + "▁Dan", + "ube" + ], + [ + "▁Strat", + "eg" + ], + [ + "▁Str", + "ateg" + ], + [ + "▁Lind", + "wall" + ], + [ + "E", + "l" + ], + [ + "▁al", + "ign" + ], + [ + "▁frequ", + "encies" + ], + [ + "at", + "um" + ], + [ + "▁Va", + "s" + ], + [ + "▁V", + "as" + ], + [ + "ri", + "que" + ], + [ + "r", + "ique" + ], + [ + "▁Al", + "onso" + ], + [ + "▁shift", + "ing" + ], + [ + "▁shif", + "ting" + ], + [ + "▁sh", + "ifting" + ], + [ + "ole", + "r" + ], + [ + "ol", + "er" + ], + [ + "o", + "ler" + ], + [ + "▁Pin", + "ar" + ], + [ + "▁Pi", + "nar" + ], + [ + "▁P", + "inar" + ], + [ + "▁debate", + "d" + ], + [ + "▁deb", + "ated" + ], + [ + "▁Sund", + "er" + ], + [ + "▁Sun", + "der" + ], + [ + "▁S", + "under" + ], + [ + "▁Stefan", + "i" + ], + [ + "▁Stef", + "ani" + ], + [ + "▁All", + "Music" + ], + [ + "▁terror", + "ist" + ], + [ + "▁sur", + "n" + ], + [ + "▁s", + "urn" + ], + [ + "▁Sn", + "ake" + ], + [ + "▁Guadal", + "canal" + ], + [ + "▁Fu", + "l" + ], + [ + "▁F", + "ul" + ], + [ + "▁Su", + "l" + ], + [ + "▁S", + "ul" + ], + [ + "▁Dist", + "inguished" + ], + [ + "▁14", + "6" + ], + [ + "▁1", + "46" + ], + [ + "▁55", + "0" + ], + [ + "▁5", + "50" + ], + [ + "▁Vik", + "ing" + ], + [ + "▁Vi", + "king" + ], + [ + "▁V", + "iking" + ], + [ + "▁model", + "ing" + ], + [ + "▁mode", + "ling" + ], + [ + "▁mod", + "eling" + ], + [ + "esters", + "hire" + ], + [ + "ester", + "shire" + ], + [ + "▁shipment", + "s" + ], + [ + "▁ship", + "ments" + ], + [ + "▁Peng", + "u" + ], + [ + "▁Pen", + "gu" + ], + [ + "▁P", + "engu" + ], + [ + "▁equ", + "ity" + ], + [ + "▁inter", + "rog" + ], + [ + "▁rehabil", + "itation" + ], + [ + "▁Sponge", + "Bob" + ], + [ + "re", + "r" + ], + [ + "r", + "er" + ], + [ + "▁Rev", + "er" + ], + [ + "▁Re", + "ver" + ], + [ + "▁R", + "ever" + ], + [ + "▁ancest", + "ry" + ], + [ + "▁intercept", + "ed" + ], + [ + "um", + "m" + ], + [ + "u", + "mm" + ], + [ + "▁Ko", + "r" + ], + [ + "▁K", + "or" + ], + [ + "ond", + "uct" + ], + [ + "on", + "duct" + ], + [ + "▁mid", + "st" + ], + [ + "▁hom", + "age" + ], + [ + "▁pl", + "ural" + ], + [ + "▁Work", + "ers" + ], + [ + "▁fresh", + "man" + ], + [ + "H", + "z" + ], + [ + "▁Gon", + "e" + ], + [ + "▁Go", + "ne" + ], + [ + "▁G", + "one" + ], + [ + "▁Mah", + "ar" + ], + [ + "▁Ma", + "har" + ], + [ + "▁ignor", + "e" + ], + [ + "▁ign", + "ore" + ], + [ + "▁teach", + "es" + ], + [ + "▁teac", + "hes" + ], + [ + "▁tea", + "ches" + ], + [ + "▁te", + "aches" + ], + [ + "ris", + "k" + ], + [ + "ri", + "sk" + ], + [ + "r", + "isk" + ], + [ + "▁Ferr", + "ari" + ], + [ + "▁Num", + "erous" + ], + [ + "▁Turn", + "pike" + ], + [ + "▁mus", + "c" + ], + [ + "▁m", + "usc" + ], + [ + "▁Hann", + "a" + ], + [ + "▁Han", + "na" + ], + [ + "▁H", + "anna" + ], + [ + "▁prob", + "e" + ], + [ + "▁pro", + "be" + ], + [ + "▁pr", + "obe" + ], + [ + "▁p", + "robe" + ], + [ + "▁rebuild", + "ing" + ], + [ + "▁rebu", + "ilding" + ], + [ + "▁re", + "building" + ], + [ + "wal", + "d" + ], + [ + "wa", + "ld" + ], + [ + "w", + "ald" + ], + [ + "▁sh", + "ale" + ], + [ + "▁Mor", + "oc" + ], + [ + "▁Mo", + "roc" + ], + [ + "▁press", + "ing" + ], + [ + "▁strength", + "s" + ], + [ + "▁streng", + "ths" + ], + [ + "▁sim", + "ulation" + ], + [ + "na", + "e" + ], + [ + "n", + "ae" + ], + [ + "▁Lo", + "is" + ], + [ + "▁L", + "ois" + ], + [ + "▁safe", + "r" + ], + [ + "▁saf", + "er" + ], + [ + "▁sa", + "fer" + ], + [ + "▁brain", + "s" + ], + [ + "▁bra", + "ins" + ], + [ + "▁br", + "ains" + ], + [ + "▁hung", + "er" + ], + [ + "▁hun", + "ger" + ], + [ + "atter", + "ing" + ], + [ + "att", + "ering" + ], + [ + "at", + "tering" + ], + [ + "▁legend", + "ary" + ], + [ + "ory", + "en" + ], + [ + "or", + "yen" + ], + [ + "▁Eri", + "e" + ], + [ + "▁Er", + "ie" + ], + [ + "▁E", + "rie" + ], + [ + "▁ch", + "ip" + ], + [ + "▁c", + "hip" + ], + [ + "▁Cour", + "se" + ], + [ + "▁Co", + "urse" + ], + [ + "▁C", + "ourse" + ], + [ + "▁viol", + "in" + ], + [ + "▁vi", + "olin" + ], + [ + "▁rest", + "ing" + ], + [ + "▁res", + "ting" + ], + [ + "▁aut", + "onomy" + ], + [ + "▁aut", + "onomous" + ], + [ + "▁Mor", + "m" + ], + [ + "▁Mo", + "rm" + ], + [ + "▁M", + "orm" + ], + [ + "▁due", + "t" + ], + [ + "▁du", + "et" + ], + [ + "ifice", + "nt" + ], + [ + "ific", + "ent" + ], + [ + "▁receptor", + "s" + ], + [ + "▁recept", + "ors" + ], + [ + "lo", + "t" + ], + [ + "l", + "ot" + ], + [ + "▁bus", + "t" + ], + [ + "▁bu", + "st" + ], + [ + "▁b", + "ust" + ], + [ + "▁cro", + "c" + ], + [ + "▁cr", + "oc" + ], + [ + "▁c", + "roc" + ], + [ + "▁Init", + "i" + ], + [ + "▁In", + "iti" + ], + [ + "▁total", + "ed" + ], + [ + "▁tot", + "aled" + ], + [ + "▁Inter", + "ior" + ], + [ + "▁In", + "terior" + ], + [ + "▁Ha", + "g" + ], + [ + "▁H", + "ag" + ], + [ + "▁hazard", + "s" + ], + [ + "▁haz", + "ards" + ], + [ + "▁social", + "ly" + ], + [ + "▁soc", + "ially" + ], + [ + "▁so", + "cially" + ], + [ + "▁subst", + "rate" + ], + [ + "▁De", + "w" + ], + [ + "▁D", + "ew" + ], + [ + "▁ru", + "d" + ], + [ + "▁r", + "ud" + ], + [ + "prise", + "s" + ], + [ + "pris", + "es" + ], + [ + "pr", + "ises" + ], + [ + "▁make", + "up" + ], + [ + "▁joint", + "ly" + ], + [ + "▁Griff", + "ith" + ], + [ + "▁sing", + "ular" + ], + [ + "▁(1", + ")" + ], + [ + "▁(", + "1)" + ], + [ + "▁Pre", + "t" + ], + [ + "▁Pr", + "et" + ], + [ + "▁P", + "ret" + ], + [ + "▁Wi", + "ck" + ], + [ + "▁W", + "ick" + ], + [ + "▁W", + "ander" + ], + [ + "▁shoot", + "s" + ], + [ + "▁compl", + "iance" + ], + [ + "▁Vi", + "j" + ], + [ + "▁V", + "ij" + ], + [ + "▁pi", + "v" + ], + [ + "▁p", + "iv" + ], + [ + "ace", + "ae" + ], + [ + "avi", + "rus" + ], + [ + "av", + "irus" + ], + [ + "▁Tru", + "mp" + ], + [ + "▁Tr", + "ump" + ], + [ + "▁rook", + "ie" + ], + [ + "▁farm", + "land" + ], + [ + "amic", + "s" + ], + [ + "ami", + "cs" + ], + [ + "am", + "ics" + ], + [ + "land", + "o" + ], + [ + "lan", + "do" + ], + [ + "l", + "ando" + ], + [ + "ract", + "ed" + ], + [ + "rac", + "ted" + ], + [ + "▁ham", + "mer" + ], + [ + "▁Coal", + "ition" + ], + [ + "▁rig", + "id" + ], + [ + "▁recre", + "ation" + ], + [ + "L", + "a" + ], + [ + "ile", + "r" + ], + [ + "il", + "er" + ], + [ + "i", + "ler" + ], + [ + "▁NO", + "K" + ], + [ + "▁Rhy", + "s" + ], + [ + "▁Rh", + "ys" + ], + [ + "▁pig", + "s" + ], + [ + "▁pi", + "gs" + ], + [ + "▁p", + "igs" + ], + [ + "▁di", + "agram" + ], + [ + "▁pick", + "ing" + ], + [ + "▁pic", + "king" + ], + [ + "▁p", + "icking" + ], + [ + "anu", + "s" + ], + [ + "an", + "us" + ], + [ + "▁Di", + "m" + ], + [ + "▁D", + "im" + ], + [ + "unk", + "er" + ], + [ + "un", + "ker" + ], + [ + "▁184", + "5" + ], + [ + "▁18", + "45" + ], + [ + "▁o", + "ath" + ], + [ + "▁m", + "ould" + ], + [ + "▁compos", + "t" + ], + [ + "▁comp", + "ost" + ], + [ + "▁com", + "post" + ], + [ + "▁average", + "s" + ], + [ + "▁aver", + "ages" + ], + [ + "▁a", + "verages" + ], + [ + "▁monitor", + "ed" + ], + [ + "▁monit", + "ored" + ], + [ + "▁reject", + "ion" + ], + [ + "▁rej", + "ection" + ], + [ + "▁discover", + "ing" + ], + [ + "▁disc", + "overing" + ], + [ + "▁J", + "orge" + ], + [ + "▁fat", + "s" + ], + [ + "▁fa", + "ts" + ], + [ + "▁f", + "ats" + ], + [ + "▁oil", + "s" + ], + [ + "▁o", + "ils" + ], + [ + "▁gl", + "and" + ], + [ + "▁g", + "land" + ], + [ + "▁va", + "por" + ], + [ + "▁v", + "apor" + ], + [ + "▁bar", + "rel" + ], + [ + "act", + "ivity" + ], + [ + "▁improve", + "s" + ], + [ + "▁improv", + "es" + ], + [ + "▁impro", + "ves" + ], + [ + "▁impr", + "oves" + ], + [ + "▁inst", + "inct" + ], + [ + "▁recept", + "or" + ], + [ + "▁Fin", + "e" + ], + [ + "▁Fi", + "ne" + ], + [ + "▁F", + "ine" + ], + [ + "▁Plain", + "s" + ], + [ + "▁Pl", + "ains" + ], + [ + "▁Will", + "ie" + ], + [ + "▁Wil", + "lie" + ], + [ + "▁business", + "man" + ], + [ + "▁songwrit", + "ing" + ], + [ + "▁song", + "writing" + ], + [ + "ab", + "s" + ], + [ + "a", + "bs" + ], + [ + "tr", + "y" + ], + [ + "t", + "ry" + ], + [ + "▁Co", + "c" + ], + [ + "▁C", + "oc" + ], + [ + "▁F", + "DA" + ], + [ + "▁Ru", + "t" + ], + [ + "▁R", + "ut" + ], + [ + "▁Pl", + "us" + ], + [ + "▁Esp", + "ay" + ], + [ + "▁Es", + "pay" + ], + [ + "▁poll", + "s" + ], + [ + "▁pol", + "ls" + ], + [ + "▁line", + "up" + ], + [ + "▁Pruss", + "ia" + ], + [ + "▁commemor", + "ate" + ], + [ + "ina", + "e" + ], + [ + "in", + "ae" + ], + [ + "i", + "nae" + ], + [ + "▁Quest", + "ion" + ], + [ + "▁combine", + "s" + ], + [ + "▁comb", + "ines" + ], + [ + "▁none", + "theless" + ], + [ + "▁non", + "etheless" + ], + [ + "▁33", + "0" + ], + [ + "▁3", + "30" + ], + [ + "▁Do", + "ver" + ], + [ + "▁D", + "over" + ], + [ + "▁Cov", + "enant" + ], + [ + "▁narrow", + "ly" + ], + [ + "▁pitch", + "ing" + ], + [ + "▁pit", + "ching" + ], + [ + "▁parasite", + "s" + ], + [ + "▁paras", + "ites" + ], + [ + "▁penal", + "ties" + ], + [ + "▁pen", + "alties" + ], + [ + "▁Eu", + "ras" + ], + [ + "▁E", + "uras" + ], + [ + "▁confront", + "ation" + ], + [ + "▁Ev", + "a" + ], + [ + "▁E", + "va" + ], + [ + "load", + "ed" + ], + [ + "lo", + "aded" + ], + [ + "▁Hon", + "ey" + ], + [ + "▁Ho", + "ney" + ], + [ + "▁H", + "oney" + ], + [ + "▁favour", + "able" + ], + [ + "▁fav", + "ourable" + ], + [ + "▁El", + "s" + ], + [ + "▁E", + "ls" + ], + [ + "▁hotel", + "s" + ], + [ + "▁hot", + "els" + ], + [ + "▁Cop", + "yright" + ], + [ + "▁over", + "view" + ], + [ + "▁somet", + "ime" + ], + [ + "▁some", + "time" + ], + [ + "▁advocate", + "s" + ], + [ + "▁advoc", + "ates" + ], + [ + "▁compos", + "ite" + ], + [ + "▁comp", + "osite" + ], + [ + "▁sand", + "stone" + ], + [ + "▁north", + "bound" + ], + [ + "▁Observ", + "atory" + ], + [ + "▁Bi", + "ology" + ], + [ + "▁B", + "iology" + ], + [ + "▁worksh", + "e" + ], + [ + "▁works", + "he" + ], + [ + "▁work", + "she" + ], + [ + "▁M", + "I" + ], + [ + "▁", + "MI" + ], + [ + "▁Re", + "in" + ], + [ + "▁arc", + "ade" + ], + [ + "▁gall", + "ons" + ], + [ + "▁portray", + "s" + ], + [ + "▁portra", + "ys" + ], + [ + "▁port", + "rays" + ], + [ + "▁Chall", + "enge" + ], + [ + "▁fu", + "s" + ], + [ + "▁f", + "us" + ], + [ + "▁", + "fus" + ], + [ + "▁Cal", + "c" + ], + [ + "▁C", + "alc" + ], + [ + "dom", + "inal" + ], + [ + "▁Histor", + "ian" + ], + [ + "▁Hist", + "orian" + ], + [ + "ile", + "m" + ], + [ + "il", + "em" + ], + [ + "i", + "lem" + ], + [ + "▁Z", + "ion" + ], + [ + "▁fo", + "ol" + ], + [ + "▁f", + "ool" + ], + [ + "▁din", + "ing" + ], + [ + "▁di", + "ning" + ], + [ + "▁d", + "ining" + ], + [ + "▁seat", + "ed" + ], + [ + "▁sea", + "ted" + ], + [ + "▁se", + "ated" + ], + [ + "▁Niger", + "ia" + ], + [ + "▁Nig", + "eria" + ], + [ + "it", + "é" + ], + [ + "▁Writer", + "s" + ], + [ + "▁Write", + "rs" + ], + [ + "▁Writ", + "ers" + ], + [ + "▁verte", + "bra" + ], + [ + "▁equation", + "s" + ], + [ + "▁equ", + "ations" + ], + [ + "occ", + "up" + ], + [ + "▁Bra", + "h" + ], + [ + "▁Br", + "ah" + ], + [ + "▁B", + "rah" + ], + [ + "▁w", + "olf" + ], + [ + "▁Min", + "ne" + ], + [ + "▁Sha", + "ck" + ], + [ + "▁Sh", + "ack" + ], + [ + "▁mit", + "ig" + ], + [ + "▁let", + "ting" + ], + [ + "▁Kings", + "ton" + ], + [ + "▁King", + "ston" + ], + [ + "▁Like", + "wise" + ], + [ + "▁Lik", + "ewise" + ], + [ + "▁sculpture", + "s" + ], + [ + "▁sculpt", + "ures" + ], + [ + "▁Under", + "ground" + ], + [ + "▁B", + "M" + ], + [ + "▁SA", + "S" + ], + [ + "▁S", + "AS" + ], + [ + "atch", + "e" + ], + [ + "at", + "che" + ], + [ + "▁Ken", + "d" + ], + [ + "▁Ke", + "nd" + ], + [ + "▁K", + "end" + ], + [ + "▁native", + "s" + ], + [ + "▁nat", + "ives" + ], + [ + "▁n", + "atives" + ], + [ + "▁exploit", + "ation" + ], + [ + "▁explo", + "itation" + ], + [ + "▁fal", + "s" + ], + [ + "▁fa", + "ls" + ], + [ + "▁f", + "als" + ], + [ + "▁ve", + "in" + ], + [ + "▁the", + "ft" + ], + [ + "▁Gust", + "av" + ], + [ + "ho", + "e" + ], + [ + "h", + "oe" + ], + [ + "ach", + "i" + ], + [ + "ac", + "hi" + ], + [ + "a", + "chi" + ], + [ + "▁span", + "s" + ], + [ + "▁sp", + "ans" + ], + [ + "▁N", + "uclear" + ], + [ + "ame", + "l" + ], + [ + "am", + "el" + ], + [ + "a", + "mel" + ], + [ + "▁Ken", + "ya" + ], + [ + "▁Less", + "er" + ], + [ + "▁princes", + "s" + ], + [ + "▁prince", + "ss" + ], + [ + "▁pr", + "incess" + ], + [ + "▁Fe", + "y" + ], + [ + "▁F", + "ey" + ], + [ + "▁trans", + "c" + ], + [ + "▁tran", + "sc" + ], + [ + "▁env", + "ision" + ], + [ + "▁185", + "4" + ], + [ + "▁Kas", + "h" + ], + [ + "▁Ka", + "sh" + ], + [ + "▁K", + "ash" + ], + [ + "ipel", + "ago" + ], + [ + "▁pestic", + "ides" + ], + [ + "▁pest", + "icides" + ], + [ + "fi", + "g" + ], + [ + "f", + "ig" + ], + [ + "ra", + "ul" + ], + [ + "r", + "aul" + ], + [ + "▁sa", + "p" + ], + [ + "▁s", + "ap" + ], + [ + "▁W", + "ong" + ], + [ + "▁Ster", + "n" + ], + [ + "▁St", + "ern" + ], + [ + "▁S", + "tern" + ], + [ + "▁feed", + "s" + ], + [ + "▁fee", + "ds" + ], + [ + "▁fe", + "eds" + ], + [ + "▁Sebast", + "ian" + ], + [ + "▁8", + "," + ], + [ + "▁", + "8," + ], + [ + "▁Green", + "e" + ], + [ + "▁Gree", + "ne" + ], + [ + "▁Gre", + "ene" + ], + [ + "▁Lett", + "er" + ], + [ + "▁Let", + "ter" + ], + [ + "▁b", + "iblical" + ], + [ + "▁ni", + "n" + ], + [ + "▁n", + "in" + ], + [ + "ture", + "s" + ], + [ + "t", + "ures" + ], + [ + "▁boil", + "er" + ], + [ + "▁bo", + "iler" + ], + [ + "▁Banks", + "ia" + ], + [ + "▁character", + "ised" + ], + [ + "▁O", + "K" + ], + [ + "▁65", + "0" + ], + [ + "▁6", + "50" + ], + [ + "ath", + "on" + ], + [ + "a", + "thon" + ], + [ + "▁Ri", + "sk" + ], + [ + "▁R", + "isk" + ], + [ + "▁Rh", + "ine" + ], + [ + "▁imp", + "ed" + ], + [ + "▁im", + "ped" + ], + [ + "▁Ash", + "ley" + ], + [ + "▁offs", + "et" + ], + [ + "▁off", + "set" + ], + [ + "▁of", + "isyèl" + ], + [ + "▁Ge", + "m" + ], + [ + "▁G", + "em" + ], + [ + "▁Ax", + "is" + ], + [ + "▁Re", + "id" + ], + [ + "▁Nazi", + "s" + ], + [ + "▁Naz", + "is" + ], + [ + "▁Shar", + "on" + ], + [ + "▁Sha", + "ron" + ], + [ + "▁Sh", + "aron" + ], + [ + "▁poet", + "ic" + ], + [ + "▁po", + "etic" + ], + [ + "▁soc", + "cer" + ], + [ + "▁weak", + "er" + ], + [ + "▁we", + "aker" + ], + [ + "▁dead", + "line" + ], + [ + "▁aggress", + "ion" + ], + [ + "▁agg", + "ression" + ], + [ + "▁Instit", + "ution" + ], + [ + "▁In", + "stitution" + ], + [ + "▁vacc", + "ination" + ], + [ + "ano", + "r" + ], + [ + "an", + "or" + ], + [ + "a", + "nor" + ], + [ + "▁path", + "way" + ], + [ + "▁kilogram", + "s" + ], + [ + "▁kil", + "ograms" + ], + [ + "ji", + "n" + ], + [ + "j", + "in" + ], + [ + "▁R", + "i" + ], + [ + "▁su", + "g" + ], + [ + "▁s", + "ug" + ], + [ + "sc", + "reen" + ], + [ + "▁map", + "ping" + ], + [ + "▁ma", + "pping" + ], + [ + "▁m", + "apping" + ], + [ + "▁Brad", + "ford" + ], + [ + "▁millimet", + "er" + ], + [ + "▁mill", + "imeter" + ], + [ + "▁millimet", + "res" + ], + [ + "ac", + "erb" + ], + [ + "▁He", + "ar" + ], + [ + "▁H", + "ear" + ], + [ + "▁Par", + "i" + ], + [ + "▁Pa", + "ri" + ], + [ + "▁P", + "ari" + ], + [ + "▁instant", + "ly" + ], + [ + "▁inst", + "antly" + ], + [ + "us", + "p" + ], + [ + "u", + "sp" + ], + [ + "amp", + "h" + ], + [ + "am", + "ph" + ], + [ + "a", + "mph" + ], + [ + "ifa", + "x" + ], + [ + "if", + "ax" + ], + [ + "i", + "fax" + ], + [ + "▁st", + "unt" + ], + [ + "▁Web", + "ster" + ], + [ + "▁wra", + "pped" + ], + [ + "▁wr", + "apped" + ], + [ + "▁w", + "rapped" + ], + [ + "▁Lu", + "n" + ], + [ + "▁L", + "un" + ], + [ + "▁Eva", + "n" + ], + [ + "▁Ev", + "an" + ], + [ + "▁E", + "van" + ], + [ + "▁Len", + "in" + ], + [ + "hib", + "ition" + ], + [ + "▁Letter", + "s" + ], + [ + "▁Lett", + "ers" + ], + [ + "▁Let", + "ters" + ], + [ + "▁spider", + "s" + ], + [ + "▁sp", + "iders" + ], + [ + "▁Bright", + "on" + ], + [ + "▁persec", + "ution" + ], + [ + "ri", + "o" + ], + [ + "r", + "io" + ], + [ + "▁Kr", + "ishna" + ], + [ + "▁Ex", + "change" + ], + [ + "▁perform", + "er" + ], + [ + "▁Kan", + "n" + ], + [ + "▁K", + "ann" + ], + [ + "▁cr", + "is" + ], + [ + "▁c", + "ris" + ], + [ + "▁Valent", + "ine" + ], + [ + "aho", + "n" + ], + [ + "ah", + "on" + ], + [ + "▁ser", + "i" + ], + [ + "▁se", + "ri" + ], + [ + "▁s", + "eri" + ], + [ + "▁", + "seri" + ], + [ + "▁catch", + "es" + ], + [ + "▁cat", + "ches" + ], + [ + "▁c", + "atches" + ], + [ + "om", + "o" + ], + [ + "o", + "mo" + ], + [ + "▁(", + "4" + ], + [ + "▁cho", + "r" + ], + [ + "▁ch", + "or" + ], + [ + "▁c", + "hor" + ], + [ + "▁Par", + "ents" + ], + [ + "▁P", + "arents" + ], + [ + "▁switch", + "ing" + ], + [ + "▁swit", + "ching" + ], + [ + "▁unc", + "overed" + ], + [ + "▁consideration", + "s" + ], + [ + "▁consider", + "ations" + ], + [ + "▁Di", + "ane" + ], + [ + "▁D", + "iane" + ], + [ + "▁pros", + "e" + ], + [ + "▁pro", + "se" + ], + [ + "▁pr", + "ose" + ], + [ + "▁p", + "rose" + ], + [ + "▁Hend", + "rix" + ], + [ + "▁visual", + "ly" + ], + [ + "▁vis", + "ually" + ], + [ + "▁repet", + "itive" + ], + [ + "▁coordinate", + "d" + ], + [ + "▁coordin", + "ated" + ], + [ + "ura", + "te" + ], + [ + "ur", + "ate" + ], + [ + "u", + "rate" + ], + [ + "▁Ton", + "g" + ], + [ + "▁To", + "ng" + ], + [ + "▁T", + "ong" + ], + [ + "▁outline", + "d" + ], + [ + "▁outl", + "ined" + ], + [ + "▁out", + "lined" + ], + [ + "▁thr", + "iller" + ], + [ + "▁ri", + "ot" + ], + [ + "▁r", + "iot" + ], + [ + "▁Pr", + "adesh" + ], + [ + "▁oxid", + "ation" + ], + [ + "▁compass", + "ion" + ], + [ + "▁obligation", + "s" + ], + [ + "▁oblig", + "ations" + ], + [ + "u", + "y" + ], + [ + "▁Bl", + "e" + ], + [ + "▁B", + "le" + ], + [ + "▁ek", + "s" + ], + [ + "▁e", + "ks" + ], + [ + "▁", + "eks" + ], + [ + "▁Air", + "es" + ], + [ + "▁A", + "ires" + ], + [ + "▁Neg", + "ro" + ], + [ + "▁Ne", + "gro" + ], + [ + "▁pun", + "ish" + ], + [ + "▁11", + "4" + ], + [ + "▁1", + "14" + ], + [ + "▁ye", + "s" + ], + [ + "▁y", + "es" + ], + [ + "▁flat", + "t" + ], + [ + "▁fl", + "att" + ], + [ + "ress", + "ive" + ], + [ + "r", + "essive" + ], + [ + "▁fiber", + "s" + ], + [ + "▁fib", + "ers" + ], + [ + "▁fi", + "bers" + ], + [ + "▁bapt", + "ism" + ], + [ + "▁technical", + "ly" + ], + [ + "▁techn", + "ically" + ], + [ + "ani", + "k" + ], + [ + "an", + "ik" + ], + [ + "a", + "nik" + ], + [ + "▁Cro", + "s" + ], + [ + "▁Cr", + "os" + ], + [ + "▁C", + "ros" + ], + [ + "▁Gl", + "ac" + ], + [ + "▁Bu", + "ild" + ], + [ + "▁Lore", + "n" + ], + [ + "▁Lor", + "en" + ], + [ + "▁Lo", + "ren" + ], + [ + "▁ref", + "it" + ], + [ + "▁re", + "fit" + ], + [ + "▁A", + "B" + ], + [ + "▁valley", + "s" + ], + [ + "▁val", + "leys" + ], + [ + "▁Mong", + "ol" + ], + [ + "▁addition", + "s" + ], + [ + "▁add", + "itions" + ], + [ + "▁appeal", + "ing" + ], + [ + "▁appe", + "aling" + ], + [ + "▁le", + "v" + ], + [ + "▁l", + "ev" + ], + [ + "▁", + "lev" + ], + [ + "▁Sav", + "age" + ], + [ + "▁raise", + "s" + ], + [ + "▁ra", + "ises" + ], + [ + "▁master", + "s" + ], + [ + "▁mast", + "ers" + ], + [ + "▁mas", + "ters" + ], + [ + "▁ma", + "sters" + ], + [ + "▁m", + "asters" + ], + [ + "▁start", + "er" + ], + [ + "▁star", + "ter" + ], + [ + "▁st", + "arter" + ], + [ + "▁implement", + "ing" + ], + [ + "▁Star", + "k" + ], + [ + "▁St", + "ark" + ], + [ + "ting", + "ham" + ], + [ + "t", + "ingham" + ], + [ + "▁leak", + "ed" + ], + [ + "▁le", + "aked" + ], + [ + "▁trade", + "rs" + ], + [ + "▁trad", + "ers" + ], + [ + "▁tra", + "ders" + ], + [ + "▁tr", + "aders" + ], + [ + "ograph", + "ies" + ], + [ + "▁ve", + "to" + ], + [ + "▁v", + "eto" + ], + [ + "urt", + "les" + ], + [ + "▁Bro", + "ck" + ], + [ + "▁Br", + "ock" + ], + [ + "▁B", + "rock" + ], + [ + "▁intim", + "id" + ], + [ + "▁disagree", + "d" + ], + [ + "▁disagre", + "ed" + ], + [ + "van", + "i" + ], + [ + "va", + "ni" + ], + [ + "v", + "ani" + ], + [ + "idi", + "um" + ], + [ + "id", + "ium" + ], + [ + "▁pa", + "gan" + ], + [ + "▁p", + "agan" + ], + [ + "▁sort", + "s" + ], + [ + "▁sor", + "ts" + ], + [ + "▁s", + "orts" + ], + [ + "▁Sing", + "er" + ], + [ + "▁Sin", + "ger" + ], + [ + "▁S", + "inger" + ], + [ + "▁j", + "ungle" + ], + [ + "▁Acc", + "ount" + ], + [ + "▁Creat", + "ive" + ], + [ + "▁Cre", + "ative" + ], + [ + "P", + "s" + ], + [ + "com", + "p" + ], + [ + "co", + "mp" + ], + [ + "c", + "omp" + ], + [ + "▁Sand", + "y" + ], + [ + "▁San", + "dy" + ], + [ + "▁S", + "andy" + ], + [ + "▁undergo", + "ing" + ], + [ + "▁under", + "going" + ], + [ + "▁alumin", + "um" + ], + [ + "▁Green", + "land" + ], + [ + "▁dispers", + "ed" + ], + [ + "▁disp", + "ersed" + ], + [ + "fi", + "n" + ], + [ + "f", + "in" + ], + [ + "▁Hip", + "p" + ], + [ + "▁Hi", + "pp" + ], + [ + "▁H", + "ipp" + ], + [ + "ios", + "ity" + ], + [ + "i", + "osity" + ], + [ + "role", + "um" + ], + [ + "rol", + "eum" + ], + [ + "▁Ruth", + "er" + ], + [ + "▁Rut", + "her" + ], + [ + "▁Ru", + "ther" + ], + [ + "▁R", + "uther" + ], + [ + "▁adjust", + "ed" + ], + [ + "▁Dep", + "ending" + ], + [ + "▁Ports", + "mouth" + ], + [ + "▁inev", + "itable" + ], + [ + "▁strip", + "s" + ], + [ + "▁stri", + "ps" + ], + [ + "▁str", + "ips" + ], + [ + "▁beside", + "s" + ], + [ + "▁bes", + "ides" + ], + [ + "▁South", + "west" + ], + [ + "▁extract", + "ed" + ], + [ + "▁ext", + "racted" + ], + [ + "ban", + "e" + ], + [ + "ba", + "ne" + ], + [ + "b", + "ane" + ], + [ + "▁in", + "k" + ], + [ + "▁", + "ink" + ], + [ + "avi", + "or" + ], + [ + "av", + "ior" + ], + [ + "▁Hor", + "t" + ], + [ + "▁H", + "ort" + ], + [ + "▁accept", + "s" + ], + [ + "▁teenager", + "s" + ], + [ + "▁teenage", + "rs" + ], + [ + "▁teen", + "agers" + ], + [ + "▁L", + "ó" + ], + [ + "ry", + "ing" + ], + [ + "r", + "ying" + ], + [ + "▁dirt", + "y" + ], + [ + "▁dir", + "ty" + ], + [ + "▁d", + "irty" + ], + [ + "▁marker", + "s" + ], + [ + "▁mark", + "ers" + ], + [ + "▁diagn", + "ostic" + ], + [ + "▁fi", + "z" + ], + [ + "▁f", + "iz" + ], + [ + "▁po", + "w" + ], + [ + "▁p", + "ow" + ], + [ + "▁f", + "iscal" + ], + [ + "▁observe", + "r" + ], + [ + "▁observ", + "er" + ], + [ + "▁obs", + "erver" + ], + [ + "▁frust", + "ration" + ], + [ + "á", + "l" + ], + [ + "og", + "l" + ], + [ + "o", + "gl" + ], + [ + "▁2015", + "." + ], + [ + "▁201", + "5." + ], + [ + "less", + "ness" + ], + [ + "▁inher", + "ent" + ], + [ + "▁in", + "herent" + ], + [ + "▁contribute", + "s" + ], + [ + "▁contrib", + "utes" + ], + [ + "ga", + "ge" + ], + [ + "g", + "age" + ], + [ + "by", + "ter" + ], + [ + "▁prediction", + "s" + ], + [ + "▁predict", + "ions" + ], + [ + "▁pred", + "ictions" + ], + [ + "I", + "F" + ], + [ + "ago", + "gue" + ], + [ + "ag", + "ogue" + ], + [ + "▁j", + "ealous" + ], + [ + "▁hazard", + "ous" + ], + [ + "▁consult", + "ant" + ], + [ + "▁cu", + "m" + ], + [ + "▁c", + "um" + ], + [ + "▁Ja", + "zz" + ], + [ + "▁J", + "azz" + ], + [ + "▁Roc", + "hester" + ], + [ + "▁Ro", + "chester" + ], + [ + "▁Ab", + "original" + ], + [ + "▁ball", + "oon" + ], + [ + "▁post", + "ing" + ], + [ + "▁pos", + "ting" + ], + [ + "▁turb", + "ine" + ], + [ + "▁roll", + "ed" + ], + [ + "▁ro", + "lled" + ], + [ + "▁", + "rolled" + ], + [ + "▁show", + "er" + ], + [ + "▁sh", + "ower" + ], + [ + "▁Canber", + "ra" + ], + [ + "▁evac", + "uate" + ], + [ + "▁analy", + "t" + ], + [ + "▁anal", + "yt" + ], + [ + "▁Dest", + "iny" + ], + [ + "C", + "H" + ], + [ + "▁lux", + "ury" + ], + [ + "▁Brun", + "swick" + ], + [ + "▁pract", + "icing" + ], + [ + "ps", + "y" + ], + [ + "p", + "sy" + ], + [ + "▁Pri", + "nt" + ], + [ + "▁Pr", + "int" + ], + [ + "▁cave", + "s" + ], + [ + "▁cav", + "es" + ], + [ + "▁ca", + "ves" + ], + [ + "▁c", + "aves" + ], + [ + "▁Comp", + "et" + ], + [ + "▁Com", + "pet" + ], + [ + "rub", + "s" + ], + [ + "ru", + "bs" + ], + [ + "▁Map", + "le" + ], + [ + "▁Ma", + "ple" + ], + [ + "▁terr", + "a" + ], + [ + "▁ter", + "ra" + ], + [ + "▁Ri", + "p" + ], + [ + "▁R", + "ip" + ], + [ + "▁sl", + "ot" + ], + [ + "▁s", + "lot" + ], + [ + "oot", + "ing" + ], + [ + "oo", + "ting" + ], + [ + "o", + "oting" + ], + [ + "rolog", + "y" + ], + [ + "rol", + "ogy" + ], + [ + "r", + "ology" + ], + [ + "▁2000", + "," + ], + [ + "▁cal", + "ib" + ], + [ + "▁cook", + "ed" + ], + [ + "▁co", + "oked" + ], + [ + "▁Do", + "b" + ], + [ + "▁D", + "ob" + ], + [ + "▁bor", + "d" + ], + [ + "▁bo", + "rd" + ], + [ + "▁b", + "ord" + ], + [ + "▁Cra", + "zy" + ], + [ + "▁Cr", + "azy" + ], + [ + "▁Iraq", + "i" + ], + [ + "▁conf", + "isc" + ], + [ + "▁global", + "ly" + ], + [ + "▁glob", + "ally" + ], + [ + "▁certific", + "ate" + ], + [ + "D", + "C" + ], + [ + "▁kom", + "in" + ], + [ + "▁ko", + "min" + ], + [ + "▁k", + "omin" + ], + [ + "▁bass", + "ist" + ], + [ + "▁e", + "ternal" + ], + [ + "▁ent", + "ities" + ], + [ + "7", + ")" + ], + [ + "▁I", + "v" + ], + [ + "ike", + "r" + ], + [ + "ik", + "er" + ], + [ + "i", + "ker" + ], + [ + "mad", + "e" + ], + [ + "ma", + "de" + ], + [ + "m", + "ade" + ], + [ + "▁Cha", + "m" + ], + [ + "▁Ch", + "am" + ], + [ + "▁C", + "ham" + ], + [ + "▁Soph", + "ie" + ], + [ + "▁clim", + "ax" + ], + [ + "▁inter", + "l" + ], + [ + "▁Win", + "ston" + ], + [ + "W", + "R" + ], + [ + "▁150", + "0" + ], + [ + "▁15", + "00" + ], + [ + "▁1", + "500" + ], + [ + "▁Day", + "ton" + ], + [ + "▁decomm", + "issioned" + ], + [ + "▁", + "q" + ], + [ + "▁B", + "P" + ], + [ + "▁12", + "1" + ], + [ + "▁1", + "21" + ], + [ + "▁Lin", + "ux" + ], + [ + "▁debt", + "s" + ], + [ + "▁deb", + "ts" + ], + [ + "▁Or", + "lando" + ], + [ + "▁visit", + "or" + ], + [ + "▁vis", + "itor" + ], + [ + "▁metall", + "ic" + ], + [ + "▁metal", + "lic" + ], + [ + "olo", + "n" + ], + [ + "ol", + "on" + ], + [ + "o", + "lon" + ], + [ + "▁Dre", + "w" + ], + [ + "▁Dr", + "ew" + ], + [ + "▁D", + "rew" + ], + [ + "▁2011", + "." + ], + [ + "▁201", + "1." + ], + [ + "▁ex", + "acerb" + ], + [ + "▁(", + "6" + ], + [ + "ely", + "n" + ], + [ + "el", + "yn" + ], + [ + "e", + "lyn" + ], + [ + "re", + "qu" + ], + [ + "r", + "equ" + ], + [ + "do", + "ors" + ], + [ + "▁Metal", + "l" + ], + [ + "▁Met", + "all" + ], + [ + "iv", + "ia" + ], + [ + "i", + "via" + ], + [ + "▁CD", + "C" + ], + [ + "▁C", + "DC" + ], + [ + "▁alg", + "ae" + ], + [ + "▁solve", + "d" + ], + [ + "▁sol", + "ved" + ], + [ + "▁s", + "olved" + ], + [ + "▁fo", + "ul" + ], + [ + "▁f", + "oul" + ], + [ + "▁any", + "way" + ], + [ + "▁intim", + "ate" + ], + [ + "▁int", + "imate" + ], + [ + "W", + "S" + ], + [ + "ic", + "z" + ], + [ + "▁Ab", + "s" + ], + [ + "▁A", + "bs" + ], + [ + "▁spark", + "ed" + ], + [ + "▁sp", + "arked" + ], + [ + "▁Tea", + "ching" + ], + [ + "▁Te", + "aching" + ], + [ + "▁weigh", + "ing" + ], + [ + "▁recover", + "ing" + ], + [ + "▁rec", + "overing" + ], + [ + "▁supern", + "atural" + ], + [ + "▁Ed", + "itor" + ], + [ + "▁grave", + "s" + ], + [ + "▁grav", + "es" + ], + [ + "▁gra", + "ves" + ], + [ + "▁gr", + "aves" + ], + [ + "▁President", + "ial" + ], + [ + "▁Ba", + "g" + ], + [ + "▁B", + "ag" + ], + [ + "▁Ku", + "n" + ], + [ + "▁K", + "un" + ], + [ + "▁ank", + "le" + ], + [ + "▁dep", + "ot" + ], + [ + "▁relie", + "s" + ], + [ + "▁rel", + "ies" + ], + [ + "▁re", + "lies" + ], + [ + "▁collect", + "or" + ], + [ + "▁colle", + "ctor" + ], + [ + "▁coll", + "ector" + ], + [ + "▁construct", + "ing" + ], + [ + "un", + "ion" + ], + [ + "cont", + "in" + ], + [ + "▁Ló", + "pez" + ], + [ + "▁burn", + "s" + ], + [ + "▁bur", + "ns" + ], + [ + "▁update", + "s" + ], + [ + "▁upd", + "ates" + ], + [ + "▁financ", + "ing" + ], + [ + "▁fin", + "ancing" + ], + [ + "▁concept", + "ual" + ], + [ + "▁install", + "ment" + ], + [ + "en", + "ic" + ], + [ + "e", + "nic" + ], + [ + "op", + "ot" + ], + [ + "imate", + "d" + ], + [ + "ima", + "ted" + ], + [ + "im", + "ated" + ], + [ + "▁Bah", + "amas" + ], + [ + "▁emphas", + "ize" + ], + [ + "G", + "E" + ], + [ + "om", + "i" + ], + [ + "o", + "mi" + ], + [ + "▁R", + "C" + ], + [ + "▁", + "RC" + ], + [ + "▁Ram", + "a" + ], + [ + "▁Ra", + "ma" + ], + [ + "▁R", + "ama" + ], + [ + "▁XII", + "I" + ], + [ + "▁XI", + "II" + ], + [ + "▁X", + "III" + ], + [ + "▁glass", + "es" + ], + [ + "▁gl", + "asses" + ], + [ + "\"", + ")" + ], + [ + "la", + "w" + ], + [ + "l", + "aw" + ], + [ + "oe", + "uv" + ], + [ + "cl", + "air" + ], + [ + "▁Con", + "v" + ], + [ + "▁un", + "av" + ], + [ + "▁determine", + "s" + ], + [ + "▁determ", + "ines" + ], + [ + "art", + "a" + ], + [ + "ar", + "ta" + ], + [ + "▁Ans", + "w" + ], + [ + "▁An", + "sw" + ], + [ + "▁am", + "or" + ], + [ + "▁recall", + "s" + ], + [ + "▁inventor", + "y" + ], + [ + "▁invent", + "ory" + ], + [ + "▁recommend", + "s" + ], + [ + "▁recomm", + "ends" + ], + [ + "▁advertis", + "ement" + ], + [ + "▁tumor", + "s" + ], + [ + "▁tum", + "ors" + ], + [ + "▁un", + "ified" + ], + [ + "ela", + "ge" + ], + [ + "el", + "age" + ], + [ + "▁Wol", + "l" + ], + [ + "▁W", + "oll" + ], + [ + "▁Tra", + "ff" + ], + [ + "▁Tr", + "aff" + ], + [ + "▁stay", + "s" + ], + [ + "▁st", + "ays" + ], + [ + "▁wear", + "s" + ], + [ + "▁we", + "ars" + ], + [ + "▁w", + "ears" + ], + [ + "▁compat", + "ible" + ], + [ + "▁trans", + "plant" + ], + [ + "▁deterior", + "ated" + ], + [ + "▁government", + "al" + ], + [ + "▁govern", + "mental" + ], + [ + "1", + "-" + ], + [ + "▁pros", + "t" + ], + [ + "▁pro", + "st" + ], + [ + "▁pr", + "ost" + ], + [ + "▁p", + "rost" + ], + [ + "gu", + "n" + ], + [ + "g", + "un" + ], + [ + "ub", + "a" + ], + [ + "u", + "ba" + ], + [ + "▁Hamm", + "ond" + ], + [ + "▁Ham", + "mond" + ], + [ + "▁overh", + "aul" + ], + [ + "▁ret", + "iring" + ], + [ + "▁explanation", + "s" + ], + [ + "▁explan", + "ations" + ], + [ + "T", + "P" + ], + [ + "▁Gi", + "r" + ], + [ + "▁G", + "ir" + ], + [ + "▁Bou", + "l" + ], + [ + "▁Bo", + "ul" + ], + [ + "▁B", + "oul" + ], + [ + "▁cru", + "c" + ], + [ + "▁cr", + "uc" + ], + [ + "uri", + "ties" + ], + [ + "ur", + "ities" + ], + [ + "u", + "rities" + ], + [ + "▁presum", + "ed" + ], + [ + "▁pres", + "umed" + ], + [ + "▁exchange", + "d" + ], + [ + "▁exchang", + "ed" + ], + [ + "▁AT", + "P" + ], + [ + "▁A", + "TP" + ], + [ + "▁Def", + "in" + ], + [ + "▁De", + "fin" + ], + [ + "▁cru", + "de" + ], + [ + "▁cr", + "ude" + ], + [ + "en", + "stein" + ], + [ + "omet", + "own" + ], + [ + "ome", + "town" + ], + [ + "▁centimet", + "res" + ], + [ + "F", + "R" + ], + [ + "▁Lion", + "s" + ], + [ + "▁Li", + "ons" + ], + [ + "▁L", + "ions" + ], + [ + "▁More", + "no" + ], + [ + "▁Mor", + "eno" + ], + [ + "▁Pi", + "x" + ], + [ + "▁P", + "ix" + ], + [ + "▁cu", + "is" + ], + [ + "▁c", + "uis" + ], + [ + "!", + "”" + ], + [ + "O", + "r" + ], + [ + "ise", + "n" + ], + [ + "is", + "en" + ], + [ + "i", + "sen" + ], + [ + "wal", + "k" + ], + [ + "w", + "alk" + ], + [ + "án", + "dez" + ], + [ + "á", + "ndez" + ], + [ + "▁G", + "ould" + ], + [ + "f", + "s" + ], + [ + "und", + "y" + ], + [ + "un", + "dy" + ], + [ + "▁Ro", + "x" + ], + [ + "▁R", + "ox" + ], + [ + "▁bi", + "p" + ], + [ + "▁b", + "ip" + ], + [ + "▁har", + "v" + ], + [ + "▁jew", + "el" + ], + [ + "▁Vis", + "ion" + ], + [ + "▁V", + "ision" + ], + [ + "▁mosqu", + "e" + ], + [ + "▁mos", + "que" + ], + [ + "▁plat", + "oon" + ], + [ + "▁char", + "ging" + ], + [ + "int", + "o" + ], + [ + "in", + "to" + ], + [ + "iti", + "a" + ], + [ + "it", + "ia" + ], + [ + "oci", + "al" + ], + [ + "oc", + "ial" + ], + [ + "o", + "cial" + ], + [ + "▁Sol", + "id" + ], + [ + "▁S", + "olid" + ], + [ + "▁appl", + "e" + ], + [ + "▁app", + "le" + ], + [ + "▁ap", + "ple" + ], + [ + "▁lat", + "itude" + ], + [ + "▁Method", + "ist" + ], + [ + "▁parallel", + "s" + ], + [ + "▁paralle", + "ls" + ], + [ + "▁applic", + "able" + ], + [ + "▁appl", + "icable" + ], + [ + "▁w", + "r" + ], + [ + "▁ins", + "ult" + ], + [ + "▁ski", + "ing" + ], + [ + "▁document", + "ation" + ], + [ + "iss", + "e" + ], + [ + "is", + "se" + ], + [ + "thes", + "is" + ], + [ + "the", + "sis" + ], + [ + "th", + "esis" + ], + [ + "▁Angel", + "s" + ], + [ + "▁Ang", + "els" + ], + [ + "▁intr", + "ic" + ], + [ + "▁int", + "ric" + ], + [ + "▁metap", + "h" + ], + [ + "▁met", + "aph" + ], + [ + "▁teenage", + "r" + ], + [ + "▁teen", + "ager" + ], + [ + "▁Guatem", + "ala" + ], + [ + "go", + "s" + ], + [ + "g", + "os" + ], + [ + "ha", + "us" + ], + [ + "h", + "aus" + ], + [ + "▁c", + "ivic" + ], + [ + "▁Wrest", + "le" + ], + [ + "▁imm", + "ense" + ], + [ + "▁del", + "icate" + ], + [ + "▁Stat", + "istics" + ], + [ + "inder", + "gart" + ], + [ + "▁inf", + "rared" + ], + [ + "▁support", + "ive" + ], + [ + "▁gwo", + "up" + ], + [ + "▁gw", + "oup" + ], + [ + "▁pathway", + "s" + ], + [ + "▁path", + "ways" + ], + [ + "▁algorithm", + "s" + ], + [ + "▁algorith", + "ms" + ], + [ + "▁Hind", + "i" + ], + [ + "▁Jenn", + "a" + ], + [ + "▁Jen", + "na" + ], + [ + "▁J", + "enna" + ], + [ + "'", + "." + ], + [ + "bo", + "t" + ], + [ + "b", + "ot" + ], + [ + "▁Feder", + "er" + ], + [ + "▁committee", + "s" + ], + [ + "▁commit", + "tees" + ], + [ + "eter", + "m" + ], + [ + "ete", + "rm" + ], + [ + "et", + "erm" + ], + [ + "e", + "term" + ], + [ + "▁am", + "mon" + ], + [ + "▁Thir", + "ty" + ], + [ + "▁Th", + "irty" + ], + [ + "▁ridge", + "s" + ], + [ + "▁rid", + "ges" + ], + [ + "▁r", + "idges" + ], + [ + "▁Acad", + "emic" + ], + [ + "▁Bened", + "ict" + ], + [ + "▁Bene", + "dict" + ], + [ + "▁releg", + "ated" + ], + [ + "O", + "n" + ], + [ + "▁185", + "8" + ], + [ + "▁F", + "o" + ], + [ + "▁count", + "ing" + ], + [ + "▁coun", + "ting" + ], + [ + "▁co", + "unting" + ], + [ + "▁vis", + "ibility" + ], + [ + "▁Agricult", + "ural" + ], + [ + "▁satisfact", + "ion" + ], + [ + "▁satisf", + "action" + ], + [ + "▁satis", + "faction" + ], + [ + "▁An", + "s" + ], + [ + "▁A", + "ns" + ], + [ + "k", + "ward" + ], + [ + "chest", + "er" + ], + [ + "ches", + "ter" + ], + [ + "che", + "ster" + ], + [ + "ch", + "ester" + ], + [ + "c", + "hester" + ], + [ + "▁ins", + "urg" + ], + [ + "▁Somet", + "hing" + ], + [ + "▁Some", + "thing" + ], + [ + "▁qual", + "ification" + ], + [ + "UC", + "N" + ], + [ + "▁And", + "r" + ], + [ + "▁An", + "dr" + ], + [ + "▁Gl", + "ad" + ], + [ + "▁bl", + "ade" + ], + [ + "▁sh", + "ame" + ], + [ + "▁iP", + "h" + ], + [ + "▁i", + "Ph" + ], + [ + "▁inc", + "ap" + ], + [ + "▁After", + "wards" + ], + [ + "ani", + "e" + ], + [ + "an", + "ie" + ], + [ + "a", + "nie" + ], + [ + "▁as", + "ym" + ], + [ + "▁Us", + "ually" + ], + [ + "ign", + "e" + ], + [ + "ig", + "ne" + ], + [ + "las", + "t" + ], + [ + "la", + "st" + ], + [ + "l", + "ast" + ], + [ + "▁Bl", + "aine" + ], + [ + "▁test", + "ified" + ], + [ + "▁Po", + "d" + ], + [ + "▁P", + "od" + ], + [ + "▁185", + "6" + ], + [ + "▁18", + "56" + ], + [ + "▁Tin", + "a" + ], + [ + "▁Ti", + "na" + ], + [ + "▁T", + "ina" + ], + [ + "▁front", + "al" + ], + [ + "▁fron", + "tal" + ], + [ + "▁fr", + "ontal" + ], + [ + "▁journal", + "s" + ], + [ + "▁journ", + "als" + ], + [ + "▁inflamm", + "atory" + ], + [ + "▁Bi", + "t" + ], + [ + "▁B", + "it" + ], + [ + "opa", + "th" + ], + [ + "op", + "ath" + ], + [ + "o", + "path" + ], + [ + "▁Air", + "craft" + ], + [ + "▁A", + "ircraft" + ], + [ + "▁Teacher", + "s" + ], + [ + "▁Tea", + "chers" + ], + [ + "▁Te", + "achers" + ], + [ + "▁promote", + "s" + ], + [ + "▁promot", + "es" + ], + [ + "▁prom", + "otes" + ], + [ + "▁protect", + "s" + ], + [ + "▁prot", + "ects" + ], + [ + "▁comm", + "ended" + ], + [ + "▁Rey", + "alizatè" + ], + [ + "▁counter", + "part" + ], + [ + "atern", + "ity" + ], + [ + "▁overlook", + "ed" + ], + [ + "▁Immedi", + "ately" + ], + [ + "▁surprising", + "ly" + ], + [ + "▁surpris", + "ingly" + ], + [ + "▁G", + "ö" + ], + [ + "ack", + "er" + ], + [ + "ac", + "ker" + ], + [ + "▁miz", + "isyen" + ], + [ + "old", + "s" + ], + [ + "ol", + "ds" + ], + [ + "▁jo", + "u" + ], + [ + "▁j", + "ou" + ], + [ + "▁", + "jou" + ], + [ + "▁rot", + "ating" + ], + [ + "▁intentional", + "ly" + ], + [ + "▁intention", + "ally" + ], + [ + "es", + "a" + ], + [ + "e", + "sa" + ], + [ + "are", + "z" + ], + [ + "ar", + "ez" + ], + [ + "a", + "rez" + ], + [ + "ili", + "es" + ], + [ + "il", + "ies" + ], + [ + "i", + "lies" + ], + [ + "▁Th", + "ir" + ], + [ + "▁suit", + "e" + ], + [ + "▁su", + "ite" + ], + [ + "▁mon", + "soon" + ], + [ + "▁post", + "ure" + ], + [ + "▁pos", + "ture" + ], + [ + "▁ti", + "dal" + ], + [ + "▁t", + "idal" + ], + [ + "▁The", + "rap" + ], + [ + "▁chart", + "ing" + ], + [ + "▁char", + "ting" + ], + [ + "▁concur", + "rent" + ], + [ + "▁south", + "bound" + ], + [ + "ac", + "ies" + ], + [ + "a", + "cies" + ], + [ + "▁throw", + "s" + ], + [ + "▁thr", + "ows" + ], + [ + "▁th", + "rows" + ], + [ + "▁Even", + "ing" + ], + [ + "▁Eve", + "ning" + ], + [ + "▁Ev", + "ening" + ], + [ + "▁brows", + "er" + ], + [ + "▁earthquake", + "s" + ], + [ + "▁earthqu", + "akes" + ], + [ + "▁in", + "effective" + ], + [ + "U", + "R" + ], + [ + "▁mar", + "s" + ], + [ + "▁ma", + "rs" + ], + [ + "▁m", + "ars" + ], + [ + "▁rec", + "apt" + ], + [ + "▁enjoy", + "able" + ], + [ + "D", + "T" + ], + [ + "▁Dat", + "e" + ], + [ + "▁Da", + "te" + ], + [ + "▁D", + "ate" + ], + [ + "▁Kan", + "t" + ], + [ + "▁Ka", + "nt" + ], + [ + "▁K", + "ant" + ], + [ + "▁sp", + "ill" + ], + [ + "▁s", + "pill" + ], + [ + "▁del", + "eted" + ], + [ + "▁de", + "leted" + ], + [ + "▁electrom", + "agnetic" + ], + [ + "▁", + "Š" + ], + [ + "ress", + "es" + ], + [ + "res", + "ses" + ], + [ + "r", + "esses" + ], + [ + "▁domin", + "ate" + ], + [ + "▁dom", + "inate" + ], + [ + "▁fertil", + "ity" + ], + [ + "▁fert", + "ility" + ], + [ + "▁F", + "C" + ], + [ + "▁", + "FC" + ], + [ + "▁184", + "9" + ], + [ + "▁18", + "49" + ], + [ + "▁ruin", + "ed" + ], + [ + "▁ru", + "ined" + ], + [ + "olesc", + "ent" + ], + [ + "oles", + "cent" + ], + [ + "▁neut", + "ron" + ], + [ + "▁inter", + "val" + ], + [ + "▁overt", + "ime" + ], + [ + "▁over", + "time" + ], + [ + "▁goal", + "keeper" + ], + [ + "▁prest", + "igious" + ], + [ + "aha", + "n" + ], + [ + "ah", + "an" + ], + [ + "a", + "han" + ], + [ + "ant", + "è" + ], + [ + "an", + "tè" + ], + [ + "ind", + "a" + ], + [ + "in", + "da" + ], + [ + "iat", + "us" + ], + [ + "i", + "atus" + ], + [ + "▁man", + "or" + ], + [ + "▁ma", + "nor" + ], + [ + "▁m", + "anor" + ], + [ + "▁Hal", + "ifax" + ], + [ + "▁hy", + "giene" + ], + [ + "▁prop", + "eller" + ], + [ + "▁landscape", + "s" + ], + [ + "▁landsc", + "apes" + ], + [ + "▁13", + "6" + ], + [ + "▁1", + "36" + ], + [ + "▁pe", + "st" + ], + [ + "▁p", + "est" + ], + [ + "▁bas", + "al" + ], + [ + "asyon", + "al" + ], + [ + "asy", + "onal" + ], + [ + "ubl", + "ished" + ], + [ + "ub", + "lished" + ], + [ + "▁dress", + "ing" + ], + [ + "in", + "h" + ], + [ + "es", + "ome" + ], + [ + "▁su", + "ed" + ], + [ + "▁s", + "ued" + ], + [ + "▁Clare", + "n" + ], + [ + "▁Cla", + "ren" + ], + [ + "▁Cl", + "aren" + ], + [ + "▁Carr", + "oll" + ], + [ + "▁Car", + "roll" + ], + [ + "▁Classic", + "al" + ], + [ + "▁Class", + "ical" + ], + [ + "▁subm", + "ission" + ], + [ + "▁sub", + "mission" + ], + [ + "bat", + "h" + ], + [ + "ba", + "th" + ], + [ + "b", + "ath" + ], + [ + "▁Aw", + "ay" + ], + [ + "▁A", + "way" + ], + [ + "▁gill", + "s" + ], + [ + "▁g", + "ills" + ], + [ + "▁Comp", + "ar" + ], + [ + "▁Com", + "par" + ], + [ + "ogene", + "sis" + ], + [ + "ogen", + "esis" + ], + [ + "▁just", + "ify" + ], + [ + "▁Prussia", + "n" + ], + [ + "▁Pruss", + "ian" + ], + [ + "▁frigate", + "s" + ], + [ + "▁frig", + "ates" + ], + [ + "▁classroom", + "s" + ], + [ + "▁class", + "rooms" + ], + [ + "▁Z", + "ag" + ], + [ + "▁Ran", + "k" + ], + [ + "▁R", + "ank" + ], + [ + "▁has", + "t" + ], + [ + "▁ha", + "st" + ], + [ + "▁h", + "ast" + ], + [ + "▁micro", + "s" + ], + [ + "▁mic", + "ros" + ], + [ + "▁score", + "r" + ], + [ + "▁sc", + "orer" + ], + [ + "▁dism", + "ant" + ], + [ + "clesiast", + "ical" + ], + [ + "▁Doc", + "k" + ], + [ + "▁Do", + "ck" + ], + [ + "▁D", + "ock" + ], + [ + "▁pre", + "z" + ], + [ + "▁pr", + "ez" + ], + [ + "▁p", + "rez" + ], + [ + "▁Chart", + "er" + ], + [ + "▁Char", + "ter" + ], + [ + "▁Ch", + "arter" + ], + [ + "▁advisor", + "y" + ], + [ + "▁advis", + "ory" + ], + [ + "▁some", + "body" + ], + [ + "▁underw", + "ay" + ], + [ + "▁under", + "way" + ], + [ + "▁S", + "é" + ], + [ + "aza", + "r" + ], + [ + "az", + "ar" + ], + [ + "▁Ni", + "m" + ], + [ + "▁N", + "im" + ], + [ + "▁lem", + "ur" + ], + [ + "▁lov", + "ing" + ], + [ + "▁lo", + "ving" + ], + [ + "▁RI", + "AA" + ], + [ + "▁du", + "ct" + ], + [ + "▁d", + "uct" + ], + [ + "▁", + "duct" + ], + [ + "▁Ach", + "ie" + ], + [ + "▁A", + "chie" + ], + [ + "▁semi", + "f" + ], + [ + "▁sem", + "if" + ], + [ + "▁c", + "u" + ], + [ + "▁Lan", + "s" + ], + [ + "▁La", + "ns" + ], + [ + "▁L", + "ans" + ], + [ + "▁Ro", + "ot" + ], + [ + "▁R", + "oot" + ], + [ + "▁Te", + "en" + ], + [ + "▁T", + "een" + ], + [ + "▁Bea", + "st" + ], + [ + "▁Be", + "ast" + ], + [ + "▁am", + "end" + ], + [ + "▁Je", + "t" + ], + [ + "▁J", + "et" + ], + [ + "abl", + "ish" + ], + [ + "ab", + "lish" + ], + [ + "▁res", + "ume" + ], + [ + "▁spir", + "al" + ], + [ + "▁sp", + "iral" + ], + [ + "▁remn", + "ant" + ], + [ + "▁rem", + "nant" + ], + [ + "▁hier", + "archy" + ], + [ + "P", + "h" + ], + [ + "il", + "us" + ], + [ + "▁Mac", + "D" + ], + [ + "▁cer", + "v" + ], + [ + "▁c", + "erv" + ], + [ + "▁satisf", + "y" + ], + [ + "▁ref", + "rig" + ], + [ + "▁circuit", + "s" + ], + [ + "▁circ", + "uits" + ], + [ + "▁ref", + "using" + ], + [ + "▁Ph", + "ase" + ], + [ + "▁cler", + "k" + ], + [ + "▁cl", + "erk" + ], + [ + "▁Holl", + "ow" + ], + [ + "▁Hol", + "low" + ], + [ + "▁H", + "ollow" + ], + [ + "▁kn", + "ight" + ], + [ + "▁k", + "night" + ], + [ + "▁embra", + "ce" + ], + [ + "▁emb", + "race" + ], + [ + "▁amount", + "ed" + ], + [ + "▁am", + "ounted" + ], + [ + "▁Standard", + "s" + ], + [ + "▁Stand", + "ards" + ], + [ + "▁advertisement", + "s" + ], + [ + "▁advertis", + "ements" + ], + [ + "▁min", + "t" + ], + [ + "▁mi", + "nt" + ], + [ + "▁m", + "int" + ], + [ + "▁wire", + "s" + ], + [ + "▁w", + "ires" + ], + [ + "▁bicy", + "cle" + ], + [ + "▁bic", + "ycle" + ], + [ + "ber", + "ries" + ], + [ + "▁brut", + "al" + ], + [ + "▁bru", + "tal" + ], + [ + "▁cancel", + "l" + ], + [ + "▁canc", + "ell" + ], + [ + "▁can", + "cell" + ], + [ + "▁c", + "ancell" + ], + [ + "▁Bi", + "l" + ], + [ + "▁B", + "il" + ], + [ + "▁coordin", + "ate" + ], + [ + "%", + "," + ], + [ + ".)", + "." + ], + [ + ".", + ")." + ], + [ + "▁Men", + "tal" + ], + [ + "▁M", + "ental" + ], + [ + "atern", + "al" + ], + [ + "ater", + "nal" + ], + [ + "a", + "ternal" + ], + [ + "▁Lic", + "h" + ], + [ + "▁Li", + "ch" + ], + [ + "▁L", + "ich" + ], + [ + "avil", + "ion" + ], + [ + "▁aw", + "kward" + ], + [ + "▁sol", + "itary" + ], + [ + "▁explo", + "it" + ], + [ + "▁expl", + "oit" + ], + [ + "▁Arch", + "ives" + ], + [ + "ik", + "k" + ], + [ + "▁Myst", + "er" + ], + [ + "▁Mys", + "ter" + ], + [ + "▁My", + "ster" + ], + [ + "ec", + "onomic" + ], + [ + "▁Liter", + "ature" + ], + [ + "▁ac", + "et" + ], + [ + "▁well", + "s" + ], + [ + "▁wel", + "ls" + ], + [ + "▁w", + "ells" + ], + [ + "▁suprem", + "e" + ], + [ + "▁sup", + "reme" + ], + [ + "▁bo", + "u" + ], + [ + "▁b", + "ou" + ], + [ + "▁vi", + "e" + ], + [ + "▁v", + "ie" + ], + [ + "▁", + "vie" + ], + [ + "▁Sp", + "ot" + ], + [ + "row", + "ing" + ], + [ + "ro", + "wing" + ], + [ + "r", + "owing" + ], + [ + "▁puls", + "e" + ], + [ + "▁pul", + "se" + ], + [ + "▁p", + "ulse" + ], + [ + "▁demol", + "ition" + ], + [ + "▁question", + "ing" + ], + [ + "we", + "ed" + ], + [ + "w", + "eed" + ], + [ + "▁Fal", + "k" + ], + [ + "▁F", + "alk" + ], + [ + "ement", + "ia" + ], + [ + "▁hunter", + "s" + ], + [ + "▁hunt", + "ers" + ], + [ + "▁hun", + "ters" + ], + [ + "▁Staff", + "ord" + ], + [ + "▁rel", + "ijyon" + ], + [ + "w", + "i" + ], + [ + "ba", + "t" + ], + [ + "b", + "at" + ], + [ + "▁.", + "." + ], + [ + "▁", + ".." + ], + [ + "fi", + "ed" + ], + [ + "f", + "ied" + ], + [ + "▁os", + "i" + ], + [ + "▁Tro", + "y" + ], + [ + "▁Tr", + "oy" + ], + [ + "▁T", + "roy" + ], + [ + "▁sa", + "ke" + ], + [ + "▁s", + "ake" + ], + [ + "▁plant", + "ation" + ], + [ + "▁i", + "v" + ], + [ + "▁", + "iv" + ], + [ + "bre", + "d" + ], + [ + "br", + "ed" + ], + [ + "b", + "red" + ], + [ + "odon", + "t" + ], + [ + "od", + "ont" + ], + [ + "▁ESP", + "N" + ], + [ + "resc", + "ent" + ], + [ + "res", + "cent" + ], + [ + "▁Duch", + "ess" + ], + [ + "▁Duc", + "hess" + ], + [ + "▁meaning", + "s" + ], + [ + "▁mean", + "ings" + ], + [ + "▁L", + "C" + ], + [ + "▁", + "LC" + ], + [ + "▁Z", + "imb" + ], + [ + "▁dent", + "ist" + ], + [ + "▁super", + "hero" + ], + [ + "▁cons", + "cience" + ], + [ + "▁vict", + "orious" + ], + [ + "▁workshop", + "s" + ], + [ + "▁worksh", + "ops" + ], + [ + "ł", + "aw" + ], + [ + "nan", + "t" + ], + [ + "na", + "nt" + ], + [ + "n", + "ant" + ], + [ + "▁cons", + "ort" + ], + [ + "▁Sunder", + "land" + ], + [ + "ern", + "s" + ], + [ + "er", + "ns" + ], + [ + "▁Opp", + "en" + ], + [ + "▁Op", + "pen" + ], + [ + "▁O", + "ppen" + ], + [ + "▁ord", + "in" + ], + [ + "▁or", + "din" + ], + [ + "▁", + "ordin" + ], + [ + "▁Full", + "er" + ], + [ + "▁Ful", + "ler" + ], + [ + "▁Fu", + "ller" + ], + [ + "▁cra", + "ter" + ], + [ + "▁cr", + "ater" + ], + [ + "▁legit", + "im" + ], + [ + "▁back", + "drop" + ], + [ + "▁therapeut", + "ic" + ], + [ + "▁mission", + "aries" + ], + [ + "▁", + "^" + ], + [ + "▁rab", + "b" + ], + [ + "▁ra", + "bb" + ], + [ + "▁ut", + "er" + ], + [ + "▁u", + "ter" + ], + [ + "▁", + "uter" + ], + [ + "▁eff", + "ic" + ], + [ + "▁e", + "ffic" + ], + [ + "▁load", + "s" + ], + [ + "▁lo", + "ads" + ], + [ + "▁dev", + "otion" + ], + [ + "▁prompt", + "ly" + ], + [ + "▁reading", + "s" + ], + [ + "▁read", + "ings" + ], + [ + "▁listen", + "ers" + ], + [ + "▁Do", + "ktè" + ], + [ + "▁D", + "oktè" + ], + [ + "▁Raf", + "ael" + ], + [ + "▁Per", + "fect" + ], + [ + "▁constitute", + "d" + ], + [ + "▁constitu", + "ted" + ], + [ + "▁constit", + "uted" + ], + [ + "unt", + "a" + ], + [ + "un", + "ta" + ], + [ + "▁need", + "le" + ], + [ + "▁reun", + "ited" + ], + [ + "▁Ruther", + "ford" + ], + [ + "ha", + "l" + ], + [ + "h", + "al" + ], + [ + "oci", + "de" + ], + [ + "oc", + "ide" + ], + [ + "▁mim", + "ic" + ], + [ + "▁mi", + "mic" + ], + [ + "▁Fi", + "ction" + ], + [ + "▁F", + "iction" + ], + [ + "▁inf", + "inite" + ], + [ + ".", + "6" + ], + [ + "▁Le", + "c" + ], + [ + "▁L", + "ec" + ], + [ + "▁Pi", + "ke" + ], + [ + "▁P", + "ike" + ], + [ + "▁magn", + "esium" + ], + [ + "▁proportion", + "s" + ], + [ + "▁proport", + "ions" + ], + [ + "▁ro", + "u" + ], + [ + "▁r", + "ou" + ], + [ + "fl", + "amm" + ], + [ + "▁Cor", + "p" + ], + [ + "▁C", + "orp" + ], + [ + "▁Beaut", + "y" + ], + [ + "▁Beau", + "ty" + ], + [ + "▁Bea", + "uty" + ], + [ + "▁Hoff", + "man" + ], + [ + "▁Char", + "acter" + ], + [ + "▁inscription", + "s" + ], + [ + "▁ins", + "criptions" + ], + [ + "ge", + "on" + ], + [ + "▁Sm", + "y" + ], + [ + "▁S", + "my" + ], + [ + "▁ge", + "l" + ], + [ + "▁g", + "el" + ], + [ + "▁", + "gel" + ], + [ + "▁Dra", + "w" + ], + [ + "▁Dr", + "aw" + ], + [ + "▁D", + "raw" + ], + [ + "▁Webb", + "er" + ], + [ + "▁Web", + "ber" + ], + [ + "▁Scholar", + "s" + ], + [ + "▁Sch", + "olars" + ], + [ + "▁toxic", + "ity" + ], + [ + "▁tox", + "icity" + ], + [ + "▁Disc", + "overy" + ], + [ + "▁ge", + "ography" + ], + [ + "▁so", + "y" + ], + [ + "▁s", + "oy" + ], + [ + "▁Eye", + "s" + ], + [ + "▁Ey", + "es" + ], + [ + "ape", + "ake" + ], + [ + "▁Al", + "ways" + ], + [ + "▁tra", + "gic" + ], + [ + "▁pred", + "ator" + ], + [ + "▁Question", + "s" + ], + [ + "▁Quest", + "ions" + ], + [ + "▁part", + "ition" + ], + [ + "Al", + "l" + ], + [ + "A", + "ll" + ], + [ + "boat", + "s" + ], + [ + "bo", + "ats" + ], + [ + "▁scr", + "ut" + ], + [ + "▁Barb", + "er" + ], + [ + "▁Bar", + "ber" + ], + [ + "▁overhe", + "ad" + ], + [ + "▁overh", + "ead" + ], + [ + "▁over", + "head" + ], + [ + "H", + "C" + ], + [ + "vi", + "e" + ], + [ + "v", + "ie" + ], + [ + "▁(", + "\"" + ], + [ + "air", + "d" + ], + [ + "ai", + "rd" + ], + [ + "a", + "ird" + ], + [ + "▁Red", + "s" + ], + [ + "▁Re", + "ds" + ], + [ + "▁R", + "eds" + ], + [ + "▁Com", + "ic" + ], + [ + "▁Co", + "mic" + ], + [ + "▁C", + "omic" + ], + [ + "▁man", + "ned" + ], + [ + "▁m", + "anned" + ], + [ + "▁home", + "town" + ], + [ + "▁h", + "ometown" + ], + [ + "▁bottle", + "s" + ], + [ + "▁bott", + "les" + ], + [ + "▁drown", + "ed" + ], + [ + "▁dr", + "owned" + ], + [ + "▁disc", + "arded" + ], + [ + "▁postp", + "oned" + ], + [ + "urn", + "al" + ], + [ + "ur", + "nal" + ], + [ + "▁AD", + "HD" + ], + [ + "stone", + "s" + ], + [ + "ston", + "es" + ], + [ + "st", + "ones" + ], + [ + "▁cable", + "s" + ], + [ + "▁cab", + "les" + ], + [ + "▁c", + "ables" + ], + [ + "▁rest", + "ra" + ], + [ + "▁res", + "tra" + ], + [ + "▁abd", + "omen" + ], + [ + "▁tournament", + "s" + ], + [ + "▁tourn", + "aments" + ], + [ + "▁Up", + "d" + ], + [ + "▁Wad", + "e" + ], + [ + "▁Wa", + "de" + ], + [ + "▁W", + "ade" + ], + [ + "▁wild", + "er" + ], + [ + "▁w", + "ilder" + ], + [ + "▁craft", + "s" + ], + [ + "▁man", + "kind" + ], + [ + "▁de", + "gradation" + ], + [ + "▁practical", + "ly" + ], + [ + "▁pract", + "ically" + ], + [ + "▁interpretation", + "s" + ], + [ + "▁interpret", + "ations" + ], + [ + "jo", + "rd" + ], + [ + "j", + "ord" + ], + [ + "▁sp", + "y" + ], + [ + "▁s", + "py" + ], + [ + "agar", + "a" + ], + [ + "aga", + "ra" + ], + [ + "ag", + "ara" + ], + [ + "▁em", + "an" + ], + [ + "▁e", + "man" + ], + [ + "▁", + "eman" + ], + [ + "▁pair", + "ed" + ], + [ + "▁pa", + "ired" + ], + [ + "▁p", + "aired" + ], + [ + "▁iss", + "uing" + ], + [ + "▁un", + "chang" + ], + [ + "▁warri", + "or" + ], + [ + "▁Anglic", + "an" + ], + [ + "▁econom", + "ies" + ], + [ + "▁dam", + "p" + ], + [ + "▁da", + "mp" + ], + [ + "▁d", + "amp" + ], + [ + "▁Adri", + "atic" + ], + [ + "day", + "s" + ], + [ + "da", + "ys" + ], + [ + "d", + "ays" + ], + [ + "unt", + "on" + ], + [ + "un", + "ton" + ], + [ + "▁glacier", + "s" + ], + [ + "▁glac", + "iers" + ], + [ + "▁accus", + "ations" + ], + [ + "▁resemb", + "lance" + ], + [ + "Wh", + "en" + ], + [ + "W", + "hen" + ], + [ + "▁os", + "c" + ], + [ + "▁o", + "sc" + ], + [ + "▁", + "osc" + ], + [ + "▁re", + "r" + ], + [ + "▁r", + "er" + ], + [ + "▁", + "rer" + ], + [ + "▁Co", + "ach" + ], + [ + "▁Brit", + "ney" + ], + [ + "▁Assess", + "ment" + ], + [ + "▁:-", + "8" + ], + [ + "▁:", + "-8" + ], + [ + "▁Haw", + "k" + ], + [ + "▁H", + "awk" + ], + [ + "▁pop", + "ul" + ], + [ + "▁we", + "ird" + ], + [ + "T", + "R" + ], + [ + "ube", + "r" + ], + [ + "ub", + "er" + ], + [ + "u", + "ber" + ], + [ + "▁piti", + "t" + ], + [ + "▁pit", + "it" + ], + [ + "▁Multip", + "le" + ], + [ + "band", + "s" + ], + [ + "ban", + "ds" + ], + [ + "b", + "ands" + ], + [ + "▁Fre", + "sh" + ], + [ + "▁Fr", + "esh" + ], + [ + "▁F", + "resh" + ], + [ + "▁Fl", + "u" + ], + [ + "▁F", + "lu" + ], + [ + "▁V", + "augh" + ], + [ + "if", + "iable" + ], + [ + "▁Near", + "ly" + ], + [ + "▁divorce", + "d" + ], + [ + "▁divor", + "ced" + ], + [ + "▁associate", + "s" + ], + [ + "▁associ", + "ates" + ], + [ + "▁psychiat", + "ric" + ], + [ + "▁psych", + "iatric" + ], + [ + "E", + "n" + ], + [ + "est", + "ial" + ], + [ + "▁tail", + "ed" + ], + [ + "▁ta", + "iled" + ], + [ + "▁t", + "ailed" + ], + [ + "▁Indian", + "apolis" + ], + [ + "▁n", + "u" + ], + [ + "rom", + "b" + ], + [ + "ro", + "mb" + ], + [ + "r", + "omb" + ], + [ + "▁Os", + "w" + ], + [ + "▁O", + "sw" + ], + [ + "ardo", + "n" + ], + [ + "ard", + "on" + ], + [ + "ar", + "don" + ], + [ + "▁emb", + "assy" + ], + [ + "▁up", + "stream" + ], + [ + "▁temper", + "ate" + ], + [ + "B", + "L" + ], + [ + "▁l", + "umin" + ], + [ + "▁Eagle", + "s" + ], + [ + "▁E", + "agles" + ], + [ + "▁sens", + "ation" + ], + [ + "▁resemb", + "ling" + ], + [ + "ban", + "k" + ], + [ + "b", + "ank" + ], + [ + "▁Kn", + "ox" + ], + [ + "▁fun", + "k" + ], + [ + "▁f", + "unk" + ], + [ + "▁app", + "ar" + ], + [ + "▁ap", + "par" + ], + [ + "▁ind", + "ef" + ], + [ + "▁in", + "def" + ], + [ + "▁River", + "a" + ], + [ + "▁Riv", + "era" + ], + [ + "▁inv", + "isible" + ], + [ + "▁diss", + "atis" + ], + [ + "▁acqu", + "iring" + ], + [ + "▁Fil", + "ip" + ], + [ + "▁Hold", + "en" + ], + [ + "▁Hol", + "den" + ], + [ + "▁shr", + "ine" + ], + [ + "▁sh", + "rine" + ], + [ + "▁de", + "ities" + ], + [ + "▁overs", + "aw" + ], + [ + "▁day", + "light" + ], + [ + "▁Minne", + "apolis" + ], + [ + "▁expedition", + "s" + ], + [ + "▁exped", + "itions" + ], + [ + "▁ext", + "r" + ], + [ + "▁ex", + "tr" + ], + [ + "▁urg", + "ing" + ], + [ + "▁ur", + "ging" + ], + [ + "▁genetic", + "s" + ], + [ + "▁genet", + "ics" + ], + [ + "▁gen", + "etics" + ], + [ + "co", + "ver" + ], + [ + "c", + "over" + ], + [ + "ense", + "n" + ], + [ + "ens", + "en" + ], + [ + "en", + "sen" + ], + [ + "▁Ne", + "igh" + ], + [ + "▁Sud", + "an" + ], + [ + "▁Su", + "dan" + ], + [ + "▁appe", + "t" + ], + [ + "▁app", + "et" + ], + [ + "▁ap", + "pet" + ], + [ + "▁reporter", + "s" + ], + [ + "▁report", + "ers" + ], + [ + "ign", + "ant" + ], + [ + "ig", + "nant" + ], + [ + "▁forb", + "idden" + ], + [ + "▁perspective", + "s" + ], + [ + "▁pers", + "pectives" + ], + [ + "▁wa", + "nd" + ], + [ + "▁w", + "and" + ], + [ + "▁Dod", + "gers" + ], + [ + "hum", + "an" + ], + [ + "hu", + "man" + ], + [ + "h", + "uman" + ], + [ + "▁Ca", + "uc" + ], + [ + "▁C", + "auc" + ], + [ + "urg", + "ical" + ], + [ + "▁Laf", + "ayette" + ], + [ + "sa", + "y" + ], + [ + "s", + "ay" + ], + [ + "▁Dor", + "othy" + ], + [ + "▁rebu", + "ild" + ], + [ + "▁Observ", + "er" + ], + [ + "▁Obs", + "erver" + ], + [ + "▁broadcast", + "ing" + ], + [ + "▁St", + "é" + ], + [ + "▁sc", + "al" + ], + [ + "▁s", + "cal" + ], + [ + "▁High", + "er" + ], + [ + "▁Hig", + "her" + ], + [ + "▁Har", + "bour" + ], + [ + "▁Liter", + "ary" + ], + [ + "▁", + "±" + ], + [ + "aw", + "i" + ], + [ + "a", + "wi" + ], + [ + "ki", + "ll" + ], + [ + "k", + "ill" + ], + [ + "unt", + "s" + ], + [ + "un", + "ts" + ], + [ + "▁Sas", + "k" + ], + [ + "▁Sa", + "sk" + ], + [ + "▁S", + "ask" + ], + [ + "▁ment", + "or" + ], + [ + "▁men", + "tor" + ], + [ + "▁precurs", + "or" + ], + [ + "▁L", + "A" + ], + [ + "▁", + "LA" + ], + [ + "▁Sc", + "i" + ], + [ + "▁S", + "ci" + ], + [ + "▁Down", + "load" + ], + [ + "▁autom", + "obile" + ], + [ + "▁thunderstorm", + "s" + ], + [ + "▁thunderst", + "orms" + ], + [ + "2)", + "." + ], + [ + "2", + ")." + ], + [ + "▁Gu", + "t" + ], + [ + "▁G", + "ut" + ], + [ + "rag", + "ue" + ], + [ + "ra", + "gue" + ], + [ + "r", + "ague" + ], + [ + "▁Gre", + "t" + ], + [ + "▁Gr", + "et" + ], + [ + "▁G", + "ret" + ], + [ + "▁I", + "UCN" + ], + [ + "▁Em", + "ploy" + ], + [ + "▁check", + "s" + ], + [ + "▁Cer", + "t" + ], + [ + "▁C", + "ert" + ], + [ + "ote", + "chn" + ], + [ + "▁lord", + "s" + ], + [ + "▁lor", + "ds" + ], + [ + "▁l", + "ords" + ], + [ + "▁down", + "ed" + ], + [ + "▁d", + "owned" + ], + [ + "▁Lamb", + "ert" + ], + [ + "▁Lam", + "bert" + ], + [ + "intend", + "ent" + ], + [ + "▁squ", + "e" + ], + [ + "▁sq", + "ue" + ], + [ + "▁s", + "que" + ], + [ + "▁kingdom", + "s" + ], + [ + "▁king", + "doms" + ], + [ + "▁Stock", + "holm" + ], + [ + "▁Ches", + "apeake" + ], + [ + "▁culmin", + "ated" + ], + [ + "▁deliber", + "ate" + ], + [ + "▁inherit", + "ance" + ], + [ + "ster", + "dam" + ], + [ + "break", + "ing" + ], + [ + "bre", + "aking" + ], + [ + "▁des", + "irable" + ], + [ + "▁rel", + "iability" + ], + [ + "▁G", + "y" + ], + [ + "▁Lyn", + "n" + ], + [ + "▁Qu", + "ick" + ], + [ + "▁hair", + "s" + ], + [ + "▁ha", + "irs" + ], + [ + "▁h", + "airs" + ], + [ + "▁Gene", + "va" + ], + [ + "▁Scout", + "ing" + ], + [ + "▁Sc", + "outing" + ], + [ + "▁overt", + "urn" + ], + [ + "▁disc", + "rimin" + ], + [ + "ude", + "r" + ], + [ + "ud", + "er" + ], + [ + "u", + "der" + ], + [ + "▁La", + "ur" + ], + [ + "▁L", + "aur" + ], + [ + "▁Jul", + "ius" + ], + [ + "▁rese", + "ar" + ], + [ + "▁res", + "ear" + ], + [ + "▁exclud", + "ing" + ], + [ + "▁ex", + "cluding" + ], + [ + "▁decor", + "ation" + ], + [ + "▁dec", + "oration" + ], + [ + "▁straight", + "forward" + ], + [ + "ep", + "t" + ], + [ + "e", + "pt" + ], + [ + "po", + "le" + ], + [ + "p", + "ole" + ], + [ + "▁talent", + "ed" + ], + [ + "▁tal", + "ented" + ], + [ + "▁Be", + "a" + ], + [ + "▁B", + "ea" + ], + [ + "▁pul", + "p" + ], + [ + "▁Ac", + "ross" + ], + [ + "▁dis", + "ast" + ], + [ + "▁detect", + "ive" + ], + [ + "▁det", + "ective" + ], + [ + "▁tornado", + "es" + ], + [ + "po", + "x" + ], + [ + "p", + "ox" + ], + [ + "ctic", + "a" + ], + [ + "ct", + "ica" + ], + [ + "▁ob", + "ey" + ], + [ + "ivo", + "rous" + ], + [ + "iv", + "orous" + ], + [ + "▁dev", + "ote" + ], + [ + "▁group", + "ed" + ], + [ + "▁mountain", + "ous" + ], + [ + "W", + "h" + ], + [ + "1)", + "." + ], + [ + "1", + ")." + ], + [ + "ab", + "we" + ], + [ + "ta", + "il" + ], + [ + "t", + "ail" + ], + [ + "anda", + "n" + ], + [ + "and", + "an" + ], + [ + "an", + "dan" + ], + [ + "▁po", + "nd" + ], + [ + "▁p", + "ond" + ], + [ + "▁Jack", + "ie" + ], + [ + "▁Wes", + "ley" + ], + [ + "▁coin", + "ed" + ], + [ + "▁co", + "ined" + ], + [ + "▁helm", + "et" + ], + [ + "▁hel", + "met" + ], + [ + "▁inst", + "ability" + ], + [ + "▁congress", + "ional" + ], + [ + "ah", + "u" + ], + [ + "a", + "hu" + ], + [ + "obi", + "l" + ], + [ + "ob", + "il" + ], + [ + "▁Ben", + "d" + ], + [ + "▁Be", + "nd" + ], + [ + "▁B", + "end" + ], + [ + "▁Cec", + "il" + ], + [ + "▁Ce", + "cil" + ], + [ + "▁Winc", + "hester" + ], + [ + "▁Win", + "chester" + ], + [ + "▁B", + "S" + ], + [ + "▁", + "BS" + ], + [ + "▁own", + "s" + ], + [ + "▁ow", + "ns" + ], + [ + "▁chip", + "s" + ], + [ + "▁ch", + "ips" + ], + [ + "▁c", + "hips" + ], + [ + "▁in", + "acc" + ], + [ + "▁pron", + "unciation" + ], + [ + "anc", + "ies" + ], + [ + "an", + "cies" + ], + [ + "▁poll", + "en" + ], + [ + "▁pol", + "len" + ], + [ + "▁p", + "ollen" + ], + [ + "▁tr", + "ilogy" + ], + [ + "▁Richard", + "s" + ], + [ + "▁Rich", + "ards" + ], + [ + "▁contem", + "pl" + ], + [ + "▁cont", + "empl" + ], + [ + "▁N", + "ME" + ], + [ + "▁Bas", + "ic" + ], + [ + "im", + "i" + ], + [ + "i", + "mi" + ], + [ + "og", + "o" + ], + [ + "o", + "go" + ], + [ + "▁3", + ")" + ], + [ + "▁", + "3)" + ], + [ + "alan", + "d" + ], + [ + "ala", + "nd" + ], + [ + "al", + "and" + ], + [ + "a", + "land" + ], + [ + "aze", + "d" + ], + [ + "az", + "ed" + ], + [ + "a", + "zed" + ], + [ + "▁12", + "2" + ], + [ + "▁1", + "22" + ], + [ + "▁opp", + "ose" + ], + [ + "▁Serge", + "ant" + ], + [ + "▁butter", + "fly" + ], + [ + "▁Timber", + "lake" + ], + [ + "▁transp", + "arent" + ], + [ + "gra", + "ss" + ], + [ + "gr", + "ass" + ], + [ + "▁pot", + "ent" + ], + [ + "▁excit", + "ement" + ], + [ + "shi", + "ne" + ], + [ + "sh", + "ine" + ], + [ + "uli", + "ar" + ], + [ + "ul", + "iar" + ], + [ + "▁burn", + "t" + ], + [ + "▁bur", + "nt" + ], + [ + "▁derive", + "s" + ], + [ + "▁deriv", + "es" + ], + [ + "▁der", + "ives" + ], + [ + "▁compens", + "ate" + ], + [ + "▁devast", + "ated" + ], + [ + "▁Pol", + "e" + ], + [ + "▁Po", + "le" + ], + [ + "▁P", + "ole" + ], + [ + "▁184", + "7" + ], + [ + "▁18", + "47" + ], + [ + "▁cl", + "ad" + ], + [ + "ment", + "al" + ], + [ + "men", + "tal" + ], + [ + "m", + "ental" + ], + [ + "▁cam", + "oufl" + ], + [ + "▁Don", + "na" + ], + [ + "▁D", + "onna" + ], + [ + "▁hero", + "ic" + ], + [ + "▁disaster", + "s" + ], + [ + "▁disast", + "ers" + ], + [ + "▁dis", + "asters" + ], + [ + "▁additional", + "ly" + ], + [ + "▁addition", + "ally" + ], + [ + "M", + "ar" + ], + [ + "▁execut", + "e" + ], + [ + "▁exec", + "ute" + ], + [ + "▁Middles", + "ex" + ], + [ + "▁Middle", + "sex" + ], + [ + "▁compos", + "e" + ], + [ + "▁comp", + "ose" + ], + [ + "▁Iv", + "y" + ], + [ + "▁I", + "vy" + ], + [ + "▁Kr", + "e" + ], + [ + "▁K", + "re" + ], + [ + "▁ass", + "et" + ], + [ + "▁as", + "set" + ], + [ + "▁equ", + "ilibrium" + ], + [ + "ade", + "n" + ], + [ + "ad", + "en" + ], + [ + "a", + "den" + ], + [ + "▁Cl", + "ose" + ], + [ + "▁side", + "d" + ], + [ + "▁sid", + "ed" + ], + [ + "▁si", + "ded" + ], + [ + "▁s", + "ided" + ], + [ + "▁energet", + "ic" + ], + [ + "▁energ", + "etic" + ], + [ + "▁Louis", + "ville" + ], + [ + "C", + "E" + ], + [ + "f", + "u" + ], + [ + "▁B", + "j" + ], + [ + "▁Ni", + "g" + ], + [ + "▁N", + "ig" + ], + [ + "▁Tu", + "d" + ], + [ + "▁T", + "ud" + ], + [ + "icide", + "s" + ], + [ + "ici", + "des" + ], + [ + "ic", + "ides" + ], + [ + "▁fl", + "ame" + ], + [ + "at", + "z" + ], + [ + "a", + "tz" + ], + [ + "pro", + "fit" + ], + [ + "▁swe", + "ep" + ], + [ + "▁depth", + "s" + ], + [ + "▁dep", + "ths" + ], + [ + "▁climb", + "ed" + ], + [ + "▁clim", + "bed" + ], + [ + "▁convoy", + "s" + ], + [ + "▁conv", + "oys" + ], + [ + "▁em", + "pir" + ], + [ + "▁Gael", + "ic" + ], + [ + "▁Ga", + "elic" + ], + [ + "▁monitor", + "s" + ], + [ + "▁monit", + "ors" + ], + [ + "▁mon", + "itors" + ], + [ + "▁superst", + "ructure" + ], + [ + "▁Mi", + "y" + ], + [ + "▁M", + "iy" + ], + [ + "▁Gu", + "am" + ], + [ + "▁plain", + "s" + ], + [ + "▁pl", + "ains" + ], + [ + "▁Rebec", + "ca" + ], + [ + "▁obsc", + "ure" + ], + [ + "▁presc", + "ription" + ], + [ + "▁pres", + "cription" + ], + [ + "▁cent", + "s" + ], + [ + "▁c", + "ents" + ], + [ + "▁ski", + "rm" + ], + [ + "▁sk", + "irm" + ], + [ + "▁Dam", + "asc" + ], + [ + "▁disco", + "m" + ], + [ + "▁disc", + "om" + ], + [ + "▁dis", + "com" + ], + [ + "▁Clin", + "ical" + ], + [ + "bet", + "h" + ], + [ + "be", + "th" + ], + [ + "b", + "eth" + ], + [ + "ran", + "k" + ], + [ + "r", + "ank" + ], + [ + "▁Fa", + "v" + ], + [ + "▁F", + "av" + ], + [ + "vest", + "on" + ], + [ + "ves", + "ton" + ], + [ + "ve", + "ston" + ], + [ + "v", + "eston" + ], + [ + "▁riot", + "s" + ], + [ + "▁ri", + "ots" + ], + [ + "ific", + "ant" + ], + [ + "▁plum", + "age" + ], + [ + "▁object", + "ed" + ], + [ + "▁sketch", + "es" + ], + [ + "▁sket", + "ches" + ], + [ + "▁Comm", + "odore" + ], + [ + "▁select", + "ing" + ], + [ + "▁Dis", + "s" + ], + [ + "▁Di", + "ss" + ], + [ + "▁D", + "iss" + ], + [ + "ili", + "ght" + ], + [ + "il", + "ight" + ], + [ + "i", + "light" + ], + [ + "▁tw", + "ist" + ], + [ + "▁McM", + "ahon" + ], + [ + "▁reprodu", + "ce" + ], + [ + "▁Key", + "s" + ], + [ + "▁Ke", + "ys" + ], + [ + "▁Jam", + "ie" + ], + [ + "▁Ja", + "mie" + ], + [ + "field", + "er" + ], + [ + "f", + "ielder" + ], + [ + "▁clin", + "ic" + ], + [ + "▁Journ", + "ey" + ], + [ + "▁Le", + "opold" + ], + [ + "▁polym", + "er" + ], + [ + "▁poly", + "mer" + ], + [ + "▁creator", + "s" + ], + [ + "▁creat", + "ors" + ], + [ + "▁cre", + "ators" + ], + [ + "▁Car", + "penter" + ], + [ + "▁unrel", + "ated" + ], + [ + "▁un", + "related" + ], + [ + "▁transaction", + "s" + ], + [ + "▁trans", + "actions" + ], + [ + "▁ho", + "b" + ], + [ + "▁h", + "ob" + ], + [ + "ge", + "bra" + ], + [ + "▁par", + "a" + ], + [ + "▁pa", + "ra" + ], + [ + "▁p", + "ara" + ], + [ + "▁goal", + "t" + ], + [ + "▁go", + "alt" + ], + [ + "▁scr", + "ew" + ], + [ + "▁sc", + "rew" + ], + [ + "▁hunt", + "er" + ], + [ + "▁hun", + "ter" + ], + [ + "▁export", + "s" + ], + [ + "▁exp", + "orts" + ], + [ + "▁ex", + "ports" + ], + [ + "▁trust", + "ed" + ], + [ + "▁tru", + "sted" + ], + [ + "▁t", + "rusted" + ], + [ + "▁Man", + "ufact" + ], + [ + "▁portray", + "ing" + ], + [ + "▁portra", + "ying" + ], + [ + "az", + "i" + ], + [ + "a", + "zi" + ], + [ + "line", + "d" + ], + [ + "lin", + "ed" + ], + [ + "li", + "ned" + ], + [ + "l", + "ined" + ], + [ + "▁2010", + "." + ], + [ + "▁201", + "0." + ], + [ + "▁20", + "10." + ], + [ + "▁mental", + "ly" + ], + [ + "▁ment", + "ally" + ], + [ + "st", + "r" + ], + [ + "s", + "tr" + ], + [ + "cul", + "osis" + ], + [ + "▁sur", + "plus" + ], + [ + "▁bull", + "ying" + ], + [ + "▁bul", + "lying" + ], + [ + "▁telev", + "ised" + ], + [ + "▁spo", + "r" + ], + [ + "▁sp", + "or" + ], + [ + "▁s", + "por" + ], + [ + "▁st", + "ellar" + ], + [ + "▁continu", + "ation" + ], + [ + "▁contin", + "uation" + ], + [ + "p", + "ur" + ], + [ + "▁Se", + "s" + ], + [ + "▁S", + "es" + ], + [ + "ugg", + "ed" + ], + [ + "ug", + "ged" + ], + [ + "u", + "gged" + ], + [ + "▁steal", + "ing" + ], + [ + "▁ste", + "aling" + ], + [ + "▁Cl", + "y" + ], + [ + "▁C", + "ly" + ], + [ + "▁Le", + "h" + ], + [ + "▁th", + "or" + ], + [ + "▁t", + "hor" + ], + [ + "▁Cra", + "sh" + ], + [ + "▁Cr", + "ash" + ], + [ + "▁fluid", + "s" + ], + [ + "▁flu", + "ids" + ], + [ + "▁Mat", + "anzas" + ], + [ + "▁northeast", + "ward" + ], + [ + "ori", + "e" + ], + [ + "or", + "ie" + ], + [ + "o", + "rie" + ], + [ + "▁n", + "ée" + ], + [ + "▁peak", + "s" + ], + [ + "▁pe", + "aks" + ], + [ + "ol", + "ation" + ], + [ + "o", + "lation" + ], + [ + "▁criminal", + "s" + ], + [ + "▁crimin", + "als" + ], + [ + "▁according", + "ly" + ], + [ + "▁accord", + "ingly" + ], + [ + "The", + "y" + ], + [ + "Th", + "ey" + ], + [ + "T", + "hey" + ], + [ + "▁Tam", + "pa" + ], + [ + "▁T", + "ampa" + ], + [ + "▁Sc", + "ript" + ], + [ + "▁S", + "cript" + ], + [ + "▁Comp", + "ton" + ], + [ + "▁Com", + "pton" + ], + [ + "▁ge", + "ological" + ], + [ + ".", + "7" + ], + [ + "▁let", + "s" + ], + [ + "▁le", + "ts" + ], + [ + "▁l", + "ets" + ], + [ + "▁", + "lets" + ], + [ + "▁Prop", + "het" + ], + [ + "▁Italian", + "s" + ], + [ + "▁Ital", + "ians" + ], + [ + "▁revel", + "ation" + ], + [ + "▁reve", + "lation" + ], + [ + "▁const", + "ellation" + ], + [ + "▁demonstration", + "s" + ], + [ + "▁demonst", + "rations" + ], + [ + "aster", + "ly" + ], + [ + "▁excav", + "ated" + ], + [ + "U", + "N" + ], + [ + "▁l", + "uc" + ], + [ + "▁bug", + "s" + ], + [ + "▁bu", + "gs" + ], + [ + "▁b", + "ugs" + ], + [ + "▁court", + "y" + ], + [ + "▁cour", + "ty" + ], + [ + "abi", + "s" + ], + [ + "ab", + "is" + ], + [ + "oll", + "en" + ], + [ + "ol", + "len" + ], + [ + "▁Law", + "s" + ], + [ + "▁L", + "aws" + ], + [ + "▁gast", + "ro" + ], + [ + "▁shirt", + "s" + ], + [ + "▁sh", + "irts" + ], + [ + "0", + "5" + ], + [ + "é", + "g" + ], + [ + "cast", + "er" + ], + [ + "ca", + "ster" + ], + [ + "c", + "aster" + ], + [ + "▁de", + "hyd" + ], + [ + "▁Zimb", + "abwe" + ], + [ + "izard", + "s" + ], + [ + "iz", + "ards" + ], + [ + "▁Gue", + "st" + ], + [ + "▁Gu", + "est" + ], + [ + "▁comb", + "ust" + ], + [ + "▁cycl", + "ing" + ], + [ + "▁permit", + "s" + ], + [ + "▁perm", + "its" + ], + [ + "th", + "y" + ], + [ + "t", + "hy" + ], + [ + "▁4", + ":" + ], + [ + "igi", + "on" + ], + [ + "ig", + "ion" + ], + [ + "▁sense", + "s" + ], + [ + "▁sens", + "es" + ], + [ + "▁sen", + "ses" + ], + [ + "▁s", + "enses" + ], + [ + "▁Gaz", + "ette" + ], + [ + "▁rest", + "oring" + ], + [ + "▁minor", + "ities" + ], + [ + "▁S", + "z" + ], + [ + "▁Do", + "w" + ], + [ + "▁D", + "ow" + ], + [ + "▁184", + "6" + ], + [ + "▁18", + "46" + ], + [ + "▁mel", + "t" + ], + [ + "▁m", + "elt" + ], + [ + "▁sea", + "f" + ], + [ + "▁se", + "af" + ], + [ + "mon", + "ary" + ], + [ + "▁occupy", + "ing" + ], + [ + "▁occup", + "ying" + ], + [ + "▁Commun", + "ication" + ], + [ + "oc", + "us" + ], + [ + "▁sit", + "com" + ], + [ + "▁impl", + "ied" + ], + [ + "▁imp", + "lied" + ], + [ + "▁scholar", + "ly" + ], + [ + "▁O", + "N" + ], + [ + "▁", + "ON" + ], + [ + "▁185", + "5" + ], + [ + "▁18", + "55" + ], + [ + "▁tox", + "ins" + ], + [ + "▁Reg", + "ular" + ], + [ + "▁differ", + "ed" + ], + [ + "▁diff", + "ered" + ], + [ + "▁earning", + "s" + ], + [ + "▁earn", + "ings" + ], + [ + "▁ear", + "nings" + ], + [ + "▁Rhodesia", + "n" + ], + [ + "▁Rhodes", + "ian" + ], + [ + "▁arth", + "ritis" + ], + [ + "▁depend", + "ence" + ], + [ + "▁diet", + "s" + ], + [ + "▁die", + "ts" + ], + [ + "▁di", + "ets" + ], + [ + "▁tide", + "s" + ], + [ + "▁ti", + "des" + ], + [ + "▁t", + "ides" + ], + [ + "▁thr", + "ive" + ], + [ + "▁inspir", + "e" + ], + [ + "▁insp", + "ire" + ], + [ + "▁ins", + "pire" + ], + [ + "▁trench", + "es" + ], + [ + "▁tren", + "ches" + ], + [ + "▁unp", + "ro" + ], + [ + "▁un", + "pro" + ], + [ + "▁August", + "ine" + ], + [ + "▁reference", + "d" + ], + [ + "▁refer", + "enced" + ], + [ + "arc", + "k" + ], + [ + "ar", + "ck" + ], + [ + "che", + "v" + ], + [ + "ch", + "ev" + ], + [ + "c", + "hev" + ], + [ + "▁cinema", + "t" + ], + [ + "▁cinem", + "at" + ], + [ + "▁trouble", + "d" + ], + [ + "▁troub", + "led" + ], + [ + "ops", + "y" + ], + [ + "op", + "sy" + ], + [ + "o", + "psy" + ], + [ + "M", + "ania" + ], + [ + "anti", + "s" + ], + [ + "ant", + "is" + ], + [ + "ari", + "us" + ], + [ + "ar", + "ius" + ], + [ + "ims", + "on" + ], + [ + "im", + "son" + ], + [ + "sole", + "te" + ], + [ + "so", + "lete" + ], + [ + "▁Ess", + "ay" + ], + [ + "▁Es", + "say" + ], + [ + "▁g", + "orge" + ], + [ + "▁real", + "ism" + ], + [ + "▁Gal", + "veston" + ], + [ + "▁Recre", + "ation" + ], + [ + "▁prominent", + "ly" + ], + [ + "▁promin", + "ently" + ], + [ + "▁human", + "itarian" + ], + [ + "▁Cu", + "l" + ], + [ + "▁C", + "ul" + ], + [ + "▁no", + "u" + ], + [ + "▁n", + "ou" + ], + [ + "▁grie", + "f" + ], + [ + "▁gri", + "ef" + ], + [ + "▁gr", + "ief" + ], + [ + "▁g", + "rief" + ], + [ + "▁dance", + "s" + ], + [ + "▁d", + "ances" + ], + [ + "▁Every", + "one" + ], + [ + "▁Am", + "sterdam" + ], + [ + "▁defin", + "itive" + ], + [ + "▁fe", + "nce" + ], + [ + "▁f", + "ence" + ], + [ + "▁nas", + "al" + ], + [ + "▁wait", + "ed" + ], + [ + "▁wa", + "ited" + ], + [ + "▁light", + "ly" + ], + [ + "Q", + "L" + ], + [ + "▁1⁄", + "2" + ], + [ + "▁cro", + "s" + ], + [ + "▁cr", + "os" + ], + [ + "▁c", + "ros" + ], + [ + "▁inc", + "ub" + ], + [ + "▁pa", + "mph" + ], + [ + "▁p", + "amph" + ], + [ + "▁sett", + "ling" + ], + [ + "▁exceed", + "ing" + ], + [ + "▁adolescent", + "s" + ], + [ + "▁adolesc", + "ents" + ], + [ + "che", + "l" + ], + [ + "ch", + "el" + ], + [ + "c", + "hel" + ], + [ + "alo", + "re" + ], + [ + "al", + "ore" + ], + [ + "a", + "lore" + ], + [ + "am", + "orph" + ], + [ + "▁bowl", + "er" + ], + [ + "▁bow", + "ler" + ], + [ + "▁la", + "uded" + ], + [ + "▁navig", + "ate" + ], + [ + "▁undert", + "ake" + ], + [ + "unk", + "s" + ], + [ + "un", + "ks" + ], + [ + "▁vein", + "s" + ], + [ + "▁ve", + "ins" + ], + [ + "▁vom", + "iting" + ], + [ + "▁impair", + "ed" + ], + [ + "▁imp", + "aired" + ], + [ + "▁decor", + "ative" + ], + [ + "▁r", + "h" + ], + [ + "▁", + "rh" + ], + [ + "irm", + "ing" + ], + [ + "ir", + "ming" + ], + [ + "spec", + "ific" + ], + [ + "▁model", + "ed" + ], + [ + "▁mode", + "led" + ], + [ + "▁mod", + "eled" + ], + [ + "▁ab", + "dominal" + ], + [ + "I", + "G" + ], + [ + "▁mer", + "it" + ], + [ + "▁me", + "rit" + ], + [ + "D", + "e" + ], + [ + "▁dr", + "ift" + ], + [ + "▁graduate", + "s" + ], + [ + "▁grad", + "uates" + ], + [ + "▁neglect", + "ed" + ], + [ + "▁neg", + "lected" + ], + [ + "▁afford", + "able" + ], + [ + "▁Gi", + "ov" + ], + [ + "▁G", + "iov" + ], + [ + "▁im", + "èn" + ], + [ + "▁iPh", + "one" + ], + [ + "▁honour", + "s" + ], + [ + "▁hon", + "ours" + ], + [ + "▁sympat", + "h" + ], + [ + "▁sym", + "path" + ], + [ + "▁tekn", + "oloji" + ], + [ + "▁Loc", + "h" + ], + [ + "▁Lo", + "ch" + ], + [ + "▁L", + "och" + ], + [ + "▁ra", + "v" + ], + [ + "▁r", + "av" + ], + [ + "▁", + "rav" + ], + [ + "▁Prot", + "e" + ], + [ + "▁Pro", + "te" + ], + [ + "▁Pr", + "ote" + ], + [ + "▁P", + "rote" + ], + [ + "▁Bron", + "ze" + ], + [ + "▁B", + "ronze" + ], + [ + "▁Hamp", + "ton" + ], + [ + "▁Ham", + "pton" + ], + [ + "▁H", + "ampton" + ], + [ + "▁mini", + "ature" + ], + [ + "osc", + "op" + ], + [ + "os", + "cop" + ], + [ + "▁179", + "0" + ], + [ + "▁17", + "90" + ], + [ + "▁bul", + "b" + ], + [ + "▁semi", + "c" + ], + [ + "▁sem", + "ic" + ], + [ + "▁se", + "mic" + ], + [ + "▁s", + "emic" + ], + [ + "▁Daw", + "son" + ], + [ + "▁Ro", + "vers" + ], + [ + "▁R", + "overs" + ], + [ + "▁hyd", + "raul" + ], + [ + "▁market", + "ed" + ], + [ + "▁mark", + "eted" + ], + [ + "▁astron", + "omy" + ], + [ + "▁lingu", + "istic" + ], + [ + "az", + "y" + ], + [ + "a", + "zy" + ], + [ + "▁La", + "p" + ], + [ + "▁L", + "ap" + ], + [ + "amp", + "ed" + ], + [ + "am", + "ped" + ], + [ + "gi", + "ate" + ], + [ + "g", + "iate" + ], + [ + "▁Hyp", + "er" + ], + [ + "▁Hy", + "per" + ], + [ + "▁Bart", + "on" + ], + [ + "▁Bar", + "ton" + ], + [ + "▁H", + "utton" + ], + [ + "▁Albert", + "o" + ], + [ + "▁Alb", + "erto" + ], + [ + "▁Al", + "berto" + ], + [ + "▁personal", + "ities" + ], + [ + "▁person", + "alities" + ], + [ + "hou", + "s" + ], + [ + "ho", + "us" + ], + [ + "h", + "ous" + ], + [ + "▁12", + "3" + ], + [ + "▁1", + "23" + ], + [ + "▁Vo", + "n" + ], + [ + "▁V", + "on" + ], + [ + "▁May", + "be" + ], + [ + "▁Wy", + "att" + ], + [ + "▁se", + "ism" + ], + [ + "▁tren", + "ch" + ], + [ + "▁t", + "rench" + ], + [ + "ho", + "u" + ], + [ + "h", + "ou" + ], + [ + "ES", + "CO" + ], + [ + "oth", + "e" + ], + [ + "ot", + "he" + ], + [ + "o", + "the" + ], + [ + "▁14", + "7" + ], + [ + "▁1", + "47" + ], + [ + "st", + "orm" + ], + [ + "▁Son", + "s" + ], + [ + "▁So", + "ns" + ], + [ + "▁S", + "ons" + ], + [ + "▁Ele", + "anor" + ], + [ + "▁en", + "velop" + ], + [ + "▁erupt", + "ed" + ], + [ + "▁e", + "rupted" + ], + [ + "▁st", + "ain" + ], + [ + "▁s", + "tain" + ], + [ + "▁Div", + "ine" + ], + [ + "▁Rac", + "ing" + ], + [ + "▁Ra", + "cing" + ], + [ + "▁R", + "acing" + ], + [ + "▁osc", + "ill" + ], + [ + "▁os", + "cill" + ], + [ + "ili", + "ation" + ], + [ + "il", + "iation" + ], + [ + "▁Philos", + "ophy" + ], + [ + ".", + "-" + ], + [ + "▁Six", + "th" + ], + [ + "▁gra", + "zing" + ], + [ + "▁gr", + "azing" + ], + [ + "▁motor", + "cy" + ], + [ + "▁celebr", + "ating" + ], + [ + "▁celeb", + "rating" + ], + [ + "mar", + "e" + ], + [ + "ma", + "re" + ], + [ + "m", + "are" + ], + [ + "▁le", + "nt" + ], + [ + "▁l", + "ent" + ], + [ + "▁fund", + "ra" + ], + [ + "▁wet", + "lands" + ], + [ + "▁A", + "V" + ], + [ + "ec", + "raft" + ], + [ + "e", + "craft" + ], + [ + "th", + "ouse" + ], + [ + "t", + "house" + ], + [ + "▁case", + "m" + ], + [ + "▁cas", + "em" + ], + [ + "▁inform", + "s" + ], + [ + "▁inf", + "orms" + ], + [ + "▁life", + "long" + ], + [ + "▁lif", + "elong" + ], + [ + "▁progress", + "es" + ], + [ + "▁prog", + "resses" + ], + [ + "E", + "d" + ], + [ + "orn", + "s" + ], + [ + "or", + "ns" + ], + [ + "▁Cy", + "n" + ], + [ + "▁C", + "yn" + ], + [ + "▁he", + "x" + ], + [ + "▁h", + "ex" + ], + [ + "▁eruption", + "s" + ], + [ + "▁erupt", + "ions" + ], + [ + "ang", + "o" + ], + [ + "an", + "go" + ], + [ + "▁bre", + "e" + ], + [ + "▁br", + "ee" + ], + [ + "▁b", + "ree" + ], + [ + "aret", + "te" + ], + [ + "ar", + "ette" + ], + [ + "▁compl", + "y" + ], + [ + "▁comp", + "ly" + ], + [ + "▁com", + "ply" + ], + [ + "▁Lex", + "ington" + ], + [ + "▁wrestler", + "s" + ], + [ + "▁wrest", + "lers" + ], + [ + "▁bankrupt", + "cy" + ], + [ + "▁conting", + "ent" + ], + [ + "▁contin", + "gent" + ], + [ + "▁display", + "ing" + ], + [ + "▁displ", + "aying" + ], + [ + "▁Altern", + "ative" + ], + [ + "udd", + "y" + ], + [ + "ud", + "dy" + ], + [ + "▁he", + "d" + ], + [ + "▁h", + "ed" + ], + [ + "▁", + "hed" + ], + [ + "▁Bar", + "d" + ], + [ + "▁Ba", + "rd" + ], + [ + "▁B", + "ard" + ], + [ + "▁Mar", + "qu" + ], + [ + "▁quote", + "s" + ], + [ + "▁quot", + "es" + ], + [ + "▁qu", + "otes" + ], + [ + "▁talent", + "s" + ], + [ + "▁tal", + "ents" + ], + [ + "▁rejo", + "ined" + ], + [ + "-1", + "7" + ], + [ + "-", + "17" + ], + [ + "it", + "ud" + ], + [ + "▁Ib", + "n" + ], + [ + "ora", + "te" + ], + [ + "or", + "ate" + ], + [ + "o", + "rate" + ], + [ + "▁at", + "he" + ], + [ + "▁a", + "the" + ], + [ + "▁Laure", + "n" + ], + [ + "▁Laur", + "en" + ], + [ + "▁Trin", + "idad" + ], + [ + "▁fr", + "iction" + ], + [ + "▁f", + "riction" + ], + [ + "▁Canadian", + "s" + ], + [ + "▁Canad", + "ians" + ], + [ + "▁continu", + "ity" + ], + [ + "▁contin", + "uity" + ], + [ + "30", + "0" + ], + [ + "3", + "00" + ], + [ + "de", + "p" + ], + [ + "d", + "ep" + ], + [ + "▁9", + "," + ], + [ + "▁", + "9," + ], + [ + "▁catch", + "ing" + ], + [ + "▁cat", + "ching" + ], + [ + "▁entire", + "ty" + ], + [ + "▁railway", + "s" + ], + [ + "▁rail", + "ways" + ], + [ + "▁sound", + "ing" + ], + [ + "▁s", + "ounding" + ], + [ + "▁compos", + "ing" + ], + [ + "▁comp", + "osing" + ], + [ + "▁st", + "ap" + ], + [ + "▁Than", + "k" + ], + [ + "▁Th", + "ank" + ], + [ + "▁lens", + "es" + ], + [ + "▁l", + "enses" + ], + [ + "▁survey", + "ed" + ], + [ + "▁185", + "2" + ], + [ + "il", + "vani" + ], + [ + "▁enc", + "ry" + ], + [ + "▁Plant", + "s" + ], + [ + "▁Plan", + "ts" + ], + [ + "▁Pl", + "ants" + ], + [ + "▁mod", + "ify" + ], + [ + "▁Camb", + "odia" + ], + [ + "▁span", + "ning" + ], + [ + "▁me", + "g" + ], + [ + "▁m", + "eg" + ], + [ + "▁183", + "2" + ], + [ + "▁18", + "32" + ], + [ + "▁Carn", + "e" + ], + [ + "▁Car", + "ne" + ], + [ + "▁an", + "pil" + ], + [ + "▁repr", + "is" + ], + [ + "▁rep", + "ris" + ], + [ + "▁re", + "pris" + ], + [ + "arn", + "ation" + ], + [ + "ar", + "nation" + ], + [ + "▁Know", + "les" + ], + [ + "▁inter", + "im" + ], + [ + "▁inte", + "rim" + ], + [ + "▁enforce", + "d" + ], + [ + "▁en", + "forced" + ], + [ + "▁(19", + "7" + ], + [ + "▁(1", + "97" + ], + [ + "▁For", + "k" + ], + [ + "▁F", + "ork" + ], + [ + "▁Plan", + "s" + ], + [ + "▁Pl", + "ans" + ], + [ + "▁Wor", + "th" + ], + [ + "▁W", + "orth" + ], + [ + "▁tens", + "e" + ], + [ + "▁ten", + "se" + ], + [ + "▁t", + "ense" + ], + [ + "▁comm", + "ence" + ], + [ + "gh", + "ai" + ], + [ + "min", + "d" + ], + [ + "mi", + "nd" + ], + [ + "m", + "ind" + ], + [ + "▁Av", + "on" + ], + [ + "▁Batt", + "ery" + ], + [ + "▁Bat", + "tery" + ], + [ + "▁B", + "attery" + ], + [ + "▁Colomb", + "ia" + ], + [ + "▁port", + "able" + ], + [ + "▁convert", + "ing" + ], + [ + "▁conver", + "ting" + ], + [ + "▁stock", + "s" + ], + [ + "▁st", + "ocks" + ], + [ + "▁aster", + "oid" + ], + [ + "▁survive", + "s" + ], + [ + "▁surviv", + "es" + ], + [ + "▁surv", + "ives" + ], + [ + "▁Support", + "ing" + ], + [ + "by", + "e" + ], + [ + "b", + "ye" + ], + [ + "▁Eug", + "en" + ], + [ + "▁Eu", + "gen" + ], + [ + "▁educ", + "ate" + ], + [ + "▁allerg", + "ic" + ], + [ + "▁station", + "ary" + ], + [ + "-1", + "5" + ], + [ + "-", + "15" + ], + [ + "ve", + "x" + ], + [ + "v", + "ex" + ], + [ + "▁Pasc", + "al" + ], + [ + "▁Pas", + "cal" + ], + [ + "▁Rup", + "ert" + ], + [ + "▁Ru", + "pert" + ], + [ + "▁anchor", + "ed" + ], + [ + "▁anch", + "ored" + ], + [ + "id", + "y" + ], + [ + "i", + "dy" + ], + [ + "▁K", + "i" + ], + [ + "▁Ra", + "c" + ], + [ + "▁R", + "ac" + ], + [ + "▁din", + "ò" + ], + [ + "▁hall", + "s" + ], + [ + "▁hal", + "ls" + ], + [ + "▁announ", + "cing" + ], + [ + "▁ann", + "ouncing" + ], + [ + "▁Z", + "o" + ], + [ + "▁meth", + "ane" + ], + [ + "▁new", + "born" + ], + [ + "▁Damasc", + "us" + ], + [ + "au", + "ke" + ], + [ + "a", + "uke" + ], + [ + "▁Au", + "s" + ], + [ + "▁A", + "us" + ], + [ + "▁Ri", + "b" + ], + [ + "▁R", + "ib" + ], + [ + "ac", + "ity" + ], + [ + "ins", + "ki" + ], + [ + "in", + "ski" + ], + [ + "▁Ja", + "in" + ], + [ + "▁J", + "ain" + ], + [ + "▁ad", + "he" + ], + [ + "▁integr", + "ate" + ], + [ + "▁shortage", + "s" + ], + [ + "▁short", + "ages" + ], + [ + "▁south", + "ward" + ], + [ + "-", + "9" + ], + [ + "EN", + "T" + ], + [ + "E", + "NT" + ], + [ + "co", + "s" + ], + [ + "c", + "os" + ], + [ + "▁G", + "P" + ], + [ + "writ", + "ing" + ], + [ + "▁imm", + "igrant" + ], + [ + "▁specialist", + "s" + ], + [ + "▁special", + "ists" + ], + [ + "ue", + "r" + ], + [ + "u", + "er" + ], + [ + "▁E", + "z" + ], + [ + "ins", + "ky" + ], + [ + "in", + "sky" + ], + [ + "▁aid", + "s" + ], + [ + "▁a", + "ids" + ], + [ + "▁Tun", + "is" + ], + [ + "▁Tu", + "nis" + ], + [ + "▁viol", + "ated" + ], + [ + "▁T", + "S" + ], + [ + "▁", + "TS" + ], + [ + "or", + "um" + ], + [ + "o", + "rum" + ], + [ + "▁Occ", + "up" + ], + [ + "▁Tim", + "othy" + ], + [ + "▁ground", + "ed" + ], + [ + "▁gr", + "ounded" + ], + [ + "▁greg", + "oryen" + ], + [ + "▁superior", + "ity" + ], + [ + "▁V", + "i" + ], + [ + "wh", + "ite" + ], + [ + "oc", + "ence" + ], + [ + "▁Ap", + "ost" + ], + [ + "▁A", + "post" + ], + [ + "▁ti", + "ger" + ], + [ + "▁t", + "iger" + ], + [ + "▁appeal", + "s" + ], + [ + "▁appe", + "als" + ], + [ + "▁simple", + "r" + ], + [ + "▁simpl", + "er" + ], + [ + "▁sim", + "pler" + ], + [ + "▁author", + "ed" + ], + [ + "▁auth", + "ored" + ], + [ + "▁spin", + "ning" + ], + [ + "▁mathemat", + "ic" + ], + [ + "▁mat", + "hematic" + ], + [ + "▁am", + "alg" + ], + [ + "▁Arch", + "er" + ], + [ + "▁Arc", + "her" + ], + [ + "▁Ar", + "cher" + ], + [ + "▁loose", + "ly" + ], + [ + "▁lo", + "osely" + ], + [ + "▁compress", + "ion" + ], + [ + "▁comp", + "ression" + ], + [ + "▁12", + "," + ], + [ + "▁1", + "2," + ], + [ + "▁back", + "s" + ], + [ + "▁b", + "acks" + ], + [ + "▁", + "backs" + ], + [ + "▁compris", + "e" + ], + [ + "▁comp", + "rise" + ], + [ + "▁com", + "prise" + ], + [ + "▁Byr", + "d" + ], + [ + "▁By", + "rd" + ], + [ + "▁sm", + "ugg" + ], + [ + "▁imm", + "ort" + ], + [ + "▁depos", + "it" + ], + [ + "▁man", + "oeuv" + ], + [ + "▁Bel", + "t" + ], + [ + "▁B", + "elt" + ], + [ + "▁Set", + "h" + ], + [ + "▁Se", + "th" + ], + [ + "▁S", + "eth" + ], + [ + "▁suit", + "s" + ], + [ + "▁su", + "its" + ], + [ + "▁s", + "uits" + ], + [ + "▁Penns", + "ilvani" + ], + [ + "▁Qu", + "int" + ], + [ + "▁Vis", + "hn" + ], + [ + "▁V", + "ishn" + ], + [ + "▁bor", + "ing" + ], + [ + "▁bo", + "ring" + ], + [ + "▁b", + "oring" + ], + [ + "▁wilder", + "ness" + ], + [ + "▁wild", + "erness" + ], + [ + "▁overwhel", + "med" + ], + [ + "▁ball", + "et" + ], + [ + "▁bal", + "let" + ], + [ + "▁George", + "t" + ], + [ + "▁Georg", + "et" + ], + [ + "▁Geor", + "get" + ], + [ + "T", + "o" + ], + [ + "▁lo", + "r" + ], + [ + "▁l", + "or" + ], + [ + "▁", + "lor" + ], + [ + "enh", + "agen" + ], + [ + "t", + "ension" + ], + [ + "▁Vern", + "on" + ], + [ + "▁Ver", + "non" + ], + [ + "▁Persona", + "l" + ], + [ + "▁Person", + "al" + ], + [ + "▁Pers", + "onal" + ], + [ + "▁contrib", + "utor" + ], + [ + "ai", + "c" + ], + [ + "a", + "ic" + ], + [ + "▁(", + "“" + ], + [ + "▁tra", + "n" + ], + [ + "▁tr", + "an" + ], + [ + "▁t", + "ran" + ], + [ + "▁Cher", + "ry" + ], + [ + "▁Bris", + "bane" + ], + [ + "▁ver", + "dict" + ], + [ + "▁Persian", + "s" + ], + [ + "▁Persia", + "ns" + ], + [ + "▁Pers", + "ians" + ], + [ + "▁mut", + "ation" + ], + [ + "▁m", + "utation" + ], + [ + "▁pec", + "uliar" + ], + [ + "us", + "k" + ], + [ + "u", + "sk" + ], + [ + "▁185", + "3" + ], + [ + "▁Nin", + "a" + ], + [ + "▁Ni", + "na" + ], + [ + "▁N", + "ina" + ], + [ + "▁ru", + "in" + ], + [ + "▁Iran", + "ian" + ], + [ + "▁Ira", + "nian" + ], + [ + "▁Nor", + "wich" + ], + [ + "▁retrie", + "ve" + ], + [ + "▁Sha", + "r" + ], + [ + "▁Sh", + "ar" + ], + [ + "▁S", + "har" + ], + [ + "▁seat", + "ing" + ], + [ + "▁sea", + "ting" + ], + [ + "▁se", + "ating" + ], + [ + "▁defend", + "er" + ], + [ + "▁def", + "ender" + ], + [ + "▁pass", + "word" + ], + [ + "▁M", + "W" + ], + [ + "▁11", + "9" + ], + [ + "▁1", + "19" + ], + [ + "▁eye", + "w" + ], + [ + "▁ey", + "ew" + ], + [ + "▁urg", + "ent" + ], + [ + "▁ur", + "gent" + ], + [ + "▁cur", + "ious" + ], + [ + "▁Buck", + "ingham" + ], + [ + "f", + "i" + ], + [ + "▁W", + "i" + ], + [ + "op", + "ia" + ], + [ + "▁ga", + "d" + ], + [ + "▁g", + "ad" + ], + [ + "▁wa", + "g" + ], + [ + "▁w", + "ag" + ], + [ + "▁Den", + "t" + ], + [ + "▁De", + "nt" + ], + [ + "▁D", + "ent" + ], + [ + "▁cor", + "ros" + ], + [ + "onst", + "ruction" + ], + [ + "▁Cret", + "aceous" + ], + [ + "▁disast", + "rous" + ], + [ + "ed", + "o" + ], + [ + "e", + "do" + ], + [ + "▁s", + "è" + ], + [ + "ri", + "ye" + ], + [ + "▁ev", + "olve" + ], + [ + "▁Vlad", + "imir" + ], + [ + "▁attract", + "ing" + ], + [ + "las", + "s" + ], + [ + "la", + "ss" + ], + [ + "l", + "ass" + ], + [ + "▁trav", + "ers" + ], + [ + "▁tra", + "vers" + ], + [ + "▁tr", + "avers" + ], + [ + "▁disapp", + "ro" + ], + [ + "▁mis", + "under" + ], + [ + "▁Element", + "ary" + ], + [ + "amb", + "a" + ], + [ + "am", + "ba" + ], + [ + "▁fit", + "s" + ], + [ + "▁fi", + "ts" + ], + [ + "▁f", + "its" + ], + [ + "▁", + "fits" + ], + [ + "▁trans", + "m" + ], + [ + "▁tran", + "sm" + ], + [ + "▁Guerr", + "ero" + ], + [ + "▁consolid", + "ated" + ], + [ + "▁ass", + "im" + ], + [ + "▁lion", + "s" + ], + [ + "▁li", + "ons" + ], + [ + "▁l", + "ions" + ], + [ + "▁ed", + "ible" + ], + [ + "▁Hast", + "ings" + ], + [ + "▁backward", + "s" + ], + [ + "▁back", + "wards" + ], + [ + "▁ant", + "agonist" + ], + [ + "lor", + "d" + ], + [ + "lo", + "rd" + ], + [ + "l", + "ord" + ], + [ + "▁ha", + "y" + ], + [ + "▁h", + "ay" + ], + [ + "▁por", + "n" + ], + [ + "▁p", + "orn" + ], + [ + "▁spring", + "s" + ], + [ + "▁spr", + "ings" + ], + [ + "▁Azerbai", + "jan" + ], + [ + "N", + "o" + ], + [ + "ko", + "n" + ], + [ + "k", + "on" + ], + [ + "iba", + "n" + ], + [ + "ib", + "an" + ], + [ + "i", + "ban" + ], + [ + "pen", + "d" + ], + [ + "pe", + "nd" + ], + [ + "p", + "end" + ], + [ + "ste", + "p" + ], + [ + "st", + "ep" + ], + [ + "▁Tom", + "b" + ], + [ + "▁To", + "mb" + ], + [ + "▁T", + "omb" + ], + [ + "▁sea", + "b" + ], + [ + "▁se", + "ab" + ], + [ + "head", + "ed" + ], + [ + "hea", + "ded" + ], + [ + "he", + "aded" + ], + [ + "▁lin", + "ing" + ], + [ + "▁li", + "ning" + ], + [ + "▁l", + "ining" + ], + [ + "▁", + "lining" + ], + [ + "ma", + "y" + ], + [ + "m", + "ay" + ], + [ + "▁Oak", + "land" + ], + [ + "▁Hein", + "rich" + ], + [ + "ila", + "ted" + ], + [ + "il", + "ated" + ], + [ + "ound", + "ing" + ], + [ + "oun", + "ding" + ], + [ + "▁peas", + "ants" + ], + [ + "▁uniform", + "s" + ], + [ + "▁Glou", + "cester" + ], + [ + "▁vulner", + "ability" + ], + [ + "rit", + "ies" + ], + [ + "ri", + "ties" + ], + [ + "r", + "ities" + ], + [ + "▁lit", + "ter" + ], + [ + "▁l", + "itter" + ], + [ + "▁Tow", + "ards" + ], + [ + "▁To", + "wards" + ], + [ + "▁l", + "umber" + ], + [ + "▁psych", + "ed" + ], + [ + "▁psy", + "ched" + ], + [ + "▁suspic", + "ion" + ], + [ + "▁Di", + "ệ" + ], + [ + "▁P", + "ablo" + ], + [ + "▁en", + "erg" + ], + [ + "▁Social", + "ist" + ], + [ + "▁predict", + "ion" + ], + [ + "▁pred", + "iction" + ], + [ + "▁calc", + "ulation" + ], + [ + "una", + "l" + ], + [ + "un", + "al" + ], + [ + "u", + "nal" + ], + [ + "▁Ex", + "erc" + ], + [ + "▁eth", + "anol" + ], + [ + "▁keyboard", + "s" + ], + [ + "▁key", + "boards" + ], + [ + "▁select", + "ive" + ], + [ + "▁sel", + "ective" + ], + [ + "▁Ferr", + "y" + ], + [ + "▁Fer", + "ry" + ], + [ + "▁Corn", + "er" + ], + [ + "▁Cor", + "ner" + ], + [ + "▁diss", + "ent" + ], + [ + "▁Tasman", + "ia" + ], + [ + "arb", + "on" + ], + [ + "ar", + "bon" + ], + [ + "▁Diệ", + "m" + ], + [ + "▁here", + "d" + ], + [ + "▁her", + "ed" + ], + [ + "▁he", + "red" + ], + [ + "▁h", + "ered" + ], + [ + "▁", + "hered" + ], + [ + "▁hum", + "our" + ], + [ + "▁yield", + "ed" + ], + [ + "▁towns", + "hip" + ], + [ + "▁town", + "ship" + ], + [ + "B", + "e" + ], + [ + "itis", + "m" + ], + [ + "iti", + "sm" + ], + [ + "it", + "ism" + ], + [ + "umb", + "ent" + ], + [ + "▁Loc", + "ated" + ], + [ + "▁L", + "ocated" + ], + [ + "▁Spe", + "aker" + ], + [ + "▁genera", + "tor" + ], + [ + "▁gener", + "ator" + ], + [ + "▁gene", + "rator" + ], + [ + "▁Ma", + "u" + ], + [ + "▁M", + "au" + ], + [ + "▁til", + "es" + ], + [ + "▁ti", + "les" + ], + [ + "▁t", + "iles" + ], + [ + "▁le", + "isure" + ], + [ + "▁Isabel", + "la" + ], + [ + "▁Isab", + "ella" + ], + [ + "▁Tradition", + "al" + ], + [ + "▁u", + "mb" + ], + [ + "▁", + "umb" + ], + [ + "▁stal", + "k" + ], + [ + "▁st", + "alk" + ], + [ + "▁wh", + "olly" + ], + [ + "▁Commer", + "ce" + ], + [ + "os", + "l" + ], + [ + "o", + "sl" + ], + [ + "▁Rou", + "s" + ], + [ + "▁Ro", + "us" + ], + [ + "▁R", + "ous" + ], + [ + "let", + "ion" + ], + [ + "▁Not", + "re" + ], + [ + "▁No", + "tre" + ], + [ + "▁tablet", + "s" + ], + [ + "▁table", + "ts" + ], + [ + "▁tab", + "lets" + ], + [ + "▁aux", + "iliary" + ], + [ + "▁express", + "es" + ], + [ + "▁exp", + "resses" + ], + [ + "ca", + "l" + ], + [ + "c", + "al" + ], + [ + "iz", + "oph" + ], + [ + "▁over", + "c" + ], + [ + "▁ov", + "erc" + ], + [ + "light", + "en" + ], + [ + "olution", + "s" + ], + [ + "ol", + "utions" + ], + [ + "▁sevent", + "y" + ], + [ + "▁seven", + "ty" + ], + [ + "indergart", + "en" + ], + [ + "▁recruit", + "ing" + ], + [ + "▁recru", + "iting" + ], + [ + "▁cooper", + "ative" + ], + [ + "thm", + "s" + ], + [ + "th", + "ms" + ], + [ + "▁Ha", + "pp" + ], + [ + "▁H", + "app" + ], + [ + "arette", + "s" + ], + [ + "aret", + "tes" + ], + [ + "are", + "ttes" + ], + [ + "ar", + "ettes" + ], + [ + "▁circ", + "ulated" + ], + [ + "▁des", + "k" + ], + [ + "▁de", + "sk" + ], + [ + "▁Rou", + "gh" + ], + [ + "▁R", + "ough" + ], + [ + "▁outdoor", + "s" + ], + [ + "▁out", + "doors" + ], + [ + "▁conf", + "using" + ], + [ + "▁spont", + "aneous" + ], + [ + "▁transport", + "s" + ], + [ + "▁transp", + "orts" + ], + [ + "▁trans", + "ports" + ], + [ + "▁in", + "appropriate" + ], + [ + "st", + "a" + ], + [ + "s", + "ta" + ], + [ + "el", + "man" + ], + [ + "▁she", + "r" + ], + [ + "▁sh", + "er" + ], + [ + "▁s", + "her" + ], + [ + "▁Ali", + "en" + ], + [ + "▁Al", + "ien" + ], + [ + "▁bell", + "y" + ], + [ + "▁bel", + "ly" + ], + [ + "▁b", + "elly" + ], + [ + "▁viv", + "id" + ], + [ + "▁v", + "ivid" + ], + [ + "▁Antarctic", + "a" + ], + [ + "▁Antar", + "ctica" + ], + [ + "▁arch", + "bishop" + ], + [ + "▁oblig", + "ation" + ], + [ + "▁obl", + "igation" + ], + [ + "us", + "a" + ], + [ + "u", + "sa" + ], + [ + "▁AC", + "C" + ], + [ + "▁A", + "CC" + ], + [ + "▁McC", + "l" + ], + [ + "▁Mc", + "Cl" + ], + [ + "▁ti", + "re" + ], + [ + "▁t", + "ire" + ], + [ + "▁abb", + "ey" + ], + [ + "▁ideal", + "s" + ], + [ + "▁idea", + "ls" + ], + [ + "▁ide", + "als" + ], + [ + "▁ob", + "solete" + ], + [ + "▁expect", + "ing" + ], + [ + "▁film", + "makers" + ], + [ + "ò", + "k" + ], + [ + "▁In", + "g" + ], + [ + "▁I", + "ng" + ], + [ + "▁zo", + "o" + ], + [ + "▁z", + "oo" + ], + [ + "▁Am", + "or" + ], + [ + "▁gl", + "ad" + ], + [ + "▁Bre", + "at" + ], + [ + "▁B", + "reat" + ], + [ + "▁imm", + "in" + ], + [ + "▁im", + "min" + ], + [ + "▁Julie", + "n" + ], + [ + "▁Jul", + "ien" + ], + [ + "▁person", + "a" + ], + [ + "▁pers", + "ona" + ], + [ + "▁disrupt", + "ion" + ], + [ + "▁dis", + "ruption" + ], + [ + "no", + "n" + ], + [ + "n", + "on" + ], + [ + "▁Mos", + "s" + ], + [ + "▁Mo", + "ss" + ], + [ + "▁M", + "oss" + ], + [ + "▁ser", + "m" + ], + [ + "▁se", + "rm" + ], + [ + "▁s", + "erm" + ], + [ + "▁Jenn", + "y" + ], + [ + "▁Jen", + "ny" + ], + [ + "▁J", + "enny" + ], + [ + "▁Vinc", + "e" + ], + [ + "▁Vin", + "ce" + ], + [ + "▁Vi", + "nce" + ], + [ + "▁V", + "ince" + ], + [ + "▁gran", + "ite" + ], + [ + "▁adopt", + "ing" + ], + [ + "▁adop", + "ting" + ], + [ + "▁Alexand", + "ra" + ], + [ + "▁Alex", + "andra" + ], + [ + "▁discom", + "fort" + ], + [ + "▁prop", + "ulsion" + ], + [ + "▁Wrestle", + "Mania" + ], + [ + "▁Hem", + "ing" + ], + [ + "▁He", + "ming" + ], + [ + "▁margin", + "s" + ], + [ + "▁marg", + "ins" + ], + [ + "▁mar", + "gins" + ], + [ + "▁air", + "plane" + ], + [ + "▁municipal", + "ities" + ], + [ + "▁municip", + "alities" + ], + [ + "▁Fl", + "ow" + ], + [ + "▁F", + "low" + ], + [ + "▁Cap", + "com" + ], + [ + "▁Convers", + "ely" + ], + [ + "▁assumption", + "s" + ], + [ + "▁assum", + "ptions" + ], + [ + "▁Mer", + "ed" + ], + [ + "▁Me", + "red" + ], + [ + "▁M", + "ered" + ], + [ + "▁mission", + "ary" + ], + [ + "gue", + "z" + ], + [ + "gu", + "ez" + ], + [ + "g", + "uez" + ], + [ + "▁NO", + "T" + ], + [ + "▁N", + "OT" + ], + [ + "erm", + "at" + ], + [ + "er", + "mat" + ], + [ + "uss", + "els" + ], + [ + "▁Abb", + "as" + ], + [ + "izoph", + "ren" + ], + [ + "▁work", + "force" + ], + [ + "▁div", + "ètisman" + ], + [ + "▁Represent", + "ative" + ], + [ + "op", + "t" + ], + [ + "o", + "pt" + ], + [ + "enn", + "a" + ], + [ + "en", + "na" + ], + [ + "▁jump", + "ed" + ], + [ + "▁Hard", + "ing" + ], + [ + "▁Har", + "ding" + ], + [ + "▁plantation", + "s" + ], + [ + "▁plant", + "ations" + ], + [ + "▁consult", + "ation" + ], + [ + "▁demonst", + "rating" + ], + [ + "sch", + "e" + ], + [ + "sc", + "he" + ], + [ + "s", + "che" + ], + [ + "ici", + "sm" + ], + [ + "ic", + "ism" + ], + [ + "▁Lar", + "s" + ], + [ + "▁La", + "rs" + ], + [ + "▁L", + "ars" + ], + [ + "▁toile", + "t" + ], + [ + "▁Exper", + "ience" + ], + [ + "▁discipline", + "s" + ], + [ + "▁discipl", + "ines" + ], + [ + "▁discip", + "lines" + ], + [ + "oz", + "o" + ], + [ + "o", + "zo" + ], + [ + "▁sh", + "y" + ], + [ + "▁s", + "hy" + ], + [ + "▁st", + "al" + ], + [ + "▁s", + "tal" + ], + [ + "▁2012", + "." + ], + [ + "▁201", + "2." + ], + [ + "▁abb", + "re" + ], + [ + "▁ab", + "bre" + ], + [ + "▁Fr", + "inge" + ], + [ + "▁F", + "ringe" + ], + [ + "▁Trans", + "it" + ], + [ + "▁prem", + "ium" + ], + [ + "▁pre", + "mium" + ], + [ + "▁explo", + "ded" + ], + [ + "▁expl", + "oded" + ], + [ + "▁marking", + "s" + ], + [ + "▁mark", + "ings" + ], + [ + "▁reson", + "ance" + ], + [ + "▁consult", + "ing" + ], + [ + "▁B", + "R" + ], + [ + "see", + "n" + ], + [ + "se", + "en" + ], + [ + "s", + "een" + ], + [ + "led", + "on" + ], + [ + "le", + "don" + ], + [ + "rop", + "ic" + ], + [ + "r", + "opic" + ], + [ + "▁Her", + "ze" + ], + [ + "▁Yank", + "ovic" + ], + [ + "▁grant", + "ing" + ], + [ + "▁gran", + "ting" + ], + [ + "▁migr", + "ants" + ], + [ + "▁mig", + "rants" + ], + [ + "▁m", + "igrants" + ], + [ + "▁collabor", + "ative" + ], + [ + "▁A", + "G" + ], + [ + "▁Ru", + "le" + ], + [ + "▁R", + "ule" + ], + [ + "▁frog", + "s" + ], + [ + "▁fro", + "gs" + ], + [ + "▁fr", + "ogs" + ], + [ + "▁pup", + "il" + ], + [ + "▁brand", + "s" + ], + [ + "▁bran", + "ds" + ], + [ + "▁br", + "ands" + ], + [ + "▁Belie", + "ve" + ], + [ + "▁ins", + "cribed" + ], + [ + "▁2010", + "," + ], + [ + "▁Old", + "ham" + ], + [ + "▁Report", + "s" + ], + [ + "▁Rep", + "orts" + ], + [ + "▁Re", + "ports" + ], + [ + "▁conced", + "ed" + ], + [ + "▁conce", + "ded" + ], + [ + "▁conc", + "eded" + ], + [ + "▁summon", + "ed" + ], + [ + "▁summ", + "oned" + ], + [ + "▁recogn", + "ise" + ], + [ + "▁con", + "gestion" + ], + [ + "▁bi", + "z" + ], + [ + "▁b", + "iz" + ], + [ + "▁bo", + "r" + ], + [ + "▁b", + "or" + ], + [ + "▁", + "bor" + ], + [ + "▁h", + "ij" + ], + [ + "▁Mit", + "s" + ], + [ + "▁Mi", + "ts" + ], + [ + "▁M", + "its" + ], + [ + "▁arch", + "es" + ], + [ + "▁arc", + "hes" + ], + [ + "▁ar", + "ches" + ], + [ + "▁poll", + "ut" + ], + [ + "▁Chamber", + "s" + ], + [ + "▁Cham", + "bers" + ], + [ + "▁Ch", + "ambers" + ], + [ + "▁What", + "ever" + ], + [ + "▁Wh", + "atever" + ], + [ + "▁label", + "led" + ], + [ + "▁lab", + "elled" + ], + [ + "▁capital", + "ism" + ], + [ + "▁respond", + "ing" + ], + [ + "▁br", + "u" + ], + [ + "▁b", + "ru" + ], + [ + "iet", + "al" + ], + [ + "ie", + "tal" + ], + [ + "alf", + "ord" + ], + [ + "al", + "ford" + ], + [ + "▁Conc", + "ert" + ], + [ + "▁ec", + "ology" + ], + [ + "▁ren", + "dition" + ], + [ + "▁administ", + "er" + ], + [ + "▁admin", + "ister" + ], + [ + "ka", + "r" + ], + [ + "k", + "ar" + ], + [ + "blem", + "s" + ], + [ + "ble", + "ms" + ], + [ + "bl", + "ems" + ], + [ + "rí", + "guez" + ], + [ + "▁Ab", + "ove" + ], + [ + "▁Fel", + "ix" + ], + [ + "▁Rey", + "es" + ], + [ + "▁un", + "int" + ], + [ + "igr", + "ated" + ], + [ + "ig", + "rated" + ], + [ + "▁as", + "leep" + ], + [ + "▁des", + "imal" + ], + [ + "▁chlor", + "ide" + ], + [ + "▁mar", + "ijuana" + ], + [ + "▁indirect", + "ly" + ], + [ + "▁recognize", + "s" + ], + [ + "▁recogn", + "izes" + ], + [ + "▁dissip", + "ating" + ], + [ + "ten", + "e" + ], + [ + "te", + "ne" + ], + [ + "t", + "ene" + ], + [ + "ida", + "ble" + ], + [ + "id", + "able" + ], + [ + "▁Ver", + "de" + ], + [ + "▁Zh", + "ang" + ], + [ + "▁myth", + "s" + ], + [ + "▁my", + "ths" + ], + [ + "ien", + "cies" + ], + [ + "i", + "encies" + ], + [ + "▁Berg", + "en" + ], + [ + "▁Ber", + "gen" + ], + [ + "▁He", + "ights" + ], + [ + "exp", + "l" + ], + [ + "ex", + "pl" + ], + [ + "gon", + "e" + ], + [ + "go", + "ne" + ], + [ + "g", + "one" + ], + [ + "▁Gw", + "en" + ], + [ + "▁G", + "wen" + ], + [ + "▁Est", + "on" + ], + [ + "▁Es", + "ton" + ], + [ + "▁E", + "ston" + ], + [ + "▁No", + "lan" + ], + [ + "▁N", + "olan" + ], + [ + "▁Pl", + "ain" + ], + [ + "▁P", + "lain" + ], + [ + "▁arr", + "ow" + ], + [ + "▁ar", + "row" + ], + [ + "▁route", + "d" + ], + [ + "▁rout", + "ed" + ], + [ + "▁rou", + "ted" + ], + [ + "▁ro", + "uted" + ], + [ + "▁r", + "outed" + ], + [ + "▁sure", + "ly" + ], + [ + "▁sur", + "ely" + ], + [ + "▁dign", + "ity" + ], + [ + "▁Mered", + "ith" + ], + [ + "imo", + "n" + ], + [ + "im", + "on" + ], + [ + "i", + "mon" + ], + [ + "▁Rh", + "y" + ], + [ + "▁R", + "hy" + ], + [ + "▁Te", + "t" + ], + [ + "▁T", + "et" + ], + [ + "▁flo", + "at" + ], + [ + "▁potato", + "es" + ], + [ + "▁pot", + "atoes" + ], + [ + "oph", + "e" + ], + [ + "op", + "he" + ], + [ + "que", + "l" + ], + [ + "qu", + "el" + ], + [ + "q", + "uel" + ], + [ + "▁kit", + "s" + ], + [ + "▁ki", + "ts" + ], + [ + "▁k", + "its" + ], + [ + "▁pay", + "s" + ], + [ + "▁pa", + "ys" + ], + [ + "▁p", + "ays" + ], + [ + "▁Isab", + "el" + ], + [ + "▁Isa", + "bel" + ], + [ + "▁Is", + "abel" + ], + [ + "5", + "6" + ], + [ + "sh", + "i" + ], + [ + "s", + "hi" + ], + [ + "▁Ka", + "u" + ], + [ + "▁K", + "au" + ], + [ + "amo", + "ur" + ], + [ + "am", + "our" + ], + [ + "a", + "mour" + ], + [ + "▁rise", + "n" + ], + [ + "▁ris", + "en" + ], + [ + "▁ri", + "sen" + ], + [ + "▁r", + "isen" + ], + [ + "▁elephant", + "s" + ], + [ + "▁eleph", + "ants" + ], + [ + "lo", + "o" + ], + [ + "l", + "oo" + ], + [ + "rage", + "d" + ], + [ + "rag", + "ed" + ], + [ + "ra", + "ged" + ], + [ + "r", + "aged" + ], + [ + "▁Kam", + "p" + ], + [ + "▁Ka", + "mp" + ], + [ + "▁K", + "amp" + ], + [ + "▁vac", + "ant" + ], + [ + "▁indic", + "ator" + ], + [ + "▁Po", + "mp" + ], + [ + "▁P", + "omp" + ], + [ + "▁eth", + "n" + ], + [ + "▁et", + "hn" + ], + [ + "▁Tit", + "le" + ], + [ + "▁Ti", + "tle" + ], + [ + "▁doubt", + "s" + ], + [ + "▁doub", + "ts" + ], + [ + "▁pre", + "hist" + ], + [ + "▁supervis", + "ed" + ], + [ + "▁superv", + "ised" + ], + [ + ".", + "4" + ], + [ + "d", + "d" + ], + [ + "ore", + "m" + ], + [ + "or", + "em" + ], + [ + "o", + "rem" + ], + [ + "mar", + "ine" + ], + [ + "ma", + "rine" + ], + [ + "m", + "arine" + ], + [ + "▁Victor", + "y" + ], + [ + "▁Vict", + "ory" + ], + [ + "▁Vi", + "ctory" + ], + [ + "▁assume", + "s" + ], + [ + "▁assum", + "es" + ], + [ + "▁ass", + "umes" + ], + [ + "▁reconstruct", + "ed" + ], + [ + "▁13", + "2" + ], + [ + "▁1", + "32" + ], + [ + "▁She", + "ar" + ], + [ + "▁Sh", + "ear" + ], + [ + "▁Artist", + "s" + ], + [ + "▁Art", + "ists" + ], + [ + "▁Rod", + "ríguez" + ], + [ + "▁Cop", + "enhagen" + ], + [ + "▁Am", + "er" + ], + [ + "▁A", + "mer" + ], + [ + "▁Dar", + "ren" + ], + [ + "udi", + "ng" + ], + [ + "ud", + "ing" + ], + [ + "u", + "ding" + ], + [ + "▁det", + "r" + ], + [ + "▁de", + "tr" + ], + [ + "▁lam", + "p" + ], + [ + "▁la", + "mp" + ], + [ + "▁l", + "amp" + ], + [ + "umble", + "d" + ], + [ + "umb", + "led" + ], + [ + "▁arrang", + "e" + ], + [ + "▁arr", + "ange" + ], + [ + "▁ar", + "range" + ], + [ + "▁ambit", + "ion" + ], + [ + "▁amb", + "ition" + ], + [ + "▁sixteen", + "th" + ], + [ + "▁six", + "teenth" + ], + [ + "▁peripher", + "al" + ], + [ + "▁confirm", + "ation" + ], + [ + "ern", + "er" + ], + [ + "er", + "ner" + ], + [ + "▁Gand", + "hi" + ], + [ + "▁Typ", + "ically" + ], + [ + "ev", + "o" + ], + [ + "e", + "vo" + ], + [ + "▁184", + "4" + ], + [ + "▁18", + "44" + ], + [ + "▁Fon", + "t" + ], + [ + "▁Fo", + "nt" + ], + [ + "▁F", + "ont" + ], + [ + "▁her", + "d" + ], + [ + "▁he", + "rd" + ], + [ + "▁", + "herd" + ], + [ + "▁Shan", + "ghai" + ], + [ + "▁numer", + "ical" + ], + [ + "▁o", + "mn" + ], + [ + "▁Coast", + "al" + ], + [ + "▁patron", + "age" + ], + [ + "▁perfect", + "ion" + ], + [ + "▁perf", + "ection" + ], + [ + "obi", + "a" + ], + [ + "ob", + "ia" + ], + [ + "▁300", + "0" + ], + [ + "▁30", + "00" + ], + [ + "▁3", + "000" + ], + [ + "▁disp", + "ro" + ], + [ + "▁dis", + "pro" + ], + [ + "▁differ", + "ing" + ], + [ + "▁diff", + "ering" + ], + [ + "▁un", + "official" + ], + [ + "▁Oppen", + "heimer" + ], + [ + "▁alter", + "ations" + ], + [ + "▁cancell", + "ation" + ], + [ + "▁cancel", + "lation" + ], + [ + "▁canc", + "ellation" + ], + [ + "abe", + "l" + ], + [ + "ab", + "el" + ], + [ + "a", + "bel" + ], + [ + "str", + "u" + ], + [ + "st", + "ru" + ], + [ + "▁Hy", + "p" + ], + [ + "▁H", + "yp" + ], + [ + "▁SM", + "S" + ], + [ + "▁S", + "MS" + ], + [ + "▁Bre", + "t" + ], + [ + "▁Br", + "et" + ], + [ + "▁B", + "ret" + ], + [ + "▁Th", + "ous" + ], + [ + "▁T", + "hous" + ], + [ + "▁seal", + "s" + ], + [ + "▁sea", + "ls" + ], + [ + "▁se", + "als" + ], + [ + "▁Street", + "s" + ], + [ + "▁Stre", + "ets" + ], + [ + "▁stain", + "ed" + ], + [ + "▁st", + "ained" + ], + [ + "▁s", + "tained" + ], + [ + "▁segreg", + "ation" + ], + [ + "▁Sta", + "y" + ], + [ + "▁St", + "ay" + ], + [ + "osure", + "s" + ], + [ + "os", + "ures" + ], + [ + "▁bats", + "men" + ], + [ + "▁pump", + "s" + ], + [ + "▁p", + "umps" + ], + [ + "▁prove", + "s" + ], + [ + "▁prov", + "es" + ], + [ + "▁pro", + "ves" + ], + [ + "▁pr", + "oves" + ], + [ + "▁year", + "ly" + ], + [ + "▁Andrew", + "s" + ], + [ + "▁And", + "rews" + ], + [ + "▁sen", + "ator" + ], + [ + "uls", + "e" + ], + [ + "ul", + "se" + ], + [ + "▁Sav", + "e" + ], + [ + "▁Sa", + "ve" + ], + [ + "▁S", + "ave" + ], + [ + "▁tur", + "tle" + ], + [ + "child", + "ren" + ], + [ + "iv", + "o" + ], + [ + "i", + "vo" + ], + [ + "▁Rit", + "a" + ], + [ + "▁Ri", + "ta" + ], + [ + "▁R", + "ita" + ], + [ + "▁fun", + "nel" + ], + [ + "▁up", + "ward" + ], + [ + "▁pil", + "grim" + ], + [ + "▁premise", + "s" + ], + [ + "▁prem", + "ises" + ], + [ + "▁AR", + "IA" + ], + [ + "▁Bi", + "sm" + ], + [ + "▁B", + "ism" + ], + [ + "▁aim", + "ing" + ], + [ + "▁lam", + "ent" + ], + [ + "▁la", + "ment" + ], + [ + "▁l", + "ament" + ], + [ + "▁noble", + "s" + ], + [ + "▁nob", + "les" + ], + [ + "▁fertil", + "e" + ], + [ + "▁fert", + "ile" + ], + [ + "▁engineer", + "ed" + ], + [ + "▁engine", + "ered" + ], + [ + "▁renov", + "ation" + ], + [ + "▁astron", + "omical" + ], + [ + "lo", + "g" + ], + [ + "l", + "og" + ], + [ + "ida", + "s" + ], + [ + "id", + "as" + ], + [ + "ph", + "is" + ], + [ + "p", + "his" + ], + [ + "ér", + "ie" + ], + [ + "é", + "rie" + ], + [ + "▁appe", + "nd" + ], + [ + "▁app", + "end" + ], + [ + "▁ap", + "pend" + ], + [ + "▁incl", + "ined" + ], + [ + "▁inc", + "lined" + ], + [ + "▁melod", + "ies" + ], + [ + "▁mel", + "odies" + ], + [ + "agu", + "a" + ], + [ + "ag", + "ua" + ], + [ + "▁Thor", + "pe" + ], + [ + "▁Th", + "orpe" + ], + [ + "▁E", + "g" + ], + [ + "▁C", + "edar" + ], + [ + "▁Go", + "ing" + ], + [ + "▁backs", + "t" + ], + [ + "▁back", + "st" + ], + [ + "▁s", + "acked" + ], + [ + "▁memb", + "ran" + ], + [ + "▁recipe", + "s" + ], + [ + "▁recip", + "es" + ], + [ + "▁rec", + "ipes" + ], + [ + "▁activ", + "ation" + ], + [ + "▁act", + "ivation" + ], + [ + "▁correl", + "ation" + ], + [ + "▁vent", + "ilation" + ], + [ + "▁Matem", + "atisyen" + ], + [ + "po", + "s" + ], + [ + "p", + "os" + ], + [ + "mon", + "s" + ], + [ + "mo", + "ns" + ], + [ + "m", + "ons" + ], + [ + "▁Te", + "k" + ], + [ + "▁T", + "ek" + ], + [ + "orm", + "an" + ], + [ + "or", + "man" + ], + [ + "▁177", + "6" + ], + [ + "▁17", + "76" + ], + [ + "▁Co", + "ff" + ], + [ + "▁C", + "off" + ], + [ + "▁era", + "d" + ], + [ + "▁er", + "ad" + ], + [ + "▁e", + "rad" + ], + [ + "▁life", + "sp" + ], + [ + "▁lif", + "esp" + ], + [ + "▁Publ", + "ished" + ], + [ + "▁P", + "ublished" + ], + [ + "▁non", + "s" + ], + [ + "▁no", + "ns" + ], + [ + "▁n", + "ons" + ], + [ + "Go", + "ogle" + ], + [ + "▁mag", + "ist" + ], + [ + "▁sil", + "icon" + ], + [ + "▁tight", + "ly" + ], + [ + "▁Ext", + "ension" + ], + [ + "▁Ex", + "tension" + ], + [ + "w", + "y" + ], + [ + "▁Op", + "t" + ], + [ + "▁O", + "pt" + ], + [ + "▁at", + "e" + ], + [ + "▁a", + "te" + ], + [ + "▁", + "ate" + ], + [ + "▁Garc", + "ia" + ], + [ + "▁Gar", + "cia" + ], + [ + "▁Med", + "ieval" + ], + [ + "▁suspic", + "ious" + ], + [ + "▁susp", + "icious" + ], + [ + "▁trav", + "ay" + ], + [ + "▁Ep", + "isode" + ], + [ + "▁attrib", + "ute" + ], + [ + "car", + "d" + ], + [ + "ca", + "rd" + ], + [ + "c", + "ard" + ], + [ + "▁Le", + "ip" + ], + [ + "▁ende", + "av" + ], + [ + "On", + "e" + ], + [ + "O", + "ne" + ], + [ + "aye", + "d" + ], + [ + "ay", + "ed" + ], + [ + "▁pit", + "s" + ], + [ + "▁pi", + "ts" + ], + [ + "▁p", + "its" + ], + [ + "▁spr", + "int" + ], + [ + "▁s", + "print" + ], + [ + "▁barrel", + "s" + ], + [ + "▁bar", + "rels" + ], + [ + "▁Part", + "icip" + ], + [ + "▁Mans", + "field" + ], + [ + "▁employ", + "ing" + ], + [ + "▁fund", + "ament" + ], + [ + "T", + "e" + ], + [ + "▁Ha", + "ck" + ], + [ + "▁H", + "ack" + ], + [ + "▁J", + "ill" + ], + [ + "▁box", + "ing" + ], + [ + "▁Fore", + "ver" + ], + [ + "▁For", + "ever" + ], + [ + "▁coast", + "er" + ], + [ + "▁co", + "aster" + ], + [ + "▁half", + "way" + ], + [ + "▁seizure", + "s" + ], + [ + "▁seiz", + "ures" + ], + [ + "▁strand", + "ed" + ], + [ + "▁str", + "anded" + ], + [ + "imens", + "ional" + ], + [ + "▁Second", + "ary" + ], + [ + "▁T", + "B" + ], + [ + "oco", + "cc" + ], + [ + "oc", + "occ" + ], + [ + "▁Pe", + "ak" + ], + [ + "▁ven", + "d" + ], + [ + "▁ve", + "nd" + ], + [ + "▁v", + "end" + ], + [ + "▁Pit", + "ch" + ], + [ + "▁P", + "itch" + ], + [ + "le", + "ading" + ], + [ + "▁hydro", + "x" + ], + [ + "▁hyd", + "rox" + ], + [ + "▁propos", + "e" + ], + [ + "▁prop", + "ose" + ], + [ + "▁holiday", + "s" + ], + [ + "▁hol", + "idays" + ], + [ + "▁vac", + "ation" + ], + [ + "▁Pres", + "byter" + ], + [ + "est", + "a" + ], + [ + "es", + "ta" + ], + [ + "e", + "sta" + ], + [ + "▁mon", + "k" + ], + [ + "▁prospect", + "s" + ], + [ + "▁prosp", + "ects" + ], + [ + "▁excavation", + "s" + ], + [ + "▁excav", + "ations" + ], + [ + "▁183", + "7" + ], + [ + "▁18", + "37" + ], + [ + "▁Stew", + "ie" + ], + [ + "▁indu", + "ce" + ], + [ + "▁ind", + "uce" + ], + [ + "▁father", + "s" + ], + [ + "▁fat", + "hers" + ], + [ + "▁termin", + "ated" + ], + [ + "▁term", + "inated" + ], + [ + "▁rein", + "st" + ], + [ + "▁Qual", + "ity" + ], + [ + "▁Qu", + "ality" + ], + [ + "▁antib", + "ody" + ], + [ + "▁anti", + "body" + ], + [ + "▁objection", + "s" + ], + [ + "▁object", + "ions" + ], + [ + "Q", + "u" + ], + [ + "anie", + "l" + ], + [ + "ani", + "el" + ], + [ + "an", + "iel" + ], + [ + "▁recycl", + "ed" + ], + [ + "▁Prov", + "idence" + ], + [ + "▁worm", + "s" + ], + [ + "▁wor", + "ms" + ], + [ + "▁w", + "orms" + ], + [ + "▁Carm", + "en" + ], + [ + "▁Car", + "men" + ], + [ + "▁infl", + "ict" + ], + [ + "▁in", + "flict" + ], + [ + "▁German", + "ic" + ], + [ + "▁Germ", + "anic" + ], + [ + "▁Mo", + "or" + ], + [ + "▁M", + "oor" + ], + [ + "án", + "chez" + ], + [ + "▁car", + "ing" + ], + [ + "▁ca", + "ring" + ], + [ + "▁c", + "aring" + ], + [ + "▁open", + "er" + ], + [ + "▁car", + "riage" + ], + [ + "▁inequ", + "ality" + ], + [ + "▁liber", + "ation" + ], + [ + "▁lib", + "eration" + ], + [ + "inc", + "h" + ], + [ + "in", + "ch" + ], + [ + "▁Pi", + "r" + ], + [ + "▁P", + "ir" + ], + [ + "▁defend", + "ant" + ], + [ + "N", + "G" + ], + [ + "▁Tol", + "k" + ], + [ + "▁T", + "olk" + ], + [ + "▁med", + "ley" + ], + [ + "▁Leg", + "al" + ], + [ + "▁Le", + "gal" + ], + [ + "▁Berg", + "er" + ], + [ + "▁Ber", + "ger" + ], + [ + "▁or", + "phan" + ], + [ + "▁horiz", + "on" + ], + [ + "▁Leonard", + "o" + ], + [ + "▁Leon", + "ardo" + ], + [ + "▁volcano", + "es" + ], + [ + "▁volcan", + "oes" + ], + [ + "▁G", + "R" + ], + [ + "ars", + "e" + ], + [ + "ar", + "se" + ], + [ + "▁Web", + "b" + ], + [ + "▁We", + "bb" + ], + [ + "▁humor", + "ous" + ], + [ + "▁hum", + "orous" + ], + [ + "▁Su", + "t" + ], + [ + "▁S", + "ut" + ], + [ + "▁Lock", + "e" + ], + [ + "▁Loc", + "ke" + ], + [ + "▁Lo", + "cke" + ], + [ + "▁pest", + "s" + ], + [ + "▁pe", + "sts" + ], + [ + "▁p", + "ests" + ], + [ + "▁Inf", + "orm" + ], + [ + "▁In", + "form" + ], + [ + "▁David", + "son" + ], + [ + "la", + "s" + ], + [ + "l", + "as" + ], + [ + "▁B", + "A" + ], + [ + "▁", + "BA" + ], + [ + "g", + "irl" + ], + [ + "▁Ki", + "el" + ], + [ + "▁K", + "iel" + ], + [ + "▁Dix", + "on" + ], + [ + "▁D", + "ixon" + ], + [ + "▁Nav", + "ig" + ], + [ + "▁N", + "avig" + ], + [ + "▁pose", + "s" + ], + [ + "▁pos", + "es" + ], + [ + "▁po", + "ses" + ], + [ + "▁p", + "oses" + ], + [ + "▁employ", + "s" + ], + [ + "▁isot", + "ope" + ], + [ + "▁Program", + "me" + ], + [ + "▁autom", + "ated" + ], + [ + "ig", + "m" + ], + [ + "vi", + "ć" + ], + [ + "v", + "ić" + ], + [ + "ong", + "o" + ], + [ + "on", + "go" + ], + [ + "▁Do", + "t" + ], + [ + "▁D", + "ot" + ], + [ + "▁Li", + "p" + ], + [ + "▁L", + "ip" + ], + [ + "▁Kra", + "k" + ], + [ + "▁Kr", + "ak" + ], + [ + "▁St", + "yle" + ], + [ + "▁Car", + "son" + ], + [ + "▁N", + "D" + ], + [ + "ha", + "ven" + ], + [ + "h", + "aven" + ], + [ + "▁183", + "6" + ], + [ + "▁18", + "36" + ], + [ + "▁Abd", + "ul" + ], + [ + "▁Park", + "inson" + ], + [ + "▁Par", + "kinson" + ], + [ + "▁administ", + "rator" + ], + [ + "ix", + "ed" + ], + [ + "▁node", + "s" + ], + [ + "▁nod", + "es" + ], + [ + "▁no", + "des" + ], + [ + "▁n", + "odes" + ], + [ + "▁h", + "iring" + ], + [ + "▁assert", + "s" + ], + [ + "▁ass", + "erts" + ], + [ + "▁WH", + "O" + ], + [ + "▁W", + "HO" + ], + [ + "▁pe", + "ar" + ], + [ + "▁p", + "ear" + ], + [ + "▁Sey", + "mour" + ], + [ + "▁inver", + "te" + ], + [ + "▁Wor", + "cester" + ], + [ + "▁storyt", + "elling" + ], + [ + "fa", + "x" + ], + [ + "f", + "ax" + ], + [ + "▁3", + "-" + ], + [ + "ova", + "l" + ], + [ + "ov", + "al" + ], + [ + "o", + "val" + ], + [ + "▁bo", + "d" + ], + [ + "▁b", + "od" + ], + [ + "amo", + "to" + ], + [ + "am", + "oto" + ], + [ + "eman", + "n" + ], + [ + "em", + "ann" + ], + [ + "e", + "mann" + ], + [ + "▁De", + "xter" + ], + [ + "▁overl", + "y" + ], + [ + "▁over", + "ly" + ], + [ + "▁rely", + "ing" + ], + [ + "▁rel", + "ying" + ], + [ + "▁re", + "lying" + ], + [ + "▁Traff", + "ord" + ], + [ + "C", + "o" + ], + [ + "▁Hyd", + "e" + ], + [ + "▁Hy", + "de" + ], + [ + "▁UN", + "ESCO" + ], + [ + "▁Review", + "s" + ], + [ + "▁am", + "p" + ], + [ + "▁a", + "mp" + ], + [ + "▁", + "amp" + ], + [ + "▁as", + "ylum" + ], + [ + "▁Film", + "ing" + ], + [ + "▁Fil", + "ming" + ], + [ + "▁Fin", + "ance" + ], + [ + "▁Fi", + "nance" + ], + [ + "▁founder", + "s" + ], + [ + "▁found", + "ers" + ], + [ + "▁fo", + "unders" + ], + [ + "▁spect", + "ral" + ], + [ + "be", + "n" + ], + [ + "b", + "en" + ], + [ + "▁pi", + "c" + ], + [ + "▁p", + "ic" + ], + [ + "▁wa", + "x" + ], + [ + "▁w", + "ax" + ], + [ + "ores", + "c" + ], + [ + "ore", + "sc" + ], + [ + "or", + "esc" + ], + [ + "o", + "resc" + ], + [ + "▁Ni", + "le" + ], + [ + "▁N", + "ile" + ], + [ + "▁physic", + "ist" + ], + [ + "▁with", + "stand" + ], + [ + "▁discharge", + "d" + ], + [ + "▁dischar", + "ged" + ], + [ + "▁Mat", + "s" + ], + [ + "▁Ma", + "ts" + ], + [ + "▁M", + "ats" + ], + [ + "▁lim", + "b" + ], + [ + "▁li", + "mb" + ], + [ + "▁l", + "imb" + ], + [ + "▁Wit", + "ch" + ], + [ + "▁W", + "itch" + ], + [ + "▁Mad", + "anm" + ], + [ + "▁v", + "i" + ], + [ + "▁", + "vi" + ], + [ + "ng", + "el" + ], + [ + "n", + "gel" + ], + [ + "▁do", + "p" + ], + [ + "▁d", + "op" + ], + [ + "▁Bol", + "s" + ], + [ + "▁Bo", + "ls" + ], + [ + "▁B", + "ols" + ], + [ + "▁ba", + "il" + ], + [ + "▁b", + "ail" + ], + [ + "hetic", + "s" + ], + [ + "het", + "ics" + ], + [ + "h", + "etics" + ], + [ + "▁clip", + "s" + ], + [ + "▁cl", + "ips" + ], + [ + "▁papa", + "l" + ], + [ + "▁pap", + "al" + ], + [ + "▁Con", + "rad" + ], + [ + "▁out", + "ward" + ], + [ + "▁penet", + "rate" + ], + [ + "▁subordin", + "ate" + ], + [ + "▁download", + "able" + ], + [ + "oi", + "t" + ], + [ + "o", + "it" + ], + [ + "▁lad", + "der" + ], + [ + "▁l", + "adder" + ], + [ + "▁exp", + "ired" + ], + [ + "▁tre", + "ason" + ], + [ + "▁tr", + "eason" + ], + [ + "▁Arist", + "otle" + ], + [ + "▁assignment", + "s" + ], + [ + "▁assign", + "ments" + ], + [ + "▁14", + "1" + ], + [ + "▁1", + "41" + ], + [ + "▁Line", + "s" + ], + [ + "▁Lin", + "es" + ], + [ + "▁Li", + "nes" + ], + [ + "▁L", + "ines" + ], + [ + "▁therap", + "ies" + ], + [ + "▁Py", + "thon" + ], + [ + "▁Bel", + "arus" + ], + [ + "▁immin", + "ent" + ], + [ + "▁imm", + "inent" + ], + [ + "eri", + "e" + ], + [ + "er", + "ie" + ], + [ + "e", + "rie" + ], + [ + "▁do", + "s" + ], + [ + "▁d", + "os" + ], + [ + "▁Yo", + "sh" + ], + [ + "▁Y", + "osh" + ], + [ + "gov", + "ina" + ], + [ + "▁Ca", + "iro" + ], + [ + "▁C", + "airo" + ], + [ + "contin", + "ental" + ], + [ + "▁color", + "ful" + ], + [ + "▁simpl", + "icity" + ], + [ + "▁", + "Å" + ], + [ + "▁ty", + "ing" + ], + [ + "▁t", + "ying" + ], + [ + "▁nomin", + "ee" + ], + [ + "▁nom", + "inee" + ], + [ + "▁quad", + "rup" + ], + [ + "▁Colon", + "ial" + ], + [ + "▁Col", + "onial" + ], + [ + "▁enjoy", + "ing" + ], + [ + "we", + "ek" + ], + [ + "anta", + "n" + ], + [ + "ant", + "an" + ], + [ + "▁Auto", + "m" + ], + [ + "▁Aut", + "om" + ], + [ + "▁sc", + "ler" + ], + [ + "▁s", + "cler" + ], + [ + "▁pres", + "erving" + ], + [ + "▁Je", + "d" + ], + [ + "▁J", + "ed" + ], + [ + "▁Bo", + "ot" + ], + [ + "▁B", + "oot" + ], + [ + "▁Wi", + "mb" + ], + [ + "▁W", + "imb" + ], + [ + "▁Uk", + "rain" + ], + [ + "▁d", + "ementia" + ], + [ + "▁ple", + "asant" + ], + [ + "lee", + "n" + ], + [ + "le", + "en" + ], + [ + "l", + "een" + ], + [ + "▁EM", + "I" + ], + [ + "▁E", + "MI" + ], + [ + "▁Li", + "f" + ], + [ + "▁L", + "if" + ], + [ + "▁Lu", + "x" + ], + [ + "▁L", + "ux" + ], + [ + "▁We", + "y" + ], + [ + "▁W", + "ey" + ], + [ + "fam", + "ily" + ], + [ + "▁stra", + "t" + ], + [ + "▁str", + "at" + ], + [ + "▁st", + "rat" + ], + [ + "▁Camp", + "us" + ], + [ + "▁Field", + "s" + ], + [ + "▁blood", + "y" + ], + [ + "▁blo", + "ody" + ], + [ + "▁anx", + "ious" + ], + [ + "▁threat", + "en" + ], + [ + "▁particip", + "ant" + ], + [ + "▁posthum", + "ously" + ], + [ + "▁:", + "-" + ], + [ + "gg", + "ing" + ], + [ + "g", + "ging" + ], + [ + "▁Hal", + "e" + ], + [ + "▁Ha", + "le" + ], + [ + "▁H", + "ale" + ], + [ + "▁Hou", + "r" + ], + [ + "▁Ho", + "ur" + ], + [ + "▁H", + "our" + ], + [ + "w", + "èb" + ], + [ + "▁15", + "," + ], + [ + "▁1", + "5," + ], + [ + "▁Am", + "azing" + ], + [ + "▁cens", + "orship" + ], + [ + "▁constitu", + "ency" + ], + [ + "oma", + "s" + ], + [ + "om", + "as" + ], + [ + "o", + "mas" + ], + [ + "▁Gra", + "ph" + ], + [ + "▁Gr", + "aph" + ], + [ + "▁G", + "raph" + ], + [ + "▁Les", + "ter" + ], + [ + "▁Le", + "ster" + ], + [ + "▁L", + "ester" + ], + [ + "ata", + "s" + ], + [ + "at", + "as" + ], + [ + "ith", + "e" + ], + [ + "it", + "he" + ], + [ + "i", + "the" + ], + [ + "▁th", + "umb" + ], + [ + "▁unf", + "air" + ], + [ + "▁2013", + "." + ], + [ + "▁201", + "3." + ], + [ + "▁sm", + "ile" + ], + [ + "▁s", + "mile" + ], + [ + "▁repl", + "ica" + ], + [ + "▁2014", + "." + ], + [ + "▁201", + "4." + ], + [ + "▁Mag", + "gie" + ], + [ + "▁bubb", + "le" + ], + [ + "▁b", + "ubble" + ], + [ + "▁stim", + "ulate" + ], + [ + "ek", + "e" + ], + [ + "e", + "ke" + ], + [ + "▁Tu", + "l" + ], + [ + "▁T", + "ul" + ], + [ + "▁Dor", + "s" + ], + [ + "▁Do", + "rs" + ], + [ + "▁D", + "ors" + ], + [ + "▁feas", + "t" + ], + [ + "▁fe", + "ast" + ], + [ + "▁sex", + "es" + ], + [ + "▁spor", + "e" + ], + [ + "▁spo", + "re" + ], + [ + "▁sp", + "ore" + ], + [ + "▁Invest", + "ig" + ], + [ + "▁reop", + "ened" + ], + [ + "od", + "us" + ], + [ + "▁14", + "8" + ], + [ + "▁1", + "48" + ], + [ + "▁He", + "w" + ], + [ + "▁H", + "ew" + ], + [ + "▁Em", + "il" + ], + [ + "ocy", + "tes" + ], + [ + "▁Ana", + "ly" + ], + [ + "▁An", + "aly" + ], + [ + "▁Warrior", + "s" + ], + [ + "▁Warri", + "ors" + ], + [ + "▁compare", + "s" + ], + [ + "▁compar", + "es" + ], + [ + "▁comp", + "ares" + ], + [ + "▁complex", + "es" + ], + [ + "▁accum", + "ulation" + ], + [ + "▁M", + "B" + ], + [ + "▁Ho", + "g" + ], + [ + "▁H", + "og" + ], + [ + "▁Hos", + "t" + ], + [ + "▁Ho", + "st" + ], + [ + "▁H", + "ost" + ], + [ + "qu", + "arter" + ], + [ + "▁chord", + "s" + ], + [ + "▁chor", + "ds" + ], + [ + "▁ch", + "ords" + ], + [ + "ER", + "S" + ], + [ + "E", + "RS" + ], + [ + "▁|", + "|" + ], + [ + "▁", + "||" + ], + [ + "har", + "m" + ], + [ + "ha", + "rm" + ], + [ + "h", + "arm" + ], + [ + "ens", + "ity" + ], + [ + "▁Know", + "n" + ], + [ + "▁Kn", + "own" + ], + [ + "▁Pil", + "ot" + ], + [ + "▁Pi", + "lot" + ], + [ + "▁behav", + "e" + ], + [ + "▁beh", + "ave" + ], + [ + "▁stick", + "s" + ], + [ + "▁st", + "icks" + ], + [ + "▁reform", + "ed" + ], + [ + "▁re", + "formed" + ], + [ + "loo", + "k" + ], + [ + "lo", + "ok" + ], + [ + "l", + "ook" + ], + [ + "▁bo", + "g" + ], + [ + "▁b", + "og" + ], + [ + "▁Sh", + "op" + ], + [ + "▁S", + "hop" + ], + [ + "èl", + "e" + ], + [ + "è", + "le" + ], + [ + "▁184", + "1" + ], + [ + "▁18", + "41" + ], + [ + "▁Writ", + "e" + ], + [ + "▁W", + "rite" + ], + [ + "▁Thom", + "son" + ], + [ + "▁anat", + "omy" + ], + [ + "▁K", + "ön" + ], + [ + "▁ti", + "n" + ], + [ + "▁t", + "in" + ], + [ + "▁Ho", + "ok" + ], + [ + "▁H", + "ook" + ], + [ + "▁Mol", + "d" + ], + [ + "▁Mo", + "ld" + ], + [ + "▁M", + "old" + ], + [ + "▁ben", + "d" + ], + [ + "▁be", + "nd" + ], + [ + "▁b", + "end" + ], + [ + "▁h", + "iatus" + ], + [ + "▁Free", + "way" + ], + [ + "▁Fre", + "eway" + ], + [ + "▁Virt", + "ual" + ], + [ + "▁react", + "ed" + ], + [ + "▁inter", + "mitt" + ], + [ + "▁unchang", + "ed" + ], + [ + "▁seventeen", + "th" + ], + [ + "▁sevent", + "eenth" + ], + [ + "▁seven", + "teenth" + ], + [ + "▁traffic", + "king" + ], + [ + "▁traff", + "icking" + ], + [ + "U", + "T" + ], + [ + "▁U", + "P" + ], + [ + "▁", + "UP" + ], + [ + "▁Cub", + "s" + ], + [ + "▁Cu", + "bs" + ], + [ + "▁st", + "ab" + ], + [ + "▁make", + "r" + ], + [ + "▁ma", + "ker" + ], + [ + "▁m", + "aker" + ], + [ + "▁", + "maker" + ], + [ + "▁Fow", + "ler" + ], + [ + "▁Lion", + "el" + ], + [ + "oi", + "n" + ], + [ + "o", + "in" + ], + [ + "▁World", + "s" + ], + [ + "▁satisfy", + "ing" + ], + [ + "▁satisf", + "ying" + ], + [ + "ó", + "w" + ], + [ + "bec", + "k" + ], + [ + "be", + "ck" + ], + [ + "b", + "eck" + ], + [ + "ste", + "n" + ], + [ + "st", + "en" + ], + [ + "s", + "ten" + ], + [ + "▁Ok", + "in" + ], + [ + "▁O", + "kin" + ], + [ + "▁Tro", + "u" + ], + [ + "▁Tr", + "ou" + ], + [ + "▁Gu", + "ill" + ], + [ + "▁sl", + "ender" + ], + [ + "▁free", + "zing" + ], + [ + "sm", + "ith" + ], + [ + "s", + "mith" + ], + [ + "▁Mel", + "l" + ], + [ + "▁Me", + "ll" + ], + [ + "▁M", + "ell" + ], + [ + "▁bulb", + "s" + ], + [ + "▁bul", + "bs" + ], + [ + "▁she", + "er" + ], + [ + "▁Monte", + "ne" + ], + [ + "▁Mont", + "ene" + ], + [ + "▁Mon", + "tene" + ], + [ + "▁acad", + "emy" + ], + [ + "▁advis", + "or" + ], + [ + "9)", + "." + ], + [ + "9", + ")." + ], + [ + "vi", + "c" + ], + [ + "v", + "ic" + ], + [ + "rick", + "en" + ], + [ + "ric", + "ken" + ], + [ + "▁come", + "t" + ], + [ + "▁com", + "et" + ], + [ + "▁co", + "met" + ], + [ + "▁c", + "omet" + ], + [ + "▁Well", + "es" + ], + [ + "▁Wel", + "les" + ], + [ + "▁W", + "elles" + ], + [ + "▁5", + ":" + ], + [ + "ada", + "r" + ], + [ + "ad", + "ar" + ], + [ + "one", + "y" + ], + [ + "on", + "ey" + ], + [ + "o", + "ney" + ], + [ + "▁Ri", + "se" + ], + [ + "▁R", + "ise" + ], + [ + "▁exp", + "ans" + ], + [ + "▁hail", + "ed" + ], + [ + "▁ha", + "iled" + ], + [ + "▁h", + "ailed" + ], + [ + "▁Ton", + "ight" + ], + [ + "▁To", + "night" + ], + [ + "▁coach", + "ed" + ], + [ + "▁co", + "ached" + ], + [ + "▁relax", + "ed" + ], + [ + "to", + "p" + ], + [ + "t", + "op" + ], + [ + "ns", + "ic" + ], + [ + "▁Wes", + "s" + ], + [ + "▁We", + "ss" + ], + [ + "▁W", + "ess" + ], + [ + "ate", + "ful" + ], + [ + "▁all", + "oy" + ], + [ + "▁desire", + "s" + ], + [ + "▁des", + "ires" + ], + [ + "▁C", + "umberland" + ], + [ + "▁Psych", + "ology" + ], + [ + "▁violation", + "s" + ], + [ + "▁viol", + "ations" + ], + [ + "▁dys", + "function" + ], + [ + "▁El", + "y" + ], + [ + "▁E", + "ly" + ], + [ + "▁should", + "n" + ], + [ + "▁Johann", + "es" + ], + [ + "▁end", + "uring" + ], + [ + "▁consult", + "ed" + ], + [ + "▁S", + "K" + ], + [ + "▁plag", + "ue" + ], + [ + "▁pl", + "ague" + ], + [ + "▁legend", + "s" + ], + [ + "▁leg", + "ends" + ], + [ + "▁o", + "mitted" + ], + [ + "AR", + "T" + ], + [ + "A", + "RT" + ], + [ + "▁Gal", + "axy" + ], + [ + "▁ex", + "h" + ], + [ + "▁Fro", + "st" + ], + [ + "▁Fr", + "ost" + ], + [ + "▁F", + "rost" + ], + [ + "▁tomb", + "s" + ], + [ + "▁tom", + "bs" + ], + [ + "▁Bar", + "ack" + ], + [ + "▁Ba", + "rack" + ], + [ + "ora", + "n" + ], + [ + "or", + "an" + ], + [ + "o", + "ran" + ], + [ + "▁ye", + "ast" + ], + [ + "▁Gl", + "oria" + ], + [ + "▁scarc", + "e" + ], + [ + "▁scar", + "ce" + ], + [ + "▁gener", + "ous" + ], + [ + "▁gene", + "rous" + ], + [ + "▁gen", + "erous" + ], + [ + "▁separ", + "ating" + ], + [ + "▁supervis", + "or" + ], + [ + "▁lin", + "g" + ], + [ + "▁li", + "ng" + ], + [ + "▁l", + "ing" + ], + [ + "▁", + "ling" + ], + [ + "▁Ext", + "ra" + ], + [ + "▁Ex", + "tra" + ], + [ + "▁come", + "b" + ], + [ + "▁com", + "eb" + ], + [ + "▁in", + "ert" + ], + [ + "▁S", + "ánchez" + ], + [ + "▁residence", + "s" + ], + [ + "▁resid", + "ences" + ], + [ + "▁D", + "A" + ], + [ + "▁", + "DA" + ], + [ + "ril", + "l" + ], + [ + "ri", + "ll" + ], + [ + "r", + "ill" + ], + [ + "▁Cav", + "e" + ], + [ + "▁Ca", + "ve" + ], + [ + "▁C", + "ave" + ], + [ + "▁Pl", + "uto" + ], + [ + "▁Shan", + "e" + ], + [ + "▁Sha", + "ne" + ], + [ + "▁Sh", + "ane" + ], + [ + "▁decre", + "e" + ], + [ + "▁dec", + "ree" + ], + [ + "▁Tolk", + "ien" + ], + [ + "▁amb", + "ient" + ], + [ + "▁cross", + "over" + ], + [ + "▁cros", + "sover" + ], + [ + "▁flower", + "ing" + ], + [ + "▁flow", + "ering" + ], + [ + "r", + "s" + ], + [ + "ura", + "i" + ], + [ + "ur", + "ai" + ], + [ + "▁k", + "hi" + ], + [ + "▁Paris", + "h" + ], + [ + "▁Pari", + "sh" + ], + [ + "▁Par", + "ish" + ], + [ + "▁Fight", + "ing" + ], + [ + "▁march", + "ing" + ], + [ + "▁mar", + "ching" + ], + [ + "▁interven", + "e" + ], + [ + "▁Center", + "s" + ], + [ + "▁Cent", + "ers" + ], + [ + "▁Imag", + "ine" + ], + [ + "▁kilomet", + "re" + ], + [ + "▁investig", + "ators" + ], + [ + "▁Br", + "ussels" + ], + [ + "▁", + "α" + ], + [ + "▁Or", + "k" + ], + [ + "ime", + "dia" + ], + [ + "im", + "edia" + ], + [ + "for", + "cing" + ], + [ + "▁resist", + "ed" + ], + [ + "▁res", + "isted" + ], + [ + "▁privilege", + "s" + ], + [ + "▁privile", + "ges" + ], + [ + "ogl", + "y" + ], + [ + "og", + "ly" + ], + [ + "▁Jet", + "s" + ], + [ + "▁Je", + "ts" + ], + [ + "▁J", + "ets" + ], + [ + "inite", + "ly" + ], + [ + "in", + "itely" + ], + [ + "▁Vishn", + "u" + ], + [ + "▁fluor", + "ide" + ], + [ + "▁search", + "ed" + ], + [ + "▁sear", + "ched" + ], + [ + "▁he", + "patitis" + ], + [ + "▁excav", + "ation" + ], + [ + "bour", + "g" + ], + [ + "bo", + "urg" + ], + [ + "b", + "ourg" + ], + [ + "▁Pou", + "l" + ], + [ + "▁Po", + "ul" + ], + [ + "▁P", + "oul" + ], + [ + "▁Bat", + "es" + ], + [ + "▁Ba", + "tes" + ], + [ + "▁B", + "ates" + ], + [ + "▁allerg", + "ies" + ], + [ + "▁Ro", + "ok" + ], + [ + "▁R", + "ook" + ], + [ + "▁gri", + "e" + ], + [ + "▁gr", + "ie" + ], + [ + "▁g", + "rie" + ], + [ + "▁Cinem", + "a" + ], + [ + "▁C", + "inema" + ], + [ + "▁Eff", + "ect" + ], + [ + "▁Shan", + "non" + ], + [ + "▁Sh", + "annon" + ], + [ + "▁ang", + "ular" + ], + [ + "▁", + "angular" + ], + [ + "▁valid", + "ity" + ], + [ + "▁val", + "idity" + ], + [ + "▁method", + "ology" + ], + [ + "ov", + "ny" + ], + [ + "▁Du", + "ff" + ], + [ + "▁D", + "uff" + ], + [ + "▁Tw", + "in" + ], + [ + "▁T", + "win" + ], + [ + "▁cas", + "s" + ], + [ + "▁ca", + "ss" + ], + [ + "▁c", + "ass" + ], + [ + "▁ins", + "ign" + ], + [ + "▁nomin", + "al" + ], + [ + "▁nom", + "inal" + ], + [ + "▁diss", + "olution" + ], + [ + "m", + "b" + ], + [ + "▁Fr", + "éd" + ], + [ + "▁exam", + "s" + ], + [ + "▁ex", + "ams" + ], + [ + "health", + "y" + ], + [ + "▁quiet", + "ly" + ], + [ + "▁Ke", + "e" + ], + [ + "▁K", + "ee" + ], + [ + "rop", + "ods" + ], + [ + "▁root", + "ed" + ], + [ + "▁ro", + "oted" + ], + [ + "▁crowd", + "ed" + ], + [ + "▁crow", + "ded" + ], + [ + "▁Canad", + "iens" + ], + [ + "▁salv", + "ation" + ], + [ + "fa", + "t" + ], + [ + "f", + "at" + ], + [ + "gar", + "d" + ], + [ + "ga", + "rd" + ], + [ + "g", + "ard" + ], + [ + "▁shel", + "f" + ], + [ + "▁sh", + "elf" + ], + [ + "▁Cit", + "ies" + ], + [ + "▁Ci", + "ties" + ], + [ + "▁C", + "ities" + ], + [ + "▁Duch", + "ovny" + ], + [ + "▁Sin", + "clair" + ], + [ + "▁Dart", + "mouth" + ], + [ + "▁marriage", + "s" + ], + [ + "▁mar", + "riages" + ], + [ + "▁Surv", + "iv" + ], + [ + "▁X", + "avier" + ], + [ + "▁translation", + "s" + ], + [ + "▁transl", + "ations" + ], + [ + "▁ne", + "o" + ], + [ + "▁n", + "eo" + ], + [ + "th", + "ird" + ], + [ + "▁ho", + "od" + ], + [ + "▁h", + "ood" + ], + [ + "▁", + "hood" + ], + [ + "▁sin", + "c" + ], + [ + "▁s", + "inc" + ], + [ + "▁Age", + "nt" + ], + [ + "▁Ag", + "ent" + ], + [ + "▁A", + "gent" + ], + [ + "▁adult", + "hood" + ], + [ + "▁adul", + "thood" + ], + [ + "▁exercise", + "d" + ], + [ + "▁exerc", + "ised" + ], + [ + "hard", + "t" + ], + [ + "Fig", + "ure" + ], + [ + "▁Tren", + "t" + ], + [ + "▁Tre", + "nt" + ], + [ + "▁Tr", + "ent" + ], + [ + "▁T", + "rent" + ], + [ + "▁lease", + "d" + ], + [ + "▁le", + "ased" + ], + [ + "▁", + "leased" + ], + [ + "▁fre", + "estyle" + ], + [ + "▁arg", + "u" + ], + [ + "▁ar", + "gu" + ], + [ + "▁Beat", + "ty" + ], + [ + "▁Be", + "atty" + ], + [ + "iling", + "ual" + ], + [ + "▁sanct", + "uary" + ], + [ + "▁Not", + "tingham" + ], + [ + "ri", + "z" + ], + [ + "r", + "iz" + ], + [ + "▁Zel", + "da" + ], + [ + "▁add", + "ict" + ], + [ + "▁ad", + "dict" + ], + [ + "▁masc", + "ul" + ], + [ + "▁mas", + "cul" + ], + [ + "▁health", + "ier" + ], + [ + "▁instit", + "ute" + ], + [ + "▁in", + "stitute" + ], + [ + "▁vertebra", + "e" + ], + [ + "▁Hem", + "isphere" + ], + [ + "▁Legisl", + "ative" + ], + [ + "▁commitment", + "s" + ], + [ + "▁commit", + "ments" + ], + [ + "3)", + "." + ], + [ + "3", + ")." + ], + [ + "p", + "df" + ], + [ + "▁Hi", + "r" + ], + [ + "▁H", + "ir" + ], + [ + "▁Pi", + "one" + ], + [ + "▁P", + "ione" + ], + [ + "▁twin", + "s" + ], + [ + "▁tw", + "ins" + ], + [ + "▁Wilde", + "r" + ], + [ + "▁Wild", + "er" + ], + [ + "▁Wil", + "der" + ], + [ + "▁W", + "ilder" + ], + [ + "▁cosm", + "ic" + ], + [ + "▁cos", + "mic" + ], + [ + "▁dis", + "qual" + ], + [ + "▁st", + "unning" + ], + [ + "▁governor", + "s" + ], + [ + "▁govern", + "ors" + ], + [ + ")|", + "|" + ], + [ + ")", + "||" + ], + [ + "gu", + "e" + ], + [ + "g", + "ue" + ], + [ + "mid", + "t" + ], + [ + "▁18", + "15" + ], + [ + "▁Pé", + "rez" + ], + [ + "▁Cons", + "id" + ], + [ + "▁turtle", + "s" + ], + [ + "▁t", + "urtles" + ], + [ + "▁Rand", + "olph" + ], + [ + "▁reward", + "ed" + ], + [ + "▁willing", + "ness" + ], + [ + "▁Ven", + "et" + ], + [ + "▁Ve", + "net" + ], + [ + "▁Battle", + "s" + ], + [ + "▁Batt", + "les" + ], + [ + "▁thirteen", + "th" + ], + [ + "▁thir", + "teenth" + ], + [ + "▁1.", + "5" + ], + [ + "▁1", + ".5" + ], + [ + "▁J", + "MA" + ], + [ + "▁Month", + "ly" + ], + [ + "▁sympath", + "y" + ], + [ + "▁sympat", + "hy" + ], + [ + "▁sym", + "pathy" + ], + [ + "▁Return", + "ing" + ], + [ + "4)", + "." + ], + [ + "4", + ")." + ], + [ + "▁over", + "d" + ], + [ + "▁fold", + "ed" + ], + [ + "▁fol", + "ded" + ], + [ + "▁oblig", + "ed" + ], + [ + "▁Dun", + "d" + ], + [ + "▁Du", + "nd" + ], + [ + "▁D", + "und" + ], + [ + "l", + "ation" + ], + [ + "▁Ham", + "let" + ], + [ + "▁Sid", + "ney" + ], + [ + "▁amphib", + "ious" + ], + [ + "▁cylind", + "rical" + ], + [ + "▁Ke", + "t" + ], + [ + "▁K", + "et" + ], + [ + "▁Marin", + "a" + ], + [ + "▁Mari", + "na" + ], + [ + "▁Mar", + "ina" + ], + [ + "▁Ma", + "rina" + ], + [ + "▁exp", + "ose" + ], + [ + "▁Col", + "bert" + ], + [ + "▁finance", + "d" + ], + [ + "▁financ", + "ed" + ], + [ + "▁fin", + "anced" + ], + [ + "▁stretch", + "es" + ], + [ + "▁stret", + "ches" + ], + [ + "▁project", + "ion" + ], + [ + "▁Ta", + "h" + ], + [ + "▁T", + "ah" + ], + [ + "▁fran", + "s" + ], + [ + "▁fra", + "ns" + ], + [ + "▁fr", + "ans" + ], + [ + "▁f", + "rans" + ], + [ + "▁Com", + "ing" + ], + [ + "▁Co", + "ming" + ], + [ + "▁C", + "oming" + ], + [ + "▁Shack", + "leton" + ], + [ + "ob", + "s" + ], + [ + "o", + "bs" + ], + [ + "old", + "ing" + ], + [ + "ol", + "ding" + ], + [ + "▁fa", + "int" + ], + [ + "▁f", + "aint" + ], + [ + "ourage", + "d" + ], + [ + "ourag", + "ed" + ], + [ + "oura", + "ged" + ], + [ + "our", + "aged" + ], + [ + "ou", + "raged" + ], + [ + "▁Spe", + "aking" + ], + [ + "▁remind", + "ed" + ], + [ + "▁pharmac", + "eut" + ], + [ + "▁pharm", + "aceut" + ], + [ + "c", + "s" + ], + [ + "bes", + "t" + ], + [ + "be", + "st" + ], + [ + "b", + "est" + ], + [ + "▁ov", + "al" + ], + [ + "▁o", + "val" + ], + [ + "▁", + "oval" + ], + [ + "▁croc", + "od" + ], + [ + "▁defe", + "ct" + ], + [ + "▁def", + "ect" + ], + [ + "▁de", + "fect" + ], + [ + "itation", + "s" + ], + [ + "it", + "ations" + ], + [ + "▁bl", + "adder" + ], + [ + "▁protest", + "ed" + ], + [ + "▁prote", + "sted" + ], + [ + "▁prot", + "ested" + ], + [ + "sh", + "aped" + ], + [ + "▁Man", + "it" + ], + [ + "▁Rule", + "s" + ], + [ + "▁Ru", + "les" + ], + [ + "▁R", + "ules" + ], + [ + "▁Sib", + "er" + ], + [ + "▁Si", + "ber" + ], + [ + "▁S", + "iber" + ], + [ + "▁d", + "itch" + ], + [ + "▁herb", + "s" + ], + [ + "▁her", + "bs" + ], + [ + "▁Colon", + "y" + ], + [ + "▁Col", + "ony" + ], + [ + "▁remed", + "y" + ], + [ + "▁rem", + "edy" + ], + [ + "cester", + "shire" + ], + [ + "c", + "estershire" + ], + [ + "ald", + "i" + ], + [ + "al", + "di" + ], + [ + "▁split", + "s" + ], + [ + "▁spl", + "its" + ], + [ + "▁advoc", + "acy" + ], + [ + "▁coincide", + "d" + ], + [ + "▁coinc", + "ided" + ], + [ + "▁celebr", + "ities" + ], + [ + "▁celeb", + "rities" + ], + [ + "š", + "e" + ], + [ + "▁Ru", + "m" + ], + [ + "▁R", + "um" + ], + [ + "sp", + "ace" + ], + [ + "utor", + "y" + ], + [ + "uto", + "ry" + ], + [ + "ut", + "ory" + ], + [ + "▁ru", + "st" + ], + [ + "▁r", + "ust" + ], + [ + "▁", + "rust" + ], + [ + "▁Milk", + "y" + ], + [ + "▁Mil", + "ky" + ], + [ + "▁Tou", + "ch" + ], + [ + "▁To", + "uch" + ], + [ + "▁T", + "ouch" + ], + [ + "▁mant", + "le" + ], + [ + "▁man", + "tle" + ], + [ + "▁conqu", + "er" + ], + [ + "▁con", + "quer" + ], + [ + "▁disp", + "ers" + ], + [ + "▁dis", + "pers" + ], + [ + "▁village", + "rs" + ], + [ + "▁vill", + "agers" + ], + [ + "▁broadcast", + "s" + ], + [ + "ar", + "b" + ], + [ + "▁(3", + ")" + ], + [ + "▁(", + "3)" + ], + [ + "orie", + "nt" + ], + [ + "ori", + "ent" + ], + [ + "or", + "ient" + ], + [ + "▁Warri", + "or" + ], + [ + "▁tall", + "est" + ], + [ + "ô", + "me" + ], + [ + "rot", + "s" + ], + [ + "ro", + "ts" + ], + [ + "r", + "ots" + ], + [ + "▁Att", + "ack" + ], + [ + "▁grass", + "es" + ], + [ + "▁gr", + "asses" + ], + [ + "▁altern", + "ating" + ], + [ + "▁Meteor", + "ological" + ], + [ + "ba", + "um" + ], + [ + "istan", + "i" + ], + [ + "ista", + "ni" + ], + [ + "ist", + "ani" + ], + [ + "▁Inf", + "lu" + ], + [ + "▁In", + "flu" + ], + [ + "▁lift", + "ing" + ], + [ + "▁lif", + "ting" + ], + [ + "▁l", + "ifting" + ], + [ + "▁suffer", + "s" + ], + [ + "▁suff", + "ers" + ], + [ + "▁digital", + "ly" + ], + [ + "▁digit", + "ally" + ], + [ + "▁spokes", + "man" + ], + [ + "▁distrib", + "ute" + ], + [ + "▁generator", + "s" + ], + [ + "▁gener", + "ators" + ], + [ + "▁gene", + "rators" + ], + [ + "▁protest", + "ers" + ], + [ + "▁prote", + "sters" + ], + [ + "▁prot", + "esters" + ], + [ + "nia", + "n" + ], + [ + "ni", + "an" + ], + [ + "n", + "ian" + ], + [ + "per", + "s" + ], + [ + "pe", + "rs" + ], + [ + "p", + "ers" + ], + [ + "inis", + "hed" + ], + [ + "in", + "ished" + ], + [ + "▁Ro", + "land" + ], + [ + "▁R", + "oland" + ], + [ + "▁Ter", + "ror" + ], + [ + "▁mand", + "ate" + ], + [ + "▁Know", + "ledge" + ], + [ + "ut", + "z" + ], + [ + "u", + "tz" + ], + [ + "▁2016", + "." + ], + [ + "▁201", + "6." + ], + [ + "▁mate", + "s" + ], + [ + "▁mat", + "es" + ], + [ + "▁ma", + "tes" + ], + [ + "▁m", + "ates" + ], + [ + "▁", + "mates" + ], + [ + "▁Bott", + "om" + ], + [ + "▁can", + "opy" + ], + [ + "▁check", + "ing" + ], + [ + "▁Herze", + "govina" + ], + [ + "▁Gl", + "ory" + ], + [ + "▁Jo", + "ker" + ], + [ + "▁J", + "oker" + ], + [ + "▁Bols", + "hev" + ], + [ + "▁card", + "iac" + ], + [ + "▁seiz", + "ure" + ], + [ + "▁disagre", + "e" + ], + [ + "▁disag", + "ree" + ], + [ + "▁ham", + "pered" + ], + [ + ".)", + "," + ], + [ + ".", + ")," + ], + [ + "awa", + "k" + ], + [ + "aw", + "ak" + ], + [ + "▁Bo", + "h" + ], + [ + "▁B", + "oh" + ], + [ + "▁mos", + "a" + ], + [ + "▁mo", + "sa" + ], + [ + "▁m", + "osa" + ], + [ + "▁Shak", + "ira" + ], + [ + "▁pers", + "ist" + ], + [ + "▁vamp", + "ire" + ], + [ + "▁North", + "umb" + ], + [ + "▁Heming", + "way" + ], + [ + "▁Ra", + "s" + ], + [ + "▁R", + "as" + ], + [ + "uta", + "ble" + ], + [ + "ut", + "able" + ], + [ + "▁mask", + "s" + ], + [ + "▁mas", + "ks" + ], + [ + "▁m", + "asks" + ], + [ + "▁jack", + "et" + ], + [ + "▁High", + "land" + ], + [ + "▁possess", + "es" + ], + [ + "▁poss", + "esses" + ], + [ + "▁G", + "A" + ], + [ + "▁", + "GA" + ], + [ + "rib", + "ing" + ], + [ + "ri", + "bing" + ], + [ + "▁Bull", + "et" + ], + [ + "▁Bul", + "let" + ], + [ + "▁Free", + "man" + ], + [ + "▁Fre", + "eman" + ], + [ + "▁appet", + "ite" + ], + [ + "▁Initi", + "ative" + ], + [ + "▁alleg", + "iance" + ], + [ + "▁overlook", + "ing" + ], + [ + "▁Ka", + "b" + ], + [ + "▁K", + "ab" + ], + [ + "▁ben", + "t" + ], + [ + "▁be", + "nt" + ], + [ + "▁b", + "ent" + ], + [ + "▁upward", + "s" + ], + [ + "▁up", + "wards" + ], + [ + "▁exagger", + "ated" + ], + [ + "C", + "onn" + ], + [ + "▁sa", + "x" + ], + [ + "▁s", + "ax" + ], + [ + "ilia", + "r" + ], + [ + "ili", + "ar" + ], + [ + "il", + "iar" + ], + [ + "▁In", + "clud" + ], + [ + "▁short", + "s" + ], + [ + "▁sh", + "orts" + ], + [ + "▁War", + "ning" + ], + [ + "▁Lauren", + "ce" + ], + [ + "▁Laure", + "nce" + ], + [ + "▁Laur", + "ence" + ], + [ + "B", + "ut" + ], + [ + "▁Shep", + "herd" + ], + [ + "▁tut", + "orial" + ], + [ + "▁Education", + "al" + ], + [ + "▁Educ", + "ational" + ], + [ + "▁un", + "m" + ], + [ + "▁pal", + "l" + ], + [ + "▁pa", + "ll" + ], + [ + "▁p", + "all" + ], + [ + "▁Ant", + "illes" + ], + [ + "▁terror", + "ism" + ], + [ + "▁He", + "s" + ], + [ + "▁H", + "es" + ], + [ + "▁Sy", + "rac" + ], + [ + "olec", + "ular" + ], + [ + "▁argu", + "ably" + ], + [ + "▁hem", + "isphere" + ], + [ + "▁preference", + "s" + ], + [ + "▁prefer", + "ences" + ], + [ + "▁supplement", + "ed" + ], + [ + "▁I", + "z" + ], + [ + "omm", + "e" + ], + [ + "om", + "me" + ], + [ + "▁Ju", + "mp" + ], + [ + "▁J", + "ump" + ], + [ + "▁Wil", + "f" + ], + [ + "▁download", + "s" + ], + [ + "ia", + "o" + ], + [ + "i", + "ao" + ], + [ + "▁Pon", + "d" + ], + [ + "▁Po", + "nd" + ], + [ + "▁P", + "ond" + ], + [ + "▁Will", + "y" + ], + [ + "▁Wil", + "ly" + ], + [ + "▁W", + "illy" + ], + [ + "▁tra", + "it" + ], + [ + "▁memoir", + "s" + ], + [ + "▁mem", + "oirs" + ], + [ + "▁up", + "right" + ], + [ + "▁Citiz", + "ens" + ], + [ + "▁prov", + "oked" + ], + [ + "auke", + "e" + ], + [ + "▁sm", + "ok" + ], + [ + "▁Wild", + "e" + ], + [ + "▁Wil", + "de" + ], + [ + "▁Congress", + "ional" + ], + [ + "wh", + "e" + ], + [ + "w", + "he" + ], + [ + "bor", + "g" + ], + [ + "b", + "org" + ], + [ + "▁cl", + "ues" + ], + [ + "▁Jean", + "ne" + ], + [ + "▁Je", + "anne" + ], + [ + "▁canal", + "s" + ], + [ + "▁can", + "als" + ], + [ + "▁har", + "ness" + ], + [ + "▁depiction", + "s" + ], + [ + "▁depict", + "ions" + ], + [ + "▁depi", + "ctions" + ], + [ + "▁dep", + "ictions" + ], + [ + "sh", + "ot" + ], + [ + "s", + "hot" + ], + [ + "▁46", + "0" + ], + [ + "▁4", + "60" + ], + [ + "▁App", + "ro" + ], + [ + "▁Ap", + "pro" + ], + [ + "▁vin", + "yl" + ], + [ + "▁Hok", + "ies" + ], + [ + "▁Sher", + "iff" + ], + [ + "▁Voy", + "ager" + ], + [ + "▁reper", + "to" + ], + [ + "▁rep", + "erto" + ], + [ + "▁embrace", + "d" + ], + [ + "▁embra", + "ced" + ], + [ + "▁syn", + "chron" + ], + [ + "▁histor", + "ies" + ], + [ + "▁hist", + "ories" + ], + [ + "▁envision", + "ed" + ], + [ + "▁beam", + "s" + ], + [ + "▁be", + "ams" + ], + [ + "▁ex", + "ert" + ], + [ + "▁Sl", + "oven" + ], + [ + "▁motor", + "s" + ], + [ + "▁mot", + "ors" + ], + [ + "▁steal", + "s" + ], + [ + "▁ste", + "als" + ], + [ + "▁inspir", + "ing" + ], + [ + "▁insp", + "iring" + ], + [ + "▁S", + "F" + ], + [ + "ibl", + "i" + ], + [ + "ib", + "li" + ], + [ + "ist", + "on" + ], + [ + "is", + "ton" + ], + [ + "i", + "ston" + ], + [ + "oub", + "ted" + ], + [ + "▁Gent", + "le" + ], + [ + "▁Gen", + "tle" + ], + [ + "▁ec", + "clesiastical" + ], + [ + "ò", + "b" + ], + [ + "anta", + "l" + ], + [ + "ant", + "al" + ], + [ + "an", + "tal" + ], + [ + "▁echo", + "ed" + ], + [ + "▁privile", + "ge" + ], + [ + "▁prev", + "ailing" + ], + [ + "o", + "j" + ], + [ + "▁Ni", + "n" + ], + [ + "▁N", + "in" + ], + [ + "ulin", + "g" + ], + [ + "uli", + "ng" + ], + [ + "ul", + "ing" + ], + [ + "u", + "ling" + ], + [ + "▁Av", + "al" + ], + [ + "▁A", + "val" + ], + [ + "▁au", + "nt" + ], + [ + "▁a", + "unt" + ], + [ + "▁Watt", + "s" + ], + [ + "▁Wat", + "ts" + ], + [ + "▁W", + "atts" + ], + [ + "▁comed", + "ian" + ], + [ + "▁defin", + "ite" + ], + [ + "▁def", + "inite" + ], + [ + "▁grad", + "ient" + ], + [ + "▁char", + "itable" + ], + [ + "aj", + "i" + ], + [ + "a", + "ji" + ], + [ + "▁Tac", + "t" + ], + [ + "▁Ta", + "ct" + ], + [ + "▁T", + "act" + ], + [ + "▁dev", + "il" + ], + [ + "▁de", + "vil" + ], + [ + "▁ship", + "yard" + ], + [ + "▁Individ", + "ual" + ], + [ + "▁gr", + "i" + ], + [ + "▁g", + "ri" + ], + [ + "▁ti", + "l" + ], + [ + "▁t", + "il" + ], + [ + "▁", + "til" + ], + [ + "▁dem", + "ise" + ], + [ + "▁domain", + "s" + ], + [ + "▁dom", + "ains" + ], + [ + "▁retain", + "s" + ], + [ + "▁ret", + "ains" + ], + [ + "▁re", + "tains" + ], + [ + "▁consist", + "ency" + ], + [ + "▁Ac", + "e" + ], + [ + "▁A", + "ce" + ], + [ + "ans", + "en" + ], + [ + "an", + "sen" + ], + [ + "▁luck", + "y" + ], + [ + "▁luc", + "ky" + ], + [ + "▁l", + "ucky" + ], + [ + "▁Mad", + "ame" + ], + [ + "▁Style", + "s" + ], + [ + "▁St", + "yles" + ], + [ + "▁prayer", + "s" + ], + [ + "▁pray", + "ers" + ], + [ + "▁pra", + "yers" + ], + [ + "vy", + "e" + ], + [ + "v", + "ye" + ], + [ + "▁X", + "en" + ], + [ + "ing", + "le" + ], + [ + "▁ta", + "st" + ], + [ + "▁t", + "ast" + ], + [ + "▁cuis", + "ine" + ], + [ + "▁over", + "weight" + ], + [ + "▁host", + "ilities" + ], + [ + "▁ou", + "n" + ], + [ + "▁o", + "un" + ], + [ + "▁", + "oun" + ], + [ + "▁iP", + "ad" + ], + [ + "▁Sil", + "va" + ], + [ + "▁flame", + "s" + ], + [ + "▁fl", + "ames" + ], + [ + "▁Dog", + "gett" + ], + [ + "▁Ne", + "ro" + ], + [ + "▁N", + "ero" + ], + [ + "lette", + "r" + ], + [ + "lett", + "er" + ], + [ + "let", + "ter" + ], + [ + "ly", + "wood" + ], + [ + "▁Ast", + "on" + ], + [ + "▁As", + "ton" + ], + [ + "▁A", + "ston" + ], + [ + "vention", + "al" + ], + [ + "vent", + "ional" + ], + [ + "▁Carne", + "gie" + ], + [ + "▁Christ", + "ina" + ], + [ + "▁representation", + "s" + ], + [ + "▁represent", + "ations" + ], + [ + "▁app", + "s" + ], + [ + "▁ap", + "ps" + ], + [ + "▁Inn", + "ov" + ], + [ + "t", + "r" + ], + [ + "os", + "o" + ], + [ + "o", + "so" + ], + [ + "▁50", + "%" + ], + [ + "▁Ern", + "st" + ], + [ + "▁Nic", + "ol" + ], + [ + "▁Ni", + "col" + ], + [ + "▁monkey", + "s" + ], + [ + "▁Regard", + "ing" + ], + [ + "▁w", + "ip" + ], + [ + "cha", + "in" + ], + [ + "ch", + "ain" + ], + [ + "enz", + "ie" + ], + [ + "nan", + "ce" + ], + [ + "na", + "nce" + ], + [ + "n", + "ance" + ], + [ + "▁Ly", + "on" + ], + [ + "▁L", + "yon" + ], + [ + "▁fol", + "i" + ], + [ + "▁fo", + "li" + ], + [ + "▁f", + "oli" + ], + [ + "▁Va", + "tic" + ], + [ + "▁V", + "atic" + ], + [ + "▁reward", + "s" + ], + [ + "▁re", + "wards" + ], + [ + "▁anticip", + "ation" + ], + [ + "▁anti", + "cipation" + ], + [ + "ume", + "n" + ], + [ + "um", + "en" + ], + [ + "u", + "men" + ], + [ + "▁satir", + "e" + ], + [ + "▁sat", + "ire" + ], + [ + "▁Ric", + "ardo" + ], + [ + "▁shoot", + "er" + ], + [ + "▁wrest", + "ler" + ], + [ + "▁campaign", + "ed" + ], + [ + "▁disagree", + "ment" + ], + [ + "▁disagre", + "ement" + ], + [ + "▁No", + "s" + ], + [ + "▁N", + "os" + ], + [ + "▁XI", + "I" + ], + [ + "▁X", + "II" + ], + [ + "asp", + "or" + ], + [ + "as", + "por" + ], + [ + "ce", + "phal" + ], + [ + "▁assist", + "ing" + ], + [ + "▁ass", + "isting" + ], + [ + "▁appointment", + "s" + ], + [ + "▁appoint", + "ments" + ], + [ + "rell", + "a" + ], + [ + "rel", + "la" + ], + [ + "re", + "lla" + ], + [ + "r", + "ella" + ], + [ + "▁Cham", + "p" + ], + [ + "▁Cha", + "mp" + ], + [ + "▁Ch", + "amp" + ], + [ + "▁pi", + "x" + ], + [ + "▁p", + "ix" + ], + [ + "▁ow", + "ed" + ], + [ + "▁", + "owed" + ], + [ + "▁Aub", + "urn" + ], + [ + "▁Au", + "burn" + ], + [ + "▁sanct", + "ion" + ], + [ + "▁san", + "ction" + ], + [ + "▁tw", + "e" + ], + [ + "▁t", + "we" + ], + [ + "▁bre", + "w" + ], + [ + "▁br", + "ew" + ], + [ + "▁b", + "rew" + ], + [ + "▁mus", + "k" + ], + [ + "▁m", + "usk" + ], + [ + "▁flo", + "ra" + ], + [ + "▁fl", + "ora" + ], + [ + "▁Cov", + "ent" + ], + [ + "▁Co", + "vent" + ], + [ + "▁diamond", + "s" + ], + [ + "▁diam", + "onds" + ], + [ + "▁bombard", + "ed" + ], + [ + "▁bomb", + "arded" + ], + [ + "▁Legisl", + "ature" + ], + [ + "B", + "l" + ], + [ + "ala", + "n" + ], + [ + "al", + "an" + ], + [ + "a", + "lan" + ], + [ + "▁183", + "5" + ], + [ + "▁18", + "35" + ], + [ + "▁App", + "e" + ], + [ + "▁Ap", + "pe" + ], + [ + "▁A", + "ppe" + ], + [ + "▁For", + "um" + ], + [ + "▁Fo", + "rum" + ], + [ + "▁F", + "orum" + ], + [ + "▁Liber", + "t" + ], + [ + "▁Lib", + "ert" + ], + [ + "▁Li", + "bert" + ], + [ + "▁besie", + "ged" + ], + [ + "▁Sacr", + "ament" + ], + [ + "▁dismiss", + "al" + ], + [ + "cil", + "l" + ], + [ + "ci", + "ll" + ], + [ + "c", + "ill" + ], + [ + "rong", + "h" + ], + [ + "ron", + "gh" + ], + [ + "▁Ga", + "ul" + ], + [ + "▁G", + "aul" + ], + [ + "▁Ire", + "ne" + ], + [ + "▁Ir", + "ene" + ], + [ + "▁I", + "rene" + ], + [ + "▁Sat", + "an" + ], + [ + "▁Un", + "cle" + ], + [ + "▁lock", + "s" + ], + [ + "▁loc", + "ks" + ], + [ + "▁l", + "ocks" + ], + [ + "▁soul", + "s" + ], + [ + "▁sou", + "ls" + ], + [ + "▁so", + "uls" + ], + [ + "▁hat", + "red" + ], + [ + "▁bro", + "n" + ], + [ + "▁br", + "on" + ], + [ + "▁b", + "ron" + ], + [ + "▁Grav", + "es" + ], + [ + "▁Gra", + "ves" + ], + [ + "▁Gr", + "aves" + ], + [ + "▁frag", + "ile" + ], + [ + "▁prov", + "ing" + ], + [ + "▁pro", + "ving" + ], + [ + "▁Bel", + "grade" + ], + [ + "▁Syrac", + "use" + ], + [ + ")", + "|" + ], + [ + "als", + "o" + ], + [ + "al", + "so" + ], + [ + "▁183", + "9" + ], + [ + "▁18", + "39" + ], + [ + "▁Car", + "m" + ], + [ + "▁Ca", + "rm" + ], + [ + "▁C", + "arm" + ], + [ + "▁Mem", + "phis" + ], + [ + "▁", + "→" + ], + [ + "ey", + "e" + ], + [ + "e", + "ye" + ], + [ + "ga", + "do" + ], + [ + "g", + "ado" + ], + [ + "▁Go", + "b" + ], + [ + "▁G", + "ob" + ], + [ + "▁Lo", + "b" + ], + [ + "▁L", + "ob" + ], + [ + "erat", + "ive" + ], + [ + "er", + "ative" + ], + [ + "e", + "rative" + ], + [ + "▁fus", + "elage" + ], + [ + "In", + "d" + ], + [ + "I", + "nd" + ], + [ + "not", + "e" + ], + [ + "no", + "te" + ], + [ + "n", + "ote" + ], + [ + "mark", + "s" + ], + [ + "mar", + "ks" + ], + [ + "m", + "arks" + ], + [ + "ub", + "Med" + ], + [ + "▁cite", + "s" + ], + [ + "▁cit", + "es" + ], + [ + "▁c", + "ites" + ], + [ + "▁Chief", + "s" + ], + [ + "▁Sil", + "via" + ], + [ + "▁12", + "4" + ], + [ + "▁1", + "24" + ], + [ + "▁tune", + "d" + ], + [ + "▁tun", + "ed" + ], + [ + "▁tu", + "ned" + ], + [ + "▁ban", + "ner" + ], + [ + "▁b", + "anner" + ], + [ + "▁affili", + "ate" + ], + [ + "▁Me", + "c" + ], + [ + "▁M", + "ec" + ], + [ + "orth", + "y" + ], + [ + "ort", + "hy" + ], + [ + "or", + "thy" + ], + [ + "▁18", + "19" + ], + [ + "▁Las", + "s" + ], + [ + "▁La", + "ss" + ], + [ + "▁L", + "ass" + ], + [ + "▁coll", + "ar" + ], + [ + "▁col", + "lar" + ], + [ + "▁Wimb", + "ledon" + ], + [ + "▁inc", + "umbent" + ], + [ + "▁passion", + "ate" + ], + [ + "-1", + "1" + ], + [ + "-", + "11" + ], + [ + "▁M", + "R" + ], + [ + "eli", + "us" + ], + [ + "el", + "ius" + ], + [ + "▁int", + "u" + ], + [ + "▁Barr", + "ow" + ], + [ + "▁Bar", + "row" + ], + [ + "▁Tel", + "ugu" + ], + [ + "▁b", + "achelor" + ], + [ + "▁comeb", + "ack" + ], + [ + "▁come", + "back" + ], + [ + "▁div", + "iding" + ], + [ + "▁No", + "m" + ], + [ + "▁N", + "om" + ], + [ + "▁bill", + "ed" + ], + [ + "▁bil", + "led" + ], + [ + "▁bi", + "lled" + ], + [ + "▁b", + "illed" + ], + [ + "▁hung", + "ry" + ], + [ + "▁Gold", + "man" + ], + [ + "▁cartoon", + "s" + ], + [ + "▁cart", + "oons" + ], + [ + "▁exploit", + "ed" + ], + [ + "▁explo", + "ited" + ], + [ + "▁Cos", + "m" + ], + [ + "▁Co", + "sm" + ], + [ + "▁C", + "osm" + ], + [ + "▁hor", + "r" + ], + [ + "▁log", + "s" + ], + [ + "▁lo", + "gs" + ], + [ + "▁l", + "ogs" + ], + [ + "▁Sal", + "ly" + ], + [ + "▁S", + "ally" + ], + [ + "▁disc", + "o" + ], + [ + "▁dis", + "co" + ], + [ + "▁d", + "isco" + ], + [ + "▁flee", + "ing" + ], + [ + "▁fle", + "eing" + ], + [ + "▁diarr", + "hea" + ], + [ + "▁Chem", + "istry" + ], + [ + "▁highlight", + "ing" + ], + [ + "▁administrator", + "s" + ], + [ + "▁administ", + "rators" + ], + [ + "▁specific", + "ations" + ], + [ + "▁spec", + "ifications" + ], + [ + "▁Bomb", + "ay" + ], + [ + ".", + "8" + ], + [ + "▁Saf", + "f" + ], + [ + "▁Sa", + "ff" + ], + [ + "▁S", + "aff" + ], + [ + "▁top", + "s" + ], + [ + "▁to", + "ps" + ], + [ + "▁t", + "ops" + ], + [ + "▁All", + "eg" + ], + [ + "▁Al", + "leg" + ], + [ + "▁Sale", + "s" + ], + [ + "▁Sal", + "es" + ], + [ + "▁Sa", + "les" + ], + [ + "▁S", + "ales" + ], + [ + "heric", + "al" + ], + [ + "her", + "ical" + ], + [ + "he", + "rical" + ], + [ + "over", + "ing" + ], + [ + "ove", + "ring" + ], + [ + "ov", + "ering" + ], + [ + "▁inv", + "ade" + ], + [ + "▁pen", + "cil" + ], + [ + "▁end", + "ured" + ], + [ + "▁secret", + "s" + ], + [ + "▁secre", + "ts" + ], + [ + "▁sec", + "rets" + ], + [ + "▁Ottoman", + "s" + ], + [ + "▁Otto", + "mans" + ], + [ + "▁Ott", + "omans" + ], + [ + "▁Anim", + "ation" + ], + [ + "▁An", + "imation" + ], + [ + "▁Pakistan", + "i" + ], + [ + "▁Pak", + "istani" + ], + [ + "▁collector", + "s" + ], + [ + "▁collect", + "ors" + ], + [ + "▁coll", + "ectors" + ], + [ + "▁attraction", + "s" + ], + [ + "▁attract", + "ions" + ], + [ + "▁14", + "," + ], + [ + "▁1", + "4," + ], + [ + "▁ot", + "on" + ], + [ + "▁o", + "ton" + ], + [ + "▁", + "oton" + ], + [ + "▁rac", + "ist" + ], + [ + "▁routine", + "ly" + ], + [ + "▁rout", + "inely" + ], + [ + "▁merchand", + "ise" + ], + [ + "Ne", + "ill" + ], + [ + "▁ven", + "om" + ], + [ + "for", + "k" + ], + [ + "f", + "ork" + ], + [ + "mi", + "um" + ], + [ + "m", + "ium" + ], + [ + "▁Merc", + "y" + ], + [ + "▁Mer", + "cy" + ], + [ + "▁ast", + "on" + ], + [ + "▁as", + "ton" + ], + [ + "▁a", + "ston" + ], + [ + "▁", + "aston" + ], + [ + "▁norm", + "s" + ], + [ + "▁nor", + "ms" + ], + [ + "▁n", + "orms" + ], + [ + "▁hunt", + "ed" + ], + [ + "▁hun", + "ted" + ], + [ + "▁h", + "unted" + ], + [ + "ester", + "day" + ], + [ + "▁Martin", + "e" + ], + [ + "▁Mart", + "ine" + ], + [ + "▁pl", + "aster" + ], + [ + "▁Commer", + "cial" + ], + [ + "▁M", + "GM" + ], + [ + "▁gri", + "p" + ], + [ + "▁gr", + "ip" + ], + [ + "▁g", + "rip" + ], + [ + "acc", + "ess" + ], + [ + "ac", + "cess" + ], + [ + "a", + "ccess" + ], + [ + "rust", + "ed" + ], + [ + "rus", + "ted" + ], + [ + "ru", + "sted" + ], + [ + "▁Male", + "s" + ], + [ + "▁Mal", + "es" + ], + [ + "▁Ma", + "les" + ], + [ + "▁M", + "ales" + ], + [ + "▁K", + "atherine" + ], + [ + "▁coron", + "ation" + ], + [ + "da", + "d" + ], + [ + "d", + "ad" + ], + [ + "▁ca", + "ke" + ], + [ + "▁c", + "ake" + ], + [ + "▁he", + "el" + ], + [ + "▁Cart", + "e" + ], + [ + "▁Car", + "te" + ], + [ + "▁C", + "arte" + ], + [ + "▁inter", + "rupt" + ], + [ + "▁retreat", + "ing" + ], + [ + "▁Historical", + "ly" + ], + [ + "▁Historic", + "ally" + ], + [ + "▁Histor", + "ically" + ], + [ + "▁L", + "ü" + ], + [ + "▁Bl", + "y" + ], + [ + "▁B", + "ly" + ], + [ + "▁Ma", + "z" + ], + [ + "▁M", + "az" + ], + [ + "▁j", + "ar" + ], + [ + "▁", + "jar" + ], + [ + "▁Bro", + "m" + ], + [ + "▁Br", + "om" + ], + [ + "▁B", + "rom" + ], + [ + "▁Al", + "ain" + ], + [ + "▁A", + "lain" + ], + [ + "▁dig", + "ging" + ], + [ + "▁di", + "gging" + ], + [ + "▁headache", + "s" + ], + [ + "▁head", + "aches" + ], + [ + "▁util", + "izing" + ], + [ + "▁Amb", + "assador" + ], + [ + "▁morph", + "ology" + ], + [ + "▁philosopher", + "s" + ], + [ + "▁philosoph", + "ers" + ], + [ + "▁philos", + "ophers" + ], + [ + "▁Bel", + "f" + ], + [ + "▁B", + "elf" + ], + [ + "▁Kh", + "rush" + ], + [ + "▁dis", + "reg" + ], + [ + "▁Comb", + "ined" + ], + [ + "▁propose", + "s" + ], + [ + "▁propos", + "es" + ], + [ + "▁prop", + "oses" + ], + [ + "▁courty", + "ard" + ], + [ + "▁court", + "yard" + ], + [ + "▁weakness", + "es" + ], + [ + "oh", + "an" + ], + [ + "o", + "han" + ], + [ + "pha", + "e" + ], + [ + "ph", + "ae" + ], + [ + "eper", + "s" + ], + [ + "ep", + "ers" + ], + [ + "e", + "pers" + ], + [ + "▁Cas", + "c" + ], + [ + "▁Ca", + "sc" + ], + [ + "▁C", + "asc" + ], + [ + "▁Coul", + "d" + ], + [ + "▁Cou", + "ld" + ], + [ + "▁C", + "ould" + ], + [ + "▁dup", + "lic" + ], + [ + "▁out", + "post" + ], + [ + "▁Black", + "burn" + ], + [ + "▁Hutch", + "inson" + ], + [ + "▁millimeter", + "s" + ], + [ + "▁millimet", + "ers" + ], + [ + "▁48", + "0" + ], + [ + "▁4", + "80" + ], + [ + "▁char", + "m" + ], + [ + "▁cha", + "rm" + ], + [ + "▁ch", + "arm" + ], + [ + "▁c", + "harm" + ], + [ + "▁ins", + "ec" + ], + [ + "▁in", + "sec" + ], + [ + "▁Tem", + "per" + ], + [ + "▁Metro", + "id" + ], + [ + "▁Met", + "roid" + ], + [ + "▁breath", + "e" + ], + [ + "▁breat", + "he" + ], + [ + "▁analy", + "zing" + ], + [ + "▁exclus", + "ion" + ], + [ + "▁ex", + "clusion" + ], + [ + "▁Mo", + "ff" + ], + [ + "▁M", + "off" + ], + [ + "▁Boh", + "em" + ], + [ + "▁Bo", + "hem" + ], + [ + "▁Sil", + "ent" + ], + [ + "▁blade", + "s" + ], + [ + "▁bl", + "ades" + ], + [ + "▁Clark", + "son" + ], + [ + "▁Czech", + "osl" + ], + [ + "▁surface", + "d" + ], + [ + "▁surf", + "aced" + ], + [ + "▁ou", + "b" + ], + [ + "▁o", + "ub" + ], + [ + "▁", + "oub" + ], + [ + "▁Joe", + "y" + ], + [ + "▁Jo", + "ey" + ], + [ + "▁sor", + "e" + ], + [ + "▁so", + "re" + ], + [ + "▁s", + "ore" + ], + [ + "▁Nob", + "le" + ], + [ + "▁No", + "ble" + ], + [ + "▁dr", + "ill" + ], + [ + "▁d", + "rill" + ], + [ + "▁gas", + "on" + ], + [ + "▁ga", + "son" + ], + [ + "▁g", + "ason" + ], + [ + "▁Sand", + "ra" + ], + [ + "▁S", + "andra" + ], + [ + "▁dance", + "r" + ], + [ + "▁d", + "ancer" + ], + [ + "▁shore", + "s" + ], + [ + "▁sh", + "ores" + ], + [ + "▁McL", + "aren" + ], + [ + "▁Paul", + "ine" + ], + [ + "▁melod", + "ic" + ], + [ + "▁mel", + "odic" + ], + [ + "▁Beh", + "avior" + ], + [ + "▁console", + "s" + ], + [ + "▁cons", + "oles" + ], + [ + "▁ill", + "usion" + ], + [ + "▁musc", + "ular" + ], + [ + "▁He", + "p" + ], + [ + "▁H", + "ep" + ], + [ + "▁ko", + "m" + ], + [ + "▁k", + "om" + ], + [ + "▁Sin", + "a" + ], + [ + "▁Si", + "na" + ], + [ + "▁S", + "ina" + ], + [ + "itch", + "es" + ], + [ + "it", + "ches" + ], + [ + "▁Th", + "ing" + ], + [ + "▁T", + "hing" + ], + [ + "▁scar", + "c" + ], + [ + "▁sc", + "arc" + ], + [ + "empt", + "ion" + ], + [ + "em", + "ption" + ], + [ + "▁Sum", + "mit" + ], + [ + "▁recruit", + "s" + ], + [ + "▁recru", + "its" + ], + [ + "ism", + "atic" + ], + [ + "is", + "matic" + ], + [ + "▁spend", + "s" + ], + [ + "▁sp", + "ends" + ], + [ + "▁conn", + "ing" + ], + [ + "▁con", + "ning" + ], + [ + "ont", + "e" + ], + [ + "on", + "te" + ], + [ + "ty", + "pe" + ], + [ + "t", + "ype" + ], + [ + "▁20", + "5" + ], + [ + "▁2", + "05" + ], + [ + "▁183", + "8" + ], + [ + "▁18", + "38" + ], + [ + "▁Rev", + "el" + ], + [ + "▁Re", + "vel" + ], + [ + "▁gra", + "sp" + ], + [ + "▁gr", + "asp" + ], + [ + "ed", + "ience" + ], + [ + "▁Ork", + "ney" + ], + [ + "▁Seven", + "th" + ], + [ + "▁Sev", + "enth" + ], + [ + "▁Se", + "venth" + ], + [ + "iz", + "a" + ], + [ + "i", + "za" + ], + [ + "urer", + "s" + ], + [ + "ure", + "rs" + ], + [ + "ur", + "ers" + ], + [ + "▁Per", + "e" + ], + [ + "▁Pe", + "re" + ], + [ + "▁P", + "ere" + ], + [ + "▁lip", + "s" + ], + [ + "▁li", + "ps" + ], + [ + "▁l", + "ips" + ], + [ + "▁Aber", + "de" + ], + [ + "▁ens", + "ued" + ], + [ + "▁Mir", + "anda" + ], + [ + "▁Towns", + "end" + ], + [ + "▁imagine", + "d" + ], + [ + "▁imagin", + "ed" + ], + [ + "▁imag", + "ined" + ], + [ + "▁prol", + "ific" + ], + [ + "▁Khrush", + "chev" + ], + [ + "▁condition", + "ing" + ], + [ + "di", + "g" + ], + [ + "d", + "ig" + ], + [ + "▁ensure", + "s" + ], + [ + "▁ens", + "ures" + ], + [ + "▁line", + "age" + ], + [ + "▁Britt", + "any" + ], + [ + "L", + "S" + ], + [ + "ni", + "e" + ], + [ + "n", + "ie" + ], + [ + "ut", + "a" + ], + [ + "u", + "ta" + ], + [ + "▁30", + "5" + ], + [ + "▁3", + "05" + ], + [ + "▁heav", + "iest" + ], + [ + "▁long", + "time" + ], + [ + "P", + "P" + ], + [ + "▁Ja", + "b" + ], + [ + "▁J", + "ab" + ], + [ + "▁Se", + "v" + ], + [ + "▁S", + "ev" + ], + [ + "▁Nes", + "t" + ], + [ + "▁Ne", + "st" + ], + [ + "▁N", + "est" + ], + [ + "▁Book", + "er" + ], + [ + "▁Bo", + "oker" + ], + [ + "▁Hor", + "ror" + ], + [ + "▁Zag", + "reb" + ], + [ + "▁Res", + "olution" + ], + [ + "K", + "O" + ], + [ + "▁pas", + "e" + ], + [ + "▁pa", + "se" + ], + [ + "▁p", + "ase" + ], + [ + "▁bra", + "ck" + ], + [ + "▁br", + "ack" + ], + [ + "▁b", + "rack" + ], + [ + "otechn", + "ology" + ], + [ + "ba", + "se" + ], + [ + "b", + "ase" + ], + [ + "▁Qu", + "ant" + ], + [ + "▁oub", + "yen" + ], + [ + "▁fore", + "most" + ], + [ + "▁search", + "es" + ], + [ + "▁sear", + "ches" + ], + [ + "▁confront", + "s" + ], + [ + "▁confron", + "ts" + ], + [ + "aj", + "o" + ], + [ + "a", + "jo" + ], + [ + "▁D", + "M" + ], + [ + "▁", + "DM" + ], + [ + "ong", + "s" + ], + [ + "on", + "gs" + ], + [ + "▁m", + "ul" + ], + [ + "▁Got", + "t" + ], + [ + "▁Go", + "tt" + ], + [ + "▁G", + "ott" + ], + [ + "illa", + "ry" + ], + [ + "ill", + "ary" + ], + [ + "p", + "owder" + ], + [ + "▁C", + "unning" + ], + [ + "▁surn", + "ame" + ], + [ + "▁sur", + "name" + ], + [ + "▁path", + "ogens" + ], + [ + "▁suppress", + "ed" + ], + [ + "▁supp", + "ressed" + ], + [ + "▁disappoint", + "ing" + ], + [ + "var", + "a" + ], + [ + "va", + "ra" + ], + [ + "v", + "ara" + ], + [ + "amm", + "ed" + ], + [ + "am", + "med" + ], + [ + "oric", + "al" + ], + [ + "ori", + "cal" + ], + [ + "or", + "ical" + ], + [ + "o", + "rical" + ], + [ + "▁syn", + "th" + ], + [ + "▁man", + "man" + ], + [ + "▁rent", + "ed" + ], + [ + "▁ren", + "ted" + ], + [ + "▁r", + "ented" + ], + [ + "▁folk", + "lore" + ], + [ + "▁prest", + "ige" + ], + [ + "an", + "j" + ], + [ + "▁Ric", + "an" + ], + [ + "▁Ri", + "can" + ], + [ + "▁R", + "ican" + ], + [ + "▁dif", + "ize" + ], + [ + "yn", + "thesis" + ], + [ + "▁down", + "ward" + ], + [ + "▁head", + "ache" + ], + [ + "▁R", + "F" + ], + [ + "icia", + "ry" + ], + [ + "ici", + "ary" + ], + [ + "ic", + "iary" + ], + [ + "▁Europ", + "a" + ], + [ + "▁Euro", + "pa" + ], + [ + "▁Mid", + "way" + ], + [ + "▁trick", + "s" + ], + [ + "▁tr", + "icks" + ], + [ + "▁t", + "ricks" + ], + [ + "▁sen", + "aris" + ], + [ + "▁Smith", + "son" + ], + [ + "▁mount", + "ing" + ], + [ + "▁moun", + "ting" + ], + [ + "▁mo", + "unting" + ], + [ + "▁St", + "ructure" + ], + [ + "▁clear", + "ance" + ], + [ + "▁intens", + "ification" + ], + [ + "res", + "c" + ], + [ + "re", + "sc" + ], + [ + "r", + "esc" + ], + [ + "▁care", + "g" + ], + [ + "▁car", + "eg" + ], + [ + "▁ca", + "reg" + ], + [ + "▁para", + "n" + ], + [ + "▁par", + "an" + ], + [ + "▁pa", + "ran" + ], + [ + "▁p", + "aran" + ], + [ + "▁inexp", + "er" + ], + [ + "▁inex", + "per" + ], + [ + "▁rec", + "ount" + ], + [ + "▁Cha", + "u" + ], + [ + "▁Ch", + "au" + ], + [ + "▁Rou", + "t" + ], + [ + "▁Ro", + "ut" + ], + [ + "▁R", + "out" + ], + [ + "▁2011", + "," + ], + [ + "▁201", + "1," + ], + [ + "▁Rav", + "en" + ], + [ + "▁Ra", + "ven" + ], + [ + "▁R", + "aven" + ], + [ + "▁The", + "od" + ], + [ + "▁Tud", + "or" + ], + [ + "▁deriv", + "ative" + ], + [ + "▁D", + "é" + ], + [ + "erm", + "o" + ], + [ + "er", + "mo" + ], + [ + "▁lap", + "t" + ], + [ + "▁la", + "pt" + ], + [ + "▁l", + "apt" + ], + [ + "▁p", + "uff" + ], + [ + "▁Inst", + "r" + ], + [ + "▁Ins", + "tr" + ], + [ + "▁In", + "str" + ], + [ + "▁Ex", + "eter" + ], + [ + "▁Nap", + "les" + ], + [ + "▁Na", + "ples" + ], + [ + "▁gent", + "ly" + ], + [ + "▁g", + "ently" + ], + [ + "▁listen", + "ed" + ], + [ + "▁list", + "ened" + ], + [ + "▁illustrate", + "s" + ], + [ + "▁illust", + "rates" + ], + [ + "ud", + "ge" + ], + [ + "otion", + "al" + ], + [ + "oti", + "onal" + ], + [ + "ot", + "ional" + ], + [ + "▁se", + "zon" + ], + [ + "▁", + "sezon" + ], + [ + "▁lad", + "ies" + ], + [ + "▁pot", + "tery" + ], + [ + "▁for", + "aging" + ], + [ + "ext", + "s" + ], + [ + "ex", + "ts" + ], + [ + "ly", + "ss" + ], + [ + "l", + "yss" + ], + [ + "▁moon", + "s" + ], + [ + "▁mo", + "ons" + ], + [ + "▁m", + "oons" + ], + [ + "est", + "inal" + ], + [ + "sect", + "ion" + ], + [ + "se", + "ction" + ], + [ + "s", + "ection" + ], + [ + "▁where", + "ver" + ], + [ + "onder", + "s" + ], + [ + "onde", + "rs" + ], + [ + "ond", + "ers" + ], + [ + "on", + "ders" + ], + [ + "▁hum", + "id" + ], + [ + "▁prot", + "oc" + ], + [ + "▁Kann", + "ada" + ], + [ + "▁poster", + "s" + ], + [ + "▁post", + "ers" + ], + [ + "▁pos", + "ters" + ], + [ + "▁po", + "sters" + ], + [ + "▁resemble", + "d" + ], + [ + "▁resemb", + "led" + ], + [ + "▁Re", + "e" + ], + [ + "▁R", + "ee" + ], + [ + "▁pa", + "c" + ], + [ + "▁p", + "ac" + ], + [ + "▁183", + "1" + ], + [ + "▁18", + "31" + ], + [ + "gl", + "ades" + ], + [ + "▁eight", + "y" + ], + [ + "▁e", + "ighty" + ], + [ + "▁universal", + "ly" + ], + [ + "▁univers", + "ally" + ], + [ + "▁Z", + "ach" + ], + [ + "▁it", + "al" + ], + [ + "▁i", + "tal" + ], + [ + "▁", + "ital" + ], + [ + "▁Bret", + "t" + ], + [ + "▁Bre", + "tt" + ], + [ + "▁Br", + "ett" + ], + [ + "▁B", + "rett" + ], + [ + "▁wr", + "ist" + ], + [ + "▁w", + "rist" + ], + [ + "▁lifesp", + "an" + ], + [ + "▁co", + "s" + ], + [ + "▁c", + "os" + ], + [ + "▁", + "cos" + ], + [ + "▁na", + "use" + ], + [ + "▁n", + "ause" + ], + [ + "▁where", + "in" + ], + [ + "▁unexpected", + "ly" + ], + [ + "hi", + "s" + ], + [ + "h", + "is" + ], + [ + "▁Gue", + "r" + ], + [ + "▁Gu", + "er" + ], + [ + "▁G", + "uer" + ], + [ + "▁Pil", + "l" + ], + [ + "▁Pi", + "ll" + ], + [ + "▁P", + "ill" + ], + [ + "sk", + "irts" + ], + [ + "▁che", + "ek" + ], + [ + "▁reef", + "s" + ], + [ + "▁ree", + "fs" + ], + [ + "▁trap", + "s" + ], + [ + "▁tra", + "ps" + ], + [ + "▁tr", + "aps" + ], + [ + "▁Kap", + "oor" + ], + [ + "▁Em", + "press" + ], + [ + "▁novel", + "ist" + ], + [ + "▁Bon", + "o" + ], + [ + "▁Bo", + "no" + ], + [ + "ocket", + "s" + ], + [ + "ock", + "ets" + ], + [ + "▁2012", + "," + ], + [ + "▁201", + "2," + ], + [ + "▁Cla", + "re" + ], + [ + "▁Cl", + "are" + ], + [ + "▁tra", + "sh" + ], + [ + "▁tr", + "ash" + ], + [ + "▁Pat", + "ients" + ], + [ + "▁suspect", + "s" + ], + [ + "▁susp", + "ects" + ], + [ + "▁fisher", + "ies" + ], + [ + "▁fish", + "eries" + ], + [ + "ula", + "nce" + ], + [ + "ul", + "ance" + ], + [ + "u", + "lance" + ], + [ + "▁tone", + "s" + ], + [ + "▁ton", + "es" + ], + [ + "▁to", + "nes" + ], + [ + "▁t", + "ones" + ], + [ + "▁up", + "held" + ], + [ + "▁Mat", + "ilda" + ], + [ + "▁out", + "rage" + ], + [ + "▁impro", + "per" + ], + [ + "▁impr", + "oper" + ], + [ + "▁Byzantine", + "s" + ], + [ + "▁Byzant", + "ines" + ], + [ + "▁Regard", + "less" + ], + [ + "irl", + "ing" + ], + [ + "ir", + "ling" + ], + [ + "▁Rob", + "ot" + ], + [ + "▁Ro", + "bot" + ], + [ + "▁Wals", + "h" + ], + [ + "▁Wal", + "sh" + ], + [ + "▁Farm", + "er" + ], + [ + "▁Far", + "mer" + ], + [ + "▁Sina", + "tra" + ], + [ + "▁Sin", + "atra" + ], + [ + "▁greet", + "ed" + ], + [ + "▁gre", + "eted" + ], + [ + "▁respond", + "s" + ], + [ + "▁resp", + "onds" + ], + [ + "T", + "O" + ], + [ + "▁war", + "n" + ], + [ + "▁w", + "arn" + ], + [ + "w", + "aukee" + ], + [ + "▁Fr", + "uit" + ], + [ + "▁F", + "ruit" + ], + [ + "▁w", + "olves" + ], + [ + "▁council", + "s" + ], + [ + "lo", + "v" + ], + [ + "l", + "ov" + ], + [ + "▁Mar", + "e" + ], + [ + "▁Ma", + "re" + ], + [ + "▁M", + "are" + ], + [ + "▁Pen", + "d" + ], + [ + "▁Pe", + "nd" + ], + [ + "▁P", + "end" + ], + [ + "▁Sa", + "id" + ], + [ + "▁S", + "aid" + ], + [ + "▁Iss", + "ue" + ], + [ + "▁Factor", + "y" + ], + [ + "▁Fact", + "ory" + ], + [ + "▁Fa", + "ctory" + ], + [ + "▁Leip", + "zig" + ], + [ + "ment", + "ioned" + ], + [ + "▁Giov", + "anni" + ], + [ + "▁benefit", + "ed" + ], + [ + "▁benef", + "ited" + ], + [ + "▁ingred", + "ient" + ], + [ + "!", + "!" + ], + [ + "▁No", + "ah" + ], + [ + "▁has", + "n" + ], + [ + "▁Helen", + "a" + ], + [ + "▁Hel", + "ena" + ], + [ + "▁oton", + "òm" + ], + [ + "▁store", + "y" + ], + [ + "▁Titan", + "ic" + ], + [ + "▁Tit", + "anic" + ], + [ + "▁pharm", + "ac" + ], + [ + "▁divert", + "ed" + ], + [ + "▁diver", + "ted" + ], + [ + "▁div", + "erted" + ], + [ + "▁reason", + "ably" + ], + [ + "ch", + "us" + ], + [ + "c", + "hus" + ], + [ + "yard", + "s" + ], + [ + "y", + "ards" + ], + [ + "flow", + "er" + ], + [ + "fl", + "ower" + ], + [ + "▁fisher", + "men" + ], + [ + "▁restrict", + "ion" + ], + [ + "▁rest", + "riction" + ], + [ + "b", + "irth" + ], + [ + "ivo", + "res" + ], + [ + "iv", + "ores" + ], + [ + "opath", + "y" + ], + [ + "opa", + "thy" + ], + [ + "op", + "athy" + ], + [ + "o", + "pathy" + ], + [ + "umber", + "ing" + ], + [ + "umb", + "ering" + ], + [ + "▁Pant", + "hers" + ], + [ + "▁antib", + "iotic" + ], + [ + "at", + "l" + ], + [ + "de", + "z" + ], + [ + "d", + "ez" + ], + [ + "onn", + "ie" + ], + [ + "on", + "nie" + ], + [ + "▁Alb", + "ion" + ], + [ + "▁Pra", + "gue" + ], + [ + "▁Pr", + "ague" + ], + [ + "▁P", + "rague" + ], + [ + "▁harm", + "on" + ], + [ + "▁har", + "mon" + ], + [ + "▁imp", + "ose" + ], + [ + "▁ranking", + "s" + ], + [ + "▁rank", + "ings" + ], + [ + "en", + "o" + ], + [ + "e", + "no" + ], + [ + "jo", + "u" + ], + [ + "j", + "ou" + ], + [ + "▁12", + "9" + ], + [ + "▁1", + "29" + ], + [ + "▁out", + "n" + ], + [ + "▁Cott", + "on" + ], + [ + "▁C", + "otton" + ], + [ + "▁Fell", + "ow" + ], + [ + "▁Fel", + "low" + ], + [ + "▁F", + "ellow" + ], + [ + "▁jan", + "vye" + ], + [ + "▁sup", + "rem" + ], + [ + "▁Good", + "man" + ], + [ + "▁strong", + "h" + ], + [ + "▁st", + "rongh" + ], + [ + "▁Ever", + "glades" + ], + [ + "▁reperto", + "ire" + ], + [ + "▁14", + "4" + ], + [ + "▁1", + "44" + ], + [ + "▁Sal", + "e" + ], + [ + "▁Sa", + "le" + ], + [ + "▁S", + "ale" + ], + [ + "▁pil", + "e" + ], + [ + "▁pi", + "le" + ], + [ + "▁p", + "ile" + ], + [ + "▁Re", + "bell" + ], + [ + "▁lover", + "s" + ], + [ + "▁love", + "rs" + ], + [ + "▁lov", + "ers" + ], + [ + "▁lo", + "vers" + ], + [ + "▁l", + "overs" + ], + [ + "▁Charles", + "ton" + ], + [ + "▁Charl", + "eston" + ], + [ + "ou", + "ard" + ], + [ + "▁My", + "th" + ], + [ + "▁fro", + "st" + ], + [ + "▁fr", + "ost" + ], + [ + "▁f", + "rost" + ], + [ + "▁airport", + "s" + ], + [ + "▁air", + "ports" + ], + [ + "▁drill", + "ing" + ], + [ + "▁dr", + "illing" + ], + [ + "▁N", + "g" + ], + [ + "ik", + "èn" + ], + [ + "ish", + "a" + ], + [ + "is", + "ha" + ], + [ + "▁177", + "5" + ], + [ + "▁17", + "75" + ], + [ + "iful", + "ly" + ], + [ + "if", + "ully" + ], + [ + "i", + "fully" + ], + [ + "▁Cauc", + "as" + ], + [ + "▁pinn", + "ed" + ], + [ + "▁pin", + "ned" + ], + [ + "ond", + "ition" + ], + [ + "on", + "dition" + ], + [ + "▁spons", + "or" + ], + [ + "▁j", + "w" + ], + [ + "▁abs", + "urd" + ], + [ + "rav", + "iolet" + ], + [ + "▁export", + "ed" + ], + [ + "▁exp", + "orted" + ], + [ + "▁ex", + "ported" + ], + [ + "▁trigger", + "s" + ], + [ + "▁trigg", + "ers" + ], + [ + "▁dy", + "e" + ], + [ + "▁d", + "ye" + ], + [ + "▁Cros", + "by" + ], + [ + "▁Intern", + "al" + ], + [ + "▁Inter", + "nal" + ], + [ + "▁In", + "ternal" + ], + [ + "▁parent", + "al" + ], + [ + "▁paren", + "tal" + ], + [ + "▁par", + "ental" + ], + [ + "▁tem", + "plate" + ], + [ + "▁out", + "skirts" + ], + [ + "▁W", + "A" + ], + [ + "▁", + "WA" + ], + [ + "▁ka", + "r" + ], + [ + "▁k", + "ar" + ], + [ + "▁", + "kar" + ], + [ + "he", + "art" + ], + [ + "▁Jud", + "a" + ], + [ + "▁Ju", + "da" + ], + [ + "▁J", + "uda" + ], + [ + "▁sel", + "dom" + ], + [ + "▁ballad", + "s" + ], + [ + "▁ball", + "ads" + ], + [ + "▁don", + "ation" + ], + [ + "▁do", + "nation" + ], + [ + "▁destination", + "s" + ], + [ + "▁dest", + "inations" + ], + [ + "▁incons", + "istent" + ], + [ + "▁gl", + "oss" + ], + [ + "▁Dream", + "s" + ], + [ + "▁Dre", + "ams" + ], + [ + "▁bath", + "room" + ], + [ + "▁context", + "s" + ], + [ + "▁cont", + "exts" + ], + [ + "▁ancest", + "ral" + ], + [ + "▁commission", + "er" + ], + [ + "ia", + "e" + ], + [ + "i", + "ae" + ], + [ + "yle", + "ne" + ], + [ + "yl", + "ene" + ], + [ + "qual", + "ity" + ], + [ + "qu", + "ality" + ], + [ + "▁Andr", + "oid" + ], + [ + "▁And", + "roid" + ], + [ + "at", + "ro" + ], + [ + "ous", + "s" + ], + [ + "ou", + "ss" + ], + [ + "o", + "uss" + ], + [ + "▁184", + "2" + ], + [ + "▁18", + "42" + ], + [ + "▁Lanc", + "e" + ], + [ + "▁Lan", + "ce" + ], + [ + "▁La", + "nce" + ], + [ + "▁L", + "ance" + ], + [ + "▁out", + "flow" + ], + [ + "▁rhythm", + "s" + ], + [ + "▁rhy", + "thms" + ], + [ + "▁ware", + "house" + ], + [ + "▁epi", + "le" + ], + [ + "▁ep", + "ile" + ], + [ + "▁Sound", + "track" + ], + [ + "wy", + "n" + ], + [ + "w", + "yn" + ], + [ + "▁H", + "S" + ], + [ + "▁", + "HS" + ], + [ + "▁brick", + "s" + ], + [ + "▁br", + "icks" + ], + [ + "▁b", + "ricks" + ], + [ + "▁ev", + "angel" + ], + [ + "bar", + "d" + ], + [ + "ba", + "rd" + ], + [ + "b", + "ard" + ], + [ + "▁Dan", + "g" + ], + [ + "▁Da", + "ng" + ], + [ + "▁D", + "ang" + ], + [ + "▁arter", + "y" + ], + [ + "▁art", + "ery" + ], + [ + "▁ar", + "tery" + ], + [ + "▁Rand", + "all" + ], + [ + "D", + "OT" + ], + [ + "▁Vol", + "t" + ], + [ + "▁V", + "olt" + ], + [ + "▁gal", + "e" + ], + [ + "▁ga", + "le" + ], + [ + "▁g", + "ale" + ], + [ + "▁button", + "s" + ], + [ + "▁butt", + "ons" + ], + [ + "▁Veter", + "ans" + ], + [ + "▁85", + "0" + ], + [ + "▁8", + "50" + ], + [ + "▁Exc", + "ell" + ], + [ + "▁Ex", + "cell" + ], + [ + "▁Air", + "ways" + ], + [ + "▁Egyptian", + "s" + ], + [ + "▁Egypt", + "ians" + ], + [ + "▁simpl", + "ified" + ], + [ + "▁homosexual", + "ity" + ], + [ + "und", + "o" + ], + [ + "un", + "do" + ], + [ + "▁Bu", + "ilt" + ], + [ + "▁disc", + "s" + ], + [ + "▁dis", + "cs" + ], + [ + "▁Tele", + "sc" + ], + [ + "▁Tel", + "esc" + ], + [ + "▁Sm", + "oking" + ], + [ + "▁Matthew", + "s" + ], + [ + "pend", + "icular" + ], + [ + "▁ge", + "m" + ], + [ + "▁g", + "em" + ], + [ + "▁", + "gem" + ], + [ + "alle", + "y" + ], + [ + "all", + "ey" + ], + [ + "al", + "ley" + ], + [ + "field", + "s" + ], + [ + "▁Alg", + "er" + ], + [ + "▁Al", + "ger" + ], + [ + "▁te", + "yat" + ], + [ + "▁Bah", + "rain" + ], + [ + "▁Glac", + "ier" + ], + [ + "▁lith", + "ium" + ], + [ + "▁f", + "ò" + ], + [ + "▁38", + "0" + ], + [ + "▁3", + "80" + ], + [ + "▁ane", + "st" + ], + [ + "▁an", + "est" + ], + [ + "▁a", + "nest" + ], + [ + "▁fem", + "me" + ], + [ + "▁rel", + "iance" + ], + [ + "▁showc", + "ase" + ], + [ + "▁show", + "case" + ], + [ + "▁O", + "R" + ], + [ + "▁", + "OR" + ], + [ + "pil", + "l" + ], + [ + "pi", + "ll" + ], + [ + "p", + "ill" + ], + [ + "pro", + "of" + ], + [ + "ting", + "u" + ], + [ + "t", + "ingu" + ], + [ + "▁Hu", + "ff" + ], + [ + "▁H", + "uff" + ], + [ + "▁pan", + "t" + ], + [ + "▁pa", + "nt" + ], + [ + "▁p", + "ant" + ], + [ + "▁indu", + "l" + ], + [ + "▁ind", + "ul" + ], + [ + "oc", + "ative" + ], + [ + "▁cop", + "ied" + ], + [ + "▁foli", + "age" + ], + [ + "▁archive", + "s" + ], + [ + "▁arch", + "ives" + ], + [ + "▁arch", + "ipelago" + ], + [ + "▁la", + "m" + ], + [ + "▁l", + "am" + ], + [ + "▁", + "lam" + ], + [ + "▁emb", + "lem" + ], + [ + "▁em", + "blem" + ], + [ + "▁vig", + "orous" + ], + [ + "▁access", + "ion" + ], + [ + "▁acc", + "ession" + ], + [ + "▁d", + "ictionary" + ], + [ + "▁suppress", + "ion" + ], + [ + "▁supp", + "ression" + ], + [ + "▁neur", + "ological" + ], + [ + "▁neu", + "rological" + ], + [ + "gi", + "l" + ], + [ + "g", + "il" + ], + [ + "▁id", + "ol" + ], + [ + "▁Phot", + "o" + ], + [ + "▁Ph", + "oto" + ], + [ + "▁R", + "ising" + ], + [ + "▁Tre", + "vor" + ], + [ + "▁hold", + "er" + ], + [ + "▁hol", + "der" + ], + [ + "▁", + "holder" + ], + [ + "▁Cr", + "iminal" + ], + [ + "▁Nort", + "heast" + ], + [ + "▁syn", + "agogue" + ], + [ + "fa", + "r" + ], + [ + "f", + "ar" + ], + [ + "fe", + "s" + ], + [ + "f", + "es" + ], + [ + "▁Ca", + "ge" + ], + [ + "▁C", + "age" + ], + [ + "▁Luc", + "k" + ], + [ + "▁Lu", + "ck" + ], + [ + "▁L", + "uck" + ], + [ + "▁rein", + "t" + ], + [ + "▁re", + "int" + ], + [ + "▁chick", + "s" + ], + [ + "▁ch", + "icks" + ], + [ + "▁fract", + "ure" + ], + [ + "▁medic", + "inal" + ], + [ + "get", + "s" + ], + [ + "ge", + "ts" + ], + [ + "g", + "ets" + ], + [ + "stic", + "k" + ], + [ + "st", + "ick" + ], + [ + "▁Her", + "t" + ], + [ + "▁H", + "ert" + ], + [ + "▁Carl", + "o" + ], + [ + "▁Car", + "lo" + ], + [ + "▁fact", + "o" + ], + [ + "▁fac", + "to" + ], + [ + "▁Initi", + "al" + ], + [ + "▁Init", + "ial" + ], + [ + "▁chim", + "ney" + ], + [ + "▁Venezuel", + "a" + ], + [ + "▁Reform", + "ation" + ], + [ + "▁Re", + "formation" + ], + [ + "▁magn", + "ificent" + ], + [ + "▁Cle", + "m" + ], + [ + "▁Cl", + "em" + ], + [ + "▁C", + "lem" + ], + [ + "▁Fo", + "ss" + ], + [ + "▁F", + "oss" + ], + [ + "▁Fitz", + "g" + ], + [ + "▁Bark", + "er" + ], + [ + "▁Bar", + "ker" + ], + [ + "▁Magn", + "us" + ], + [ + "▁Appeal", + "s" + ], + [ + "▁Appe", + "als" + ], + [ + "▁bel", + "oved" + ], + [ + "▁aug", + "mented" + ], + [ + "▁star", + "board" + ], + [ + "ond", + "o" + ], + [ + "on", + "do" + ], + [ + "▁cow", + "s" + ], + [ + "▁c", + "ows" + ], + [ + "▁total", + "s" + ], + [ + "▁tot", + "als" + ], + [ + "▁f", + "ountain" + ], + [ + "▁trust", + "ees" + ], + [ + "ident", + "ified" + ], + [ + "▁comp", + "elled" + ], + [ + "▁recruit", + "ment" + ], + [ + "▁trans", + "action" + ], + [ + "▁16", + "," + ], + [ + "▁1", + "6," + ], + [ + "▁Ts", + "ar" + ], + [ + "▁pool", + "s" + ], + [ + "▁po", + "ols" + ], + [ + "▁p", + "ools" + ], + [ + "▁10,", + "000" + ], + [ + "▁10", + ",000" + ], + [ + "▁dial", + "og" + ], + [ + "▁any", + "body" + ], + [ + "ization", + "al" + ], + [ + "iz", + "ational" + ], + [ + "▁tuber", + "culosis" + ], + [ + "▁K", + "w" + ], + [ + "▁clo", + "t" + ], + [ + "▁cl", + "ot" + ], + [ + "▁c", + "lot" + ], + [ + "▁tr", + "unc" + ], + [ + "▁Monk", + "ey" + ], + [ + "▁Mon", + "key" + ], + [ + "▁Soph", + "ia" + ], + [ + "▁conv", + "ex" + ], + [ + "▁con", + "vex" + ], + [ + "▁un", + "beat" + ], + [ + "ipl", + "inary" + ], + [ + "ip", + "linary" + ], + [ + "▁gun", + "fire" + ], + [ + "▁p", + "ension" + ], + [ + "▁Gil", + "m" + ], + [ + "▁G", + "ilm" + ], + [ + "▁pop", + "e" + ], + [ + "▁po", + "pe" + ], + [ + "▁p", + "ope" + ], + [ + "▁2009", + "," + ], + [ + "▁200", + "9," + ], + [ + "▁Mart", + "í" + ], + [ + "lighten", + "ment" + ], + [ + "▁recogn", + "izing" + ], + [ + "-1", + "6" + ], + [ + "-", + "16" + ], + [ + "▁41", + "0" + ], + [ + "▁4", + "10" + ], + [ + "▁Sc", + "ale" + ], + [ + "▁vig", + "il" + ], + [ + "▁vi", + "gil" + ], + [ + "▁Creat", + "e" + ], + [ + "▁Cre", + "ate" + ], + [ + "▁al", + "umni" + ], + [ + "▁Brit", + "ann" + ], + [ + "▁Moroc", + "co" + ], + [ + "▁gest", + "ure" + ], + [ + "▁port", + "fol" + ], + [ + "▁deliver", + "s" + ], + [ + "▁del", + "ivers" + ], + [ + "▁finance", + "s" + ], + [ + "▁financ", + "es" + ], + [ + "▁fin", + "ances" + ], + [ + "▁astron", + "omer" + ], + [ + "▁respond", + "ents" + ], + [ + "oo", + "p" + ], + [ + "o", + "op" + ], + [ + "our", + "g" + ], + [ + "o", + "urg" + ], + [ + "▁Mil", + "k" + ], + [ + "▁bur", + "g" + ], + [ + "▁b", + "urg" + ], + [ + "▁", + "burg" + ], + [ + "itud", + "inal" + ], + [ + "▁strain", + "ed" + ], + [ + "▁stra", + "ined" + ], + [ + "▁str", + "ained" + ], + [ + "▁st", + "rained" + ], + [ + "▁transl", + "ate" + ], + [ + "any", + "a" + ], + [ + "an", + "ya" + ], + [ + "gra", + "t" + ], + [ + "gr", + "at" + ], + [ + "g", + "rat" + ], + [ + "▁MC", + "C" + ], + [ + "▁M", + "CC" + ], + [ + "ias", + "is" + ], + [ + "ia", + "sis" + ], + [ + "i", + "asis" + ], + [ + "▁Bor", + "der" + ], + [ + "▁B", + "order" + ], + [ + "▁demon", + "s" + ], + [ + "▁demo", + "ns" + ], + [ + "▁dem", + "ons" + ], + [ + "▁de", + "mons" + ], + [ + "▁rep", + "uls" + ], + [ + "▁plate", + "au" + ], + [ + "▁Rel", + "igion" + ], + [ + "▁lic", + "ensing" + ], + [ + "le", + "an" + ], + [ + "l", + "ean" + ], + [ + "wi", + "ll" + ], + [ + "w", + "ill" + ], + [ + "▁Ti", + "p" + ], + [ + "▁T", + "ip" + ], + [ + "▁Yu", + "c" + ], + [ + "▁Y", + "uc" + ], + [ + "▁ca", + "f" + ], + [ + "▁c", + "af" + ], + [ + "van", + "ce" + ], + [ + "va", + "nce" + ], + [ + "v", + "ance" + ], + [ + "▁182", + "5" + ], + [ + "▁18", + "25" + ], + [ + "▁Ed", + "en" + ], + [ + "▁E", + "den" + ], + [ + "▁Los", + "s" + ], + [ + "▁Lo", + "ss" + ], + [ + "▁L", + "oss" + ], + [ + "▁de", + "af" + ], + [ + "ector", + "s" + ], + [ + "ect", + "ors" + ], + [ + "water", + "s" + ], + [ + "wa", + "ters" + ], + [ + "w", + "aters" + ], + [ + "worth", + "y" + ], + [ + "w", + "orthy" + ], + [ + "▁pl", + "aza" + ], + [ + "▁recip", + "e" + ], + [ + "▁rec", + "ipe" + ], + [ + "▁coin", + "age" + ], + [ + "▁lower", + "ing" + ], + [ + "▁low", + "ering" + ], + [ + "▁explosive", + "s" + ], + [ + "▁explos", + "ives" + ], + [ + "▁bu", + "g" + ], + [ + "▁b", + "ug" + ], + [ + "▁Hit", + "s" + ], + [ + "▁Hi", + "ts" + ], + [ + "▁H", + "its" + ], + [ + "▁od", + "or" + ], + [ + "▁ra", + "ll" + ], + [ + "▁r", + "all" + ], + [ + "▁pick", + "s" + ], + [ + "▁pic", + "ks" + ], + [ + "▁p", + "icks" + ], + [ + "▁offering", + "s" + ], + [ + "▁offer", + "ings" + ], + [ + "iy", + "è" + ], + [ + "i", + "yè" + ], + [ + "hol", + "e" + ], + [ + "ho", + "le" + ], + [ + "h", + "ole" + ], + [ + "▁SE", + "C" + ], + [ + "▁S", + "EC" + ], + [ + "▁Kel", + "l" + ], + [ + "▁Ke", + "ll" + ], + [ + "▁K", + "ell" + ], + [ + "▁Rub", + "y" + ], + [ + "▁Ru", + "by" + ], + [ + "▁S", + "iege" + ], + [ + "▁catalog", + "ue" + ], + [ + "▁catal", + "ogue" + ], + [ + "▁Parliament", + "ary" + ], + [ + "▁b", + "unch" + ], + [ + "▁rum", + "ours" + ], + [ + "▁pro", + "claim" + ], + [ + "▁treat", + "ies" + ], + [ + "5", + ")" + ], + [ + "▁Dra", + "m" + ], + [ + "▁Dr", + "am" + ], + [ + "▁D", + "ram" + ], + [ + "▁na", + "ve" + ], + [ + "▁n", + "ave" + ], + [ + "▁Th", + "reat" + ], + [ + "agement", + "s" + ], + [ + "age", + "ments" + ], + [ + "ag", + "ements" + ], + [ + "▁carbohyd", + "rates" + ], + [ + "ys", + "ics" + ], + [ + "▁exile", + "d" + ], + [ + "▁ex", + "iled" + ], + [ + "▁out", + "right" + ], + [ + "▁Review", + "ers" + ], + [ + "▁west", + "bound" + ], + [ + "▁exceptional", + "ly" + ], + [ + "▁exception", + "ally" + ], + [ + "▁installation", + "s" + ], + [ + "▁install", + "ations" + ], + [ + "í", + "s" + ], + [ + "ia", + "z" + ], + [ + "i", + "az" + ], + [ + "▁Ph", + "el" + ], + [ + "▁P", + "hel" + ], + [ + "▁crack", + "s" + ], + [ + "▁cr", + "acks" + ], + [ + "▁c", + "racks" + ], + [ + "▁Person", + "a" + ], + [ + "▁Pers", + "ona" + ], + [ + "▁photograph", + "ed" + ], + [ + "▁phot", + "ographed" + ], + [ + "fa", + "l" + ], + [ + "f", + "al" + ], + [ + "▁17", + "3" + ], + [ + "▁cha", + "t" + ], + [ + "▁ch", + "at" + ], + [ + "▁c", + "hat" + ], + [ + "▁El", + "vis" + ], + [ + "▁Tor", + "ch" + ], + [ + "▁shrub", + "s" + ], + [ + "▁sh", + "rubs" + ], + [ + "▁Th", + "éâtre" + ], + [ + "▁Inter", + "active" + ], + [ + "▁T", + "z" + ], + [ + "iol", + "a" + ], + [ + "io", + "la" + ], + [ + "i", + "ola" + ], + [ + "icate", + "s" + ], + [ + "ica", + "tes" + ], + [ + "ic", + "ates" + ], + [ + "▁Land", + "s" + ], + [ + "▁Lan", + "ds" + ], + [ + "▁L", + "ands" + ], + [ + "▁boot", + "s" + ], + [ + "▁bo", + "ots" + ], + [ + "▁st", + "ricken" + ], + [ + "í", + "o" + ], + [ + "▁182", + "9" + ], + [ + "▁18", + "29" + ], + [ + "▁Him", + "m" + ], + [ + "▁Hi", + "mm" + ], + [ + "▁H", + "imm" + ], + [ + "▁West", + "on" + ], + [ + "▁Wes", + "ton" + ], + [ + "▁We", + "ston" + ], + [ + "▁W", + "eston" + ], + [ + "oubted", + "ly" + ], + [ + "▁Stan", + "ton" + ], + [ + "▁St", + "anton" + ], + [ + "▁Av", + "ailable" + ], + [ + "▁Georget", + "own" + ], + [ + "▁George", + "town" + ], + [ + "▁inter", + "chang" + ], + [ + "aj", + "e" + ], + [ + "a", + "je" + ], + [ + "ign", + "y" + ], + [ + "ig", + "ny" + ], + [ + "▁18", + "," + ], + [ + "▁1", + "8," + ], + [ + "▁af", + "ore" + ], + [ + "▁a", + "fore" + ], + [ + "▁ap", + "ost" + ], + [ + "▁a", + "post" + ], + [ + "▁merc", + "y" + ], + [ + "▁mer", + "cy" + ], + [ + "ourn", + "ing" + ], + [ + "our", + "ning" + ], + [ + "▁Rel", + "ief" + ], + [ + "▁culmin", + "ating" + ], + [ + "▁sch", + "izophren" + ], + [ + "j", + "m" + ], + [ + "▁S", + "W" + ], + [ + "▁Ni", + "t" + ], + [ + "▁N", + "it" + ], + [ + "ience", + "d" + ], + [ + "ien", + "ced" + ], + [ + "i", + "enced" + ], + [ + "▁Byr", + "on" + ], + [ + "▁By", + "ron" + ], + [ + "▁Sand", + "ers" + ], + [ + "▁San", + "ders" + ], + [ + "▁any", + "more" + ], + [ + "▁correspond", + "s" + ], + [ + "▁W", + "S" + ], + [ + "▁", + "WS" + ], + [ + "on", + "ut" + ], + [ + "o", + "nut" + ], + [ + "op", + "ic" + ], + [ + "▁ju", + "n" + ], + [ + "▁j", + "un" + ], + [ + "omb", + "at" + ], + [ + "om", + "bat" + ], + [ + "▁Cha", + "t" + ], + [ + "▁Ch", + "at" + ], + [ + "▁C", + "hat" + ], + [ + "▁Hir", + "os" + ], + [ + "▁Hi", + "ros" + ], + [ + "▁incentive", + "s" + ], + [ + "▁incent", + "ives" + ], + [ + "▁Ya", + "r" + ], + [ + "▁Y", + "ar" + ], + [ + "▁Hit", + "ch" + ], + [ + "▁H", + "itch" + ], + [ + "▁ret", + "al" + ], + [ + "▁re", + "tal" + ], + [ + "enge", + "ance" + ], + [ + "▁time", + "line" + ], + [ + "▁tim", + "eline" + ], + [ + "▁elong", + "ated" + ], + [ + "'", + "'" + ], + [ + "bra", + "te" + ], + [ + "br", + "ate" + ], + [ + "b", + "rate" + ], + [ + "▁bas", + "t" + ], + [ + "▁ba", + "st" + ], + [ + "▁b", + "ast" + ], + [ + "▁", + "bast" + ], + [ + "▁sand", + "y" + ], + [ + "▁san", + "dy" + ], + [ + "▁s", + "andy" + ], + [ + "▁no", + "d" + ], + [ + "▁n", + "od" + ], + [ + "ala", + "ch" + ], + [ + "al", + "ach" + ], + [ + "ary", + "n" + ], + [ + "ar", + "yn" + ], + [ + "▁Ri", + "t" + ], + [ + "▁R", + "it" + ], + [ + "en", + "ium" + ], + [ + "▁flaw", + "s" + ], + [ + "▁fl", + "aws" + ], + [ + "▁hard", + "s" + ], + [ + "▁har", + "ds" + ], + [ + "▁h", + "ards" + ], + [ + "▁count", + "less" + ], + [ + "▁optim", + "istic" + ], + [ + "▁unf", + "inished" + ], + [ + "▁dreadn", + "ought" + ], + [ + "wa", + "l" + ], + [ + "w", + "al" + ], + [ + "▁I", + "F" + ], + [ + "▁", + "IF" + ], + [ + "▁Er", + "a" + ], + [ + "▁E", + "ra" + ], + [ + "▁Ge", + "ar" + ], + [ + "▁G", + "ear" + ], + [ + "▁for", + "k" + ], + [ + "▁f", + "ork" + ], + [ + "▁", + "fork" + ], + [ + "▁no", + "on" + ], + [ + "▁n", + "oon" + ], + [ + "▁", + "noon" + ], + [ + "▁un", + "iqu" + ], + [ + "▁crash", + "es" + ], + [ + "▁cr", + "ashes" + ], + [ + "▁kidney", + "s" + ], + [ + "▁module", + "s" + ], + [ + "▁mod", + "ules" + ], + [ + "▁concurrent", + "ly" + ], + [ + "▁concur", + "rently" + ], + [ + "▁functional", + "ity" + ], + [ + "▁function", + "ality" + ], + [ + "▁rac", + "k" + ], + [ + "▁ra", + "ck" + ], + [ + "▁r", + "ack" + ], + [ + "▁", + "rack" + ], + [ + "▁wh", + "is" + ], + [ + "▁w", + "his" + ], + [ + "▁rese", + "nt" + ], + [ + "▁res", + "ent" + ], + [ + "▁", + "resent" + ], + [ + "▁rem", + "aster" + ], + [ + "▁re", + "master" + ], + [ + "▁Tul", + "s" + ], + [ + "▁Tu", + "ls" + ], + [ + "▁T", + "uls" + ], + [ + "imet", + "ime" + ], + [ + "ime", + "time" + ], + [ + "im", + "etime" + ], + [ + "▁Prime", + "time" + ], + [ + "▁Prim", + "etime" + ], + [ + "▁Pr", + "imetime" + ], + [ + "▁disco", + "urse" + ], + [ + "▁disc", + "ourse" + ], + [ + "▁pres", + "chool" + ], + [ + "▁pedest", + "rian" + ], + [ + "os", + "c" + ], + [ + "o", + "sc" + ], + [ + "ows", + "hip" + ], + [ + "ow", + "ship" + ], + [ + "▁dolph", + "ins" + ], + [ + "▁dwell", + "ing" + ], + [ + "▁dw", + "elling" + ], + [ + "▁", + "♭" + ], + [ + "▁Mari", + "n" + ], + [ + "▁Mar", + "in" + ], + [ + "▁Ma", + "rin" + ], + [ + "▁M", + "arin" + ], + [ + "▁Van", + "der" + ], + [ + "▁V", + "ander" + ], + [ + "▁ref", + "urb" + ], + [ + "▁den", + "ounced" + ], + [ + "▁ret", + "ention" + ], + [ + "ê", + "te" + ], + [ + "ek", + "ing" + ], + [ + "e", + "king" + ], + [ + "▁liter", + "al" + ], + [ + "▁lit", + "eral" + ], + [ + "▁esc", + "aping" + ], + [ + "▁18", + "14" + ], + [ + "▁vo", + "id" + ], + [ + "▁v", + "oid" + ], + [ + "▁generate", + "s" + ], + [ + "▁genera", + "tes" + ], + [ + "▁gener", + "ates" + ], + [ + "▁gene", + "rates" + ], + [ + "▁harvest", + "ed" + ], + [ + "▁harv", + "ested" + ], + [ + "▁chromos", + "ome" + ], + [ + "▁undert", + "aking" + ], + [ + "▁proportion", + "al" + ], + [ + "▁proport", + "ional" + ], + [ + "enc", + "ia" + ], + [ + "en", + "cia" + ], + [ + "iti", + "us" + ], + [ + "it", + "ius" + ], + [ + "▁183", + "3" + ], + [ + "▁18", + "33" + ], + [ + "fin", + "ger" + ], + [ + "f", + "inger" + ], + [ + "▁coh", + "es" + ], + [ + "▁co", + "hes" + ], + [ + "▁sub", + "pl" + ], + [ + "▁Moz", + "amb" + ], + [ + "▁Shir", + "ley" + ], + [ + "▁fev", + "riye" + ], + [ + "ic", + "ultural" + ], + [ + "▁home", + "work" + ], + [ + "▁hom", + "ework" + ], + [ + "▁Express", + "way" + ], + [ + "f", + "ilm" + ], + [ + "umm", + "y" + ], + [ + "um", + "my" + ], + [ + "▁So", + "f" + ], + [ + "▁S", + "of" + ], + [ + "anna", + "h" + ], + [ + "ann", + "ah" + ], + [ + "▁bu", + "bb" + ], + [ + "▁b", + "ubb" + ], + [ + "iat", + "ing" + ], + [ + "ia", + "ting" + ], + [ + "i", + "ating" + ], + [ + "itive", + "s" + ], + [ + "iti", + "ves" + ], + [ + "it", + "ives" + ], + [ + "▁Rome", + "o" + ], + [ + "▁Rom", + "eo" + ], + [ + "▁Wis", + "den" + ], + [ + "▁pand", + "an" + ], + [ + "▁pan", + "dan" + ], + [ + "▁p", + "andan" + ], + [ + "▁impl", + "ant" + ], + [ + "▁im", + "plant" + ], + [ + "▁strike", + "r" + ], + [ + "▁strik", + "er" + ], + [ + "▁stri", + "ker" + ], + [ + "▁str", + "iker" + ], + [ + "▁text", + "ile" + ], + [ + "▁fertil", + "izer" + ], + [ + "D", + "s" + ], + [ + "ec", + "d" + ], + [ + "▁Wy", + "n" + ], + [ + "▁W", + "yn" + ], + [ + "▁Kem", + "p" + ], + [ + "▁Ke", + "mp" + ], + [ + "▁no", + "ir" + ], + [ + "▁n", + "oir" + ], + [ + "▁pou", + "l" + ], + [ + "▁po", + "ul" + ], + [ + "▁p", + "oul" + ], + [ + "▁Sch", + "ne" + ], + [ + "▁Ti", + "l" + ], + [ + "▁T", + "il" + ], + [ + "▁Ba", + "ja" + ], + [ + "▁B", + "aja" + ], + [ + "▁ev", + "id" + ], + [ + "▁Rock", + "ef" + ], + [ + "▁overh", + "e" + ], + [ + "▁over", + "he" + ], + [ + "▁Fréd", + "éric" + ], + [ + "▁intens", + "ify" + ], + [ + "▁advisor", + "ies" + ], + [ + "▁advis", + "ories" + ], + [ + "▁Catholic", + "ism" + ], + [ + "▁22", + "5" + ], + [ + "▁2", + "25" + ], + [ + "▁Zh", + "ou" + ], + [ + "▁Z", + "hou" + ], + [ + "▁Cal", + "iph" + ], + [ + "▁Sl", + "ayer" + ], + [ + "▁S", + "layer" + ], + [ + "▁Ut", + "t" + ], + [ + "▁U", + "tt" + ], + [ + "▁184", + "3" + ], + [ + "▁18", + "43" + ], + [ + "▁Mac", + "don" + ], + [ + "▁Parad", + "ise" + ], + [ + "▁cere", + "bral" + ], + [ + "▁pap", + "a" + ], + [ + "▁pa", + "pa" + ], + [ + "▁p", + "apa" + ], + [ + "▁2009", + "." + ], + [ + "▁200", + "9." + ], + [ + "▁Bro", + "ken" + ], + [ + "▁Br", + "oken" + ], + [ + "▁re", + "work" + ], + [ + "▁r", + "ework" + ], + [ + "▁examine", + "s" + ], + [ + "▁exam", + "ines" + ], + [ + "▁23", + "5" + ], + [ + "▁2", + "35" + ], + [ + "grim", + "s" + ], + [ + "gr", + "ims" + ], + [ + "▁bell", + "s" + ], + [ + "▁bel", + "ls" + ], + [ + "▁b", + "ells" + ], + [ + "▁st", + "aging" + ], + [ + "▁weight", + "s" + ], + [ + "▁weigh", + "ts" + ], + [ + "▁we", + "ights" + ], + [ + "▁phys", + "iological" + ], + [ + "fu", + "s" + ], + [ + "f", + "us" + ], + [ + "▁ne", + "c" + ], + [ + "▁n", + "ec" + ], + [ + "▁Man", + "a" + ], + [ + "▁Ma", + "na" + ], + [ + "▁M", + "ana" + ], + [ + "gov", + "ern" + ], + [ + "go", + "vern" + ], + [ + "istic", + "e" + ], + [ + "ist", + "ice" + ], + [ + "▁appar", + "atus" + ], + [ + "▁Presbyter", + "ian" + ], + [ + "▁Pra", + "yer" + ], + [ + "▁Pr", + "ayer" + ], + [ + "▁Dr", + "u" + ], + [ + "▁D", + "ru" + ], + [ + "▁or", + "ch" + ], + [ + "under", + "s" + ], + [ + "und", + "ers" + ], + [ + "un", + "ders" + ], + [ + "▁car", + "cin" + ], + [ + "▁frame", + "d" + ], + [ + "▁fra", + "med" + ], + [ + "▁fr", + "amed" + ], + [ + "▁nucle", + "i" + ], + [ + "▁spell", + "s" + ], + [ + "▁sp", + "ells" + ], + [ + "▁Claren", + "ce" + ], + [ + "▁Clare", + "nce" + ], + [ + "▁Cla", + "rence" + ], + [ + "▁diagn", + "ose" + ], + [ + "▁harvest", + "ing" + ], + [ + "▁Yu", + "k" + ], + [ + "▁Y", + "uk" + ], + [ + "anth", + "a" + ], + [ + "ant", + "ha" + ], + [ + "an", + "tha" + ], + [ + "▁got", + "ten" + ], + [ + "▁g", + "otten" + ], + [ + "▁neg", + "lig" + ], + [ + "▁parad", + "ox" + ], + [ + "▁Bism", + "arck" + ], + [ + "arr", + "o" + ], + [ + "ar", + "ro" + ], + [ + "▁Gu", + "l" + ], + [ + "▁G", + "ul" + ], + [ + "▁sc", + "out" + ], + [ + "▁Mill", + "ion" + ], + [ + "▁M", + "illion" + ], + [ + "▁advance", + "ment" + ], + [ + "▁conference", + "s" + ], + [ + "▁confer", + "ences" + ], + [ + "▁disappear", + "ance" + ], + [ + "▁i", + "OS" + ], + [ + "▁ind", + "o" + ], + [ + "▁in", + "do" + ], + [ + "▁Sound", + "s" + ], + [ + "▁S", + "ounds" + ], + [ + "▁soph", + "om" + ], + [ + "▁like", + "ned" + ], + [ + "▁lik", + "ened" + ], + [ + "▁division", + "al" + ], + [ + "▁engagement", + "s" + ], + [ + "▁engage", + "ments" + ], + [ + "▁eng", + "agements" + ], + [ + "▁North", + "umberland" + ], + [ + "▁B", + "f" + ], + [ + "▁Ar", + "j" + ], + [ + "▁Va", + "mp" + ], + [ + "▁V", + "amp" + ], + [ + "▁Levi", + "ne" + ], + [ + "▁Lev", + "ine" + ], + [ + "▁Ses", + "ame" + ], + [ + "▁Spee", + "ch" + ], + [ + "▁Spe", + "ech" + ], + [ + "▁overth", + "row" + ], + [ + "fl", + "e" + ], + [ + "f", + "le" + ], + [ + "▁Rh", + "e" + ], + [ + "▁R", + "he" + ], + [ + "▁Eva", + "l" + ], + [ + "▁Ev", + "al" + ], + [ + "▁E", + "val" + ], + [ + "print", + "s" + ], + [ + "pr", + "ints" + ], + [ + "mans", + "hip" + ], + [ + "man", + "ship" + ], + [ + "▁Hubb", + "le" + ], + [ + "▁H", + "ubble" + ], + [ + "▁sight", + "ed" + ], + [ + "▁Doc", + "ument" + ], + [ + "▁Cunning", + "ham" + ], + [ + "ij", + "a" + ], + [ + "i", + "ja" + ], + [ + "ak", + "ov" + ], + [ + "a", + "kov" + ], + [ + "her", + "ly" + ], + [ + "▁adj", + "o" + ], + [ + "▁ad", + "jo" + ], + [ + "▁Ches", + "s" + ], + [ + "▁Che", + "ss" + ], + [ + "▁Ch", + "ess" + ], + [ + "▁C", + "hess" + ], + [ + "▁El", + "iot" + ], + [ + "▁born", + "e" + ], + [ + "▁bor", + "ne" + ], + [ + "▁b", + "orne" + ], + [ + "▁", + "borne" + ], + [ + "▁foc", + "al" + ], + [ + "▁fo", + "cal" + ], + [ + "▁f", + "ocal" + ], + [ + "▁Nut", + "rition" + ], + [ + "▁notice", + "able" + ], + [ + "▁18", + "10" + ], + [ + "▁ble", + "w" + ], + [ + "▁bl", + "ew" + ], + [ + "▁b", + "lew" + ], + [ + "▁Him", + "al" + ], + [ + "▁Hi", + "mal" + ], + [ + "▁H", + "imal" + ], + [ + "▁fa", + "una" + ], + [ + "▁Lad", + "ies" + ], + [ + "▁Mick", + "ey" + ], + [ + "▁Mic", + "key" + ], + [ + "▁Scout", + "s" + ], + [ + "▁Sc", + "outs" + ], + [ + "▁Galile", + "o" + ], + [ + "▁Roman", + "tic" + ], + [ + "▁Rom", + "antic" + ], + [ + "▁critic", + "izing" + ], + [ + "ante", + "s" + ], + [ + "ant", + "es" + ], + [ + "an", + "tes" + ], + [ + "▁Sl", + "am" + ], + [ + "▁S", + "lam" + ], + [ + "▁Bryan", + "t" + ], + [ + "▁Bry", + "ant" + ], + [ + "▁den", + "ial" + ], + [ + "▁hy", + "phae" + ], + [ + "▁Advis", + "ory" + ], + [ + "▁observe", + "s" + ], + [ + "▁observ", + "es" + ], + [ + "▁obs", + "erves" + ], + [ + "▁Wander", + "ers" + ], + [ + "▁archae", + "ologists" + ], + [ + "▁di", + "p" + ], + [ + "▁d", + "ip" + ], + [ + "▁Tor", + "n" + ], + [ + "▁T", + "orn" + ], + [ + "▁wors", + "h" + ], + [ + "▁wor", + "sh" + ], + [ + "▁Highland", + "s" + ], + [ + "▁High", + "lands" + ], + [ + "▁ped", + "iatric" + ], + [ + "▁predict", + "able" + ], + [ + "▁T", + "R" + ], + [ + "▁", + "TR" + ], + [ + "ing", + "e" + ], + [ + "in", + "ge" + ], + [ + "und", + "a" + ], + [ + "un", + "da" + ], + [ + "▁Al", + "g" + ], + [ + "▁Cul", + "l" + ], + [ + "▁Cu", + "ll" + ], + [ + "▁C", + "ull" + ], + [ + "▁Nik", + "ol" + ], + [ + "▁run", + "off" + ], + [ + "▁intr", + "ins" + ], + [ + "▁Thanks", + "giving" + ], + [ + "▁Ta", + "ft" + ], + [ + "▁T", + "aft" + ], + [ + "▁extra", + "s" + ], + [ + "▁extr", + "as" + ], + [ + "▁ext", + "ras" + ], + [ + "▁centre", + "d" + ], + [ + "▁cent", + "red" + ], + [ + "▁sick", + "ness" + ], + [ + "▁Municip", + "al" + ], + [ + "v", + "re" + ], + [ + "fi", + "ll" + ], + [ + "f", + "ill" + ], + [ + "▁Ky", + "l" + ], + [ + "▁K", + "yl" + ], + [ + "fr", + "ame" + ], + [ + "▁un", + "ac" + ], + [ + "▁Tw", + "ilight" + ], + [ + "ko", + "v" + ], + [ + "k", + "ov" + ], + [ + "ount", + "y" + ], + [ + "oun", + "ty" + ], + [ + "▁Res", + "c" + ], + [ + "▁Re", + "sc" + ], + [ + "▁R", + "esc" + ], + [ + "▁sw", + "amp" + ], + [ + "▁Fact", + "or" + ], + [ + "▁Fac", + "tor" + ], + [ + "▁Fa", + "ctor" + ], + [ + "▁refuge", + "e" + ], + [ + "ardi", + "n" + ], + [ + "ard", + "in" + ], + [ + "ar", + "din" + ], + [ + "pers", + "on" + ], + [ + "per", + "son" + ], + [ + "p", + "erson" + ], + [ + "▁Man", + "ual" + ], + [ + "▁Winn", + "ipe" + ], + [ + "▁import", + "s" + ], + [ + "▁imp", + "orts" + ], + [ + "▁im", + "ports" + ], + [ + "▁depend", + "ed" + ], + [ + "▁dep", + "ended" + ], + [ + "▁priorit", + "ies" + ], + [ + "▁prior", + "ities" + ], + [ + "ga", + "in" + ], + [ + "g", + "ain" + ], + [ + "ow", + "itz" + ], + [ + "▁Sto", + "ke" + ], + [ + "▁St", + "oke" + ], + [ + "▁sec", + "re" + ], + [ + "▁corps", + "e" + ], + [ + "▁corp", + "se" + ], + [ + "▁biz", + "arre" + ], + [ + "▁consp", + "ic" + ], + [ + "▁indicator", + "s" + ], + [ + "▁indic", + "ators" + ], + [ + "---", + "-" + ], + [ + "--", + "--" + ], + [ + "-", + "---" + ], + [ + "▁eg", + "o" + ], + [ + "▁e", + "go" + ], + [ + "▁Bet", + "a" + ], + [ + "▁Be", + "ta" + ], + [ + "▁B", + "eta" + ], + [ + "▁Eri", + "n" + ], + [ + "▁Er", + "in" + ], + [ + "▁E", + "rin" + ], + [ + "▁per", + "t" + ], + [ + "▁p", + "ert" + ], + [ + "▁", + "pert" + ], + [ + "inem", + "ent" + ], + [ + "ine", + "ment" + ], + [ + "in", + "ement" + ], + [ + "▁Sim", + "ple" + ], + [ + "▁team", + "ed" + ], + [ + "▁tea", + "med" + ], + [ + "▁te", + "amed" + ], + [ + "▁Gett", + "ing" + ], + [ + "▁Get", + "ting" + ], + [ + "▁MacD", + "onald" + ], + [ + "▁Under", + "taker" + ], + [ + "▁transc", + "ript" + ], + [ + "▁trans", + "cript" + ], + [ + "hi", + "m" + ], + [ + "h", + "im" + ], + [ + "uv", + "e" + ], + [ + "u", + "ve" + ], + [ + "▁Vo", + "cal" + ], + [ + "▁V", + "ocal" + ], + [ + "▁Play", + "ing" + ], + [ + "▁Pl", + "aying" + ], + [ + "▁Where", + "as" + ], + [ + "▁Rodrig", + "uez" + ], + [ + "▁can", + "vas" + ], + [ + "▁uncon", + "t" + ], + [ + "▁unc", + "ont" + ], + [ + "▁un", + "cont" + ], + [ + "▁appro", + "ve" + ], + [ + "▁initi", + "ate" + ], + [ + "▁init", + "iate" + ], + [ + "▁det", + "ention" + ], + [ + "▁east", + "bound" + ], + [ + "▁inv", + "ite" + ], + [ + "▁ambition", + "s" + ], + [ + "▁ambit", + "ions" + ], + [ + "▁amb", + "itions" + ], + [ + "▁concur", + "rency" + ], + [ + "▁Di", + "x" + ], + [ + "▁D", + "ix" + ], + [ + "osp", + "ace" + ], + [ + "o", + "space" + ], + [ + "▁Hero", + "d" + ], + [ + "▁Her", + "od" + ], + [ + "▁He", + "rod" + ], + [ + "▁mas", + "on" + ], + [ + "▁ma", + "son" + ], + [ + "▁m", + "ason" + ], + [ + "▁Cor", + "inth" + ], + [ + "▁Ever", + "ett" + ], + [ + "▁Eve", + "rett" + ], + [ + "▁Sab", + "bath" + ], + [ + "▁fulfill", + "ed" + ], + [ + "▁fulf", + "illed" + ], + [ + "▁adequate", + "ly" + ], + [ + "▁adequ", + "ately" + ], + [ + "u", + "h" + ], + [ + "amo", + "n" + ], + [ + "am", + "on" + ], + [ + "a", + "mon" + ], + [ + "▁pun", + "t" + ], + [ + "▁p", + "unt" + ], + [ + "▁Mat", + "ch" + ], + [ + "▁M", + "atch" + ], + [ + "▁respect", + "s" + ], + [ + "▁resp", + "ects" + ], + [ + "▁ground", + "water" + ], + [ + "▁transfer", + "ring" + ], + [ + "go", + "od" + ], + [ + "g", + "ood" + ], + [ + "▁178", + "0" + ], + [ + "▁17", + "80" + ], + [ + "▁cod", + "ing" + ], + [ + "▁co", + "ding" + ], + [ + "▁c", + "oding" + ], + [ + "▁diss", + "em" + ], + [ + "▁Anti", + "o" + ], + [ + "▁Ant", + "io" + ], + [ + "▁bra", + "ve" + ], + [ + "▁br", + "ave" + ], + [ + "artment", + "s" + ], + [ + "art", + "ments" + ], + [ + "▁Alban", + "ia" + ], + [ + "▁Alb", + "ania" + ], + [ + "int", + "estinal" + ], + [ + "▁end", + "urance" + ], + [ + "▁request", + "ing" + ], + [ + "ée", + "s" + ], + [ + "é", + "es" + ], + [ + "▁S", + "O" + ], + [ + "sh", + "op" + ], + [ + "s", + "hop" + ], + [ + "▁gro", + "om" + ], + [ + "▁gr", + "oom" + ], + [ + "▁g", + "room" + ], + [ + "▁uns", + "ure" + ], + [ + "▁dep", + "leted" + ], + [ + "▁ev", + "olving" + ], + [ + "▁Mil", + "waukee" + ], + [ + "▁broad", + "side" + ], + [ + "▁real", + "izing" + ], + [ + "▁master", + "piece" + ], + [ + "▁simultane", + "ous" + ], + [ + "▁acid", + "ic" + ], + [ + "▁dis", + "organ" + ], + [ + "▁preced", + "ent" + ], + [ + "▁tribut", + "ary" + ], + [ + "▁tri", + "angular" + ], + [ + "▁R", + "A" + ], + [ + "▁", + "RA" + ], + [ + "▁17", + "," + ], + [ + "▁1", + "7," + ], + [ + "▁opening", + "s" + ], + [ + "▁open", + "ings" + ], + [ + "▁subsid", + "ies" + ], + [ + "▁camoufl", + "age" + ], + [ + "▁pollut", + "ants" + ], + [ + "ich", + "o" + ], + [ + "ic", + "ho" + ], + [ + "i", + "cho" + ], + [ + "ith", + "m" + ], + [ + "it", + "hm" + ], + [ + "i", + "thm" + ], + [ + "▁cock", + "pit" + ], + [ + "▁effic", + "acy" + ], + [ + "▁Cornwall", + "is" + ], + [ + "▁light", + "house" + ], + [ + "▁l", + "ighthouse" + ], + [ + "▁intersect", + "ing" + ], + [ + "▁accomplish", + "ments" + ], + [ + "▁Ta", + "c" + ], + [ + "▁T", + "ac" + ], + [ + "▁179", + "9" + ], + [ + "▁17", + "99" + ], + [ + "▁Par", + "agu" + ], + [ + "ablish", + "ed" + ], + [ + "abl", + "ished" + ], + [ + "ab", + "lished" + ], + [ + "▁Okin", + "awa" + ], + [ + "▁Pro", + "ceed" + ], + [ + "▁analog", + "y" + ], + [ + "▁anal", + "ogy" + ], + [ + "▁outbreak", + "s" + ], + [ + "▁Contin", + "uing" + ], + [ + "▁institute", + "d" + ], + [ + "▁instit", + "uted" + ], + [ + "▁compromise", + "d" + ], + [ + "▁comprom", + "ised" + ], + [ + "▁vari", + "ability" + ], + [ + "▁var", + "iability" + ], + [ + "▁correspond", + "ent" + ], + [ + "▁", + "ˈ" + ], + [ + "uff", + "s" + ], + [ + "uf", + "fs" + ], + [ + "▁Pet", + "it" + ], + [ + "▁Whe", + "el" + ], + [ + "▁exc", + "er" + ], + [ + "▁ex", + "cer" + ], + [ + "▁unre", + "l" + ], + [ + "▁un", + "rel" + ], + [ + "▁Maj", + "esty" + ], + [ + "▁reign", + "ing" + ], + [ + "▁Ukrain", + "ian" + ], + [ + "▁repeat", + "ing" + ], + [ + "▁repe", + "ating" + ], + [ + "▁(1", + "6" + ], + [ + "▁(", + "16" + ], + [ + "▁AI", + "F" + ], + [ + "▁A", + "IF" + ], + [ + "▁No", + "el" + ], + [ + "▁fo", + "st" + ], + [ + "▁f", + "ost" + ], + [ + "▁Gan", + "es" + ], + [ + "▁Ga", + "nes" + ], + [ + "▁G", + "anes" + ], + [ + "▁W", + "ould" + ], + [ + "Far", + "lane" + ], + [ + "ifer", + "ous" + ], + [ + "ife", + "rous" + ], + [ + "if", + "erous" + ], + [ + "▁stall", + "ed" + ], + [ + "▁stal", + "led" + ], + [ + "▁st", + "alled" + ], + [ + "▁strip", + "es" + ], + [ + "▁stri", + "pes" + ], + [ + "▁str", + "ipes" + ], + [ + "▁h", + "Pa" + ], + [ + "▁Chi", + "r" + ], + [ + "▁Ch", + "ir" + ], + [ + "▁Ah", + "mad" + ], + [ + "▁les", + "ions" + ], + [ + "▁Mater", + "ial" + ], + [ + "▁Mate", + "rial" + ], + [ + "▁mon", + "opoly" + ], + [ + "▁disc", + "retion" + ], + [ + "▁Her", + "c" + ], + [ + "▁H", + "erc" + ], + [ + "▁cr", + "ick" + ], + [ + "▁c", + "rick" + ], + [ + "▁W", + "emble" + ], + [ + "▁Land", + "ing" + ], + [ + "▁Lan", + "ding" + ], + [ + "▁pian", + "ist" + ], + [ + "▁server", + "s" + ], + [ + "▁serve", + "rs" + ], + [ + "▁serv", + "ers" + ], + [ + "▁ser", + "vers" + ], + [ + "▁kil", + "ogram" + ], + [ + "▁compuls", + "ory" + ], + [ + "▁defendant", + "s" + ], + [ + "▁defend", + "ants" + ], + [ + "▁sacrifice", + "s" + ], + [ + "▁sacrific", + "es" + ], + [ + "AR", + "S" + ], + [ + "A", + "RS" + ], + [ + "cl", + "ub" + ], + [ + "▁We", + "t" + ], + [ + "▁W", + "et" + ], + [ + "▁ran", + "s" + ], + [ + "▁ra", + "ns" + ], + [ + "▁r", + "ans" + ], + [ + "▁", + "rans" + ], + [ + "▁Mort", + "al" + ], + [ + "▁Mor", + "tal" + ], + [ + "▁aff", + "irm" + ], + [ + "▁row", + "ing" + ], + [ + "▁ro", + "wing" + ], + [ + "▁r", + "owing" + ], + [ + "▁", + "rowing" + ], + [ + "▁Wemble", + "y" + ], + [ + "▁ext", + "ingu" + ], + [ + "▁ex", + "tingu" + ], + [ + "▁Crom", + "well" + ], + [ + "▁Compan", + "ies" + ], + [ + "ig", + "i" + ], + [ + "i", + "gi" + ], + [ + "yo", + "u" + ], + [ + "y", + "ou" + ], + [ + "ina", + "r" + ], + [ + "in", + "ar" + ], + [ + "i", + "nar" + ], + [ + "▁14", + "9" + ], + [ + "▁1", + "49" + ], + [ + "agh", + "er" + ], + [ + "ag", + "her" + ], + [ + "opot", + "am" + ], + [ + "▁Bren", + "t" + ], + [ + "▁Bre", + "nt" + ], + [ + "▁Br", + "ent" + ], + [ + "▁B", + "rent" + ], + [ + "▁input", + "s" + ], + [ + "▁Compar", + "ed" + ], + [ + "▁Comp", + "ared" + ], + [ + "▁trauma", + "tic" + ], + [ + "▁tra", + "umatic" + ], + [ + "lyn", + "n" + ], + [ + "ogl", + "ob" + ], + [ + "ut", + "ies" + ], + [ + "u", + "ties" + ], + [ + "▁Pe", + "ggy" + ], + [ + "▁memorial", + "s" + ], + [ + "▁memor", + "ials" + ], + [ + "boy", + "s" + ], + [ + "bo", + "ys" + ], + [ + "b", + "oys" + ], + [ + "F", + "rans" + ], + [ + "▁180", + "1" + ], + [ + "▁Bi", + "an" + ], + [ + "▁B", + "ian" + ], + [ + "oun", + "cing" + ], + [ + "▁super", + "b" + ], + [ + "▁sup", + "erb" + ], + [ + "▁Res", + "ults" + ], + [ + "it", + "ness" + ], + [ + "▁br", + "ide" + ], + [ + "▁b", + "ride" + ], + [ + "▁Hero", + "es" + ], + [ + "▁Her", + "oes" + ], + [ + "▁Monte", + "r" + ], + [ + "▁Mont", + "er" + ], + [ + "▁Mon", + "ter" + ], + [ + "▁eleg", + "ant" + ], + [ + "▁gar", + "bage" + ], + [ + "▁number", + "ing" + ], + [ + "▁n", + "umbering" + ], + [ + "▁symbol", + "ism" + ], + [ + "▁Illust", + "rated" + ], + [ + "▁13", + "," + ], + [ + "▁1", + "3," + ], + [ + "▁Humph", + "rey" + ], + [ + "▁Winnipe", + "g" + ], + [ + "▁home", + "land" + ], + [ + "▁hom", + "eland" + ], + [ + "▁anth", + "ology" + ], + [ + "▁mill", + "ennium" + ], + [ + "1", + "/" + ], + [ + "▁(", + "8" + ], + [ + "▁as", + "p" + ], + [ + "▁a", + "sp" + ], + [ + "▁", + "asp" + ], + [ + "▁Hol", + "e" + ], + [ + "▁Ho", + "le" + ], + [ + "▁H", + "ole" + ], + [ + "▁sin", + "s" + ], + [ + "▁si", + "ns" + ], + [ + "▁s", + "ins" + ], + [ + "▁Sp", + "ike" + ], + [ + "▁S", + "pike" + ], + [ + "▁bow", + "el" + ], + [ + "▁Mem", + "ory" + ], + [ + "▁Motor", + "s" + ], + [ + "▁Mot", + "ors" + ], + [ + "▁blow", + "ing" + ], + [ + "▁blo", + "wing" + ], + [ + "▁bl", + "owing" + ], + [ + "▁log", + "ging" + ], + [ + "▁lo", + "gging" + ], + [ + "▁pump", + "ing" + ], + [ + "▁tax", + "ation" + ], + [ + "▁academic", + "s" + ], + [ + "▁acad", + "emics" + ], + [ + "▁theolog", + "ical" + ], + [ + "▁the", + "ological" + ], + [ + "▁standard", + "ized" + ], + [ + "E", + "V" + ], + [ + "▁A", + "e" + ], + [ + "▁D", + "R" + ], + [ + "▁", + "DR" + ], + [ + "ouse", + "d" + ], + [ + "ous", + "ed" + ], + [ + "o", + "used" + ], + [ + "▁fu", + "ck" + ], + [ + "▁f", + "uck" + ], + [ + "▁ge", + "ology" + ], + [ + "▁wr", + "ought" + ], + [ + "▁w", + "rought" + ], + [ + "▁upgrade", + "s" + ], + [ + "▁upgr", + "ades" + ], + [ + "▁Achie", + "vement" + ], + [ + "ok", + "u" + ], + [ + "▁Ind", + "o" + ], + [ + "▁In", + "do" + ], + [ + "▁cr", + "ipp" + ], + [ + "▁c", + "ripp" + ], + [ + "▁contem", + "pt" + ], + [ + "▁cont", + "empt" + ], + [ + "▁cel", + "estial" + ], + [ + "▁Smithson", + "ian" + ], + [ + "are", + "l" + ], + [ + "ar", + "el" + ], + [ + "a", + "rel" + ], + [ + "▁Er", + "i" + ], + [ + "▁E", + "ri" + ], + [ + "▁mer", + "ge" + ], + [ + "▁Division", + "s" + ], + [ + "▁Div", + "isions" + ], + [ + "▁Mathemat", + "ics" + ], + [ + "gr", + "e" + ], + [ + "g", + "re" + ], + [ + "op", + "a" + ], + [ + "o", + "pa" + ], + [ + "▁Mus", + "s" + ], + [ + "▁Mu", + "ss" + ], + [ + "▁M", + "uss" + ], + [ + "▁jump", + "s" + ], + [ + "▁j", + "umps" + ], + [ + "▁Railway", + "s" + ], + [ + "▁Rail", + "ways" + ], + [ + "▁li", + "ability" + ], + [ + "▁l", + "iability" + ], + [ + "▁Rockef", + "eller" + ], + [ + "▁20", + "," + ], + [ + "ara", + "oh" + ], + [ + "▁Loy", + "al" + ], + [ + "▁Lo", + "yal" + ], + [ + "▁L", + "oyal" + ], + [ + "▁Tw", + "elve" + ], + [ + "▁gift", + "ed" + ], + [ + "▁gif", + "ted" + ], + [ + "▁g", + "ifted" + ], + [ + "▁cur", + "tain" + ], + [ + "▁symmet", + "ry" + ], + [ + "▁deposit", + "ion" + ], + [ + "▁depos", + "ition" + ], + [ + "▁dep", + "osition" + ], + [ + "▁Ma", + "o" + ], + [ + "▁M", + "ao" + ], + [ + "ambo", + "o" + ], + [ + "amb", + "oo" + ], + [ + "aspor", + "a" + ], + [ + "asp", + "ora" + ], + [ + "▁squ", + "ir" + ], + [ + "▁s", + "quir" + ], + [ + "▁Devil", + "s" + ], + [ + "▁Dev", + "ils" + ], + [ + "▁Mad", + "ras" + ], + [ + "▁nurse", + "ry" + ], + [ + "▁nurs", + "ery" + ], + [ + "▁remix", + "es" + ], + [ + "▁Domin", + "ique" + ], + [ + "▁Da", + "s" + ], + [ + "▁D", + "as" + ], + [ + "▁Ol", + "ga" + ], + [ + "▁Rid", + "e" + ], + [ + "▁Ri", + "de" + ], + [ + "▁R", + "ide" + ], + [ + "illa", + "rd" + ], + [ + "ill", + "ard" + ], + [ + "▁Shel", + "l" + ], + [ + "▁She", + "ll" + ], + [ + "▁Sh", + "ell" + ], + [ + "▁S", + "hell" + ], + [ + "▁pack", + "s" + ], + [ + "▁pac", + "ks" + ], + [ + "▁p", + "acks" + ], + [ + "▁Est", + "ate" + ], + [ + "▁E", + "state" + ], + [ + "▁fortune", + "s" + ], + [ + "▁fort", + "unes" + ], + [ + "▁Rest", + "oration" + ], + [ + "de", + "f" + ], + [ + "d", + "ef" + ], + [ + "▁Y", + "a" + ], + [ + "van", + "a" + ], + [ + "va", + "na" + ], + [ + "v", + "ana" + ], + [ + "▁Ar", + "r" + ], + [ + "ila", + "ge" + ], + [ + "il", + "age" + ], + [ + "▁impl", + "y" + ], + [ + "▁imp", + "ly" + ], + [ + "▁im", + "ply" + ], + [ + "▁motif", + "s" + ], + [ + "▁tempor", + "al" + ], + [ + "▁tempo", + "ral" + ], + [ + "▁Jo", + "l" + ], + [ + "▁J", + "ol" + ], + [ + "▁USS", + "R" + ], + [ + "▁cu", + "es" + ], + [ + "▁c", + "ues" + ], + [ + "▁Kle", + "in" + ], + [ + "▁amend", + "ed" + ], + [ + "▁am", + "ended" + ], + [ + "▁biom", + "ass" + ], + [ + "▁bio", + "mass" + ], + [ + "▁ident", + "ities" + ], + [ + "ge", + "m" + ], + [ + "g", + "em" + ], + [ + "pre", + "t" + ], + [ + "pr", + "et" + ], + [ + "p", + "ret" + ], + [ + "▁Amb", + "ro" + ], + [ + "▁Am", + "bro" + ], + [ + "▁Case", + "y" + ], + [ + "▁Cas", + "ey" + ], + [ + "▁Ca", + "sey" + ], + [ + "▁Lib", + "ya" + ], + [ + "▁bore", + "d" + ], + [ + "▁bor", + "ed" + ], + [ + "▁bo", + "red" + ], + [ + "▁b", + "ored" + ], + [ + "▁cit", + "ation" + ], + [ + "▁c", + "itation" + ], + [ + "▁hered", + "itary" + ], + [ + "et", + "us" + ], + [ + "▁flu", + "x" + ], + [ + "▁fl", + "ux" + ], + [ + "▁2015", + "," + ], + [ + "▁201", + "5," + ], + [ + "▁Jud", + "ith" + ], + [ + "▁Ph", + "antom" + ], + [ + "▁finish", + "es" + ], + [ + "▁fin", + "ishes" + ], + [ + "▁Economic", + "s" + ], + [ + "▁Econom", + "ics" + ], + [ + "▁pet", + "roleum" + ], + [ + "7", + "6" + ], + [ + "▁P", + "òt" + ], + [ + "▁am", + "ass" + ], + [ + "▁a", + "mass" + ], + [ + "▁hydraul", + "ic" + ], + [ + "▁disturb", + "ing" + ], + [ + "oma", + "c" + ], + [ + "om", + "ac" + ], + [ + "▁21", + "5" + ], + [ + "▁2", + "15" + ], + [ + "▁Pa", + "v" + ], + [ + "▁P", + "av" + ], + [ + "▁180", + "9" + ], + [ + "▁Pole", + "s" + ], + [ + "▁Pol", + "es" + ], + [ + "▁Po", + "les" + ], + [ + "▁P", + "oles" + ], + [ + "▁knee", + "s" + ], + [ + "▁kn", + "ees" + ], + [ + "▁Activ", + "e" + ], + [ + "▁Act", + "ive" + ], + [ + "▁A", + "ctive" + ], + [ + "▁Gram", + "mar" + ], + [ + "▁Gr", + "ammar" + ], + [ + "▁el", + "astic" + ], + [ + "▁brit", + "anik" + ], + [ + "▁appropriate", + "ly" + ], + [ + "▁appropri", + "ately" + ], + [ + "▁Eri", + "k" + ], + [ + "▁Er", + "ik" + ], + [ + "▁E", + "rik" + ], + [ + "▁moun", + "d" + ], + [ + "▁mo", + "und" + ], + [ + "▁m", + "ound" + ], + [ + "▁cliff", + "s" + ], + [ + "▁cl", + "iffs" + ], + [ + "▁neuro", + "s" + ], + [ + "▁neur", + "os" + ], + [ + "▁neu", + "ros" + ], + [ + "▁reun", + "ion" + ], + [ + "▁re", + "union" + ], + [ + "▁coll", + "ided" + ], + [ + "▁C", + "e" + ], + [ + "arin", + "e" + ], + [ + "ari", + "ne" + ], + [ + "ar", + "ine" + ], + [ + "a", + "rine" + ], + [ + "red", + "ict" + ], + [ + "re", + "dict" + ], + [ + "▁Find", + "ing" + ], + [ + "▁Fin", + "ding" + ], + [ + "▁F", + "inding" + ], + [ + "▁use", + "less" + ], + [ + "▁us", + "eless" + ], + [ + "▁incom", + "ing" + ], + [ + "▁inc", + "oming" + ], + [ + "▁in", + "coming" + ], + [ + "▁kidn", + "apped" + ], + [ + "▁compet", + "itor" + ], + [ + "▁unanimous", + "ly" + ], + [ + "▁unanim", + "ously" + ], + [ + "▁F", + "S" + ], + [ + "▁", + "FS" + ], + [ + "ach", + "a" + ], + [ + "ac", + "ha" + ], + [ + "a", + "cha" + ], + [ + "▁Al", + "m" + ], + [ + "▁Bag", + "h" + ], + [ + "▁Ba", + "gh" + ], + [ + "▁B", + "agh" + ], + [ + "▁Lind", + "say" + ], + [ + "▁Hab", + "sburg" + ], + [ + "▁(19", + "8" + ], + [ + "▁(1", + "98" + ], + [ + "ter", + "ing" + ], + [ + "te", + "ring" + ], + [ + "t", + "ering" + ], + [ + "illa", + "ume" + ], + [ + "▁Sit", + "wèb" + ], + [ + "▁local", + "ized" + ], + [ + "le", + "igh" + ], + [ + "▁rec", + "k" + ], + [ + "▁re", + "ck" + ], + [ + "▁r", + "eck" + ], + [ + "▁", + "reck" + ], + [ + "▁Bre", + "ck" + ], + [ + "▁Br", + "eck" + ], + [ + "▁B", + "reck" + ], + [ + "▁Track", + "s" + ], + [ + "▁Tr", + "acks" + ], + [ + "▁T", + "racks" + ], + [ + "▁fault", + "s" + ], + [ + "▁fa", + "ults" + ], + [ + "▁Manit", + "oba" + ], + [ + "▁acqu", + "aint" + ], + [ + "▁counteratt", + "ack" + ], + [ + "▁M", + "t" + ], + [ + "▁qu", + "i" + ], + [ + "▁q", + "ui" + ], + [ + "▁Gibb", + "s" + ], + [ + "▁Gib", + "bs" + ], + [ + "▁criticism", + "s" + ], + [ + "▁critic", + "isms" + ], + [ + "▁releg", + "ation" + ], + [ + "▁prospect", + "ive" + ], + [ + "▁prosp", + "ective" + ], + [ + "▁pros", + "pective" + ], + [ + "▁stereotyp", + "es" + ], + [ + "▁stere", + "otypes" + ], + [ + "ero", + "y" + ], + [ + "er", + "oy" + ], + [ + "e", + "roy" + ], + [ + "th", + "ia" + ], + [ + "ples", + "s" + ], + [ + "ple", + "ss" + ], + [ + "pl", + "ess" + ], + [ + "p", + "less" + ], + [ + "▁cons", + "on" + ], + [ + "▁con", + "son" + ], + [ + "▁let", + "hal" + ], + [ + "▁le", + "thal" + ], + [ + "ribe", + "s" + ], + [ + "rib", + "es" + ], + [ + "ri", + "bes" + ], + [ + "▁E", + "asy" + ], + [ + "▁don", + "or" + ], + [ + "▁do", + "nor" + ], + [ + "▁Born", + "eo" + ], + [ + "▁Em", + "inem" + ], + [ + "▁choose", + "s" + ], + [ + "▁cho", + "oses" + ], + [ + "▁back", + "ward" + ], + [ + "▁Su", + "k" + ], + [ + "▁S", + "uk" + ], + [ + "▁pra", + "n" + ], + [ + "▁pr", + "an" + ], + [ + "▁p", + "ran" + ], + [ + "▁unt", + "o" + ], + [ + "▁un", + "to" + ], + [ + "▁enjoy", + "s" + ], + [ + "▁explore", + "r" + ], + [ + "▁explor", + "er" + ], + [ + "▁explo", + "rer" + ], + [ + "▁expl", + "orer" + ], + [ + "▁feas", + "ible" + ], + [ + "▁Macdon", + "ald" + ], + [ + "▁goalt", + "ender" + ], + [ + "▁stim", + "ulation" + ], + [ + "ycl", + "e" + ], + [ + "y", + "cle" + ], + [ + "▁Bed", + "e" + ], + [ + "▁Be", + "de" + ], + [ + "▁B", + "ede" + ], + [ + "▁Cha", + "k" + ], + [ + "▁Ch", + "ak" + ], + [ + "ester", + "ly" + ], + [ + "▁Clay", + "ton" + ], + [ + "▁Sar", + "awak" + ], + [ + "▁Bert", + "rand" + ], + [ + "▁Fitzg", + "erald" + ], + [ + "▁Marl", + "borough" + ], + [ + "▁volunteer", + "ed" + ], + [ + "▁volunte", + "ered" + ], + [ + "▁environmental", + "ly" + ], + [ + "▁environment", + "ally" + ], + [ + "▁My", + "s" + ], + [ + "▁M", + "ys" + ], + [ + "▁Hel", + "m" + ], + [ + "▁Sch", + "u" + ], + [ + "▁Sc", + "hu" + ], + [ + "sequ", + "ent" + ], + [ + "tre", + "ated" + ], + [ + "t", + "reated" + ], + [ + "▁amb", + "ush" + ], + [ + "▁diver", + "t" + ], + [ + "▁div", + "ert" + ], + [ + "▁di", + "vert" + ], + [ + "▁equ", + "ator" + ], + [ + "▁rept", + "iles" + ], + [ + "▁assess", + "ing" + ], + [ + "▁ge", + "ometric" + ], + [ + "▁travel", + "ers" + ], + [ + "▁stake", + "holders" + ], + [ + "▁transport", + "ing" + ], + [ + "▁", + "‐" + ], + [ + "nel", + "l" + ], + [ + "ne", + "ll" + ], + [ + "n", + "ell" + ], + [ + "▁wor", + "m" + ], + [ + "▁w", + "orm" + ], + [ + "▁", + "worm" + ], + [ + "▁2005", + "," + ], + [ + "▁200", + "5," + ], + [ + "▁Fran", + "s" + ], + [ + "▁Fra", + "ns" + ], + [ + "▁Fr", + "ans" + ], + [ + "▁F", + "rans" + ], + [ + "▁", + "Frans" + ], + [ + "▁Hor", + "iz" + ], + [ + "▁Ho", + "riz" + ], + [ + "▁ninet", + "een" + ], + [ + "▁nine", + "teen" + ], + [ + "▁Patt", + "erson" + ], + [ + "▁in", + "ception" + ], + [ + "▁rec", + "ession" + ], + [ + "▁N", + "A" + ], + [ + "▁", + "NA" + ], + [ + "▁hy", + "mn" + ], + [ + "▁no", + "ct" + ], + [ + "▁Paul", + "a" + ], + [ + "▁Pa", + "ula" + ], + [ + "▁Wil", + "kinson" + ], + [ + "▁conven", + "ience" + ], + [ + "▁G", + "é" + ], + [ + "▁E", + "at" + ], + [ + "▁Mo", + "g" + ], + [ + "▁M", + "og" + ], + [ + "▁Bed", + "ford" + ], + [ + "▁inv", + "alid" + ], + [ + "▁random", + "ly" + ], + [ + "▁retros", + "pective" + ], + [ + "i", + "án" + ], + [ + "▁pi", + "e" + ], + [ + "▁p", + "ie" + ], + [ + "▁Tat", + "e" + ], + [ + "▁Ta", + "te" + ], + [ + "▁T", + "ate" + ], + [ + "▁g", + "onna" + ], + [ + "▁Horse", + "s" + ], + [ + "▁Hors", + "es" + ], + [ + "▁Hor", + "ses" + ], + [ + "▁H", + "orses" + ], + [ + "▁Sant", + "os" + ], + [ + "▁Chap", + "lin" + ], + [ + "▁bio", + "chem" + ], + [ + "▁bi", + "ochem" + ], + [ + "▁theatre", + "s" + ], + [ + "▁theat", + "res" + ], + [ + "▁bar", + "ometric" + ], + [ + "oon", + "ey" + ], + [ + "oo", + "ney" + ], + [ + "o", + "oney" + ], + [ + "▁sn", + "ap" + ], + [ + "▁2008", + "," + ], + [ + "▁200", + "8," + ], + [ + "▁gam", + "ma" + ], + [ + "▁g", + "amma" + ], + [ + "▁Del", + "gado" + ], + [ + "▁membrane", + "s" + ], + [ + "▁membran", + "es" + ], + [ + "sc", + "ape" + ], + [ + "▁Sta", + "m" + ], + [ + "▁St", + "am" + ], + [ + "▁pupp", + "et" + ], + [ + "▁pup", + "pet" + ], + [ + "▁tur", + "key" + ], + [ + "▁now", + "here" + ], + [ + "▁no", + "where" + ], + [ + "▁discipl", + "es" + ], + [ + "▁discip", + "les" + ], + [ + "▁Ge", + "ological" + ], + [ + "▁My", + "ers" + ], + [ + "▁M", + "yers" + ], + [ + "▁wa", + "ist" + ], + [ + "verage", + "s" + ], + [ + "ver", + "ages" + ], + [ + "▁square", + "s" + ], + [ + "▁squ", + "ares" + ], + [ + "▁ambig", + "uous" + ], + [ + "ph", + "s" + ], + [ + "onn", + "y" + ], + [ + "on", + "ny" + ], + [ + "uru", + "s" + ], + [ + "ur", + "us" + ], + [ + "u", + "rus" + ], + [ + "▁Lo", + "k" + ], + [ + "▁L", + "ok" + ], + [ + "▁Re", + "x" + ], + [ + "▁R", + "ex" + ], + [ + "note", + "s" + ], + [ + "not", + "es" + ], + [ + "no", + "tes" + ], + [ + "n", + "otes" + ], + [ + "▁adj", + "ect" + ], + [ + "▁ad", + "ject" + ], + [ + "▁fin", + "ite" + ], + [ + "▁f", + "inite" + ], + [ + "▁micro", + "w" + ], + [ + "▁mic", + "row" + ], + [ + "▁wheel", + "chair" + ], + [ + "ow", + "l" + ], + [ + "ra", + "r" + ], + [ + "r", + "ar" + ], + [ + "▁178", + "9" + ], + [ + "▁17", + "89" + ], + [ + "▁cup", + "s" + ], + [ + "▁cu", + "ps" + ], + [ + "▁c", + "ups" + ], + [ + "▁Atl", + "as" + ], + [ + "▁At", + "las" + ], + [ + "▁roll", + "s" + ], + [ + "▁Kr", + "usty" + ], + [ + "▁Creat", + "ion" + ], + [ + "▁Cre", + "ation" + ], + [ + "▁crit", + "ique" + ], + [ + "▁enh", + "ancing" + ], + [ + "▁ep", + "onymous" + ], + [ + "▁prohib", + "ition" + ], + [ + "▁pro", + "hibition" + ], + [ + "▁Az", + "t" + ], + [ + "▁A", + "zt" + ], + [ + "rer", + "as" + ], + [ + "re", + "ras" + ], + [ + "▁Conc", + "ord" + ], + [ + "▁fix", + "ture" + ], + [ + "▁diff", + "usion" + ], + [ + "▁impair", + "ment" + ], + [ + "▁coordinate", + "s" + ], + [ + "▁coordin", + "ates" + ], + [ + "ose", + "r" + ], + [ + "os", + "er" + ], + [ + "▁Lu", + "p" + ], + [ + "▁L", + "up" + ], + [ + "▁amer", + "ic" + ], + [ + "▁a", + "meric" + ], + [ + "▁alcohol", + "ic" + ], + [ + "▁alcoh", + "olic" + ], + [ + "▁sp", + "herical" + ], + [ + "▁Pop", + "ulation" + ], + [ + "▁insu", + "lation" + ], + [ + "▁ins", + "ulation" + ], + [ + "ek", + "t" + ], + [ + "e", + "kt" + ], + [ + "▁I", + "OC" + ], + [ + "ops", + "is" + ], + [ + "op", + "sis" + ], + [ + "▁Bor", + "is" + ], + [ + "▁Bo", + "ris" + ], + [ + "▁Mac", + "beth" + ], + [ + "▁Article", + "s" + ], + [ + "▁Art", + "icles" + ], + [ + "▁Rebell", + "ion" + ], + [ + "rice", + "s" + ], + [ + "ric", + "es" + ], + [ + "ri", + "ces" + ], + [ + "r", + "ices" + ], + [ + "▁Pi", + "st" + ], + [ + "▁P", + "ist" + ], + [ + "▁in", + "ad" + ], + [ + "▁McCl", + "e" + ], + [ + "▁McC", + "le" + ], + [ + "os", + "itory" + ], + [ + "▁advis", + "e" + ], + [ + "▁adv", + "ise" + ], + [ + "▁unbeat", + "en" + ], + [ + "▁Maced", + "onia" + ], + [ + "ug", + "a" + ], + [ + "u", + "ga" + ], + [ + "uri", + "a" + ], + [ + "ur", + "ia" + ], + [ + "u", + "ria" + ], + [ + "▁Ha", + "ir" + ], + [ + "▁H", + "air" + ], + [ + "▁Lec", + "t" + ], + [ + "▁Le", + "ct" + ], + [ + "▁L", + "ect" + ], + [ + "▁Alc", + "oh" + ], + [ + "▁Al", + "coh" + ], + [ + "▁disin", + "tegr" + ], + [ + "ight", + "y" + ], + [ + "igh", + "ty" + ], + [ + "▁Kaw", + "olin" + ], + [ + "▁Aberde", + "en" + ], + [ + "ad", + "h" + ], + [ + "▁est", + "e" + ], + [ + "▁es", + "te" + ], + [ + "▁e", + "ste" + ], + [ + "▁", + "este" + ], + [ + "gem", + "ent" + ], + [ + "ge", + "ment" + ], + [ + "g", + "ement" + ], + [ + "▁Gra", + "ss" + ], + [ + "▁Gr", + "ass" + ], + [ + "▁Cole", + "man" + ], + [ + "▁Col", + "eman" + ], + [ + "▁Euras", + "ian" + ], + [ + "▁different", + "iate" + ], + [ + "▁encourage", + "ment" + ], + [ + "▁encourag", + "ement" + ], + [ + "▁encoura", + "gement" + ], + [ + "▁neighbour", + "hood" + ], + [ + "▁Ti", + "n" + ], + [ + "▁T", + "in" + ], + [ + "▁tow", + "ed" + ], + [ + "▁t", + "owed" + ], + [ + "▁Key", + "nes" + ], + [ + "▁Vatic", + "an" + ], + [ + "▁African", + "s" + ], + [ + "▁Africa", + "ns" + ], + [ + "▁Afric", + "ans" + ], + [ + "▁Middle", + "ton" + ], + [ + "▁Midd", + "leton" + ], + [ + "▁chromosome", + "s" + ], + [ + "▁chromos", + "omes" + ], + [ + "▁compar", + "ative" + ], + [ + "un", + "n" + ], + [ + "▁i", + "od" + ], + [ + "▁", + "iod" + ], + [ + "▁Gam", + "b" + ], + [ + "▁Ga", + "mb" + ], + [ + "▁G", + "amb" + ], + [ + "▁Min", + "i" + ], + [ + "▁Mi", + "ni" + ], + [ + "▁M", + "ini" + ], + [ + "▁rest", + "ed" + ], + [ + "▁res", + "ted" + ], + [ + "▁re", + "sted" + ], + [ + "▁r", + "ested" + ], + [ + "▁All", + "ison" + ], + [ + "▁Rev", + "ival" + ], + [ + "▁split", + "ting" + ], + [ + "▁spl", + "itting" + ], + [ + "▁journal", + "ism" + ], + [ + "▁manip", + "ulation" + ], + [ + "il", + "o" + ], + [ + "i", + "lo" + ], + [ + "cat", + "s" + ], + [ + "ca", + "ts" + ], + [ + "c", + "ats" + ], + [ + "hr", + "er" + ], + [ + "h", + "rer" + ], + [ + "▁ri", + "v" + ], + [ + "▁r", + "iv" + ], + [ + "▁neo", + "n" + ], + [ + "▁ne", + "on" + ], + [ + "▁tax", + "i" + ], + [ + "abet", + "ic" + ], + [ + "abe", + "tic" + ], + [ + "ab", + "etic" + ], + [ + "▁2008", + "." + ], + [ + "▁200", + "8." + ], + [ + "▁depr", + "ived" + ], + [ + "i", + "u" + ], + [ + "ap", + "o" + ], + [ + "a", + "po" + ], + [ + "gro", + "ve" + ], + [ + "gr", + "ove" + ], + [ + "▁Dog", + "s" + ], + [ + "▁Do", + "gs" + ], + [ + "▁D", + "ogs" + ], + [ + "▁Gr", + "im" + ], + [ + "▁G", + "rim" + ], + [ + "▁con", + "grat" + ], + [ + "▁need", + "ing" + ], + [ + "▁ne", + "eding" + ], + [ + "▁pa", + "ternal" + ], + [ + "▁p", + "aternal" + ], + [ + "▁Le", + "p" + ], + [ + "▁L", + "ep" + ], + [ + "▁mac", + "ro" + ], + [ + "▁Walt", + "on" + ], + [ + "▁Wal", + "ton" + ], + [ + "▁remove", + "s" + ], + [ + "▁remov", + "es" + ], + [ + "▁rem", + "oves" + ], + [ + "▁Alexand", + "re" + ], + [ + "ni", + "s" + ], + [ + "n", + "is" + ], + [ + "▁Fre", + "qu" + ], + [ + "▁Fr", + "equ" + ], + [ + "▁F", + "requ" + ], + [ + "idel", + "ity" + ], + [ + "▁Vol", + "can" + ], + [ + "▁conv", + "ict" + ], + [ + "▁conven", + "ed" + ], + [ + "▁conv", + "ened" + ], + [ + "▁hyper", + "tension" + ], + [ + "▁Ka", + "h" + ], + [ + "▁K", + "ah" + ], + [ + "▁Han", + "g" + ], + [ + "▁Ha", + "ng" + ], + [ + "▁H", + "ang" + ], + [ + "▁Od", + "ys" + ], + [ + "▁Ras", + "h" + ], + [ + "▁Ra", + "sh" + ], + [ + "▁R", + "ash" + ], + [ + "▁Hu", + "bert" + ], + [ + "▁maid", + "en" + ], + [ + "▁ma", + "iden" + ], + [ + "▁Sis", + "ters" + ], + [ + "▁Si", + "sters" + ], + [ + "▁S", + "isters" + ], + [ + "▁Dick", + "inson" + ], + [ + "▁compete", + "nt" + ], + [ + "▁compet", + "ent" + ], + [ + "sta", + "ff" + ], + [ + "st", + "aff" + ], + [ + "▁180", + "4" + ], + [ + "▁Gi", + "an" + ], + [ + "▁G", + "ian" + ], + [ + "▁Sal", + "am" + ], + [ + "▁Sa", + "lam" + ], + [ + "▁tra", + "ject" + ], + [ + "▁summar", + "ized" + ], + [ + "▁tribut", + "aries" + ], + [ + "▁periodic", + "ally" + ], + [ + "▁period", + "ically" + ], + [ + "R", + "O" + ], + [ + "▁Ag", + "g" + ], + [ + "▁A", + "gg" + ], + [ + "▁ha", + "ck" + ], + [ + "▁h", + "ack" + ], + [ + "▁Pay", + "ne" + ], + [ + "▁arise", + "s" + ], + [ + "▁ar", + "ises" + ], + [ + "▁Tea", + "cher" + ], + [ + "▁Te", + "acher" + ], + [ + "▁conce", + "aled" + ], + [ + "7)", + "." + ], + [ + "7", + ")." + ], + [ + "wa", + "s" + ], + [ + "w", + "as" + ], + [ + "aja", + "n" + ], + [ + "aj", + "an" + ], + [ + "a", + "jan" + ], + [ + "atha", + "m" + ], + [ + "ath", + "am" + ], + [ + "at", + "ham" + ], + [ + "▁179", + "8" + ], + [ + "▁17", + "98" + ], + [ + "▁Mart", + "y" + ], + [ + "▁Mar", + "ty" + ], + [ + "▁Sale", + "m" + ], + [ + "▁Sal", + "em" + ], + [ + "▁Sa", + "lem" + ], + [ + "▁vag", + "ue" + ], + [ + "▁va", + "gue" + ], + [ + "▁v", + "ague" + ], + [ + "▁Aman", + "da" + ], + [ + "▁Am", + "anda" + ], + [ + "▁Lud", + "wig" + ], + [ + "▁Rain", + "bow" + ], + [ + "▁holder", + "s" + ], + [ + "▁hold", + "ers" + ], + [ + "▁hol", + "ders" + ], + [ + "▁", + "holders" + ], + [ + "▁reduction", + "s" + ], + [ + "▁redu", + "ctions" + ], + [ + "▁mart", + "yr" + ], + [ + "▁sculpt", + "or" + ], + [ + "▁battlecru", + "iser" + ], + [ + "ers", + "h" + ], + [ + "er", + "sh" + ], + [ + "roy", + "s" + ], + [ + "ro", + "ys" + ], + [ + "r", + "oys" + ], + [ + "▁179", + "4" + ], + [ + "▁17", + "94" + ], + [ + "▁Cal", + "d" + ], + [ + "▁Ca", + "ld" + ], + [ + "▁C", + "ald" + ], + [ + "▁Cor", + "y" + ], + [ + "▁Co", + "ry" + ], + [ + "▁C", + "ory" + ], + [ + "▁Tou", + "l" + ], + [ + "▁To", + "ul" + ], + [ + "▁T", + "oul" + ], + [ + "▁Wer", + "e" + ], + [ + "▁We", + "re" + ], + [ + "▁W", + "ere" + ], + [ + "▁unf", + "am" + ], + [ + "▁un", + "fam" + ], + [ + "▁Pers", + "ia" + ], + [ + "▁cry", + "ing" + ], + [ + "▁cr", + "ying" + ], + [ + "▁c", + "rying" + ], + [ + "▁outl", + "ook" + ], + [ + "▁out", + "look" + ], + [ + "▁attack", + "ers" + ], + [ + "▁dist", + "orted" + ], + [ + "▁Ra", + "z" + ], + [ + "▁R", + "az" + ], + [ + "▁ru", + "pt" + ], + [ + "▁r", + "upt" + ], + [ + "▁", + "rupt" + ], + [ + "▁coast", + "s" + ], + [ + "▁co", + "asts" + ], + [ + "▁keep", + "er" + ], + [ + "▁ke", + "eper" + ], + [ + "▁", + "keeper" + ], + [ + "▁Sub", + "sequent" + ], + [ + "fr", + "i" + ], + [ + "f", + "ri" + ], + [ + "▁S", + "L" + ], + [ + "ll", + "er" + ], + [ + "l", + "ler" + ], + [ + "▁ar", + "id" + ], + [ + "▁a", + "rid" + ], + [ + "▁pe", + "at" + ], + [ + "▁Mars", + "e" + ], + [ + "▁Mar", + "se" + ], + [ + "▁M", + "arse" + ], + [ + "▁in", + "und" + ], + [ + "ids", + "hips" + ], + [ + "▁Dest", + "roy" + ], + [ + "▁Pl", + "atinum" + ], + [ + "▁various", + "ly" + ], + [ + "▁vari", + "ously" + ], + [ + "▁var", + "iously" + ], + [ + "▁coordin", + "ator" + ], + [ + "di", + "a" + ], + [ + "d", + "ia" + ], + [ + "▁Ga", + "m" + ], + [ + "▁G", + "am" + ], + [ + "▁Sh", + "i" + ], + [ + "▁S", + "hi" + ], + [ + "agua", + "r" + ], + [ + "agu", + "ar" + ], + [ + "▁toe", + "s" + ], + [ + "▁to", + "es" + ], + [ + "▁t", + "oes" + ], + [ + "ought", + "s" + ], + [ + "ough", + "ts" + ], + [ + "ould", + "er" + ], + [ + "oul", + "der" + ], + [ + "▁Bl", + "ind" + ], + [ + "▁Osw", + "ald" + ], + [ + "▁Os", + "wald" + ], + [ + "▁influ", + "x" + ], + [ + "▁infl", + "ux" + ], + [ + "▁drain", + "ed" + ], + [ + "▁dra", + "ined" + ], + [ + "▁dr", + "ained" + ], + [ + "▁d", + "rained" + ], + [ + "▁Pitch", + "fork" + ], + [ + "▁just", + "ification" + ], + [ + "af", + "i" + ], + [ + "a", + "fi" + ], + [ + "umm", + "er" + ], + [ + "um", + "mer" + ], + [ + "▁Nic", + "ar" + ], + [ + "▁Ni", + "car" + ], + [ + "▁pun", + "ch" + ], + [ + "▁p", + "unch" + ], + [ + "▁Gam", + "ing" + ], + [ + "▁Ga", + "ming" + ], + [ + "▁G", + "aming" + ], + [ + "▁Har", + "ald" + ], + [ + "▁des", + "anm" + ], + [ + "▁glac", + "ial" + ], + [ + "▁shut", + "tle" + ], + [ + "▁sh", + "uttle" + ], + [ + "▁prost", + "ate" + ], + [ + "▁pro", + "state" + ], + [ + "▁descend", + "ing" + ], + [ + "▁desc", + "ending" + ], + [ + "▁Bi", + "e" + ], + [ + "▁B", + "ie" + ], + [ + "▁Di", + "on" + ], + [ + "▁D", + "ion" + ], + [ + "▁ra", + "ge" + ], + [ + "▁r", + "age" + ], + [ + "▁", + "rage" + ], + [ + "▁whole", + "s" + ], + [ + "▁who", + "les" + ], + [ + "▁wh", + "oles" + ], + [ + "forest", + "ation" + ], + [ + "re", + "a" + ], + [ + "r", + "ea" + ], + [ + "▁Lin", + "a" + ], + [ + "▁Li", + "na" + ], + [ + "▁L", + "ina" + ], + [ + "Conn", + "or" + ], + [ + "▁port", + "al" + ], + [ + "▁por", + "tal" + ], + [ + "▁inf", + "ring" + ], + [ + "▁migr", + "ate" + ], + [ + "▁mig", + "rate" + ], + [ + "▁imp", + "ending" + ], + [ + "▁research", + "ed" + ], + [ + "▁researc", + "hed" + ], + [ + "▁resear", + "ched" + ], + [ + "▁E", + "M" + ], + [ + "▁", + "EM" + ], + [ + "he", + "ed" + ], + [ + "h", + "eed" + ], + [ + "▁cl", + "o" + ], + [ + "▁c", + "lo" + ], + [ + "▁Ori", + "on" + ], + [ + "▁Or", + "ion" + ], + [ + "▁Yuc", + "at" + ], + [ + "▁Yu", + "cat" + ], + [ + "▁bag", + "ay" + ], + [ + "▁ind", + "ie" + ], + [ + "▁in", + "die" + ], + [ + "ond", + "heim" + ], + [ + "▁Gu", + "illaume" + ], + [ + "▁To", + "u" + ], + [ + "▁T", + "ou" + ], + [ + "ange", + "s" + ], + [ + "ang", + "es" + ], + [ + "an", + "ges" + ], + [ + "▁USA", + "F" + ], + [ + "▁US", + "AF" + ], + [ + "▁pat", + "i" + ], + [ + "▁pa", + "ti" + ], + [ + "▁p", + "ati" + ], + [ + "▁Hipp", + "er" + ], + [ + "▁Hip", + "per" + ], + [ + "▁Hi", + "pper" + ], + [ + "▁H", + "ipper" + ], + [ + "▁bowler", + "s" + ], + [ + "▁bowl", + "ers" + ], + [ + "▁bow", + "lers" + ], + [ + "▁stress", + "es" + ], + [ + "▁str", + "esses" + ], + [ + "▁st", + "resses" + ], + [ + "▁emphasize", + "s" + ], + [ + "▁emphas", + "izes" + ], + [ + "ip", + "al" + ], + [ + "ayan", + "a" + ], + [ + "aya", + "na" + ], + [ + "ay", + "ana" + ], + [ + "▁Lan", + "m" + ], + [ + "▁L", + "anm" + ], + [ + "▁Wi", + "re" + ], + [ + "▁W", + "ire" + ], + [ + "rance", + "s" + ], + [ + "ran", + "ces" + ], + [ + "r", + "ances" + ], + [ + "▁Ben", + "son" + ], + [ + "▁B", + "enson" + ], + [ + "▁notice", + "s" + ], + [ + "▁not", + "ices" + ], + [ + "▁column", + "ist" + ], + [ + "▁professor", + "s" + ], + [ + "▁profess", + "ors" + ], + [ + "mi", + "le" + ], + [ + "m", + "ile" + ], + [ + "▁RO", + "K" + ], + [ + "rant", + "s" + ], + [ + "ran", + "ts" + ], + [ + "r", + "ants" + ], + [ + "▁imag", + "in" + ], + [ + "▁raid", + "ing" + ], + [ + "▁ra", + "iding" + ], + [ + "▁touch", + "es" + ], + [ + "▁tou", + "ches" + ], + [ + "▁Peters", + "on" + ], + [ + "▁Peter", + "son" + ], + [ + "▁Pet", + "erson" + ], + [ + "▁suff", + "rage" + ], + [ + "▁Sl", + "ant" + ], + [ + "▁Brook", + "e" + ], + [ + "▁Bro", + "oke" + ], + [ + "▁overs", + "h" + ], + [ + "▁over", + "sh" + ], + [ + "▁ov", + "ersh" + ], + [ + "▁Ni", + "agara" + ], + [ + "▁cannon", + "s" + ], + [ + "▁cann", + "ons" + ], + [ + "▁Super", + "ior" + ], + [ + "▁Material", + "s" + ], + [ + "▁Mater", + "ials" + ], + [ + "na", + "i" + ], + [ + "n", + "ai" + ], + [ + "▁Ba", + "c" + ], + [ + "▁B", + "ac" + ], + [ + "ios", + "is" + ], + [ + "io", + "sis" + ], + [ + "i", + "osis" + ], + [ + "▁Mod", + "e" + ], + [ + "▁Mo", + "de" + ], + [ + "▁M", + "ode" + ], + [ + "▁Dan", + "te" + ], + [ + "▁D", + "ante" + ], + [ + "▁rev", + "is" + ], + [ + "▁re", + "vis" + ], + [ + "▁shr", + "ub" + ], + [ + "▁sh", + "rub" + ], + [ + "▁print", + "er" + ], + [ + "▁pr", + "inter" + ], + [ + "▁railroad", + "s" + ], + [ + "▁rail", + "roads" + ], + [ + "▁al", + "e" + ], + [ + "▁a", + "le" + ], + [ + "▁", + "ale" + ], + [ + "▁wr", + "a" + ], + [ + "▁w", + "ra" + ], + [ + "ans", + "on" + ], + [ + "an", + "son" + ], + [ + "orne", + "d" + ], + [ + "orn", + "ed" + ], + [ + "or", + "ned" + ], + [ + "▁Pe", + "ck" + ], + [ + "▁P", + "eck" + ], + [ + "▁le", + "ng" + ], + [ + "▁l", + "eng" + ], + [ + "▁Pra", + "tt" + ], + [ + "▁Pr", + "att" + ], + [ + "▁Ser", + "gio" + ], + [ + "▁drag", + "ged" + ], + [ + "▁dra", + "gged" + ], + [ + "▁end", + "less" + ], + [ + "▁Rever", + "end" + ], + [ + "▁commun", + "icating" + ], + [ + "▁Hi", + "b" + ], + [ + "▁H", + "ib" + ], + [ + "▁Ko", + "d" + ], + [ + "▁K", + "od" + ], + [ + "AT", + "ION" + ], + [ + "ienn", + "e" + ], + [ + "ien", + "ne" + ], + [ + "i", + "enne" + ], + [ + "▁Hi", + "ck" + ], + [ + "▁H", + "ick" + ], + [ + "▁Martí", + "n" + ], + [ + "▁Mart", + "ín" + ], + [ + "▁senator", + "s" + ], + [ + "▁sen", + "ators" + ], + [ + "▁cinemat", + "ic" + ], + [ + "▁cinema", + "tic" + ], + [ + "▁cinem", + "atic" + ], + [ + "▁sat", + "urated" + ], + [ + "▁signal", + "ing" + ], + [ + "▁sign", + "aling" + ], + [ + "▁NE", + "S" + ], + [ + "▁N", + "ES" + ], + [ + "▁Col", + "t" + ], + [ + "▁C", + "olt" + ], + [ + "▁Th", + "ai" + ], + [ + "▁Wis", + "e" + ], + [ + "▁Wi", + "se" + ], + [ + "▁W", + "ise" + ], + [ + "▁Paul", + "o" + ], + [ + "▁clad", + "e" + ], + [ + "▁cl", + "ade" + ], + [ + "▁im", + "bal" + ], + [ + "▁Pot", + "omac" + ], + [ + "▁komin", + "ote" + ], + [ + "▁k", + "ominote" + ], + [ + "▁admir", + "al" + ], + [ + "▁adm", + "iral" + ], + [ + "▁ad", + "miral" + ], + [ + "▁Woll", + "ston" + ], + [ + "▁am", + "idships" + ], + [ + "▁electro", + "ly" + ], + [ + "▁electr", + "oly" + ], + [ + "▁interact", + "ing" + ], + [ + "▁Wollston", + "ecraft" + ], + [ + "40", + "0" + ], + [ + "4", + "00" + ], + [ + "▁CN", + "N" + ], + [ + "▁Man", + "t" + ], + [ + "▁Ma", + "nt" + ], + [ + "▁M", + "ant" + ], + [ + "▁fig", + "ur" + ], + [ + "▁Bosnia", + "n" + ], + [ + "▁Bos", + "nian" + ], + [ + "▁cant", + "ata" + ], + [ + "▁repr", + "inted" + ], + [ + "▁protagonist", + "s" + ], + [ + "▁prot", + "agonists" + ], + [ + "A", + "m" + ], + [ + "ux", + "e" + ], + [ + "▁Ba", + "x" + ], + [ + "▁B", + "ax" + ], + [ + "▁Ro", + "le" + ], + [ + "▁R", + "ole" + ], + [ + "▁sod", + "a" + ], + [ + "▁so", + "da" + ], + [ + "▁s", + "oda" + ], + [ + "sw", + "orth" + ], + [ + "s", + "worth" + ], + [ + "▁exit", + "s" + ], + [ + "▁ex", + "its" + ], + [ + "▁Rec", + "ogn" + ], + [ + "▁intric", + "ate" + ], + [ + "▁intr", + "icate" + ], + [ + "▁threaten", + "s" + ], + [ + "▁threat", + "ens" + ], + [ + "▁accident", + "al" + ], + [ + "▁catast", + "rophic" + ], + [ + "▁comparative", + "ly" + ], + [ + "▁compar", + "atively" + ], + [ + "▁progressive", + "ly" + ], + [ + "▁progress", + "ively" + ], + [ + "O", + "l" + ], + [ + "▁Fle", + "m" + ], + [ + "▁Fl", + "em" + ], + [ + "▁F", + "lem" + ], + [ + "elli", + "te" + ], + [ + "ell", + "ite" + ], + [ + "▁Amb", + "er" + ], + [ + "▁Am", + "ber" + ], + [ + "▁A", + "mber" + ], + [ + "▁Out", + "er" + ], + [ + "▁Ou", + "ter" + ], + [ + "▁O", + "uter" + ], + [ + "▁chief", + "s" + ], + [ + "▁dry", + "ing" + ], + [ + "▁dr", + "ying" + ], + [ + "▁d", + "rying" + ], + [ + "▁rem", + "atch" + ], + [ + "▁Hond", + "uras" + ], + [ + "▁comp", + "ress" + ], + [ + "▁com", + "press" + ], + [ + "▁ide", + "ological" + ], + [ + "it", + "ably" + ], + [ + "▁Clif", + "f" + ], + [ + "▁Cl", + "iff" + ], + [ + "▁sym", + "ph" + ], + [ + "▁sy", + "mph" + ], + [ + "▁ult", + "ra" + ], + [ + "▁ul", + "tra" + ], + [ + "ke", + "eping" + ], + [ + "▁Stone", + "s" + ], + [ + "▁Sto", + "nes" + ], + [ + "▁St", + "ones" + ], + [ + "▁hand", + "ic" + ], + [ + "esp", + "erson" + ], + [ + "es", + "person" + ], + [ + "▁Martín", + "ez" + ], + [ + "▁Martí", + "nez" + ], + [ + "▁athletic", + "s" + ], + [ + "▁athlet", + "ics" + ], + [ + "ond", + "a" + ], + [ + "on", + "da" + ], + [ + "▁ang", + "el" + ], + [ + "▁an", + "gel" + ], + [ + "▁a", + "ngel" + ], + [ + "▁", + "angel" + ], + [ + "▁Mor", + "ales" + ], + [ + "▁Recent", + "ly" + ], + [ + "▁Rec", + "ently" + ], + [ + "▁perce", + "ive" + ], + [ + "de", + "m" + ], + [ + "d", + "em" + ], + [ + "ie", + "m" + ], + [ + "i", + "em" + ], + [ + "uss", + "y" + ], + [ + "us", + "sy" + ], + [ + "▁Ra", + "o" + ], + [ + "▁R", + "ao" + ], + [ + "▁nod", + "e" + ], + [ + "▁no", + "de" + ], + [ + "▁n", + "ode" + ], + [ + "▁st", + "ub" + ], + [ + "▁Jane", + "iro" + ], + [ + "▁B", + "achelor" + ], + [ + "▁Jur", + "assic" + ], + [ + "▁Stand", + "ing" + ], + [ + "▁Stan", + "ding" + ], + [ + "▁destroy", + "s" + ], + [ + "▁dest", + "roys" + ], + [ + "▁purchase", + "s" + ], + [ + "▁purch", + "ases" + ], + [ + "▁Mozamb", + "ique" + ], + [ + "▁national", + "ism" + ], + [ + "▁ren", + "umbering" + ], + [ + "▁different", + "ial" + ], + [ + "▁differ", + "ential" + ], + [ + "an", + "u" + ], + [ + "ta", + "x" + ], + [ + "t", + "ax" + ], + [ + "yè", + "l" + ], + [ + "y", + "èl" + ], + [ + "▁pl", + "ac" + ], + [ + "▁ste", + "w" + ], + [ + "▁st", + "ew" + ], + [ + "angle", + "s" + ], + [ + "ang", + "les" + ], + [ + "▁Write", + "r" + ], + [ + "▁Writ", + "er" + ], + [ + "▁mind", + "ed" + ], + [ + "▁min", + "ded" + ], + [ + "▁Ek", + "riven" + ], + [ + "▁Heath", + "er" + ], + [ + "▁Heat", + "her" + ], + [ + "▁He", + "ather" + ], + [ + "▁sequel", + "s" + ], + [ + "▁sequ", + "els" + ], + [ + "O", + "ur" + ], + [ + "▁can", + "e" + ], + [ + "▁ca", + "ne" + ], + [ + "▁c", + "ane" + ], + [ + "st", + "reet" + ], + [ + "uct", + "ion" + ], + [ + "u", + "ction" + ], + [ + "▁av", + "ril" + ], + [ + "▁for", + "age" + ], + [ + "▁fo", + "rage" + ], + [ + "▁f", + "orage" + ], + [ + "▁Han", + "over" + ], + [ + "▁orn", + "ament" + ], + [ + "▁Confeder", + "acy" + ], + [ + "A", + "t" + ], + [ + "u", + "o" + ], + [ + "ame", + "n" + ], + [ + "am", + "en" + ], + [ + "a", + "men" + ], + [ + "▁Jo", + "a" + ], + [ + "▁J", + "oa" + ], + [ + "aine", + "s" + ], + [ + "ain", + "es" + ], + [ + "ai", + "nes" + ], + [ + "a", + "ines" + ], + [ + "▁179", + "3" + ], + [ + "▁17", + "93" + ], + [ + "▁Bou", + "nd" + ], + [ + "▁Bo", + "und" + ], + [ + "▁B", + "ound" + ], + [ + "▁The", + "rm" + ], + [ + "▁Th", + "erm" + ], + [ + "▁bra", + "ke" + ], + [ + "▁br", + "ake" + ], + [ + "▁saint", + "s" + ], + [ + "▁sa", + "ints" + ], + [ + "▁s", + "aints" + ], + [ + "▁Belf", + "ast" + ], + [ + "▁Bel", + "fast" + ], + [ + "d", + "imensional" + ], + [ + "▁campaign", + "ing" + ], + [ + "▁psyched", + "elic" + ], + [ + "▁34", + "0" + ], + [ + "▁3", + "40" + ], + [ + "▁Ch", + "rys" + ], + [ + "▁Di", + "agn" + ], + [ + "▁Run", + "ning" + ], + [ + "▁R", + "unning" + ], + [ + "▁spar", + "row" + ], + [ + "▁Ex", + "c" + ], + [ + "▁san", + "s" + ], + [ + "▁sa", + "ns" + ], + [ + "▁s", + "ans" + ], + [ + "▁Les", + "nar" + ], + [ + "▁awa", + "ken" + ], + [ + "▁aw", + "aken" + ], + [ + "▁flatt", + "ened" + ], + [ + "ata", + "ka" + ], + [ + "at", + "aka" + ], + [ + "una", + "mi" + ], + [ + "un", + "ami" + ], + [ + "▁Brad", + "y" + ], + [ + "▁Bra", + "dy" + ], + [ + "▁Br", + "ady" + ], + [ + "▁une", + "ven" + ], + [ + "▁wall", + "ed" + ], + [ + "▁wal", + "led" + ], + [ + "▁wa", + "lled" + ], + [ + "▁w", + "alled" + ], + [ + "▁Cher", + "oke" + ], + [ + "▁Che", + "roke" + ], + [ + "▁train", + "er" + ], + [ + "▁tra", + "iner" + ], + [ + "▁decline", + "s" + ], + [ + "▁decl", + "ines" + ], + [ + "▁dec", + "lines" + ], + [ + "▁S", + "I" + ], + [ + "ur", + "rection" + ], + [ + "▁succeed", + "ing" + ], + [ + "ib", + "i" + ], + [ + "i", + "bi" + ], + [ + "off", + "s" + ], + [ + "of", + "fs" + ], + [ + "▁I", + "ch" + ], + [ + "ace", + "ans" + ], + [ + "a", + "ceans" + ], + [ + "▁Ist", + "an" + ], + [ + "▁I", + "stan" + ], + [ + "▁prophe", + "t" + ], + [ + "▁prop", + "het" + ], + [ + "▁expect", + "ation" + ], + [ + "▁14", + "2" + ], + [ + "▁1", + "42" + ], + [ + "▁Lin", + "g" + ], + [ + "▁Li", + "ng" + ], + [ + "▁L", + "ing" + ], + [ + "▁stair", + "s" + ], + [ + "▁st", + "airs" + ], + [ + "▁acceler", + "ation" + ], + [ + "▁accel", + "eration" + ], + [ + "ru", + "z" + ], + [ + "r", + "uz" + ], + [ + "▁ne", + "at" + ], + [ + "▁outl", + "et" + ], + [ + "▁out", + "let" + ], + [ + "friend", + "ly" + ], + [ + "▁exp", + "osing" + ], + [ + "▁explosion", + "s" + ], + [ + "▁explos", + "ions" + ], + [ + "▁ta", + "m" + ], + [ + "▁t", + "am" + ], + [ + "▁Ass", + "y" + ], + [ + "▁As", + "sy" + ], + [ + "n", + "ation" + ], + [ + "▁Bay", + "ern" + ], + [ + "▁Leg", + "acy" + ], + [ + "▁Earl", + "ier" + ], + [ + "▁Mon", + "itor" + ], + [ + "▁Polit", + "ics" + ], + [ + "▁capital", + "ist" + ], + [ + "▁capita", + "list" + ], + [ + "▁Public", + "ations" + ], + [ + "▁Publ", + "ications" + ], + [ + "ova", + "r" + ], + [ + "ov", + "ar" + ], + [ + "o", + "var" + ], + [ + "▁IB", + "M" + ], + [ + "▁Dave", + "n" + ], + [ + "▁Dav", + "en" + ], + [ + "▁Da", + "ven" + ], + [ + "▁D", + "aven" + ], + [ + "▁st", + "ack" + ], + [ + "▁captain", + "s" + ], + [ + "▁capt", + "ains" + ], + [ + "▁cap", + "tains" + ], + [ + "▁escort", + "ing" + ], + [ + "▁Rec", + "onstruction" + ], + [ + "ci", + "a" + ], + [ + "c", + "ia" + ], + [ + "▁knight", + "s" + ], + [ + "▁kn", + "ights" + ], + [ + "▁wide", + "ned" + ], + [ + "▁wid", + "ened" + ], + [ + "▁chore", + "ography" + ], + [ + "t", + "w" + ], + [ + "ori", + "o" + ], + [ + "or", + "io" + ], + [ + "o", + "rio" + ], + [ + "▁st", + "ole" + ], + [ + "quarter", + "ed" + ], + [ + "▁ironcl", + "ad" + ], + [ + "è", + "y" + ], + [ + "ita", + "s" + ], + [ + "it", + "as" + ], + [ + "uma", + "t" + ], + [ + "um", + "at" + ], + [ + "u", + "mat" + ], + [ + "▁Du", + "l" + ], + [ + "▁D", + "ul" + ], + [ + "▁We", + "r" + ], + [ + "▁W", + "er" + ], + [ + "▁nar", + "r" + ], + [ + "▁n", + "arr" + ], + [ + "▁Bi", + "den" + ], + [ + "▁B", + "iden" + ], + [ + "▁fine", + "d" + ], + [ + "▁fin", + "ed" + ], + [ + "▁fi", + "ned" + ], + [ + "▁f", + "ined" + ], + [ + "▁fish", + "es" + ], + [ + "▁f", + "ishes" + ], + [ + "▁off", + "ence" + ], + [ + "▁hearing", + "s" + ], + [ + "▁hear", + "ings" + ], + [ + "▁combust", + "ion" + ], + [ + "▁r", + "é" + ], + [ + "▁", + "ré" + ], + [ + "ift", + "s" + ], + [ + "if", + "ts" + ], + [ + "▁Pop", + "M" + ], + [ + "▁Bell", + "a" + ], + [ + "▁Bel", + "la" + ], + [ + "▁Be", + "lla" + ], + [ + "▁B", + "ella" + ], + [ + "▁emit", + "ted" + ], + [ + "▁em", + "itted" + ], + [ + "▁e", + "mitted" + ], + [ + "▁remind", + "er" + ], + [ + "▁rem", + "inder" + ], + [ + "mi", + "e" + ], + [ + "m", + "ie" + ], + [ + "rop", + "s" + ], + [ + "ro", + "ps" + ], + [ + "r", + "ops" + ], + [ + "▁bad", + "ge" + ], + [ + "▁Female", + "s" + ], + [ + "▁Fem", + "ales" + ], + [ + "ipe", + "s" + ], + [ + "ip", + "es" + ], + [ + "i", + "pes" + ], + [ + "▁Pro", + "b" + ], + [ + "▁Pr", + "ob" + ], + [ + "▁P", + "rob" + ], + [ + "▁fon", + "t" + ], + [ + "▁fo", + "nt" + ], + [ + "▁f", + "ont" + ], + [ + "▁nec", + "t" + ], + [ + "▁ne", + "ct" + ], + [ + "▁n", + "ect" + ], + [ + "te", + "fact" + ], + [ + "▁Fl", + "int" + ], + [ + "▁May", + "er" + ], + [ + "▁Ma", + "yer" + ], + [ + "▁M", + "ayer" + ], + [ + "▁hyp", + "ot" + ], + [ + "▁Med", + "ina" + ], + [ + "▁arrow", + "s" + ], + [ + "▁arr", + "ows" + ], + [ + "▁ar", + "rows" + ], + [ + "▁basic", + "s" + ], + [ + "▁bas", + "ics" + ], + [ + "▁vir", + "gin" + ], + [ + "▁Sal", + "ford" + ], + [ + "▁S", + "alford" + ], + [ + "▁into", + "ler" + ], + [ + "▁int", + "oler" + ], + [ + "▁disco", + "unt" + ], + [ + "▁disc", + "ount" + ], + [ + "▁Stevens", + "on" + ], + [ + "▁Steven", + "son" + ], + [ + "▁", + "Ó" + ], + [ + "AR", + "D" + ], + [ + "▁le", + "uk" + ], + [ + "▁sew", + "age" + ], + [ + "▁al", + "gebra" + ], + [ + "▁Metall", + "ica" + ], + [ + "▁Previous", + "ly" + ], + [ + "▁acceler", + "ate" + ], + [ + "▁accel", + "erate" + ], + [ + ".", + ":" + ], + [ + "U", + "s" + ], + [ + "▁Mi", + "h" + ], + [ + "▁M", + "ih" + ], + [ + "▁pwod", + "ui" + ], + [ + "▁ins", + "ists" + ], + [ + "▁Element", + "s" + ], + [ + "▁Ele", + "ments" + ], + [ + "▁El", + "ements" + ], + [ + "▁E", + "lements" + ], + [ + "per", + "t" + ], + [ + "p", + "ert" + ], + [ + "▁Me", + "h" + ], + [ + "▁Mo", + "u" + ], + [ + "▁M", + "ou" + ], + [ + "▁ow", + "l" + ], + [ + "▁", + "owl" + ], + [ + "▁Alm", + "a" + ], + [ + "▁Al", + "ma" + ], + [ + "▁Arg", + "y" + ], + [ + "▁Ar", + "gy" + ], + [ + "▁Tal", + "e" + ], + [ + "▁Ta", + "le" + ], + [ + "▁T", + "ale" + ], + [ + "▁advise", + "r" + ], + [ + "▁advis", + "er" + ], + [ + "▁adv", + "iser" + ], + [ + "▁pled", + "ged" + ], + [ + "▁Istan", + "bul" + ], + [ + "▁turn", + "pike" + ], + [ + "▁villain", + "s" + ], + [ + "▁vill", + "ains" + ], + [ + "▁empir", + "ical" + ], + [ + "▁astronaut", + "s" + ], + [ + "or", + "b" + ], + [ + "▁sol", + "ic" + ], + [ + "▁so", + "lic" + ], + [ + "▁s", + "olic" + ], + [ + "▁feud", + "al" + ], + [ + "▁pur", + "ity" + ], + [ + "▁p", + "urity" + ], + [ + "▁bless", + "ing" + ], + [ + "▁mosqu", + "ito" + ], + [ + "▁prehist", + "oric" + ], + [ + "IS", + "T" + ], + [ + "I", + "ST" + ], + [ + "▁Vi", + "d" + ], + [ + "▁V", + "id" + ], + [ + "▁due", + "l" + ], + [ + "▁du", + "el" + ], + [ + "▁d", + "uel" + ], + [ + "▁Nass", + "er" + ], + [ + "▁Bat", + "ista" + ], + [ + "▁pale", + "ont" + ], + [ + "▁detail", + "ing" + ], + [ + "▁det", + "ailing" + ], + [ + "▁digest", + "ion" + ], + [ + "▁di", + "gestion" + ], + [ + "▁prejud", + "ice" + ], + [ + "▁neighbour", + "s" + ], + [ + "▁neighb", + "ours" + ], + [ + "l", + "v" + ], + [ + "ib", + "a" + ], + [ + "i", + "ba" + ], + [ + "oc", + "o" + ], + [ + "o", + "co" + ], + [ + "▁10", + "%" + ], + [ + "▁13", + "3" + ], + [ + "▁1", + "33" + ], + [ + "▁Ad", + "apt" + ], + [ + "▁Rapid", + "s" + ], + [ + "▁Rap", + "ids" + ], + [ + "▁Rel", + "ated" + ], + [ + "▁capture", + "s" + ], + [ + "▁capt", + "ures" + ], + [ + "▁cap", + "tures" + ], + [ + "▁prop", + "elled" + ], + [ + "▁cigarette", + "s" + ], + [ + "▁cig", + "arettes" + ], + [ + "▁collabor", + "ate" + ], + [ + ":", + "||" + ], + [ + "che", + "m" + ], + [ + "ch", + "em" + ], + [ + "c", + "hem" + ], + [ + "fri", + "ed" + ], + [ + "fr", + "ied" + ], + [ + "f", + "ried" + ], + [ + "▁202", + "2" + ], + [ + "▁20", + "22" + ], + [ + "▁Ne", + "ll" + ], + [ + "▁N", + "ell" + ], + [ + "▁h", + "int" + ], + [ + "reneur", + "s" + ], + [ + "rene", + "urs" + ], + [ + "▁anger", + "ed" + ], + [ + "▁ang", + "ered" + ], + [ + "▁", + "angered" + ], + [ + "▁Rel", + "igious" + ], + [ + "2", + "-" + ], + [ + "▁De", + "ar" + ], + [ + "▁D", + "ear" + ], + [ + "▁Lon", + "e" + ], + [ + "▁Lo", + "ne" + ], + [ + "▁L", + "one" + ], + [ + "▁Wh", + "ig" + ], + [ + "ail", + "les" + ], + [ + "a", + "illes" + ], + [ + "ipper", + "s" + ], + [ + "ipp", + "ers" + ], + [ + "ip", + "pers" + ], + [ + "i", + "ppers" + ], + [ + "▁Arr", + "ow" + ], + [ + "▁Ar", + "row" + ], + [ + "▁Ku", + "mar" + ], + [ + "▁K", + "umar" + ], + [ + "▁Det", + "erm" + ], + [ + "▁De", + "term" + ], + [ + "▁D", + "eterm" + ], + [ + "▁allev", + "iate" + ], + [ + "6", + "4" + ], + [ + "Pa", + "ul" + ], + [ + "P", + "aul" + ], + [ + "▁Mo", + "b" + ], + [ + "▁M", + "ob" + ], + [ + "▁Pr", + "inz" + ], + [ + "▁Rou", + "ge" + ], + [ + "▁Ro", + "uge" + ], + [ + "▁Image", + "s" + ], + [ + "▁Imag", + "es" + ], + [ + "▁Im", + "ages" + ], + [ + "▁Pic", + "ard" + ], + [ + "▁Pi", + "card" + ], + [ + "▁ar", + "ising" + ], + [ + "▁a", + "rising" + ], + [ + "▁B", + "iblical" + ], + [ + "▁Ethiop", + "ia" + ], + [ + "▁concess", + "ion" + ], + [ + "▁conc", + "ession" + ], + [ + "▁redesign", + "ed" + ], + [ + "▁redes", + "igned" + ], + [ + "▁C", + "i" + ], + [ + "fr", + "ey" + ], + [ + "f", + "rey" + ], + [ + "izz", + "a" + ], + [ + "iz", + "za" + ], + [ + "▁160", + "0" + ], + [ + "▁16", + "00" + ], + [ + "▁Ph", + "on" + ], + [ + "▁old", + "s" + ], + [ + "▁ol", + "ds" + ], + [ + "▁", + "olds" + ], + [ + "▁amendment", + "s" + ], + [ + "▁amend", + "ments" + ], + [ + "pa", + "ck" + ], + [ + "p", + "ack" + ], + [ + "▁(1", + "5" + ], + [ + "▁(", + "15" + ], + [ + "▁By", + "r" + ], + [ + "▁B", + "yr" + ], + [ + "▁Ko", + "h" + ], + [ + "▁K", + "oh" + ], + [ + "▁Sh", + "ock" + ], + [ + "▁ramp", + "s" + ], + [ + "▁ram", + "ps" + ], + [ + "▁r", + "amps" + ], + [ + "▁obst", + "acle" + ], + [ + "▁encl", + "osure" + ], + [ + "▁host", + "ility" + ], + [ + "▁Chronicle", + "s" + ], + [ + "▁Chronic", + "les" + ], + [ + "▁Chron", + "icles" + ], + [ + "▁ok", + "t" + ], + [ + "▁o", + "kt" + ], + [ + "▁Nad", + "u" + ], + [ + "▁Na", + "du" + ], + [ + "▁mot", + "to" + ], + [ + "▁m", + "otto" + ], + [ + "▁poly", + "m" + ], + [ + "▁pol", + "ym" + ], + [ + "▁Hol", + "iday" + ], + [ + "utation", + "al" + ], + [ + "ut", + "ational" + ], + [ + "▁compress", + "ed" + ], + [ + "▁comp", + "ressed" + ], + [ + "▁microscop", + "e" + ], + [ + "▁micros", + "cope" + ], + [ + "▁contrast", + "ing" + ], + [ + "i", + "ably" + ], + [ + "▁air", + "play" + ], + [ + "▁prince", + "s" + ], + [ + "▁pr", + "inces" + ], + [ + "y", + "g" + ], + [ + "▁con", + "e" + ], + [ + "▁co", + "ne" + ], + [ + "▁c", + "one" + ], + [ + "chw", + "ader" + ], + [ + "▁Cann", + "ing" + ], + [ + "▁Can", + "ning" + ], + [ + "▁prior", + "it" + ], + [ + "▁unanim", + "ous" + ], + [ + "▁11", + "." + ], + [ + "▁1", + "1." + ], + [ + "▁27", + "5" + ], + [ + "▁2", + "75" + ], + [ + "▁Fo", + "u" + ], + [ + "▁F", + "ou" + ], + [ + "▁rh", + "in" + ], + [ + "▁r", + "hin" + ], + [ + "▁Str", + "ike" + ], + [ + "▁St", + "rike" + ], + [ + "▁disgu", + "st" + ], + [ + "▁disg", + "ust" + ], + [ + "▁pen", + "ding" + ], + [ + "▁p", + "ending" + ], + [ + "▁pul", + "monary" + ], + [ + "▁commit", + "ting" + ], + [ + "▁comm", + "itting" + ], + [ + "▁P", + "D" + ], + [ + "▁", + "PD" + ], + [ + "▁Type", + "s" + ], + [ + "▁Typ", + "es" + ], + [ + "▁Ty", + "pes" + ], + [ + "▁appl", + "a" + ], + [ + "▁app", + "la" + ], + [ + "▁cerv", + "ical" + ], + [ + "▁fifteen", + "th" + ], + [ + "▁fif", + "teenth" + ], + [ + "▁Sa", + "s" + ], + [ + "▁S", + "as" + ], + [ + "▁Ec", + "ho" + ], + [ + "▁E", + "cho" + ], + [ + "▁Gu", + "in" + ], + [ + "st", + "idia" + ], + [ + "▁capit", + "a" + ], + [ + "▁cap", + "ita" + ], + [ + "▁fur", + "ious" + ], + [ + "▁painter", + "s" + ], + [ + "▁paint", + "ers" + ], + [ + "▁pain", + "ters" + ], + [ + "▁pa", + "inters" + ], + [ + "▁chem", + "otherapy" + ], + [ + "U", + "M" + ], + [ + "▁ke", + "t" + ], + [ + "▁k", + "et" + ], + [ + "ada", + "ys" + ], + [ + "ad", + "ays" + ], + [ + "a", + "days" + ], + [ + "▁18", + "16" + ], + [ + "▁Win", + "e" + ], + [ + "▁Wi", + "ne" + ], + [ + "▁W", + "ine" + ], + [ + "ap", + "arte" + ], + [ + "▁inex", + "p" + ], + [ + "▁in", + "exp" + ], + [ + "▁Juda", + "ism" + ], + [ + "▁hard", + "est" + ], + [ + "▁har", + "dest" + ], + [ + "▁rel", + "inqu" + ], + [ + "ét", + "é" + ], + [ + "▁R", + "w" + ], + [ + "arte", + "t" + ], + [ + "art", + "et" + ], + [ + "el", + "ope" + ], + [ + "ank", + "ton" + ], + [ + "▁Rem", + "ix" + ], + [ + "▁Si", + "oux" + ], + [ + "▁bomb", + "ed" + ], + [ + "▁bom", + "bed" + ], + [ + "▁Crow", + "ley" + ], + [ + "▁custom", + "ary" + ], + [ + "▁pioneer", + "ing" + ], + [ + "▁pione", + "ering" + ], + [ + "▁conflict", + "ing" + ], + [ + "es", + "i" + ], + [ + "▁Bu", + "g" + ], + [ + "▁B", + "ug" + ], + [ + "▁Bre", + "st" + ], + [ + "▁Br", + "est" + ], + [ + "▁B", + "rest" + ], + [ + "▁Mega", + "n" + ], + [ + "▁Meg", + "an" + ], + [ + "▁Me", + "gan" + ], + [ + "▁anti", + "s" + ], + [ + "▁ant", + "is" + ], + [ + "▁", + "antis" + ], + [ + "▁deck", + "s" + ], + [ + "▁dec", + "ks" + ], + [ + "▁emb", + "ark" + ], + [ + "▁Disc", + "uss" + ], + [ + "▁Emer", + "son" + ], + [ + "▁Em", + "erson" + ], + [ + "▁sher", + "iff" + ], + [ + "▁deleg", + "ate" + ], + [ + "▁scrut", + "iny" + ], + [ + "▁strike", + "outs" + ], + [ + "▁und", + "oubtedly" + ], + [ + "▁R", + "T" + ], + [ + "▁", + "RT" + ], + [ + "gan", + "g" + ], + [ + "ga", + "ng" + ], + [ + "g", + "ang" + ], + [ + "▁182", + "1" + ], + [ + "▁18", + "21" + ], + [ + "▁ar", + "om" + ], + [ + "▁a", + "rom" + ], + [ + "lies", + "t" + ], + [ + "lie", + "st" + ], + [ + "li", + "est" + ], + [ + "l", + "iest" + ], + [ + "▁2017", + "." + ], + [ + "▁201", + "7." + ], + [ + "atche", + "wan" + ], + [ + "▁gun", + "nery" + ], + [ + "▁punish", + "ed" + ], + [ + "▁pun", + "ished" + ], + [ + "▁corros", + "ion" + ], + [ + "▁facilitate", + "d" + ], + [ + "▁facilit", + "ated" + ], + [ + "▁jaw", + "s" + ], + [ + "▁j", + "aws" + ], + [ + "▁Bo", + "one" + ], + [ + "▁cl", + "ash" + ], + [ + "▁c", + "lash" + ], + [ + "▁sh", + "ake" + ], + [ + "▁gro", + "ove" + ], + [ + "▁scr", + "oll" + ], + [ + "▁sc", + "roll" + ], + [ + "▁Nev", + "ille" + ], + [ + "▁Ne", + "ville" + ], + [ + "▁pill", + "ars" + ], + [ + "▁Term", + "inal" + ], + [ + "▁climate", + "s" + ], + [ + "▁clim", + "ates" + ], + [ + "▁P", + "V" + ], + [ + "▁", + "PV" + ], + [ + "▁Ka", + "d" + ], + [ + "▁K", + "ad" + ], + [ + "aria", + "t" + ], + [ + "ari", + "at" + ], + [ + "ar", + "iat" + ], + [ + "▁Bar", + "r" + ], + [ + "▁B", + "arr" + ], + [ + "▁Lar", + "a" + ], + [ + "▁La", + "ra" + ], + [ + "▁L", + "ara" + ], + [ + "▁Mam", + "m" + ], + [ + "▁Ma", + "mm" + ], + [ + "▁M", + "amm" + ], + [ + "▁set", + "up" + ], + [ + "▁arbit", + "rary" + ], + [ + "▁", + "Ö" + ], + [ + "▁so", + "p" + ], + [ + "▁s", + "op" + ], + [ + "▁Nig", + "el" + ], + [ + "▁Ni", + "gel" + ], + [ + "use", + "ment" + ], + [ + "us", + "ement" + ], + [ + "▁Range", + "r" + ], + [ + "▁Ran", + "ger" + ], + [ + "▁R", + "anger" + ], + [ + "▁free", + "ze" + ], + [ + "▁Maur", + "itius" + ], + [ + "▁Telesc", + "ope" + ], + [ + "▁inn", + "ocence" + ], + [ + "▁Christ", + "ophe" + ], + [ + "▁Du", + "st" + ], + [ + "▁D", + "ust" + ], + [ + "▁salt", + "s" + ], + [ + "▁sal", + "ts" + ], + [ + "▁sl", + "ate" + ], + [ + "in", + "flamm" + ], + [ + "▁extra", + "v" + ], + [ + "▁extr", + "av" + ], + [ + "▁ext", + "rav" + ], + [ + "▁pist", + "ol" + ], + [ + "▁Hep", + "burn" + ], + [ + "▁occup", + "ies" + ], + [ + "▁rehears", + "al" + ], + [ + "▁social", + "ism" + ], + [ + "H", + "O" + ], + [ + "▁Pri", + "de" + ], + [ + "▁Pr", + "ide" + ], + [ + "▁P", + "ride" + ], + [ + "▁Ep", + "stein" + ], + [ + "▁bal", + "d" + ], + [ + "▁ba", + "ld" + ], + [ + "▁b", + "ald" + ], + [ + "▁Ele", + "ph" + ], + [ + "▁El", + "eph" + ], + [ + "▁Sam", + "ar" + ], + [ + "▁Sa", + "mar" + ], + [ + "▁Jer", + "ome" + ], + [ + "▁Je", + "rome" + ], + [ + "▁love", + "ly" + ], + [ + "▁lov", + "ely" + ], + [ + "▁Change", + "s" + ], + [ + "▁Chang", + "es" + ], + [ + "▁Chan", + "ges" + ], + [ + "▁Ch", + "anges" + ], + [ + "▁Test", + "ing" + ], + [ + "▁apolog", + "y" + ], + [ + "▁ap", + "ology" + ], + [ + "▁tr", + "illion" + ], + [ + "▁Off", + "ensive" + ], + [ + "6", + "8" + ], + [ + "▁(", + "9," + ], + [ + "▁Go", + "l" + ], + [ + "▁G", + "ol" + ], + [ + "▁Bo", + "is" + ], + [ + "▁B", + "ois" + ], + [ + "▁ra", + "ft" + ], + [ + "▁r", + "aft" + ], + [ + "▁", + "raft" + ], + [ + "▁Rod", + "gers" + ], + [ + "▁chief", + "ly" + ], + [ + "▁180", + "5" + ], + [ + "▁18", + "05" + ], + [ + "▁nar", + "c" + ], + [ + "▁n", + "arc" + ], + [ + "▁op", + "io" + ], + [ + "▁At", + "omic" + ], + [ + "▁Cald", + "er" + ], + [ + "▁Cal", + "der" + ], + [ + "▁imp", + "uls" + ], + [ + "▁motiv", + "es" + ], + [ + "▁mot", + "ives" + ], + [ + "rep", + "resent" + ], + [ + "▁Malaysia", + "n" + ], + [ + "▁Malays", + "ian" + ], + [ + "▁GP", + "S" + ], + [ + "▁G", + "PS" + ], + [ + "▁Mat", + "e" + ], + [ + "▁Ma", + "te" + ], + [ + "▁M", + "ate" + ], + [ + "ica", + "ble" + ], + [ + "ic", + "able" + ], + [ + "▁prefer", + "s" + ], + [ + "▁pref", + "ers" + ], + [ + "▁an", + "terior" + ], + [ + "▁trunk", + "line" + ], + [ + "▁extension", + "s" + ], + [ + "▁ext", + "ensions" + ], + [ + "▁translate", + "s" + ], + [ + "▁transl", + "ates" + ], + [ + "ilo", + "n" + ], + [ + "il", + "on" + ], + [ + "i", + "lon" + ], + [ + "▁Fe", + "el" + ], + [ + "▁qui", + "z" + ], + [ + "▁qu", + "iz" + ], + [ + "▁en", + "rich" + ], + [ + "▁Edu", + "ardo" + ], + [ + "▁incl", + "usive" + ], + [ + "▁in", + "clusive" + ], + [ + "▁adolesc", + "ent" + ], + [ + "▁ad", + "olescent" + ], + [ + "▁process", + "ion" + ], + [ + "▁proc", + "ession" + ], + [ + "▁exhibition", + "s" + ], + [ + "▁exhibit", + "ions" + ], + [ + "▁exhib", + "itions" + ], + [ + "emi", + "s" + ], + [ + "em", + "is" + ], + [ + "gre", + "n" + ], + [ + "gr", + "en" + ], + [ + "g", + "ren" + ], + [ + "▁Ep", + "s" + ], + [ + "▁E", + "ps" + ], + [ + "▁har", + "b" + ], + [ + "▁h", + "arb" + ], + [ + "▁Area", + "s" + ], + [ + "▁Are", + "as" + ], + [ + "▁Ar", + "eas" + ], + [ + "▁Come", + "t" + ], + [ + "▁Com", + "et" + ], + [ + "▁Co", + "met" + ], + [ + "▁C", + "omet" + ], + [ + "▁Fa", + "ust" + ], + [ + "▁climb", + "s" + ], + [ + "▁clim", + "bs" + ], + [ + "▁resid", + "e" + ], + [ + "▁res", + "ide" + ], + [ + "▁re", + "side" + ], + [ + "▁Not", + "able" + ], + [ + "▁narrative", + "s" + ], + [ + "▁narr", + "atives" + ], + [ + "▁disadvant", + "age" + ], + [ + "▁De", + "e" + ], + [ + "▁D", + "ee" + ], + [ + "▁Da", + "hl" + ], + [ + "▁D", + "ahl" + ], + [ + "▁tune", + "s" + ], + [ + "▁tun", + "es" + ], + [ + "▁tu", + "nes" + ], + [ + "▁t", + "unes" + ], + [ + "▁Cas", + "ino" + ], + [ + "▁Rot", + "ten" + ], + [ + "▁R", + "otten" + ], + [ + "▁rabb", + "it" + ], + [ + "▁rab", + "bit" + ], + [ + "▁intercept", + "ion" + ], + [ + "▁inter", + "ception" + ], + [ + "ú", + "l" + ], + [ + "ge", + "l" + ], + [ + "g", + "el" + ], + [ + "its", + "u" + ], + [ + "iss", + "on" + ], + [ + "is", + "son" + ], + [ + "▁imp", + "r" + ], + [ + "▁im", + "pr" + ], + [ + "▁McC", + "oy" + ], + [ + "▁Nich", + "ol" + ], + [ + "▁Nic", + "hol" + ], + [ + "epend", + "ent" + ], + [ + "▁Anat", + "omy" + ], + [ + "▁bar", + "rage" + ], + [ + "▁adapt", + "ive" + ], + [ + "▁Daven", + "port" + ], + [ + "▁dr", + "astically" + ], + [ + "▁6", + ":" + ], + [ + "era", + "t" + ], + [ + "er", + "at" + ], + [ + "e", + "rat" + ], + [ + "ppe", + "n" + ], + [ + "pp", + "en" + ], + [ + "p", + "pen" + ], + [ + "▁16", + "9" + ], + [ + "▁Ed", + "dy" + ], + [ + "▁Jul", + "es" + ], + [ + "▁Ju", + "les" + ], + [ + "▁J", + "ules" + ], + [ + "▁supp", + "ose" + ], + [ + "▁Res", + "ource" + ], + [ + "▁option", + "al" + ], + [ + "▁opt", + "ional" + ], + [ + "▁package", + "s" + ], + [ + "▁pack", + "ages" + ], + [ + "▁correct", + "ion" + ], + [ + "▁cor", + "rection" + ], + [ + "▁network", + "ing" + ], + [ + "▁repet", + "ition" + ], + [ + "▁sentiment", + "s" + ], + [ + "▁sent", + "iments" + ], + [ + "▁substitute", + "d" + ], + [ + "▁substit", + "uted" + ], + [ + "▁B", + "Y" + ], + [ + "ful", + "l" + ], + [ + "fu", + "ll" + ], + [ + "f", + "ull" + ], + [ + "▁On", + "o" + ], + [ + "▁O", + "no" + ], + [ + "▁out", + "c" + ], + [ + "umb", + "ling" + ], + [ + "▁outl", + "aw" + ], + [ + "▁out", + "law" + ], + [ + "▁wood", + "ed" + ], + [ + "▁switch", + "es" + ], + [ + "▁swit", + "ches" + ], + [ + "▁sw", + "itches" + ], + [ + "▁distract", + "ed" + ], + [ + "▁dist", + "racted" + ], + [ + "▁The", + "m" + ], + [ + "▁Th", + "em" + ], + [ + "▁T", + "hem" + ], + [ + "▁Cla", + "ir" + ], + [ + "▁Cl", + "air" + ], + [ + "▁Wh", + "ilst" + ], + [ + "▁st", + "anza" + ], + [ + "▁prim", + "ates" + ], + [ + "▁pri", + "mates" + ], + [ + "▁vol", + "atile" + ], + [ + "▁imped", + "ance" + ], + [ + "▁Sacrament", + "o" + ], + [ + "▁communist", + "s" + ], + [ + "▁commun", + "ists" + ], + [ + "▁regen", + "eration" + ], + [ + "las", + "h" + ], + [ + "la", + "sh" + ], + [ + "l", + "ash" + ], + [ + "▁179", + "2" + ], + [ + "▁17", + "92" + ], + [ + "▁Live", + "s" + ], + [ + "▁Liv", + "es" + ], + [ + "▁Li", + "ves" + ], + [ + "▁L", + "ives" + ], + [ + "▁rail", + "s" + ], + [ + "▁ra", + "ils" + ], + [ + "▁r", + "ails" + ], + [ + "▁Phill", + "ip" + ], + [ + "▁undergo", + "ne" + ], + [ + "▁under", + "gone" + ], + [ + "ew", + "ood" + ], + [ + "e", + "wood" + ], + [ + "▁Her", + "r" + ], + [ + "▁H", + "err" + ], + [ + "▁Ve", + "tt" + ], + [ + "▁V", + "ett" + ], + [ + "aren", + "cy" + ], + [ + "ar", + "ency" + ], + [ + "a", + "rency" + ], + [ + "▁rece", + "i" + ], + [ + "▁rec", + "ei" + ], + [ + "▁warn", + "s" + ], + [ + "▁war", + "ns" + ], + [ + "▁hall", + "uc" + ], + [ + "▁Source", + "s" + ], + [ + "▁S", + "ources" + ], + [ + "▁M", + "O" + ], + [ + "ih", + "an" + ], + [ + "i", + "han" + ], + [ + "▁V", + "HS" + ], + [ + "▁Brid", + "g" + ], + [ + "▁pres", + "c" + ], + [ + "▁pre", + "sc" + ], + [ + "▁pr", + "esc" + ], + [ + "▁p", + "resc" + ], + [ + "▁une", + "qu" + ], + [ + "▁un", + "equ" + ], + [ + "▁dense", + "ly" + ], + [ + "▁dens", + "ely" + ], + [ + "▁fear", + "ing" + ], + [ + "▁fe", + "aring" + ], + [ + "▁f", + "earing" + ], + [ + "▁rest", + "art" + ], + [ + "▁tel", + "enovela" + ], + [ + "▁F", + "ortunately" + ], + [ + "▁experiment", + "ation" + ], + [ + "B", + "i" + ], + [ + "ek", + "a" + ], + [ + "e", + "ka" + ], + [ + "att", + "a" + ], + [ + "at", + "ta" + ], + [ + "se", + "in" + ], + [ + "▁182", + "4" + ], + [ + "▁18", + "24" + ], + [ + "▁Ko", + "ch" + ], + [ + "▁K", + "och" + ], + [ + "▁Ele", + "na" + ], + [ + "▁El", + "ena" + ], + [ + "▁Res", + "erv" + ], + [ + "▁treat", + "s" + ], + [ + "▁tre", + "ats" + ], + [ + "▁Activ", + "ity" + ], + [ + "▁Act", + "ivity" + ], + [ + "▁micro", + "phone" + ], + [ + "all", + "i" + ], + [ + "al", + "li" + ], + [ + "er", + "un" + ], + [ + "e", + "run" + ], + [ + "▁Di", + "f" + ], + [ + "▁D", + "if" + ], + [ + "▁ap", + "t" + ], + [ + "▁a", + "pt" + ], + [ + "▁", + "apt" + ], + [ + "▁18", + "18" + ], + [ + "▁Grove", + "s" + ], + [ + "▁Gro", + "ves" + ], + [ + "▁Gr", + "oves" + ], + [ + "▁di", + "ocese" + ], + [ + "▁rocket", + "s" + ], + [ + "▁rock", + "ets" + ], + [ + "▁r", + "ockets" + ], + [ + "organ", + "isms" + ], + [ + "▁Luther", + "an" + ], + [ + "▁dest", + "ined" + ], + [ + "▁inject", + "ed" + ], + [ + "▁inj", + "ected" + ], + [ + "▁grat", + "itude" + ], + [ + "▁remark", + "ably" + ], + [ + "▁research", + "ing" + ], + [ + "▁researc", + "hing" + ], + [ + "▁resear", + "ching" + ], + [ + "▁Bra", + "s" + ], + [ + "▁Br", + "as" + ], + [ + "▁B", + "ras" + ], + [ + "▁lon", + "e" + ], + [ + "▁lo", + "ne" + ], + [ + "▁l", + "one" + ], + [ + "▁nu", + "de" + ], + [ + "▁n", + "ude" + ], + [ + "▁miz", + "ik" + ], + [ + "▁tru", + "ce" + ], + [ + "▁tr", + "uce" + ], + [ + "▁flank", + "s" + ], + [ + "▁fl", + "anks" + ], + [ + "▁board", + "ed" + ], + [ + "▁bo", + "arded" + ], + [ + "▁Sask", + "atchewan" + ], + [ + "l", + "é" + ], + [ + "▁Ly", + "r" + ], + [ + "▁L", + "yr" + ], + [ + "oria", + "n" + ], + [ + "ori", + "an" + ], + [ + "or", + "ian" + ], + [ + "o", + "rian" + ], + [ + "▁le", + "ap" + ], + [ + "peror", + "s" + ], + [ + "per", + "ors" + ], + [ + "pe", + "rors" + ], + [ + "▁Ring", + "s" + ], + [ + "▁R", + "ings" + ], + [ + "▁Reg", + "ina" + ], + [ + "▁deriv", + "e" + ], + [ + "▁der", + "ive" + ], + [ + "▁guard", + "ed" + ], + [ + "▁gu", + "arded" + ], + [ + "▁lic", + "ence" + ], + [ + "▁certain", + "ty" + ], + [ + "stitution", + "al" + ], + [ + "▁ridic", + "ulous" + ], + [ + "▁Sustain", + "able" + ], + [ + "▁Constitution", + "al" + ], + [ + "▁Con", + "stitutional" + ], + [ + "ja", + "r" + ], + [ + "j", + "ar" + ], + [ + "▁N", + "K" + ], + [ + "▁u", + "b" + ], + [ + "▁", + "ub" + ], + [ + "▁Pi", + "g" + ], + [ + "▁P", + "ig" + ], + [ + "aret", + "h" + ], + [ + "are", + "th" + ], + [ + "ar", + "eth" + ], + [ + "bank", + "s" + ], + [ + "ban", + "ks" + ], + [ + "b", + "anks" + ], + [ + "▁(10", + "," + ], + [ + "▁Ti", + "ck" + ], + [ + "▁T", + "ick" + ], + [ + "▁Cly", + "de" + ], + [ + "▁Inn", + "er" + ], + [ + "▁In", + "ner" + ], + [ + "▁repl", + "ay" + ], + [ + "▁rep", + "lay" + ], + [ + "▁re", + "play" + ], + [ + "▁table", + "t" + ], + [ + "▁tab", + "let" + ], + [ + "▁Gill", + "ian" + ], + [ + "▁Suff", + "olk" + ], + [ + "▁poul", + "try" + ], + [ + "▁recipient", + "s" + ], + [ + "▁recip", + "ients" + ], + [ + "Th", + "at" + ], + [ + "T", + "hat" + ], + [ + "▁Ko", + "u" + ], + [ + "▁K", + "ou" + ], + [ + "▁MR", + "I" + ], + [ + "▁M", + "RI" + ], + [ + "▁Dou", + "b" + ], + [ + "▁Do", + "ub" + ], + [ + "▁D", + "oub" + ], + [ + "▁g", + "ill" + ], + [ + "▁Hans", + "en" + ], + [ + "▁Han", + "sen" + ], + [ + "▁H", + "ansen" + ], + [ + "▁apple", + "s" + ], + [ + "▁appl", + "es" + ], + [ + "▁app", + "les" + ], + [ + "▁ap", + "ples" + ], + [ + "▁weigh", + "s" + ], + [ + "▁Viking", + "s" + ], + [ + "▁Vik", + "ings" + ], + [ + "M", + "y" + ], + [ + "le", + "ase" + ], + [ + "▁We", + "in" + ], + [ + "iti", + "ous" + ], + [ + "it", + "ious" + ], + [ + "▁Ah", + "med" + ], + [ + "▁Ben", + "ch" + ], + [ + "▁ren", + "dez" + ], + [ + "▁re", + "ndez" + ], + [ + "▁Bar", + "oque" + ], + [ + "▁Albania", + "n" + ], + [ + "▁Alban", + "ian" + ], + [ + "▁court", + "esy" + ], + [ + "▁land", + "owners" + ], + [ + "▁19", + "," + ], + [ + "▁1", + "9," + ], + [ + "▁20", + "3" + ], + [ + "▁Her", + "b" + ], + [ + "▁H", + "erb" + ], + [ + "fact", + "ion" + ], + [ + "fa", + "ction" + ], + [ + "f", + "action" + ], + [ + "▁Chron", + "ic" + ], + [ + "▁Ch", + "ronic" + ], + [ + "▁f", + "ission" + ], + [ + "▁Problem", + "s" + ], + [ + "▁Pro", + "blems" + ], + [ + "▁Re", + "leased" + ], + [ + "▁Activ", + "ities" + ], + [ + "▁Act", + "ivities" + ], + [ + "▁manip", + "ulate" + ], + [ + "▁quant", + "itative" + ], + [ + "▁cur", + "s" + ], + [ + "▁cu", + "rs" + ], + [ + "▁c", + "urs" + ], + [ + "▁Mit", + "ch" + ], + [ + "▁M", + "itch" + ], + [ + "▁rifle", + "s" + ], + [ + "▁rif", + "les" + ], + [ + "▁Conc", + "ern" + ], + [ + "▁Vers", + "ion" + ], + [ + "▁V", + "ersion" + ], + [ + "▁airline", + "s" + ], + [ + "▁air", + "lines" + ], + [ + "▁Ale", + "c" + ], + [ + "▁Al", + "ec" + ], + [ + "▁nu", + "ll" + ], + [ + "▁n", + "ull" + ], + [ + "▁Note", + "s" + ], + [ + "▁Not", + "es" + ], + [ + "▁No", + "tes" + ], + [ + "▁N", + "otes" + ], + [ + "▁audition", + "ed" + ], + [ + "▁posts", + "eason" + ], + [ + "▁post", + "season" + ], + [ + "▁transform", + "ing" + ], + [ + "!", + ")" + ], + [ + "-1", + "3" + ], + [ + "-", + "13" + ], + [ + "▁G", + "B" + ], + [ + "▁", + "GB" + ], + [ + "▁v", + "a" + ], + [ + "▁", + "va" + ], + [ + "66", + "67" + ], + [ + "th", + "is" + ], + [ + "t", + "his" + ], + [ + "▁29", + "0" + ], + [ + "▁2", + "90" + ], + [ + "g", + "ment" + ], + [ + "▁Pun", + "j" + ], + [ + "▁Bart", + "h" + ], + [ + "▁Bar", + "th" + ], + [ + "▁B", + "arth" + ], + [ + "▁Whe", + "at" + ], + [ + "▁Moff", + "at" + ], + [ + "▁boil", + "ing" + ], + [ + "▁bo", + "iling" + ], + [ + "▁Hart", + "ford" + ], + [ + "▁sediment", + "s" + ], + [ + "▁sed", + "iments" + ], + [ + "▁Wilm", + "ington" + ], + [ + "eas", + "on" + ], + [ + "ea", + "son" + ], + [ + "e", + "ason" + ], + [ + "▁Mac", + "L" + ], + [ + "▁curs", + "e" + ], + [ + "▁cur", + "se" + ], + [ + "▁c", + "urse" + ], + [ + "▁Credit", + "s" + ], + [ + "▁Cred", + "its" + ], + [ + "▁Evan", + "gel" + ], + [ + "▁Eva", + "ngel" + ], + [ + "▁Ev", + "angel" + ], + [ + "▁Har", + "riet" + ], + [ + "▁Mid", + "west" + ], + [ + "▁shore", + "line" + ], + [ + "▁archae", + "ology" + ], + [ + "▁unav", + "ailable" + ], + [ + "▁Bur", + "ma" + ], + [ + "▁Exam", + "ple" + ], + [ + "▁Ex", + "ample" + ], + [ + "▁continent", + "s" + ], + [ + "▁contin", + "ents" + ], + [ + "afi", + "a" + ], + [ + "af", + "ia" + ], + [ + "and", + "e" + ], + [ + "an", + "de" + ], + [ + "▁Kn", + "e" + ], + [ + "▁K", + "ne" + ], + [ + "app", + "er" + ], + [ + "ap", + "per" + ], + [ + "a", + "pper" + ], + [ + "▁milit", + "ar" + ], + [ + "▁mil", + "itar" + ], + [ + "▁paras", + "ite" + ], + [ + "▁accum", + "ulate" + ], + [ + "▁advertis", + "ed" + ], + [ + "▁advert", + "ised" + ], + [ + "f", + "o" + ], + [ + "▁Chi", + "p" + ], + [ + "▁Ch", + "ip" + ], + [ + "▁C", + "hip" + ], + [ + "▁hel", + "m" + ], + [ + "▁ta", + "tt" + ], + [ + "▁t", + "att" + ], + [ + "▁arter", + "ies" + ], + [ + "▁art", + "eries" + ], + [ + "▁dop", + "amine" + ], + [ + "▁Schne", + "ider" + ], + [ + "▁unfam", + "iliar" + ], + [ + "▁Architect", + "ure" + ], + [ + "ys", + "c" + ], + [ + "y", + "sc" + ], + [ + "ang", + "u" + ], + [ + "an", + "gu" + ], + [ + "mer", + "e" + ], + [ + "me", + "re" + ], + [ + "m", + "ere" + ], + [ + "▁31", + "0" + ], + [ + "▁3", + "10" + ], + [ + "ctor", + "y" + ], + [ + "ct", + "ory" + ], + [ + "▁2013", + "," + ], + [ + "▁201", + "3," + ], + [ + "▁Lanm", + "ò" + ], + [ + "▁folk", + "s" + ], + [ + "▁fol", + "ks" + ], + [ + "▁Gill", + "es" + ], + [ + "▁Gil", + "les" + ], + [ + "▁G", + "illes" + ], + [ + "▁Nord", + "ic" + ], + [ + "▁analys", + "ts" + ], + [ + "▁analy", + "sts" + ], + [ + "▁admir", + "ation" + ], + [ + "▁adm", + "iration" + ], + [ + "▁Yellow", + "stone" + ], + [ + "▁dreadnought", + "s" + ], + [ + "▁dreadn", + "oughts" + ], + [ + "▁20", + "6" + ], + [ + "▁Gl", + "e" + ], + [ + "▁G", + "le" + ], + [ + "▁NH", + "C" + ], + [ + "▁N", + "HC" + ], + [ + "ague", + "y" + ], + [ + "agu", + "ey" + ], + [ + "▁100", + "%" + ], + [ + "▁Met", + "s" + ], + [ + "▁Me", + "ts" + ], + [ + "▁M", + "ets" + ], + [ + "▁Pou", + "nd" + ], + [ + "▁Po", + "und" + ], + [ + "▁P", + "ound" + ], + [ + "▁okt", + "òb" + ], + [ + "isc", + "opal" + ], + [ + "▁Schw", + "ar" + ], + [ + "▁Sch", + "war" + ], + [ + "▁Gate", + "way" + ], + [ + "▁Gat", + "eway" + ], + [ + "▁Therap", + "y" + ], + [ + "▁recip", + "roc" + ], + [ + "▁be", + "verages" + ], + [ + "▁cur", + "iosity" + ], + [ + "▁commission", + "s" + ], + [ + "▁comm", + "issions" + ], + [ + "▁bi", + "c" + ], + [ + "▁b", + "ic" + ], + [ + "▁Am", + "ph" + ], + [ + "▁A", + "mph" + ], + [ + "asure", + "r" + ], + [ + "as", + "urer" + ], + [ + "▁rabbit", + "s" + ], + [ + "▁rabb", + "its" + ], + [ + "▁cann", + "abis" + ], + [ + "▁correct", + "ed" + ], + [ + "▁confisc", + "ated" + ], + [ + "▁reserv", + "ations" + ], + [ + "uck", + "le" + ], + [ + "▁bite", + "s" + ], + [ + "▁bit", + "es" + ], + [ + "▁bi", + "tes" + ], + [ + "▁b", + "ites" + ], + [ + "eline", + "ss" + ], + [ + "elin", + "ess" + ], + [ + "eli", + "ness" + ], + [ + "el", + "iness" + ], + [ + "▁Black", + "s" + ], + [ + "▁Bl", + "acks" + ], + [ + "▁Flow", + "er" + ], + [ + "▁Fl", + "ower" + ], + [ + "▁equal", + "s" + ], + [ + "▁equ", + "als" + ], + [ + "▁nause", + "a" + ], + [ + "▁Vick", + "ers" + ], + [ + "▁clean", + "ed" + ], + [ + "▁det", + "ained" + ], + [ + "▁de", + "tained" + ], + [ + "▁outline", + "s" + ], + [ + "▁outl", + "ines" + ], + [ + "▁out", + "lines" + ], + [ + "▁butter", + "flies" + ], + [ + "▁reconcil", + "iation" + ], + [ + "sc", + "h" + ], + [ + "s", + "ch" + ], + [ + "tt", + "i" + ], + [ + "t", + "ti" + ], + [ + "or", + "rh" + ], + [ + "ste", + "d" + ], + [ + "st", + "ed" + ], + [ + "s", + "ted" + ], + [ + "▁do", + "d" + ], + [ + "▁d", + "od" + ], + [ + "▁ri", + "p" + ], + [ + "▁r", + "ip" + ], + [ + "▁", + "rip" + ], + [ + "fall", + "s" + ], + [ + "fal", + "ls" + ], + [ + "▁Gr", + "is" + ], + [ + "▁G", + "ris" + ], + [ + "▁gum", + "s" + ], + [ + "▁gu", + "ms" + ], + [ + "▁g", + "ums" + ], + [ + "▁sea", + "p" + ], + [ + "▁se", + "ap" + ], + [ + "▁vis", + "c" + ], + [ + "▁vi", + "sc" + ], + [ + "▁v", + "isc" + ], + [ + "▁stick", + "y" + ], + [ + "▁Ta", + "unton" + ], + [ + "▁pier", + "cing" + ], + [ + "▁process", + "or" + ], + [ + "▁constitute", + "s" + ], + [ + "▁constitu", + "tes" + ], + [ + "▁constit", + "utes" + ], + [ + "ok", + "o" + ], + [ + "o", + "ko" + ], + [ + "pl", + "an" + ], + [ + "p", + "lan" + ], + [ + "▁As", + "c" + ], + [ + "▁A", + "sc" + ], + [ + "▁Mon", + "k" + ], + [ + "▁Hyde", + "r" + ], + [ + "▁Hyd", + "er" + ], + [ + "▁Hy", + "der" + ], + [ + "▁Ph", + "arm" + ], + [ + "▁P", + "harm" + ], + [ + "▁Kom", + "bat" + ], + [ + "▁K", + "ombat" + ], + [ + "▁pot", + "ato" + ], + [ + "cip", + "ation" + ], + [ + "▁over", + "run" + ], + [ + "▁mon", + "astic" + ], + [ + "▁resil", + "ience" + ], + [ + "ru", + "e" + ], + [ + "r", + "ue" + ], + [ + "ue", + "n" + ], + [ + "u", + "en" + ], + [ + "im", + "us" + ], + [ + "i", + "mus" + ], + [ + "▁NW", + "A" + ], + [ + "▁N", + "WA" + ], + [ + "ella", + "n" + ], + [ + "ell", + "an" + ], + [ + "el", + "lan" + ], + [ + "e", + "llan" + ], + [ + "▁Gir", + "o" + ], + [ + "▁Gi", + "ro" + ], + [ + "▁G", + "iro" + ], + [ + "▁Ger", + "ard" + ], + [ + "▁pl", + "under" + ], + [ + "▁commun", + "al" + ], + [ + "▁comm", + "unal" + ], + [ + "▁script", + "ed" + ], + [ + "▁perception", + "s" + ], + [ + "▁perce", + "ptions" + ], + [ + "▁per", + "ceptions" + ], + [ + ",", + "’" + ], + [ + "e", + "i" + ], + [ + "▁risk", + "y" + ], + [ + "▁ris", + "ky" + ], + [ + "▁ri", + "sky" + ], + [ + "▁coc", + "aine" + ], + [ + "▁killing", + "s" + ], + [ + "▁kill", + "ings" + ], + [ + "▁kil", + "lings" + ], + [ + "▁content", + "ion" + ], + [ + "▁cont", + "ention" + ], + [ + "▁Lu", + "k" + ], + [ + "▁L", + "uk" + ], + [ + "▁Aur", + "ora" + ], + [ + "▁stap", + "le" + ], + [ + "▁stra", + "nd" + ], + [ + "▁str", + "and" + ], + [ + "▁st", + "rand" + ], + [ + "▁Buch", + "anan" + ], + [ + "▁activ", + "ate" + ], + [ + "▁Det", + "ective" + ], + [ + "adi", + "n" + ], + [ + "ad", + "in" + ], + [ + "a", + "din" + ], + [ + "em", + "po" + ], + [ + "▁du", + "r" + ], + [ + "▁d", + "ur" + ], + [ + "end", + "en" + ], + [ + "en", + "den" + ], + [ + "▁Duc", + "k" + ], + [ + "▁Du", + "ck" + ], + [ + "▁D", + "uck" + ], + [ + "▁2016", + "," + ], + [ + "▁201", + "6," + ], + [ + "▁bat", + "ch" + ], + [ + "▁b", + "atch" + ], + [ + "▁Morm", + "on" + ], + [ + "▁Mor", + "mon" + ], + [ + "▁inj", + "ust" + ], + [ + "▁in", + "just" + ], + [ + "▁Sold", + "ier" + ], + [ + "▁patron", + "s" + ], + [ + "▁pat", + "rons" + ], + [ + "▁desert", + "ed" + ], + [ + "▁des", + "erted" + ], + [ + "▁depart", + "ing" + ], + [ + "▁protocol", + "s" + ], + [ + "▁protoc", + "ols" + ], + [ + "▁retail", + "ers" + ], + [ + "▁sophom", + "ore" + ], + [ + "▁unp", + "redict" + ], + [ + "▁comment", + "ator" + ], + [ + "sh", + "aw" + ], + [ + "s", + "haw" + ], + [ + "▁ka", + "n" + ], + [ + "▁k", + "an" + ], + [ + "▁", + "kan" + ], + [ + "▁179", + "5" + ], + [ + "▁17", + "95" + ], + [ + "▁Med", + "ic" + ], + [ + "▁er", + "oded" + ], + [ + "▁stup", + "id" + ], + [ + "▁Meet", + "ing" + ], + [ + "▁frans", + "èz" + ], + [ + "▁rhythm", + "ic" + ], + [ + "▁improv", + "ised" + ], + [ + "▁reflect", + "ive" + ], + [ + ".", + "9" + ], + [ + "vi", + "k" + ], + [ + "v", + "ik" + ], + [ + "rug", + "u" + ], + [ + "ru", + "gu" + ], + [ + "r", + "ugu" + ], + [ + "▁Ger", + "t" + ], + [ + "▁G", + "ert" + ], + [ + "▁ST", + "EM" + ], + [ + "fe", + "eding" + ], + [ + "▁Cop", + "per" + ], + [ + "▁Co", + "pper" + ], + [ + "▁confl", + "u" + ], + [ + "▁conf", + "lu" + ], + [ + "▁con", + "flu" + ], + [ + "▁insp", + "ir" + ], + [ + "▁ins", + "pir" + ], + [ + "▁prize", + "s" + ], + [ + "▁pri", + "zes" + ], + [ + "▁pr", + "izes" + ], + [ + "▁Himm", + "ler" + ], + [ + "▁Surviv", + "or" + ], + [ + "▁presentation", + "s" + ], + [ + "▁present", + "ations" + ], + [ + "1", + "–" + ], + [ + "ð", + "r" + ], + [ + "”", + ")" + ], + [ + "ath", + "ed" + ], + [ + "at", + "hed" + ], + [ + "▁to", + "dd" + ], + [ + "isode", + "s" + ], + [ + "is", + "odes" + ], + [ + "aus", + "ible" + ], + [ + "▁monaster", + "ies" + ], + [ + "▁Dre", + "s" + ], + [ + "▁Dr", + "es" + ], + [ + "▁D", + "res" + ], + [ + "▁ben", + "z" + ], + [ + "▁b", + "enz" + ], + [ + "▁Ref", + "uge" + ], + [ + "▁Hass", + "ett" + ], + [ + "▁tackle", + "s" + ], + [ + "▁tack", + "les" + ], + [ + "▁agree", + "ing" + ], + [ + "▁agre", + "eing" + ], + [ + "▁poster", + "ior" + ], + [ + "▁pos", + "terior" + ], + [ + "road", + "s" + ], + [ + "ro", + "ads" + ], + [ + "▁Fer", + "m" + ], + [ + "▁Fe", + "rm" + ], + [ + "▁F", + "erm" + ], + [ + "▁Ab", + "yss" + ], + [ + "▁Cret", + "e" + ], + [ + "▁Cre", + "te" + ], + [ + "▁Cr", + "ete" + ], + [ + "▁C", + "rete" + ], + [ + "▁gra", + "pes" + ], + [ + "▁gr", + "apes" + ], + [ + "▁Kash", + "mir" + ], + [ + "▁allerg", + "y" + ], + [ + "▁all", + "ergy" + ], + [ + "▁declare", + "s" + ], + [ + "▁decl", + "ares" + ], + [ + "▁form", + "idable" + ], + [ + "▁natural", + "ist" + ], + [ + "▁Confeder", + "ation" + ], + [ + "stad", + "t" + ], + [ + "▁was", + "t" + ], + [ + "▁wa", + "st" + ], + [ + "▁w", + "ast" + ], + [ + "▁unp", + "le" + ], + [ + "▁un", + "ple" + ], + [ + "▁clar", + "ity" + ], + [ + "▁cl", + "arity" + ], + [ + "▁out", + "ages" + ], + [ + "▁spell", + "ed" + ], + [ + "▁spe", + "lled" + ], + [ + "▁sp", + "elled" + ], + [ + "▁skelet", + "al" + ], + [ + "▁per", + "pendicular" + ], + [ + "él", + "é" + ], + [ + "é", + "lé" + ], + [ + "▁a", + "il" + ], + [ + "▁", + "ail" + ], + [ + "▁fu", + "g" + ], + [ + "▁f", + "ug" + ], + [ + "onne", + "ct" + ], + [ + "onn", + "ect" + ], + [ + "▁tact", + "ic" + ], + [ + "▁ta", + "ctic" + ], + [ + "▁t", + "actic" + ], + [ + "▁migrate", + "d" + ], + [ + "▁migr", + "ated" + ], + [ + "▁mig", + "rated" + ], + [ + "▁m", + "igrated" + ], + [ + "▁transcript", + "ion" + ], + [ + "▁transc", + "ription" + ], + [ + "▁trans", + "cription" + ], + [ + "▁sè", + "l" + ], + [ + "▁s", + "èl" + ], + [ + "▁Nob", + "ody" + ], + [ + "▁No", + "body" + ], + [ + "▁disc", + "ern" + ], + [ + "▁sept", + "anm" + ], + [ + "▁Sam", + "antha" + ], + [ + "▁contract", + "or" + ], + [ + "▁contra", + "ctor" + ], + [ + "awk", + "s" + ], + [ + "aw", + "ks" + ], + [ + "▁13", + "4" + ], + [ + "▁1", + "34" + ], + [ + "t", + "land" + ], + [ + "▁not", + "ified" + ], + [ + "▁sweep", + "ing" + ], + [ + "▁swe", + "eping" + ], + [ + "▁Individual", + "s" + ], + [ + "▁Individ", + "uals" + ], + [ + "▁commercial", + "s" + ], + [ + "▁decoration", + "s" + ], + [ + "▁decor", + "ations" + ], + [ + "▁IT", + "V" + ], + [ + "▁I", + "TV" + ], + [ + "ros", + "is" + ], + [ + "ro", + "sis" + ], + [ + "r", + "osis" + ], + [ + "▁170", + "0" + ], + [ + "▁17", + "00" + ], + [ + "inc", + "ome" + ], + [ + "in", + "come" + ], + [ + "omen", + "cl" + ], + [ + "▁tail", + "s" + ], + [ + "▁ta", + "ils" + ], + [ + "▁t", + "ails" + ], + [ + "▁time", + "ly" + ], + [ + "▁tim", + "ely" + ], + [ + "▁legitim", + "acy" + ], + [ + "V", + "N" + ], + [ + "z", + "t" + ], + [ + "og", + "ical" + ], + [ + "▁Eb", + "ert" + ], + [ + "▁E", + "bert" + ], + [ + "▁We", + "iss" + ], + [ + "iv", + "ities" + ], + [ + "het", + "amine" + ], + [ + "▁coat", + "ing" + ], + [ + "▁co", + "ating" + ], + [ + "▁Northwest", + "ern" + ], + [ + "▁North", + "western" + ], + [ + "▁commemorate", + "d" + ], + [ + "▁commemor", + "ated" + ], + [ + "▁Da", + "d" + ], + [ + "▁D", + "ad" + ], + [ + "▁Get", + "t" + ], + [ + "▁Ge", + "tt" + ], + [ + "▁G", + "ett" + ], + [ + "ortun", + "ate" + ], + [ + "ort", + "unate" + ], + [ + "▁craft", + "ed" + ], + [ + "▁plague", + "d" + ], + [ + "▁plag", + "ued" + ], + [ + "▁robot", + "ic" + ], + [ + "▁rob", + "otic" + ], + [ + "▁charm", + "ing" + ], + [ + "▁char", + "ming" + ], + [ + "▁ship", + "ment" + ], + [ + "▁ske", + "ptical" + ], + [ + "▁circ", + "ulating" + ], + [ + "▁Investig", + "ation" + ], + [ + "▁Invest", + "igation" + ], + [ + "▁rede", + "velopment" + ], + [ + "▁E", + "R" + ], + [ + "▁", + "ER" + ], + [ + "▁Soc", + "i" + ], + [ + "▁So", + "ci" + ], + [ + "▁S", + "oci" + ], + [ + "▁Ari", + "el" + ], + [ + "▁Ar", + "iel" + ], + [ + "▁Leaf", + "s" + ], + [ + "▁Maria", + "h" + ], + [ + "▁Mari", + "ah" + ], + [ + "▁Mar", + "iah" + ], + [ + "▁Sal", + "mon" + ], + [ + "▁valve", + "s" + ], + [ + "▁val", + "ves" + ], + [ + "▁forest", + "ed" + ], + [ + "▁fore", + "sted" + ], + [ + "▁for", + "ested" + ], + [ + "▁alumin", + "ium" + ], + [ + "▁adjust", + "ments" + ], + [ + "▁15", + "3" + ], + [ + "▁Bi", + "z" + ], + [ + "▁B", + "iz" + ], + [ + "▁180", + "6" + ], + [ + "▁Jud", + "e" + ], + [ + "▁Ju", + "de" + ], + [ + "▁J", + "ude" + ], + [ + "▁Si", + "kh" + ], + [ + "▁S", + "ikh" + ], + [ + "▁rif", + "f" + ], + [ + "▁ri", + "ff" + ], + [ + "▁r", + "iff" + ], + [ + "▁Kerr", + "y" + ], + [ + "▁Ker", + "ry" + ], + [ + "▁Tor", + "ah" + ], + [ + "▁To", + "rah" + ], + [ + "▁wag", + "on" + ], + [ + "▁wa", + "gon" + ], + [ + "▁w", + "agon" + ], + [ + "▁stroke", + "s" + ], + [ + "▁stro", + "kes" + ], + [ + "▁str", + "okes" + ], + [ + "▁femin", + "ine" + ], + [ + "▁forecast", + "s" + ], + [ + "P", + "M" + ], + [ + "▁Ba", + "e" + ], + [ + "▁B", + "ae" + ], + [ + "▁So", + "il" + ], + [ + "lin", + "ing" + ], + [ + "li", + "ning" + ], + [ + "l", + "ining" + ], + [ + "unker", + "s" + ], + [ + "unk", + "ers" + ], + [ + "▁Hog", + "an" + ], + [ + "▁Ho", + "gan" + ], + [ + "▁H", + "ogan" + ], + [ + "▁Port", + "ra" + ], + [ + "▁Por", + "tra" + ], + [ + "▁anim", + "ators" + ], + [ + "▁dece", + "ption" + ], + [ + "▁de", + "ception" + ], + [ + "▁school", + "ing" + ], + [ + "▁motorcy", + "cle" + ], + [ + "▁principal", + "ly" + ], + [ + "▁princip", + "ally" + ], + [ + "oph", + "on" + ], + [ + "▁fol", + "l" + ], + [ + "▁fo", + "ll" + ], + [ + "▁f", + "oll" + ], + [ + "▁sub", + "m" + ], + [ + "▁Sex", + "ual" + ], + [ + "▁Se", + "xual" + ], + [ + "▁ar", + "tefact" + ], + [ + "▁rhet", + "oric" + ], + [ + "▁Athletic", + "s" + ], + [ + "▁Athlet", + "ics" + ], + [ + "▁fracture", + "s" + ], + [ + "▁fract", + "ures" + ], + [ + "▁", + "§" + ], + [ + "aya", + "s" + ], + [ + "ay", + "as" + ], + [ + "▁Fr", + "y" + ], + [ + "▁F", + "ry" + ], + [ + "▁ne", + "m" + ], + [ + "▁n", + "em" + ], + [ + "ies", + "el" + ], + [ + "ie", + "sel" + ], + [ + "▁Gal", + "e" + ], + [ + "▁Ga", + "le" + ], + [ + "▁G", + "ale" + ], + [ + "▁Georg", + "ie" + ], + [ + "▁Geor", + "gie" + ], + [ + "▁Prot", + "ocol" + ], + [ + "▁object", + "ion" + ], + [ + "▁signature", + "s" + ], + [ + "▁sign", + "atures" + ], + [ + "▁abnormal", + "ities" + ], + [ + "▁abnorm", + "alities" + ], + [ + "▁21", + "," + ], + [ + "▁2", + "1," + ], + [ + "▁Ty", + "r" + ], + [ + "▁T", + "yr" + ], + [ + "▁sil", + "ly" + ], + [ + "▁s", + "illy" + ], + [ + "affe", + "ine" + ], + [ + "▁Alam", + "os" + ], + [ + "▁Ter", + "esa" + ], + [ + "▁pe", + "pper" + ], + [ + "▁repl", + "en" + ], + [ + "▁rep", + "len" + ], + [ + "aneous", + "ly" + ], + [ + "ane", + "ously" + ], + [ + "▁Import", + "ant" + ], + [ + "▁subject", + "ive" + ], + [ + "▁microscop", + "ic" + ], + [ + "▁Te", + "a" + ], + [ + "▁T", + "ea" + ], + [ + "uff", + "ed" + ], + [ + "▁Z", + "ack" + ], + [ + "vest", + "er" + ], + [ + "ves", + "ter" + ], + [ + "ve", + "ster" + ], + [ + "v", + "ester" + ], + [ + "▁Lake", + "rs" + ], + [ + "▁Lak", + "ers" + ], + [ + "▁L", + "akers" + ], + [ + "▁spl", + "end" + ], + [ + "▁Herman", + "n" + ], + [ + "▁Herm", + "ann" + ], + [ + "▁Her", + "mann" + ], + [ + "▁Rock", + "ets" + ], + [ + "▁R", + "ockets" + ], + [ + "▁shield", + "s" + ], + [ + "▁rig", + "orous" + ], + [ + "bb", + "ing" + ], + [ + "b", + "bing" + ], + [ + "▁Kar", + "t" + ], + [ + "▁K", + "art" + ], + [ + "▁abrupt", + "ly" + ], + [ + "▁orbit", + "ing" + ], + [ + "▁orb", + "iting" + ], + [ + "▁renov", + "ated" + ], + [ + "▁synthes", + "ized" + ], + [ + "▁(", + "7" + ], + [ + "▁to", + "e" + ], + [ + "▁t", + "oe" + ], + [ + "▁Sol", + "o" + ], + [ + "▁So", + "lo" + ], + [ + "▁S", + "olo" + ], + [ + "lyss", + "es" + ], + [ + "▁2007", + "," + ], + [ + "▁200", + "7," + ], + [ + "▁rev", + "ive" + ], + [ + "▁sample", + "d" + ], + [ + "▁sam", + "pled" + ], + [ + "▁in", + "active" + ], + [ + "▁stat", + "utory" + ], + [ + "▁descend", + "ant" + ], + [ + "▁encompass", + "es" + ], + [ + "▁Spec", + "ifically" + ], + [ + "▁deterior", + "ation" + ], + [ + "U", + "D" + ], + [ + "▁A", + "id" + ], + [ + "▁inte", + "nd" + ], + [ + "▁int", + "end" + ], + [ + "▁", + "intend" + ], + [ + "▁Clif", + "ton" + ], + [ + "▁Matem", + "atik" + ], + [ + "EC", + "T" + ], + [ + "gin", + "s" + ], + [ + "gi", + "ns" + ], + [ + "g", + "ins" + ], + [ + "ote", + "r" + ], + [ + "ot", + "er" + ], + [ + "o", + "ter" + ], + [ + "▁RA", + "R" + ], + [ + "▁R", + "AR" + ], + [ + "▁Am", + "ar" + ], + [ + "▁A", + "mar" + ], + [ + "inn", + "ers" + ], + [ + "in", + "ners" + ], + [ + "▁pre", + "ns" + ], + [ + "▁pr", + "ens" + ], + [ + "▁p", + "rens" + ], + [ + "▁Dent", + "al" + ], + [ + "▁Den", + "tal" + ], + [ + "▁D", + "ental" + ], + [ + "▁Str", + "ange" + ], + [ + "▁St", + "range" + ], + [ + "▁cott", + "age" + ], + [ + "▁sol", + "uble" + ], + [ + "▁small", + "pox" + ], + [ + "▁toler", + "ate" + ], + [ + "▁interchange", + "s" + ], + [ + "▁interchang", + "es" + ], + [ + "▁commission", + "ing" + ], + [ + "edu", + "c" + ], + [ + "ed", + "uc" + ], + [ + "e", + "duc" + ], + [ + "▁Bos", + "s" + ], + [ + "▁Bo", + "ss" + ], + [ + "▁B", + "oss" + ], + [ + "▁Co", + "gn" + ], + [ + "▁C", + "ogn" + ], + [ + "▁be", + "ak" + ], + [ + "▁nic", + "he" + ], + [ + "▁ni", + "che" + ], + [ + "▁n", + "iche" + ], + [ + "▁Nass", + "au" + ], + [ + "▁Health", + "y" + ], + [ + "▁cer", + "amic" + ], + [ + "▁Bon", + "aparte" + ], + [ + "▁overlap", + "ping" + ], + [ + "▁overl", + "apping" + ], + [ + "▁spokes", + "person" + ], + [ + "▁spok", + "esperson" + ], + [ + "▁I", + "R" + ], + [ + "▁", + "IR" + ], + [ + "phan", + "e" + ], + [ + "pha", + "ne" + ], + [ + "ph", + "ane" + ], + [ + "▁fus", + "ed" + ], + [ + "▁f", + "used" + ], + [ + "▁Nick", + "el" + ], + [ + "▁spec", + "ify" + ], + [ + "▁Tom", + "atoes" + ], + [ + "▁Mes", + "opotam" + ], + [ + "▁incorrect", + "ly" + ], + [ + "▁authentic", + "ity" + ], + [ + "▁Gib", + "b" + ], + [ + "▁Gi", + "bb" + ], + [ + "▁G", + "ibb" + ], + [ + "▁lac", + "t" + ], + [ + "▁la", + "ct" + ], + [ + "▁l", + "act" + ], + [ + "▁Dors", + "et" + ], + [ + "▁Dor", + "set" + ], + [ + "▁hero", + "in" + ], + [ + "▁her", + "oin" + ], + [ + "▁ref", + "res" + ], + [ + "▁mirror", + "s" + ], + [ + "▁mir", + "rors" + ], + [ + "▁beautiful", + "ly" + ], + [ + "▁beaut", + "ifully" + ], + [ + "▁N", + "I" + ], + [ + "▁15", + "4" + ], + [ + "▁44", + "0" + ], + [ + "▁4", + "40" + ], + [ + "▁Mc", + "E" + ], + [ + "▁183", + "4" + ], + [ + "▁18", + "34" + ], + [ + "angle", + "d" + ], + [ + "ang", + "led" + ], + [ + "▁dis", + "id" + ], + [ + "▁scar", + "y" + ], + [ + "▁sc", + "ary" + ], + [ + "▁raid", + "ed" + ], + [ + "▁ra", + "ided" + ], + [ + "▁Cons", + "ult" + ], + [ + "▁Traff", + "ic" + ], + [ + "▁Tra", + "ffic" + ], + [ + "▁Indust", + "ries" + ], + [ + "▁contrast", + "ed" + ], + [ + "▁contra", + "sted" + ], + [ + "▁forth", + "coming" + ], + [ + "1)", + "," + ], + [ + "1", + ")," + ], + [ + "▁Ha", + "k" + ], + [ + "▁H", + "ak" + ], + [ + "▁cy", + "an" + ], + [ + "▁c", + "yan" + ], + [ + "▁rese", + "t" + ], + [ + "▁res", + "et" + ], + [ + "▁re", + "set" + ], + [ + "▁swe", + "at" + ], + [ + "▁Kill", + "er" + ], + [ + "▁Kil", + "ler" + ], + [ + "▁Ki", + "ller" + ], + [ + "▁K", + "iller" + ], + [ + "▁Tra", + "vis" + ], + [ + "▁U", + "lysses" + ], + [ + "▁Produ", + "cer" + ], + [ + "▁pol", + "ished" + ], + [ + "▁po", + "lished" + ], + [ + "fo", + "ur" + ], + [ + "f", + "our" + ], + [ + "erv", + "is" + ], + [ + "er", + "vis" + ], + [ + "▁Jud", + "y" + ], + [ + "▁Ju", + "dy" + ], + [ + "▁Do", + "yle" + ], + [ + "▁D", + "oyle" + ], + [ + "▁Mich", + "e" + ], + [ + "▁Mic", + "he" + ], + [ + "▁Mi", + "che" + ], + [ + "▁M", + "iche" + ], + [ + "▁Prob", + "lem" + ], + [ + "▁Pro", + "blem" + ], + [ + "▁invent", + "or" + ], + [ + "▁text", + "book" + ], + [ + "▁transfer", + "s" + ], + [ + "▁transf", + "ers" + ], + [ + "▁enroll", + "ment" + ], + [ + "yp", + "s" + ], + [ + "y", + "ps" + ], + [ + "▁u", + "g" + ], + [ + "▁", + "ug" + ], + [ + "▁Ber", + "k" + ], + [ + "▁B", + "erk" + ], + [ + "▁Cla", + "n" + ], + [ + "▁Cl", + "an" + ], + [ + "▁C", + "lan" + ], + [ + "▁emerge", + "s" + ], + [ + "▁emerg", + "es" + ], + [ + "▁emer", + "ges" + ], + [ + "▁Liber", + "ation" + ], + [ + "▁Lib", + "eration" + ], + [ + "▁phosph", + "orus" + ], + [ + "▁approx", + "imate" + ], + [ + "6)", + "." + ], + [ + "6", + ")." + ], + [ + "onym", + "s" + ], + [ + "ony", + "ms" + ], + [ + "▁Bur", + "e" + ], + [ + "▁Bu", + "re" + ], + [ + "▁B", + "ure" + ], + [ + "char", + "ge" + ], + [ + "▁O", + "mega" + ], + [ + "▁style", + "d" + ], + [ + "▁styl", + "ed" + ], + [ + "▁sty", + "led" + ], + [ + "▁ch", + "asing" + ], + [ + "▁renew", + "al" + ], + [ + "▁system", + "ic" + ], + [ + "▁ignor", + "ance" + ], + [ + "ax", + "is" + ], + [ + "▁Ga", + "n" + ], + [ + "▁G", + "an" + ], + [ + "▁Saf", + "e" + ], + [ + "▁Sa", + "fe" + ], + [ + "▁S", + "afe" + ], + [ + "ermo", + "st" + ], + [ + "erm", + "ost" + ], + [ + "er", + "most" + ], + [ + "▁air", + "st" + ], + [ + "▁a", + "irst" + ], + [ + "▁Vaugh", + "an" + ], + [ + "▁Exerc", + "ise" + ], + [ + "▁foreign", + "ers" + ], + [ + "▁successor", + "s" + ], + [ + "▁success", + "ors" + ], + [ + "B", + "s" + ], + [ + "m", + "us" + ], + [ + "▁Si", + "s" + ], + [ + "▁S", + "is" + ], + [ + "oti", + "sm" + ], + [ + "ot", + "ism" + ], + [ + "▁Use", + "d" + ], + [ + "▁Us", + "ed" + ], + [ + "▁fib", + "r" + ], + [ + "▁fi", + "br" + ], + [ + "▁f", + "ibr" + ], + [ + "▁j", + "iyè" + ], + [ + "▁ra", + "sh" + ], + [ + "▁r", + "ash" + ], + [ + "rene", + "ur" + ], + [ + "ren", + "eur" + ], + [ + "tle", + "ment" + ], + [ + "t", + "lement" + ], + [ + "▁en", + "amel" + ], + [ + "▁gl", + "oves" + ], + [ + "ary", + "a" + ], + [ + "ar", + "ya" + ], + [ + "ick", + "ed" + ], + [ + "▁182", + "8" + ], + [ + "▁18", + "28" + ], + [ + "▁Cob", + "b" + ], + [ + "▁Co", + "bb" + ], + [ + "▁cho", + "p" + ], + [ + "▁ch", + "op" + ], + [ + "▁c", + "hop" + ], + [ + "▁Ur", + "ugu" + ], + [ + "▁U", + "rugu" + ], + [ + "▁chase", + "d" + ], + [ + "▁ch", + "ased" + ], + [ + "▁nect", + "ar" + ], + [ + "▁nec", + "tar" + ], + [ + "▁Ambro", + "se" + ], + [ + "▁Amb", + "rose" + ], + [ + "▁adjo", + "ining" + ], + [ + "▁disc", + "ouraged" + ], + [ + "oli", + "t" + ], + [ + "ol", + "it" + ], + [ + "reg", + "or" + ], + [ + "▁179", + "7" + ], + [ + "▁17", + "97" + ], + [ + "▁Au", + "ck" + ], + [ + "▁A", + "uck" + ], + [ + "ario", + "us" + ], + [ + "ari", + "ous" + ], + [ + "ar", + "ious" + ], + [ + "▁Con", + "an" + ], + [ + "▁Co", + "nan" + ], + [ + "▁rem", + "od" + ], + [ + "▁re", + "mod" + ], + [ + "▁th", + "igh" + ], + [ + "▁t", + "high" + ], + [ + "▁w", + "ield" + ], + [ + "▁cool", + "ed" + ], + [ + "▁inverte", + "brates" + ], + [ + "En", + "d" + ], + [ + "E", + "nd" + ], + [ + "fa", + "n" + ], + [ + "f", + "an" + ], + [ + "▁X", + "L" + ], + [ + "ro", + "qu" + ], + [ + "r", + "oqu" + ], + [ + "▁61", + "0" + ], + [ + "▁6", + "10" + ], + [ + "▁he", + "n" + ], + [ + "▁h", + "en" + ], + [ + "▁", + "hen" + ], + [ + "▁for", + "um" + ], + [ + "▁fo", + "rum" + ], + [ + "▁f", + "orum" + ], + [ + "▁Water", + "loo" + ], + [ + "▁induct", + "ion" + ], + [ + "▁indu", + "ction" + ], + [ + "▁ind", + "uction" + ], + [ + "▁in", + "duction" + ], + [ + "▁judge", + "ment" + ], + [ + "▁judg", + "ement" + ], + [ + "▁jud", + "gement" + ], + [ + "▁mile", + "stone" + ], + [ + "▁mil", + "estone" + ], + [ + "▁therap", + "ist" + ], + [ + "▁disturbance", + "s" + ], + [ + "▁disturb", + "ances" + ], + [ + "▁redesign", + "ated" + ], + [ + "ç", + "a" + ], + [ + "▁Lo", + "y" + ], + [ + "▁L", + "oy" + ], + [ + "ill", + "us" + ], + [ + "▁Sav", + "oy" + ], + [ + "▁Bra", + "ves" + ], + [ + "▁Br", + "aves" + ], + [ + "▁Me", + "asure" + ], + [ + "▁steam", + "er" + ], + [ + "▁ste", + "amer" + ], + [ + "▁caut", + "ious" + ], + [ + "▁pilgrim", + "age" + ], + [ + "▁head", + "quartered" + ], + [ + "▁schizophren", + "ia" + ], + [ + "▁Ja", + "v" + ], + [ + "▁J", + "av" + ], + [ + "▁do", + "t" + ], + [ + "▁d", + "ot" + ], + [ + "▁gl", + "ee" + ], + [ + "▁g", + "lee" + ], + [ + "▁C", + "inem" + ], + [ + "▁Ru", + "ral" + ], + [ + "▁R", + "ural" + ], + [ + "▁proceed", + "ing" + ], + [ + "8)", + "." + ], + [ + "8", + ")." + ], + [ + "ac", + "io" + ], + [ + "wa", + "ve" + ], + [ + "w", + "ave" + ], + [ + "if", + "olia" + ], + [ + "lev", + "ant" + ], + [ + "le", + "vant" + ], + [ + "▁loop", + "s" + ], + [ + "▁lo", + "ops" + ], + [ + "▁Report", + "er" + ], + [ + "▁Rep", + "orter" + ], + [ + "▁divers", + "ion" + ], + [ + "▁div", + "ersion" + ], + [ + "▁gentle", + "man" + ], + [ + "▁Ci", + "e" + ], + [ + "▁C", + "ie" + ], + [ + "▁Co", + "ke" + ], + [ + "▁C", + "oke" + ], + [ + "▁Val", + "e" + ], + [ + "▁Va", + "le" + ], + [ + "▁V", + "ale" + ], + [ + "▁zo", + "mb" + ], + [ + "▁z", + "omb" + ], + [ + "oint", + "ed" + ], + [ + "oin", + "ted" + ], + [ + "o", + "inted" + ], + [ + "im", + "ation" + ], + [ + "▁glac", + "ier" + ], + [ + "ú", + "s" + ], + [ + "▁M", + "ā" + ], + [ + "▁13", + "9" + ], + [ + "▁1", + "39" + ], + [ + "▁Mu", + "k" + ], + [ + "▁M", + "uk" + ], + [ + "▁Ve", + "h" + ], + [ + "▁Ben", + "z" + ], + [ + "▁B", + "enz" + ], + [ + "▁Pap", + "a" + ], + [ + "▁Pa", + "pa" + ], + [ + "▁P", + "apa" + ], + [ + "▁Ree", + "f" + ], + [ + "▁Re", + "ef" + ], + [ + "▁net", + "s" + ], + [ + "▁ne", + "ts" + ], + [ + "▁n", + "ets" + ], + [ + "▁an", + "ecd" + ], + [ + "▁mo", + "urn" + ], + [ + "▁m", + "ourn" + ], + [ + "▁Cam", + "aguey" + ], + [ + "▁supply", + "ing" + ], + [ + "▁suppl", + "ying" + ], + [ + "▁supp", + "lying" + ], + [ + "▁Publ", + "ishers" + ], + [ + "▁ult", + "raviolet" + ], + [ + "▁R", + "N" + ], + [ + "▁asym", + "met" + ], + [ + "▁comed", + "ic" + ], + [ + "▁Atl", + "antis" + ], + [ + "▁elev", + "ator" + ], + [ + "▁altitude", + "s" + ], + [ + "▁alt", + "itudes" + ], + [ + "▁rendez", + "vous" + ], + [ + "C", + "ube" + ], + [ + "ode", + "r" + ], + [ + "od", + "er" + ], + [ + "o", + "der" + ], + [ + "▁Qu", + "ad" + ], + [ + "▁cha", + "k" + ], + [ + "▁ch", + "ak" + ], + [ + "▁ecl", + "ipse" + ], + [ + "▁theor", + "em" + ], + [ + "▁the", + "orem" + ], + [ + "▁total", + "ing" + ], + [ + "▁tot", + "aling" + ], + [ + "▁PopM", + "atters" + ], + [ + "▁at", + "l" + ], + [ + "▁", + "atl" + ], + [ + "▁su", + "l" + ], + [ + "▁s", + "ul" + ], + [ + "▁Var", + "i" + ], + [ + "▁Va", + "ri" + ], + [ + "▁V", + "ari" + ], + [ + "▁sex", + "y" + ], + [ + "▁2006", + "," + ], + [ + "▁200", + "6," + ], + [ + "▁2007", + "." + ], + [ + "▁200", + "7." + ], + [ + "▁Appe", + "al" + ], + [ + "▁App", + "eal" + ], + [ + "▁st", + "oring" + ], + [ + "▁Els", + "ewhere" + ], + [ + "▁stere", + "otyp" + ], + [ + "▁harass", + "ment" + ], + [ + "▁US", + "C" + ], + [ + "ink", + "el" + ], + [ + "▁Inc", + "h" + ], + [ + "▁In", + "ch" + ], + [ + "▁Shank", + "ar" + ], + [ + "▁Shan", + "kar" + ], + [ + "▁Athen", + "ian" + ], + [ + "▁mourn", + "ing" + ], + [ + "▁m", + "ourning" + ], + [ + "▁commun", + "ism" + ], + [ + "▁15", + "1" + ], + [ + "▁Tra", + "n" + ], + [ + "▁Tr", + "an" + ], + [ + "▁T", + "ran" + ], + [ + "▁Kh", + "mer" + ], + [ + "▁unl", + "ock" + ], + [ + "▁un", + "lock" + ], + [ + "▁ber", + "ries" + ], + [ + "▁", + "berries" + ], + [ + "▁assault", + "s" + ], + [ + "▁Ge", + "ographic" + ], + [ + "li", + "s" + ], + [ + "l", + "is" + ], + [ + "▁H", + "é" + ], + [ + "▁bu", + "oy" + ], + [ + "▁cre", + "m" + ], + [ + "▁cr", + "em" + ], + [ + "▁c", + "rem" + ], + [ + "▁ha", + "il" + ], + [ + "▁h", + "ail" + ], + [ + "▁Ker", + "al" + ], + [ + "▁Ke", + "ral" + ], + [ + "▁K", + "eral" + ], + [ + "▁Them", + "e" + ], + [ + "▁The", + "me" + ], + [ + "▁ch", + "anc" + ], + [ + "▁perm", + "e" + ], + [ + "▁per", + "me" + ], + [ + "▁invite", + "s" + ], + [ + "▁inv", + "ites" + ], + [ + "▁rat", + "ified" + ], + [ + "▁attain", + "ing" + ], + [ + "▁att", + "aining" + ], + [ + "▁at", + "taining" + ], + [ + "▁", + "π" + ], + [ + "mi", + "a" + ], + [ + "m", + "ia" + ], + [ + "oo", + "s" + ], + [ + "o", + "os" + ], + [ + "▁2", + "-" + ], + [ + "▁", + "2-" + ], + [ + "▁G", + "S" + ], + [ + "▁", + "GS" + ], + [ + "rat", + "h" + ], + [ + "ra", + "th" + ], + [ + "r", + "ath" + ], + [ + "▁Bri", + "ng" + ], + [ + "▁Br", + "ing" + ], + [ + "▁B", + "ring" + ], + [ + "▁Tree", + "s" + ], + [ + "▁Tre", + "es" + ], + [ + "▁Tr", + "ees" + ], + [ + "▁T", + "rees" + ], + [ + "▁cand", + "y" + ], + [ + "▁can", + "dy" + ], + [ + "▁c", + "andy" + ], + [ + "▁radi", + "al" + ], + [ + "▁rad", + "ial" + ], + [ + "▁anten", + "na" + ], + [ + "▁ant", + "enna" + ], + [ + "▁summer", + "s" + ], + [ + "▁summ", + "ers" + ], + [ + "▁sum", + "mers" + ], + [ + "▁rele", + "vance" + ], + [ + "▁enterprise", + "s" + ], + [ + "▁enter", + "prises" + ], + [ + "▁Vi", + "g" + ], + [ + "▁V", + "ig" + ], + [ + "▁USD", + "A" + ], + [ + "▁US", + "DA" + ], + [ + "▁em", + "it" + ], + [ + "▁e", + "mit" + ], + [ + "▁Bri", + "ll" + ], + [ + "▁Br", + "ill" + ], + [ + "▁B", + "rill" + ], + [ + "ential", + "s" + ], + [ + "ent", + "ials" + ], + [ + "▁asc", + "ent" + ], + [ + "▁as", + "cent" + ], + [ + "▁heroin", + "e" + ], + [ + "▁hero", + "ine" + ], + [ + "▁Sté", + "phane" + ], + [ + "▁inad", + "vert" + ], + [ + "▁install", + "ing" + ], + [ + "▁inst", + "alling" + ], + [ + "▁Ni", + "r" + ], + [ + "▁N", + "ir" + ], + [ + "▁Wa", + "d" + ], + [ + "▁W", + "ad" + ], + [ + "▁Lé", + "on" + ], + [ + "erv", + "ille" + ], + [ + "er", + "ville" + ], + [ + "rodu", + "ced" + ], + [ + "▁We", + "ight" + ], + [ + "▁bless", + "ed" + ], + [ + "▁bl", + "essed" + ], + [ + "▁day", + "time" + ], + [ + "▁holding", + "s" + ], + [ + "▁hold", + "ings" + ], + [ + "▁assault", + "ed" + ], + [ + "▁right", + "eous" + ], + [ + "▁bright", + "ness" + ], + [ + "▁According", + "ly" + ], + [ + "ga", + "me" + ], + [ + "g", + "ame" + ], + [ + "▁Ar", + "b" + ], + [ + "▁met", + "e" + ], + [ + "▁me", + "te" + ], + [ + "▁m", + "ete" + ], + [ + "▁mel", + "od" + ], + [ + "▁catch", + "y" + ], + [ + "▁cat", + "chy" + ], + [ + "▁even", + "ly" + ], + [ + "▁inf", + "est" + ], + [ + "▁guerr", + "illa" + ], + [ + "▁retrieve", + "d" + ], + [ + "▁retrie", + "ved" + ], + [ + "▁ret", + "rieved" + ], + [ + "▁F", + "OR" + ], + [ + "▁Ta", + "p" + ], + [ + "▁T", + "ap" + ], + [ + "▁Low", + "e" + ], + [ + "▁Lo", + "we" + ], + [ + "▁cul", + "p" + ], + [ + "▁Chop", + "ra" + ], + [ + "▁pige", + "on" + ], + [ + "▁pi", + "geon" + ], + [ + "▁For", + "rest" + ], + [ + "▁Gar", + "rett" + ], + [ + "▁unw", + "anted" + ], + [ + "▁par", + "achute" + ], + [ + "He", + "n" + ], + [ + "H", + "en" + ], + [ + "/20", + "0" + ], + [ + "/", + "200" + ], + [ + "▁2.", + "5" + ], + [ + "▁2", + ".5" + ], + [ + "ani", + "ng" + ], + [ + "an", + "ing" + ], + [ + "a", + "ning" + ], + [ + "va", + "ble" + ], + [ + "v", + "able" + ], + [ + "▁Int", + "o" + ], + [ + "▁In", + "to" + ], + [ + "▁Per", + "m" + ], + [ + "▁Pe", + "rm" + ], + [ + "▁P", + "erm" + ], + [ + "adow", + "ed" + ], + [ + "ad", + "owed" + ], + [ + "▁clean", + "s" + ], + [ + "▁cle", + "ans" + ], + [ + "▁c", + "leans" + ], + [ + "occup", + "ied" + ], + [ + "▁Hunter", + "s" + ], + [ + "▁Hunt", + "ers" + ], + [ + "▁Hun", + "ters" + ], + [ + "▁neutron", + "s" + ], + [ + "▁neut", + "rons" + ], + [ + "▁Karn", + "ataka" + ], + [ + "▁unple", + "asant" + ], + [ + "De", + "r" + ], + [ + "D", + "er" + ], + [ + "Re", + "illy" + ], + [ + "▁hit", + "ter" + ], + [ + "▁h", + "itter" + ], + [ + "▁Myster", + "y" + ], + [ + "▁Myst", + "ery" + ], + [ + "▁Mys", + "tery" + ], + [ + "ffic", + "iency" + ], + [ + "ff", + "iciency" + ], + [ + "▁App", + "alach" + ], + [ + "▁intest", + "inal" + ], + [ + "▁int", + "estinal" + ], + [ + "▁", + "intestinal" + ], + [ + "▁elig", + "ibility" + ], + [ + "▁examination", + "s" + ], + [ + "▁exam", + "inations" + ], + [ + "ne", + "g" + ], + [ + "n", + "eg" + ], + [ + "▁Bonn", + "ie" + ], + [ + "▁Bon", + "nie" + ], + [ + "▁B", + "onnie" + ], + [ + "▁Walk", + "ing" + ], + [ + "▁Wal", + "king" + ], + [ + "▁juvenile", + "s" + ], + [ + "▁juven", + "iles" + ], + [ + "▁night", + "club" + ], + [ + "▁origin", + "ating" + ], + [ + "▁orig", + "inating" + ], + [ + "en", + "b" + ], + [ + "▁An", + "c" + ], + [ + "▁Ho", + "s" + ], + [ + "▁H", + "os" + ], + [ + "eck", + "er" + ], + [ + "ec", + "ker" + ], + [ + "▁lod", + "ge" + ], + [ + "▁l", + "odge" + ], + [ + "ace", + "time" + ], + [ + "ac", + "etime" + ], + [ + "▁Ron", + "nie" + ], + [ + "▁R", + "onnie" + ], + [ + "▁Kit", + "chen" + ], + [ + "▁arch", + "ive" + ], + [ + "▁dialect", + "s" + ], + [ + "▁dial", + "ects" + ], + [ + "▁excell", + "ence" + ], + [ + "▁opp", + "ression" + ], + [ + "▁san", + "itation" + ], + [ + "ele", + "d" + ], + [ + "el", + "ed" + ], + [ + "e", + "led" + ], + [ + "▁dot", + "s" + ], + [ + "▁do", + "ts" + ], + [ + "▁d", + "ots" + ], + [ + "range", + "d" + ], + [ + "rang", + "ed" + ], + [ + "ran", + "ged" + ], + [ + "▁depos", + "ed" + ], + [ + "▁dep", + "osed" + ], + [ + "▁eject", + "ed" + ], + [ + "▁reluctant", + "ly" + ], + [ + "▁reluct", + "antly" + ], + [ + "▁ak", + "in" + ], + [ + "▁a", + "kin" + ], + [ + "▁Kit", + "ty" + ], + [ + "▁de", + "eds" + ], + [ + "▁Frank", + "f" + ], + [ + "▁angel", + "s" + ], + [ + "▁ang", + "els" + ], + [ + "▁Cart", + "man" + ], + [ + "▁des", + "erve" + ], + [ + "▁men", + "stru" + ], + [ + "▁neutral", + "ity" + ], + [ + "▁projection", + "s" + ], + [ + "▁project", + "ions" + ], + [ + "zi", + "er" + ], + [ + "z", + "ier" + ], + [ + "rad", + "es" + ], + [ + "ra", + "des" + ], + [ + "r", + "ades" + ], + [ + "ograph", + "s" + ], + [ + "ogra", + "phs" + ], + [ + "▁em", + "pathy" + ], + [ + "▁gr", + "ateful" + ], + [ + "▁H", + "C" + ], + [ + "▁", + "HC" + ], + [ + "▁Or", + "b" + ], + [ + "pire", + "s" + ], + [ + "pir", + "es" + ], + [ + "pi", + "res" + ], + [ + "p", + "ires" + ], + [ + "▁Gol", + "f" + ], + [ + "▁G", + "olf" + ], + [ + "▁Was", + "te" + ], + [ + "▁Wa", + "ste" + ], + [ + "▁W", + "aste" + ], + [ + "▁Sa", + "igon" + ], + [ + "▁jewel", + "ry" + ], + [ + "▁Pre", + "p" + ], + [ + "▁Pr", + "ep" + ], + [ + "▁P", + "rep" + ], + [ + "aut", + "ions" + ], + [ + "a", + "utions" + ], + [ + "▁color", + "ation" + ], + [ + "▁col", + "oration" + ], + [ + "▁retal", + "iation" + ], + [ + "ha", + "s" + ], + [ + "h", + "as" + ], + [ + "ech", + "e" + ], + [ + "ec", + "he" + ], + [ + "e", + "che" + ], + [ + "▁A", + "in" + ], + [ + "▁Lo", + "op" + ], + [ + "▁L", + "oop" + ], + [ + "▁bl", + "unt" + ], + [ + "▁reservoir", + "s" + ], + [ + "▁reserv", + "oirs" + ], + [ + "▁transition", + "s" + ], + [ + "▁transit", + "ions" + ], + [ + "▁trans", + "itions" + ], + [ + "U", + "L" + ], + [ + "en", + "ia" + ], + [ + "e", + "nia" + ], + [ + "▁Bu", + "zz" + ], + [ + "▁B", + "uzz" + ], + [ + "▁Lan", + "a" + ], + [ + "▁La", + "na" + ], + [ + "▁L", + "ana" + ], + [ + "▁Cook", + "e" + ], + [ + "▁Co", + "oke" + ], + [ + "▁We", + "aver" + ], + [ + "▁coff", + "in" + ], + [ + "▁nov", + "anm" + ], + [ + "▁rod", + "ents" + ], + [ + "▁Fl", + "otilla" + ], + [ + "▁inv", + "ading" + ], + [ + "▁fire", + "fight" + ], + [ + "gu", + "in" + ], + [ + "▁Cra", + "ft" + ], + [ + "▁Cr", + "aft" + ], + [ + "▁C", + "raft" + ], + [ + "▁sugar", + "s" + ], + [ + "▁sug", + "ars" + ], + [ + "▁Jen", + "kins" + ], + [ + "▁brand", + "ed" + ], + [ + "▁bran", + "ded" + ], + [ + "▁br", + "anded" + ], + [ + "▁caps", + "ule" + ], + [ + "▁Bene", + "fits" + ], + [ + "▁Cheroke", + "e" + ], + [ + "▁billion", + "s" + ], + [ + "▁bill", + "ions" + ], + [ + "▁position", + "ing" + ], + [ + "▁N", + "W" + ], + [ + "▁Sl", + "ow" + ], + [ + "▁S", + "low" + ], + [ + "uit", + "able" + ], + [ + "u", + "itable" + ], + [ + "▁motion", + "s" + ], + [ + "▁mot", + "ions" + ], + [ + "▁gen", + "ocide" + ], + [ + "▁routine", + "s" + ], + [ + "▁rout", + "ines" + ], + [ + "▁prev", + "ailed" + ], + [ + "D", + "L" + ], + [ + "uts", + "ch" + ], + [ + "ut", + "sch" + ], + [ + "▁Tal", + "bot" + ], + [ + "▁gun", + "powder" + ], + [ + "ent", + "in" + ], + [ + "▁Di", + "al" + ], + [ + "▁D", + "ial" + ], + [ + "▁Dis", + "p" + ], + [ + "▁Di", + "sp" + ], + [ + "▁D", + "isp" + ], + [ + "▁mol", + "l" + ], + [ + "▁mo", + "ll" + ], + [ + "▁m", + "oll" + ], + [ + "▁we", + "eds" + ], + [ + "▁Cyp", + "rus" + ], + [ + "▁Domin", + "g" + ], + [ + "▁Dom", + "ing" + ], + [ + "▁Do", + "ming" + ], + [ + "▁D", + "oming" + ], + [ + "▁cort", + "ex" + ], + [ + "▁syn", + "onym" + ], + [ + "▁utter", + "ly" + ], + [ + "▁wreck", + "ed" + ], + [ + "▁te", + "legraph" + ], + [ + "▁Fu", + "s" + ], + [ + "▁F", + "us" + ], + [ + "▁Pul", + "l" + ], + [ + "▁Pu", + "ll" + ], + [ + "▁P", + "ull" + ], + [ + "ina", + "tor" + ], + [ + "in", + "ator" + ], + [ + "▁Aw", + "are" + ], + [ + "▁A", + "ware" + ], + [ + "▁Ter", + "ra" + ], + [ + "▁Fel", + "ipe" + ], + [ + "▁rec", + "omb" + ], + [ + "▁pir", + "ates" + ], + [ + "▁pi", + "rates" + ], + [ + "▁p", + "irates" + ], + [ + "▁Arm", + "oured" + ], + [ + "▁impl", + "icit" + ], + [ + "▁inf", + "amous" + ], + [ + "▁fashion", + "ed" + ], + [ + "P", + "L" + ], + [ + "any", + "e" + ], + [ + "an", + "ye" + ], + [ + "up", + "er" + ], + [ + "u", + "per" + ], + [ + "▁Tu", + "b" + ], + [ + "▁T", + "ub" + ], + [ + "▁Jacob", + "s" + ], + [ + "▁Jac", + "obs" + ], + [ + "▁Phel", + "ps" + ], + [ + "ill", + "ation" + ], + [ + "il", + "lation" + ], + [ + "▁marry", + "ing" + ], + [ + "▁mar", + "rying" + ], + [ + "▁soc", + "ietal" + ], + [ + "▁cig", + "arette" + ], + [ + "▁Res", + "istance" + ], + [ + "▁organization", + "al" + ], + [ + "▁organ", + "izational" + ], + [ + "▁Tar", + "a" + ], + [ + "▁Ta", + "ra" + ], + [ + "▁T", + "ara" + ], + [ + "fe", + "ated" + ], + [ + "imi", + "ted" + ], + [ + "im", + "ited" + ], + [ + "▁cap", + "it" + ], + [ + "▁ca", + "pit" + ], + [ + "par", + "ents" + ], + [ + "p", + "arents" + ], + [ + "▁Pur", + "ple" + ], + [ + "▁F", + "R" + ], + [ + "▁", + "FR" + ], + [ + "ro", + "up" + ], + [ + "r", + "oup" + ], + [ + "▁H", + "BO" + ], + [ + "▁Am", + "in" + ], + [ + "▁A", + "min" + ], + [ + "▁Dun", + "n" + ], + [ + "▁D", + "unn" + ], + [ + "▁digit", + "s" + ], + [ + "▁dig", + "its" + ], + [ + "▁plain", + "t" + ], + [ + "▁pl", + "aint" + ], + [ + "▁Conc", + "ept" + ], + [ + "▁Con", + "cept" + ], + [ + "▁remind", + "s" + ], + [ + "▁surviv", + "or" + ], + [ + "▁White", + "head" + ], + [ + "▁experiment", + "ed" + ], + [ + "▁afore", + "mentioned" + ], + [ + "al", + "c" + ], + [ + "▁Ja", + "l" + ], + [ + "▁J", + "al" + ], + [ + "▁Me", + "y" + ], + [ + "▁M", + "ey" + ], + [ + "fort", + "h" + ], + [ + "for", + "th" + ], + [ + "f", + "orth" + ], + [ + "▁Che", + "v" + ], + [ + "▁Ch", + "ev" + ], + [ + "▁C", + "hev" + ], + [ + "▁Cop", + "e" + ], + [ + "▁Co", + "pe" + ], + [ + "▁C", + "ope" + ], + [ + "▁Cont", + "reras" + ], + [ + "▁ins", + "istence" + ], + [ + "▁commissioner", + "s" + ], + [ + "▁commission", + "ers" + ], + [ + "▁mitochond", + "rial" + ], + [ + "▁16", + "3" + ], + [ + "enne", + "s" + ], + [ + "enn", + "es" + ], + [ + "en", + "nes" + ], + [ + "▁mos", + "s" + ], + [ + "▁mo", + "ss" + ], + [ + "▁m", + "oss" + ], + [ + "▁n", + "urt" + ], + [ + "▁sphere", + "s" + ], + [ + "▁sp", + "heres" + ], + [ + "ind", + "y" + ], + [ + "in", + "dy" + ], + [ + "reg", + "n" + ], + [ + "re", + "gn" + ], + [ + "ula", + "s" + ], + [ + "ul", + "as" + ], + [ + "u", + "las" + ], + [ + "▁Min", + "h" + ], + [ + "▁M", + "inh" + ], + [ + "▁Ver", + "t" + ], + [ + "▁V", + "ert" + ], + [ + "int", + "age" + ], + [ + "in", + "tage" + ], + [ + "▁lem", + "on" + ], + [ + "▁le", + "mon" + ], + [ + "▁Cho", + "ose" + ], + [ + "▁pig", + "ment" + ], + [ + "▁pi", + "gment" + ], + [ + "▁satir", + "ical" + ], + [ + "▁Archae", + "ological" + ], + [ + "iar", + "d" + ], + [ + "ia", + "rd" + ], + [ + "i", + "ard" + ], + [ + "▁Ar", + "g" + ], + [ + "aga", + "sy" + ], + [ + "ag", + "asy" + ], + [ + "una", + "te" + ], + [ + "un", + "ate" + ], + [ + "▁Go", + "es" + ], + [ + "▁G", + "oes" + ], + [ + "▁Lar", + "k" + ], + [ + "▁L", + "ark" + ], + [ + "▁Rick", + "y" + ], + [ + "▁Ric", + "ky" + ], + [ + "▁tape", + "s" + ], + [ + "▁tap", + "es" + ], + [ + "▁ta", + "pes" + ], + [ + "▁t", + "apes" + ], + [ + "▁Bea", + "ver" + ], + [ + "▁Be", + "aver" + ], + [ + "▁co", + "herent" + ], + [ + "▁manual", + "ly" + ], + [ + "▁man", + "ually" + ], + [ + "▁assistant", + "s" + ], + [ + "▁assist", + "ants" + ], + [ + "▁exerc", + "ising" + ], + [ + "olo", + "r" + ], + [ + "ol", + "or" + ], + [ + "o", + "lor" + ], + [ + "▁16", + "4" + ], + [ + "▁1", + "64" + ], + [ + "▁co", + "b" + ], + [ + "▁c", + "ob" + ], + [ + "ras", + "ound" + ], + [ + "▁orn", + "ith" + ], + [ + "▁quick", + "er" + ], + [ + "▁reactor", + "s" + ], + [ + "▁react", + "ors" + ], + [ + "▁endors", + "ement" + ], + [ + "▁outn", + "umbered" + ], + [ + "▁morph", + "ological" + ], + [ + "▁T", + "A" + ], + [ + "▁", + "TA" + ], + [ + "br", + "ush" + ], + [ + "b", + "rush" + ], + [ + "utt", + "le" + ], + [ + "ut", + "tle" + ], + [ + "▁Gra", + "v" + ], + [ + "▁Gr", + "av" + ], + [ + "▁G", + "rav" + ], + [ + "▁Kah", + "n" + ], + [ + "▁Ka", + "hn" + ], + [ + "▁K", + "ahn" + ], + [ + "▁Too", + "l" + ], + [ + "▁To", + "ol" + ], + [ + "▁T", + "ool" + ], + [ + "▁bay", + "s" + ], + [ + "▁ba", + "ys" + ], + [ + "▁b", + "ays" + ], + [ + "▁el", + "li" + ], + [ + "▁", + "elli" + ], + [ + "▁pe", + "pt" + ], + [ + "▁p", + "ept" + ], + [ + "▁Comp", + "l" + ], + [ + "▁Com", + "pl" + ], + [ + "▁C", + "ompl" + ], + [ + "▁vote", + "r" + ], + [ + "▁vot", + "er" + ], + [ + "▁vo", + "ter" + ], + [ + "▁v", + "oter" + ], + [ + "▁Resc", + "ue" + ], + [ + "▁exc", + "use" + ], + [ + "▁imp", + "osing" + ], + [ + "nae", + "us" + ], + [ + "▁had", + "n" + ], + [ + "▁sa", + "ge" + ], + [ + "▁s", + "age" + ], + [ + "ess", + "ive" + ], + [ + "▁Cor", + "al" + ], + [ + "▁Co", + "ral" + ], + [ + "▁C", + "oral" + ], + [ + "▁Answ", + "er" + ], + [ + "▁Ans", + "wer" + ], + [ + "▁Lowe", + "ll" + ], + [ + "▁Low", + "ell" + ], + [ + "▁Lo", + "well" + ], + [ + "▁h", + "iking" + ], + [ + "▁Marian", + "a" + ], + [ + "▁Maria", + "na" + ], + [ + "▁Mari", + "ana" + ], + [ + "▁Mar", + "iana" + ], + [ + "▁winter", + "s" + ], + [ + "▁win", + "ters" + ], + [ + "▁w", + "inters" + ], + [ + "▁Conservative", + "s" + ], + [ + "▁Conserv", + "atives" + ], + [ + "▁Ki", + "p" + ], + [ + "▁K", + "ip" + ], + [ + "▁down", + "s" + ], + [ + "▁mem", + "oir" + ], + [ + "▁100", + ",000" + ], + [ + "▁Ref", + "lect" + ], + [ + "▁Scandin", + "avian" + ], + [ + "▁Cy", + "ber" + ], + [ + "▁crus", + "h" + ], + [ + "▁cru", + "sh" + ], + [ + "▁cr", + "ush" + ], + [ + "▁c", + "rush" + ], + [ + "unct", + "ure" + ], + [ + "unc", + "ture" + ], + [ + "▁Aut", + "umn" + ], + [ + "▁bar", + "ons" + ], + [ + "▁ba", + "rons" + ], + [ + "▁grade", + "d" + ], + [ + "▁grad", + "ed" + ], + [ + "▁gra", + "ded" + ], + [ + "▁gr", + "aded" + ], + [ + "▁", + "graded" + ], + [ + "▁host", + "age" + ], + [ + "▁ho", + "stage" + ], + [ + "▁Auck", + "land" + ], + [ + "▁Fort", + "ress" + ], + [ + "▁Ori", + "ental" + ], + [ + "▁predomin", + "ant" + ], + [ + "▁provision", + "al" + ], + [ + "ø", + "r" + ], + [ + "be", + "e" + ], + [ + "b", + "ee" + ], + [ + "te", + "l" + ], + [ + "t", + "el" + ], + [ + "èm", + "e" + ], + [ + "è", + "me" + ], + [ + "▁N", + "J" + ], + [ + "▁Kr", + "y" + ], + [ + "▁K", + "ry" + ], + [ + "▁co", + "h" + ], + [ + "▁c", + "oh" + ], + [ + "▁", + "coh" + ], + [ + "▁ka", + "y" + ], + [ + "▁k", + "ay" + ], + [ + "▁x", + "en" + ], + [ + "fl", + "ict" + ], + [ + "▁gra", + "m" + ], + [ + "▁gr", + "am" + ], + [ + "▁g", + "ram" + ], + [ + "▁", + "gram" + ], + [ + "▁Ed", + "ith" + ], + [ + "▁Th", + "ier" + ], + [ + "anth", + "rop" + ], + [ + "▁At", + "mosp" + ], + [ + "▁Claud", + "ia" + ], + [ + "▁unders", + "ide" + ], + [ + "▁under", + "side" + ], + [ + "he", + "id" + ], + [ + "▁14", + "3" + ], + [ + "▁1", + "43" + ], + [ + "▁St", + "o" + ], + [ + "▁S", + "to" + ], + [ + "▁Am", + "an" + ], + [ + "▁A", + "man" + ], + [ + "▁for", + "c" + ], + [ + "▁Pe", + "pper" + ], + [ + "▁buff", + "er" + ], + [ + "▁spar", + "se" + ], + [ + "▁sp", + "arse" + ], + [ + "▁airfield", + "s" + ], + [ + "▁air", + "fields" + ], + [ + "▁S", + "osyete" + ], + [ + "▁Nicar", + "agua" + ], + [ + "▁Official", + "s" + ], + [ + "▁Offic", + "ials" + ], + [ + "▁portfol", + "io" + ], + [ + "▁vertical", + "ly" + ], + [ + "▁vert", + "ically" + ], + [ + "▁P", + "OW" + ], + [ + "▁Bun", + "d" + ], + [ + "▁Bu", + "nd" + ], + [ + "▁B", + "und" + ], + [ + "ch", + "urch" + ], + [ + "▁(20", + "10" + ], + [ + "▁Carl", + "isle" + ], + [ + "▁card", + "inal" + ], + [ + "▁fire", + "arms" + ], + [ + "▁Direct", + "ion" + ], + [ + "▁Dire", + "ction" + ], + [ + "▁Di", + "rection" + ], + [ + "▁convince", + "s" + ], + [ + "▁convinc", + "es" + ], + [ + "▁convin", + "ces" + ], + [ + "▁conv", + "inces" + ], + [ + "▁graphic", + "al" + ], + [ + "▁graph", + "ical" + ], + [ + "▁i", + "l" + ], + [ + "▁", + "il" + ], + [ + "▁h", + "ug" + ], + [ + "▁PM", + "ID" + ], + [ + "▁va", + "ss" + ], + [ + "▁v", + "ass" + ], + [ + "▁dil", + "em" + ], + [ + "▁di", + "lem" + ], + [ + "▁d", + "ilem" + ], + [ + "▁ub", + "iqu" + ], + [ + "▁ver", + "ify" + ], + [ + "▁Plate", + "au" + ], + [ + "▁landsl", + "ides" + ], + [ + "▁prototype", + "s" + ], + [ + "▁prot", + "otypes" + ], + [ + "▁Fo", + "n" + ], + [ + "▁F", + "on" + ], + [ + "▁Z", + "ap" + ], + [ + "ess", + "es" + ], + [ + "es", + "ses" + ], + [ + "▁Pur", + "e" + ], + [ + "▁Pu", + "re" + ], + [ + "▁P", + "ure" + ], + [ + "▁Fact", + "s" + ], + [ + "▁Fac", + "ts" + ], + [ + "▁F", + "acts" + ], + [ + "▁Tri", + "al" + ], + [ + "▁Tr", + "ial" + ], + [ + "▁T", + "rial" + ], + [ + "▁ob", + "ese" + ], + [ + "▁spike", + "s" + ], + [ + "▁sp", + "ikes" + ], + [ + "▁Hungarian", + "s" + ], + [ + "▁Hung", + "arians" + ], + [ + "▁phylogen", + "etic" + ], + [ + "▁Whe", + "d" + ], + [ + "▁Wh", + "ed" + ], + [ + "▁W", + "hed" + ], + [ + "▁W", + "enger" + ], + [ + "▁soon", + "er" + ], + [ + "▁trail", + "ing" + ], + [ + "▁tra", + "iling" + ], + [ + "▁tr", + "ailing" + ], + [ + "▁pred", + "ation" + ], + [ + "T", + "E" + ], + [ + "TE", + "R" + ], + [ + "T", + "ER" + ], + [ + "▁G", + "H" + ], + [ + "▁fe", + "l" + ], + [ + "▁f", + "el" + ], + [ + "▁doct", + "r" + ], + [ + "▁doc", + "tr" + ], + [ + "▁stamp", + "s" + ], + [ + "▁st", + "amps" + ], + [ + "▁casem", + "ates" + ], + [ + "▁case", + "mates" + ], + [ + "▁incent", + "ive" + ], + [ + "▁beginning", + "s" + ], + [ + "▁begin", + "nings" + ], + [ + "▁formula", + "ted" + ], + [ + "▁form", + "ulated" + ], + [ + "▁G", + "E" + ], + [ + "▁", + "GE" + ], + [ + "▁N", + "R" + ], + [ + "▁Vi", + "n" + ], + [ + "▁V", + "in" + ], + [ + "▁an", + "a" + ], + [ + "▁a", + "na" + ], + [ + "▁", + "ana" + ], + [ + "▁Pi", + "et" + ], + [ + "▁P", + "iet" + ], + [ + "▁lamp", + "s" + ], + [ + "▁lam", + "ps" + ], + [ + "▁l", + "amps" + ], + [ + "▁hybrid", + "s" + ], + [ + "▁hybr", + "ids" + ], + [ + "▁sem", + "ester" + ], + [ + "▁yellow", + "ish" + ], + [ + "▁inacc", + "urate" + ], + [ + "▁prefer", + "ring" + ], + [ + "aver", + "s" + ], + [ + "ave", + "rs" + ], + [ + "av", + "ers" + ], + [ + "a", + "vers" + ], + [ + "▁tax", + "a" + ], + [ + "▁Dub", + "ai" + ], + [ + "▁Nep", + "al" + ], + [ + "▁Mongol", + "s" + ], + [ + "▁Mong", + "ols" + ], + [ + "▁sh", + "aping" + ], + [ + "▁intrig", + "uing" + ], + [ + "Re", + "f" + ], + [ + "R", + "ef" + ], + [ + "▁S", + "G" + ], + [ + "che", + "t" + ], + [ + "ch", + "et" + ], + [ + "c", + "het" + ], + [ + "▁Io", + "n" + ], + [ + "▁I", + "on" + ], + [ + "ay", + "ing" + ], + [ + "a", + "ying" + ], + [ + "▁scr", + "a" + ], + [ + "▁sc", + "ra" + ], + [ + "▁Cov", + "er" + ], + [ + "▁Co", + "ver" + ], + [ + "▁C", + "over" + ], + [ + "▁Spart", + "a" + ], + [ + "▁Sp", + "arta" + ], + [ + "▁fun", + "gal" + ], + [ + "▁Gro", + "ening" + ], + [ + "▁wonder", + "ed" + ], + [ + "▁internal", + "ly" + ], + [ + "▁intern", + "ally" + ], + [ + "▁Paralymp", + "ics" + ], + [ + "▁La", + "h" + ], + [ + "▁L", + "ah" + ], + [ + "power", + "ed" + ], + [ + "▁Keral", + "a" + ], + [ + "▁Ker", + "ala" + ], + [ + "▁Saff", + "ir" + ], + [ + "▁Simon", + "e" + ], + [ + "▁Sim", + "one" + ], + [ + "▁ammon", + "ia" + ], + [ + "▁vibr", + "ant" + ], + [ + "▁vib", + "rant" + ], + [ + "▁expend", + "iture" + ], + [ + "bel", + "s" + ], + [ + "be", + "ls" + ], + [ + "b", + "els" + ], + [ + "rim", + "p" + ], + [ + "ri", + "mp" + ], + [ + "r", + "imp" + ], + [ + "ge", + "ois" + ], + [ + "rea", + "ch" + ], + [ + "re", + "ach" + ], + [ + "ob", + "acter" + ], + [ + "▁Row", + "land" + ], + [ + "▁coinc", + "ide" + ], + [ + "▁cont", + "ender" + ], + [ + "▁There", + "after" + ], + [ + "2)", + "," + ], + [ + "2", + ")," + ], + [ + "oung", + "e" + ], + [ + "oun", + "ge" + ], + [ + "o", + "unge" + ], + [ + "▁Q", + "ing" + ], + [ + "best", + "os" + ], + [ + "▁Ho", + "over" + ], + [ + "▁T", + "otten" + ], + [ + "▁sl", + "ogan" + ], + [ + "D", + "o" + ], + [ + "isy", + "e" + ], + [ + "is", + "ye" + ], + [ + "▁A", + "al" + ], + [ + "▁Ne", + "o" + ], + [ + "▁N", + "eo" + ], + [ + "▁Co", + "tt" + ], + [ + "▁C", + "ott" + ], + [ + "▁Bra", + "un" + ], + [ + "produ", + "ct" + ], + [ + "pro", + "duct" + ], + [ + "▁trans", + "ist" + ], + [ + "▁programme", + "d" + ], + [ + "▁program", + "med" + ], + [ + "▁intention", + "al" + ], + [ + "▁intent", + "ional" + ], + [ + "▁T", + "F" + ], + [ + "lin", + "k" + ], + [ + "l", + "ink" + ], + [ + "▁30", + "," + ], + [ + "▁Ga", + "ut" + ], + [ + "▁G", + "aut" + ], + [ + "▁ten", + "or" + ], + [ + "▁te", + "nor" + ], + [ + "port", + "ion" + ], + [ + "p", + "ortion" + ], + [ + "▁Prep", + "ar" + ], + [ + "▁Pre", + "par" + ], + [ + "▁Vul", + "can" + ], + [ + "▁err", + "one" + ], + [ + "▁ed", + "isyon" + ], + [ + "▁aff", + "inity" + ], + [ + "▁mitig", + "ate" + ], + [ + "▁radical", + "s" + ], + [ + "▁rad", + "icals" + ], + [ + "▁invest", + "ing" + ], + [ + "▁thunderst", + "orm" + ], + [ + "▁thunder", + "storm" + ], + [ + "▁Buff", + "y" + ], + [ + "▁F", + "lynn" + ], + [ + "▁Toy", + "ota" + ], + [ + "▁gene", + "al" + ], + [ + "▁gen", + "eal" + ], + [ + "▁earn", + "est" + ], + [ + "▁ear", + "nest" + ], + [ + "▁micro", + "bi" + ], + [ + "▁Mari", + "time" + ], + [ + "▁Mar", + "itime" + ], + [ + "▁Prov", + "incial" + ], + [ + "▁cultural", + "ly" + ], + [ + "▁cult", + "urally" + ], + [ + "▁k", + "indergarten" + ], + [ + "▁39", + "0" + ], + [ + "▁3", + "90" + ], + [ + "▁Don", + "g" + ], + [ + "▁Do", + "ng" + ], + [ + "▁D", + "ong" + ], + [ + "▁ran", + "c" + ], + [ + "▁r", + "anc" + ], + [ + "▁pitch", + "es" + ], + [ + "▁pit", + "ches" + ], + [ + "▁p", + "itches" + ], + [ + "▁the", + "olog" + ], + [ + "▁explorer", + "s" + ], + [ + "▁explore", + "rs" + ], + [ + "▁explor", + "ers" + ], + [ + "▁author", + "ised" + ], + [ + "▁At", + "h" + ], + [ + "▁A", + "th" + ], + [ + "▁nou", + "r" + ], + [ + "▁no", + "ur" + ], + [ + "▁n", + "our" + ], + [ + "▁Dol", + "ph" + ], + [ + "▁D", + "olph" + ], + [ + "▁W", + "augh" + ], + [ + "▁para", + "p" + ], + [ + "▁par", + "ap" + ], + [ + "▁pa", + "rap" + ], + [ + "▁Did", + "ier" + ], + [ + "▁Fal", + "con" + ], + [ + "▁fleet", + "s" + ], + [ + "▁flee", + "ts" + ], + [ + "▁fle", + "ets" + ], + [ + "▁Pione", + "er" + ], + [ + "▁inexp", + "ensive" + ], + [ + "du", + "c" + ], + [ + "d", + "uc" + ], + [ + "▁si", + "b" + ], + [ + "▁s", + "ib" + ], + [ + "▁ty", + "res" + ], + [ + "um", + "ption" + ], + [ + "▁Alex", + "is" + ], + [ + "▁deal", + "er" + ], + [ + "▁Antio", + "ch" + ], + [ + "▁Anti", + "och" + ], + [ + "▁sk", + "ating" + ], + [ + "▁intest", + "ine" + ], + [ + "▁conflu", + "ence" + ], + [ + "▁fr", + "aternity" + ], + [ + "▁unde", + "feated" + ], + [ + "▁C", + "I" + ], + [ + "▁64", + "0" + ], + [ + "▁6", + "40" + ], + [ + "▁Ch", + "u" + ], + [ + "▁C", + "hu" + ], + [ + "▁all", + "oc" + ], + [ + "▁wagon", + "s" + ], + [ + "▁wag", + "ons" + ], + [ + "▁react", + "ive" + ], + [ + "▁re", + "active" + ], + [ + "▁domin", + "ation" + ], + [ + "▁dom", + "ination" + ], + [ + "▁eval", + "uating" + ], + [ + "▁detr", + "imental" + ], + [ + "rob", + "e" + ], + [ + "ro", + "be" + ], + [ + "r", + "obe" + ], + [ + "iki", + "ni" + ], + [ + "ik", + "ini" + ], + [ + "inee", + "s" + ], + [ + "ine", + "es" + ], + [ + "in", + "ees" + ], + [ + "▁But", + "ton" + ], + [ + "▁B", + "utton" + ], + [ + "▁sword", + "s" + ], + [ + "▁sw", + "ords" + ], + [ + "▁s", + "words" + ], + [ + "▁single", + "d" + ], + [ + "▁sing", + "led" + ], + [ + "▁sponsor", + "s" + ], + [ + "▁spons", + "ors" + ], + [ + "▁Volunte", + "er" + ], + [ + "▁negoti", + "ating" + ], + [ + "▁T", + "C" + ], + [ + "▁", + "TC" + ], + [ + "▁Co", + "d" + ], + [ + "▁C", + "od" + ], + [ + "▁Or", + "t" + ], + [ + "▁S", + "ão" + ], + [ + "▁z", + "eb" + ], + [ + "▁cit", + "e" + ], + [ + "▁c", + "ite" + ], + [ + "▁hear", + "s" + ], + [ + "▁he", + "ars" + ], + [ + "▁h", + "ears" + ], + [ + "▁Circ", + "us" + ], + [ + "▁Nichol", + "s" + ], + [ + "▁Nich", + "ols" + ], + [ + "▁reinforce", + "ment" + ], + [ + "S", + "ee" + ], + [ + "Le", + "ar" + ], + [ + "L", + "ear" + ], + [ + "▁Hol", + "t" + ], + [ + "▁H", + "olt" + ], + [ + "▁Mis", + "t" + ], + [ + "▁Mi", + "st" + ], + [ + "▁M", + "ist" + ], + [ + "▁tall", + "y" + ], + [ + "▁tal", + "ly" + ], + [ + "▁t", + "ally" + ], + [ + "▁Cart", + "oon" + ], + [ + "▁Tob", + "y" + ], + [ + "▁To", + "by" + ], + [ + "▁eat", + "s" + ], + [ + "▁e", + "ats" + ], + [ + "ur", + "ring" + ], + [ + "▁adhe", + "s" + ], + [ + "▁ad", + "hes" + ], + [ + "▁bask", + "et" + ], + [ + "▁contrast", + "s" + ], + [ + "▁contra", + "sts" + ], + [ + "▁gall", + "eries" + ], + [ + "▁poison", + "ous" + ], + [ + "ja", + "s" + ], + [ + "j", + "as" + ], + [ + "hi", + "gh" + ], + [ + "h", + "igh" + ], + [ + "ier", + "o" + ], + [ + "ie", + "ro" + ], + [ + "i", + "ero" + ], + [ + "▁12", + "." + ], + [ + "▁1", + "2." + ], + [ + "▁18", + "11" + ], + [ + "▁sea", + "w" + ], + [ + "▁se", + "aw" + ], + [ + "op", + "rens" + ], + [ + "roc", + "ery" + ], + [ + "▁ten", + "ants" + ], + [ + "▁fourteen", + "th" + ], + [ + "▁four", + "teenth" + ], + [ + "aga", + "r" + ], + [ + "ag", + "ar" + ], + [ + "a", + "gar" + ], + [ + "ere", + "s" + ], + [ + "er", + "es" + ], + [ + "e", + "res" + ], + [ + "▁di", + "r" + ], + [ + "▁d", + "ir" + ], + [ + "ew", + "ide" + ], + [ + "e", + "wide" + ], + [ + "▁e", + "uro" + ], + [ + "▁Fan", + "ny" + ], + [ + "▁F", + "anny" + ], + [ + "uri", + "stic" + ], + [ + "ur", + "istic" + ], + [ + "ure", + "l" + ], + [ + "ur", + "el" + ], + [ + "u", + "rel" + ], + [ + "▁ap", + "h" + ], + [ + "▁a", + "ph" + ], + [ + "▁", + "aph" + ], + [ + "▁pond", + "s" + ], + [ + "▁p", + "onds" + ], + [ + "▁can", + "yon" + ], + [ + "▁ag", + "round" + ], + [ + "▁a", + "ground" + ], + [ + "▁beet", + "les" + ], + [ + "▁analog", + "ous" + ], + [ + "D", + "M" + ], + [ + "-1", + "4" + ], + [ + "-", + "14" + ], + [ + "orm", + "al" + ], + [ + "or", + "mal" + ], + [ + "▁Cha", + "b" + ], + [ + "▁Ch", + "ab" + ], + [ + "▁Mas", + "k" + ], + [ + "▁Ma", + "sk" + ], + [ + "▁M", + "ask" + ], + [ + "▁sab", + "ot" + ], + [ + "▁sa", + "bot" + ], + [ + "▁st", + "int" + ], + [ + "▁Sk", + "ills" + ], + [ + "▁Coch", + "rane" + ], + [ + "▁Venet", + "ian" + ], + [ + "▁suppl", + "iers" + ], + [ + "▁ver", + "n" + ], + [ + "▁v", + "ern" + ], + [ + "▁", + "vern" + ], + [ + "▁Min", + "aj" + ], + [ + "▁sw", + "orn" + ], + [ + "▁tire", + "s" + ], + [ + "▁ti", + "res" + ], + [ + "▁t", + "ires" + ], + [ + "▁taste", + "s" + ], + [ + "▁tast", + "es" + ], + [ + "▁classic", + "s" + ], + [ + "▁class", + "ics" + ], + [ + "co", + "in" + ], + [ + "c", + "oin" + ], + [ + "▁Gu", + "e" + ], + [ + "▁G", + "ue" + ], + [ + "▁ro", + "y" + ], + [ + "▁r", + "oy" + ], + [ + "▁", + "roy" + ], + [ + "▁Mar", + "i" + ], + [ + "▁Ma", + "ri" + ], + [ + "▁M", + "ari" + ], + [ + "▁lam", + "b" + ], + [ + "▁la", + "mb" + ], + [ + "▁l", + "amb" + ], + [ + "▁Ug", + "anda" + ], + [ + "▁Williams", + "on" + ], + [ + "▁William", + "son" + ], + [ + "iz", + "yè" + ], + [ + "▁(1", + "2" + ], + [ + "▁(", + "12" + ], + [ + "▁Val", + "d" + ], + [ + "▁Va", + "ld" + ], + [ + "▁V", + "ald" + ], + [ + "inction", + "s" + ], + [ + "inct", + "ions" + ], + [ + "in", + "ctions" + ], + [ + "▁Liberal", + "s" + ], + [ + "▁Liber", + "als" + ], + [ + "▁Lib", + "erals" + ], + [ + "▁Wolver", + "ines" + ], + [ + ".|", + "|" + ], + [ + ".", + "||" + ], + [ + "▁17", + "4" + ], + [ + "▁AA", + "A" + ], + [ + "▁A", + "AA" + ], + [ + "▁Mur", + "d" + ], + [ + "▁Mu", + "rd" + ], + [ + "▁M", + "urd" + ], + [ + "ern", + "ess" + ], + [ + "er", + "ness" + ], + [ + "▁Rock", + "s" + ], + [ + "▁Roc", + "ks" + ], + [ + "▁R", + "ocks" + ], + [ + "▁dock", + "s" + ], + [ + "▁doc", + "ks" + ], + [ + "▁d", + "ocks" + ], + [ + "▁pant", + "s" + ], + [ + "▁pan", + "ts" + ], + [ + "▁p", + "ants" + ], + [ + "▁rem", + "ot" + ], + [ + "▁Rif", + "les" + ], + [ + "▁car", + "pet" + ], + [ + "▁pour", + "ed" + ], + [ + "▁pou", + "red" + ], + [ + "▁po", + "ured" + ], + [ + "▁p", + "oured" + ], + [ + "▁Fern", + "and" + ], + [ + "▁Mal", + "agasy" + ], + [ + "▁Associ", + "ate" + ], + [ + "▁confess", + "ion" + ], + [ + "▁conf", + "ession" + ], + [ + "arr", + "y" + ], + [ + "ar", + "ry" + ], + [ + "▁Cas", + "h" + ], + [ + "▁Ca", + "sh" + ], + [ + "▁C", + "ash" + ], + [ + "▁2014", + "," + ], + [ + "▁201", + "4," + ], + [ + "▁param", + "eter" + ], + [ + "▁conspic", + "uous" + ], + [ + "▁partnership", + "s" + ], + [ + "▁partners", + "hips" + ], + [ + "▁H", + "R" + ], + [ + "aire", + "s" + ], + [ + "air", + "es" + ], + [ + "ai", + "res" + ], + [ + "a", + "ires" + ], + [ + "ito", + "us" + ], + [ + "it", + "ous" + ], + [ + "▁Lev", + "i" + ], + [ + "▁Le", + "vi" + ], + [ + "▁Glas", + "ton" + ], + [ + "▁Gl", + "aston" + ], + [ + "▁nost", + "alg" + ], + [ + "▁selection", + "s" + ], + [ + "▁select", + "ions" + ], + [ + "ij", + "e" + ], + [ + "i", + "je" + ], + [ + "oss", + "ip" + ], + [ + "▁Yo", + "ga" + ], + [ + "▁Y", + "oga" + ], + [ + "▁Har", + "lem" + ], + [ + "cept", + "able" + ], + [ + "▁abbre", + "vi" + ], + [ + "▁worse", + "ned" + ], + [ + "▁wors", + "ened" + ], + [ + "▁sponsors", + "hip" + ], + [ + "▁sponsor", + "ship" + ], + [ + "▁spons", + "orship" + ], + [ + "▁incorpor", + "ation" + ], + [ + "di", + "s" + ], + [ + "d", + "is" + ], + [ + "▁fo", + "n" + ], + [ + "▁f", + "on" + ], + [ + "▁Els", + "a" + ], + [ + "▁El", + "sa" + ], + [ + "▁sh", + "oe" + ], + [ + "▁s", + "hoe" + ], + [ + "▁oz", + "one" + ], + [ + "▁lav", + "ish" + ], + [ + "▁ple", + "aded" + ], + [ + "▁Cliff", + "ord" + ], + [ + "▁Clif", + "ford" + ], + [ + "▁height", + "ened" + ], + [ + "ck", + "e" + ], + [ + "c", + "ke" + ], + [ + "oy", + "ne" + ], + [ + "▁li", + "d" + ], + [ + "▁l", + "id" + ], + [ + "▁Hor", + "s" + ], + [ + "▁Ho", + "rs" + ], + [ + "▁H", + "ors" + ], + [ + "▁To", + "sh" + ], + [ + "▁T", + "osh" + ], + [ + "▁fo", + "am" + ], + [ + "▁belt", + "s" + ], + [ + "▁bel", + "ts" + ], + [ + "▁Tar", + "get" + ], + [ + "▁ev", + "apor" + ], + [ + "▁ninet", + "y" + ], + [ + "▁nine", + "ty" + ], + [ + "▁nin", + "ety" + ], + [ + "▁epit", + "het" + ], + [ + "orpor", + "ated" + ], + [ + "▁bright", + "er" + ], + [ + "▁br", + "ighter" + ], + [ + "▁extra", + "ter" + ], + [ + "▁extr", + "ater" + ], + [ + "lla", + "n" + ], + [ + "ll", + "an" + ], + [ + "l", + "lan" + ], + [ + "▁Ib", + "er" + ], + [ + "▁I", + "ber" + ], + [ + "▁sit", + "u" + ], + [ + "ph", + "ilis" + ], + [ + "▁ad", + "ren" + ], + [ + "▁Barn", + "ey" + ], + [ + "▁Bar", + "ney" + ], + [ + "▁Mel", + "issa" + ], + [ + "▁Synd", + "rome" + ], + [ + "▁Ep", + "iscopal" + ], + [ + "▁St", + "a" + ], + [ + "▁S", + "ta" + ], + [ + "ull", + "ah" + ], + [ + "ul", + "lah" + ], + [ + "▁Tib", + "er" + ], + [ + "▁Ti", + "ber" + ], + [ + "▁T", + "iber" + ], + [ + "▁d", + "unge" + ], + [ + "▁bar", + "red" + ], + [ + "▁drift", + "ed" + ], + [ + "▁dr", + "ifted" + ], + [ + "▁slip", + "ped" + ], + [ + "▁sl", + "ipped" + ], + [ + "▁convert", + "s" + ], + [ + "▁conver", + "ts" + ], + [ + "▁conv", + "erts" + ], + [ + "▁D", + "í" + ], + [ + "lew", + "ine" + ], + [ + "ling", + "er" + ], + [ + "lin", + "ger" + ], + [ + "l", + "inger" + ], + [ + "▁half", + "t" + ], + [ + "▁hal", + "ft" + ], + [ + "▁sp", + "ike" + ], + [ + "▁s", + "pike" + ], + [ + "▁Front", + "ier" + ], + [ + "▁inaug", + "urated" + ], + [ + "▁photograph", + "ic" + ], + [ + "▁phot", + "ographic" + ], + [ + "▁pro", + "clamation" + ], + [ + "han", + "na" + ], + [ + "h", + "anna" + ], + [ + "▁Kr", + "on" + ], + [ + "▁K", + "ron" + ], + [ + "▁Rap", + "id" + ], + [ + "▁hang", + "ed" + ], + [ + "▁ump", + "ire" + ], + [ + "▁Disease", + "s" + ], + [ + "▁Dise", + "ases" + ], + [ + "▁Er", + "lewine" + ], + [ + "▁Historian", + "s" + ], + [ + "▁Histor", + "ians" + ], + [ + "▁Napoleon", + "ic" + ], + [ + "▁Napole", + "onic" + ], + [ + "▁republic", + "an" + ], + [ + "▁Pen", + "g" + ], + [ + "▁Pe", + "ng" + ], + [ + "▁P", + "eng" + ], + [ + "ogene", + "ous" + ], + [ + "ogen", + "eous" + ], + [ + "▁Reven", + "ge" + ], + [ + "▁Rev", + "enge" + ], + [ + "▁benef", + "ic" + ], + [ + "▁bene", + "fic" + ], + [ + "▁sand", + "wich" + ], + [ + "▁counsel", + "ing" + ], + [ + "▁rehearsal", + "s" + ], + [ + "▁rehears", + "als" + ], + [ + "▁labor", + "atories" + ], + [ + "kt", + "è" + ], + [ + "k", + "tè" + ], + [ + "tw", + "o" + ], + [ + "t", + "wo" + ], + [ + "vi", + "l" + ], + [ + "v", + "il" + ], + [ + "▁Fe", + "d" + ], + [ + "▁F", + "ed" + ], + [ + "▁re", + "e" + ], + [ + "▁r", + "ee" + ], + [ + "▁", + "ree" + ], + [ + "▁Cr", + "is" + ], + [ + "▁C", + "ris" + ], + [ + "▁Wat", + "t" + ], + [ + "▁Wa", + "tt" + ], + [ + "▁W", + "att" + ], + [ + "att", + "ing" + ], + [ + "at", + "ting" + ], + [ + "▁Part", + "s" + ], + [ + "▁Par", + "ts" + ], + [ + "▁P", + "arts" + ], + [ + "▁Sche", + "er" + ], + [ + "▁up", + "hold" + ], + [ + "▁inc", + "urred" + ], + [ + "▁symph", + "ony" + ], + [ + "▁sym", + "phony" + ], + [ + "▁break", + "away" + ], + [ + "î", + "t" + ], + [ + "▁", + "`" + ], + [ + "ut", + "nant" + ], + [ + "▁Crit", + "ic" + ], + [ + "▁Cr", + "itic" + ], + [ + "▁C", + "ritic" + ], + [ + "▁W", + "izard" + ], + [ + "▁Resp", + "ons" + ], + [ + "▁amalg", + "am" + ], + [ + "▁obst", + "ruct" + ], + [ + "▁real", + "ization" + ], + [ + "him", + "a" + ], + [ + "hi", + "ma" + ], + [ + "h", + "ima" + ], + [ + "wo", + "rm" + ], + [ + "w", + "orm" + ], + [ + "▁Av", + "ery" + ], + [ + "▁A", + "very" + ], + [ + "▁McC", + "orm" + ], + [ + "▁in", + "mates" + ], + [ + "▁spread", + "s" + ], + [ + "▁comprehens", + "ion" + ], + [ + "▁43", + "0" + ], + [ + "▁4", + "30" + ], + [ + "▁AC", + "L" + ], + [ + "▁Bu", + "y" + ], + [ + "▁B", + "uy" + ], + [ + "▁pad", + "s" + ], + [ + "▁pa", + "ds" + ], + [ + "▁p", + "ads" + ], + [ + "▁App", + "lic" + ], + [ + "▁abuse", + "d" + ], + [ + "▁ab", + "used" + ], + [ + "▁Sparta", + "n" + ], + [ + "▁Spart", + "an" + ], + [ + "▁Christ", + "ie" + ], + [ + "▁Sher", + "idan" + ], + [ + "▁ver", + "ified" + ], + [ + "▁Insp", + "ector" + ], + [ + "▁Refer", + "ence" + ], + [ + "▁Re", + "ference" + ], + [ + "▁Glaston", + "bury" + ], + [ + "in", + "é" + ], + [ + "▁bu", + "mp" + ], + [ + "▁b", + "ump" + ], + [ + "▁de", + "ar" + ], + [ + "▁d", + "ear" + ], + [ + "atic", + "al" + ], + [ + "ati", + "cal" + ], + [ + "at", + "ical" + ], + [ + "▁Cru", + "ise" + ], + [ + "▁unus", + "ed" + ], + [ + "▁un", + "used" + ], + [ + "over", + "eign" + ], + [ + "o", + "vereign" + ], + [ + "▁assemb", + "le" + ], + [ + "▁ass", + "emble" + ], + [ + "▁Bol", + "lywood" + ], + [ + "▁stair", + "case" + ], + [ + "▁24", + "," + ], + [ + "▁2", + "4," + ], + [ + "arc", + "er" + ], + [ + "ar", + "cer" + ], + [ + "▁Be", + "ech" + ], + [ + "▁The", + "ss" + ], + [ + "▁Th", + "ess" + ], + [ + "▁T", + "hess" + ], + [ + "▁anti", + "c" + ], + [ + "▁ant", + "ic" + ], + [ + "▁an", + "tic" + ], + [ + "▁", + "antic" + ], + [ + "▁Wess", + "ex" + ], + [ + "▁Wes", + "sex" + ], + [ + "▁coat", + "ed" + ], + [ + "▁co", + "ated" + ], + [ + "▁shaft", + "s" + ], + [ + "▁spine", + "s" + ], + [ + "▁spin", + "es" + ], + [ + "▁sp", + "ines" + ], + [ + "▁Bagh", + "dad" + ], + [ + "▁revol", + "ves" + ], + [ + "▁rev", + "olves" + ], + [ + "▁migr", + "atory" + ], + [ + "▁Princip", + "les" + ], + [ + "5)", + "." + ], + [ + "5", + ")." + ], + [ + "ho", + "p" + ], + [ + "h", + "op" + ], + [ + "▁k", + "o" + ], + [ + "▁", + "ko" + ], + [ + "mo", + "il" + ], + [ + "▁Ja", + "s" + ], + [ + "▁J", + "as" + ], + [ + "che", + "ck" + ], + [ + "ch", + "eck" + ], + [ + "▁el", + "bow" + ], + [ + "▁lev", + "er" + ], + [ + "▁le", + "ver" + ], + [ + "▁l", + "ever" + ], + [ + "▁vow", + "el" + ], + [ + "▁Stef", + "an" + ], + [ + "▁Ste", + "fan" + ], + [ + "▁into", + "xic" + ], + [ + "▁int", + "oxic" + ], + [ + "▁micro", + "bes" + ], + [ + "▁wide", + "ning" + ], + [ + "▁wid", + "ening" + ], + [ + "▁evidence", + "d" + ], + [ + "▁evid", + "enced" + ], + [ + "▁soc", + "iology" + ], + [ + "▁É", + "d" + ], + [ + "▁Fu", + "t" + ], + [ + "▁F", + "ut" + ], + [ + "▁et", + "id" + ], + [ + "agram", + "s" + ], + [ + "ag", + "rams" + ], + [ + "▁scen", + "t" + ], + [ + "▁sc", + "ent" + ], + [ + "▁s", + "cent" + ], + [ + "▁God", + "win" + ], + [ + "▁Vett", + "el" + ], + [ + "▁lone", + "ly" + ], + [ + "▁lon", + "ely" + ], + [ + "▁v", + "ascular" + ], + [ + "▁Ta", + "o" + ], + [ + "▁T", + "ao" + ], + [ + "ump", + "er" + ], + [ + "um", + "per" + ], + [ + "▁Bur", + "y" + ], + [ + "▁Bu", + "ry" + ], + [ + "▁B", + "ury" + ], + [ + "▁pin", + "n" + ], + [ + "▁p", + "inn" + ], + [ + "▁Pol", + "ar" + ], + [ + "▁Po", + "lar" + ], + [ + "▁P", + "olar" + ], + [ + "▁pwo", + "fes" + ], + [ + "▁un", + "healthy" + ], + [ + "nic", + "k" + ], + [ + "ni", + "ck" + ], + [ + "n", + "ick" + ], + [ + "st", + "ood" + ], + [ + "▁203", + "0" + ], + [ + "▁20", + "30" + ], + [ + "▁Ib", + "ra" + ], + [ + "▁I", + "bra" + ], + [ + "▁Od", + "in" + ], + [ + "▁O", + "din" + ], + [ + "▁Pi", + "us" + ], + [ + "▁P", + "ius" + ], + [ + "▁sa", + "ga" + ], + [ + "▁s", + "aga" + ], + [ + "▁Sever", + "e" + ], + [ + "▁Sev", + "ere" + ], + [ + "▁deny", + "ing" + ], + [ + "▁den", + "ying" + ], + [ + "▁remix", + "ed" + ], + [ + "▁rem", + "ixed" + ], + [ + "▁convey", + "ed" + ], + [ + "▁Strateg", + "ic" + ], + [ + "▁viewers", + "hip" + ], + [ + "▁viewer", + "ship" + ], + [ + "▁view", + "ership" + ], + [ + "▁n", + "m" + ], + [ + "▁Ge", + "s" + ], + [ + "▁G", + "es" + ], + [ + "▁10.", + "10" + ], + [ + "▁Priv", + "y" + ], + [ + "▁Pri", + "vy" + ], + [ + "▁hate", + "d" + ], + [ + "▁hat", + "ed" + ], + [ + "▁ha", + "ted" + ], + [ + "▁h", + "ated" + ], + [ + "▁clo", + "ver" + ], + [ + "▁cl", + "over" + ] + ] + } +} \ No newline at end of file diff --git a/Tokenizer/BPE/tokenizer.model b/Tokenizer/BPE/tokenizer.model new file mode 100644 index 0000000000000000000000000000000000000000..3d1fe96a0304ac72f65b9efa8b739c2a0b5136fd --- /dev/null +++ b/Tokenizer/BPE/tokenizer.model @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:debb3ad91c0745bb304129ee9a0332a33c2bb1fffe7313d573608e5014ab69bb +size 747364 diff --git a/Tokenizer/BPE/tokenizer_config.json b/Tokenizer/BPE/tokenizer_config.json new file mode 100644 index 0000000000000000000000000000000000000000..fdef3a68827c12a05e7378717710dbe2ccb7d159 --- /dev/null +++ b/Tokenizer/BPE/tokenizer_config.json @@ -0,0 +1,80 @@ +{ + "add_bos_token": true, + "add_eos_token": false, + "add_prefix_space": null, + "added_tokens_decoder": { + "0": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "1": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "2": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "3": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "4": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "5": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "6": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + } + }, + "additional_special_tokens": [ + "", + "", + "" + ], + "bos_token": "", + "clean_up_tokenization_spaces": false, + "eos_token": "", + "extra_special_tokens": {}, + "legacy": true, + "model_max_length": 1000000000000000019884624838656, + "pad_token": "", + "sp_model_kwargs": {}, + "spaces_between_special_tokens": false, + "tokenizer_class": "LlamaTokenizer", + "unk_token": "", + "use_default_system_prompt": false +} diff --git a/Tokenizer/README.md b/Tokenizer/README.md new file mode 100644 index 0000000000000000000000000000000000000000..02d746dfa57bd5109d6e94752d243d3ec9c041f5 --- /dev/null +++ b/Tokenizer/README.md @@ -0,0 +1,160 @@ +# Tokenizer Module + +This module handles all tokenization tasks for the Mini-LLM project, converting raw text into numerical tokens that the model can process. + +## Overview + +The tokenizer uses **SentencePiece** with **Byte Pair Encoding (BPE)** to create a 32,000 token vocabulary. BPE is the same algorithm used by GPT-3, GPT-4, and LLaMA models. + +## Directory Structure + +``` +Tokenizer/ +├── BPE/ # BPE tokenizer artifacts +│ ├── spm.model # Trained SentencePiece model +│ ├── spm.vocab # Vocabulary file +│ ├── tokenizer.json # HuggingFace format +│ ├── tokenizer_config.json +│ └── special_tokens_map.json +├── Unigram/ # Unigram tokenizer (baseline) +│ └── ... +├── train_spm_bpe.py # Train BPE tokenizer +├── train_spm_unigram.py # Train Unigram tokenizer +└── convert_to_hf.py # Convert to HuggingFace format +``` + +## How It Works + +### 1. Training the Tokenizer + +**Script**: `train_spm_bpe.py` + +```python +import sentencepiece as spm + +spm.SentencePieceTrainer.Train( + input="data/raw/merged_text/corpus.txt", + model_prefix="Tokenizer/BPE/spm", + vocab_size=32000, + model_type="bpe", + byte_fallback=True, # Handles emojis, special chars + character_coverage=1.0, + user_defined_symbols=["", "", ""] +) +``` + +**What happens:** +1. Reads raw text corpus +2. Learns byte-pair merges (e.g., "th" + "e" → "the") +3. Builds 32,000 most frequent tokens +4. Saves model to `spm.model` + +### 2. Example: Tokenization Process + +**Input Text:** +``` +"Hello world! write code " +``` + +**Tokenization Steps:** + +``` +┌─────────────────────────────────────────┐ +│ 1. Text Input │ +│ "Hello world! write code" │ +└─────────────────────────────────────────┘ + ↓ +┌─────────────────────────────────────────┐ +│ 2. BPE Segmentation │ +│ ['H', 'ello', '▁world', '!', │ +│ '▁', '', '▁write', '▁code'] │ +└─────────────────────────────────────────┘ + ↓ +┌─────────────────────────────────────────┐ +│ 3. Token IDs │ +│ [334, 3855, 288, 267, 2959, │ +│ 354, 267, 12397] │ +└─────────────────────────────────────────┘ +``` + +**Key Features:** +- `▁` represents space (SentencePiece convention) +- Special tokens like `` are preserved +- Byte fallback handles emojis: 🔥 → `<0xF0><0x9F><0x94><0xA5>` + +### 3. Converting to HuggingFace Format + +**Script**: `convert_to_hf.py` + +```python +from transformers import LlamaTokenizerFast + +tokenizer = LlamaTokenizerFast(vocab_file="Tokenizer/BPE/spm.model") +tokenizer.add_special_tokens({ + 'bos_token': '', + 'eos_token': '', + 'unk_token': '', + 'pad_token': '' +}) +tokenizer.save_pretrained("Tokenizer/BPE") +``` + +This creates `tokenizer.json` and config files compatible with HuggingFace Transformers. + +## Usage + +### Load Tokenizer + +```python +from transformers import AutoTokenizer + +tokenizer = AutoTokenizer.from_pretrained("Tokenizer/BPE") +``` + +### Encode Text + +```python +text = "Hello world!" +ids = tokenizer.encode(text) +# Output: [1, 334, 3855, 288, 267, 2] +# [, H, ello, ▁world, !, ] +``` + +### Decode IDs + +```python +decoded = tokenizer.decode(ids) +# Output: " Hello world! " + +decoded = tokenizer.decode(ids, skip_special_tokens=True) +# Output: "Hello world!" +``` + +## BPE vs Unigram + +| Feature | BPE | Unigram | +|---------|-----|---------| +| **Algorithm** | Merge frequent pairs | Probabilistic segmentation | +| **Emoji Handling** | ✅ Byte fallback | ❌ Creates `` | +| **URL Handling** | ✅ Clean splits | ⚠️ Unstable | +| **Used By** | GPT-3, GPT-4, LLaMA | BERT, T5 | +| **Recommendation** | ✅ **Primary** | Baseline only | + +## Vocabulary Statistics + +- **Total Tokens**: 32,000 +- **Special Tokens**: 4 (``, ``, ``, ``) +- **User-Defined**: 3 (``, ``, ``) +- **Coverage**: 100% (byte fallback ensures no ``) + +## Performance + +- **Compression Ratio**: ~3.5 bytes/token (English text) +- **Tokenization Speed**: ~1M tokens/second +- **Vocab Usage**: ~70% of tokens used in typical corpus + +## References + +- [SentencePiece Documentation](https://github.com/google/sentencepiece) +- [BPE Paper (Sennrich et al., 2016)](https://arxiv.org/abs/1508.07909) +- [Tokenizer Comparison Report](../tokenizer_report.md) diff --git a/Tokenizer/Unigram/special_tokens_map.json b/Tokenizer/Unigram/special_tokens_map.json new file mode 100644 index 0000000000000000000000000000000000000000..6fd125725f415c33614a9676cc5bf31c72eae119 --- /dev/null +++ b/Tokenizer/Unigram/special_tokens_map.json @@ -0,0 +1,53 @@ +{ + "additional_special_tokens": [ + { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + } + ], + "bos_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "eos_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "pad_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "unk_token": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + } +} diff --git a/Tokenizer/Unigram/spm.model b/Tokenizer/Unigram/spm.model new file mode 100644 index 0000000000000000000000000000000000000000..81abd1ad720e1c5c363acf2fe6395223574392b5 --- /dev/null +++ b/Tokenizer/Unigram/spm.model @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:247ddb0f3561179d04614a59d7eb594da59ad881575a6d3860f859be9b709508 +size 768238 diff --git a/Tokenizer/Unigram/spm.vocab b/Tokenizer/Unigram/spm.vocab new file mode 100644 index 0000000000000000000000000000000000000000..19aedbac4a4cc82f0e3ffbad8d943258edccf3d9 --- /dev/null +++ b/Tokenizer/Unigram/spm.vocab @@ -0,0 +1,32000 @@ + 0 + 0 + 0 + 0 + 0 + 0 + 0 +▁the -3.09631 +▁, -3.51771 +s -3.71999 +▁of -3.74825 +▁. -3.82559 +▁and -3.8571 +▁to -4.03732 +▁in -4.15059 +▁a -4.18078 +. -4.32701 +, -4.39601 +▁" -4.78313 +▁was -4.90656 +▁The -5.00487 +▁that -5.0797 +▁@ -5.08933 +▁for -5.11795 +▁is -5.13897 +▁' -5.1664 +▁on -5.20998 +▁ -5.23412 +-@ -5.25642 +▁with -5.26187 +▁as -5.27515 +▁( -5.31817 +▁by -5.36379 +▁from -5.6371 +▁) -5.6944 +▁at -5.724 +▁it -5.75192 +▁his -5.81227 +▁an -5.87569 +▁be -5.90462 +▁are -5.91483 +▁were -5.95489 +ing -6.04328 +▁In -6.04987 +▁he -6.08271 +- -6.08362 +▁: -6.09573 +▁which -6.10021 +▁or -6.12144 +ed -6.17806 +▁had -6.1929 +▁not -6.25413 +▁have -6.31389 +▁their -6.34684 +▁but -6.39129 +▁A -6.39534 +▁this -6.41647 +▁also -6.48736 +e -6.49453 +d -6.51542 +t -6.52059 +▁one -6.53027 +▁has -6.54592 +▁I -6.56645 +▁first -6.5891 +▁they -6.6111 +▁its -6.65291 +▁who -6.66691 +▁can -6.68574 +▁her -6.69286 +▁been -6.69629 +’ -6.69698 +▁– -6.70524 +▁more -6.72578 +▁two -6.75319 +▁; -6.76883 +▁It -6.78223 +: -6.80129 +▁He -6.807 +▁other -6.81362 +▁time -6.81573 +ly -6.83426 +er -6.84221 +▁into -6.86019 +▁you -6.86771 +y -6.86872 +▁- -6.87056 +▁all -6.88339 +▁would -6.88345 +) -6.88446 +th -6.91886 +▁after -6.95949 +.@ -6.96837 +▁1 -6.97734 +▁about -6.97913 +▁when -6.97973 +▁de -6.98279 +▁2 -6.98375 +▁over -7.00161 +a -7.0247 +' -7.02595 +▁@,@ -7.02707 +▁than -7.04804 +▁out -7.05858 +▁nan -7.06762 +▁up -7.07482 +n -7.07716 +▁This -7.10398 +▁only -7.12789 +▁3 -7.14409 +▁most -7.16176 +▁will -7.17094 +▁new -7.22264 +▁between -7.23107 +▁during -7.23429 +▁such -7.23826 +▁she -7.2439 +▁some -7.26345 +▁them -7.26972 +▁him -7.2815 +o -7.30548 +▁used -7.31532 +▁so -7.34985 +▁there -7.36191 +▁three -7.36212 +▁5 -7.36631 +es -7.37684 +▁where -7.37799 +▁while -7.38011 +▁we -7.38424 +i -7.38873 +▁your -7.40527 +al -7.4071 +▁years -7.40827 +▁made -7.4118 +▁through -7.41921 +▁no -7.42367 +▁may -7.42533 +▁4 -7.43772 +▁people -7.44348 +▁later -7.44687 +m -7.44912 +▁these -7.45017 +▁game -7.45683 +▁well -7.45724 +▁many -7.4588 +▁year -7.45967 +▁before -7.46632 +▁“ -7.47077 +▁being -7.47242 +▁On -7.47789 +▁New -7.48341 +re -7.52307 +▁then -7.53747 +▁use -7.53809 +▁part -7.5587 +▁work -7.56203 +in -7.56972 +r -7.57056 +▁could -7.57552 +▁number -7.57947 +▁both -7.59036 +▁S -7.59736 +▁6 -7.60249 +▁like -7.61266 +S -7.61385 +▁said -7.62079 +▁film -7.62127 +▁B -7.62527 +▁under -7.63309 +▁including -7.63745 +▁against -7.6486 +▁second -7.65561 +▁As -7.65689 +▁if -7.65814 +▁season -7.65846 +▁do -7.65863 +▁C -7.67775 +▁/ -7.6815 +▁000 -7.68634 +▁what -7.68816 +▁— -7.69826 +▁re -7.70238 +▁any -7.70909 +▁10 -7.71741 +▁United -7.71944 +; -7.72273 +▁because -7.73692 +▁became -7.74173 +▁American -7.75294 +▁7 -7.76332 +▁After -7.76346 +▁known -7.76513 +▁day -7.76734 +▁se -7.77463 +▁U -7.77509 +▁= -7.79242 +man -7.79299 +▁found -7.79518 +▁E -7.7962 +▁four -7.80267 +▁did -7.80278 +▁several -7.80866 +▁same -7.81341 +▁8 -7.81679 +▁called -7.82108 +? -7.82644 +▁team -7.82661 +▁song -7.8302 +▁series -7.83244 +▁each -7.84241 +▁album -7.84304 +▁end -7.85649 +▁long -7.85706 +▁early -7.86041 +en -7.86095 +▁They -7.86666 +▁high -7.86891 +▁M -7.86948 +▁water -7.8715 +▁make -7.87555 +g -7.88465 +▁D -7.88498 +▁back -7.88586 +▁9 -7.88632 +/ -7.88885 +▁around -7.8897 +▁how -7.89539 +▁sa -7.90102 +▁system -7.90888 +▁F -7.91221 +▁until -7.91409 +▁At -7.91554 +k -7.91762 +▁She -7.92607 +▁began -7.93991 +▁much -7.94913 +▁life -7.94961 +▁very -7.95027 +ers -7.95096 +l -7.95451 +▁million -7.95596 +▁episode -7.95715 +▁However -7.96053 +▁world -7.96347 +▁state -7.96508 +▁those -7.97383 +▁way -7.97526 +▁15 -7.97865 +▁just -7.98182 +▁P -7.98705 +▁our -7.99047 +▁For -7.99339 +▁20 -7.99789 +▁area -8.00664 +▁12 -8.00785 +▁down -8.01032 +▁L -8.01096 +▁off -8.01334 +▁States -8.01393 +▁16 -8.02001 +▁yo -8.02033 +▁even -8.02054 +an -8.02447 +). -8.03178 +▁following -8.03228 +▁British -8.03534 +▁$ -8.04167 +▁[ -8.04767 +▁released -8.0534 +▁G -8.05383 +▁R -8.0544 +▁When -8.05545 +▁own -8.06246 +▁0 -8.06388 +us -8.07095 +▁large -8.07623 +▁T -8.07699 +▁li -8.07747 +▁place -8.07817 +▁should -8.07881 +▁17 -8.08739 +▁different -8.08801 +st -8.08939 +▁War -8.09104 +▁O -8.09247 +▁yon -8.09274 +▁along -8.09311 +▁May -8.09339 +▁since -8.09449 +▁now -8.09483 +▁World -8.09838 +▁John -8.09933 +▁m -8.1015 +on -8.10343 +▁set -8.10645 +or -8.11151 +▁There -8.11265 +▁music -8.11455 +▁group -8.11621 +▁century -8.12102 +▁took -8.12513 +▁another -8.12539 +▁September -8.1287 +▁home -8.13047 +c -8.13091 +▁show -8.13625 +▁km -8.14652 +b -8.14772 +▁often -8.15057 +▁five -8.15546 +▁government -8.15711 +▁war -8.1608 +▁city -8.16146 +ic -8.16577 +▁August -8.16607 +▁men -8.16849 +▁single -8.1694 +▁still -8.1716 +▁take -8.17999 +▁name -8.18319 +▁due -8.18422 +▁small -8.1846 +▁11 -8.18721 +▁US -8.19035 +▁based -8.19091 +▁York -8.19442 +2 -8.19712 +▁received -8.19955 +▁help -8.20144 +▁To -8.20223 +▁K -8.20986 +▁left -8.21142 +▁children -8.21262 +▁family -8.21472 +▁within -8.21602 +▁October -8.2167 +▁best -8.21903 +A -8.22083 +▁We -8.22542 +▁school -8.22729 +▁La -8.23013 +▁using -8.24819 +▁June -8.24844 +▁ak -8.24882 +p -8.25074 +▁line -8.26031 +u -8.26119 +▁By -8.26223 +▁last -8.26363 +▁power -8.26517 +▁species -8.2677 +▁per -8.26952 +▁July -8.27477 +▁March -8.27782 +▁North -8.27957 +▁s -8.2832 +▁If -8.29036 +▁public -8.29222 +▁13 -8.29255 +▁30 -8.29617 +le -8.29625 +▁April -8.29632 +▁un -8.29646 +▁November -8.29913 +▁form -8.3042 +▁... -8.30505 +▁South -8.30538 +▁H -8.30656 +▁good -8.30995 +▁During -8.31293 +▁& -8.31336 +▁without -8.31343 +▁These -8.31351 +▁final -8.31376 +▁National -8.31478 +▁14 -8.31649 +▁No -8.31733 +▁important -8.32017 +able -8.3238 +▁N -8.3256 +), -8.32689 +▁J -8.32837 +▁third -8.33237 +▁get -8.33261 +▁St -8.33294 +▁character -8.33319 +▁become -8.33486 +▁main -8.33536 +▁next -8.33581 +▁included -8.33582 +▁few -8.33833 +▁near -8.33997 +▁major -8.34085 +▁] -8.34126 +▁18 -8.34382 +▁% -8.35384 +ity -8.35831 +▁support -8.35856 +▁University -8.36186 +▁local -8.36558 +▁One -8.36833 +▁An -8.36977 +▁December -8.3714 +C -8.3738 +▁led -8.37523 +▁side -8.37587 +▁January -8.3764 +▁role -8.3791 +▁death -8.38083 +▁right -8.38216 +▁book -8.38254 +▁play -8.38368 +▁wrote -8.38774 +h -8.38954 +ar -8.39139 +▁include -8.39476 +▁won -8.39489 +te -8.3987 +” -8.39905 +▁see -8.40069 +▁however -8.4024 +▁His -8.40404 +▁six -8.40547 +▁days -8.40683 +ve -8.4069 +▁point -8.40703 +▁order -8.40708 +▁need -8.41041 +▁described -8.4122 +▁development -8.41229 +B -8.41279 +▁played -8.41363 +▁body -8.41436 +▁2010 -8.43009 +z -8.43061 +▁again -8.4342 +▁vil -8.43737 +▁production -8.43767 +▁among -8.43847 +▁band -8.43973 +▁record -8.43982 +▁You -8.44012 +▁original -8.44098 +▁built -8.44269 +f -8.44313 +▁All -8.44491 +▁late -8.44542 +▁named -8.44546 +▁kòm -8.44583 +▁my -8.44639 +▁W -8.44939 +▁te -8.45004 +▁man -8.45061 +▁less -8.45084 +to -8.45495 +▁further -8.45799 +▁Le -8.45817 +▁non -8.45855 +ist -8.46386 +▁19 -8.46414 +▁Li -8.46784 +D -8.46789 +▁me -8.4683 +ia -8.46849 +▁top -8.47082 +▁German -8.4712 +ation -8.47142 +▁period -8.47217 +▁having -8.48074 +▁French -8.48256 +▁came -8.48306 +▁2011 -8.48393 +▁given -8.48454 +▁history -8.48623 +▁north -8.48949 +▁ship -8.48957 +▁100 -8.48981 +▁held -8.49002 +▁although -8.49185 +▁control -8.49224 +▁Istwa -8.49227 +" -8.49359 +▁2009 -8.49433 +ta -8.49756 +▁De -8.49756 +▁25 -8.4982 +▁English -8.49937 +ton -8.50088 +▁students -8.50165 +▁2008 -8.50375 +▁considered -8.50397 +▁example -8.5062 +▁But -8.50657 +▁story -8.50741 +▁February -8.51114 +▁great -8.51218 +▁country -8.51533 +▁video -8.51575 +▁members -8.51803 +ian -8.51879 +▁lead -8.51992 +▁result -8.52623 +ism -8.52664 +▁short -8.52785 +▁While -8.52854 +▁study -8.53151 +▁making -8.53681 +▁does -8.53832 +▁common -8.54098 +▁old -8.54391 +▁V -8.54569 +▁la -8.54762 +▁2012 -8.55548 +▁must -8.5558 +▁Although -8.55812 +ne -8.55912 +▁women -8.55977 +▁health -8.55986 +▁release -8.56142 +▁human -8.56157 +▁though -8.56189 +▁information -8.56246 +▁2007 -8.56271 +na -8.5634 +▁go -8.5642 +▁half -8.56907 +▁level -8.57185 +3 -8.57841 +▁research -8.58105 +▁land -8.58213 +▁south -8.58324 +▁air -8.58602 +▁games -8.58757 +▁West -8.58787 +▁continued -8.58851 +is -8.59064 +▁never -8.59403 +▁low -8.59483 +▁able -8.596 +▁every -8.59657 +▁England -8.59908 +▁similar -8.60094 +▁Re -8.60095 +ness -8.60534 +▁d -8.60654 +▁building -8.6067 +▁too -8.60863 +F -8.6097 +▁process -8.61049 +▁position -8.61071 +▁published -8.61414 +▁total -8.62012 +▁written -8.62191 +▁areas -8.6239 +▁change -8.6257 +▁match -8.62648 +▁head -8.62699 +il -8.62789 +▁company -8.62833 +ll -8.63193 +▁light -8.63201 +▁across -8.63578 +▁21 -8.63878 +▁City -8.64386 +▁class -8.64441 +▁age -8.64654 +▁former -8.64826 +ry -8.64859 +▁River -8.64987 +▁food -8.65058 +▁24 -8.65074 +▁little -8.65141 +▁case -8.65244 +▁data -8.65924 +▁away -8.65938 +▁service -8.6608 +▁various -8.66204 +▁us -8.66211 +▁According -8.6622 +▁version -8.66303 +▁II -8.6636 +▁Some -8.66438 +▁King -8.6648 +▁co -8.66583 +▁find -8.66631 +▁storm -8.66673 +1 -8.66748 +ch -8.67039 +▁developed -8.67371 +▁e -8.67431 +▁moved -8.67431 +▁times -8.67753 +▁America -8.67837 +▁produced -8.68061 +▁2013 -8.68075 +▁State -8.68111 +▁London -8.68479 +▁2006 -8.68657 +▁With -8.69104 +▁general -8.69158 +▁present -8.69203 +▁design -8.69595 +▁fire -8.69614 +▁run -8.69654 +▁full -8.69771 +▁attack -8.69913 +ment -8.70013 +▁know -8.70622 +▁went -8.70677 +la -8.70857 +ma -8.70893 +el -8.71267 +▁week -8.71674 +▁might -8.71814 +▁gave -8.71869 +▁lost -8.71921 +▁seen -8.72172 +▁Ayiti -8.72768 +▁And -8.72771 +▁created -8.73178 +▁What -8.73244 +son -8.73352 +▁months -8.73356 +▁epi -8.73386 +▁population -8.73493 +▁player -8.73668 +E -8.73717 +▁possible -8.73976 +▁better -8.74427 +▁white -8.7452 +▁together -8.74547 +nd -8.7455 +x -8.74698 +▁So -8.74979 +▁military -8.75071 +▁range -8.75228 +▁political -8.75235 +▁addition -8.75236 +▁town -8.75406 +▁house -8.75704 +ie -8.75833 +▁force -8.75882 +age -8.7593 +▁put -8.76083 +▁performance -8.76124 +id -8.76128 +▁black -8.76552 +▁50 -8.76592 +▁law -8.7668 +▁p -8.76746 +H -8.7681 +▁person -8.76904 +co -8.77523 +▁thought -8.77576 +▁father -8.77775 +▁east -8.77813 +▁22 -8.77834 +▁taken -8.77849 +▁l -8.77956 +▁national -8.78211 +▁himself -8.78294 +N -8.78343 +▁returned -8.78422 +▁project -8.78428 +▁forces -8.785 +▁Sa -8.78531 +▁child -8.78599 +▁social -8.78656 +it -8.78684 +▁available -8.78896 +▁career -8.78939 +▁Kiba -8.79026 +▁writing -8.79183 +▁live -8.79304 +▁reported -8.79448 +P -8.7973 +▁ki -8.79734 +▁west -8.80128 +▁2014 -8.8015 +V -8.80189 +de -8.80199 +.” -8.80385 +▁field -8.8054 +▁throughout -8.80542 +▁Man -8.80712 +ra -8.80818 +w -8.80947 +▁General -8.81101 +I -8.81117 +▁William -8.81153 +▁pre -8.81195 +▁Australia -8.8133 +M -8.81414 +▁once -8.81484 +▁free -8.81642 +▁site -8.81654 +▁working -8.81728 +▁2005 -8.8185 +▁come -8.81881 +▁James -8.81901 +▁Al -8.81992 +G -8.82004 +▁stated -8.82045 +▁recorded -8.82045 +da -8.82066 +▁least -8.82264 +um -8.8233 +▁died -8.82697 +▁God -8.82728 +▁provide -8.8293 +▁son -8.82937 +▁rather -8.82998 +▁hand -8.83176 +▁young -8.83241 +▁23 -8.83651 +▁return -8.84007 +▁c -8.84117 +▁start -8.84401 +▁energy -8.84627 +▁ten -8.84642 +▁track -8.84647 +▁night -8.84669 +▁others -8.84709 +▁al -8.84855 +▁previous -8.84965 +▁George -8.85158 +▁caused -8.8532 +ine -8.85355 +T -8.85512 +ive -8.85551 +▁Park -8.85668 +▁cause -8.85912 +▁sent -8.86026 +▁action -8.86054 +▁far -8.86164 +▁modern -8.86376 +ley -8.86965 +▁aircraft -8.87371 +▁40 -8.87445 +▁upon -8.87931 +▁close -8.88121 +▁damage -8.88158 +▁sea -8.88179 +▁title -8.8819 +com -8.88242 +et -8.88307 +▁open -8.88385 +▁either -8.88588 +▁ayisyen -8.88623 +▁type -8.88773 +ling -8.88828 +▁2000 -8.88851 +▁ships -8.88859 +land -8.88893 +▁remained -8.89124 +▁established -8.89208 +▁followed -8.89603 +▁Army -8.89753 +men -8.90272 +▁started -8.90296 +▁style -8.90579 +▁feet -8.90684 +▁ground -8.90702 +▁almost -8.90791 +me -8.90919 +ro -8.911 +▁2015 -8.9119 +▁Japanese -8.91428 +▁County -8.9148 +▁strong -8.91538 +▁San -8.91699 +▁give -8.91949 +▁post -8.92081 +▁club -8.92277 +▁X -8.92526 +▁popular -8.92654 +▁added -8.92685 +▁think -8.92685 +▁reached -8.92762 +▁average -8.92774 +▁felt -8.93026 +▁region -8.93034 +▁Co -8.9316 +▁ant -8.93209 +▁road -8.93234 +▁instead -8.93431 +W -8.93483 +▁28 -8.93511 +at -8.93518 +▁h -8.93591 +▁above -8.93613 +▁School -8.93742 +▁Dr -8.93773 +▁fact -8.93831 +▁eight -8.93867 +▁El -8.93895 +▁Division -8.93926 +▁performed -8.94084 +▁2004 -8.94132 +▁seven -8.94171 +ion -8.94181 +▁27 -8.94218 +▁success -8.94241 +! -8.94419 +ate -8.94502 +▁noted -8.9452 +▁member -8.94523 +▁points -8.94755 +▁miles -8.94763 +▁Street -8.94787 +▁enough -8.94834 +▁rest -8.95042 +▁front -8.95066 +▁usually -8.95165 +▁provided -8.95203 +▁win -8.95252 +▁ever -8.95299 +▁26 -8.95418 +▁features -8.95447 +▁percent -8.95478 +▁program -8.95628 +▁future -8.95663 +ary -8.95845 +▁served -8.95877 +▁blood -8.95885 +▁significant -8.96009 +▁characters -8.96064 +ur -8.96214 +▁car -8.96363 +é -8.96368 +▁That -8.96522 +▁killed -8.96524 +▁community -8.96534 +▁race -8.96567 +▁going -8.96617 +am -8.96632 +▁located -8.96716 +▁risk -8.96978 +▁David -8.9699 +▁East -8.97358 +▁lower -8.97472 +be -8.97547 +▁en -8.97573 +▁France -8.97806 +▁disease -8.97863 +ir -8.97891 +▁ft -8.97957 +▁means -8.97992 +▁behind -8.98065 +▁stage -8.98134 +K -8.9824 +▁announced -8.98249 +ized -8.98257 +▁battle -8.98295 +ous -8.98325 +the -8.98331 +▁Me -8.98398 +O -8.9846 +▁works -8.9896 +▁mi -8.99116 +▁love -8.99262 +▁songs -8.99423 +▁television -8.99452 +▁course -8.9946 +▁special -8.99508 +▁space -8.99516 +▁event -8.99924 +▁increased -9.0005 +▁don -9.00128 +▁saw -9.00155 +▁formed -9.00265 +▁League -9.00514 +▁Road -9.00567 +▁create -9.00734 +▁eventually -9.00757 +▁past -9.00795 +j -9.00839 +▁born -9.00939 +▁increase -9.00967 +▁mother -9.00977 +▁language -9.01034 +ty -9.01103 +▁Australian -9.01193 +▁pressure -9.01263 +▁especially -9.01303 +ca -9.01385 +▁House -9.01441 +▁European -9.01447 +▁real -9.01533 +▁campaign -9.01556 +▁natural -9.01604 +▁Vil -9.01636 +▁Ko -9.01818 +▁Be -9.01845 +as -9.01853 +▁leading -9.01875 +▁hours -9.01898 +▁evidence -9.01912 +▁want -9.01933 +▁| -9.01975 +▁Etazini -9.0199 +▁designed -9.02052 +▁material -9.02133 +▁decided -9.02209 +ge -9.02278 +▁experience -9.02431 +▁construction -9.02477 +less -9.02515 +▁Europe -9.02557 +▁generally -9.02714 +▁appeared -9.02842 +▁star -9.02898 +▁problems -9.02974 +▁likely -9.02977 +▁lane -9.03059 +▁mid -9.03394 +▁route -9.03437 +▁training -9.03451 +ter -9.035 +▁Michael -9.03616 +▁involved -9.03634 +▁look -9.03727 +▁tropical -9.03813 +▁term -9.04159 +▁2003 -9.04185 +▁Robert -9.04278 +rs -9.04352 +ner -9.04427 +▁towards -9.04536 +▁changes -9.0458 +▁From -9.04596 +▁events -9.04644 +▁brought -9.04681 +▁always -9.04768 +▁already -9.04959 +4 -9.04978 +▁players -9.0498 +▁sold -9.05087 +▁current -9.05164 +▁surface -9.05213 +▁something -9.0535 +▁higher -9.05436 +os -9.05635 +no -9.05668 +▁required -9.05771 +▁here -9.05792 +▁Black -9.05805 +▁move -9.05819 +▁according -9.05913 +▁weeks -9.06044 +ad -9.06067 +▁keep -9.06085 +▁things -9.06195 +▁mm -9.06203 +▁heavy -9.06529 +▁effects -9.06579 +▁29 -9.06761 +▁countries -9.06855 +▁taking -9.06937 +▁Her -9.07028 +▁completed -9.07205 +▁particularly -9.07387 +▁worked -9.07413 +ant -9.07545 +▁itself -9.07607 +▁Washington -9.07708 +▁Royal -9.07807 +▁idea -9.0792 +▁Air -9.08055 +▁list -9.08328 +do -9.08438 +▁command -9.08519 +▁soon -9.08661 +▁anti -9.08853 +▁allowed -9.09219 +▁business -9.09321 +▁et -9.09346 +5 -9.09355 +▁effect -9.09357 +▁First -9.09377 +▁cost -9.09417 +▁plan -9.09685 +▁turn -9.09693 +▁groups -9.09713 +▁art -9.09744 +▁outside -9.09807 +▁playing -9.09808 +▁party -9.09836 +▁size -9.09899 +▁! -9.10128 +▁treatment -9.10138 +▁individual -9.10201 +▁eta -9.10258 +▁placed -9.10436 +▁loss -9.10457 +ting -9.10498 +▁2001 -9.10517 +▁con -9.10616 +▁self -9.10809 +▁heart -9.10815 +— -9.11131 +di -9.11212 +▁Do -9.11213 +▁‘ -9.11233 +▁states -9.11251 +▁station -9.1126 +▁’ -9.11282 +▁India -9.11527 +▁whether -9.11555 +▁positive -9.11569 +▁conditions -9.11653 +▁interest -9.11723 +▁t -9.1177 +▁office -9.12168 +▁President -9.12245 +wa -9.1229 +▁red -9.12293 +▁says -9.12327 +▁goal -9.12675 +▁key -9.12765 +▁Most -9.12823 +,” -9.12849 +▁levels -9.12924 +▁opened -9.12929 +▁education -9.1296 +li -9.13048 +▁Paul -9.13091 +▁Other -9.13259 +▁wanted -9.13423 +▁pou -9.13493 +▁done -9.13511 +▁largest -9.13556 +▁Henry -9.13618 +▁care -9.13774 +▁money -9.13855 +den -9.13869 +ri -9.13914 +▁2002 -9.14528 +est -9.14548 +▁really -9.14569 +▁minutes -9.14622 +L -9.14641 +ul -9.1477 +▁science -9.14812 +▁originally -9.14925 +▁Many -9.14977 +▁month -9.14983 +▁relationship -9.14988 +▁sound -9.1503 +▁issue -9.15111 +▁believed -9.15185 +▁successful -9.15214 +▁sou -9.15262 +se -9.1547 +▁central -9.15491 +▁rock -9.15978 +▁hit -9.15979 +▁200 -9.15986 +ba -9.16083 +ent -9.16331 +ke -9.16337 +▁court -9.16357 +▁report -9.1638 +▁plant -9.16435 +▁met -9.16517 +▁earlier -9.16716 +▁International -9.16841 +▁moun -9.17125 +▁scene -9.17218 +▁living -9.17321 +▁test -9.17445 +▁Canada -9.17524 +▁say -9.17593 +▁related -9.1763 +▁themselves -9.17665 +▁certain -9.17755 +▁beginning -9.17799 +|| -9.17845 +▁Two -9.1803 +▁complete -9.18043 +▁view -9.18089 +ol -9.1811 +▁base -9.1819 +▁problem -9.18345 +▁island -9.18358 +▁international -9.18424 +▁Japan -9.1843 +▁director -9.18511 +▁California -9.18531 +▁wife -9.18634 +▁word -9.18643 +▁hard -9.18797 +▁structure -9.1883 +ha -9.1898 +▁Despite -9.19027 +▁army -9.19181 +▁parts -9.19206 +▁Thomas -9.19408 +ka -9.1942 +▁sometimes -9.19489 +▁tour -9.19543 +▁read -9.19652 +▁Charles -9.19653 +▁media -9.1968 +▁fourth -9.1973 +▁Sea -9.19738 +ted -9.19889 +▁lack -9.19909 +▁? -9.19912 +▁Red -9.19988 +▁lyen -9.20023 +▁response -9.20026 +lo -9.20123 +▁difficult -9.20219 +▁words -9.2037 +▁face -9.2043 +▁access -9.20436 +▁Act -9.20461 +▁guns -9.20465 +▁saying -9.20573 +▁Kèk -9.20624 +▁troops -9.20812 +▁referans -9.20881 +▁particular -9.20907 +▁highest -9.20997 +▁31 -9.21011 +▁economic -9.21034 +▁rights -9.21047 +▁section -9.21109 +go -9.21236 +▁500 -9.21279 +▁cut -9.21318 +▁told -9.21419 +rd -9.21439 +▁nature -9.21737 +▁whole -9.21743 +▁Con -9.21746 +▁Ayisyen -9.21827 +▁sub -9.21857 +▁today -9.21979 +▁elements -9.22193 +▁rate -9.22367 +▁opening -9.22473 +▁entire -9.22501 +▁associated -9.22527 +▁1996 -9.22536 +▁passed -9.22645 +▁pa -9.22769 +▁My -9.22817 +▁personal -9.22875 +▁longer -9.22996 +▁Indian -9.23024 +▁quickly -9.23039 +▁cover -9.23055 +▁Court -9.2308 +▁whose -9.23088 +▁below -9.23129 +▁shows -9.23241 +▁church -9.23304 +▁additional -9.23322 +▁Best -9.23461 +mo -9.2355 +▁movement -9.2357 +▁wide -9.23667 +line -9.23825 +▁joined -9.23888 +▁Great -9.24025 +▁oil -9.24331 +▁specific -9.24366 +▁Church -9.24578 +▁needed -9.24924 +▁replaced -9.25033 +▁Battle -9.25041 +▁center -9.25055 +▁Jewografi -9.25129 +▁amount -9.25137 +▁turned -9.25142 +▁review -9.25143 +▁featured -9.25204 +v -9.25207 +ler -9.25267 +▁Referans -9.25299 +▁relasyon -9.25509 +▁Union -9.25664 +▁source -9.25777 +▁southern -9.25795 +▁model -9.2582 +▁speed -9.25822 +▁Mo -9.25898 +▁Earth -9.25903 +▁decision -9.26067 +▁official -9.26124 +▁scored -9.26189 +▁forced -9.26311 +▁b -9.26372 +▁Relasyon -9.26409 +▁practice -9.2648 +▁larger -9.2672 +up -9.26751 +▁issues -9.26756 +▁Following -9.26976 +▁1990 -9.26986 +un -9.27068 +The -9.27086 +▁White -9.27237 +▁quality -9.27242 +▁results -9.27489 +▁cases -9.27511 +▁asked -9.27531 +▁How -9.27583 +ally -9.27665 +▁prevent -9.27703 +▁allow -9.27785 +ce -9.2791 +ated -9.27985 +▁runs -9.27986 +▁Z -9.28053 +▁makes -9.28184 +▁units -9.28185 +and -9.28381 +▁gun -9.28414 +▁Island -9.2849 +▁appearance -9.28571 +▁learning -9.28601 +▁length -9.28611 +▁summer -9.28658 +▁systems -9.28712 +ak -9.28738 +▁Mar -9.28788 +ization -9.28794 +▁novel -9.28829 +▁critics -9.28846 +▁potential -9.28975 +▁attempt -9.28996 +▁clear -9.28999 +▁northern -9.29076 +▁impact -9.29148 +▁Germany -9.29153 +▁High -9.29292 +▁services -9.29401 +▁shot -9.2947 +▁produce -9.29622 +▁finished -9.29709 +▁Aktè -9.2972 +▁act -9.2975 +▁Hall -9.29769 +▁dis -9.29844 +▁studio -9.29948 +▁ability -9.29963 +▁victory -9.3004 +lin -9.30101 +▁yet -9.3017 +▁limited -9.30329 +ium -9.30553 +▁influence -9.30706 +▁crew -9.30843 +▁terms -9.30947 +▁Pro -9.31057 +▁Peter -9.31098 +R -9.3119 +ya -9.3134 +J -9.31431 +▁previously -9.31559 +▁Star -9.31584 +▁hurricane -9.31589 +▁Richard -9.31599 +▁thus -9.3172 +▁lines -9.31811 +by -9.31886 +▁studies -9.31917 +▁physical -9.31932 +▁compared -9.3194 +▁spent -9.31983 +tic -9.31992 +▁Roman -9.32025 +▁probably -9.3204 +▁room -9.3207 +▁Center -9.3211 +ite -9.32143 +– -9.32154 +▁Go -9.32207 +▁initially -9.32219 +▁lot -9.3232 +▁Bo -9.32374 +▁activity -9.32421 +." -9.32423 +▁China -9.32484 +▁learn -9.3252 +ti -9.32627 +▁UK -9.32729 +▁College -9.32843 +▁date -9.32932 +▁industry -9.32981 +der -9.33006 +▁Edikasyon -9.33047 +▁Kingdom -9.33068 +▁Western -9.33123 +▁female -9.33132 +▁1999 -9.33139 +▁Since -9.33328 +▁shown -9.33353 +ni -9.33424 +▁poor -9.33473 +io -9.33516 +ga -9.33765 +▁river -9.33774 +▁round -9.33825 +▁ended -9.33887 +ard -9.33949 +▁why -9.33983 +▁Christian -9.34015 +▁Smith -9.34074 +▁cast -9.34189 +▁value -9.34203 +▁build -9.34218 +▁2016 -9.34248 +▁includes -9.34262 +▁cells -9.34349 +▁mph -9.34425 +ham -9.34436 +▁nearly -9.34516 +▁Lo -9.34549 +▁appear -9.34666 +ies -9.34758 +▁60 -9.34841 +▁introduced -9.35057 +ating -9.35059 +▁technology -9.3509 +ey -9.35165 +▁Company -9.35279 +▁Navy -9.35412 +▁Day -9.35619 +ber -9.35671 +▁develop -9.35799 +▁highway -9.35813 +▁actually -9.35924 +▁Music -9.35976 +▁despite -9.36075 +▁Lord -9.36182 +▁subject -9.36186 +▁coast -9.36229 +▁king -9.36248 +▁Brown -9.36319 +ina -9.36338 +▁whom -9.36392 +▁Bay -9.36401 +▁overall -9.3652 +▁chart -9.3659 +▁brain -9.3668 +▁carried -9.36708 +▁pro -9.36713 +▁regular -9.36831 +▁market -9.37112 +] -9.37173 +▁nine -9.37534 +▁ordered -9.3757 +▁1980 -9.3766 +▁medical -9.37673 +▁paper -9.37704 +▁commercial -9.37734 +▁attention -9.37795 +▁sense -9.37803 +▁failed -9.37901 +▁radio -9.37908 +▁estimated -9.37979 +ful -9.38005 +▁approach -9.38026 +▁growth -9.38104 +▁° -9.38131 +▁Jean -9.38162 +▁plants -9.38233 +▁feel -9.38274 +▁signed -9.3829 +▁Se -9.38379 +ish -9.38426 +▁animals -9.38486 +▁1970 -9.3858 +ier -9.3884 +▁activities -9.38922 +▁becoming -9.38979 +▁staff -9.39111 +▁Africa -9.39235 +▁woman -9.39324 +▁Chinese -9.39429 +▁professional -9.39429 +▁complex -9.39486 +▁Cup -9.39614 +▁cancer -9.3963 +▁1998 -9.39673 +▁police -9.39713 +▁Association -9.40012 +▁standard -9.40063 +▁Lake -9.401 +▁private -9.40134 +▁student -9.40283 +▁wind -9.40389 +▁Britain -9.40472 +▁remains -9.406 +▁environment -9.40675 +▁Los -9.40922 +▁score -9.41046 +▁president -9.41125 +▁leave -9.41224 +▁Don -9.41317 +va -9.41416 +im -9.41489 +▁forward -9.41506 +▁network -9.41674 +▁via -9.41705 +▁western -9.41739 +▁Ar -9.41762 +▁running -9.41848 +ah -9.4194 +▁Hill -9.42014 +▁primary -9.42118 +▁brother -9.42177 +▁author -9.42242 +▁praised -9.42288 +▁trade -9.42348 +▁pay -9.42429 +▁Another -9.42522 +▁Or -9.42528 +▁location -9.42604 +▁call -9.42618 +▁mass -9.42662 +▁continue -9.4274 +▁traditional -9.42764 +▁Soviet -9.42885 +▁weight -9.42972 +▁article -9.43157 +▁Times -9.43178 +▁directed -9.43191 +▁di -9.43269 +▁Spanish -9.43332 +▁variety -9.43426 +▁Texas -9.43431 +▁changed -9.43441 +▁types -9.43459 +▁kind -9.43504 +▁African -9.4361 +▁winds -9.43698 +▁meaning -9.43828 +▁critical -9.43886 +▁active -9.43996 +▁league -9.44081 +▁parents -9.44176 +▁Council -9.4429 +ac -9.44397 +▁mind -9.44451 +▁fall -9.44673 +out -9.44728 +▁knowledge -9.44757 +▁arrived -9.44798 +▁Un -9.44823 +▁claimed -9.44892 +con -9.4497 +è -9.45158 +▁cannot -9.45262 +▁takes -9.45406 +▁society -9.45421 +▁ex -9.45446 +▁suggested -9.45621 +▁£ -9.4566 +▁Na -9.45815 +▁direct -9.45888 +▁Award -9.46006 +▁greater -9.46164 +▁capital -9.46167 +▁cell -9.46193 +▁effective -9.46253 +▁recording -9.46275 +▁culture -9.46282 +▁NY -9.46282 +▁recent -9.46424 +▁fight -9.46424 +▁understand -9.46472 +▁90 -9.46584 +▁Force -9.46594 +▁musical -9.46645 +▁1997 -9.46647 +▁proposed -9.46742 +▁intended -9.46822 +▁election -9.46827 +▁Virginia -9.46839 +▁approximately -9.46843 +▁remaining -9.46896 +▁contains -9.469 +▁bridge -9.47013 +▁Du -9.47109 +▁reason -9.47194 +▁35 -9.47236 +▁matter -9.47271 +▁Love -9.47354 +▁helped -9.47407 +▁latter -9.47496 +▁Sun -9.47542 +▁ː -9.47563 +▁account -9.47575 +▁deep -9.47695 +▁feature -9.47825 +▁eastern -9.47865 +▁majority -9.4793 +sa -9.47961 +▁1960 -9.48023 +▁gold -9.48057 +▁reach -9.4814 +per -9.48145 +▁unit -9.48202 +▁focus -9.4825 +6 -9.48505 +▁got -9.48508 +▁supported -9.48655 +▁highly -9.48675 +▁leaving -9.48683 +▁status -9.48693 +▁directly -9.48713 +▁believe -9.4874 +▁true -9.48946 +▁inside -9.49006 +▁Russian -9.49109 +▁eye -9.49153 +▁discovered -9.49253 +▁immediately -9.49257 +▁share -9.49362 +sh -9.49468 +▁schools -9.49718 +▁content -9.50073 +▁follow -9.50096 +▁contact -9.50142 +▁mostly -9.50215 +▁comes -9.5037 +▁reviews -9.5037 +▁Grand -9.50451 +▁Mary -9.50465 +▁Department -9.50466 +▁Route -9.50513 +▁contract -9.5068 +▁skin -9.50725 +ot -9.50808 +▁smaller -9.50808 +▁Both -9.50833 +▁question -9.50905 +▁reduce -9.50963 +▁multiple -9.51006 +▁writer -9.51117 +▁magazine -9.51156 +▁voice -9.51159 +▁religious -9.51238 +▁expected -9.51248 +▁gas -9.51252 +field -9.51361 +▁books -9.51407 +▁entered -9.51501 +▁operations -9.51508 +▁80 -9.51538 +▁daughter -9.51584 +ship -9.51653 +mi -9.51753 +bo -9.51795 +▁initial -9.51903 +ki -9.51965 +▁condition -9.51977 +▁pwovens -9.51995 +▁stop -9.52054 +▁destroyed -9.52079 +▁simple -9.52096 +ko -9.52125 +ize -9.52167 +▁moving -9.52191 +▁improve -9.5226 +ster -9.52349 +U -9.52436 +▁necessary -9.525 +▁Mark -9.52583 +▁removed -9.52588 +▁needs -9.52594 +▁image -9.52701 +▁policy -9.52804 +ut -9.52867 +▁leader -9.52899 +▁prior -9.52939 +ana -9.53006 +▁football -9.53057 +▁debut -9.5309 +▁management -9.53131 +▁middle -9.53156 +▁depression -9.53268 +▁Canadian -9.53342 +▁Martin -9.53358 +▁method -9.53376 +ence -9.53414 +▁double -9.53573 +▁write -9.53774 +▁fleet -9.53791 +▁forms -9.53965 +▁appears -9.53967 +▁Game -9.54002 +▁legal -9.54057 +▁computer -9.54201 +▁appointed -9.54302 +▁friend -9.5436 +▁deal -9.54407 +▁companies -9.54426 +▁break -9.54481 +mer -9.54551 +▁Pacific -9.54565 +▁married -9.54614 +▁function -9.54772 +▁meeting -9.54807 +▁ways -9.54807 +▁Car -9.54807 +▁plans -9.54834 +▁situation -9.55126 +▁Chicago -9.55141 +▁numerous -9.55191 +▁products -9.55199 +▁pass -9.55231 +▁1995 -9.5525 +▁agreed -9.55277 +▁peyi -9.55289 +... -9.55305 +▁effort -9.55355 +▁climate -9.55368 +▁individuals -9.55462 +ek -9.55689 +▁Party -9.55756 +▁du -9.56011 +ial -9.56104 +▁male -9.56194 +▁big -9.56199 +▁doing -9.56249 +▁Ben -9.5629 +▁avoid -9.56293 +▁Edward -9.56306 +ance -9.56312 +▁analysis -9.56415 +▁lived -9.5643 +▁sources -9.56504 +pe -9.56522 +▁defeated -9.56545 +▁v -9.56579 +▁ball -9.56628 +▁numbers -9.56658 +▁village -9.56665 +▁stars -9.56673 +▁le -9.56738 +▁separate -9.56763 +min -9.56804 +▁buildings -9.56878 +▁hour -9.56932 +ja -9.5694 +▁responsible -9.57035 +au -9.57069 +▁Green -9.57152 +▁board -9.57206 +▁Second -9.57281 +▁green -9.57384 +▁Ka -9.57421 +pa -9.57484 +▁giving -9.57507 +▁offered -9.57577 +▁Queen -9.57703 +▁soldiers -9.5775 +▁letter -9.57758 +▁goals -9.57782 +▁financial -9.57809 +▁hold -9.57831 +▁pain -9.57858 +▁Ne -9.57932 +▁text -9.5797 +▁Because -9.57983 +▁referred -9.58057 +▁friends -9.58147 +▁captured -9.58275 +▁color -9.58286 +▁simply -9.58325 +vo -9.58349 +ran -9.58353 +▁Over -9.58383 +que -9.584 +▁Di -9.58404 +▁foot -9.58426 +les -9.5847 +▁reduced -9.58476 +▁theory -9.58514 +▁winning -9.58727 +▁Kominote -9.58771 +▁Central -9.58839 +▁efforts -9.59003 +▁extended -9.59109 +▁fish -9.59169 +▁Florida -9.59182 +▁ran -9.5944 +▁scale -9.59465 +▁metal -9.59466 +ville -9.59527 +▁division -9.59545 +▁i -9.59573 +ten -9.59596 +▁job -9.59669 +▁Johnson -9.59682 +ised -9.59831 +▁normal -9.59895 +▁provides -9.59903 +▁planned -9.59935 +▁thing -9.6005 +0 -9.60056 +▁symptoms -9.60077 +▁begin -9.60144 +▁raised -9.60162 +▁reading -9.60236 +▁occurred -9.60269 +▁45 -9.60371 +▁park -9.60373 +▁Can -9.60385 +▁temperature -9.60393 +▁upper -9.60466 +▁More -9.60485 +▁g -9.60653 +way -9.60666 +▁lives -9.60694 +▁mixed -9.60765 +▁1994 -9.60811 +Y -9.60858 +ists -9.60892 +▁300 -9.60943 +▁property -9.60994 +he -9.60998 +▁covered -9.61002 +▁resources -9.61003 +▁federal -9.61014 +▁cm -9.61089 +▁Old -9.61119 +▁Jackson -9.61154 +▁70 -9.61163 +▁patients -9.61219 +▁films -9.61228 +▁operation -9.61264 +▁Politik -9.61275 +ger -9.61352 +▁Ekonomi -9.61392 +ring -9.61396 +▁bring -9.6144 +▁cross -9.61613 +▁Y -9.61618 +▁protect -9.61744 +▁Jack -9.61765 +▁wall -9.61807 +▁Les -9.6181 +▁issued -9.61833 +▁direction -9.61844 +7 -9.61964 +ver -9.61979 +za -9.61988 +▁flight -9.61998 +▁fell -9.62039 +▁remain -9.6205 +▁plot -9.62074 +▁Po -9.62173 +▁therefore -9.62364 +," -9.62441 +▁Atlantic -9.6248 +▁Their -9.62527 +▁Italian -9.62648 +▁winter -9.6269 +▁finally -9.62718 +ck -9.6278 +á -9.62875 +▁Ca -9.62925 +( -9.62939 +▁script -9.62973 +▁lang -9.63039 +▁Ma -9.63045 +▁rule -9.63081 +▁growing -9.63097 +▁presence -9.63144 +▁concept -9.63147 +▁awarded -9.63161 +▁Ra -9.63185 +▁animal -9.63223 +▁collection -9.63241 +▁showed -9.63294 +ron -9.63308 +▁let -9.63332 +▁Congress -9.63338 +▁revealed -9.63434 +▁suffered -9.63482 +▁Group -9.63507 +▁dark -9.63593 +▁strength -9.63647 +▁meet -9.63706 +▁largely -9.63783 +wood -9.63898 +▁presented -9.63949 +▁fifth -9.63995 +▁scenes -9.64001 +▁figure -9.64008 +▁manager -9.64061 +▁Championship -9.64123 +▁uses -9.64217 +▁Later -9.64343 +▁distance -9.64407 +▁fuel -9.64466 +▁Club -9.64555 +ny -9.64822 +em -9.65007 +▁minute -9.65035 +▁Greek -9.65048 +10 -9.65119 +▁Institute -9.65202 +▁try -9.65247 +▁Big -9.65251 +▁visit -9.65304 +▁supply -9.6531 +▁defeat -9.65386 +▁dead -9.65458 +▁Of -9.65464 +▁global -9.65481 +▁damaged -9.65591 +▁TV -9.65648 +▁piece -9.65667 +mar -9.65676 +▁selected -9.65707 +▁tree -9.65739 +▁annual -9.65905 +▁ice -9.65915 +▁skills -9.66056 +▁Pe -9.66071 +ci -9.66119 +ford -9.66131 +▁spread -9.66175 +▁Society -9.66213 +▁attacks -9.66216 +▁Saint -9.66247 +X -9.66274 +▁college -9.66296 +ho -9.66305 +▁1992 -9.66397 +▁Tom -9.66467 +▁heat -9.66584 +ze -9.66634 +▁audience -9.66636 +▁powerful -9.6678 +▁Rock -9.66874 +▁press -9.66976 +▁Am -9.66988 +lan -9.67004 +▁Empire -9.67027 +▁Sir -9.6712 +▁questions -9.67189 +ise -9.67198 +▁completely -9.67216 +▁stories -9.67254 +▁unique -9.67282 +▁interview -9.67285 +one -9.67345 +▁pop -9.674 +▁copies -9.6743 +▁offer -9.67449 +▁officers -9.67493 +▁teams -9.67602 +▁launched -9.67602 +ye -9.6763 +▁Ro -9.67738 +▁trees -9.67764 +▁composed -9.67802 +▁relatively -9.6782 +▁tons -9.67847 +▁becomes -9.67847 +▁severe -9.67876 +▁conducted -9.67928 +led -9.68012 +▁square -9.68019 +▁1950 -9.6802 +▁resulting -9.6819 +▁Research -9.68257 +▁Frank -9.68342 +▁bar -9.68373 +▁purpose -9.68453 +▁Here -9.68504 +▁Mexico -9.68538 +▁minor -9.68565 +▁respectively -9.68574 +▁Cor -9.68673 +▁Ba -9.68688 +▁weather -9.68707 +| -9.6875 +▁port -9.6878 +▁III -9.68784 +▁genyen -9.68911 +▁observed -9.68967 +▁serious -9.69006 +▁birth -9.69026 +▁organization -9.69086 +▁occur -9.69119 +▁fans -9.69156 +ative -9.69166 +▁gen -9.69191 +▁peak -9.69197 +▁f -9.69241 +▁listed -9.69242 +▁closed -9.6954 +▁Time -9.69611 +▁bit -9.69654 +▁1993 -9.69718 +hi -9.69763 +▁singer -9.69767 +▁1991 -9.69831 +▁Lu -9.6997 +▁contrast -9.70003 +▁Anviwònman -9.70049 +▁Per -9.70058 +▁subsequently -9.70074 +▁ideas -9.70121 +▁looking -9.70126 +▁Health -9.70154 +▁Even -9.70261 +▁resulted -9.70364 +▁product -9.7038 +▁Devlòpman -9.7042 +▁website -9.7059 +▁morning -9.7065 +▁older -9.70659 +▁sure -9.70764 +▁online -9.70789 +▁Mr -9.70806 +▁unable -9.70817 +▁inspired -9.70818 +▁developing -9.70821 +▁32 -9.70961 +▁marriage -9.70966 +▁Film -9.7098 +▁understanding -9.71099 +▁sign -9.71207 +▁native -9.71251 +▁Pre -9.71283 +sen -9.71433 +▁basic -9.71578 +▁blue -9.71736 +ru -9.71792 +▁coming -9.71835 +▁Paris -9.71869 +▁mission -9.71881 +ker -9.71994 +▁perform -9.72004 +▁kept -9.7204 +ow -9.72095 +▁inter -9.72109 +▁billion -9.72139 +▁affected -9.72165 +▁materials -9.72221 +▁Year -9.72232 +▁producer -9.7225 +▁starting -9.72268 +▁workers -9.72306 +▁Science -9.72321 +▁artist -9.72433 +▁Da -9.72547 +▁broadcast -9.72602 +▁alone -9.7263 +▁typically -9.72672 +▁increasing -9.7269 +8 -9.72797 +▁negative -9.72806 +▁equipment -9.72911 +▁deyò -9.72915 +▁fighting -9.72987 +▁conflict -9.72996 +▁hands -9.73 +chi -9.73012 +▁Your -9.73021 +▁centre -9.73034 +▁Billboard -9.73118 +▁quite -9.73127 +▁grow -9.73153 +▁notes -9.73207 +▁era -9.73213 +▁identified -9.73253 +▁hair -9.73277 +▁competition -9.73311 +▁records -9.73334 +▁Lyen -9.73391 +▁sales -9.73446 +▁combat -9.73554 +▁elected -9.73564 +▁Minister -9.73644 +▁soil -9.73649 +▁Angeles -9.73649 +▁tried -9.73689 +▁Pa -9.73716 +▁Latin -9.73747 +▁assigned -9.73803 +▁independent -9.73814 +▁nation -9.73861 +20 -9.739 +▁factors -9.7394 +▁Joseph -9.73954 +▁names -9.73968 +▁security -9.74025 +▁toward -9.74036 +▁degree -9.74071 +▁Men -9.74103 +ai -9.74142 +▁+ -9.7424 +ov -9.74339 +▁serve -9.74365 +▁tracks -9.74377 +▁depi -9.74445 +▁k -9.74539 +▁Highway -9.74599 +▁n -9.74691 +▁Awards -9.74735 +▁basis -9.74752 +ius -9.74767 +▁Law -9.74816 +▁episodes -9.74904 +▁Also -9.7503 +▁begins -9.75056 +▁step -9.75151 +▁getting -9.75194 +▁dance -9.75194 +▁Like -9.75198 +▁families -9.75222 +▁machine -9.75255 +▁jewografi -9.75266 +▁allowing -9.75316 +▁actions -9.75326 +▁attempted -9.75344 +▁am -9.75375 +▁accepted -9.75401 +▁ensure -9.75441 +▁foreign -9.7546 +▁declared -9.75464 +▁mean -9.75482 +bi -9.75498 +ino -9.75536 +▁Squadron -9.75624 +▁75 -9.75626 +▁Each -9.75747 +▁ha -9.75788 +▁safety -9.75905 +▁causes -9.75923 +▁ancient -9.75927 +▁protection -9.75929 +▁trying -9.76007 +ex -9.76075 +▁officer -9.76122 +▁stay -9.76128 +tro -9.76138 +▁meant -9.76157 +▁daily -9.7627 +▁attacked -9.76274 +▁Bi -9.76314 +▁travel -9.76351 +▁nothing -9.7644 +▁continues -9.76492 +▁leaves -9.76519 +▁creating -9.76524 +▁Ha -9.76532 +▁Several -9.76649 +▁couple -9.76725 +▁Bill -9.76753 +ning -9.76876 +▁widely -9.76883 +▁engine -9.76885 +▁visual -9.76934 +▁cities -9.76953 +▁Louis -9.77022 +▁dry -9.77263 +▁easily -9.77343 +▁1940 -9.77343 +▁guitar -9.77378 +▁lyrics -9.77387 +▁nearby -9.77427 +house -9.77432 +▁pair -9.77435 +▁receive -9.77463 +▁constructed -9.77514 +▁slow -9.77559 +▁Life -9.77574 +▁portion -9.77616 +▁path -9.77673 +▁researchers -9.77728 +▁traffic -9.77799 +▁spring -9.77804 +▁primarily -9.77851 +▁o -9.77863 +▁Not -9.77872 +▁failure -9.7797 +▁Zealand -9.78 +▁ranked -9.78041 +▁sister -9.78112 +mp -9.78196 +▁camp -9.78233 +▁causing -9.78284 +▁Sam -9.78352 +▁inches -9.78368 +▁En -9.78464 +▁Before -9.78554 +▁surrounding -9.78571 +▁charge -9.7862 +▁twenty -9.78641 +▁beyond -9.78651 +▁border -9.78667 +▁Michigan -9.78729 +▁People -9.78732 +▁managed -9.78778 +▁cold -9.78809 +▁environmental -9.78819 +▁refused -9.78823 +▁Corps -9.78864 +▁page -9.78898 +▁Fort -9.7891 +▁stone -9.78932 +ang -9.78943 +▁Super -9.791 +▁Stone -9.79157 +▁programs -9.79207 +▁Ho -9.79253 +▁Art -9.79282 +▁determine -9.79304 +▁Museum -9.79374 +ding -9.7938 +▁Lee -9.79386 +▁Wales -9.79431 +▁birds -9.79432 +ure -9.79571 +▁fast -9.7958 +om -9.79607 +▁Final -9.79713 +▁fully -9.79778 +ile -9.79788 +▁earned -9.7982 +▁Moun -9.79832 +▁Scott -9.79891 +ji -9.79954 +▁Tu -9.79955 +ig -9.80143 +▁Port -9.80147 +▁methods -9.80293 +▁edition -9.80299 +▁mainly -9.80315 +▁advance -9.80335 +▁Van -9.80367 +▁box -9.80473 +▁chief -9.80526 +che -9.80534 +▁trial -9.8055 +▁train -9.80565 +▁combined -9.80595 +▁marked -9.80746 +ping -9.8079 +▁Su -9.80791 +▁Service -9.8095 +▁onto -9.8097 +▁(19 -9.81157 +▁ago -9.81158 +▁famous -9.8117 +▁allows -9.81211 +_ -9.81287 +▁scientific -9.81332 +tu -9.81455 +dy -9.81494 +tor -9.81559 +▁alternative -9.81559 +▁Three -9.81566 +▁commander -9.81606 +▁extra -9.81621 +▁Bridge -9.81635 +▁1930 -9.81744 +▁slightly -9.81772 +▁recently -9.81776 +▁yards -9.81813 +▁bad -9.81909 +▁Kiben -9.81913 +▁background -9.81932 +▁fevry -9.81944 +▁capacity -9.82046 +▁Test -9.82097 +▁stand -9.82099 +▁someone -9.82122 +▁historical -9.8213 +▁screen -9.82139 +▁divided -9.82139 +▁paid -9.82143 +▁maximum -9.82145 +op -9.82154 +ung -9.82157 +▁Americans -9.82158 +vi -9.82175 +▁reference -9.82209 +▁Q -9.82253 +▁movie -9.8229 +▁Mac -9.82295 +▁speech -9.82334 +▁Committee -9.82584 +fe -9.82625 +▁save -9.82677 +po -9.8268 +▁Si -9.82693 +▁cultural -9.82765 +gi -9.82845 +izing -9.82882 +▁setting -9.82914 +▁easy -9.82967 +ap -9.83042 +▁diet -9.83402 +ik -9.8341 +jo -9.83438 +▁search -9.83624 +time -9.83628 +▁injury -9.83734 +▁choice -9.83885 +▁civil -9.83952 +▁Tour -9.83992 +▁equal -9.8404 +▁Chris -9.84071 +we -9.84256 +▁Southern -9.84278 +gen -9.84443 +ward -9.84507 +▁ending -9.84558 +▁Under -9.84604 +▁leaders -9.84681 +▁commonly -9.84681 +▁Once -9.84785 +▁greatest -9.84838 +lic -9.84871 +▁commented -9.84963 +▁Government -9.85018 +▁400 -9.85103 +▁iron -9.8532 +tin -9.85325 +▁Te -9.85361 +▁enemy -9.85461 +▁tell -9.85481 +▁Home -9.85607 +tre -9.85614 +▁1989 -9.8562 +▁carbon -9.85629 +▁Ver -9.85758 +all -9.85779 +▁Long -9.85874 +▁shape -9.85888 +▁rise -9.85917 +▁agreement -9.86045 +▁Post -9.86126 +▁founded -9.86141 +oc -9.86199 +▁transport -9.86223 +▁Team -9.86282 +▁Sch -9.86283 +:// -9.86297 +▁frequently -9.86333 +▁33 -9.86351 +▁gives -9.86368 +▁00 -9.86394 +▁Press -9.86419 +▁houses -9.86456 +▁floor -9.86597 +▁Hot -9.86609 +ft -9.8672 +▁teaching -9.86727 +▁anything -9.8677 +ities -9.86812 +▁Oxford -9.86814 +▁Scotland -9.86824 +▁Jones -9.86831 +▁attended -9.86832 +▁opportunity -9.86835 +▁require -9.86868 +▁r -9.86905 +▁Line -9.86941 +▁Bar -9.87054 +▁explained -9.87082 +▁hospital -9.87116 +▁ultimately -9.87122 +▁concert -9.87132 +▁currently -9.87163 +▁Jewish -9.87257 +▁seems -9.87346 +▁Creek -9.87431 +▁drive -9.87442 +▁positions -9.8748 +▁capture -9.87548 +▁contain -9.87566 +▁providing -9.87581 +▁didn -9.87603 +▁flow -9.87632 +▁fruit -9.87716 +▁reports -9.87749 +▁DVD -9.87756 +port -9.87816 +▁formation -9.87871 +▁claim -9.8801 +▁Ireland -9.88069 +▁scientists -9.88107 +red -9.88195 +▁Fox -9.88199 +▁wing -9.88393 +▁Har -9.88487 +▁wood -9.88568 +je -9.88601 +▁planet -9.8864 +▁digital -9.88748 +ric -9.88752 +▁dropped -9.88908 +▁consider -9.88942 +▁earth -9.88994 +▁Nan -9.89014 +▁matches -9.89037 +▁leg -9.89082 +▁sides -9.89108 +▁escape -9.89179 +▁officials -9.89179 +▁Ni -9.89215 +ab -9.89243 +ped -9.89271 +▁residents -9.89295 +▁communities -9.89296 +▁mouth -9.89366 +▁economy -9.89538 +▁eyes -9.89558 +9 -9.89612 +▁theme -9.89643 +tan -9.89686 +▁yard -9.89686 +ors -9.89698 +▁peace -9.89821 +▁Academy -9.89851 +berg -9.89871 +▁Now -9.89918 +▁price -9.89921 +king -9.89969 +▁bodies -9.89977 +▁join -9.90014 +▁concluded -9.9002 +▁captain -9.90034 +▁thick -9.90071 +of -9.90378 +▁expressed -9.90395 +▁Italy -9.90396 +▁award -9.90403 +▁Prince -9.90433 +▁Cross -9.9053 +▁difference -9.90576 +▁importance -9.90627 +▁sex -9.90635 +▁existing -9.9065 +▁Hu -9.90661 +▁Water -9.90662 +▁aid -9.90745 +well -9.90749 +▁combination -9.90789 +▁Little -9.90818 +ology -9.9092 +▁humans -9.90937 +30 -9.91036 +▁forest -9.91056 +ries -9.91108 +▁advanced -9.9117 +ari -9.91255 +▁authority -9.91343 +▁Is -9.91427 +▁suggests -9.91514 +kin -9.91533 +▁horse -9.91591 +▁reasons -9.91818 +▁36 -9.91827 +▁stating -9.91859 +ita -9.91888 +▁creation -9.91889 +ong -9.91897 +▁Daniel -9.91986 +▁Sha -9.92023 +▁Carolina -9.92093 +▁except -9.92111 +▁heard -9.92209 +▁quarter -9.92287 +▁district -9.92293 +▁tax -9.92327 +▁master -9.92379 +▁Boston -9.92392 +▁behavior -9.92401 +▁1942 -9.92416 +▁Jesus -9.92417 +▁pieces -9.92433 +▁goes -9.92484 +ud -9.9249 +▁adult -9.92561 +▁pilot -9.9264 +▁Republic -9.9265 +▁doesn -9.92699 +▁transferred -9.92707 +▁sought -9.9278 +▁healthy -9.92782 +▁code -9.92832 +▁influenced -9.92852 +ib -9.92888 +lon -9.92903 +▁Civil -9.92955 +▁multi -9.93006 +▁Cha -9.93014 +▁drug -9.93034 +▁Jo -9.93088 +▁writers -9.93138 +▁owned -9.93163 +ez -9.93273 +▁places -9.93301 +▁gain -9.93314 +▁Young -9.93316 +▁bill -9.93353 +▁History -9.93385 +▁chance -9.9343 +▁attempts -9.93447 +▁metres -9.93476 +▁Catholic -9.93516 +▁table -9.93543 +▁sites -9.93579 +▁Northern -9.9363 +▁secret -9.93658 +▁husband -9.93698 +▁Though -9.93721 +▁Stephen -9.93766 +▁rules -9.93831 +tra -9.93882 +tz -9.93912 +▁rich -9.93979 +▁defense -9.94155 +▁Major -9.94296 +▁Asia -9.94297 +zi -9.94327 +▁Ocean -9.94357 +lu -9.94363 +▁religion -9.94521 +ven -9.94538 +▁maintain -9.94555 +▁represented -9.94598 +istic -9.94656 +▁1988 -9.94707 +ell -9.94823 +▁System -9.94873 +▁everything -9.94991 +▁acid -9.94998 +▁county -9.95015 +▁Chief -9.95152 +▁Ten -9.95171 +side -9.95181 +▁defined -9.95213 +▁Wood -9.95266 +▁37 -9.95267 +▁confirmed -9.9531 +od -9.95413 +▁perhaps -9.95418 +▁ring -9.95422 +▁advantage -9.95461 +▁Ta -9.95538 +▁target -9.9554 +▁Valley -9.95542 +▁invasion -9.95559 +▁Jim -9.9561 +don -9.95613 +▁acting -9.95658 +▁sequence -9.95703 +▁1987 -9.95714 +▁coach -9.95726 +▁Infantry -9.95733 +▁projects -9.95784 +▁proved -9.95792 +▁gained -9.95825 +▁essential -9.95913 +tter -9.9595 +▁subsequent -9.96012 +ach -9.96044 +▁moment -9.96105 +▁Part -9.96114 +▁bank -9.96119 +▁improved -9.96121 +▁worldwide -9.96137 +▁mentioned -9.9614 +▁sleep -9.96142 +▁determined -9.96168 +▁threat -9.9617 +pp -9.96186 +▁calling -9.96187 +ou -9.96188 +qui -9.9622 +▁images -9.9625 +▁tells -9.96274 +▁height -9.96337 +han -9.96362 +▁passing -9.96397 +▁senior -9.96435 +▁fine -9.96505 +mon -9.96523 +50 -9.96563 +▁motion -9.96581 +▁measure -9.9661 +▁rare -9.96656 +▁benefits -9.9667 +▁artists -9.96783 +▁governor -9.96865 +▁eat -9.96869 +▁nuclear -9.96871 +▁royal -9.96885 +▁cyclone -9.96893 +bu -9.97004 +▁1920 -9.97187 +▁Tri -9.97283 +▁castle -9.97318 +▁sun -9.97339 +▁ahead -9.97387 +ini -9.97401 +▁claims -9.97402 +use -9.97418 +▁significantly -9.97432 +▁Captain -9.97507 +▁plays -9.97531 +▁selling -9.9754 +▁applied -9.97556 +▁broke -9.97568 +▁fan -9.97593 +▁reaching -9.97643 +▁core -9.97668 +▁Chi -9.97675 +▁check -9.97771 +▁stress -9.97775 +▁mental -9.97779 +▁Our -9.97792 +▁add -9.97815 +▁safe -9.97821 +▁carry -9.97858 +▁resistance -9.97871 +▁1944 -9.97882 +▁figures -9.97883 +▁Middle -9.97888 +gan -9.97936 +▁designated -9.97959 +▁1986 -9.97983 +▁sexual -9.98022 +▁pale -9.98049 +head -9.9809 +▁draw -9.98125 +▁150 -9.98141 +▁industrial -9.98168 +▁Battalion -9.98171 +▁respect -9.9821 +ney -9.98219 +▁urban -9.98265 +▁follows -9.98289 +▁models -9.98291 +▁38 -9.98293 +▁Ex -9.9831 +yl -9.9843 +▁twice -9.98518 +ng -9.98583 +fa -9.98636 +▁walls -9.9868 +▁Madonna -9.98867 +▁exist -9.98939 +▁dog -9.98954 +ea -9.98965 +▁planning -9.98983 +▁1945 -9.98996 +▁struck -9.99001 +▁promote -9.99106 +▁enter -9.99129 +▁Fim -9.99183 +▁chemical -9.99336 +▁bi -9.99401 +▁Records -9.99442 +▁34 -9.99523 +12 -9.99536 +▁contemporary -9.99541 +▁volume -9.99576 +▁Williams -9.99647 +▁territory -9.9965 +▁university -9.99682 +25 -9.99732 +▁1941 -9.9979 +▁counter -9.99798 +▁heavily -9.99823 +▁Dutch -9.99853 +▁alongside -9.99939 +▁ca -9.99982 +▁unknown -10.001 +▁prominent -10.001 +fer -10.0012 +▁kat -10.0027 +▁rating -10.003 +▁costs -10.0034 +▁element -10.0041 +▁weapons -10.005 +van -10.0064 +▁chosen -10.0064 +▁answer -10.0067 +▁titled -10.0072 +▁# -10.0074 +▁adopted -10.0093 +▁Dis -10.0094 +ren -10.0105 +▁Parliament -10.0105 +▁laws -10.0108 +▁Brigade -10.0111 +▁host -10.0113 +▁memory -10.0114 +▁District -10.0124 +▁objects -10.0131 +▁Ke -10.0149 +▁news -10.0153 +▁Gold -10.0154 +▁draft -10.0162 +▁regions -10.0162 +▁Light -10.0162 +▁experienced -10.0165 +▁Good -10.0165 +▁viewers -10.0166 +▁Victoria -10.0166 +▁demand -10.0168 +▁vote -10.017 +11 -10.0179 +▁note -10.018 +▁structures -10.0192 +▁BBC -10.0201 +▁grew -10.0202 +▁Show -10.0205 +▁featuring -10.0208 +▁object -10.021 +uk -10.0213 +▁maintained -10.0219 +▁Christ -10.0221 +▁contained -10.0222 +▁Gu -10.0223 +▁occurs -10.0225 +▁inch -10.0241 +15 -10.0244 +▁laid -10.0248 +▁murder -10.025 +net -10.0252 +▁connected -10.0256 +▁selection -10.026 +▁literature -10.026 +▁actor -10.0262 +▁teeth -10.0267 +off -10.0271 +▁Regiment -10.0275 +▁arms -10.0278 +▁Its -10.0279 +▁challenge -10.028 +▁possibly -10.0283 +▁administration -10.0283 +▁Will -10.0284 +▁mis -10.0284 +ther -10.0289 +▁progress -10.0292 +▁wave -10.0297 +▁killing -10.0312 +▁standing -10.0315 +▁controlled -10.0316 +ible -10.0322 +▁executive -10.0325 +▁protein -10.0325 +▁News -10.0326 +▁Commission -10.0327 +▁Live -10.0334 +▁prepared -10.0335 +▁Christmas -10.0335 +▁Par -10.034 +▁Blue -10.0348 +ane -10.0348 +▁scoring -10.0349 +▁peaked -10.0352 +▁tradition -10.0359 +▁reaction -10.036 +▁BC -10.0365 +▁learned -10.0374 +▁picture -10.0377 +▁distribution -10.0378 +▁phase -10.0379 +▁techniques -10.0379 +ide -10.0394 +▁Harrison -10.0396 +▁wild -10.0397 +du -10.0398 +▁achieved -10.0398 +▁nor -10.0402 +▁argued -10.0402 +▁sports -10.0406 +▁Series -10.0407 +▁income -10.0409 +▁etc -10.0409 +▁budget -10.0409 +work -10.0411 +▁naval -10.0412 +▁committee -10.0413 +tal -10.0414 +▁brief -10.0415 +▁See -10.0422 +▁address -10.0422 +▁fun -10.0423 +▁Ohio -10.0426 +▁Spain -10.0427 +▁serving -10.0433 +▁Early -10.0435 +▁leadership -10.0437 +▁Russia -10.0447 +▁Manchester -10.045 +▁statement -10.0453 +▁1943 -10.0454 +▁adults -10.0456 +▁talk -10.0457 +ator -10.046 +▁promoted -10.0476 +▁genetic -10.048 +▁49 -10.0483 +▁exchange -10.0485 +▁Public -10.0487 +▁split -10.0493 +▁extensive -10.0496 +▁Eastern -10.0502 +▁expansion -10.0506 +▁silver -10.0508 +▁Today -10.051 +▁visited -10.0512 +▁hot -10.052 +hu -10.0523 +▁About -10.0523 +▁centuries -10.0524 +▁extremely -10.0534 +▁edge -10.0538 +ns -10.0541 +▁benefit -10.0543 +▁performances -10.0547 +▁describes -10.0548 +town -10.0556 +▁super -10.0557 +▁Avenue -10.0558 +▁containing -10.0566 +▁faced -10.0571 +▁affect -10.0575 +▁items -10.0576 +uff -10.0579 +gu -10.058 +▁kill -10.0582 +▁boat -10.0588 +▁properties -10.0591 +nt -10.0606 +▁rele -10.0608 +▁Who -10.0609 +▁focused -10.0614 +▁academic -10.0622 +▁Irish -10.0626 +▁Just -10.0627 +▁Gar -10.0627 +▁Che -10.063 +▁patient -10.063 +▁opposed -10.0636 +▁violence -10.0638 +▁railway -10.0642 +▁tournament -10.0644 +▁del -10.0646 +▁rain -10.0649 +ub -10.0655 +▁transfer -10.0659 +▁Field -10.066 +▁block -10.0662 +ee -10.0664 +▁shortly -10.0666 +▁successfully -10.0685 +▁details -10.069 +▁exercise -10.0699 +▁existence -10.07 +▁Journal -10.0707 +▁1985 -10.0717 +her -10.0719 +▁Among -10.0732 +▁sixth -10.0732 +▁regarding -10.0733 +▁Hurricane -10.0735 +▁officially -10.074 +▁broken -10.0741 +▁display -10.0743 +▁kg -10.0749 +▁suggest -10.0749 +▁brown -10.0753 +▁Dan -10.0757 +▁1984 -10.0758 +▁doctor -10.0764 +▁Games -10.0765 +▁finding -10.0772 +". -10.0773 +▁offers -10.0774 +▁feed -10.0778 +ability -10.0781 +▁generation -10.0782 +▁Elizabeth -10.0783 +▁Col -10.0787 +▁seem -10.079 +▁Due -10.079 +▁Board -10.0793 +▁bottom -10.0797 +▁Power -10.0802 +▁task -10.0803 +▁Office -10.0804 +▁Governor -10.0804 +▁parallel -10.0813 +▁entirely -10.0816 +if -10.082 +▁fit -10.0826 +19 -10.0827 +▁solar -10.0829 +▁differences -10.0833 +ff -10.0834 +▁flag -10.0838 +▁electric -10.0841 +▁choose -10.0846 +▁vehicles -10.0848 +ct -10.0849 +▁teacher -10.085 +▁shared -10.0851 +▁testing -10.0853 +▁facilities -10.0854 +▁everyone -10.0857 +cher -10.0858 +▁Ti -10.086 +▁holding -10.086 +▁organized -10.0864 +▁Let -10.0878 +▁authorities -10.0878 +▁rainfall -10.0881 +▁drama -10.0884 +▁yellow -10.0885 +▁Alexander -10.0892 +▁actual -10.0893 +▁flat -10.0895 +▁pattern -10.0898 +ken -10.0899 +bar -10.09 +▁rapidly -10.0901 +▁message -10.0902 +▁values -10.0902 +▁protected -10.0904 +▁launch -10.0904 +▁newly -10.0905 +▁perfect -10.0907 +▁Far -10.0914 +vin -10.0914 +▁device -10.0916 +▁Ge -10.0917 +▁Fa -10.0918 +▁newspaper -10.0918 +▁horses -10.0922 +▁homes -10.0929 +▁Top -10.0933 +ix -10.0933 +▁Land -10.0935 +▁solution -10.0935 +day -10.0937 +▁closely -10.0937 +▁Del -10.0939 +▁manner -10.094 +▁returning -10.094 +▁cent -10.0941 +▁sort -10.0945 +▁Tech -10.0947 +▁* -10.0949 +▁introduction -10.0949 +▁Ed -10.0956 +▁useful -10.0956 +In -10.0963 +▁rates -10.0965 +▁vocals -10.0972 +▁appropriate -10.0979 +▁application -10.0984 +▁Andrew -10.0989 +80 -10.0991 +16 -10.0992 +cha -10.0995 +▁franse -10.0995 +▁Ad -10.0997 +▁recognized -10.0999 +ble -10.1002 +▁watch -10.1005 +ev -10.1008 +▁artillery -10.1009 +▁steel -10.101 +▁consists -10.1011 +▁waste -10.1012 +▁Out -10.1014 +▁measures -10.1019 +▁fellow -10.1022 +▁represent -10.1026 +▁innings -10.103 +▁stock -10.103 +▁sp -10.1031 +▁decades -10.1032 +▁consisted -10.1034 +▁Pi -10.1035 +ata -10.1037 +▁vision -10.1043 +▁chose -10.1049 +▁clean -10.1052 +▁seat -10.1053 +40 -10.1054 +▁Pennsylvania -10.1054 +▁thousands -10.1056 +based -10.1059 +▁thinking -10.1067 +shi -10.1069 +wi -10.1072 +▁IMDb -10.1073 +▁Wilson -10.1077 +▁street -10.1079 +▁straight -10.1081 +org -10.1081 +ging -10.1087 +▁recommended -10.1091 +▁store -10.1091 +▁historian -10.1093 +▁domestic -10.1094 +▁opposition -10.1098 +ose -10.1102 +▁Upon -10.1104 +▁buy -10.1109 +▁communication -10.1112 +▁Duke -10.1114 +▁achieve -10.1121 +▁nominated -10.1121 +▁Pan -10.1127 +▁Columbia -10.1129 +mann -10.1138 +▁Four -10.1139 +ani -10.1143 +▁Book -10.1146 +▁conference -10.1146 +▁65 -10.1148 +▁48 -10.1149 +cy -10.115 +▁context -10.1151 +▁Ab -10.116 +▁collected -10.1169 +▁losing -10.1171 +▁hope -10.118 +▁Fleet -10.1182 +▁Thus -10.1185 +▁raise -10.1202 +▁Up -10.1208 +▁internal -10.1212 +▁Ga -10.1214 +▁roof -10.1215 +▁dedicated -10.1221 +▁ka -10.1221 +▁600 -10.1224 +▁freedom -10.1226 +▁regarded -10.1226 +▁fired -10.1228 +▁1968 -10.1234 +▁Entertainment -10.1243 +▁herself -10.1247 +▁Ku -10.1248 +▁Taylor -10.1253 +▁55 -10.1265 +▁Bond -10.127 +▁cap -10.1278 +▁link -10.128 +▁connection -10.1281 +▁Jersey -10.1282 +▁Only -10.1282 +▁exposure -10.1286 +-19 -10.1291 +▁incident -10.1299 +▁operating -10.1304 +▁knew -10.1304 +▁stations -10.1304 +▁Polish -10.1304 +▁passes -10.1305 +▁operated -10.1308 +▁label -10.1309 +▁DNA -10.1312 +▁1983 -10.1313 +▁micro -10.132 +▁aspects -10.1321 +▁flying -10.1326 +22 -10.1327 +▁trip -10.1328 +▁w -10.1333 +▁identify -10.1336 +▁Women -10.1348 +▁debate -10.135 +▁showing -10.1354 +▁council -10.1357 +▁branch -10.1357 +▁remove -10.1358 +▁Zèv -10.136 +▁fim -10.1361 +▁1982 -10.1361 +▁girl -10.1364 +▁increasingly -10.1364 +▁bird -10.1367 +▁Song -10.137 +▁Operation -10.1372 +▁younger -10.1373 +med -10.1374 +í -10.1377 +▁menm -10.1378 +▁x -10.1385 +▁tests -10.1388 +▁kids -10.1405 +▁1979 -10.1412 +▁standards -10.1412 +▁factor -10.1413 +▁expedition -10.1414 +▁Mu -10.1418 +ery -10.1419 +ola -10.1422 +▁Bre -10.1424 +▁assault -10.143 +▁secondary -10.143 +▁offensive -10.1432 +▁hundred -10.1444 +▁turns -10.1445 +▁granted -10.1449 +▁feeling -10.1453 +▁Cambridge -10.1455 +▁Bank -10.1455 +▁accept -10.1455 +fi -10.1456 +▁tower -10.146 +▁Wall -10.146 +▁vi -10.1463 +▁infection -10.1463 +▁Senate -10.1471 +▁Ri -10.1471 +▁versions -10.148 +▁rear -10.1484 +▁steam -10.1495 +▁Bu -10.1495 +iz -10.1497 +▁1967 -10.1501 +▁Castle -10.1502 +▁semi -10.1504 +▁else -10.1506 +▁opinion -10.1514 +▁depth -10.1515 +▁Scottish -10.1517 +▁reality -10.1518 +▁ocean -10.1518 +▁abandoned -10.1521 +▁solid -10.1522 +▁Human -10.153 +▁Mon -10.1531 +eg -10.1534 +ants -10.1534 +▁Doctor -10.1536 +▁Project -10.1537 +isation -10.1539 +▁guest -10.1541 +▁Ya -10.1543 +▁39 -10.1548 +▁garden -10.1553 +▁Education -10.1555 +▁letters -10.1557 +car -10.1559 +▁MD -10.1566 +our -10.1571 +ett -10.1573 +▁wounded -10.158 +▁supporting -10.158 +▁helps -10.1589 +▁Space -10.16 +▁coal -10.1608 +▁Georgia -10.1614 +▁crossing -10.1615 +▁purchase -10.1617 +▁Instead -10.1618 +ps -10.1619 +▁caught -10.1626 +▁soundtrack -10.1631 +▁journey -10.1634 +tion -10.1645 +▁interested -10.1647 +▁reign -10.1648 +▁Joe -10.1652 +▁adding -10.1653 +▁ready -10.1653 +▁warm -10.1654 +▁64 -10.1655 +▁worth -10.166 +▁atmosphere -10.166 +ians -10.1662 +▁concerns -10.1663 +▁2017 -10.1664 +▁software -10.1667 +Z -10.1668 +▁huge -10.1675 +▁disc -10.1682 +▁replace -10.1686 +▁fiction -10.1686 +▁classes -10.169 +▁acquired -10.1695 +▁instance -10.1698 +▁van -10.17 +ura -10.1705 +▁ta -10.1706 +▁armed -10.1715 +▁expanded -10.1717 +▁Ja -10.1721 +water -10.1725 +▁platform -10.1726 +▁decline -10.1729 +▁intensity -10.1729 +back -10.1729 +▁Point -10.1738 +▁calls -10.1739 +ep -10.1742 +▁1972 -10.1744 +▁criticized -10.1747 +▁sugar -10.1748 +▁Han -10.1762 +▁transition -10.1763 +▁distinct -10.1764 +▁specifically -10.1769 +▁42 -10.1771 +▁fought -10.178 +▁Shi -10.1781 +▁locations -10.1782 +▁citizens -10.1789 +▁Mike -10.179 +▁interchange -10.1792 +▁47 -10.1806 +▁requires -10.1809 +▁narrow -10.181 +▁Festival -10.1812 +▁vocal -10.1813 +▁participated -10.1814 +▁1969 -10.1815 +val -10.1816 +▁Francisco -10.1818 +q -10.1818 +▁finish -10.1822 +▁Ju -10.1825 +▁41 -10.1833 +pt -10.1833 +▁survey -10.1837 +▁studied -10.1857 +▁teachers -10.1863 +▁Mel -10.1863 +▁mile -10.1865 +▁receiving -10.1866 +▁Homer -10.1867 +▁Wa -10.1867 +▁criticism -10.1868 +▁session -10.1875 +▁Bob -10.1893 +▁balance -10.1903 +gar -10.1914 +▁fear -10.192 +▁spot -10.1922 +▁Director -10.1922 +▁secure -10.1926 +▁producers -10.1926 +▁Meanwhile -10.1932 +▁farm -10.1935 +▁Harry -10.1939 +▁drawn -10.1939 +▁beat -10.1942 +▁shall -10.1943 +▁debuted -10.1945 +▁roads -10.1946 +▁decade -10.1949 +▁treated -10.195 +▁1971 -10.1952 +▁des -10.1958 +▁establish -10.1963 +▁museum -10.1966 +▁contributed -10.1966 +▁prison -10.1971 +▁die -10.1972 +▁fresh -10.1973 +▁1964 -10.1974 +▁1975 -10.1974 +▁cycle -10.1977 +▁grade -10.1985 +▁Cal -10.199 +mate -10.1992 +▁consecutive -10.1995 +▁tools -10.1998 +▁format -10.1999 +▁tail -10.2008 +▁wrong -10.2008 +bel -10.201 +▁landing -10.201 +▁1973 -10.2011 +▁1976 -10.2015 +ris -10.2017 +▁deck -10.2019 +▁origin -10.2022 +▁Rose -10.2026 +▁poem -10.2026 +▁1974 -10.2028 +▁Then -10.2028 +▁Arthur -10.2031 +▁painting -10.2034 +▁producing -10.204 +▁Allied -10.2046 +▁Va -10.2053 +▁publication -10.2055 +si -10.2058 +▁domèn -10.206 +▁interesting -10.2062 +21 -10.2062 +14 -10.207 +▁engaged -10.2073 +let -10.2074 +▁arrival -10.2074 +▁glass -10.2075 +▁bio -10.2076 +▁seconds -10.2077 +art -10.2078 +mat -10.208 +▁electronic -10.2086 +▁Admiral -10.2087 +▁aired -10.2092 +ological -10.2092 +▁1981 -10.2093 +unt -10.2096 +▁Islands -10.2098 +▁Football -10.2101 +▁approved -10.2102 +▁Night -10.2103 +▁Israel -10.2106 +▁Jews -10.2107 +▁capable -10.2113 +▁camera -10.2114 +▁1939 -10.2116 +▁battery -10.2117 +▁layer -10.2117 +ette -10.2117 +▁northeast -10.2123 +ara -10.2125 +▁effectively -10.2128 +▁UN -10.2129 +my -10.213 +ified -10.213 +▁identity -10.2131 +▁championship -10.2142 +▁parties -10.2147 +▁rejected -10.2152 +▁rural -10.2156 +▁Philadelphia -10.2159 +▁Bell -10.2162 +▁1965 -10.2164 +▁Secretary -10.2169 +▁trans -10.217 +▁Mi -10.2171 +▁Children -10.2173 +▁Republican -10.2174 +▁cr -10.2177 +▁correct -10.2179 +▁wear -10.2184 +ification -10.2188 +▁twelve -10.2192 +70 -10.2193 +▁desire -10.2194 +▁Walter -10.2196 +▁Egypt -10.2203 +▁firm -10.2209 +▁Coast -10.221 +▁brand -10.2213 +ec -10.2228 +13 -10.2241 +▁fat -10.2242 +▁ideal -10.2243 +▁typical -10.2243 +▁professor -10.2246 +▁Town -10.2251 +ica -10.2251 +▁44 -10.2256 +▁composition -10.226 +▁appeal -10.2261 +▁actors -10.2263 +pi -10.2271 +▁End -10.2275 +old -10.2277 +▁tend -10.2286 +▁Development -10.2287 +▁employed -10.2288 +▁ask -10.2302 +aj -10.2308 +▁proper -10.2312 +can -10.2312 +▁filled -10.2314 +▁Special -10.2315 +▁limit -10.2316 +▁medicine -10.2318 +und -10.2319 +▁genus -10.2322 +▁hearing -10.2323 +ay -10.2323 +▁examples -10.2327 +ned -10.2328 +▁mountain -10.2328 +▁virus -10.2331 +▁hall -10.2331 +▁1966 -10.2332 +▁performing -10.2334 +▁Prime -10.2339 +▁sets -10.2344 +▁retire -10.2351 +▁Gade -10.2353 +▁anyone -10.2353 +▁Sal -10.2354 +▁drop -10.2355 +tes -10.2357 +▁orders -10.2358 +▁critic -10.2363 +Q -10.2363 +▁essay -10.2364 +▁Ch -10.2365 +▁Free -10.2369 +▁conduct -10.2372 +▁broad -10.2378 +▁relative -10.2378 +stone -10.2378 +▁Grant -10.2383 +nes -10.2383 +▁pick -10.2383 +▁request -10.2386 +▁practices -10.2392 +▁views -10.2394 +▁Lewis -10.2396 +▁strike -10.2399 +▁driving -10.24 +▁accompanied -10.2401 +▁purchased -10.2404 +▁islands -10.2406 +▁1914 -10.2411 +▁appearances -10.2413 +▁Why -10.2416 +▁credit -10.2419 +▁Way -10.242 +▁aktivite -10.2422 +ably -10.2424 +▁poll -10.2429 +▁remember -10.2431 +▁intelligence -10.2432 +▁43 -10.2435 +▁briefly -10.2436 +▁map -10.2441 +ade -10.2446 +ok -10.2446 +▁obtained -10.2446 +▁mo -10.2449 +ations -10.2452 +▁occupied -10.2458 +▁hear -10.247 +▁gross -10.2477 +▁Gulf -10.2479 +▁processes -10.2484 +ue -10.2488 +▁Conference -10.2495 +▁truth -10.2495 +▁Vi -10.2499 +▁moral -10.2501 +▁technique -10.251 +▁Mc -10.2512 +qu -10.2513 +ò -10.2513 +ans -10.2514 +▁52 -10.2514 +▁labor -10.2516 +▁roles -10.2518 +▁joint -10.252 +▁viewed -10.2522 +ria -10.2523 +▁Bra -10.2523 +▁• -10.2528 +▁drugs -10.2538 +▁Ken -10.2541 +▁CD -10.2542 +ray -10.2548 +▁1978 -10.2553 +▁devices -10.2553 +▁signs -10.2554 +sha -10.2554 +▁Plan -10.2558 +▁roughly -10.2563 +▁motor -10.2563 +▁principal -10.2565 +▁print -10.2566 +▁SS -10.257 +▁squadron -10.2577 +▁agent -10.2582 +▁sell -10.2582 +▁strategy -10.2584 +▁stages -10.2589 +▁pi -10.2594 +▁youth -10.2596 +▁mode -10.2596 +▁technical -10.2598 +▁Age -10.2599 +▁populations -10.2607 +▁retired -10.2612 +▁Fi -10.2612 +▁explain -10.2613 +▁concerned -10.2614 +▁responsibility -10.2617 +pre -10.2623 +▁vehicle -10.2628 +end -10.263 +pro -10.2636 +▁lo -10.2639 +▁turning -10.2643 +▁missing -10.2646 +▁Supreme -10.2657 +▁Korean -10.2659 +▁walk -10.266 +▁Miller -10.2666 +▁Order -10.2673 +ath -10.2675 +▁46 -10.2676 +like -10.2677 +▁boy -10.2684 +▁par -10.2688 +▁CO -10.2688 +pen -10.2689 +ph -10.269 +▁storyline -10.2692 +▁emotional -10.2693 +▁supplies -10.2697 +▁Studios -10.2701 +so -10.2708 +▁Fantasy -10.2715 +▁experiences -10.2716 +sky -10.2718 +▁crime -10.2721 +▁equivalent -10.2723 +▁Kar -10.2726 +▁kilometres -10.2728 +▁si -10.2732 +▁fields -10.2734 +▁weak -10.2735 +▁Forest -10.2738 +har -10.2738 +▁guide -10.2741 +▁regional -10.2745 +▁temperatures -10.2746 +▁Davis -10.2757 +▁diseases -10.276 +▁infantry -10.2762 +▁authors -10.2763 +▁800 -10.2764 +sch -10.2764 +▁Jr -10.2764 +▁Anderson -10.2765 +▁soul -10.2767 +▁losses -10.2776 +▁Boy -10.278 +▁fi -10.2781 +▁ends -10.2782 +▁singing -10.2782 +▁cars -10.2785 +ō -10.279 +iv -10.2795 +▁Massachusetts -10.28 +▁baby -10.2802 +▁-- -10.2804 +▁Arab -10.2804 +▁eating -10.2806 +▁ill -10.2807 +▁defence -10.281 +▁flooding -10.2815 +▁organizations -10.2816 +▁concern -10.282 +▁zone -10.2825 +▁honor -10.2825 +yan -10.2829 +ER -10.2835 +▁Railway -10.2843 +▁extension -10.2848 +▁speak -10.2854 +▁rapid -10.2855 +▁perspective -10.2857 +▁send -10.2858 +▁signal -10.2859 +▁headquarters -10.2859 +▁Bur -10.2861 +ical -10.2866 +▁partner -10.2868 +▁permanent -10.2882 +▁treat -10.2889 +▁northwest -10.2897 +▁suit -10.2899 +ign -10.2899 +▁web -10.2901 +light -10.2909 +▁Between -10.2916 +▁indicated -10.2916 +▁carrying -10.2917 +▁extreme -10.2922 +▁policies -10.2923 +▁editor -10.2929 +▁otherwise -10.2929 +▁commissioned -10.2935 +▁Ottoman -10.2938 +ions -10.2943 +ens -10.2945 +▁constant -10.2949 +▁reform -10.295 +▁defensive -10.2956 +▁independence -10.2958 +▁massive -10.2961 +▁load -10.2962 +▁finds -10.2962 +mm -10.2965 +▁Roberto -10.2973 +▁dangerous -10.2974 +▁rive -10.2976 +▁1918 -10.2977 +▁applications -10.2978 +▁Rome -10.2981 +▁Ve -10.2982 +▁entrance -10.2983 +▁Cu -10.2985 +▁describe -10.2986 +▁patterns -10.299 +▁1977 -10.2991 +▁foods -10.2991 +▁earliest -10.2992 +▁gradually -10.2995 +▁von -10.2998 +▁relief -10.3006 +▁linked -10.3009 +▁seventh -10.3013 +▁rail -10.3015 +▁slowly -10.3026 +▁Jan -10.303 +mb -10.3031 +▁shooting -10.3032 +gue -10.3035 +▁Moon -10.3041 +▁Fire -10.3053 +▁scheduled -10.3053 +▁fly -10.3055 +▁phone -10.3057 +▁acts -10.3061 +▁Review -10.3066 +▁exposed -10.3066 +▁hip -10.3071 +more -10.3071 +▁emergency -10.3072 +▁comic -10.3073 +▁Tropical -10.3077 +▁spend -10.3089 +▁Ray -10.309 +ving -10.3093 +▁entry -10.3094 +▁Emperor -10.3094 +▁regularly -10.3095 +▁derived -10.3096 +60 -10.3099 +▁mounted -10.3099 +▁ceremony -10.3102 +▁piano -10.3113 +▁assistant -10.3114 +▁survive -10.3115 +▁changing -10.3115 +▁formal -10.3122 +▁Sunday -10.3125 +▁intersection -10.3126 +▁opposite -10.3132 +án -10.3133 +illa -10.3134 +▁IV -10.3135 +▁Ban -10.3137 +▁notable -10.314 +ice -10.314 +▁investigation -10.3145 +bury -10.3146 +▁strip -10.3152 +▁y -10.3159 +▁characteristics -10.3159 +▁powers -10.3162 +▁vessels -10.3162 +▁union -10.3164 +▁Mad -10.3166 +▁Lincoln -10.3166 +▁personnel -10.3172 +▁Square -10.3175 +▁possibility -10.3181 +▁settlement -10.3181 +▁torpedo -10.3185 +90 -10.3186 +▁bacteria -10.3192 +▁Vo -10.3195 +▁Ross -10.3197 +▁steps -10.32 +▁120 -10.32 +▁arm -10.32 +▁lose -10.3203 +▁buried -10.3207 +▁rose -10.3208 +▁battalion -10.3209 +▁salt -10.3219 +▁filmed -10.3219 +▁Mount -10.3222 +▁Key -10.3223 +▁ISBN -10.3223 +ase -10.3225 +▁seek -10.3226 +▁Gen -10.3229 +▁option -10.323 +▁evening -10.3233 +▁gwo -10.3234 +▁tank -10.3235 +▁Mal -10.3236 +▁shaped -10.3239 +ano -10.324 +▁kèk -10.3243 +▁coastal -10.3245 +▁51 -10.3252 +▁passage -10.3253 +ral -10.3254 +▁lay -10.3259 +▁delivered -10.3272 +▁suffering -10.3275 +▁converted -10.3275 +▁eggs -10.328 +▁Lady -10.3281 +▁politics -10.3283 +▁filming -10.3284 +▁el -10.3287 +17 -10.329 +▁oxygen -10.3294 +▁estate -10.3298 +▁speaking -10.3298 +▁assessment -10.3303 +▁Justice -10.3306 +▁Steve -10.3315 +ü -10.3324 +▁Singapore -10.3324 +▁aware -10.3329 +▁deaths -10.333 +▁functions -10.3337 +▁department -10.3345 +▁taught -10.3348 +▁chain -10.3349 +cal -10.3355 +▁em -10.3357 +▁Chart -10.3358 +▁Olympic -10.3363 +hr -10.3366 +▁Kentucky -10.3366 +▁acres -10.3367 +▁boats -10.3367 +▁assistance -10.3367 +▁Simon -10.3369 +▁hotel -10.3372 +▁1963 -10.3375 +tle -10.3384 +▁da -10.3389 +▁funds -10.339 +▁2018 -10.3391 +▁enjoyed -10.3398 +▁Carl -10.3401 +▁snow -10.3406 +▁faith -10.3406 +▁campus -10.3406 +▁heads -10.3413 +▁attached -10.3415 +▁discovery -10.3415 +▁comedy -10.3422 +▁Fritz -10.3425 +▁popularity -10.3429 +ged -10.344 +▁users -10.3441 +▁recognition -10.3442 +▁solo -10.3443 +▁fè -10.3444 +▁1917 -10.3445 +▁visible -10.3447 +▁relations -10.3448 +▁installed -10.3451 +▁cited -10.3452 +▁reputation -10.3454 +▁1915 -10.3458 +▁soft -10.3458 +▁Cape -10.3461 +▁indicate -10.3464 +18 -10.3465 +▁crowd -10.3465 +▁Za -10.3467 +▁Station -10.3478 +▁Son -10.3478 +gg -10.3482 +ada -10.3485 +board -10.3487 +▁Liverpool -10.3487 +▁1916 -10.3492 +▁Democratic -10.3493 +▁educational -10.3494 +▁bone -10.3495 +▁Brian -10.35 +▁Val -10.3501 +24 -10.3503 +▁extent -10.3507 +▁95 -10.3518 +▁breeding -10.3519 +▁clearly -10.3527 +% -10.353 +ski -10.3531 +ates -10.3533 +▁Earl -10.3538 +▁stopped -10.3545 +▁circuit -10.3547 +fo -10.355 +▁disorder -10.3557 +▁250 -10.3565 +▁sounds -10.3566 +We -10.3572 +▁injured -10.3573 +uck -10.3578 +▁Daily -10.358 +wo -10.3584 +▁involving -10.3586 +▁Are -10.359 +▁franchise -10.3592 +▁Carey -10.3598 +▁relationships -10.3599 +▁Head -10.3602 +▁funding -10.3604 +▁looked -10.3605 +▁owner -10.3606 +uc -10.3609 +▁lap -10.361 +▁widespread -10.3614 +form -10.3615 +term -10.3616 +▁starts -10.3617 +▁increases -10.3618 +▁Gi -10.362 +▁Matt -10.3621 +▁Nations -10.3624 +▁establishment -10.363 +▁Additionally -10.363 +▁Arm -10.3631 +▁destroy -10.3634 +▁Vietnam -10.3636 +▁brigade -10.3636 +▁Emmanuel -10.3638 +ual -10.364 +▁1948 -10.364 +▁kingdom -10.3642 +▁meat -10.3643 +▁shell -10.3644 +▁criminal -10.3647 +▁helping -10.3648 +▁detailed -10.3649 +▁1962 -10.365 +▁injuries -10.3654 +ious -10.3656 +▁Foundation -10.3658 +▁Revolution -10.3665 +▁door -10.3665 +▁symbol -10.3665 +▁Lieutenant -10.367 +▁reduction -10.367 +▁promotion -10.3672 +▁fill -10.3682 +▁tool -10.3684 +▁Sound -10.3684 +▁meters -10.3693 +zo -10.3697 +▁engineering -10.37 +▁therapy -10.3702 +▁Clark -10.371 +▁classic -10.3712 +▁1946 -10.3712 +▁SR -10.3713 +bb -10.3716 +▁Storm -10.3718 +▁kò -10.3718 +▁seasons -10.3719 +▁candidate -10.3725 +aire -10.3725 +▁sections -10.3726 +▁declined -10.3741 +▁greatly -10.3745 +▁chapter -10.3746 +▁storage -10.3755 +▁Ant -10.3755 +▁committed -10.3756 +len -10.3757 +23 -10.3767 +▁tri -10.3767 +▁duty -10.3767 +▁user -10.3773 +▁ma -10.3786 +▁considerable -10.3791 +▁Marine -10.3797 +▁alcohol -10.3798 +▁Back -10.3801 +▁seed -10.3803 +27 -10.3806 +▁discussed -10.3808 +▁casualties -10.3811 +▁favorite -10.3813 +▁difficulty -10.3818 +▁landscape -10.3822 +▁replacement -10.3827 +▁girls -10.3827 +▁components -10.383 +cul -10.3833 +▁sector -10.3834 +▁colour -10.3835 +▁opportunities -10.3838 +▁interests -10.384 +nic -10.3842 +▁Oregon -10.3842 +▁advice -10.3846 +▁themes -10.385 +tis -10.3852 +ments -10.3857 +▁lands -10.386 +▁mark -10.3861 +▁Tim -10.3864 +▁sik -10.3869 +ight -10.3874 +▁leads -10.3874 +▁Albert -10.388 +▁rated -10.3884 +▁guard -10.3886 +▁tissue -10.3888 +▁temple -10.389 +▁library -10.3895 +▁85 -10.3898 +▁Sp -10.3902 += -10.3904 +▁keeping -10.392 +▁Pierre -10.3921 +▁universe -10.3922 +▁sustained -10.3927 +▁assist -10.3928 +▁association -10.3931 +▁favor -10.3932 +▁hired -10.3935 +▁threatened -10.3935 +▁Open -10.3937 +▁crisis -10.394 +▁discussion -10.3948 +▁fair -10.3948 +over -10.3951 +▁surgery -10.3953 +▁doubt -10.3956 +www -10.3963 +▁happened -10.3963 +▁quick -10.3964 +▁requirements -10.3968 +▁argument -10.397 +▁Summer -10.397 +▁Poland -10.397 +▁dat -10.397 +▁Radio -10.3975 +▁southeast -10.398 +▁Library -10.398 +rie -10.3984 +▁spirit -10.3985 +▁evolution -10.3989 +ory -10.3991 +dan -10.3994 +▁Last -10.3996 +▁destruction -10.3998 +ox -10.3998 +▁architecture -10.4 +▁degrees -10.4005 +▁cat -10.4005 +▁lb -10.4007 +ux -10.4008 +▁Adam -10.4008 +▁spiritual -10.4013 +▁Disney -10.4015 +ks -10.4016 +▁males -10.402 +▁opera -10.4021 +▁Nintendo -10.4021 +▁prepare -10.4025 +▁hundreds -10.4033 +▁Robaina -10.4036 +▁1961 -10.4041 +> -10.4047 +▁succeeded -10.4051 +▁Francis -10.4052 +▁inner -10.4052 +▁narrative -10.4053 +▁corner -10.4054 +par -10.4055 +▁sand -10.4058 +▁Federal -10.4058 +▁brothers -10.4064 +▁sample -10.4071 +▁Popilasyon -10.4073 +▁writes -10.4074 +▁immediate -10.4078 +▁strongly -10.4088 +ag -10.409 +▁Hollywood -10.4092 +▁Command -10.4096 +▁bought -10.4096 +▁drew -10.4098 +▁reserve -10.4101 +ula -10.4103 +▁titles -10.4103 +▁refers -10.4108 +▁Bart -10.411 +▁AD -10.4112 +▁stands -10.4114 +▁proposal -10.4119 +▁entitled -10.4119 +cc -10.412 +low -10.412 +nan -10.4121 +ida -10.4122 +▁habitat -10.4123 +▁Holy -10.4124 +▁Maria -10.4126 +▁Roger -10.4129 +ram -10.4131 +▁arranged -10.4132 +▁Anne -10.4133 +▁neither -10.4134 +▁movements -10.4135 +.) -10.4139 +▁Mars -10.414 +▁creative -10.4146 +▁liquid -10.4149 +▁gets -10.4149 +▁tall -10.4149 +▁Norway -10.4151 +▁depending -10.4151 +▁trouble -10.4151 +▁southwest -10.4159 +▁watched -10.4163 +▁grand -10.4171 +▁seeing -10.4175 +▁imp -10.4179 +▁1. -10.418 +45 -10.4188 +▁Tout -10.4189 +sk -10.4191 +▁lake -10.4191 +▁contribute -10.4193 +▁minimum -10.4199 +▁prove -10.4202 +▁trains -10.4203 +▁responded -10.4205 +▁fèt -10.4206 +▁charged -10.4208 +▁Maryland -10.4209 +▁headed -10.4212 +▁survived -10.4213 +▁disaster -10.4214 +▁exactly -10.4217 +▁shoot -10.4224 +▁Ru -10.4226 +▁piti -10.4227 +ó -10.4229 +▁purposes -10.4234 +▁conclusion -10.4236 +▁designs -10.4237 +▁beautiful -10.4239 +▁outbreak -10.4241 +▁journal -10.4244 +▁consumption -10.4245 +▁outer -10.4249 +▁belief -10.4256 +▁oldest -10.4257 +▁honour -10.4258 +asyon -10.426 +▁electricity -10.4263 +▁bringing -10.4264 +▁ruled -10.4264 +ella -10.4268 +▁Eric -10.427 +tte -10.4273 +air -10.4279 +▁unusual -10.4282 +▁cricket -10.4282 +▁fer -10.4286 +▁timoun -10.4287 +▁waters -10.4287 +▁Internet -10.4288 +▁grown -10.4289 +▁54 -10.4289 +ick -10.4298 +▁accounts -10.4299 +▁stream -10.43 +▁televizyon -10.4304 +▁expression -10.4305 +▁bomb -10.4312 +▁Pat -10.4316 +▁Patrick -10.4319 +ju -10.4321 +▁generated -10.4324 +▁copy -10.4325 +▁card -10.4338 +for -10.4349 +▁Pop -10.435 +row -10.435 +mes -10.4354 +▁medium -10.4355 +▁employees -10.4357 +▁stable -10.436 +▁po -10.436 +▁accident -10.4365 +▁valley -10.4369 +▁Th -10.4371 +▁Colonel -10.4375 +▁thin -10.4376 +▁dezyèm -10.4379 +▁document -10.4382 +▁warning -10.4383 +▁singles -10.4386 +▁Arts -10.4386 +▁HMS -10.4388 +▁USA -10.439 +▁file -10.4391 +▁challenges -10.4394 +▁biggest -10.4398 +▁definition -10.4399 +▁reducing -10.44 +▁entering -10.4404 +▁gone -10.4406 +▁mu -10.4412 +▁options -10.4416 +26 -10.4416 +▁hill -10.4417 +▁Moore -10.4417 +IS -10.4418 +ef -10.4422 +hl -10.4427 +28 -10.4427 +▁Imperial -10.4428 +▁Max -10.4429 +ku -10.4433 +▁Video -10.4434 +▁im -10.4435 +▁justice -10.4435 +▁females -10.4437 +▁PlayStation -10.4437 +▁childhood -10.4437 +▁Tra -10.444 +▁Sante -10.4441 +▁Such -10.4442 +▁operate -10.4443 +▁Inter -10.4445 +▁seemed -10.4448 +▁literary -10.4449 +▁participate -10.4461 +▁albums -10.4463 +▁53 -10.4465 +▁1938 -10.4465 +ese -10.4467 +▁Indiana -10.4467 +▁circulation -10.4467 +▁illness -10.4468 +▁1956 -10.4469 +▁Dar -10.4472 +▁Bowl -10.4474 +▁pe -10.4474 +mas -10.4475 +▁parent -10.4476 +▁Mor -10.4477 +▁http -10.4478 +▁settled -10.4484 +▁Mexican -10.4485 +ces -10.4487 +▁flu -10.4494 +▁FA -10.4494 +sion -10.4495 +▁enjoy -10.4496 +▁engines -10.4498 +▁foundation -10.45 +▁behaviour -10.4506 +▁normally -10.4508 +35 -10.4509 +▁approached -10.4509 +▁closer -10.4513 +▁sum -10.4516 +▁inspiration -10.4523 +▁poly -10.4524 +▁agricultural -10.4524 +▁intense -10.4526 +▁nonm -10.4526 +era -10.4527 +▁Use -10.4527 +▁attend -10.453 +▁Jay -10.4532 +▁renamed -10.4534 +▁thousand -10.4536 +ill -10.4541 +▁prisoners -10.4544 +▁Network -10.4546 +▁Anti -10.4549 +ome -10.455 +▁window -10.4551 +▁bear -10.4554 +▁Unlike -10.4558 +▁exit -10.456 +▁familiar -10.4569 +▁Douglas -10.457 +tern -10.4572 +▁Constitution -10.4572 +▁Asian -10.4574 +▁bound -10.4575 +▁classification -10.4576 +▁plastic -10.4581 +▁retained -10.4587 +war -10.4589 +▁download -10.4593 +ction -10.4593 +▁experiment -10.4593 +▁institutions -10.4594 +▁measured -10.4596 +▁Social -10.4596 +▁Fair -10.4596 +▁awards -10.4603 +▁interior -10.4606 +▁absence -10.4607 +▁apply -10.4608 +▁bed -10.4611 +▁Hospital -10.4611 +▁driven -10.4616 +▁facility -10.4617 +▁genre -10.462 +▁somewhat -10.4621 +▁apart -10.4627 +▁Com -10.4629 +yn -10.463 +▁equipped -10.463 +▁adapted -10.4631 +matic -10.4631 +▁none -10.4631 +▁Cap -10.4633 +▁trust -10.4633 +▁Sydney -10.4636 +▁Ram -10.4637 +▁òganizasyon -10.4637 +▁Prior -10.4639 +▁Golden -10.464 +▁2004. -10.464 +▁segment -10.4641 +▁giant -10.4642 +75 -10.4648 +▁debt -10.465 +▁commission -10.4656 +▁breed -10.4656 +▁56 -10.4657 +▁1958 -10.4664 +▁charts -10.4664 +br -10.4667 +▁wearing -10.4667 +▁languages -10.4668 +▁Dark -10.467 +▁sight -10.4674 +izin -10.4675 +▁weakened -10.4675 +▁resolution -10.4677 +▁Illinois -10.4677 +▁frequent -10.4678 +▁consisting -10.4685 +oid -10.4686 +▁happen -10.4692 +▁spoke -10.4696 +▁discuss -10.4697 +▁offering -10.4697 +▁assumed -10.4697 +▁tanks -10.4698 +▁moon -10.4702 +66 -10.4703 +▁Band -10.4703 +▁dates -10.4705 +▁sufficient -10.4709 +86 -10.471 +▁lasted -10.4711 +▁Touris -10.4711 +▁duties -10.4712 +cho -10.4718 +▁trained -10.472 +▁1959 -10.4722 +▁net -10.4724 +▁Marie -10.4726 +▁Mountain -10.4727 +hal -10.4727 +▁Espò -10.4728 +▁Longchamp -10.4732 +▁legislation -10.4733 +▁Santa -10.4733 +▁spin -10.4733 +▁happy -10.4734 +▁Within -10.4734 +▁prey -10.4738 +▁bass -10.4744 +▁700 -10.4744 +▁photo -10.4749 +▁ko -10.475 +▁1957 -10.4753 +▁NHL -10.4755 +fu -10.4756 +▁Alan -10.4758 +▁category -10.4759 +65 -10.4761 +vis -10.4764 +▁lies -10.4764 +▁fashion -10.4764 +▁electrical -10.4772 +▁cool -10.4772 +▁theatre -10.4775 +ture -10.4775 +eau -10.478 +▁output -10.4781 +▁1947 -10.4784 +07 -10.4789 +▁radyo -10.479 +▁maintenance -10.4793 +▁sivil -10.4796 +▁Fer -10.4796 +▁1919 -10.4797 +▁organic -10.4797 +▁gene -10.4799 +▁radiation -10.48 +▁angle -10.4802 +▁Heart -10.4804 +die -10.4805 +ret -10.4805 +▁Kilti -10.4806 +▁Angel -10.4806 +▁external -10.4806 +ough -10.4807 +SA -10.4807 +▁nations -10.4809 +37 -10.4814 +▁impossible -10.4817 +▁ridge -10.482 +▁minister -10.482 +▁Bush -10.4824 +▁Family -10.4827 +▁Temple -10.4827 +▁credited -10.4831 +▁easier -10.4833 +▁Korea -10.4836 +til -10.4837 +▁begun -10.4838 +▁serves -10.4839 +▁folk -10.4846 +▁Real -10.4853 +▁1936 -10.4869 +▁Pu -10.4873 +▁moderate -10.4873 +▁Des -10.4874 +av -10.4874 +▁mix -10.4875 +▁Kim -10.4877 +▁1953 -10.4878 +▁describing -10.488 +▁kontak -10.4881 +▁invited -10.4883 +▁medikal -10.4883 +▁classified -10.4885 +▁Hitler -10.4887 +▁Airport -10.4888 +▁programme -10.4889 +▁otorite -10.489 +▁principles -10.4891 +▁Centre -10.4891 +▁Philip -10.4893 +▁distributed -10.4894 +▁Germans -10.4895 +▁Kreyòl -10.4895 +01 -10.4896 +ré -10.4898 +▁para -10.49 +operasyon -10.49 +▁rescue -10.49 +▁medal -10.4901 +▁Bal -10.4904 +▁excellent -10.4905 +▁Hamilton -10.4906 +▁respond -10.4907 +▁sport -10.4907 +▁household -10.491 +▁sispann -10.4916 +▁Take -10.4916 +▁smooth -10.4917 +ama -10.4919 +▁faster -10.4919 +▁Missouri -10.4926 +▁rank -10.493 +▁Minnesota -10.4934 +▁province -10.4936 +▁1962, -10.4939 +▁businesses -10.4946 +▁neck -10.4948 +▁emphasis -10.4951 +▁Gordon -10.4954 +▁Gouvènman -10.4955 +▁fa -10.4955 +85 -10.4957 +▁separated -10.4959 +▁Dream -10.496 +▁Howard -10.496 +▁milk -10.4961 +fish -10.4964 +▁diplomatik -10.4964 +▁expensive -10.4966 +▁Kong -10.4967 +▁emerged -10.4968 +▁Sinema -10.4975 +▁plane -10.4977 +▁amounts -10.4978 +▁abuse -10.4979 +▁admitted -10.4982 +▁historic -10.4984 +ack -10.4984 +▁estasyon -10.4984 +ique -10.4992 +yo -10.4995 +▁baseball -10.4998 +▁gender -10.5005 +29 -10.5005 +33 -10.5006 +▁classroom -10.5008 +▁Naval -10.5011 +▁decisions -10.5014 +▁Mediterranean -10.5015 +▁freeway -10.5018 +▁struggle -10.5019 +▁Report -10.5019 +▁conservation -10.502 +▁immune -10.5021 +▁subjects -10.5022 +▁root -10.5024 +▁1904. -10.5026 +▁explains -10.5029 +ena -10.5033 +▁mention -10.5034 +osis -10.5035 +▁Master -10.5041 +▁pp -10.5041 +99 -10.5042 +▁Kennedy -10.5045 +▁towns -10.5045 +cre -10.5046 +▁belt -10.5046 +▁Em -10.5047 +▁drawing -10.5047 +▁emissions -10.5048 +▁gameplay -10.5048 +▁Tre -10.5053 +▁praise -10.5053 +▁Agrikilti -10.5055 +▁asistans -10.5057 +▁crossed -10.506 +▁dwèt -10.506 +▁Assembly -10.5062 +▁instruments -10.5062 +▁1955 -10.5062 +▁Beyoncé -10.507 +▁Five -10.5071 +reprann -10.5071 +mit -10.5075 +▁channel -10.5076 +▁description -10.5078 +▁row -10.5078 +tel -10.5078 +▁airport -10.5081 +▁Sta -10.5085 +▁vast -10.5087 +▁Pèsonalite -10.5087 +ip -10.509 +eur -10.5095 +▁founder -10.5095 +▁detail -10.5095 +tain -10.5097 +▁posted -10.5102 +▁sequel -10.5105 +▁pit -10.5107 +▁worst -10.5109 +▁encouraged -10.511 +▁Konstriksyon -10.5111 +▁flank -10.5111 +▁tape -10.5111 +hanselye -10.5113 +▁Sky -10.5114 +▁repair -10.5114 +▁feelings -10.5115 +▁alfabetizasyon -10.5116 +▁koumanse -10.5117 +▁Wi -10.5118 +▁pèsonalite -10.5118 +▁colonial -10.5118 +▁Pèch -10.5119 +▁OEA -10.5119 +▁300000 -10.5122 +▁shore -10.5124 +▁stadium -10.5125 +▁arrested -10.5126 +▁Dabò -10.5128 +▁Adams -10.5129 +ewonotik -10.513 +▁breaking -10.5131 +▁Therefore -10.5135 +▁modified -10.5135 +▁schedule -10.5136 +▁der -10.5141 +▁manage -10.5144 +▁false -10.5145 +▁Op -10.5146 +▁dating -10.5147 +▁Norman -10.5148 +▁Guide -10.515 +▁collaboration -10.5151 +▁Shortly -10.5152 +▁dogs -10.5155 +▁76 -10.5156 +▁suitable -10.5157 +▁1910 -10.5163 +▁Beach -10.5165 +▁concrete -10.5165 +ball -10.5166 +▁attributed -10.5169 +▁articles -10.517 +down -10.5171 +book -10.5173 +▁represents -10.5174 +▁Native -10.5175 +▁Byzantine -10.5177 +▁thirty -10.5177 +▁Kent -10.5179 +elle -10.5182 +▁1937 -10.5183 +▁drinking -10.5183 +lor -10.5188 +rum -10.5188 +▁Sen -10.5188 +▁Ber -10.5191 +▁kon -10.5192 +ala -10.5195 +▁ameriken -10.5204 +▁Fe -10.5206 +vert -10.5207 +▁Further -10.5209 +▁1954 -10.521 +▁whereas -10.521 +▁engage -10.5212 +▁yourself -10.5218 +▁Jordan -10.5223 +▁temporary -10.5225 +lay -10.5226 +▁Memorial -10.5236 +▁Throughout -10.5237 +▁winner -10.5243 +AC -10.5249 +▁Down -10.5252 +▁Fu -10.5254 +▁legs -10.5256 +pping -10.526 +▁holds -10.5268 +▁suffer -10.5269 +bra -10.5269 +▁Well -10.527 +▁Mont -10.5271 +▁percentage -10.5271 +▁Muslim -10.5271 +gate -10.5275 +▁Jacob -10.5276 +bal -10.5276 +▁rep -10.5277 +▁sessions -10.5282 +▁stood -10.5284 +▁interpretation -10.5284 +cent -10.5286 +▁informed -10.5287 +▁participants -10.5291 +▁Pen -10.5291 +▁fluid -10.5292 +tt -10.5293 +▁owners -10.5294 +▁pages -10.5296 +▁enemies -10.5309 +▁obtain -10.531 +▁Magazine -10.5313 +▁Those -10.5315 +▁Cre -10.5316 +▁Iowa -10.532 +▁classical -10.5322 +▁Win -10.5325 +▁Six -10.5326 +38 -10.5329 +▁Phil -10.5331 +▁forming -10.5331 +▁voted -10.5332 +▁Olympics -10.5335 +dis -10.5336 +des -10.5337 +▁involves -10.5339 +▁Cro -10.5341 +▁victims -10.5341 +lye -10.5345 +▁Using -10.5345 +▁Gra -10.5346 +▁Ann -10.535 +▁appointment -10.535 +▁ap -10.5352 +▁diameter -10.5357 +▁falling -10.5358 +▁sale -10.5358 +▁facing -10.5361 +▁Jeff -10.5361 +▁Third -10.5363 +ros -10.5363 +▁Tony -10.5364 +▁comments -10.5369 +▁Media -10.5372 +▁remainder -10.5373 +.1 -10.5375 +▁ratio -10.5375 +▁harm -10.5378 +▁isn -10.5382 +▁wish -10.5382 +▁explore -10.5385 +▁marine -10.5385 +ky -10.539 +▁Ly -10.5392 +▁contest -10.5398 +▁Luc -10.5399 +): -10.54 +▁certified -10.5403 +▁Iron -10.5404 +▁ride -10.5408 +▁Matthew -10.5409 +ising -10.5418 +tch -10.5418 +▁incorporated -10.5419 +▁accused -10.542 +▁muscle -10.5431 +▁reflect -10.5442 +▁Medical -10.5442 +▁66 -10.5448 +▁Allen -10.5449 +▁app -10.5451 +▁occasionally -10.5454 +▁Nick -10.5455 +▁Class -10.5455 +▁concentration -10.5458 +zy -10.5458 +ax -10.546 +▁scheme -10.5466 +▁grounds -10.5471 +▁Jane -10.5471 +▁breast -10.5475 +▁Egyptian -10.5475 +ero -10.5476 +bit -10.5478 +▁landfall -10.5479 +▁Theatre -10.5484 +ular -10.5489 +▁judge -10.549 +▁housing -10.5491 +▁bands -10.5491 +▁57 -10.5496 +▁organ -10.5499 +▁ra -10.55 +rid -10.5504 +▁Food -10.5505 +▁dated -10.5509 +itis -10.5512 +▁bo -10.5518 +▁1952 -10.552 +▁tied -10.5527 +▁rival -10.5534 +ins -10.5535 +▁Alex -10.5539 +▁portrayed -10.5541 +ole -10.5544 +▁apparent -10.5544 +▁controversy -10.555 +▁plain -10.5551 +▁flowers -10.5555 +▁completion -10.5558 +▁involvement -10.5559 +▁recalled -10.5562 +▁Tan -10.5562 +ever -10.5563 +▁clinical -10.5565 +▁reception -10.5579 +▁notice -10.558 +▁soti -10.5582 +▁− -10.5585 +uch -10.5593 +▁Professor -10.5596 +act -10.5597 +▁denied -10.56 +▁Through -10.5602 +▁z -10.5605 +▁trials -10.5616 +▁Anna -10.5617 +▁documents -10.562 +▁Bishop -10.562 +▁Juan -10.5623 +▁Natural -10.5625 +▁component -10.5629 +▁Area -10.5633 +▁Fo -10.5634 +bert -10.5635 +▁investment -10.564 +▁Char -10.5642 +▁vary -10.5644 +▁Type -10.5651 +▁Ph -10.5652 +▁jewografik -10.5656 +▁); -10.5658 +▁1949 -10.5659 +▁log -10.5662 +▁vital -10.5664 +year -10.5667 +▁Ash -10.567 +▁tooth -10.567 +▁column -10.5672 +▁Nu -10.5677 +tè -10.5678 +▁colony -10.5682 +▁roots -10.5682 +▁jobs -10.5684 +▁frequency -10.5685 +▁bright -10.5688 +▁Main -10.5692 +▁count -10.5692 +oon -10.5693 +ima -10.5695 +▁2019 -10.5697 +▁forests -10.5698 +▁Tar -10.5702 +▁DE -10.5704 +lis -10.5705 +bre -10.5709 +▁kick -10.571 +▁McC -10.5711 +▁moves -10.5712 +▁pool -10.5715 +▁Ana -10.5715 +▁Modern -10.5718 +▁periods -10.5719 +▁almanak -10.572 +▁memorial -10.5727 +67 -10.5729 +▁Las -10.5731 +▁taste -10.5737 +▁sit -10.5738 +▁continuing -10.5739 +▁topic -10.5739 +ming -10.5739 +▁canal -10.574 +▁Sub -10.5743 +▁spending -10.5746 +▁defend -10.5748 +nal -10.5749 +▁Girl -10.575 +▁cloud -10.575 +af -10.5752 +▁Program -10.5756 +▁” -10.5761 +▁Plant -10.5763 +▁recovered -10.5763 +ón -10.5765 +▁Rio -10.5766 +▁cup -10.5767 +▁uniform -10.5768 +▁1951 -10.5769 +▁findings -10.5772 +▁touch -10.5773 +▁58 -10.5777 +▁pounds -10.5778 +▁departure -10.5778 +▁Alabama -10.5779 +▁Hart -10.578 +▁Ford -10.578 +55 -10.5781 +▁twin -10.5782 +dale -10.5782 +▁routes -10.5783 +▁knots -10.5785 +▁Control -10.5787 +▁1933 -10.5788 +▁Design -10.5789 +▁Dat -10.5792 +▁plus -10.5793 +▁stick -10.5797 +▁72 -10.5799 +▁MTV -10.5802 +èt -10.5805 +▁visitors -10.5805 +▁throw -10.5805 +▁teach -10.5806 +44 -10.5808 +▁hits -10.5809 +▁recognize -10.581 +▁Trans -10.5814 +▁substantial -10.5816 +▁certainly -10.5821 +▁comparison -10.5823 +ić -10.5825 +▁practical -10.5825 +▁Get -10.5827 +iff -10.5827 +▁Dun -10.583 +▁surrounded -10.5833 +▁repeated -10.5836 +▁orbit -10.5839 +▁Having -10.5844 +▁charges -10.5847 +rus -10.5848 +▁successor -10.5853 +▁engagement -10.5854 +▁Mer -10.5855 +▁Ger -10.5855 +▁missed -10.5857 +▁smoke -10.5859 +▁Hungarian -10.5859 +▁Make -10.586 +▁Villa -10.5866 +▁fixed -10.5869 +fin -10.587 +▁leta -10.5872 +▁Morgan -10.5872 +▁handle -10.5872 +▁1900 -10.5876 +▁attracted -10.5883 +▁crash -10.5884 +▁evil -10.5888 +▁translation -10.589 +▁bus -10.5894 +▁Simpsons -10.5894 +▁streets -10.5898 +▁eighth -10.59 +▁loop -10.5901 +09 -10.5907 +pri -10.5908 +▁ethnic -10.5909 +nce -10.5909 +▁Sh -10.5914 +31 -10.5915 +▁ne -10.5915 +▁arch -10.5916 +▁driver -10.5918 +dar -10.5919 +▁Horse -10.5919 +▁Indians -10.5924 +▁gap -10.5925 +▁composer -10.5928 +36 -10.5935 +▁1935 -10.5936 +▁Hay -10.5938 +▁controversial -10.5938 +▁sky -10.5938 +▁looks -10.594 +▁Samuel -10.594 +▁rarely -10.594 +az -10.5942 +▁Around -10.5943 +▁Yu -10.5944 +▁medieval -10.5945 +▁audio -10.5949 +ene -10.595 +▁tested -10.595 +▁sharp -10.5954 +▁creator -10.5957 +dor -10.5959 +list -10.5959 +eb -10.5965 +nch -10.5968 +PA -10.5969 +pon -10.5969 +▁130 -10.597 +▁Building -10.5971 +AT -10.5972 +▁Netherlands -10.5976 +▁circumstances -10.5976 +▁supporters -10.5979 +▁isolated -10.5979 +pin -10.5982 +▁Songs -10.5984 +▁string -10.5985 +▁refer -10.5988 +▁armor -10.5991 +▁pretty -10.5992 +▁mobile -10.5993 +▁expand -10.5996 +▁nomination -10.5998 +▁bay -10.6001 +▁2. -10.6004 +▁proportion -10.6009 +▁arrest -10.601 +▁Play -10.6012 +▁poetry -10.6013 +▁exception -10.6014 +▁Ste -10.6014 +ties -10.6018 +qua -10.6024 +▁Kevin -10.6024 +▁surviving -10.6038 +▁restored -10.6039 +RA -10.6043 +▁Sweden -10.6043 +ency -10.6044 +gin -10.6045 +▁Norwegian -10.6045 +AN -10.6046 +▁Berlin -10.6046 +▁biological -10.605 +▁champion -10.6051 +▁Mill -10.6052 +sel -10.6052 +▁representing -10.6055 +▁Mulder -10.6059 +▁violent -10.606 +▁samples -10.6062 +▁hunting -10.6064 +▁Bruce -10.6067 +▁Channel -10.6067 +▁difficulties -10.607 +▁Au -10.6072 +95 -10.6072 +▁chair -10.6074 +▁62 -10.6084 +▁stem -10.6084 +▁hosted -10.6085 +▁Guy -10.6087 +dom -10.6089 +▁convoy -10.609 +▁plate -10.6091 +▁frame -10.6093 +▁readers -10.6093 +oma -10.6094 +▁ban -10.6099 +▁valuable -10.6099 +▁goods -10.6099 +▁Nor -10.61 +▁historians -10.61 +▁stayed -10.61 +▁Colorado -10.6103 +▁permission -10.6104 +▁waves -10.6104 +▁agents -10.6105 +▁Sand -10.6106 +▁believes -10.611 +▁Im -10.6111 +▁Bad -10.6113 +▁passengers -10.6115 +▁missions -10.6115 +▁cutting -10.6116 +▁Bible -10.6121 +▁diabetes -10.6124 +▁conventional -10.613 +▁pointed -10.6132 +ii -10.6133 +▁wealth -10.614 +▁scholars -10.6146 +mis -10.6147 +▁adaptation -10.6147 +▁Fall -10.6147 +▁preferred -10.615 +77 -10.6151 +▁Bernard -10.6153 +ob -10.6153 +▁revolution -10.6153 +▁UTC -10.6155 +▁mine -10.6157 +▁deliver -10.6159 +▁wire -10.6163 +▁Dean -10.6163 +▁proteins -10.6164 +▁artificial -10.6168 +▁Ryan -10.6169 +▁sin -10.617 +▁collect -10.6173 +▁seeking -10.6174 +▁99 -10.6179 +mel -10.6179 +▁returns -10.618 +▁residence -10.6182 +▁Robinson -10.6187 +▁references -10.6187 +sitye -10.6188 +▁Cur -10.619 +It -10.619 +▁surprise -10.619 +▁explanation -10.6191 +▁properly -10.6191 +.5 -10.6192 +▁Ci -10.6192 +dal -10.6192 +▁Rights -10.6193 +▁regime -10.6193 +▁chronic -10.6194 +▁principle -10.6197 +tri -10.62 +win -10.62 +▁pitch -10.6203 +39 -10.6206 +ons -10.6208 +▁dollars -10.6216 +▁Comp -10.6217 +▁vice -10.6219 +ES -10.6221 +▁Chèf -10.6222 +▁Ball -10.6225 +▁catch -10.6226 +lam -10.6226 +▁Cooper -10.6227 +▁anniversary -10.6228 +▁crops -10.6228 +▁Winter -10.623 +▁actress -10.6231 +▁Mississippi -10.6231 +▁accurate -10.6231 +▁Stadium -10.6234 +▁Bull -10.6234 +▁Retrieved -10.6236 +▁Lisa -10.6237 +▁Apple -10.624 +▁pan -10.6251 +▁profile -10.6253 +AL -10.6256 +▁expect -10.6256 +▁hop -10.6258 +▁dream -10.6259 +▁farmers -10.6266 +▁connect -10.6271 +▁preparation -10.6271 +nar -10.6272 +▁apparently -10.6273 +▁select -10.6274 +▁watching -10.6276 +▁painted -10.6279 +lar -10.6281 +▁Finally -10.6282 +▁1913 -10.6284 +▁technologies -10.6287 +ire -10.6291 +▁decide -10.6292 +▁prices -10.6294 +▁objective -10.6294 +une -10.6295 +▁chorus -10.6296 +▁Toronto -10.63 +▁Every -10.6304 +05 -10.6307 +▁collapse -10.631 +▁partnership -10.6312 +▁fe -10.6313 +▁nest -10.6313 +▁presentation -10.6314 +▁representation -10.6314 +▁Greece -10.6314 +kh -10.6315 +▁Cat -10.6321 +▁Nelson -10.6323 +▁efficient -10.6324 +▁knee -10.6325 +”. -10.6325 +▁110 -10.6328 +▁Stanley -10.6329 +▁Ki -10.633 +▁poet -10.633 +▁talking -10.6333 +▁drink -10.6335 +▁NASA -10.6335 +▁Persian -10.6336 +▁demonstrated -10.6339 +ore -10.634 +bro -10.6341 +▁retain -10.6342 +▁Camp -10.6344 +ute -10.6347 +▁dialogue -10.6349 +▁Wind -10.635 +lum -10.6353 +▁aspect -10.6357 +▁crop -10.6367 +▁PA -10.6376 +lock -10.638 +▁Kansas -10.6383 +▁wooden -10.6385 +jan -10.639 +▁Qu -10.6395 +▁ho -10.6399 +▁61 -10.6402 +▁tries -10.6407 +▁animation -10.6408 +▁commanded -10.641 +▁Brazil -10.6411 +▁fundamental -10.6413 +mal -10.6414 +▁romantic -10.6415 +▁vessel -10.6416 +▁personality -10.6418 +▁Je -10.6419 +▁Bel -10.6419 +▁exact -10.6419 +▁Military -10.6423 +▁neuro -10.6424 +▁à -10.6424 +wing -10.6425 +cu -10.6425 +▁Morris -10.6426 +▁radical -10.6427 +▁fishing -10.643 +▁Ser -10.6432 +▁Cleveland -10.6433 +▁IGN -10.6433 +▁Lane -10.6437 +▁exhibition -10.6438 +▁Call -10.6439 +▁59 -10.644 +▁hoped -10.6442 +▁earthquake -10.6447 +▁roll -10.6447 +▁convinced -10.6448 +▁regiment -10.645 +▁beach -10.6452 +▁rooms -10.6452 +▁ni -10.6453 +▁superior -10.6453 +▁sweet -10.6453 +▁rising -10.6454 +lia -10.6455 +▁profit -10.6457 +▁recommend -10.6457 +▁covering -10.6457 +tr -10.6457 +▁Students -10.6458 +▁encourage -10.6462 +▁existed -10.6462 +▁downtown -10.6465 +get -10.6465 +▁Cho -10.6469 +▁potentially -10.647 +▁representative -10.6472 +▁Premier -10.6473 +ati -10.6475 +▁lowest -10.6478 +▁sailed -10.648 +▁unless -10.648 +▁asking -10.6481 +ids -10.6482 +see -10.6482 +bor -10.6491 +▁Vol -10.6491 +▁satellite -10.6497 +▁ch -10.6497 +▁boys -10.6499 +▁delayed -10.6505 +▁approaches -10.6507 +▁awareness -10.6509 +▁1912 -10.6516 +▁Pope -10.6519 +▁shift -10.652 +▁Biyografi -10.652 +▁railroad -10.6523 +▁agree -10.6527 +ges -10.6527 +▁pen -10.653 +48 -10.653 +su -10.6531 +▁PC -10.6531 +▁generate -10.6532 +▁festival -10.6534 +▁grave -10.6536 +▁strategies -10.6536 +▁Bon -10.6539 +▁flood -10.6541 +▁Mag -10.6544 +▁ranking -10.6545 +gy -10.6547 +▁agency -10.6549 +▁supposed -10.655 +▁< -10.655 +vel -10.655 +ora -10.6551 +▁Ham -10.6555 +cut -10.6556 +pan -10.6559 +▁Blood -10.656 +▁occupation -10.6561 +84 -10.6562 +▁reveals -10.6567 +▁pure -10.6567 +▁weekend -10.6567 +▁requested -10.6568 +▁survival -10.6572 +▁Ron -10.6575 +▁Andy -10.6582 +▁prime -10.6582 +▁fictional -10.6584 +▁Qui -10.6584 +▁2020 -10.6591 +▁Furthermore -10.6592 +▁arrangement -10.6594 +▁Nevertheless -10.6596 +▁philosophy -10.6596 +▁graduate -10.6596 +ona -10.6604 +▁ke -10.661 +▁particles -10.6612 +▁bones -10.6613 +ö -10.6613 +▁verse -10.6615 +▁dominated -10.6615 +32 -10.662 +▁Michel -10.662 +▁José -10.6621 +Re -10.6623 +▁panel -10.6623 +▁throne -10.6626 +▁favour -10.6626 +eo -10.6631 +cer -10.6637 +▁Lang -10.6642 +▁beam -10.6644 +▁aged -10.6648 +▁animated -10.6649 +▁windows -10.665 +▁express -10.6652 +▁minimal -10.6653 +▁Ak -10.6654 +▁wait -10.6655 +▁grant -10.6658 +▁63 -10.6659 +▁HIV -10.666 +▁input -10.6662 +▁danger -10.6663 +08 -10.6665 +34 -10.667 +▁Wright -10.6671 +▁crown -10.6672 +hy -10.6674 +▁Work -10.6676 +▁Ze -10.6678 +▁compete -10.668 +▁Corporation -10.6685 +56 -10.6686 +▁bow -10.6686 +ien -10.6691 +èl -10.6693 +▁Weekly -10.6698 +▁Tower -10.67 +ved -10.6703 +bed -10.6703 +▁monitor -10.6704 +81 -10.6705 +nia -10.6707 +▁Late -10.671 +▁fossil -10.671 +arian -10.6711 +▁covers -10.6712 +▁fewer -10.6723 +▁understood -10.6727 +▁Welsh -10.6731 +▁influential -10.6731 +▁emperor -10.6732 +▁Energy -10.6733 +ches -10.674 +wan -10.674 +mus -10.674 +▁attempting -10.674 +▁Sim -10.6741 +49 -10.6749 +▁craft -10.675 +▁Sarah -10.675 +▁1911 -10.6751 +▁usual -10.6751 +▁detect -10.6758 +▁tone -10.6759 +▁eleven -10.6761 +tar -10.6764 +tru -10.6774 +▁Hy -10.6774 +▁formula -10.6775 +▁jump -10.6776 +▁Min -10.678 +▁Much -10.678 +▁Studies -10.679 +▁Inc -10.679 +▁Garden -10.6795 +▁Sar -10.6798 +▁finishing -10.68 +▁predict -10.6807 +rich -10.6808 +▁penalty -10.6808 +eng -10.681 +▁procedure -10.6811 +▁Hol -10.6814 +▁colleagues -10.6815 +▁desert -10.6816 +▁deemed -10.6817 +▁residential -10.6818 +ug -10.682 +uri -10.682 +▁syndrome -10.682 +▁feeding -10.6825 +▁wings -10.6825 +▁Run -10.6826 +▁sons -10.6826 +▁walking -10.6827 +▁circle -10.6834 +▁Read -10.6835 +eth -10.6835 +hn -10.6835 +mont -10.6836 +▁× -10.6837 +ae -10.6838 +▁suicide -10.6841 +▁experts -10.6842 +lle -10.6842 +▁Bas -10.6851 +▁Sol -10.6853 +▁margin -10.6854 +▁96 -10.6855 +▁tube -10.6855 +ille -10.6856 +89 -10.6857 +▁77 -10.6857 +▁Scully -10.6859 +▁Fame -10.6861 +▁Ali -10.6867 +bin -10.6867 +78 -10.6869 +ew -10.687 +▁Bristol -10.6874 +▁Miss -10.6874 +ify -10.6875 +▁processing -10.6877 +▁decrease -10.6877 +▁protest -10.6887 +▁claiming -10.6888 +▁god -10.6888 +▁Hard -10.6889 +▁infrastructure -10.6889 +tus -10.689 +▁consistent -10.6892 +▁NBA -10.6898 +▁ear -10.6899 +▁votes -10.6899 +ston -10.69 +▁gay -10.6902 +ich -10.6902 +dia -10.6906 +▁trick -10.6906 +▁documentary -10.6906 +▁Mat -10.6908 +▁Dam -10.6908 +▁recovery -10.6908 +▁passenger -10.691 +▁1934 -10.691 +▁explosion -10.6911 +▁examination -10.6912 +▁Russell -10.6917 +▁Er -10.6918 +▁68 -10.6919 +▁Rolling -10.6919 +▁hero -10.6922 +00 -10.6923 +▁cavalry -10.6925 +cle -10.6925 +▁elections -10.6926 +del -10.693 +▁terminus -10.6931 +▁earning -10.6933 +▁Hindu -10.6934 +▁resource -10.6935 +▁executed -10.6935 +79 -10.6935 +▁cha -10.6937 +▁elsewhere -10.6939 +▁depicted -10.694 +▁Jon -10.694 +▁Chan -10.6944 +▁falls -10.6948 +oo -10.695 +▁pushed -10.6955 +▁abilities -10.6963 +▁characterized -10.6963 +▁bat -10.6965 +▁longest -10.6965 +play -10.6965 +ement -10.6966 +▁fitted -10.6968 +▁Police -10.6969 +▁skill -10.6972 +▁Story -10.6976 +88 -10.6977 +▁concepts -10.6981 +gon -10.6984 +▁Thompson -10.6984 +▁carrier -10.6986 +▁1932 -10.6986 +IC -10.6989 +▁pack -10.6989 +rin -10.6992 +ato -10.6996 +▁indicates -10.6998 +▁mechanical -10.6999 +▁Yo -10.7 +▁delivery -10.7003 +▁garrison -10.7005 +▁aboard -10.701 +▁Carter -10.7011 +▁Technology -10.7015 +▁custom -10.7018 +▁lock -10.7018 +▁discover -10.702 +▁Nature -10.7022 +avi -10.7023 +▁agriculture -10.7027 +▁pace -10.7027 +▁friendly -10.7028 +▁divisions -10.7029 +▁density -10.7032 +▁prevented -10.7035 +▁hydrogen -10.7035 +ban -10.7036 +▁engineer -10.704 +68 -10.704 +▁solutions -10.7042 +▁wants -10.7043 +ace -10.7046 +▁diverse -10.7047 +▁WWE -10.7047 +▁Common -10.7049 +▁Jacques -10.7052 +▁Nesans -10.7057 +▁burn -10.7062 +▁telling -10.7063 +▁inform -10.7067 +▁email -10.7068 +▁mono -10.7077 +▁crucial -10.7079 ++ -10.708 +nie -10.7083 +▁afterwards -10.7086 +▁dress -10.7087 +▁Nazi -10.709 +▁journalist -10.7091 +▁afternoon -10.7092 +itz -10.7095 +▁67 -10.71 +▁insects -10.7101 +▁protagonist -10.7101 +▁unlike -10.7107 +▁Puerto -10.7107 +▁presidential -10.7109 +▁pictures -10.711 +sey -10.711 +▁Anthony -10.7111 +▁Rob -10.7112 +▁seeds -10.7117 +ets -10.7119 +cor -10.7121 +▁deployed -10.7123 +▁indeed -10.7125 +▁basketball -10.713 +▁intervention -10.7131 +▁Harris -10.7135 +▁surrender -10.7137 +▁landed -10.7143 +▁improvement -10.7148 +▁shots -10.7148 +sp -10.7148 +▁sentence -10.7151 +vent -10.7153 +▁Ministry -10.7156 +▁78 -10.7156 +▁Data -10.7157 +▁meets -10.7158 +▁wine -10.7159 +▁rap -10.7162 +64 -10.7164 +▁Death -10.718 +▁marks -10.7182 +▁vo -10.7183 +▁restoration -10.7184 +▁adapt -10.7187 +▁appearing -10.7187 +▁pull -10.7189 +▁1927 -10.7189 +▁rivers -10.7189 +57 -10.7191 +▁cur -10.7191 +▁Pri -10.7192 +shire -10.7193 +46 -10.7195 +▁observations -10.7196 +ender -10.7198 +▁boost -10.7202 +▁aimed -10.7204 +▁crosses -10.7208 +put -10.7208 +▁160 -10.7212 +▁secured -10.7213 +▁aim -10.7214 +▁experiments -10.7215 +▁bond -10.7215 +▁holiday -10.7215 +sol -10.7215 +▁Houston -10.7217 +▁targets -10.7217 +▁intellectual -10.7218 +▁Sel -10.7224 +▁manufacturing -10.7228 +ED -10.7229 +▁ray -10.7232 +▁encounter -10.7233 +▁worship -10.7234 +▁relevant -10.7242 +▁graphics -10.7242 +▁Commonwealth -10.7244 +▁approval -10.7244 +▁Mas -10.7246 +▁Beatles -10.7251 +▁Hal -10.7252 +▁churches -10.7254 +▁Silver -10.7255 +▁Where -10.7256 +▁Tur -10.7257 +▁Arsenal -10.7263 +▁Kelly -10.7264 +▁Lar -10.7264 +▁banks -10.7266 +ded -10.7269 +dra -10.727 +▁Gre -10.7274 +▁partially -10.7277 +eu -10.7277 +▁dismissed -10.7278 +og -10.728 +▁Den -10.7282 +▁dominant -10.7283 +top -10.7284 +▁weapon -10.7284 +chan -10.7287 +▁Hor -10.7289 +var -10.7292 +▁Mass -10.7293 +▁1921 -10.7294 +▁conservative -10.7296 +▁Diego -10.7297 +ington -10.7301 +▁displayed -10.7301 +▁1926 -10.7306 +▁dramatic -10.7306 +▁87 -10.7306 +▁delay -10.7307 +▁situations -10.7308 +xi -10.731 +▁remote -10.7311 +▁putting -10.7312 +zer -10.7315 +▁territories -10.7323 +ā -10.7325 +▁interaction -10.7327 +▁submarine -10.7327 +▁Ros -10.7328 +.2 -10.7329 +▁Palace -10.7333 +▁74 -10.7335 +ean -10.7337 +ei -10.734 +▁brick -10.734 +▁coverage -10.7354 +▁extend -10.7354 +▁musicians -10.7354 +▁limits -10.7356 +58 -10.7356 +▁partly -10.7359 +▁fur -10.7359 +▁Hi -10.736 +yen -10.7361 +▁compounds -10.7362 +▁Parker -10.7368 +▁efficiency -10.7369 +▁sc -10.7372 +▁ongoing -10.7373 +▁Cuba -10.7375 +kar -10.7376 +▁firing -10.7376 +▁reyalize -10.7383 +▁liver -10.7385 +▁coins -10.7385 +47 -10.7385 +▁tea -10.739 +▁Writing -10.7394 +▁1929 -10.7396 +▁prefer -10.7398 +▁Murray -10.7401 +▁premiere -10.7401 +aw -10.7403 +ites -10.7403 +▁94 -10.7404 +▁routine -10.7404 +▁happens -10.7405 +cro -10.7406 +▁Khan -10.7408 +▁radar -10.7408 +▁Along -10.7409 +▁clothing -10.7411 +▁printed -10.7411 +▁loan -10.7412 +ators -10.7412 +▁relation -10.7414 +seri -10.7416 +▁preserved -10.742 +▁chairman -10.7422 +▁69 -10.7423 +▁intention -10.7426 +▁Article -10.7426 +▁prize -10.7429 +▁Mario -10.7431 +▁evolved -10.744 +▁links -10.7441 +▁lu -10.7443 +▁Die -10.7443 +▁1931 -10.7443 +▁regard -10.7444 +▁mining -10.7445 +▁anxiety -10.7445 +▁transmission -10.7445 +▁Ol -10.7446 +▁picked -10.7447 +▁courts -10.7448 +▁stroke -10.7449 +▁Tor -10.7449 +▁Sin -10.7454 +▁Sports -10.7456 +63 -10.7457 +▁pot -10.7458 +▁tie -10.7461 +▁removal -10.7462 +▁touchdown -10.7464 +59 -10.7466 +▁retreat -10.7467 +▁82 -10.747 +▁trend -10.7478 +98 -10.7478 +▁blocks -10.7481 +rick -10.7483 +▁retirement -10.7483 +▁Anglo -10.7486 +▁consequences -10.7487 +▁Marshall -10.7488 +▁fighter -10.7489 +69 -10.7489 +▁persons -10.749 +▁Ou -10.7495 +▁instrument -10.7497 +▁attacking -10.7498 +▁wickets -10.7498 +41 -10.7499 +stra -10.75 +▁talent -10.7503 +▁shark -10.7509 +▁formerly -10.751 +43 -10.751 +▁DC -10.7512 +▁Clinton -10.7513 +▁Swedish -10.7513 +▁tomb -10.7517 +▁Gilbert -10.7521 +▁Greg -10.7521 +▁encountered -10.7524 +▁adjacent -10.7525 +▁diagnosis -10.7528 +▁fort -10.7532 +97 -10.7534 +76 -10.7535 +▁push -10.7539 +▁charter -10.754 +▁Frederick -10.7542 +▁Has -10.7543 +▁colonies -10.7544 +▁considering -10.7545 +▁(1 -10.7547 +ulation -10.7548 +hand -10.7548 +▁Turkish -10.755 +▁experimental -10.7551 +▁obvious -10.7551 +▁discipline -10.7555 +▁Commander -10.7557 +▁alien -10.7558 +▁Business -10.7559 +", -10.7566 +chy -10.7567 +▁vertical -10.7568 +long -10.7569 +▁compound -10.7574 +▁notably -10.7575 +61 -10.7576 +▁merely -10.7579 +▁rhythm -10.7579 +71 -10.7579 +▁Austria -10.7583 +▁73 -10.7589 +▁designation -10.759 +▁Dec -10.759 +ili -10.759 +▁ratings -10.7591 +▁employment -10.7593 +▁pollution -10.7593 +▁commitment -10.7593 +aff -10.7594 +▁paintings -10.7595 +tta -10.7595 +▁styles -10.7599 +▁Croatian -10.7601 +▁slaves -10.7602 +▁noble -10.7606 +▁sing -10.761 +▁climb -10.7612 +▁genes -10.7613 +▁mini -10.7615 +▁Singles -10.7617 +are -10.7625 +▁tasks -10.7625 +▁noise -10.7628 +uring -10.7634 +oli -10.7634 +▁mature -10.7635 +load -10.7636 +▁Wisconsin -10.7637 +▁ninth -10.7637 +▁Canal -10.7638 +▁Caribbean -10.764 +▁Low -10.7642 +worth -10.7645 +▁arts -10.7646 +int -10.7648 +▁error -10.7648 +▁racial -10.7651 +ition -10.7652 +▁Spring -10.7653 +▁1, -10.7653 +▁tribes -10.7654 +sur -10.7654 +ration -10.7656 +vy -10.7657 +▁transportation -10.7658 +but -10.7658 +83 -10.7659 +▁bra -10.7663 +▁diversity -10.7665 +▁dust -10.7667 +▁pursue -10.7667 +▁traveled -10.7669 +rat -10.7669 +▁underground -10.7669 +▁fled -10.7685 +▁investigate -10.7686 +▁mountains -10.7686 +▁noting -10.7686 +▁cruiser -10.7686 +▁influences -10.7687 +▁siege -10.7687 +▁Lawrence -10.7694 +▁alternate -10.7695 +onic -10.7696 +dic -10.7697 +▁forecast -10.7697 +03 -10.7699 +▁Confederate -10.7702 +▁enters -10.7704 +96 -10.7705 +burg -10.7707 +stein -10.7709 +log -10.7709 +▁confidence -10.771 +▁poverty -10.7711 +▁vulnerable -10.7717 +ening -10.7725 +not -10.7729 +rè -10.7729 +▁saved -10.7733 +▁Stra -10.7735 +▁convention -10.7735 +▁programming -10.7737 +▁Christopher -10.7739 +▁pr -10.7744 +▁Have -10.7744 +▁battleships -10.7745 +▁98 -10.7745 +▁observation -10.7748 +▁Management -10.7755 +▁ranging -10.7755 +▁ti -10.7756 +▁Tennessee -10.7758 +▁examine -10.7758 +▁mainstream -10.776 +▁Digital -10.7765 +▁conversion -10.7769 +▁elevation -10.777 +▁1922 -10.7774 +▁convection -10.7775 +▁su -10.7777 +ika -10.7777 +▁fl -10.7779 +tha -10.778 +▁blog -10.7783 +▁reflected -10.7784 +▁cable -10.7784 +▁Gri -10.7786 +▁Staff -10.7789 +some -10.779 +▁alive -10.7792 +▁exists -10.7793 +▁Drive -10.7795 +▁Vice -10.7801 +uv -10.7805 +▁demands -10.7805 +▁wedding -10.7805 +▁sick -10.7807 +▁illegal -10.781 +▁formally -10.781 +▁Community -10.781 +osa -10.7812 +▁ownership -10.7812 +ava -10.7813 +04 -10.7815 +▁Recording -10.7819 +▁Franklin -10.7819 +▁disorders -10.782 +▁ro -10.7821 +▁avèk -10.7822 +hill -10.7825 +5% -10.7825 +▁Bor -10.7829 +▁registered -10.7829 +▁mechanism -10.783 +ock -10.783 +▁waiting -10.7832 +▁wider -10.7837 +▁Baltimore -10.7838 +ami -10.7838 +cing -10.7838 +tim -10.7841 +rt -10.7843 +▁Benjamin -10.7845 +▁sitting -10.7845 +▁dealing -10.7854 +▁Non -10.7855 +▁papers -10.7856 +▁latest -10.7856 +▁clock -10.7857 +▁leaf -10.7859 +▁continuous -10.7859 +▁specimens -10.786 +rian -10.7864 +din -10.7864 +▁assume -10.7868 +▁Pass -10.7869 +▁Alfred -10.7872 +▁possession -10.7879 +▁arc -10.7885 +▁79 -10.7886 +▁Medicine -10.7887 +▁matters -10.7889 +tur -10.7893 +cast -10.7894 +▁structural -10.7894 +▁offices -10.7894 +▁shear -10.7895 +gal -10.7899 +▁mar -10.7904 +▁Gro -10.7908 +▁Cook -10.7908 +▁Oklahoma -10.7912 +▁Knight -10.7914 +▁Yet -10.7915 +gent -10.7915 +▁unsuccessful -10.7917 +▁Bureau -10.7918 +▁associate -10.792 +▁Ag -10.7921 +▁Note -10.7923 +kan -10.7923 +▁Gun -10.7924 +bri -10.7926 +▁colors -10.7929 +▁Stewart -10.7929 +▁Miami -10.7931 +▁marketing -10.7934 +▁Guard -10.7936 +▁Arizona -10.7938 +nu -10.794 +lli -10.7942 +▁sacrifice -10.7944 +▁hole -10.7947 +▁maintaining -10.7948 +▁Jason -10.7948 +▁Next -10.7949 +▁operational -10.795 +▁reviewer -10.795 +▁Dor -10.7952 +▁wa -10.7955 +▁Ren -10.7955 +pper -10.7955 +▁sensitive -10.7956 +nk -10.7957 +▁stores -10.7959 +iel -10.7963 +▁submitted -10.7966 +▁estimates -10.7967 +▁88 -10.7971 +); -10.7972 +ée -10.7973 +elli -10.7977 +▁1890 -10.7977 +▁Peninsula -10.7981 +▁Dragon -10.7986 +poli -10.7991 +▁mate -10.7992 +▁truly -10.7995 +▁bell -10.7995 +iya -10.7999 +AS -10.8 +▁pet -10.8002 +000 -10.8005 +▁Marc -10.8006 +▁Television -10.8008 +▁Evans -10.8009 +▁900 -10.801 +nis -10.801 +▁tip -10.8012 +▁alliance -10.8016 +▁treaty -10.8019 +▁Lin -10.802 +▁1928 -10.8024 +▁fault -10.8028 +hood -10.8031 +mor -10.8033 +▁Treaty -10.8033 +▁Standard -10.804 +▁Victor -10.8042 +▁batting -10.8042 +▁slave -10.8043 +▁decay -10.8043 +room -10.8044 +▁handed -10.8052 +▁chi -10.8056 +▁hyper -10.8056 +▁Shakespeare -10.8056 +ale -10.8057 +lus -10.8059 +CA -10.8059 +ito -10.806 +▁tunnel -10.806 +▁corn -10.8061 +▁lifestyle -10.8062 +▁stronger -10.8063 +▁contributions -10.8066 +bridge -10.8066 +iti -10.8067 +▁enpòtan -10.8068 +▁Detroit -10.8072 +▁distinctive -10.8078 +▁starred -10.808 +▁ve -10.808 +▁shop -10.808 +▁designer -10.8081 +AR -10.8082 +▁Ring -10.8083 +▁Windows -10.8084 +▁Bio -10.8086 +▁negotiations -10.8089 +▁palace -10.8091 +gel -10.8095 +▁defended -10.8098 +▁villages -10.8099 +▁71 -10.8102 +▁studying -10.8106 +▁pin -10.8108 +▁81 -10.811 +▁Soon -10.8113 +▁phrase -10.8115 +▁hidden -10.812 +▁clubs -10.8122 +▁characteristic -10.8122 +▁stored -10.8125 +▁organisms -10.8128 +TA -10.813 +▁Princess -10.8134 +▁Hell -10.8134 +▁forcing -10.8149 +▁slavery -10.8152 +▁naturally -10.8153 +▁fund -10.8153 +sse -10.8154 +▁sinema -10.8155 +▁coat -10.8156 +▁please -10.8156 +▁loved -10.8156 +▁Sur -10.8157 +▁reader -10.8158 +▁Zo -10.8159 +▁worse -10.816 +▁Melbourne -10.8162 +▁reveal -10.8163 +▁flew -10.8164 +▁infections -10.8165 +▁1925 -10.8167 +▁Hero -10.8167 +▁Roosevelt -10.8168 +▁suggesting -10.8168 +ffer -10.8169 +aki -10.817 +▁console -10.8178 +▁Simpson -10.8182 +▁Convention -10.8184 +▁execution -10.8186 +▁reaches -10.8187 +▁3. -10.8187 +enberg -10.8188 +▁improving -10.8188 +▁burning -10.8191 +▁laboratory -10.8194 +▁Country -10.8198 +▁perceived -10.8198 +ters -10.8199 +▁withdraw -10.8203 +las -10.8203 +ä -10.8203 +▁93 -10.8204 +▁grass -10.8206 +▁amongst -10.8206 +▁vol -10.8207 +sis -10.821 +▁natirèl -10.8211 +▁Front -10.8216 +-1 -10.8221 +▁revenue -10.8225 +▁Seattle -10.8229 +▁rough -10.8229 +▁militia -10.8232 +▁Rat -10.8237 +▁tribute -10.8239 +▁markets -10.8243 +▁mask -10.8244 +▁dam -10.8246 +▁Claude -10.8247 +▁raid -10.8247 +▁Austrian -10.825 +▁seal -10.8251 +▁Charlie -10.8253 +▁140 -10.8255 +▁Ur -10.8256 +▁instrumental -10.8257 +▁Saturday -10.8258 +▁Information -10.8259 +▁legend -10.8259 +point -10.826 +▁agencies -10.8261 +▁Raw -10.8266 +-3 -10.8268 +▁Croatia -10.8268 +▁crack -10.8269 +▁Administration -10.827 +▁convert -10.8271 +▁copper -10.8272 +▁tag -10.8275 +▁Br -10.8278 +â -10.828 +▁labour -10.8281 +▁thereafter -10.8283 +93 -10.8285 +▁1924 -10.8285 +▁Friday -10.8289 +42 -10.829 +▁Guardian -10.8294 +▁opponents -10.83 +▁occasion -10.83 +▁Still -10.8301 +▁export -10.8301 +▁junction -10.8302 +▁restricted -10.8306 +▁candidates -10.8307 +▁branches -10.8308 +▁bearing -10.8309 +▁Warner -10.831 +▁Mil -10.8317 +▁participation -10.8317 +▁Blu -10.8319 +▁alignment -10.8319 +vol -10.8322 +▁Initially -10.8323 +lat -10.8323 +▁1909 -10.8325 +aga -10.8326 +▁households -10.8326 +▁administrative -10.8327 +app -10.8331 +▁91 -10.8336 +▁Sy -10.8338 +▁eliminated -10.834 +▁videos -10.8342 +▁bull -10.8343 +▁Web -10.8343 +▁predicted -10.8344 +▁connections -10.8345 +▁imperial -10.8345 +▁ba -10.8347 +▁inhabitants -10.8349 +▁domain -10.835 +▁lab -10.8351 +▁retail -10.8351 +▁polar -10.8352 +▁survivors -10.8352 +▁basin -10.8353 +▁attitude -10.8358 +▁1908 -10.8358 +ines -10.8359 +▁premiered -10.8361 +▁earn -10.8362 +▁liberal -10.8364 +rate -10.8367 +▁conversation -10.8368 +▁reverse -10.8369 +▁joining -10.8369 +▁Section -10.8371 +▁oral -10.8373 +▁Mun -10.8374 +▁NFL -10.8377 +▁nose -10.838 +▁impressed -10.838 +▁junior -10.838 +▁skull -10.8382 +▁communicate -10.8383 +▁artistic -10.8384 +▁Dance -10.8391 +▁pregnancy -10.8392 +▁poorly -10.8395 +▁willing -10.8398 +▁seriously -10.8398 +cell -10.84 +02 -10.84 +▁empire -10.8403 +▁Hong -10.8403 +ON -10.8407 +▁substance -10.8408 +CC -10.8408 +ave -10.8408 +▁contribution -10.8409 +▁97 -10.8415 +▁demo -10.8419 +▁dispute -10.8419 +▁Mother -10.842 +▁arrive -10.8422 +▁paint -10.8423 +▁fairly -10.8424 +▁Pakistan -10.8426 +▁Mur -10.8427 +06 -10.8428 +▁situated -10.8431 +▁op -10.8431 +▁Small -10.8432 +cus -10.8432 +ode -10.8434 +▁resigned -10.8435 +▁hull -10.8435 +▁reportedly -10.8437 +osaurus -10.8442 +▁asks -10.8449 +▁NBC -10.8454 +▁tight -10.8458 +eri -10.846 +▁Unit -10.8463 +▁CR -10.8463 +▁Category -10.8465 +▁Margaret -10.8465 +▁jet -10.8466 +▁Dead -10.8467 +72 -10.8469 +▁moments -10.8474 +gre -10.8475 +▁races -10.8478 +▁gr -10.8478 +▁drivers -10.848 +▁Crown -10.8483 +▁exhibit -10.8484 +▁powered -10.8485 +rant -10.8486 +▁mill -10.8487 +▁topics -10.8489 +spir -10.8489 +▁Ven -10.8493 +▁raising -10.8497 +▁comp -10.8498 +▁grey -10.85 +▁konte -10.8502 +pu -10.8506 +▁mild -10.8506 +▁footage -10.8508 +▁Belgium -10.851 +▁duration -10.8513 +▁behalf -10.8513 +53 -10.8514 +▁reactions -10.8514 +▁Pra -10.8517 +▁Child -10.8519 +▁dynasty -10.8519 +gger -10.852 +▁MP -10.8522 +▁Security -10.8524 +▁affairs -10.8526 +▁Edge -10.8529 +▁organisation -10.8534 +▁pump -10.8535 +RI -10.8537 +▁vitamin -10.8542 +▁competitive -10.8543 +▁Fred -10.8544 +▁impression -10.8545 +▁apartment -10.8545 +▁Luis -10.8547 +▁1923 -10.855 +▁categories -10.8551 +▁Father -10.8555 +ante -10.8563 +▁seats -10.8563 +▁mood -10.8566 +ira -10.857 +▁Batman -10.8572 +▁Ice -10.8572 +▁Philippines -10.8575 +▁Seven -10.8578 +▁psychological -10.8578 +▁pregnant -10.858 +▁ruling -10.8581 +▁Cam -10.8587 +▁planets -10.8588 +▁publicly -10.8591 +▁realized -10.8592 +▁statue -10.8594 +▁boundary -10.8598 +▁Dave -10.86 +col -10.8604 +▁constitution -10.8604 +▁clip -10.8605 +▁molecules -10.8607 +hen -10.8611 +▁physics -10.8612 +▁filter -10.8612 +▁click -10.8613 +▁Angle -10.8614 +ple -10.8614 +▁84 -10.8615 +▁Bus -10.8616 +▁Fish -10.8617 +▁customers -10.8618 +▁gear -10.8618 +▁variable -10.862 +▁reward -10.8623 +▁Spirit -10.8623 +▁Kon -10.8624 +FC -10.8625 +▁aggressive -10.8625 +▁mirror -10.8627 +▁wet -10.863 +▁electro -10.8633 +▁celebrated -10.8634 +▁prompted -10.8635 +▁striking -10.8637 +▁simultaneously -10.8639 +▁Para -10.8639 +▁entertainment -10.8641 +▁Had -10.8648 +▁argues -10.8649 +▁regulations -10.865 +▁beauty -10.8654 +▁comprehensive -10.8656 +▁Global -10.8656 +▁Trust -10.8661 +lie -10.8661 +▁Wild -10.8663 +▁preserve -10.8664 +▁89 -10.8665 +▁triple -10.8666 +▁solve -10.8666 +73 -10.8674 +▁Auto -10.8674 +lip -10.8675 +▁occasions -10.8678 +▁tu -10.8679 +▁lessons -10.8681 +▁Walker -10.8685 +nell -10.8686 +▁restaurant -10.8686 +▁egg -10.8687 +▁shut -10.8688 +▁vaccine -10.8694 +phy -10.8696 +▁vs -10.8696 +ila -10.8697 +▁restore -10.8699 +▁monitoring -10.8703 +▁Clo -10.8703 +non -10.8705 +▁Bee -10.871 +▁risks -10.8711 +▁queen -10.8711 +▁magic -10.8712 +▁acted -10.8713 +▁Rev -10.8716 +▁RAAF -10.8717 +vers -10.8719 +▁bypass -10.872 +▁recover -10.8722 +▁infected -10.8723 +▁muscles -10.8724 +▁improvements -10.8728 +try -10.8729 +▁closing -10.8731 +▁fallen -10.8731 +▁va -10.8733 +▁Agency -10.8734 +▁theories -10.8735 +▁trail -10.8736 +struct -10.8737 +▁signing -10.8738 +▁newspapers -10.8739 +▁mixture -10.8743 +▁adventure -10.8744 +▁squad -10.8745 +▁insurance -10.8746 +▁bridges -10.8747 +▁wonder -10.8749 +▁flash -10.8749 +▁Hotel -10.8752 +-2 -10.8753 +▁RAF -10.8754 +▁vegetables -10.8754 +right -10.8757 +▁blow -10.8759 +▁stuff -10.8761 +▁license -10.8762 +▁sharing -10.8762 +▁significance -10.8763 +▁zero -10.8765 +▁cl -10.8767 +▁departed -10.8769 +▁Alice -10.8769 +▁Without -10.8772 +▁Med -10.8772 +▁universal -10.8772 +▁Louisiana -10.8776 +▁expert -10.8776 +▁valid -10.8776 +▁shield -10.878 +▁implemented -10.8782 +mobil -10.8783 +▁attract -10.8784 +▁Alaska -10.8785 +▁construct -10.8789 +▁hybrid -10.8791 +▁athletes -10.8794 +▁essentially -10.8795 +▁distinguished -10.8799 +▁Care -10.8799 +▁bèzbòl -10.8802 +▁myth -10.8806 +▁enhance -10.8808 +▁lists -10.8811 +▁Jam -10.8812 +▁Vincent -10.8813 +▁sees -10.8813 +▁fifty -10.8814 +▁Senator -10.8815 +▁86 -10.8815 +▁shorter -10.882 +▁visiting -10.882 +▁Born -10.8821 +▁airline -10.8823 +ologist -10.8824 +54 -10.883 +▁procedures -10.883 +62 -10.8832 +▁victim -10.8833 +▁pulled -10.8837 +pha -10.8837 +▁Gaga -10.8837 +▁Environmental -10.884 +▁Services -10.884 +▁Mid -10.884 +▁App -10.884 +▁sequences -10.8841 +▁travelled -10.8842 +▁Any -10.8844 +ear -10.8848 +mic -10.8848 +▁battleship -10.8849 +▁depends -10.885 +cia -10.8852 +▁distinguish -10.8855 +hard -10.8858 +cri -10.8859 +▁Nielsen -10.8861 +▁magnetic -10.8863 +▁excess -10.8865 +▁Iraq -10.8868 +▁Somerset -10.8871 +▁cannon -10.8874 +▁texts -10.8875 +▁monument -10.8877 +▁Off -10.8877 +sson -10.8879 +▁Industry -10.8879 +▁replacing -10.8879 +▁1880 -10.8883 +▁chest -10.8887 +nn -10.889 +▁withdrew -10.889 +ado -10.8891 +bound -10.8891 +pers -10.8892 +▁sta -10.8894 +▁outdoor -10.89 +▁gathered -10.8902 +▁dependent -10.8905 +▁lòt -10.8907 +▁Obama -10.8909 +RE -10.891 +▁northward -10.8912 +▁Kin -10.8913 +▁usage -10.8914 +vid -10.8914 +▁wheel -10.8915 +▁severely -10.8915 +▁proof -10.8916 +iness -10.8918 +▁trigger -10.8918 +▁Dev -10.8919 +This -10.8923 +▁auto -10.8923 +▁chamber -10.8924 +▁raw -10.8924 +acy -10.8926 +yè -10.8928 +gra -10.8929 +▁novels -10.8929 +▁VI -10.893 +▁variation -10.8932 +▁observe -10.8933 +idae -10.8935 +ska -10.8937 +▁Race -10.8939 +▁dollar -10.8943 +▁accessible -10.8949 +▁Historic -10.8949 +▁assisted -10.8951 +▁Construction -10.8952 +▁Campbell -10.8953 +lim -10.8953 +bla -10.8965 +▁Mari -10.8965 +▁1905 -10.8969 +▁maps -10.8969 +▁arriving -10.897 +▁Roy -10.897 +▁Organization -10.897 +▁bid -10.8974 +▁Cy -10.8975 +▁strategic -10.8975 +ela -10.8976 +burn -10.8976 +rk -10.8981 +▁Pal -10.8984 +▁demon -10.8987 +▁plis -10.8989 +▁Snow -10.8989 +▁equally -10.899 +▁whatever -10.8994 +▁assignment -10.8995 +▁funeral -10.8995 +▁MS -10.8995 +▁Christianity -10.9 +rang -10.9002 +▁Steven -10.9002 +▁Harvard -10.9011 +▁Vietnamese -10.9012 +▁Bat -10.9012 +▁AI -10.9013 +ali -10.9014 +▁assembly -10.9019 +▁Dog -10.902 +▁controls -10.9023 +▁92 -10.9023 +▁attendance -10.903 +.3 -10.9037 +▁magnitude -10.9038 +wer -10.9041 +▁involve -10.9043 +tation -10.9043 +ked -10.9046 +▁establishing -10.9046 +▁marking -10.9048 +▁forty -10.9049 +▁identical -10.9051 +▁orange -10.9051 +▁upgraded -10.9054 +fully -10.9055 +▁na -10.9057 +wick -10.9063 +cat -10.9064 +▁Medal -10.9067 +▁factory -10.9072 +▁completing -10.9076 +AM -10.9078 +▁enable -10.9078 +▁Similarly -10.9078 +▁Peace -10.908 +▁tenth -10.9081 +▁partial -10.9081 +▁recognised -10.9082 +▁annually -10.9091 +▁courses -10.9093 +▁database -10.9096 +▁signature -10.9097 +▁lesson -10.9099 +▁doctors -10.9106 +▁Gil -10.9109 +▁cash -10.911 +pot -10.9112 +▁1907 -10.9113 +▁suspended -10.9115 +▁Cold -10.9117 +▁tra -10.912 +▁poems -10.912 +▁cargo -10.9123 +▁1870 -10.9124 +ua -10.9127 +ico -10.9128 +▁Reserve -10.9129 +chen -10.9131 +▁complicated -10.9132 +▁Ian -10.9134 +▁Bro -10.9134 +OS -10.914 +▁dense -10.9147 +▁Lennon -10.9148 +▁internet -10.9149 +▁Mus -10.915 +▁Keep -10.9153 +▁fifteen -10.9154 +▁constantly -10.9157 +▁kinds -10.9157 +▁industries -10.9158 +▁rice -10.9163 +▁challenging -10.9164 +▁Step -10.9166 +▁compare -10.917 +▁Word -10.9176 +▁sole -10.9177 +ching -10.9178 +wen -10.918 +ben -10.9181 +▁Pin -10.9182 +▁j -10.919 +▁Week -10.9191 +▁Xbox -10.9191 +▁Fan -10.9192 +▁excessive -10.9193 +▁temporarily -10.9193 +▁Carr -10.9194 +cker -10.9195 +▁coin -10.9199 +▁Wing -10.9203 +▁Rain -10.9207 +▁beliefs -10.9209 +▁shock -10.9209 +▁nice -10.9211 +▁finance -10.9213 +▁produces -10.9218 +▁sustainable -10.922 +ust -10.9222 +▁Mrs -10.9225 +▁Shin -10.9227 +▁Hungary -10.9229 +▁Catherine -10.9232 +▁constitutional -10.9232 +▁flower -10.9234 +▁Wars -10.9234 +ides -10.9237 +▁Manhattan -10.9238 +▁ballad -10.9243 +▁Prize -10.9243 +ST -10.9244 +▁(18 -10.9247 +▁feels -10.9247 +▁repeatedly -10.9248 +▁Susan -10.9255 +▁Depression -10.9258 +▁cards -10.9261 +bul -10.9263 +▁networks -10.9263 +▁Var -10.9265 +▁settlers -10.9268 +▁pitched -10.927 +▁altitude -10.9274 +▁communist -10.9274 +▁Israeli -10.9276 +▁taxes -10.9279 +▁horror -10.928 +▁indicating -10.9282 +▁Spears -10.9285 +▁march -10.929 +▁shells -10.9298 +▁Cla -10.9302 +arm -10.9304 +▁Ridge -10.9305 +sia -10.9307 +ivity -10.9307 +▁compilation -10.9308 +thi -10.9311 +▁altered -10.9311 +▁priest -10.9315 +▁emotions -10.9316 +▁Secret -10.9318 +▁ed -10.9319 +▁Gal -10.9319 +▁functional -10.9319 +▁platinum -10.9321 +▁layers -10.9322 +TV -10.933 +▁screening -10.9331 +▁Independent -10.9331 +▁governments -10.9334 +La -10.9335 +▁chemicals -10.9335 +els -10.9336 +▁blind -10.9337 +▁cult -10.9338 +51 -10.934 +▁Township -10.9344 +▁Bri -10.9344 +hol -10.9349 +sburg -10.9349 +▁Chronicle -10.935 +▁legislature -10.935 +ort -10.935 +▁fin -10.9351 +▁tele -10.9351 +▁Mah -10.9353 +▁specialist -10.9356 +▁shipping -10.9359 +▁origins -10.9361 +▁whilst -10.9362 +▁trap -10.9362 +▁Karl -10.9363 +▁institution -10.9364 +▁wasn -10.9364 +▁cattle -10.9364 +▁clothes -10.9368 +▁Gray -10.9368 +▁ju -10.9368 +gr -10.937 +▁prayer -10.9372 +▁estimate -10.9373 +▁spoken -10.9373 +▁lie -10.9375 +▁empty -10.9376 +▁celebrate -10.9378 +▁Nar -10.9378 +▁criticised -10.9379 +▁Flight -10.9382 +pic -10.9385 +87 -10.9386 +▁framework -10.9386 +▁favorable -10.9387 +▁photographs -10.9389 +▁orchestra -10.9391 +▁toll -10.9391 +▁Trade -10.9392 +▁fighters -10.9392 +▁centers -10.9393 +▁placing -10.9394 +▁sheet -10.9395 +yon -10.9396 +▁installation -10.9399 +▁meter -10.94 +▁cho -10.9401 +▁battles -10.9403 +▁Learning -10.9405 +▁cousin -10.9406 +ois -10.941 +ult -10.9412 +▁toxic -10.9414 +▁Islamic -10.9415 +▁mat -10.9416 +▁lifetime -10.942 +▁facts -10.942 +▁Warren -10.9421 +▁instructions -10.9424 +▁wake -10.9426 +▁sistèm -10.9427 +▁Wolf -10.9435 +lt -10.9435 +gle -10.9436 +late -10.9437 +▁mal -10.9438 +press -10.944 +▁flows -10.9441 +▁Sto -10.9442 +▁grid -10.9444 +▁Switzerland -10.9445 +▁heritage -10.9445 +▁shoulder -10.9448 +▁kidney -10.9449 +▁carefully -10.945 +▁Local -10.9452 +▁decreased -10.9455 +▁outcome -10.9458 +▁counties -10.9458 +▁Antonio -10.9461 +▁Place -10.9462 +▁reviewers -10.9463 +▁switch -10.9464 +cap -10.9464 +▁machines -10.9466 +▁bore -10.9477 +▁Hunt -10.9478 +-- -10.948 +▁Darwin -10.9481 +▁continent -10.9481 +▁Jonathan -10.9482 +och -10.9483 +▁Liberal -10.9485 +▁Kra -10.9485 +▁ages -10.9486 +▁1906 -10.9488 +▁Dylan -10.9491 +aud -10.9491 +mun -10.9492 +▁distant -10.9493 +▁Portland -10.9493 +ient -10.9493 +▁addressed -10.9495 +▁friendship -10.9498 +▁Change -10.9499 +▁ven -10.9499 +▁Saxon -10.9501 +lla -10.9507 +▁Graham -10.9508 +▁tough -10.9509 +▁bombing -10.951 +cin -10.951 +▁filed -10.9512 +▁cruisers -10.9514 +▁wins -10.9514 +▁sword -10.9516 +▁concerning -10.9516 +▁Base -10.9517 +▁hat -10.9517 +▁sending -10.9517 +ched -10.952 +▁Ontario -10.9522 +▁Islam -10.9527 +▁opponent -10.9529 +▁escaped -10.9529 +94 -10.953 +▁permit -10.9532 +▁Kan -10.9535 +▁neutral -10.9536 +▁trading -10.9539 +▁matematik -10.954 +▁Fund -10.954 +▁shallow -10.9543 +mond -10.9543 +▁Bou -10.9545 +▁List -10.9545 +yer -10.9548 +▁gray -10.9549 +▁environments -10.9552 +▁affair -10.9553 +▁merchant -10.9555 +▁perception -10.9561 +▁μ -10.9563 +▁focuses -10.9566 +74 -10.9569 +▁Montreal -10.9572 +▁span -10.9575 +▁Mission -10.9575 +▁varied -10.9577 +▁Link -10.9578 +ú -10.9578 +▁prospect -10.958 +▁meetings -10.9581 +▁adopt -10.9582 +▁bronze -10.9585 +▁parish -10.9586 +MA -10.9588 +▁evident -10.9593 +▁Carlos -10.9594 +▁ammunition -10.9595 +▁necessarily -10.9597 +▁meta -10.9598 +▁und -10.9599 +▁originated -10.96 +▁Wal -10.9605 +▁drove -10.9606 +▁fatal -10.9607 +▁Der -10.9611 +▁civilian -10.9612 +▁Economic -10.9614 +▁westward -10.9615 +▁lighting -10.9616 +▁Trek -10.9617 +fall -10.962 +▁drum -10.9623 +▁pilots -10.9628 +▁Ward -10.963 +▁san -10.963 +▁citing -10.9634 +▁rocks -10.9637 +▁Hand -10.9639 +ori -10.9642 +▁Mir -10.9642 +syon -10.9646 +ann -10.9649 +▁artwork -10.9649 +▁weekly -10.9651 +▁promised -10.9652 +▁signals -10.9654 +read -10.9655 +▁bases -10.9656 +▁pl -10.9656 +▁package -10.9657 +▁victories -10.9662 +▁Forces -10.9666 +▁dynamic -10.9666 +▁destroyers -10.9666 +▁shelter -10.9667 +▁Stan -10.967 +▁Whit -10.9671 +▁lift -10.9677 +▁qualified -10.9683 +▁connecting -10.9684 +▁deeply -10.9685 +rab -10.9687 +▁indigenous -10.9688 +▁syn -10.9689 +▁turrets -10.9691 +▁wore -10.9692 +▁Heritage -10.9693 +▁scan -10.9702 +▁supplement -10.971 +related -10.9716 +ically -10.9716 +atic -10.9716 +▁USD -10.9723 +▁personally -10.9727 +▁traditions -10.9728 +▁hockey -10.9728 +▁resumed -10.973 +▁Never -10.9732 +▁jazz -10.9733 +▁lieutenant -10.9733 +pur -10.9737 +▁tips -10.9738 +▁Labour -10.9738 +▁Sullivan -10.9739 +▁interact -10.974 +▁hook -10.9742 +▁rebellion -10.9744 +▁Giants -10.9744 +▁fever -10.9744 +▁Grade -10.975 +▁Mitchell -10.9751 +▁Based -10.9755 +▁Tro -10.9756 +▁communications -10.9757 +▁jurisdiction -10.9757 +▁minority -10.9757 +▁Albums -10.9758 +▁Communist -10.9761 +▁Connecticut -10.9762 +▁badly -10.9766 +▁360 -10.9767 +ake -10.9769 +▁fastest -10.9769 +▁bombers -10.9771 +▁similarly -10.9774 +▁Baby -10.9775 +▁developers -10.9779 +▁Jupiter -10.9779 +ech -10.9784 +▁hence -10.9785 +▁unlikely -10.9788 +▁Jerusalem -10.9791 +▁concentrated -10.9792 +▁finale -10.9792 +An -10.9792 +▁loose -10.9792 +▁Ty -10.9793 +▁est -10.9799 +gram -10.9801 +▁Stein -10.9803 +rit -10.9806 +▁diamond -10.9807 +ect -10.9812 +▁intensified -10.9815 +▁Wil -10.9817 +▁Tag -10.9818 +▁tension -10.982 +▁soldier -10.982 +▁disturbance -10.9821 +▁liked -10.9821 +▁Byografi -10.9823 +▁comment -10.9824 +▁stomach -10.9824 +▁hide -10.9825 +▁François -10.983 +▁fu -10.9832 +▁tan -10.9838 +▁permitted -10.9841 +▁register -10.9841 +▁Tokyo -10.9841 +ert -10.9842 +▁integrated -10.9842 +aka -10.9843 +HA -10.9845 +▁Rick -10.9848 +▁wealthy -10.9851 +▁180 -10.9853 +ache -10.9853 +▁occurring -10.9854 +▁thereby -10.9855 +▁batteries -10.9857 +dd -10.9857 +▁stretch -10.9868 +▁promise -10.9868 +ele -10.9869 +omy -10.987 +▁jaw -10.9871 +▁serial -10.9873 +una -10.9874 +▁alleged -10.9877 +▁demonstrate -10.9879 +▁Past -10.9879 +▁Denmark -10.9881 +▁fix -10.9885 +▁implementation -10.9887 +▁thanks -10.9887 +▁prince -10.9888 +ways -10.9888 +▁repairs -10.9892 +▁allies -10.9893 +ware -10.9898 +▁sail -10.9899 +LA -10.9901 +▁revolt -10.9903 +▁math -10.9904 +▁Enterprise -10.9906 +▁blend -10.9907 +▁lying -10.9908 +▁releases -10.9909 +▁affects -10.991 +atory -10.9911 +▁guilty -10.9914 +▁dock -10.9915 +▁mayor -10.9917 +▁83 -10.9918 +▁Tamil -10.9919 +▁gift -10.9919 +▁diagnosed -10.992 +▁prototype -10.992 +▁Pr -10.9921 +gh -10.9922 +▁heading -10.9924 +▁Microsoft -10.9936 +▁Gene -10.994 +▁USS -10.9941 +▁tune -10.9942 +AD -10.9943 +▁Baker -10.9944 +▁stability -10.9953 +▁burned -10.9955 +▁withdrawal -10.9955 +▁Officer -10.9959 +▁1904 -10.9959 +▁ABC -10.9959 +▁nervous -10.996 +▁chapel -10.9964 +▁Mis -10.9965 +▁coffee -10.9965 +▁diver -10.9971 +wall -10.9972 +▁initiated -10.9975 +▁choices -10.9975 +▁translated -10.9976 +▁Eu -10.9976 +▁preparing -10.9978 +▁spotted -10.998 +▁architect -10.998 +▁Originally -10.9981 +▁Eventually -10.9983 +▁alert -10.9985 +▁gl -10.9987 +▁hurt -10.999 +tom -10.999 +▁Bros -10.9992 +▁boundaries -10.9992 +▁Player -10.9995 +▁eruption -10.9995 +▁Hudson -10.9995 +▁listen -10.9997 +▁grain -10.9998 +inger -11 +▁preventing -11.0002 +▁Gor -11.0007 +▁Cast -11.0008 +š -11.0011 +▁Horn -11.0012 +▁Disease -11.0012 +▁announcement -11.0013 +▁epizòd -11.0014 +▁impacts -11.0019 +▁swimming -11.002 +▁Kat -11.0022 +ination -11.0023 +▁ranks -11.0024 +▁Sciences -11.003 +▁Jefferson -11.0032 +▁Portuguese -11.0033 +cycl -11.0034 +▁molecular -11.0036 +▁underlying -11.0036 +▁distinction -11.0038 +▁Rachel -11.0041 +▁habit -11.0042 +▁Grammy -11.0042 +▁tiny -11.0043 +▁Reg -11.0044 +▁Federation -11.0046 +▁kit -11.005 +tik -11.0053 +▁rebuilt -11.0064 +▁credits -11.0065 +▁beneath -11.0065 +▁Table -11.0065 +▁sank -11.0067 +▁wound -11.0068 +▁stones -11.007 +▁architectural -11.007 +world -11.0071 +▁str -11.0076 +▁attraction -11.0077 +▁exercises -11.0077 +▁É -11.008 +itt -11.0081 +▁tap -11.0082 +▁advertising -11.0083 +▁tubes -11.0083 +▁Model -11.0084 +▁mail -11.0085 +▁sunk -11.0087 +91 -11.0088 +▁precipitation -11.0091 +born -11.0092 +▁eliminate -11.0092 +▁1901 -11.0093 +▁ski -11.0096 +▁import -11.0098 +CS -11.0099 +aba -11.0101 +▁Nine -11.0102 +ook -11.0102 +▁accommodate -11.0102 +▁concerts -11.0104 +▁closest -11.0104 +ern -11.0105 +dent -11.0106 +▁Set -11.0107 +▁Page -11.0108 +▁coup -11.011 +▁thoughts -11.0111 +▁membership -11.0113 +▁edited -11.0115 +▁migration -11.0116 +▁venture -11.0117 +mark -11.0117 +▁statements -11.0117 +DS -11.012 +▁Australians -11.0121 +▁reviewed -11.0123 +▁competed -11.0126 +▁destination -11.0128 +cur -11.013 +▁Dakota -11.0134 +▁curriculum -11.0134 +▁supplied -11.0134 +▁arise -11.0134 +▁substitute -11.0135 +▁cognitive -11.0135 +▁smart -11.0136 +ault -11.0136 +▁suspect -11.0138 +▁Hunter -11.0138 +part -11.014 +▁Billy -11.014 +▁examined -11.0142 +▁keyboard -11.0143 +▁Qua -11.0144 +ash -11.0144 +lines -11.0145 +▁ob -11.0146 +▁representatives -11.0148 +▁Delaware -11.015 +▁qui -11.0151 +▁Pedro -11.0152 +bid -11.0156 +▁possess -11.0158 +▁fruits -11.0158 +SS -11.0159 +▁Honor -11.016 +▁ordinary -11.0162 +zen -11.0163 +▁Say -11.0163 +▁index -11.0165 +▁Bru -11.0165 +▁membrane -11.0166 +▁Mountains -11.0166 +▁Interstate -11.0168 +▁bonus -11.0168 +▁nutrients -11.0169 +cies -11.0172 +▁Nixon -11.0176 +NS -11.0176 +.4 -11.0177 +path -11.018 +▁Farm -11.0182 +▁worn -11.0182 +▁sq -11.0182 +▁button -11.0188 +▁demanded -11.0191 +own -11.0195 +▁Deep -11.0201 +ière -11.0202 +▁nerve -11.0205 +▁Author -11.0208 +▁divide -11.0208 +▁armament -11.021 +▁mines -11.021 +▁organize -11.0211 +▁Ap -11.0212 +▁Google -11.0213 +IT -11.0215 +TS -11.0215 +ography -11.0216 +▁detected -11.0218 +▁scrap -11.0218 +arch -11.022 +▁storms -11.022 +umb -11.0221 +▁breath -11.0224 +ras -11.0227 +▁rocket -11.0229 +▁flights -11.0229 +▁racing -11.023 +▁consideration -11.0231 +ij -11.0232 +▁Ye -11.0233 +phe -11.0234 +▁afford -11.0234 +▁audiences -11.0234 +▁Owen -11.0235 +▁suddenly -11.0235 +cept -11.0237 +▁Amy -11.0239 +▁decides -11.024 +etic -11.0242 +▁defeating -11.0244 +▁brings -11.0245 +▁konnen -11.0248 +▁abandon -11.025 +MS -11.0251 +elo -11.0251 +ison -11.0257 +▁yield -11.0257 +▁Overall -11.0257 +ame -11.0259 +▁erected -11.026 +▁Atlanta -11.0262 +ude -11.0266 +▁publishing -11.0268 +nik -11.0271 +rous -11.0274 +▁computers -11.0274 +▁enormous -11.0274 +▁Harvey -11.0276 +▁Rico -11.0277 +▁burial -11.0278 +iva -11.0279 +▁exclusively -11.0283 +▁knowing -11.0283 +▁Glen -11.0285 +▁Az -11.0286 +▁parliament -11.0287 +▁Christians -11.0288 +▁bread -11.0288 +▁audition -11.0294 +▁fate -11.0294 +▁recordings -11.0295 +▁chemistry -11.0299 +▁lacked -11.0299 +▁array -11.03 +▁rotation -11.0301 +▁Tam -11.0301 +▁Maya -11.0303 +▁Watch -11.0307 +▁treatments -11.0312 +▁phenomenon -11.0316 +▁visits -11.0317 +▁Number -11.0317 +tract -11.0319 +▁petition -11.032 +▁engineers -11.032 +▁promoting -11.0321 +▁funded -11.0324 +▁challenged -11.0329 +▁virtually -11.0329 +▁Virgin -11.0329 +ifying -11.0329 +▁neighborhood -11.033 +▁partners -11.0331 +▁Universal -11.0332 +▁Dy -11.0333 +▁Finn -11.0334 +▁exploration -11.0335 +ographic -11.0336 +▁measuring -11.0337 +▁carries -11.0338 +▁Syria -11.0341 +▁Sometimes -11.0341 +mu -11.0344 +▁exam -11.0346 +▁Books -11.0347 +wed -11.0348 +▁watershed -11.0349 +▁remnants -11.0351 +▁Halo -11.0353 +▁Bach -11.0355 +▁Dick -11.0355 +zu -11.0358 +▁cultures -11.0358 +▁terminal -11.0358 +rel -11.0358 +▁Code -11.036 +test -11.0361 +Le -11.0364 +DA -11.0365 +▁calm -11.0365 +▁desired -11.0367 +▁1903 -11.0367 +▁EU -11.0368 +▁printing -11.0369 +▁uncle -11.0373 +▁Rod -11.0374 +▁Rosa -11.0375 +▁theater -11.0377 +▁voiced -11.0378 +▁acknowledged -11.0379 +ital -11.038 +▁threw -11.0381 +▁Figure -11.0386 +▁rev -11.039 +ree -11.0393 +RC -11.0394 +▁Side -11.0394 +▁scientist -11.0394 +▁ease -11.0395 +▁Moreover -11.0396 +▁overseas -11.0397 +▁holes -11.04 +▁corresponding -11.0401 +▁inclusion -11.0402 +PS -11.0407 +▁Training -11.0407 +▁Hockey -11.0408 +▁armies -11.0408 +▁birthday -11.0411 +▁VII -11.0413 +▁interactions -11.0414 +los -11.0416 +▁Hampshire -11.0419 +▁dancing -11.0424 +▁smoking -11.0424 +▁tribe -11.0425 +▁1000 -11.0426 +▁react -11.0429 +band -11.0431 +▁Napoleon -11.0433 +▁portions -11.0434 +▁ou -11.0435 +▁universities -11.0437 +▁traveling -11.044 +▁Monte -11.0443 +▁cu -11.0446 +▁argue -11.0446 +▁confusion -11.0447 +▁Name -11.0447 +▁carriers -11.0449 +▁Laboratory -11.045 +92 -11.0453 +▁Il -11.0454 +OR -11.0456 +▁instruction -11.0456 +▁Tree -11.0457 +▁tackle -11.0457 +▁Penn -11.046 +▁Amendment -11.0461 +▁attained -11.0461 +▁Kirk -11.0463 +▁Solar -11.0467 +▁referring -11.0467 +▁cor -11.0468 +▁publications -11.047 +▁Perry -11.0472 +▁failing -11.0472 +duction -11.0475 +bus -11.0476 +▁messages -11.0481 +▁terrain -11.0482 +▁assists -11.0483 +▁rec -11.0484 +▁believing -11.0486 +▁Dia -11.0489 +▁Foreign -11.049 +▁Victorian -11.0493 +▁overcome -11.0494 +▁Fab -11.0495 +▁mainland -11.0496 +▁handling -11.0497 +away -11.0502 +▁Donald -11.0506 +▁wildlife -11.0509 +▁Reading -11.051 +▁Kurt -11.051 +▁Record -11.051 +Al -11.0511 +master -11.0511 +▁Trail -11.0513 +zan -11.0514 +ksyon -11.0515 +▁requiring -11.0516 +▁unclear -11.0516 +° -11.0517 +card -11.0517 +▁imagery -11.0518 +▁Hills -11.0521 +▁atomic -11.0521 +cht -11.0525 +▁Box -11.0525 +▁Market -11.0526 +▁sha -11.0528 +▁notion -11.0529 +▁Protestant -11.053 +▁gods -11.0531 +▁platforms -11.0537 +▁clay -11.0537 +lation -11.0538 +▁Study -11.0538 +▁quiet -11.0543 +▁miss -11.0543 +▁uncertain -11.0544 +▁Fra -11.055 +▁implement -11.0551 +▁rounds -11.0551 +▁Ce -11.0552 +▁depend -11.0553 +▁secretary -11.0558 +▁volumes -11.0559 +▁hydro -11.056 +▁horizontal -11.056 +▁1902 -11.0561 +▁slight -11.0561 +500 -11.0561 +dri -11.0561 +▁08 -11.0563 +▁patrol -11.0563 +ugh -11.0564 +▁Turkey -11.0564 +lly -11.0566 +▁evaluation -11.0566 +▁generations -11.0566 +ister -11.0568 +▁threats -11.057 +▁Cop -11.0571 +▁absorb -11.0572 +▁voting -11.0573 +IN -11.0574 +▁feedback -11.0576 +▁pole -11.0577 +▁CE -11.0577 +”, -11.0578 +oe -11.0578 +▁Indies -11.0581 +▁approaching -11.0583 +AP -11.0584 +▁Critics -11.0585 +ère -11.0588 +▁initiative -11.059 +▁Gall -11.0592 +▁lung -11.0593 +▁offense -11.0596 +ema -11.0598 +▁steep -11.0599 +tail -11.06 +▁strongest -11.0604 +logy -11.0605 +▁attending -11.0605 +aries -11.0605 +▁districts -11.0606 +▁Math -11.0612 +▁repeat -11.0613 +▁Murphy -11.0614 +▁ruler -11.0615 +▁heir -11.0616 +oy -11.0617 +▁Source -11.0617 +▁predecessor -11.0618 +▁armored -11.0624 +▁aerial -11.0626 +table -11.0626 +▁humanity -11.0629 +▁Rad -11.0632 +▁remix -11.0633 +▁doctrine -11.0634 +▁dental -11.0635 +▁chord -11.0637 +▁removing -11.0643 +▁cotton -11.0643 +▁strengthened -11.0644 +▁struggled -11.0645 +rm -11.0647 +▁exclusive -11.0648 +▁Lucas -11.065 +▁gate -11.0653 +▁forget -11.0654 +▁documented -11.0656 +▁Pearl -11.0656 +aging -11.0658 +feld -11.0658 +▁favourite -11.066 +▁Century -11.0662 +ova -11.0663 +▁scattered -11.0663 +▁Action -11.0668 +pel -11.0669 +▁Again -11.067 +dit -11.0672 +▁Utah -11.0673 +▁drums -11.0675 +rom -11.0675 +▁guidelines -11.0675 +▁shares -11.0678 +▁fame -11.0679 +lac -11.0682 +▁knows -11.0682 +▁voyage -11.069 +▁realize -11.0691 +▁camps -11.0692 +▁listening -11.0692 +▁Chamber -11.0693 +▁105 -11.0695 +stri -11.0697 +▁Conservation -11.0697 +▁corporate -11.0697 +▁separation -11.0697 +rr -11.0702 +▁respective -11.0702 +▁Spe -11.0702 +box -11.0704 +▁spell -11.0705 +▁reporting -11.0712 +▁kW -11.0712 +▁linear -11.0714 +▁creates -11.0715 +▁Kill -11.0717 +▁pairs -11.0719 +▁typhoon -11.0724 +▁musician -11.0725 +▁specimen -11.0725 +▁Bird -11.0727 +▁witness -11.0727 +▁Soul -11.0728 +▁sisters -11.0728 +▁resist -11.0729 +▁Bla -11.0733 +▁insisted -11.0734 +▁Johnny -11.0736 +▁Express -11.0738 +zon -11.0738 +▁Province -11.0739 +▁cancelled -11.0739 +▁lion -11.0741 +set -11.0744 +▁advised -11.0744 +▁Oh -11.0744 +▁bath -11.0746 +èn -11.0747 +▁introduce -11.0749 +▁golden -11.0749 +▁variations -11.0749 +▁Fat -11.0751 +▁Shu -11.0751 +▁emerge -11.0753 +▁vegetation -11.0755 +free -11.0756 +▁Hit -11.0759 +▁Sho -11.076 +nate -11.0764 +kov -11.0764 +▁rational -11.0766 +▁grows -11.0767 +▁Arnold -11.0767 +▁1860 -11.0768 +▁Railroad -11.0769 +▁strange -11.0769 +yr -11.077 +▁absolute -11.0775 +▁patent -11.0777 +[ -11.0778 +US -11.0786 +▁Chapter -11.0787 +▁volunteers -11.0787 +▁banned -11.0788 +▁farming -11.0789 +▁Collection -11.0792 +▁Oak -11.0795 +▁fee -11.0796 +▁fabric -11.0796 +▁explosive -11.0797 +anda -11.0801 +Co -11.0801 +▁Cole -11.0802 +▁Village -11.0802 +▁Charlotte -11.0803 +▁files -11.0804 +▁Computer -11.0808 +zz -11.0812 +▁provincial -11.0812 +▁ste -11.0813 +▁Grove -11.0814 +▁helpful -11.0815 +▁faces -11.0819 +▁guitarist -11.082 +▁Philippe -11.0824 +▁beneficial -11.0825 +▁pursuit -11.0825 +▁pose -11.0826 +▁Jimmy -11.0826 +▁telephone -11.0831 +▁founding -11.0835 +▁attorney -11.0837 +▁interpreted -11.0837 +ía -11.0838 +▁Blues -11.0839 +oni -11.0842 +▁lanmè -11.0842 +▁Cra -11.0842 +ering -11.0843 +▁convince -11.0845 +fire -11.0846 +▁Buck -11.0849 +▁Indonesia -11.0849 +duc -11.0849 +▁Hope -11.085 +▁Ob -11.0851 +▁casting -11.0852 +▁4. -11.0855 +▁creatures -11.0855 +tile -11.0858 +▁mod -11.0861 +▁Collins -11.0866 +▁Mau -11.0866 +82 -11.0868 +▁Leslie -11.087 +bli -11.0874 +▁pink -11.0875 +▁> -11.0876 +▁Roll -11.0877 +▁calculated -11.0879 +▁villain -11.0884 +▁surprised -11.0889 +▁lover -11.0889 +ô -11.089 +serv -11.0891 +▁scholar -11.0892 +▁sur -11.0895 +▁employ -11.0895 +▁lawyer -11.0896 +▁monarch -11.0897 +▁09 -11.09 +▁patron -11.09 +▁Luke -11.0901 +▁Card -11.0901 +rim -11.0902 +▁Sri -11.0902 +▁focusing -11.0903 +▁Lou -11.0907 +▁Hawaii -11.0907 +▁mathematics -11.0907 +▁brush -11.0909 +▁noticed -11.091 +amp -11.0911 +tron -11.0914 +BA -11.0919 +▁reliable -11.092 +▁dioxide -11.0921 +▁fed -11.0921 +▁dive -11.0922 +▁sang -11.0928 +▁bulk -11.0928 +▁EP -11.0929 +▁Potter -11.0932 +▁dinner -11.0932 +▁warming -11.0936 +▁dying -11.0937 +▁Hans -11.0938 +type -11.094 +illo -11.0943 +▁Sony -11.0943 +▁Pad -11.0944 +▁organised -11.0945 +cen -11.0949 +LE -11.095 +rag -11.0953 +▁ekriven -11.0955 +▁les -11.0956 +▁Turner -11.0958 +▁realistic -11.0963 +▁impressive -11.0965 +▁myself -11.0965 +▁consciousness -11.0968 +roy -11.0969 +▁ga -11.0976 +▁remarked -11.0977 +ception -11.0979 +▁emerging -11.098 +▁Apollo -11.0982 +▁restrictions -11.0984 +▁finger -11.0985 +▁Kil -11.0986 +kill -11.0988 +▁deeper -11.0991 +▁Survey -11.0992 +pes -11.0992 +▁Mol -11.0997 +▁Phoenix -11.1005 +▁subspecies -11.1005 +▁talks -11.1011 +▁scores -11.1012 +▁assembled -11.1014 +▁acoustic -11.1015 +lf -11.1015 +cit -11.1016 +▁strict -11.1016 +▁bears -11.1018 +▁lasting -11.102 +▁Thi -11.1021 +▁assess -11.1022 +100 -11.1022 +▁loud -11.1023 +▁Gabriel -11.1024 +▁Wayne -11.1024 +▁flagship -11.1024 +▁pwo -11.1025 +duct -11.1026 +▁devoted -11.1027 +▁depiction -11.1029 +most -11.1031 +2. -11.1032 +▁enlisted -11.1033 +▁je -11.1035 +▁hypothesis -11.1036 +▁Broadway -11.1038 +▁pitcher -11.104 +▁objectives -11.1041 +▁Gary -11.1041 +▁Argentina -11.1042 +▁bowl -11.1043 +SC -11.1046 +▁armour -11.1047 +▁Works -11.1048 +▁competing -11.1051 +▁sto -11.1052 +▁reconnaissance -11.1053 +▁rely -11.1055 +▁Gate -11.1056 +▁Lost -11.1057 +▁Ang -11.1059 +▁donated -11.1061 +emia -11.1064 +▁youngest -11.1066 +▁surge -11.1066 +tif -11.1066 +▁riders -11.1067 +ensis -11.1069 +▁Upper -11.1071 +▁sat -11.1072 +▁define -11.1076 +▁inland -11.1077 +aya -11.1078 +▁paj -11.1079 +▁updated -11.108 +▁dressed -11.1082 +▁backed -11.1083 +▁Shaw -11.1084 +▁125 -11.1084 +NC -11.1084 +▁legislative -11.1086 +▁Maine -11.1089 +▁shaft -11.1089 +▁graduated -11.1094 +▁Rai -11.1095 +▁Beat -11.1099 +▁breathing -11.11 +▁requirement -11.1101 +▁transported -11.1102 +▁Nicholas -11.1104 +▁acids -11.1104 +▁shadow -11.1106 +▁Hugh -11.1106 +▁Until -11.1108 +▁Keith -11.111 +▁managing -11.111 +▁Muhammad -11.1112 +▁circular -11.1112 +▁rifle -11.1114 +▁Engineering -11.1115 +▁wicket -11.1115 +▁amateur -11.1116 +▁curve -11.1116 +▁Wei -11.1118 +▁Barr -11.1121 +▁escort -11.1126 +▁Ancient -11.1128 +▁physically -11.1129 +▁Original -11.113 +▁que -11.1132 +▁cord -11.1132 +▁Todd -11.1133 +bil -11.1134 +▁marry -11.1136 +▁Add -11.1137 +▁arrangements -11.1141 +▁Edition -11.1141 +▁acute -11.1142 +▁Eve -11.1144 +▁Mos -11.1144 +▁Motor -11.1145 +▁timber -11.1147 +tam -11.1149 +▁organs -11.115 +▁velocity -11.1151 +▁spacecraft -11.1154 +▁proven -11.1154 +▁amazing -11.1155 +▁punishment -11.116 +▁def -11.1161 +▁Metro -11.1162 +▁Wy -11.1164 +▁Oliver -11.1166 +▁targeted -11.1167 +▁André -11.1168 +ym -11.1168 +▁identification -11.1168 +▁elaborate -11.1169 +▁Together -11.117 +▁random -11.1171 +▁displays -11.1173 +▁crest -11.1173 +▁harsh -11.1174 +▁arguments -11.1176 +▁absent -11.1176 +▁anlè -11.1177 +▁succeed -11.1185 +▁gathering -11.1188 +▁comfortable -11.119 +logical -11.1191 +ain -11.1192 +▁achievement -11.1194 +▁Abbey -11.1194 +▁mammals -11.1198 +▁Devil -11.12 +▁autumn -11.1204 +▁spaces -11.1205 +via -11.1207 +how -11.1207 +▁prim -11.1208 +SI -11.1208 +▁extract -11.1208 +▁backing -11.1209 +▁Movie -11.121 +▁Years -11.1211 +▁Abu -11.1211 +rite -11.1212 +▁bias -11.1213 +▁fail -11.1215 +▁teknik -11.1216 +▁Hawk -11.1216 +▁THE -11.1216 +▁collapsed -11.1216 +▁mon -11.1217 +▁accuracy -11.1217 +▁defending -11.1221 +▁Mint -11.1226 +▁preference -11.1227 +▁Birmingham -11.1229 +▁Language -11.1229 +▁educated -11.1233 +▁mineral -11.1233 +▁mechanisms -11.1234 +▁alarm -11.1235 +▁honest -11.1235 +▁Sk -11.1238 +▁1850 -11.1243 +▁cartoon -11.1243 +▁sheep -11.1243 +▁theatrical -11.1251 +▁cinema -11.1251 +▁virtual -11.1258 +PC -11.1259 +▁Classic -11.1261 +▁medications -11.1262 +▁truck -11.1262 +▁Championships -11.1264 +xe -11.1266 +▁hatch -11.1266 +▁measurements -11.1267 +▁Break -11.1267 +▁settings -11.1269 +▁bowling -11.1269 +▁belonging -11.1271 +▁predators -11.1274 +EN -11.1274 +▁cats -11.1276 +▁Kate -11.1276 +▁Wo -11.1276 +▁adds -11.1278 +▁Short -11.1279 +▁Ter -11.1279 +▁intake -11.1279 +▁saving -11.1287 +▁mèt -11.1288 +▁Liz -11.1289 +▁couldn -11.1289 +▁demolished -11.129 +▁bitter -11.1294 +▁Craig -11.1294 +▁gather -11.1295 +▁elite -11.1303 +▁por -11.1305 +▁Jet -11.1306 +▁psycho -11.1307 +▁revised -11.131 +č -11.1311 +▁Vancouver -11.1311 +▁cal -11.1313 +▁civilization -11.1314 +52 -11.1314 +▁strain -11.1315 +ander -11.1315 +▁assets -11.1315 +▁extending -11.1318 +▁funny -11.1318 +▁Large -11.1319 +▁enabled -11.1321 +▁touring -11.1323 +▁Paper -11.1323 +ibility -11.1324 +▁hosts -11.1324 +▁server -11.1325 +▁ports -11.133 +▁biographer -11.1331 +▁paying -11.1332 +link -11.1332 +▁item -11.1333 +▁tonnes -11.1333 +▁Fri -11.1335 +▁confirm -11.1336 +▁commentary -11.1336 +▁portrayal -11.1338 +▁tale -11.134 +▁Muslims -11.1342 +▁Belgian -11.1344 +▁fiber -11.1347 +▁kiss -11.1348 +▁traditionally -11.1349 +▁shi -11.1354 +▁Henri -11.1356 +kes -11.1357 +RO -11.1359 +nier -11.1363 +▁Mind -11.1363 +▁350 -11.1365 +▁Ran -11.1367 +▁Tru -11.137 +▁jury -11.1373 +▁Cle -11.1374 +▁Near -11.1375 +▁gang -11.1379 +▁strengthen -11.138 +▁electron -11.138 +bon -11.1382 +Ch -11.1385 +▁scar -11.1386 +▁leak -11.1387 +ID -11.1389 +▁handled -11.139 +▁Sc -11.1392 +▁riding -11.1394 +▁travels -11.1397 +aria -11.14 +▁census -11.14 +take -11.1405 +▁doors -11.1407 +▁crimes -11.1407 +.6 -11.1408 +▁consumer -11.1411 +▁relatives -11.1412 +wl -11.1415 +▁Mason -11.1416 +bol -11.1418 +▁Iran -11.1418 +phi -11.1419 +scale -11.1422 +iest -11.1424 +▁cabinet -11.1424 +▁expectations -11.1426 +▁brilliant -11.1427 +lè -11.1427 +far -11.1428 +▁varying -11.1428 +▁Files -11.1429 +▁prevention -11.143 +▁upset -11.1431 +▁regardless -11.1432 +▁athletic -11.1433 +▁destroying -11.1434 +▁Moscow -11.1435 +▁Ker -11.1435 +▁Swa -11.1437 +▁Conservative -11.1441 +▁1800 -11.1441 +▁answers -11.1442 +▁breaks -11.1442 +▁Grace -11.1446 +▁consequence -11.1446 +▁seized -11.1447 +eck -11.1448 +▁debris -11.1455 +▁elect -11.1457 +▁eagle -11.1459 +TC -11.1459 +▁actively -11.1459 +▁Allies -11.146 +▁bombs -11.1461 +té -11.1461 +▁Pet -11.1464 +▁succession -11.1466 +▁1898 -11.1468 +▁Right -11.1468 +mir -11.1469 +▁duo -11.1471 +▁Swiss -11.1472 +▁adequate -11.1476 +cl -11.1477 +▁ticket -11.1478 +▁pur -11.1484 +▁flesh -11.1485 +holder -11.1486 +▁Ekip -11.1487 +▁immigrants -11.1491 +▁Online -11.1491 +▁versus -11.1491 +cious -11.1491 +▁Artist -11.1496 +▁followers -11.1498 +▁Ralph -11.1499 +▁graph -11.15 +▁turret -11.15 +▁publisher -11.1501 +▁battalions -11.1502 +▁Morrison -11.1502 +▁Judge -11.1504 +▁Rap -11.1505 +▁varies -11.1505 +▁explaining -11.1508 +▁Defense -11.1509 +▁charity -11.151 +▁celebration -11.151 +making -11.1511 +▁cow -11.1511 +▁guidance -11.1513 +▁accompanying -11.1518 +▁06 -11.152 +▁Defence -11.1522 +▁mathematical -11.1526 +▁interface -11.1526 +▁laugh -11.1527 +▁dual -11.1529 +▁divine -11.1531 +▁priority -11.1531 +▁inflammation -11.1532 +▁ph -11.1533 +▁medication -11.1533 +▁protecting -11.1538 +▁statistics -11.154 +▁engaging -11.154 +▁rejyon -11.154 +▁View -11.154 +▁Manuel -11.1541 +▁sudden -11.1541 +▁Est -11.1547 +▁voye -11.1547 +▁physician -11.1548 +▁Barb -11.1548 +▁consent -11.1548 +ote -11.155 +▁blocked -11.155 +▁Actor -11.1552 +▁Bun -11.1552 +▁quarterback -11.1553 +rov -11.1556 +leg -11.1558 +▁settle -11.1559 +▁creek -11.1559 +▁lights -11.1559 +▁judgment -11.156 +▁sculpture -11.1561 +▁venue -11.1561 +▁1896 -11.1562 +▁effectiveness -11.1562 +▁varieties -11.1562 +▁replied -11.1562 +▁movies -11.1568 +▁intent -11.1573 +key -11.1574 +▁Woman -11.1575 +rio -11.158 +gor -11.1583 +▁feud -11.1583 +▁resident -11.1586 +▁Athletic -11.1587 +▁Talk -11.1588 +▁peaking -11.1589 +▁fold -11.159 +▁ion -11.159 +▁metric -11.1591 +lit -11.1592 +▁Tracy -11.1592 +▁Grey -11.1593 +▁tenure -11.1593 +▁aktè -11.1593 +▁hitting -11.1593 +thy -11.1593 +▁Did -11.1594 +▁columns -11.1594 +▁disk -11.1595 +▁dubbed -11.1597 +▁Edinburgh -11.1601 +▁calcium -11.1601 +▁interpret -11.1601 +▁gardens -11.1605 +▁Please -11.1605 +▁locally -11.1607 +▁Baron -11.1607 +▁Twitter -11.1607 +▁recommendations -11.161 +▁kreyòl -11.1611 +▁payment -11.1618 +▁Harbor -11.162 +▁harmful -11.1625 +loo -11.1626 +▁Come -11.1628 +▁Democrats -11.1629 +fr -11.1636 +▁wonderful -11.1641 +▁suspected -11.1641 +pet -11.1644 +▁theoretical -11.1646 +▁Sweet -11.1648 +▁loyal -11.1654 +▁Robin -11.1654 +▁Kal -11.1655 +▁Guinea -11.1655 +▁Campaign -11.1656 +▁consumers -11.1657 +▁faculty -11.1659 +▁Orange -11.166 +▁Rihanna -11.1661 +▁warfare -11.1661 +▁ceased -11.1661 +▁Rus -11.1664 +* -11.1666 +CO -11.1668 +▁fantasy -11.1669 +▁transit -11.1669 +▁evacuated -11.167 +▁Baseball -11.1673 +▁Helen -11.1674 +▁outcomes -11.1674 +ural -11.1677 +▁displaced -11.1677 +▁Female -11.1679 +ential -11.168 +▁Finland -11.168 +▁Newton -11.1682 +▁convey -11.1682 +▁resort -11.1686 +▁criteria -11.1687 +tting -11.1688 +Pa -11.1688 +view -11.169 +▁gaining -11.169 +▁everyday -11.1693 +▁conceived -11.1694 +▁hopes -11.1696 +▁regulation -11.1697 +▁summit -11.1697 +▁progressive -11.1702 +▁Hebrew -11.1702 +▁songwriter -11.1702 +▁anywhere -11.1702 +▁absorbed -11.1704 +▁cure -11.1705 +ulated -11.1705 +▁Armenian -11.1712 +▁tactics -11.1712 +▁Scout -11.1713 +▁Male -11.1714 +▁parks -11.1714 +▁Canterbury -11.1714 +▁transformation -11.1717 +▁Madagascar -11.1721 +mod -11.1722 +▁questioned -11.1726 +▁Official -11.1729 +▁Brad -11.173 +▁qua -11.1732 +ule -11.1733 +▁plates -11.1734 +▁considerably -11.1734 +▁sphere -11.1735 +▁navy -11.1737 +▁provinces -11.1738 +▁stationed -11.1739 +▁stops -11.174 +▁Queensland -11.1743 +nov -11.1745 +▁scholarship -11.1746 +▁crews -11.1746 +vor -11.1747 +▁meal -11.175 +& -11.175 +▁05 -11.1752 +▁07 -11.1752 +▁highlighted -11.1752 +▁hills -11.1754 +cra -11.1757 +Ma -11.1758 +▁amendment -11.1764 +▁Rama -11.1766 +▁Machine -11.1766 +▁joy -11.1766 +▁elevated -11.1767 +▁violation -11.1768 +▁Legend -11.1769 +▁Bobby -11.1769 +▁ranges -11.1773 +▁considers -11.1775 +▁responses -11.1777 +anna -11.178 +▁abundant -11.1781 +ello -11.1783 +▁cleared -11.1784 +▁Salt -11.1784 +▁guarantee -11.1785 +?” -11.1785 +▁Lloyd -11.1789 +▁heaven -11.1791 +▁Stevens -11.1792 +▁confront -11.1792 +▁extensively -11.1793 +▁thirteen -11.1796 +BC -11.1798 +tics -11.1802 +▁Lan -11.1802 +▁Lower -11.1802 +▁lawsuit -11.1803 +▁Authority -11.1806 +ê -11.1808 +▁Executive -11.1808 +▁spots -11.1813 +▁errors -11.1815 +▁Kir -11.1819 +▁Freedom -11.1819 +tant -11.1821 +▁tract -11.1823 +▁conflicts -11.1823 +pit -11.1823 +▁1899 -11.1825 +▁chase -11.1826 +▁flooded -11.183 +lot -11.1832 +ancy -11.1834 +cial -11.1834 +▁illustrated -11.1836 +▁punk -11.1837 +▁photography -11.1838 +▁1893 -11.1839 +▁Swift -11.184 +▁Protection -11.184 +▁sung -11.1847 +▁crystal -11.1848 +▁Celtic -11.1849 +▁expanding -11.185 +▁panels -11.1851 +▁throat -11.1852 +▁directors -11.1854 +phor -11.1855 +lid -11.1855 +▁provision -11.1859 +én -11.1859 +▁Barry -11.1859 +▁Wallace -11.1861 +▁Gang -11.1863 +▁Met -11.1864 +mos -11.1868 +▁fortress -11.1869 +▁shade -11.1871 +▁avoided -11.1872 +▁dwarf -11.1875 +▁politicians -11.1876 +▁aside -11.1883 +▁provisions -11.1885 +▁scenario -11.1885 +▁Wrestling -11.1886 +▁Arctic -11.1887 +gil -11.1888 +▁cream -11.1889 +▁underwent -11.189 +▁Ruth -11.189 +▁dissipated -11.1892 +▁jilyen -11.1898 +▁Richmond -11.1898 +▁Stand -11.1898 +▁Girls -11.19 +dig -11.19 +▁streak -11.1902 +▁Hardy -11.1903 +aku -11.1904 +▁decorated -11.1907 +▁navigation -11.1907 +▁chicken -11.1908 +▁invention -11.191 +▁contributing -11.1911 +▁rot -11.1911 +▁thrown -11.1912 +oi -11.1912 +lee -11.1914 +▁Marcel -11.1917 +▁Learn -11.1918 +▁innovative -11.1921 +▁mortality -11.1922 +▁nitrogen -11.1926 +▁Pine -11.1928 +▁extinct -11.1929 +▁differ -11.193 +▁literally -11.193 +-4 -11.1931 +▁hunt -11.1931 +▁Carol -11.1933 +▁Leon -11.1933 +▁Brazilian -11.1935 +horn -11.1937 +ald -11.194 +▁descent -11.194 +▁zoo -11.1942 +RT -11.1947 +cio -11.1947 +rated -11.1947 +mble -11.1949 +▁abroad -11.1951 +▁worker -11.1951 +▁acclaim -11.1952 +▁Fleming -11.1953 +▁abstract -11.1954 +▁shifted -11.1955 +▁lord -11.1957 +phone -11.1957 +▁intelligent -11.196 +▁collision -11.1962 +▁Orleans -11.1964 +▁Independence -11.1966 +▁killer -11.1966 +▁transform -11.1968 +▁Planet -11.197 +tens -11.1975 +sley -11.1976 +▁kitchen -11.1977 +▁Commons -11.1977 +▁Help -11.1979 +▁Scientology -11.1987 +▁Poly -11.199 +▁reinforced -11.1993 +▁cylinder -11.1994 +▁spectrum -11.1994 +▁ritual -11.1994 +▁topped -11.1994 +▁raids -11.1997 +▁garner -11.1999 +▁Look -11.2 +▁cruise -11.2 +▁Mayor -11.2005 +▁Brothers -11.2005 +▁YouTube -11.2006 +Grain -11.2007 +▁pine -11.2009 +▁indoor -11.201 +▁consume -11.2013 +hold -11.2013 +▁Hughes -11.2014 +▁gar -11.2015 +▁Regional -11.2015 +▁epic -11.2017 +▁alter -11.2017 +▁infant -11.202 +▁Know -11.202 +▁revolutionary -11.2021 +sville -11.2023 +▁remarkable -11.2024 +class -11.2025 +vic -11.2025 +▁Maurice -11.2026 +▁supports -11.2028 +bia -11.2029 +▁inherited -11.2029 +▁irregular -11.203 +ject -11.2032 +▁Mega -11.2032 +▁Form -11.2033 +▁volcanic -11.2034 +OC -11.2034 +▁Fighter -11.2035 +▁Jerry -11.2037 +▁enhanced -11.2037 +▁independently -11.2038 +▁laser -11.2039 +▁Register -11.2041 +▁lots -11.2042 +▁Barbara -11.2045 +▁trace -11.2047 +▁Neil -11.2047 +▁Kings -11.2048 +▁kings -11.2048 +▁protective -11.2054 +pect -11.2056 +▁widow -11.206 +awa -11.2062 +▁trailer -11.2062 +rac -11.2063 +VA -11.2071 +▁Image -11.2072 +hir -11.2075 +▁gravity -11.2076 +▁Voice -11.2076 +organ -11.2076 +▁drought -11.2079 +▁campaigns -11.2082 +rink -11.2082 +▁discovers -11.2083 +▁portrait -11.2084 +▁Track -11.2085 +▁Austin -11.2086 +▁swing -11.2086 +▁consistently -11.2086 +▁Pink -11.2087 +▁privilege -11.2088 +lings -11.2089 +ū -11.2092 +▁availability -11.2092 +▁(2 -11.2094 +▁playoffs -11.2095 +▁drain -11.2095 +▁aren -11.2095 +▁MA -11.2096 +▁ultimate -11.2096 +▁Ernest -11.2096 +▁Boys -11.2097 +▁Beginning -11.2099 +▁Count -11.2099 +▁conquest -11.2099 +-5 -11.21 +▁healthcare -11.2104 +▁acquire -11.2105 +▁pour -11.2109 +▁ignored -11.2115 +▁telescope -11.2116 +▁affecting -11.2117 +▁RNA -11.2119 +▁Want -11.212 +▁confused -11.2124 +▁pound -11.2124 +▁traded -11.2127 +▁Room -11.2127 +▁McCartney -11.2129 +▁cathedral -11.2129 +▁poster -11.2129 +▁Ever -11.2134 +▁trough -11.2137 +▁humor -11.214 +Con -11.2141 +▁channels -11.2142 +▁dozen -11.2142 +▁Pas -11.2143 +olo -11.2143 +▁spine -11.2144 +onia -11.2145 +▁consist -11.2148 +▁Dwight -11.2148 +▁cooperation -11.2148 +▁moisture -11.2151 +ès -11.2155 +▁https -11.2156 +▁Zone -11.2158 +▁exciting -11.2161 +▁ver -11.2161 +▁Cou -11.2164 +▁Edwards -11.2168 +▁Quebec -11.2168 +▁syans -11.2168 +▁exploit -11.2169 +▁Indeed -11.217 +▁Nation -11.2172 +itch -11.2179 +▁solely -11.218 +▁Abraham -11.2181 +▁capabilities -11.2183 +active -11.2187 +▁farms -11.2189 +▁Urban -11.219 +▁· -11.219 +▁steal -11.2191 +▁reject -11.2191 +▁Dale -11.2193 +rik -11.2193 +▁qualities -11.2194 +run -11.2194 +▁divorce -11.2194 +▁arguing -11.2196 +▁Pala -11.2197 +▁angry -11.2198 +▁manuscript -11.2199 +▁interviews -11.22 +eh -11.2201 +▁Yankees -11.2203 +▁segments -11.2205 +▁bigger -11.2209 +▁evacuation -11.2209 +law -11.2209 +▁upgrade -11.2209 +▁Joan -11.2209 +▁protests -11.2211 +etta -11.2212 +▁lit -11.2213 +▁Bennett -11.2213 +.7 -11.2214 +▁Future -11.2214 +▁currency -11.2215 +▁salary -11.2215 +▁Bath -11.2216 +▁substances -11.2217 +▁receives -11.2218 +▁demographic -11.222 +▁slide -11.2221 +lect -11.2223 +morph -11.2223 +▁Armstrong -11.2224 +▁detection -11.2227 +hor -11.2228 +▁Gas -11.223 +▁heating -11.2236 +▁hi -11.2237 +▁blast -11.2238 +▁thermal -11.224 +▁consumed -11.2241 +▁silent -11.2241 +▁bite -11.2243 +▁hardware -11.2243 +▁proceeded -11.2243 +▁Too -11.2243 +▁Pain -11.2248 +▁Yorkshire -11.2248 +▁Tang -11.2251 +char -11.2251 +▁Being -11.2251 +▁gum -11.2253 +oh -11.2256 +▁powder -11.2257 +▁similarities -11.2257 +▁Transportation -11.2259 +▁Buddhist -11.2259 +▁che -11.226 +▁cuts -11.226 +▁pm -11.2262 +▁1897 -11.2263 +▁Reich -11.2263 +▁Televizyon -11.2263 +▁Dom -11.2265 +▁philosopher -11.2266 +▁gut -11.2267 +▁Picture -11.2268 +▁Outstanding -11.227 +▁Capital -11.227 +▁Players -11.227 +▁mas -11.2271 +▁deposits -11.2272 +▁cluster -11.2273 +fri -11.2274 +tas -11.2275 +▁Ac -11.2275 +▁professionals -11.2275 +▁kilometers -11.228 +▁magazines -11.2281 +▁AM -11.2282 +tsu -11.2285 +.8 -11.2289 +▁Triple -11.2291 +▁burden -11.2292 +▁fourteen -11.2293 +▁habitats -11.2298 +▁Belle -11.2298 +▁min -11.2299 +▁Guitar -11.2303 +▁habits -11.2303 +pple -11.2305 +▁Johnston -11.2307 +▁Season -11.2307 +ground -11.2308 +▁Boat -11.2309 +▁prisoner -11.2309 +▁Kam -11.2309 +face -11.2314 +▁Wilhelm -11.2314 +▁reflection -11.2314 +▁fortune -11.2315 +▁Pittsburgh -11.2316 +▁burst -11.2317 +▁imposed -11.2319 +▁Kn -11.2322 +▁grandfather -11.2323 +▁Ground -11.2325 +▁operates -11.2326 +▁Malaysia -11.2326 +▁Steel -11.2328 +▁barrel -11.2328 +▁attractive -11.2329 +▁bottle -11.2329 +▁Globe -11.233 +▁sponsored -11.2331 +▁sixteen -11.2332 +▁scope -11.2334 +▁voltage -11.2336 +▁Nova -11.2337 +star -11.2339 +vet -11.234 +▁ur -11.2341 +▁outline -11.2341 +▁Costa -11.2341 +▁Howe -11.2341 +▁reforms -11.2344 +▁precise -11.2347 +▁CA -11.2347 +▁warnings -11.2351 +▁democracy -11.2351 +To -11.2352 +▁Minor -11.2353 +▁discrimination -11.2353 +dro -11.2354 +▁width -11.2356 +▁quantity -11.2358 +▁voices -11.236 +▁viruses -11.2361 +uma -11.2363 +▁cave -11.2364 +mur -11.2364 +▁Site -11.2367 +▁anger -11.2368 +▁happening -11.2369 +▁Tell -11.237 +oper -11.2372 +▁vector -11.2373 +▁Champion -11.2374 +loc -11.2375 +pop -11.2377 +▁Affairs -11.238 +▁aftermath -11.238 +▁healing -11.2381 +▁remembered -11.2383 +▁Dal -11.2386 +▁surrendered -11.2388 +▁quantities -11.2389 +▁tongue -11.2389 +FA -11.239 +▁Given -11.239 +erman -11.2391 +▁Zero -11.2394 +▁proposals -11.2395 +▁passion -11.2397 +▁transformed -11.2397 +▁Album -11.2399 +▁Falls -11.2399 +▁Scholar -11.2399 +▁Historical -11.24 +▁societies -11.2402 +▁conducting -11.2402 +▁module -11.2404 +gas -11.2405 +▁Maha -11.2405 +pos -11.2406 +▁uranium -11.2407 +▁hu -11.2407 +▁1895 -11.2409 +▁technological -11.2411 +▁resolved -11.2414 +▁clouds -11.2415 +▁Fin -11.2415 +▁painter -11.2415 +▁Danish -11.242 +▁Try -11.2422 +▁Davies -11.2422 +▁978 -11.2426 +▁comfort -11.2426 +▁companion -11.2426 +uit -11.243 +mmer -11.243 +▁exile -11.2431 +▁colored -11.2433 +▁readily -11.2434 +▁extratropical -11.2436 +▁copyright -11.2438 +▁directions -11.2439 +▁definitely -11.244 +met -11.244 +▁clinic -11.2444 +▁publish -11.2444 +fra -11.2446 +▁melody -11.2447 +ă -11.2449 +▁Pit -11.2449 +▁lighter -11.2449 +▁warned -11.245 +▁Tin -11.2451 +▁participating -11.2451 +▁Performance -11.2451 +position -11.2452 +▁imagine -11.2452 +▁defences -11.2452 +▁clan -11.2453 +▁arrives -11.2454 +▁1861 -11.2457 +with -11.2458 +PI -11.246 +▁Pot -11.2461 +▁trapped -11.2461 +▁harbour -11.2462 +▁mock -11.2463 +▁Mall -11.2464 +▁texture -11.2464 +stead -11.2467 +▁Check -11.2469 +▁automatically -11.247 +▁saint -11.2471 +▁Din -11.2473 +▁Impact -11.2474 +▁minerals -11.2477 +▁blade -11.248 +▁positively -11.2481 +▁Norfolk -11.2484 +OL -11.2487 +ET -11.2488 +berry -11.2488 +▁highlight -11.2489 +▁Seri -11.2492 +▁Safety -11.2494 +▁Portugal -11.2496 +▁doi -11.2496 +▁Facebook -11.2503 +▁Case -11.2509 +▁rush -11.2511 +▁aesthetic -11.2514 +▁daughters -11.2517 +▁Montana -11.2517 +▁Stuart -11.2518 +▁Wonder -11.2518 +▁acquisition -11.252 +▁bag -11.2521 +▁ST -11.2522 +hon -11.2525 +▁cooking -11.2526 +rey -11.2527 +▁civilians -11.2527 +gie -11.2528 +hem -11.2528 +▁sacred -11.253 +▁Sara -11.253 +▁eastward -11.2531 +▁beating -11.2532 +▁Diamond -11.2532 +▁barrier -11.2532 +lies -11.2533 +▁Cameron -11.2536 +▁undertaken -11.2536 +▁pleasure -11.2538 +▁anime -11.254 +▁Production -11.254 +▁symbols -11.2542 +▁Magic -11.2544 +nz -11.2544 +▁careful -11.2545 +▁nurse -11.2546 +▁configuration -11.2547 +SU -11.2548 +▁Sor -11.2549 +▁Unfortunately -11.2552 +▁flame -11.2555 +▁rebels -11.2556 +▁beats -11.2558 +▁sad -11.2559 +▁Gallery -11.2559 +▁Opera -11.256 +▁Consider -11.2563 +▁Flying -11.2565 +▁authorized -11.2566 +▁opinions -11.2566 +▁Larry -11.2567 +▁controlling -11.2569 +▁resolve -11.2571 +▁presents -11.2574 +▁illustrate -11.2575 +▁accomplished -11.2577 +▁decisive -11.2579 +lands -11.2582 +▁aims -11.2583 +▁Harold -11.2583 +▁Half -11.2584 +▁Lab -11.2584 +▁ties -11.2587 +▁Indonesian -11.2591 +▁collections -11.2593 +▁zye -11.2594 +▁parody -11.2595 +▁adverse -11.2595 +rry -11.2595 +▁photos -11.2596 +▁pad -11.2599 +▁Micro -11.26 +▁innovation -11.2601 +▁ir -11.2601 +▁acceptance -11.2601 +▁citizen -11.2602 +tone -11.2605 +▁biology -11.2605 +uz -11.2607 +IP -11.2609 +plo -11.2613 +▁prop -11.2614 +▁Need -11.2614 +▁Stock -11.2617 +▁feathers -11.2617 +▁Rich -11.2618 +▁Cathedral -11.262 +roll -11.2621 +1. -11.2622 +▁Was -11.2623 +▁Click -11.2623 +▁Fun -11.2625 +▁elder -11.2625 +▁promotional -11.2629 +▁Afghanistan -11.2629 +▁Burton -11.2629 +onjitid -11.2631 +▁Detay -11.2631 +▁Pla -11.2634 +▁Latitid -11.2638 +▁Fourth -11.2642 +▁commenced -11.2643 +▁slip -11.2643 +▁towers -11.2643 +▁spur -11.2644 +▁lacking -11.2649 +▁voters -11.2651 +▁adjust -11.2652 +piece -11.2652 +▁occasional -11.2652 +▁wished -11.2656 +▁advancing -11.2658 +▁NCAA -11.2661 +▁TNA -11.2661 +▁Mann -11.2663 +▁hostile -11.2665 +▁spec -11.2666 +▁Cer -11.2666 +▁withdrawn -11.2667 +▁commercially -11.2668 +▁pupils -11.2669 +▁surfaces -11.2669 +▁fracture -11.2674 +▁Greater -11.2675 +rri -11.2675 +▁Thor -11.2676 +▁motivation -11.2676 +▁Zi -11.2678 +▁Support -11.2678 +posit -11.2679 +▁101 -11.268 +▁facilitate -11.268 +▁bullet -11.2681 +▁Cancer -11.2682 +▁Ivan -11.2683 +▁refugees -11.2684 +itive -11.2684 +▁whale -11.2684 +▁metals -11.2687 +nen -11.2688 +▁safely -11.2688 +▁reinforcements -11.2688 +▁breach -11.2691 +▁feared -11.2691 +▁Spin -11.2692 +▁Oscar -11.2693 +▁sediment -11.2693 +▁viewing -11.2693 +▁Bow -11.2694 +▁roadway -11.2698 +▁searching -11.2698 +▁client -11.2699 +▁smell -11.27 +esh -11.2701 +▁archaeological -11.2702 +ense -11.2702 +▁boss -11.2703 +▁harvest -11.2703 +▁hoping -11.2707 +▁diplomatic -11.2707 +ø -11.2708 +▁Bern -11.2708 +▁Cricket -11.2711 +▁SA -11.2712 +▁icon -11.2713 +▁fra -11.2713 +▁discharge -11.2717 +▁ourselves -11.2718 +heim -11.2724 +▁Marge -11.2725 +media -11.2727 +Mo -11.2728 +▁115 -11.273 +De -11.273 +tit -11.2732 +▁chances -11.2736 +nel -11.2738 +▁Hop -11.2738 +▁discussions -11.2742 +uli -11.2743 +▁intermediate -11.2745 +▁nutrition -11.2746 +▁pocket -11.275 +eller -11.275 +phan -11.2751 +▁SE -11.2753 +▁compromise -11.2753 +▁aggregate -11.2754 +pol -11.2755 +▁04 -11.2756 +▁Marvel -11.2758 +ridge -11.2762 +IA -11.2762 +▁acre -11.2764 +▁Terry -11.2766 +▁greenhouse -11.2767 +▁Kit -11.2769 +▁synthesis -11.2773 +atus -11.2775 +▁Bradman -11.2775 +▁creature -11.2776 +mut -11.278 +▁worry -11.2782 +rating -11.2783 +▁scout -11.2785 +▁choosing -11.2786 +hole -11.2788 +▁DS -11.2794 +isyon -11.2794 +▁ramp -11.2795 +▁speculation -11.2796 +vil -11.2796 +▁goddess -11.2798 +▁Cass -11.28 +▁historically -11.28 +▁atmospheric -11.28 +▁Joint -11.2802 +rah -11.2802 +mine -11.2803 +uda -11.2803 +▁Yes -11.2803 +▁invented -11.2803 +which -11.2805 +▁legacy -11.2806 +zar -11.2808 +▁Shiva -11.2811 +▁speaker -11.2814 +rb -11.2815 +▁quit -11.2817 +▁Dallas -11.2819 +▁Herald -11.2824 +▁Justin -11.2824 +▁drummer -11.2824 +▁Bryan -11.2826 +▁oversee -11.2827 +ulate -11.2827 +ope -11.2828 +▁Monday -11.2829 +▁fraction -11.2831 +▁highways -11.2832 +tti -11.2832 +▁matematisyen -11.2833 +▁wrestling -11.2833 +▁ecological -11.2835 +kel -11.2838 +igh -11.284 +BS -11.2842 +tine -11.2843 +▁Isaac -11.2844 +▁maybe -11.2846 +▁fo -11.2846 +▁opposing -11.2847 +▁rendered -11.2855 +▁complement -11.2857 +▁colours -11.2858 +ied -11.2862 +▁Def -11.2864 +gro -11.2864 +▁settlements -11.2866 +▁spray -11.2866 +▁collecting -11.2867 +chu -11.2869 +▁Thunder -11.287 +▁extinction -11.2871 +CR -11.2875 +▁Laura -11.2876 +fim -11.2879 +uni -11.2881 +lves -11.2882 +▁Metropolitan -11.2884 +▁Gau -11.2884 +▁correspond -11.2884 +▁confident -11.2885 +▁Hen -11.2886 +▁jo -11.2886 +▁cleaning -11.2886 +new -11.2887 +▁zones -11.2887 +▁tar -11.2887 +EC -11.2888 +▁Kane -11.2889 +vè -11.2893 +▁threatening -11.2895 +▁Por -11.2895 +▁Lie -11.2896 +▁closure -11.2896 +▁01 -11.2897 +▁nickname -11.2902 +▁Electronic -11.2903 +▁Pur -11.2905 +▁trauma -11.2906 +MP -11.2908 +▁1889 -11.2909 +▁relating -11.2909 +▁specialized -11.291 +ord -11.2915 +▁reserved -11.2915 +▁Oslo -11.2917 +▁Bert -11.292 +▁airfield -11.2921 +kon -11.2921 +▁mysterious -11.2921 +▁Bear -11.2921 +▁Saturn -11.2922 +▁fungus -11.2924 +▁traits -11.2924 +▁soap -11.2925 +▁Branch -11.2926 +▁recurring -11.2926 +ink -11.2929 +▁upcoming -11.2931 +▁reef -11.2932 +▁» -11.2932 +▁reconstruction -11.2934 +bach -11.2935 +mission -11.2936 +▁perfectly -11.2938 +▁Leo -11.294 +▁lip -11.2942 +▁Kas -11.2944 +▁Rangers -11.2945 +▁bishop -11.2947 +0. -11.2949 +▁Fen -11.2949 +cular -11.2951 +▁judges -11.2952 +she -11.2957 +▁kills -11.2957 +▁Level -11.2958 +▁Sad -11.2961 +▁ingredients -11.2964 +▁mistake -11.2965 +CI -11.2966 +ña -11.2967 +▁boilers -11.2967 +▁Row -11.2971 +verse -11.2971 +▁Temp -11.2972 +▁Fur -11.2973 +▁anchor -11.2974 +cas -11.2974 +ont -11.2975 +▁Highland -11.2976 +▁Others -11.2976 +▁outstanding -11.2976 +cite -11.2977 +▁Junior -11.2977 +▁Wii -11.298 +▁AC -11.2981 +any -11.2982 +▁overwhelming -11.2983 +▁conscious -11.2984 +▁sailing -11.2984 +▁juvenile -11.2984 +ologists -11.2984 +dh -11.2985 +▁declare -11.2986 +▁totally -11.2988 +▁collective -11.2988 +▁FBI -11.2989 +▁sentiment -11.299 +▁knight -11.2992 +rup -11.2992 +▁lanes -11.2993 +▁proud -11.2996 +▁dies -11.2997 +tier -11.2998 +▁Nas -11.2998 +▁Rezime -11.2998 +▁erosion -11.2998 +▁Access -11.2999 +▁southeastern -11.3 +▁Euro -11.3 +ING -11.3 +▁Rule -11.3 +▁incorporate -11.3002 +▁destroyer -11.3003 +▁lakes -11.3008 +▁legitimate -11.301 +▁tempo -11.3012 +▁comparing -11.3013 +py -11.3013 +▁compiled -11.3013 +▁reasonable -11.3014 +▁Nancy -11.3017 +▁oriented -11.3019 +ature -11.3019 +▁Against -11.302 +▁champions -11.3021 +▁Ent -11.3021 +▁Av -11.3021 +ín -11.3022 +▁Athens -11.3022 +▁Que -11.3026 +▁Montgomery -11.3027 +▁stamp -11.303 +▁revival -11.3031 +wal -11.3032 +▁mythology -11.3032 +▁Cut -11.3033 +▁geo -11.3034 +▁relocated -11.3035 +▁commit -11.3036 +▁estatistik -11.3036 +▁Testament -11.3036 +▁Alpha -11.3036 +itu -11.3039 +▁travelling -11.304 +nam -11.3041 +▁disappear -11.3043 +oth -11.3045 +.| -11.3045 +▁Gay -11.3046 +gna -11.3047 +▁mystery -11.3048 +bat -11.3048 +▁guy -11.3049 +▁Gla -11.3051 +▁Body -11.3052 +▁Buffalo -11.3055 +▁Sid -11.3057 +uf -11.3058 +▁peninsula -11.306 +No -11.306 +craft -11.3061 +▁Cell -11.3064 +▁1894 -11.3066 +kout -11.3067 +▁limitations -11.3069 +▁Labor -11.3069 +▁manifest -11.307 +front -11.3074 +▁sized -11.3074 +▁dose -11.3076 +▁flavor -11.3081 +▁damaging -11.3081 +▁corruption -11.3085 +▁commanding -11.3085 +▁Rep -11.3089 +quest -11.3089 +▁verb -11.309 +▁Adult -11.3091 +▁consensus -11.3093 +▁thickness -11.3093 +hel -11.3095 +pr -11.3095 +▁Pam -11.3099 +▁dome -11.3101 +mag -11.3101 +▁streams -11.3101 +▁scandal -11.3102 +▁nautical -11.3103 +pher -11.3105 +▁mud -11.3105 +▁explored -11.3106 +▁discussing -11.3107 +▁mice -11.3109 +ogen -11.311 +▁memories -11.3112 +▁CBS -11.3113 +▁poison -11.3116 +▁correctly -11.3118 +NA -11.3121 +▁Czech -11.3122 +▁busy -11.3124 +▁Jar -11.3124 +▁tissues -11.3126 +▁disappeared -11.3126 +ér -11.3127 +▁Alliance -11.3129 +itude -11.3129 +▁175 -11.3131 +▁Churchill -11.3131 +fort -11.3132 +▁Ages -11.3132 +▁Lock -11.3132 +nge -11.3134 +▁recall -11.3139 +▁anticipated -11.314 +vit -11.314 +▁ceiling -11.3141 +▁territorial -11.3141 +]. -11.3142 +▁Prix -11.3144 +▁Clarke -11.3145 +SE -11.3147 +▁atoms -11.3147 +▁bin -11.3147 +een -11.3154 +▁depicts -11.316 +▁Jun -11.3161 +▁pipe -11.3161 +▁housed -11.3162 +▁gu -11.3162 +▁skeleton -11.3165 +▁treating -11.3169 +▁renewed -11.317 +▁beaten -11.3172 +▁elderly -11.3174 +▁silence -11.3174 +SD -11.3175 +NT -11.3176 +pra -11.3176 +▁Trophy -11.3179 +vant -11.3179 +▁Cher -11.3181 +▁Constantine -11.3182 +mini -11.3183 +slav -11.3184 +▁odd -11.3185 +▁Sega -11.3186 +▁María -11.3187 +▁Mé -11.3189 +▁identifying -11.3189 +cis -11.319 +lea -11.3192 +▁Brooks -11.3192 +▁congregation -11.3193 +▁Nebraska -11.3196 +▁urged -11.3197 +▁Friends -11.3197 +▁Sign -11.3197 +cation -11.32 +▁Jamaica -11.3201 +▁stake -11.3201 +▁Inside -11.3202 +▁rivalry -11.3202 +▁Studio -11.3203 +▁wage -11.3207 +▁recruit -11.3208 +▁Sultan -11.3208 +▁declaration -11.321 +▁Total -11.321 +▁capturing -11.3213 +▁receiver -11.3213 +▁progression -11.3214 +▁Return -11.3215 +▁recipient -11.3215 +▁Emmy -11.3216 +▁intersects -11.3217 +▁praising -11.3217 +▁dropping -11.3219 +MC -11.3221 +HL -11.3224 +▁employee -11.3228 +rea -11.3231 +▁cheap -11.3232 +Ro -11.3234 +tory -11.3235 +▁manual -11.3236 +▁renewable -11.3238 +▁undergo -11.3239 +▁stolen -11.324 +▁harder -11.3243 +▁Yon -11.3245 +▁Attorney -11.3246 +▁Youth -11.3247 +▁boom -11.3248 +▁Shah -11.3248 +eon -11.3249 +▁insect -11.325 +▁Pictures -11.3251 +.... -11.3253 +▁plenty -11.3254 +life -11.326 +▁millimeter -11.3261 +▁Bang -11.3262 +hil -11.3264 +▁OF -11.3265 +place -11.3266 +▁sketch -11.3269 +▁tender -11.3271 +▁pent -11.3271 +▁1891 -11.3271 +▁arose -11.3272 +▁drag -11.3273 +▁eventual -11.3275 +lter -11.3276 +▁bombardment -11.3279 +▁administered -11.328 +▁foster -11.3283 +sum -11.3285 +ily -11.3286 +▁reyalizatè -11.3287 +chin -11.3288 +ending -11.3291 +iki -11.3291 +▁suspension -11.3292 +▁Raymond -11.3293 +▁Amazon -11.3295 +▁Electric -11.3296 +▁relieve -11.3297 +▁biography -11.3298 +bank -11.3298 +shot -11.33 +▁evolutionary -11.33 +stro -11.3301 +He -11.3302 +▁instructor -11.3302 +num -11.3304 +▁104 -11.3305 +▁tobacco -11.3307 +inus -11.3308 +▁merged -11.3308 +▁costume -11.331 +▁Gan -11.331 +▁Champions -11.3311 +▁caution -11.3312 +▁flee -11.3312 +▁« -11.3312 +▁Dublin -11.3313 +▁gauge -11.3314 +▁recruited -11.3315 +▁Cru -11.3318 +▁shed -11.3319 +▁experiencing -11.3319 +▁photograph -11.3319 +▁bulb -11.3319 +▁Fisher -11.3321 +▁harbor -11.3321 +▁absolutely -11.3323 +▁Arch -11.3328 +▁Kor -11.3329 +▁subtle -11.333 +▁suggestion -11.3331 +▁volunteer -11.3333 +▁amino -11.3334 +agh -11.3334 +▁03 -11.3334 +▁quoted -11.3339 +adi -11.3344 +▁Franco -11.3345 +▁Krist -11.3347 +made -11.3351 +▁fulfill -11.3353 +SO -11.3362 +▁protocol -11.3363 +▁Leonard -11.3364 +▁throwing -11.3364 +▁Walt -11.3366 +▁advances -11.3367 +yne -11.3367 +▁complications -11.3368 +dam -11.3368 +uous -11.3371 +▁Rather -11.3371 +▁tourist -11.3373 +▁cloth -11.3374 +▁Mix -11.3374 +▁triumph -11.3375 +▁Resources -11.3376 +▁manga -11.3378 +▁Spider -11.3379 +▁measurement -11.3381 +▁Perhaps -11.3382 +ees -11.3384 +▁interfere -11.3386 +▁collector -11.3386 +▁municipal -11.3387 +yal -11.3388 +▁mast -11.3389 +mail -11.3389 +▁Climate -11.339 +▁Eight -11.3391 +▁joke -11.3391 +▁nineteenth -11.3394 +▁acknowledge -11.3395 +▁eligible -11.3395 +▁silk -11.3395 +▁predominantly -11.3396 +▁achieving -11.3397 +pat -11.3399 +▁Credit -11.34 +▁tracking -11.3403 +imp -11.3403 +iro -11.3404 +▁binding -11.3404 +▁240 -11.3405 +▁1888 -11.3407 +▁concentrations -11.3407 +▁Range -11.341 +▁Cyrus -11.3415 +▁Flag -11.3416 +▁magnet -11.3416 +▁1892 -11.3417 +tiv -11.342 +▁arena -11.3423 +▁valve -11.3425 +▁complained -11.3428 +▁realm -11.3429 +▁toured -11.3432 +▁Sou -11.3433 +▁Ir -11.3434 +wn -11.3436 +▁blame -11.3439 +▁peaceful -11.344 +▁Burke -11.3442 +▁pursued -11.3443 +tical -11.3444 +▁persuaded -11.3447 +▁lesser -11.3449 +▁JTWC -11.3451 +▁welcome -11.3451 +▁thread -11.3451 +▁tear -11.3453 +▁exterior -11.3454 +▁specified -11.3454 +▁oxide -11.3458 +mot -11.346 +▁Sheffield -11.3461 +lé -11.3462 +gus -11.3463 +▁releasing -11.3463 +ño -11.3463 +▁veteran -11.3465 +▁Wells -11.3467 +hall -11.3468 +▁sentenced -11.3469 +▁Chapel -11.3469 +▁submit -11.347 +▁AS -11.347 +▁Madison -11.3471 +EP -11.3472 +▁ancestors -11.3472 +now -11.3473 +▁customer -11.3477 +▁Cemetery -11.3478 +▁UEFA -11.3478 +▁manufactured -11.348 +▁Roberts -11.3484 +▁Sex -11.3485 +▁Vas -11.3488 +▁Wu -11.3492 +▁Republicans -11.3492 +▁fossils -11.3494 +▁spite -11.3495 +hm -11.3495 +▁staying -11.3497 +▁reservoir -11.3498 +▁Bol -11.3502 +▁Does -11.3502 +▁wouldn -11.3502 +▁evaluate -11.3503 +▁mouse -11.3505 +OM -11.3505 +▁judicial -11.3508 +tag -11.351 +bot -11.3516 +▁Transport -11.3517 +PR -11.3518 +▁wo -11.3521 +▁Find -11.3521 +▁hospitals -11.3527 +▁assessed -11.3534 +▁democratic -11.3535 +▁nevertheless -11.3535 +▁invaded -11.3539 +▁Burns -11.3539 +▁graphic -11.3539 +▁Cri -11.354 +▁cook -11.3541 +▁genome -11.3542 +▁Reagan -11.3542 +▁tendency -11.3543 +▁sharks -11.3545 +▁Alberta -11.3546 +▁modest -11.3549 +▁drafted -11.3552 +▁Rou -11.3552 +▁1865 -11.3553 +ume -11.3554 +▁strikes -11.3556 +▁masses -11.356 +▁CEO -11.356 +▁Schu -11.3561 +▁comprised -11.3563 +▁walked -11.3564 +▁posts -11.3566 +cip -11.3568 +▁True -11.357 +▁Scots -11.3572 +▁constitute -11.3573 +▁Liberty -11.3576 +▁tout -11.3579 +▁bonds -11.358 +▁170 -11.358 +▁Ship -11.3581 +▁NATO -11.3583 +▁nominations -11.3584 +▁Dur -11.3587 +▁bon -11.3587 +▁imprisoned -11.3587 +▁Lamb -11.3588 +▁Movement -11.3589 +▁expense -11.3589 +quin -11.3592 +▁Marco -11.3594 +▁struggling -11.3595 +▁dimensions -11.3595 +▁lunch -11.3599 +tive -11.3599 +▁eaten -11.3601 +corn -11.3601 +▁qualifying -11.3606 +▁landmark -11.3608 +▁Baptist -11.3608 +ago -11.3609 +▁Sherman -11.3612 +grad -11.3612 +▁steady -11.3613 +▁Mine -11.3613 +▁Yama -11.3615 +▁Chelsea -11.3615 +▁Nevada -11.3615 +▁senator -11.3616 +▁logo -11.362 +▁virtue -11.362 +▁Think -11.3621 +▁extends -11.3624 +▁Raj -11.3624 +▁Mercury -11.3625 +▁Crime -11.3626 +▁critically -11.3626 +▁massacre -11.3628 +▁rays -11.363 +▁loaded -11.363 +▁rebel -11.3631 +wy -11.3631 +▁complexity -11.3632 +▁bush -11.3632 +▁centered -11.3632 +▁quarters -11.3633 +▁viral -11.3633 +▁implications -11.3635 +▁Danny -11.3635 +▁Palestine -11.3635 +▁troop -11.3637 +▁hint -11.3637 +▁Serbian -11.3637 +▁Resident -11.3638 +▁den -11.3638 +▁pleased -11.3639 +▁millions -11.3639 +▁dia -11.364 +▁ser -11.3642 +▁welfare -11.3645 +▁gases -11.3645 +▁corps -11.3645 +▁Julian -11.3646 +▁shapes -11.3647 +▁numbered -11.3649 +▁carved -11.365 +nor -11.3653 +▁Turn -11.3654 +▁planted -11.3655 +ced -11.3659 +▁Riv -11.366 +▁Arabic -11.3661 +-8 -11.3661 +▁outfit -11.3661 +▁calendar -11.3663 +LC -11.3665 +▁02 -11.3665 +▁orientation -11.3665 +▁Nat -11.3668 +ifies -11.3668 +▁radius -11.3668 +▁Chen -11.3669 +▁knocked -11.367 +▁ballot -11.3673 +▁Bulgarian -11.3674 +▁weigh -11.3674 +DR -11.3675 +quet -11.3675 +gene -11.3677 +cum -11.3677 +▁lyrical -11.3679 +▁Representatives -11.3679 +▁promising -11.368 +▁mere -11.3686 +▁whales -11.3686 +▁corridor -11.3693 +▁Monster -11.3693 +▁1862 -11.3694 +▁1864 -11.3695 +▁Parsons -11.3698 +mill -11.3699 +mé -11.3702 +east -11.3703 +▁jail -11.3705 +▁accidentally -11.3707 +▁Pete -11.3708 +▁Kids -11.3708 +▁distress -11.3708 +▁imagination -11.3711 +▁Region -11.3712 +▁enterprise -11.3713 +▁1885 -11.3719 +▁Price -11.372 +gli -11.372 +▁profession -11.3721 +eries -11.3722 +▁adoption -11.3723 +▁AIDS -11.3723 +▁ecosystem -11.3723 +▁wheat -11.3724 +▁rescued -11.3724 +▁Baltic -11.3724 +▁Lind -11.3725 +▁Policy -11.3726 +▁boot -11.3727 +▁hypo -11.3731 +▁parking -11.3734 +▁Tyler -11.3737 +igan -11.3738 +▁Ry -11.3738 +▁manufacturers -11.3739 +▁warrant -11.3741 +▁tou -11.3742 +▁Len -11.3742 +▁commanders -11.3742 +▁Environment -11.3745 +▁Industrial -11.3745 +▁cooling -11.3746 +▁ears -11.3747 +▁oak -11.3748 +▁embarked -11.375 +▁breeds -11.3753 +а -11.3754 +▁2021 -11.3754 +▁enforcement -11.3755 +▁Cardiff -11.3757 +▁murdered -11.3757 +▁109 -11.3757 +▁Gregory -11.3759 +▁Strait -11.376 +▁reactor -11.3764 +▁turtle -11.3764 +▁Eye -11.3764 +▁finals -11.3765 +▁dragon -11.3765 +▁fragments -11.3765 +▁endangered -11.3769 +▁tin -11.377 +▁AP -11.3771 +▁vicinity -11.3774 +▁Ei -11.3776 +▁dancers -11.3777 +▁Berg -11.3778 +▁permanently -11.3778 +▁indication -11.378 +▁Additional -11.3781 +▁Py -11.3782 +▁insight -11.3783 +▁palm -11.3785 +▁Omar -11.3787 +▁jam -11.3793 +▁mutual -11.3794 +▁verses -11.3794 +▁carriage -11.3794 +▁reserves -11.38 +New -11.3802 +phon -11.3802 +aver -11.3802 +▁py -11.3802 +▁borders -11.3803 +▁Chu -11.3805 +▁shopping -11.3806 +▁spill -11.3806 +hara -11.3807 +say -11.3807 +▁circles -11.3807 +▁girlfriend -11.3807 +▁Greatest -11.3809 +▁Sean -11.3811 +▁Ellis -11.3814 +etti -11.3815 +▁slot -11.3815 +▁steadily -11.3815 +▁Orthodox -11.3817 +▁monthly -11.3818 +▁Direct -11.3823 +mper -11.3824 +ctor -11.3824 +▁Delta -11.3825 +▁ward -11.3827 +▁contracts -11.3828 +▁Treatment -11.3829 +▁BCE -11.3829 +▁Viking -11.3832 +pl -11.3834 +▁Lau -11.3834 +▁Ton -11.3834 +▁ensuring -11.3835 +▁generator -11.3836 +▁conviction -11.384 +zing -11.3841 +▁drainage -11.3842 +▁exceed -11.3845 +▁Ji -11.3846 +▁liner -11.3847 +court -11.3852 +nant -11.3858 +▁honey -11.3859 +▁1840 -11.3859 +▁mold -11.3861 +▁Taiwan -11.3861 +▁111 -11.3864 +▁Gill -11.3865 +▁fires -11.3866 +▁plaque -11.3869 +▁tracked -11.387 +▁geographical -11.3871 +▁weakening -11.3872 +▁Princeton -11.3872 +▁cri -11.3873 +▁patch -11.3873 +▁clergy -11.3874 +▁intact -11.3874 +▁dialect -11.3877 +▁compact -11.3878 +▁disabled -11.3879 +▁AA -11.388 +æ -11.388 +▁reduces -11.3881 +post -11.3885 +▁emphasize -11.3885 +▁Pole -11.3887 +ui -11.3888 +▁Strong -11.389 +state -11.3893 +▁conjunction -11.3895 +fold -11.3896 +▁respiratory -11.3897 +▁deployment -11.3902 +▁quest -11.3902 +▁learns -11.3903 +▁Leaf -11.3904 +▁determining -11.3905 +count -11.3907 +▁Yellow -11.3907 +clo -11.3908 +▁locate -11.3908 +▁gal -11.3908 +▁Continental -11.3908 +▁quantum -11.391 +▁vent -11.391 +▁integration -11.391 +▁frontier -11.3912 +▁Whether -11.3912 +▁twentieth -11.3912 +▁rings -11.3915 +▁axis -11.3917 +▁Round -11.3917 +oke -11.3919 +▁Put -11.392 +▁offshore -11.392 +▁revision -11.3921 +▁insufficient -11.3923 +▁speeds -11.3924 +▁symbolic -11.3924 +imi -11.3925 +▁Beth -11.3925 +▁tasked -11.3927 +bet -11.3931 +▁neo -11.3931 +▁Remember -11.3931 +▁Weather -11.3933 +▁edges -11.3935 +▁ghost -11.3936 +▁ri -11.3937 +▁cubic -11.3938 +▁Genesis -11.3942 +▁mg -11.3943 +▁Mile -11.3944 +att -11.3944 +▁450 -11.3944 +▁Stage -11.3946 +▁Rhodes -11.3947 +▁coordinate -11.3947 +▁addiction -11.395 +CD -11.3952 +▁dissolved -11.3952 +▁Fear -11.3954 +▁Tip -11.3956 +▁witnessed -11.3956 +▁encouraging -11.3956 +▁trends -11.3959 +▁reflects -11.3959 +▁Style -11.3959 +▁Commissioner -11.3963 +▁Fre -11.3965 +▁Similar -11.3966 +▁advantages -11.3967 +CE -11.3968 +dle -11.397 +ulating -11.3972 +▁machinery -11.3973 +bha -11.3975 +▁mechanics -11.3976 +▁behaviors -11.3978 +▁Researchers -11.398 +▁Bab -11.3981 +▁attachment -11.3982 +▁essays -11.3988 +kha -11.3989 +▁Miles -11.3989 +▁Bour -11.3989 +▁archive -11.3989 +▁guests -11.3991 +▁HD -11.3992 +amine -11.3992 +▁ambassador -11.3998 +▁Boeing -11.3998 +▁particle -11.3999 +▁sings -11.3999 +▁manufacture -11.4 +▁Stalin -11.4001 +▁IP -11.4002 +▁PS -11.4004 +brook -11.4006 +▁Rogers -11.4008 +▁upward -11.4009 +▁Got -11.4014 +▁coral -11.4015 +▁connects -11.4017 +▁Lea -11.4018 +▁propose -11.4018 +▁admission -11.4019 +▁commenting -11.4023 +▁1863 -11.4023 +▁Pol -11.4024 +о -11.4024 +▁multiplayer -11.4024 +▁preceding -11.4024 +uki -11.4026 +▁Hel -11.4026 +▁Dennis -11.4027 +▁helicopter -11.4029 +▁cement -11.4029 +▁Chester -11.403 +▁Nou -11.403 +▁Oct -11.403 +▁writings -11.403 +▁(2) -11.4031 +▁Hat -11.4032 +▁Living -11.4035 +stock -11.4036 +▁parliamentary -11.4036 +eli -11.4037 +▁u -11.4039 +▁Besides -11.404 +▁opens -11.404 +▁successive -11.4041 +@ -11.4042 +▁Intelligence -11.4042 +▁Culture -11.4043 +▁Nobel -11.4045 +aur -11.4047 +▁controller -11.4047 +▁occurrence -11.4047 +▁Herbert -11.4048 +▁Java -11.4049 +▁crashed -11.405 +▁Kur -11.405 +▁triangle -11.405 +▁blues -11.405 +▁Emma -11.4051 +▁investigated -11.4052 +▁Things -11.4058 +▁Malcolm -11.4058 +▁livestock -11.4059 +▁Zoo -11.4067 +▁painful -11.4068 +▁Eddie -11.4069 +▁Solomon -11.4071 +▁continental -11.4072 +▁Barnes -11.4074 +▁Constantinople -11.4074 +gun -11.4076 +▁Andrea -11.4077 +▁suited -11.4082 +▁Caesar -11.4084 +▁isolation -11.4084 +▁variant -11.4085 +▁airing -11.4086 +rine -11.4089 +vir -11.4089 +▁Bha -11.4089 +▁Pac -11.409 +▁choir -11.4091 +▁rider -11.4093 +▁convicted -11.4096 +▁Arkansas -11.4097 +▁Drake -11.4099 +▁remind -11.41 +▁conductor -11.41 +▁Edmund -11.41 +esis -11.4104 +boy -11.4108 +▁Cavalry -11.4108 +▁Travel -11.411 +▁courage -11.411 +▁Circle -11.4111 +▁Rom -11.4113 +space -11.4114 +▁comparable -11.4116 +▁excited -11.4116 +▁rounded -11.4116 +lier -11.4116 +▁forth -11.4117 +▁Sep -11.4117 +▁blockade -11.4118 +eman -11.4122 +▁Kyle -11.4123 +▁Brooklyn -11.4124 +▁depicting -11.4124 +▁witnesses -11.4125 +▁preservation -11.4129 +▁ashore -11.413 +▁Formation -11.4135 +▁speakers -11.4135 +▁administrator -11.4137 +▁contrary -11.4138 +▁Holland -11.4139 +▁Store -11.414 +▁licensed -11.4144 +▁slower -11.4144 +▁romance -11.4145 +▁nationalist -11.4145 +▁merit -11.4146 +▁Sonic -11.4146 +▁1: -11.4146 +Mar -11.4146 +▁tickets -11.4147 +idi -11.415 +▁chapters -11.4151 +▁profound -11.4151 +▁sinking -11.4151 +cel -11.4152 +▁plug -11.4152 +▁peer -11.4152 +▁belong -11.4157 +▁positioned -11.4157 +▁lecture -11.416 +▁insist -11.4161 +▁lava -11.4164 +▁apple -11.4166 +dict -11.4167 +▁incidents -11.4169 +▁buying -11.4174 +▁knock -11.4174 +▁Volume -11.4174 +shed -11.4177 +page -11.4177 +▁analyze -11.4178 +mba -11.4178 +▁defect -11.4181 +▁Reed -11.4181 +▁Mai -11.4181 +▁heavier -11.4182 +▁ethical -11.4182 +▁Coll -11.4182 +gua -11.4184 +▁propaganda -11.4184 +▁Florence -11.4185 +▁tourists -11.4187 +▁pas -11.4188 +▁VIII -11.4188 +▁imported -11.4189 +▁interference -11.419 +▁Ted -11.419 +▁logic -11.4191 +▁~ -11.4193 +▁Northwest -11.4193 +▁politician -11.4196 +▁literacy -11.4198 +▁monastery -11.42 +▁norm -11.4201 +▁sink -11.4202 +SP -11.4202 +birds -11.4202 +▁Symphony -11.4203 +▁Kenneth -11.4203 +▁www -11.4203 +▁Days -11.4203 +▁Critical -11.4207 +▁Chile -11.4211 +▁Publishing -11.4211 +▁Working -11.4214 +dication -11.4216 +▁pioneer -11.4217 +▁MacArthur -11.4219 +▁Territory -11.4219 +▁seemingly -11.4219 +uel -11.4219 +▁naming -11.422 +▁till -11.422 +▁rains -11.4221 +▁screenplay -11.4223 +▁gla -11.4223 +▁₹ -11.4224 +▁Face -11.4225 +▁editing -11.4225 +▁warships -11.4227 +▁Thames -11.4227 +alis -11.4227 +▁optical -11.4231 +▁Mini -11.4232 +rp -11.4234 +▁Ful -11.4236 +▁Pack -11.4236 +wel -11.4237 +▁COVID -11.4238 +▁progressed -11.4238 +▁demonstration -11.424 +▁Oil -11.4244 +▁hum -11.425 +▁AL -11.4252 +▁tourism -11.4254 +▁playoff -11.4254 +▁Cloud -11.4254 +▁dramatically -11.4255 +▁achievements -11.4256 +-20 -11.4256 +▁McG -11.4259 +α -11.4259 +▁twist -11.426 +▁Shadow -11.4264 +▁colon -11.4267 +▁condemned -11.4268 +lite -11.4271 +pla -11.4271 +yard -11.4275 +▁fake -11.4275 +▁Clara -11.4275 +▁overlap -11.428 +▁transmitted -11.4284 +▁authentic -11.4286 +▁Isle -11.4287 +▁Wildlife -11.4288 +lyn -11.4293 +▁charted -11.4295 +▁wisdom -11.4296 +▁wise -11.4297 +▁tends -11.4298 +ographer -11.43 +▁Historian -11.4301 +▁deliberately -11.4303 +▁listing -11.4305 +▁holy -11.4306 +DI -11.4308 +▁Rush -11.4311 +▁assassination -11.4312 +▁deputy -11.4312 +ocyt -11.4313 +▁Claire -11.4313 +▁wishes -11.4313 +▁reinforce -11.4314 +▁reporter -11.4315 +▁Orchestra -11.4315 +▁mess -11.4315 +osphere -11.4316 +known -11.4318 +▁rat -11.4318 +▁Curtis -11.4319 +▁220 -11.4319 +▁Brand -11.432 +▁phenomena -11.432 +▁Various -11.4321 +llo -11.4323 +hun -11.4323 +▁swept -11.4323 +▁stern -11.4323 +▁Evil -11.4324 +▁seasonal -11.4325 +aro -11.4325 +pal -11.4327 +udi -11.4328 +▁accurately -11.4328 +▁treasure -11.433 +▁Zu -11.4331 +▁determination -11.4335 +▁Renaissance -11.4337 +▁Sleep -11.4337 +▁differently -11.4337 +ienne -11.4337 +▁102 -11.4343 +▁defenders -11.4343 +▁Venus -11.4344 +such -11.4344 +If -11.4344 +▁horn -11.4345 +▁Canyon -11.4349 +▁regulate -11.4349 +wind -11.4349 +▁extraordinary -11.435 +script -11.435 +▁cemetery -11.4353 +▁pyramid -11.4353 +▁floating -11.4353 +▁tornado -11.4354 +▁abundance -11.4355 +▁psychology -11.4356 +lick -11.4356 +▁hang -11.4356 +▁relay -11.4357 +▁underwater -11.4359 +▁Self -11.436 +▁Lòt -11.4364 +▁chantè -11.4365 +▁indicator -11.4366 +▁avoiding -11.4371 +▁descendants -11.4372 +uan -11.4372 +▁sleeping -11.4375 +▁coastline -11.4375 +saw -11.4376 +▁acceptable -11.4378 +▁resemble -11.4379 +▁Wagner -11.438 +St -11.438 +▁weakness -11.4382 +▁compensation -11.4385 +▁routing -11.4385 +▁Hood -11.4386 +▁combine -11.4388 +▁darker -11.439 +▁1830 -11.4391 +▁plea -11.4391 +▁variables -11.4391 +▁Gran -11.4392 +▁Gr -11.4393 +▁asserted -11.4393 +▁antye -11.4394 +▁Santo -11.4395 +▁ambition -11.4396 +▁encounters -11.4398 +▁woodland -11.4399 +▁Brook -11.4399 +▁Airlines -11.4403 +▁neutron -11.4404 +▁proceed -11.4407 +▁balanced -11.4407 +▁ascend -11.4407 +▁Pel -11.4409 +▁automatic -11.4409 +▁Tribune -11.441 +ress -11.4415 +▁guess -11.4418 +weight -11.4419 +▁Denis -11.4419 +5,000 -11.4421 +▁Archbishop -11.4423 +▁ferry -11.4426 +▁deficit -11.4426 +▁rivals -11.4426 +▁rushing -11.4427 +▁flexible -11.4429 +▁darkness -11.4429 +▁sunlight -11.443 +▁Eagle -11.4432 +▁pushing -11.4432 +▁marched -11.4434 +▁SP -11.4434 +▁fitting -11.4434 +▁rent -11.4435 +For -11.4436 +▁metre -11.444 +▁cyclones -11.4441 +cover -11.4441 +▁Ky -11.4442 +got -11.4442 +▁sentences -11.4443 +EL -11.4445 +real -11.4445 +▁revealing -11.4446 +▁Ask -11.4447 +▁simulation -11.4448 +▁bowler -11.445 +▁mixing -11.4452 +▁favored -11.4452 +▁Political -11.4453 +Be -11.4453 +▁ceremonies -11.4456 +▁juice -11.4457 +pil -11.4459 +▁conspiracy -11.4461 +▁nephew -11.4461 +▁informal -11.4462 +▁rope -11.4462 +▁pronounced -11.4462 +▁possessed -11.4463 +You -11.4463 +▁Marshal -11.4465 +maker -11.4467 +▁aft -11.4469 +▁keeps -11.4469 +▁globe -11.4469 +oci -11.4471 +▁secular -11.4472 +▁compositions -11.4473 +▁operator -11.4477 +responsibilities -11.4478 +▁Bran -11.4478 +▁Crystal -11.448 +kins -11.4485 +▁immigration -11.4486 +▁decoration -11.4486 +anti -11.4486 +tig -11.4487 +.9 -11.4489 +▁Morning -11.449 +▁curved -11.4491 +▁Fran -11.4491 +▁relieved -11.4491 +▁Bradley -11.4493 +▁announce -11.4495 +▁abnormal -11.4496 +▁Consequently -11.4497 +▁Gibraltar -11.4497 +▁Friedrich -11.4497 +▁Devon -11.4498 +▁Than -11.4499 +fici -11.45 +gio -11.4502 +▁belonged -11.4504 +▁Holocaust -11.4505 +▁Syn -11.4509 +ounce -11.451 +▁cliff -11.4511 +▁Grave -11.4511 +▁---- -11.4511 +▁digit -11.4513 +▁fatigue -11.4513 +▁Adrian -11.4515 +▁airborne -11.4515 +▁Sau -11.4515 +▁Draft -11.4516 +▁motif -11.4516 +▁ERA -11.4517 +▁DJ -11.4518 +▁IN -11.4521 +▁Miguel -11.4521 +▁monkey -11.4522 +▁Panzer -11.4522 +▁Photo -11.4523 +▁mentions -11.4524 +▁Ronald -11.4524 +its -11.4526 +▁tre -11.4526 +▁disability -11.4528 +▁defendant -11.4528 +▁separately -11.4529 +▁Milan -11.4531 +1, -11.4531 +▁Rear -11.4532 +▁comprising -11.4532 +▁projected -11.4532 +-18 -11.4537 +▁confined -11.4539 +▁contacted -11.4548 +▁proximity -11.4549 +▁Liber -11.4549 +▁Diet -11.4553 +▁poisoning -11.4554 +▁Apart -11.4554 +èk -11.4556 +gui -11.4557 +▁Revolutionary -11.4558 +▁headache -11.456 +▁mac -11.4561 +▁Cad -11.4562 +▁applying -11.4563 +-6 -11.4563 +Ar -11.4564 +▁pu -11.4564 +▁Watson -11.4566 +▁internationally -11.4568 +▁bout -11.457 +▁blamed -11.4571 +▁accounting -11.4571 +▁accordance -11.4571 +▁grants -11.4575 +▁introducing -11.4576 +▁freely -11.4578 +▁Palestinian -11.4579 +▁finest -11.458 +▁martial -11.4582 +▁namely -11.4584 +AA -11.4586 +▁battlefield -11.4588 +▁accommodation -11.459 +▁Color -11.4591 +▁dealt -11.4594 +▁Gospel -11.4596 +gov -11.46 +▁Boulevard -11.4601 +▁layout -11.4604 +▁Desert -11.4605 +▁electrons -11.4606 +http -11.4606 +uka -11.4607 +300 -11.4608 +▁preliminary -11.4609 +▁Heaven -11.461 +▁disappointed -11.4612 +▁Found -11.4614 +▁worried -11.4618 +▁Chamberlain -11.4621 +▁Olivia -11.4623 +▁Task -11.4624 +▁qualification -11.4626 +▁logical -11.4626 +hawk -11.4627 +oso -11.4627 +▁minimize -11.4629 +▁Blake -11.4629 +▁equality -11.4634 +▁Blanc -11.4635 +▁relied -11.4637 +▁Block -11.4637 +▁fears -11.4637 +dell -11.464 +▁planting -11.4643 +eva -11.4646 +▁duck -11.4646 +▁temples -11.4653 +▁insulin -11.4654 +▁Ltd -11.4655 +▁teammate -11.4655 +throp -11.4656 +▁demanding -11.4657 +hin -11.4657 +▁highlights -11.4658 +▁Et -11.4663 +▁headline -11.4666 +▁tribal -11.4666 +▁fragment -11.4667 +▁dump -11.4667 +200 -11.4668 +▁Eva -11.467 +▁Actress -11.4674 +▁squadrons -11.4676 +ota -11.4678 +▁punch -11.4678 +▁Æthel -11.4682 +▁Meyer -11.4682 +▁CS -11.4682 +▁Caroline -11.4684 +▁obesity -11.4687 +▁fierce -11.4687 +▁proclaimed -11.4689 +▁slope -11.4689 +▁Berkeley -11.469 +▁metaphor -11.469 +▁wages -11.4691 +▁bomber -11.4691 +TM -11.4692 +sezon -11.4695 +▁Which -11.4696 +▁Train -11.4696 +orn -11.4696 +▁coalition -11.4699 +lk -11.4701 +▁val -11.4709 +▁Titan -11.4711 +▁Guild -11.4711 +▁Almost -11.4712 +▁Kaiser -11.4713 +▁escorted -11.4714 +level -11.4714 +▁arrow -11.4715 +▁Santiago -11.4718 +▁washed -11.4719 +▁Agriculture -11.4721 +▁Serbia -11.4723 +▁concentrate -11.4723 +▁Spi -11.4723 +-12 -11.4724 +▁functioning -11.4728 +▁OS -11.4729 +▁babies -11.4729 +▁attributes -11.4731 +▁Beijing -11.4735 +▁FIFA -11.4735 +▁Hey -11.4735 +▁Systems -11.4738 +▁spark -11.474 +▁lend -11.474 +▁Butler -11.474 +▁bike -11.474 +▁accent -11.474 +▁manufacturer -11.4741 +▁continuously -11.4742 +▁gains -11.4744 +▁1886 -11.4747 +▁clause -11.4749 +▁Foster -11.4751 +rug -11.4751 +▁golf -11.4755 +▁Vic -11.4756 +ao -11.4758 +▁walks -11.476 +word -11.4761 +▁Mou -11.4761 +▁Fanm -11.4762 +What -11.4764 +▁Otto -11.4766 +▁Member -11.4767 +▁regain -11.4767 +aut -11.4768 +▁Kid -11.4768 +▁turbines -11.4769 +▁tv -11.477 +▁Eli -11.4771 +bell -11.4773 +▁productive -11.4774 +▁Fifth -11.4774 +▁hormone -11.4781 +had -11.4783 +▁Westminster -11.4783 +▁Stanford -11.4783 +fect -11.4784 +cop -11.4784 +▁rugby -11.4785 +▁Theodore -11.4787 +iter -11.4787 +glo -11.4788 +▁Newcastle -11.4788 +▁genera -11.4789 +▁1887 -11.4789 +eno -11.4792 +IG -11.4792 +foot -11.4794 +▁Sox -11.4794 +▁persistent -11.4794 +▁dans -11.4796 +▁Path -11.4797 +▁filling -11.4799 +dog -11.48 +▁Tr -11.4801 +▁ji -11.4801 +▁Bin -11.4802 +▁Gothic -11.4805 +▁Scientific -11.4808 +▁⁄ -11.4808 +▁Bass -11.481 +▁placement -11.481 +▁contributor -11.4811 +▁threaten -11.4811 +lets -11.4811 +▁mansion -11.4812 +▁Mobile -11.4813 +tech -11.4813 +▁Him -11.4815 +▁utilize -11.4816 +▁oswa -11.4816 +▁instances -11.4817 +▁Gui -11.4819 +▁Jen -11.4821 +▁enrolled -11.4821 +▁Money -11.4821 +▁exploring -11.4822 +▁scales -11.4824 +▁equation -11.4825 +pul -11.4828 +▁Sci -11.483 +▁Wang -11.4831 +▁bills -11.4831 +Do -11.4832 +▁intensive -11.4833 +▁panic -11.4833 +rance -11.4834 +▁prohibited -11.4835 +his -11.4837 +color -11.4838 +▁collaborated -11.4838 +▁spreading -11.4838 +▁volcano -11.4839 +▁Analysis -11.4842 +▁Comedy -11.4843 +▁laps -11.4844 +oun -11.4845 +▁CH -11.4845 +iko -11.4846 +▁bench -11.4846 +▁Corn -11.4847 +▁trunk -11.4849 +▁Allah -11.485 +▁stunt -11.485 +▁Mail -11.4851 +▁rulers -11.4852 +ific -11.4854 +ulator -11.4855 +hart -11.4855 +▁Marines -11.4856 +▁sufficiently -11.4857 +▁uprising -11.4859 +▁illustrations -11.4861 +▁hy -11.4869 +▁lamp -11.4869 +▁utilized -11.4871 +▁elementary -11.4873 +opa -11.4873 +▁NC -11.4874 +▁mortar -11.4874 +▁monster -11.4875 +▁shipped -11.4878 +ddle -11.4878 +▁vin -11.4879 +▁timing -11.4879 +▁Clear -11.4881 +▁Ottawa -11.4881 +chron -11.4885 +▁Bengal -11.4886 +▁Mercedes -11.4887 +▁implant -11.4887 +AF -11.489 +▁Venice -11.4891 +mand -11.4891 +▁Chang -11.4893 +▁enzyme -11.4894 +▁showcase -11.4895 +▁Leader -11.49 +▁barely -11.4902 +▁angel -11.4905 +flu -11.4906 +▁drives -11.4906 +▁mimic -11.4907 +▁ye -11.4907 +▁drift -11.4909 +▁Stop -11.4911 +▁onset -11.4912 +▁keen -11.4912 +▁statute -11.4913 +▁complaints -11.4913 +▁homeless -11.4915 +EM -11.4915 +▁Individual -11.4916 +▁latitude -11.4916 +▁inspection -11.4916 +▁Panama -11.4917 +▁loyalty -11.4917 +▁Rag -11.4917 +▁Denver -11.492 +▁resignation -11.4924 +▁exhibited -11.4926 +▁autism -11.4927 +▁1876 -11.4929 +▁wounds -11.4929 +▁bold -11.4931 +ente -11.4933 +▁reproduction -11.4934 +▁sponsor -11.4934 +▁reproductive -11.4936 +rina -11.4938 +▁disadvantage -11.4938 +▁bacterial -11.4939 +▁emotion -11.4939 +▁Steam -11.494 +▁Cincinnati -11.4941 +won -11.4944 +▁epidemic -11.4946 +eff -11.4949 +▁Burn -11.4949 +▁advocate -11.4949 +▁$1 -11.4951 +▁Anton -11.4951 +▁Scientists -11.4957 +▁pandemic -11.4958 +▁undergraduate -11.4958 +▁tro -11.4961 +TE -11.4964 +makers -11.4964 +▁Metal -11.4967 +▁broader -11.4967 +▁sodium -11.4968 +▁marginal -11.4969 +▁pulse -11.497 +▁substantially -11.4971 +▁drill -11.4973 +▁Romney -11.4973 +Brien -11.4977 +▁surgeon -11.4978 +▁hate -11.4982 +▁unexpected -11.4982 +▁Yugoslavia -11.4983 +▁interactive -11.4985 +▁politically -11.4985 +▁agrees -11.4987 +▁boyfriend -11.4987 +▁diagram -11.4987 +▁probe -11.4988 +▁meals -11.499 +▁Jin -11.4993 +▁invitation -11.4993 +▁Sav -11.4998 +▁Vegas -11.4999 +▁sailors -11.5002 +▁researcher -11.5004 +▁trips -11.5004 +note -11.5004 +▁sophisticated -11.5004 +▁peers -11.5007 +lag -11.5008 +▁urine -11.5018 +▁ambitious -11.5019 +▁Hence -11.5019 +▁rub -11.5023 +▁relate -11.5025 +buck -11.5028 +▁Mul -11.5029 +▁processed -11.5029 +▁Trinity -11.503 +▁Romanian -11.5032 +uro -11.5034 +▁referee -11.5035 +▁fusion -11.5035 +▁Ghost -11.5039 +▁Sierra -11.5039 +▁incomplete -11.5043 +▁sensitivity -11.5047 +▁Banks -11.5047 +▁Marx -11.5048 +ingham -11.5048 +case -11.5048 +▁flown -11.505 +IR -11.5051 +▁rubber -11.5051 +▁Colin -11.5052 +▁Challenge -11.5053 +▁Cab -11.5054 +▁rape -11.5055 +▁mentor -11.5055 +PO -11.5058 +iform -11.5059 +fre -11.5059 +version -11.506 +▁clients -11.506 +▁LP -11.506 +▁Bloom -11.5062 +PD -11.5063 +▁Springfield -11.5064 +▁Crow -11.5064 +▁Pay -11.5067 +▁Esp -11.5068 +▁Louise -11.507 +▁Comb -11.5071 +▁facial -11.5071 +▁deals -11.5075 +▁investors -11.5076 +▁cameras -11.5077 +exp -11.5078 +▁Martha -11.5078 +▁revenge -11.5079 +▁Brain -11.508 +▁Members -11.5084 +▁Rh -11.5084 +▁accidents -11.5085 +▁swallow -11.5085 +▁halt -11.509 +▁Ellen -11.5092 +▁1884 -11.5094 +grade -11.5096 +cot -11.5096 +therapy -11.5096 +▁terrorist -11.5096 +tie -11.5097 +pass -11.5097 +▁galaxy -11.51 +▁cheese -11.51 +▁tired -11.5101 +▁chant -11.5101 +▁sustain -11.5102 +aux -11.5102 +▁float -11.5103 +▁wartime -11.5103 +▁termed -11.5105 +▁competitions -11.5106 +▁tire -11.5107 +issa -11.5107 +▁batted -11.5111 +▁Animal -11.5111 +▁Leicester -11.5111 +agon -11.5112 +tell -11.5114 +▁Columbus -11.5114 +TH -11.5115 +▁tables -11.5115 +▁resistant -11.5116 +nut -11.5117 +moto -11.5119 +▁Glass -11.5122 +▁dé -11.5122 +▁assert -11.5126 +▁dawn -11.5126 +▁Jake -11.5127 +▁gates -11.513 +dian -11.5135 +▁pond -11.514 +▁journalists -11.5141 +CL -11.5143 +▁attitudes -11.5144 +▁profits -11.5145 +▁RE -11.5145 +▁Comment -11.5147 +▁genuine -11.5147 +▁Lion -11.5147 +▁Adventure -11.5153 +▁inaugural -11.5155 +▁Southeast -11.5155 +▁Pick -11.5158 +▁Clan -11.5159 +▁Nam -11.5159 +▁switched -11.5159 +▁guided -11.5159 +▁strengthening -11.5162 +▁Drug -11.5167 +▁genres -11.5167 +▁suggestions -11.5168 +▁whenever -11.5168 +▁Student -11.5172 +linger -11.5172 +▁missile -11.5173 +tour -11.5174 +turn -11.5176 +ott -11.5177 +oka -11.5178 +bird -11.5178 +▁bars -11.5178 +▁remake -11.5181 +▁tolerance -11.5182 +lusion -11.5182 +▁veterans -11.5183 +cate -11.5185 +▁boxes -11.5186 +▁basically -11.5187 +▁aviation -11.5187 +▁Generation -11.5188 +▁trio -11.5188 +para -11.5189 +▁hind -11.5189 +▁feminist -11.519 +▁allied -11.5191 +▁awake -11.5193 +▁nearest -11.5196 +▁cabin -11.5196 +▁thrust -11.5196 +▁publicity -11.5196 +▁Vin -11.5198 +и -11.5199 +▁Monument -11.5199 +▁northeastern -11.5201 +▁Vienna -11.5202 +Ba -11.5202 +▁capability -11.5204 +ality -11.5204 +▁SH -11.5206 +▁Swan -11.5206 +▁Single -11.5207 +▁delegates -11.5207 +▁Sue -11.5208 +▁Tommy -11.521 +▁Ferdinand -11.5211 +▁philosophical -11.5211 +break -11.5213 +▁potassium -11.5214 +▁strings -11.5214 +cott -11.5216 +bur -11.5217 +▁united -11.5226 +core -11.5226 +▁une -11.5227 +▁drops -11.5227 +▁attain -11.5228 +▁heal -11.5229 +▁fitness -11.523 +▁fond -11.5231 +▁tours -11.5236 +fight -11.5236 +▁scratch -11.5237 +▁unity -11.5238 +olog -11.5239 +▁Duncan -11.5241 +▁Hawaiian -11.5243 +▁Hispanic -11.5243 +▁Malta -11.5244 +tum -11.5249 +▁lengthy -11.5249 +▁Beyond -11.5249 +▁ash -11.525 +OD -11.525 +▁median -11.5252 +▁counsel -11.5252 +▁populated -11.5253 +▁canon -11.5254 +mount -11.5257 +▁injection -11.5258 +▁organisations -11.5259 +▁Glee -11.526 +▁Alt -11.5263 +▁zinc -11.5267 +▁robust -11.5267 +▁Laurent -11.5267 +▁captive -11.5267 +▁Select -11.5267 +bl -11.5269 +▁Hearts -11.5269 +▁Hir -11.5269 +▁bro -11.527 +▁retreated -11.527 +▁develops -11.5271 +▁Clement -11.5273 +▁Julie -11.5273 +▁Richardson -11.5273 +▁delegation -11.5276 +▁dish -11.5277 +hoe -11.5279 +▁Give -11.528 +▁grape -11.5282 +▁suppress -11.5283 +uld -11.5284 +inal -11.5284 +▁bleeding -11.5284 +▁unaware -11.5285 +▁provider -11.5285 +▁emphasized -11.5287 +▁mounts -11.5287 +text -11.5288 +▁pill -11.5294 +LO -11.5297 +▁Sco -11.5298 +▁pray -11.5298 +▁nursing -11.5299 +▁1875 -11.5301 +▁stuck -11.5302 +") -11.5303 +▁au -11.5303 +▁appoint -11.5303 +▁chromosome -11.5305 +▁probability -11.5308 +▁hanging -11.5311 +▁lifted -11.5312 +cla -11.5314 +▁Austro -11.5315 +achi -11.5316 +cephal -11.5317 +▁Josh -11.5317 +▁Often -11.5319 +▁cholesterol -11.532 +▁imaging -11.5321 +zzi -11.5322 +▁shrub -11.5323 +▁Universe -11.5324 +ł -11.5324 +oxy -11.5325 +▁motivated -11.5325 +▁Nothing -11.5327 +dos -11.5327 +▁Poll -11.5327 +ury -11.5327 +▁medals -11.533 +▁Leeds -11.533 +▁nucleus -11.533 +▁Malay -11.5331 +EF -11.5333 +▁Principal -11.5333 +ggle -11.5335 +▁possibilities -11.5335 +trans -11.5335 +▁owing -11.5337 +pay -11.5338 +▁Aaron -11.5338 +zel -11.5338 +▁smallest -11.5339 +▁Bangladesh -11.5341 +▁atop -11.5342 +▁prone -11.5345 +▁bas -11.5345 +▁prompting -11.5346 +▁Hopkins -11.5347 +▁directing -11.5347 +▁aided -11.5348 +▁Hip -11.5349 +2) -11.535 +▁balls -11.535 +▁Hull -11.5352 +▁summary -11.5353 +▁Easter -11.5353 +▁productivity -11.5354 +ML -11.5355 +▁southwestern -11.5356 +▁onwards -11.5357 +▁pride -11.5358 +▁Merc -11.536 +▁Cox -11.5361 +▁1881 -11.5361 +▁installment -11.5361 +▁Glasgow -11.5362 +▁ram -11.5362 +▁posed -11.5363 +▁Normandy -11.5363 +▁pounder -11.5364 +▁vocalist -11.5364 +▁Kre -11.5365 +▁reluctant -11.5366 +▁gallery -11.5368 +▁antagonist -11.5371 +▁trademark -11.5372 +▁thank -11.5377 +▁Jennifer -11.5377 +NI -11.5377 +▁editions -11.5381 +▁developer -11.5385 +▁ensemble -11.5386 +▁Map -11.5386 +ished -11.5387 +▁restaurants -11.5389 +smith -11.5389 +▁coupled -11.539 +▁Delhi -11.5391 +▁needle -11.5394 +rice -11.5395 +▁1871 -11.5395 +▁lens -11.5403 +print -11.5403 +▁Edgar -11.5403 +asse -11.5403 +▁Choice -11.5404 +▁wool -11.5405 +▁editorial -11.5406 +evi -11.5408 +hab -11.5409 +▁Helm -11.5409 +▁coaches -11.5409 +▁contents -11.5411 +▁marble -11.5413 +▁larvae -11.5416 +▁distances -11.5416 +▁cope -11.5418 +▁René -11.5419 +lain -11.5422 +▁surgical -11.5425 +▁Gross -11.5425 +▁Cena -11.5425 +▁surprising -11.5426 +▁Theater -11.5427 +▁faction -11.5427 +▁eighteen -11.5428 +▁Sale -11.5429 +▁vocabulary -11.5431 +NG -11.5433 +pid -11.5433 +▁afraid -11.5434 +▁ruins -11.5434 +▁Albany -11.5434 +▁Twin -11.5435 +▁tide -11.5435 +▁cameo -11.5435 +▁canceled -11.5435 +▁crater -11.5437 +▁Millennium -11.544 +▁Truth -11.5442 +▁1877 -11.5443 +lop -11.5444 +▁Mongol -11.5445 +▁Tea -11.5445 +▁Powell -11.5446 +bby -11.5448 +▁anthem -11.5449 +▁Bears -11.5449 +▁advocated -11.5449 +▁hiding -11.545 +▁infants -11.5451 +▁1869 -11.5454 +▁Shield -11.5455 +▁Romans -11.5455 +▁mint -11.5456 +▁Cry -11.5457 +▁tier -11.5458 +▁Arena -11.5459 +▁Basin -11.546 +▁Henderson -11.5461 +▁ministers -11.5461 +▁mad -11.5461 +▁translate -11.5462 +▁Pitt -11.5463 +▁Physical -11.5466 +▁1883 -11.5466 +▁Heat -11.5467 +▁armoured -11.5469 +gos -11.5469 +▁fence -11.547 +▁detachment -11.5471 +▁certificate -11.5473 +▁Screen -11.5473 +▁analyzed -11.5474 +vwa -11.5475 +▁stance -11.5476 +▁loading -11.5477 +▁sexually -11.5479 +▁projection -11.5479 +▁Poe -11.548 +umi -11.5481 +▁Material -11.5482 +▁instructed -11.5482 +▁eu -11.5485 +▁asthma -11.5486 +▁inning -11.5489 +▁atis -11.5491 +▁Hugo -11.5492 +▁anonymous -11.5494 +keeper -11.5494 +▁lè -11.5496 +▁Typhoon -11.5497 +▁skilled -11.5497 +▁Marsh -11.5497 +SL -11.5499 +shore -11.55 +▁Reform -11.5501 +usa -11.5504 +▁Thursday -11.5506 +▁breakdown -11.5514 +▁enabling -11.5515 +▁Heath -11.5515 +▁talked -11.5517 +▁Barcelona -11.5518 +▁glucose -11.5518 +emi -11.552 +▁Stories -11.5521 +ended -11.5523 +▁comet -11.5524 +▁cre -11.5525 +▁uncertainty -11.5526 +ckle -11.5528 +called -11.5529 +▁pier -11.5535 +▁aktris -11.5535 +▁planes -11.5537 +▁fortifications -11.5537 +▁Angelou -11.5538 +▁explicitly -11.5539 +▁spike -11.5543 +▁runner -11.5543 +▁bubble -11.5545 +connect -11.5546 +▁noun -11.5549 +nard -11.5551 +▁1867 -11.5552 +mbi -11.5558 +▁konesans -11.556 +ike -11.5561 +▁Former -11.5562 +main -11.5563 +▁rapper -11.5564 +▁Shan -11.5566 +rod -11.5567 +▁Crusade -11.557 +▁enables -11.5574 +elia -11.5577 +▁230 -11.5577 +strat -11.5577 +▁designers -11.5577 +▁install -11.5577 +▁Castro -11.5579 +▁Practice -11.5579 +▁malaria -11.5579 +▁menu -11.5582 +▁refuses -11.5583 +beat -11.5584 +▁shoes -11.5584 +▁dye -11.5587 +▁photographer -11.5588 +▁Advance -11.5588 +▁mega -11.5591 +▁testimony -11.5591 +▁ambush -11.5591 +▁Foot -11.5592 +▁Circuit -11.5594 +▁forever -11.5596 +▁wreck -11.5596 +PP -11.5598 +▁roller -11.5599 +▁Full -11.56 +range -11.56 +▁Method -11.5601 +▁Spec -11.5601 +ür -11.5601 +▁mouri -11.5604 +▁Prison -11.5604 +▁activated -11.5605 +▁Springs -11.5606 +▁Alman -11.5607 +▁Examples -11.5609 +▁dreadnought -11.5609 +▁Monroe -11.5609 +▁shrine -11.5612 +▁balloon -11.5614 +▁Stars -11.5616 +▁Heavy -11.5618 +vision -11.5621 +▁assign -11.5621 +▁Senior -11.5622 +▁Cuban -11.5625 +▁Twenty -11.5628 +▁allocated -11.5628 +▁Complete -11.5628 +▁1866 -11.5629 +ão -11.5629 +▁Lil -11.5629 +▁obscure -11.5635 +▁Torres -11.5635 +▁Damage -11.5636 +rra -11.5636 +▁lungs -11.5637 +lem -11.5638 +▁Petr -11.5638 +▁shout -11.564 +American -11.5642 +▁vest -11.5642 +▁Kee -11.5642 +direct -11.5642 +▁Bosnia -11.5643 +▁Dictionary -11.5646 +▁utility -11.5646 +cke -11.5647 +▁parade -11.5649 +▁maneuver -11.5651 +▁submerged -11.5652 +▁Serb -11.5654 +▁Holmes -11.5656 +▁Ny -11.5658 +▁managers -11.5658 +▁Bruno -11.566 +▁consequently -11.5662 +OP -11.5663 +▁Bed -11.5664 +▁shops -11.5665 +mbo -11.5667 +▁gifts -11.5667 +temp -11.567 +▁laying -11.5673 +▁barriers -11.5674 +▁statistical -11.5674 +▁integrity -11.5677 +▁presidency -11.5677 +▁inflation -11.5677 +▁stiff -11.5677 +▁fails -11.568 +eta -11.5682 +lene -11.5682 +▁Start -11.5682 +▁magical -11.5683 +▁pH -11.5684 +▁tumor -11.5685 +▁jumping -11.5685 +▁disputed -11.5686 +▁Kepler -11.5686 +▁Cultural -11.5686 +▁ja -11.5687 +å -11.5689 +▁Olivier -11.569 +flo -11.5691 +▁ekri -11.5693 +▁dentist -11.5694 +▁dimensional -11.5694 +▁submarines -11.5695 +▁Appeal -11.5695 +▁Palm -11.5695 +dio -11.5696 +▁ce -11.5698 +▁prescribed -11.5698 +▁certification -11.5698 +▁Heavyweight -11.5698 +▁Close -11.5701 +▁Moses -11.5701 +▁Vel -11.5706 +▁transplant -11.5708 +▁Marcus -11.5712 +▁Hour -11.5713 +▁Institution -11.5714 +▁neighboring -11.5714 +▁calories -11.5714 +▁primitive -11.5714 +▁1882 -11.5715 +▁tended -11.5715 +RD -11.5716 +▁750 -11.5716 +▁comics -11.5717 +▁Beck -11.5719 +▁preparations -11.572 +▁Dry -11.572 +▁Tax -11.5722 +▁Tintin -11.5725 +▁bud -11.5725 +▁governing -11.5726 +▁physicist -11.5729 +▁deciding -11.5729 +▁Prevention -11.573 +▁wh -11.5731 +▁Hil -11.5732 +▁subordinate -11.5733 +▁rolling -11.5733 +gation -11.5735 +▁grace -11.5735 +▁integral -11.5735 +▁stack -11.5735 +ried -11.5736 +TI -11.5739 +▁grades -11.5744 +▁XI -11.5744 +▁commerce -11.5745 +▁Essay -11.5745 +▁limestone -11.5745 +▁Đ -11.5745 +▁acclaimed -11.5747 +▁Acc -11.5748 +▁disabilities -11.5748 +▁enzymes -11.575 +▁Origin -11.575 +▁rid -11.575 +▁inadequate -11.5751 +There -11.5752 +allIn -11.5752 +▁decree -11.5754 +▁piblikasyon -11.5754 +▁inquiry -11.5754 +▁electoral -11.5757 +ucci -11.5759 +▁ecosystems -11.576 +▁Hubbard -11.576 +▁weighed -11.5761 +GA -11.5762 +lab -11.5762 +eux -11.5766 +▁Citizen -11.5766 +▁momentum -11.5771 +▁respected -11.5772 +▁1873 -11.5773 +▁McCarthy -11.5773 +▁torpedoes -11.5774 +▁NE -11.5776 +▁Volt -11.5777 +▁floods -11.5777 +▁presenting -11.5778 +▁chains -11.5779 +▁sperm -11.5781 +▁systematic -11.5781 +▁swim -11.5784 +▁flies -11.5787 +▁135 -11.5788 +▁Primary -11.5788 +▁registration -11.5788 +▁fees -11.5789 +▁naked -11.5792 +▁dietary -11.5792 +▁MI -11.5794 +sim -11.5794 +▁NA -11.5795 +▁127 -11.5796 +▁Starr -11.5796 +ught -11.5798 +psi -11.5799 +lou -11.5799 +lio -11.5803 +wyn -11.5803 +▁alloy -11.5804 +▁inducted -11.5804 +▁portray -11.5808 +▁plasma -11.5812 +▁Mit -11.5812 +▁parameters -11.5815 +▁kou -11.5816 +▁flaw -11.5816 +▁reversed -11.5816 +▁terrible -11.5816 +hop -11.5817 +▁aging -11.5819 +▁Search -11.5821 +▁addresses -11.5822 +▁Mull -11.5822 +à -11.5823 +worm -11.5823 +▁Sharp -11.5825 +▁influenza -11.5826 +▁cyber -11.5826 +▁Madrid -11.5827 +▁Manager -11.5827 +е -11.5829 +▁spare -11.583 +▁expertise -11.583 +▁warn -11.5832 +lessness -11.5834 +00,000 -11.5834 +-10 -11.5835 +▁lan -11.5838 +▁1878 -11.5838 +ichi -11.5839 +▁robot -11.5841 +▁leather -11.5841 +▁Sus -11.5841 +▁mushroom -11.5842 +▁container -11.5842 +▁disbanded -11.5844 +▁Tests -11.5846 +▁lease -11.5848 +▁Starting -11.5848 +mul -11.5848 +▁roster -11.5849 +rad -11.5853 +▁grammar -11.5854 +agi -11.5854 +▁recommendation -11.5856 +▁subtropical -11.5857 +▁Nov -11.5858 +▁interviewed -11.5858 +▁Bak -11.5859 +▁Nash -11.5859 +▁pal -11.5859 +▁Percy -11.586 +CH -11.586 +that -11.5861 +game -11.5864 +▁spores -11.5864 +▁Process -11.5867 +▁gaming -11.5867 +▁holder -11.5869 +▁induced -11.587 +igo -11.5871 +▁beds -11.5871 +▁everywhere -11.5874 +▁comprises -11.5875 +bir -11.5875 +▁invite -11.5875 +specific -11.5876 +▁Neo -11.5876 +▁screens -11.5877 +▁Spencer -11.5879 +▁tremendous -11.5879 +▁severity -11.5879 +rell -11.5879 +▁Telegraph -11.588 +▁Wool -11.5881 +▁Concert -11.5882 +▁bark -11.5882 +▁expenses -11.5883 +▁Cruz -11.5884 +Me -11.5885 +▁mistakes -11.5888 +▁Double -11.5892 +▁fraud -11.5892 +▁Smart -11.5892 +▁Beau -11.5893 +isse -11.5896 +▁Sword -11.5897 +▁incentive -11.5898 +rium -11.5899 +tner -11.5902 +jun -11.5903 +style -11.5903 +night -11.5904 +▁inHg -11.5905 +▁refuge -11.5905 +▁openly -11.5907 +▁rib -11.5908 +▁descriptions -11.5908 +▁Ara -11.5909 +▁precisely -11.591 +▁commissioner -11.591 +▁satisfied -11.591 +▁predator -11.5911 +▁departments -11.5912 +▁Peru -11.5916 +▁Sil -11.5916 +▁enforce -11.5917 +▁Yugoslav -11.5918 +▁Lance -11.592 +name -11.592 +▁tactical -11.5921 +▁phases -11.5921 +▁190 -11.5922 +▁Leigh -11.5922 +▁Julia -11.5923 +▁restrict -11.5923 +▁Multi -11.5924 +yu -11.5926 +▁Tigers -11.5926 +▁Phillips -11.5928 +oz -11.5929 +▁manages -11.5929 +▁guards -11.5929 +▁rushed -11.593 +▁Issue -11.5933 +▁coaching -11.5934 +▁asteroid -11.5936 +lov -11.5939 +cil -11.5939 +▁citizenship -11.594 +plant -11.594 +▁é -11.5941 +▁Pul -11.5942 +▁lesbian -11.5942 +▁behave -11.5942 +▁fantastic -11.5948 +▁Mean -11.5948 +▁olive -11.5948 +ifier -11.5949 +▁NL -11.5951 +▁curves -11.5951 +gia -11.5951 +▁await -11.5952 +▁orbital -11.5953 +▁kid -11.5954 +▁winners -11.5956 +▁beta -11.5958 +▁descended -11.5958 +▁Ultimately -11.5959 +▁faithful -11.5965 +▁surveys -11.5965 +rot -11.5967 +▁Nigeria -11.5968 +dock -11.5968 +▁Singh -11.597 +▁customs -11.597 +▁legally -11.5971 +▁sixty -11.5971 +É -11.5972 +▁matrix -11.5974 +▁Chuck -11.5974 +▁Lex -11.5974 +▁Imp -11.5975 +▁Viet -11.5975 +▁emission -11.5976 +▁stopping -11.5978 +▁modifications -11.5979 +▁prohibit -11.5981 +▁edit -11.5981 +▁Hold -11.5982 +▁draws -11.5983 +▁woods -11.5983 +▁Veronica -11.5983 +▁pointing -11.5984 +▁CT -11.5984 +icus -11.5984 +▁analyses -11.5986 +▁Fischer -11.5986 +flow -11.5989 +▁Gibson -11.5989 +▁Flood -11.599 +▁resign -11.5991 +▁swamp -11.5992 +▁tensions -11.5994 +Po -11.5996 +▁auction -11.5996 +radi -11.5997 +▁1868 -11.5998 +▁Truman -11.5999 +▁McKinley -11.6002 +$ -11.6003 +▁reasoning -11.6003 +tip -11.6003 +▁modes -11.6004 +▁Andre -11.6006 +▁deficiency -11.6008 +▁pipeline -11.6008 +▁fingers -11.6009 +▁averaged -11.6009 +▁touchdowns -11.601 +▁Greeks -11.601 +▁Kara -11.601 +▁McDonald -11.6012 +▁Wednesday -11.6012 +▁1872 -11.6012 +▁Wellington -11.6012 +▁Spa -11.6015 +ometer -11.6015 +▁dried -11.6017 +▁sizes -11.6018 +▁confrontation -11.6018 +▁altogether -11.6021 +▁(1) -11.6021 +▁concludes -11.6024 +▁autobiography -11.6024 +▁backup -11.6025 +▁pigment -11.6026 +▁shirt -11.603 +▁Blair -11.603 +▁mobility -11.6031 +▁aquatic -11.6031 +▁bind -11.6032 +▁chocolate -11.6034 +▁borrow -11.6039 +▁Nik -11.6039 +▁borough -11.6042 +▁Print -11.6045 +▁hardly -11.6046 +▁Isles -11.6046 +▁Ski -11.6047 +under -11.6048 +▁thesis -11.6049 +▁computing -11.605 +▁Palmer -11.6052 +▁frozen -11.6053 +rc -11.6055 +▁lac -11.6056 +▁substrate -11.606 +▁deer -11.6061 +▁Fol -11.6061 +▁update -11.6062 +▁purple -11.6063 +▁Tiger -11.6063 +▁climbing -11.6063 +▁generating -11.6067 +▁rad -11.6069 +▁Schumacher -11.6069 +▁Edwin -11.607 +mie -11.6073 +▁thoroughly -11.6075 +▁Cecil -11.6075 +Ca -11.6076 +yle -11.6076 +▁drawings -11.6078 +▁shake -11.6081 +▁undertook -11.6082 +plane -11.6083 +▁Very -11.6084 +▁Norse -11.6086 +▁TO -11.6086 +▁Lev -11.6086 +gam -11.6087 +▁Esc -11.6088 +▁terrestrial -11.6088 +▁Tab -11.6088 +omb -11.6089 +▁pressed -11.609 +▁spinal -11.6093 +▁servants -11.6096 +▁disrupt -11.6097 +▁Orton -11.6097 +html -11.6097 +▁Deb -11.6098 +▁hamlet -11.6101 +▁fatalities -11.6102 +web -11.6105 +TR -11.6105 +▁corrupt -11.6106 +▁Hai -11.6107 +meter -11.6109 +▁inhabit -11.6109 +assi -11.611 +▁coloured -11.611 +▁reflecting -11.6112 +▁providers -11.6114 +▁repaired -11.6115 +▁castles -11.6116 +▁batter -11.6116 +rier -11.6118 +metry -11.6121 +▁sprint -11.6125 +▁dispatched -11.6126 +lik -11.6126 +▁venues -11.6126 +▁bees -11.6128 +▁nail -11.6128 +fla -11.6128 +▁priests -11.6128 +▁Tha -11.6133 +▁maturity -11.6133 +▁MLB -11.6133 +▁rabbit -11.6135 +MO -11.6135 +▁Clay -11.6136 +▁attach -11.6136 +formation -11.6137 +▁flowing -11.6138 +▁snake -11.6141 +▁nano -11.6141 +▁dinosaurs -11.6142 +▁locomotives -11.6145 +▁Tucker -11.6148 +power -11.615 +▁Neuro -11.6151 +▁proceeds -11.6152 +▁1) -11.6152 +▁Certain -11.6153 +IL -11.6155 +▁staged -11.6155 +▁underneath -11.6156 +▁Iceland -11.6156 +▁cry -11.6156 +▁inhabited -11.6157 +CT -11.6158 +▁recreational -11.6159 +▁happiness -11.6162 +▁Lanka -11.6164 +▁Tournament -11.6165 +▁meditation -11.6165 +▁Neu -11.6167 +▁Comics -11.6167 +odor -11.6167 +▁Rey -11.617 +▁organism -11.6173 +▁websites -11.6173 +▁grip -11.6175 +òm -11.6175 +▁Rapid -11.6177 +phil -11.618 +▁contracted -11.618 +▁spelling -11.618 +▁sweat -11.6182 +borough -11.6183 +▁Species -11.6183 +MD -11.6188 +▁Ré -11.6191 +▁disputes -11.6192 +comp -11.6196 +▁ignore -11.6199 +▁unveiled -11.6201 +illon -11.6202 +roid -11.6203 +▁eldest -11.6204 +▁ci -11.6207 +▁investigating -11.6208 +▁defining -11.6208 +▁quo -11.6209 +▁solving -11.621 +human -11.6212 +▁appreciated -11.6212 +▁monks -11.6214 +▁Telenovela -11.6214 +▁triggered -11.6215 +▁cart -11.6215 +▁algorithm -11.6217 +▁Problem -11.6217 +▁labeled -11.6218 +▁automobile -11.6224 +▁Deputy -11.6227 +▁performers -11.6231 +ifi -11.6231 +▁prophet -11.6234 +▁activists -11.6234 +▁riot -11.6237 +▁nests -11.6237 +ility -11.6239 +▁infinite -11.624 +▁merchants -11.624 +iber -11.6242 +▁offspring -11.6243 +▁operators -11.6244 +▁absorption -11.6247 +▁forgotten -11.6247 +▁FM -11.6247 +▁Better -11.6249 +▁Newman -11.6249 +▁synthetic -11.6249 +▁Vis -11.6251 +▁investigations -11.6253 +▁immense -11.6253 +▁renovation -11.6253 +▁prose -11.6254 +Pro -11.6255 +▁answered -11.6256 +▁dairy -11.6256 +▁rally -11.6256 +aker -11.6257 +▁somewhere -11.6259 +ashi -11.6259 +▁Syrian -11.6261 +imo -11.6261 +IM -11.6263 +vari -11.6263 +▁Derby -11.6265 +example -11.6265 +▁agenda -11.6266 +▁drinks -11.6268 +▁accomplish -11.6268 +▁entity -11.627 +▁Kel -11.627 +▁IS -11.6271 +▁incorporating -11.6273 +▁JNA -11.6273 +▁pile -11.6273 +▁struggles -11.6274 +▁maintains -11.6276 +lton -11.6276 +▁delays -11.6277 +▁Turks -11.6278 +▁Emily -11.6278 +▁payments -11.628 +▁Calvin -11.628 +▁Une -11.6282 +▁contend -11.6282 +▁Phillies -11.6283 +▁explorer -11.6284 +▁revived -11.6284 +▁Ras -11.6284 +▁heroes -11.6285 +borne -11.6288 +▁Cabinet -11.6289 +▁González -11.6289 +virus -11.6291 +▁ensuing -11.6292 +▁exert -11.6294 +▁radioactive -11.6294 +▁persuade -11.6294 +▁1848 -11.6295 +date -11.6296 +▁© -11.6297 +▁inhibit -11.6298 +▁Antoine -11.6298 +▁qualify -11.6298 +ush -11.6299 +▁Making -11.63 +▁kont -11.6301 +▁Linda -11.6301 +▁wanting -11.6302 +▁Crawford -11.6302 +▁moist -11.6303 +▁observing -11.6306 +▁Michelle -11.6306 +▁subjected -11.6308 +▁106 -11.6309 +▁stereotype -11.6309 +xton -11.6313 +▁regiments -11.6313 +▁speculated -11.6313 +▁fatty -11.6314 +▁thrive -11.6315 +▁Flanders -11.6319 +▁épisode -11.6319 +tica -11.6319 +▁cage -11.6321 +▁Fla -11.6323 +▁requests -11.6323 +found -11.6324 +▁Guatemala -11.6325 +▁unnecessary -11.6325 +than -11.6326 +being -11.6329 +▁haven -11.6331 +▁meaningful -11.6332 +▁trim -11.6332 +otic -11.6333 +▁athlete -11.6334 +amour -11.6334 +lysis -11.6335 +▁verbal -11.6335 +▁monuments -11.6339 +▁Headquarters -11.6342 +▁dug -11.6343 +rock -11.6344 +▁Alzheimer -11.6345 +▁essence -11.6345 +▁prosecution -11.6348 +▁paved -11.6351 +▁DO -11.6351 +▁2) -11.6352 +▁colleges -11.6354 +▁Mak -11.6357 +▁Nathan -11.6357 +▁EPA -11.636 +▁surpassed -11.6361 +▁rats -11.6361 +▁archaeologist -11.6361 +▁(3 -11.6363 +SM -11.6363 +▁cigarette -11.6363 +▁theaters -11.6365 +hurst -11.6365 +▁altar -11.6365 +▁Fil -11.6366 +CP -11.6366 +Ex -11.6366 +▁Should -11.6368 +▁Nicolas -11.6369 +▁commemorate -11.637 +eus -11.637 +▁sporting -11.637 +guard -11.637 +aged -11.637 +ogram -11.6371 +▁prolonged -11.6371 +▁Annual -11.6372 +▁spatial -11.6374 +▁gospel -11.6375 +▁conquered -11.6375 +▁Maxim -11.6376 +▁Basketball -11.6378 +▁Gli -11.6378 +▁hub -11.6379 +▁Cyclone -11.6381 +▁interrupted -11.6385 +▁breakthrough -11.6385 +mouth -11.6385 +▁hire -11.6386 +▁UB -11.6387 +▁lobby -11.6391 +▁feat -11.6392 +▁Erik -11.6393 +▁unusually -11.6395 +blo -11.6396 +▁disagreement -11.6396 +▁appealed -11.6396 +rail -11.6397 +▁Haiti -11.6398 +▁gusts -11.64 +▁Gru -11.6401 +▁Lancashire -11.6401 +▁custody -11.6401 +▁devastating -11.6401 +▁replica -11.6403 +lig -11.6403 +UN -11.6405 +▁Bul -11.6407 +▁retro -11.6407 +▁shortage -11.6407 +▁speeches -11.6409 +▁Hag -11.6411 +▁Logan -11.6411 +▁valued -11.6412 +moor -11.6413 +▁Cambodia -11.6414 +▁applies -11.6415 +aceae -11.6415 +òl -11.6415 +▁chess -11.6417 +▁diary -11.6418 +▁Romania -11.6419 +rava -11.6419 +▁Visual -11.6421 +▁Bod -11.6422 +▁rows -11.6423 +▁dreams -11.6426 +sè -11.6427 +▁1879 -11.6427 +▁loans -11.6427 +▁opined -11.6427 +▁reminiscent -11.6427 +▁privacy -11.6427 +▁everybody -11.6429 +▁minds -11.6429 +▁designing -11.643 +▁haul -11.643 +▁password -11.6432 +▁addressing -11.6432 +▁Chase -11.6432 +▁Colt -11.6434 +▁workplace -11.6435 +ril -11.6435 +ution -11.6436 +▁consultant -11.6439 +▁weaken -11.6439 +tia -11.6439 +▁Operations -11.6439 +▁captivity -11.6441 +▁jersey -11.6441 +▁detective -11.6448 +▁eager -11.6449 +▁Antarctic -11.6451 +▁Cause -11.6451 +▁Jeremy -11.6457 +▁conform -11.6458 +oria -11.6459 +▁Chemical -11.6459 +▁grandson -11.646 +▁Expedition -11.6461 +ppy -11.6461 +▁strictly -11.6463 +▁securing -11.6464 +▁Annie -11.6465 +▁Baldwin -11.6467 +▁genius -11.6468 +▁sovereignty -11.6468 +pli -11.647 +▁Walk -11.647 +stat -11.6471 +ido -11.6471 +▁rod -11.6474 +▁dismiss -11.6474 +ept -11.6474 +▁yd -11.6475 +▁metropolitan -11.6477 +▁Cas -11.6479 +▁Ark -11.6481 +shaw -11.6481 +▁Adelaide -11.6484 +▁incidence -11.6487 +▁default -11.6488 +▁propeller -11.6488 +▁leap -11.6489 +iser -11.649 +care -11.649 +▁firms -11.649 +▁maternal -11.6491 +▁compensate -11.6491 +gard -11.6491 +▁Myst -11.6491 +school -11.6493 +▁concession -11.6494 +▁spiral -11.6494 +▁Dawn -11.6495 +▁unsuccessfully -11.6496 +▁Krishna -11.6497 +▁innocent -11.6497 +▁governed -11.6498 +▁variants -11.6499 +ν -11.6504 +▁puzzle -11.6504 +▁intimate -11.6505 +▁Meta -11.6506 +▁farmer -11.6506 +▁frigate -11.6508 +▁fixture -11.6508 +ional -11.6509 +▁Mills -11.6509 +▁proceedings -11.6509 +▁Arabian -11.651 +▁unemployment -11.6511 +▁Floyd -11.6511 +▁instrumentation -11.6513 +▁displacement -11.6514 +▁Tasmania -11.6514 +immer -11.6516 +▁germ -11.6516 +▁Personal -11.6517 +▁Combat -11.6517 +▁unlock -11.6518 +▁Harper -11.6518 +▁Boo -11.6518 +▁deadly -11.652 +▁inscription -11.652 +▁violin -11.6521 +▁surveillance -11.6524 +▁costumes -11.6524 +iac -11.6527 +▁locked -11.6527 +PL -11.6528 +DOT -11.6528 +iga -11.6529 +▁108 -11.653 +▁clusters -11.653 +▁revelation -11.6531 +▁Lead -11.6535 +▁Quest -11.6535 +▁synth -11.6536 +▁Private -11.6537 +grass -11.6538 +▁competitors -11.6538 +▁formations -11.6539 +▁Professional -11.6541 +▁convincing -11.6541 +▁Aviation -11.6541 +▁salmon -11.6541 +▁Tal -11.6542 +▁Exp -11.6543 +▁neighbouring -11.6544 +▁Leave -11.6545 +▁113 -11.6545 +▁Legion -11.6547 +▁Marty -11.6547 +▁incorporates -11.6551 +▁Doug -11.6551 +▁Scar -11.6552 +▁cellular -11.6553 +▁introduces -11.6554 +▁cop -11.6555 +▁Epi -11.6555 +▁helmet -11.6556 +▁advisor -11.6556 +▁donor -11.6556 +▁punt -11.6557 +▁excluded -11.6557 +▁112 -11.656 +▁entries -11.6561 +▁brake -11.6562 +▁Gustav -11.6564 +▁modify -11.6565 +▁lunar -11.6565 +▁bedroom -11.6565 +▁sortie -11.6565 +hur -11.6566 +▁privately -11.6566 +▁complimented -11.6567 +▁expressing -11.6567 +▁exceeded -11.6568 +▁purely -11.657 +▁Tuesday -11.6574 +▁arrange -11.6575 +▁enacted -11.6577 +▁Core -11.658 +▁brass -11.658 +▁103 -11.658 +▁embedded -11.6581 +Qu -11.6585 +ugg -11.659 +inated -11.6593 +▁Mala -11.6594 +▁rises -11.6596 +WA -11.6596 +▁devotion -11.6601 +▁rehearsal -11.6601 +▁liberty -11.6601 +▁nickel -11.6601 +▁Woods -11.6602 +kle -11.6603 +▁Gerald -11.6604 +▁Cardinals -11.6604 +▁toilet -11.6604 +▁occupy -11.6605 +▁alike -11.6605 +▁Prof -11.6606 +▁Lay -11.6606 +▁rebounds -11.6607 +▁Syans -11.661 +▁Shelley -11.6612 +▁Lithuanian -11.6615 +tun -11.6618 +▁grains -11.6618 +▁paragraph -11.6619 +dine -11.6619 +▁Lor -11.662 +▁practiced -11.6622 +wè -11.6622 +▁Made -11.6623 +▁Chairman -11.6625 +▁pirate -11.6625 +▁Griffin -11.6625 +▁horsepower -11.6626 +lob -11.6626 +▁limiting -11.6629 +▁Fernando -11.6629 +tique -11.6631 +▁Rhode -11.6631 +▁clerk -11.6632 +▁Saudi -11.6633 +▁honorary -11.6634 +▁calculate -11.6634 +ige -11.6634 +▁fungi -11.6635 +▁erect -11.6637 +nock -11.6637 +▁disposal -11.6639 +▁Capitol -11.6639 +▁Job -11.6639 +▁Johann -11.6639 +PE -11.664 +▁runway -11.6643 +▁cooler -11.6644 +▁Geoffrey -11.6649 +▁orchestral -11.665 +izer -11.665 +▁mall -11.6651 +HO -11.6652 +▁Raven -11.6652 +▁purchasing -11.6652 +▁declaring -11.6652 +▁Sul -11.6654 +▁pulp -11.6654 +▁Tel -11.6654 +▁165 -11.6655 +ime -11.6658 +▁derivative -11.6659 +▁tennis -11.6659 +▁Rocky -11.6662 +▁championships -11.6664 +ñ -11.6665 +▁Text -11.6665 +▁Declaration -11.6666 +▁composers -11.6666 +▁bare -11.6668 +▁Pier -11.6669 +▁supporter -11.6669 +▁foundations -11.667 +pac -11.667 +▁Pont -11.6671 +▁soils -11.6673 +▁temp -11.6676 +▁embryo -11.6676 +▁Barrett -11.6676 +▁Ill -11.6676 +▁Different -11.6676 +trop -11.6677 +▁inferior -11.6679 +▁Essex -11.6679 +▁basement -11.668 +▁Maj -11.6683 +▁discusses -11.6684 +▁Calgary -11.669 +▁SmackDown -11.669 +▁centres -11.6694 +▁heated -11.6695 +▁Cong -11.6696 +mil -11.6696 +shin -11.6697 +▁inability -11.6699 +ester -11.6699 +fusion -11.6702 +▁Squ -11.6703 +▁Pic -11.6704 +▁wagon -11.6704 +▁dominate -11.6705 +▁developmental -11.6706 +▁contested -11.6706 +gno -11.6706 +▁torture -11.6706 +▁ironclad -11.6707 +▁Spot -11.6707 +anga -11.6708 +▁dig -11.671 +SR -11.6712 +▁mosque -11.6713 +▁merger -11.6714 +▁playable -11.6717 +▁mob -11.6718 +▁teenage -11.6719 +▁combining -11.672 +▁Ost -11.6722 +▁Colombia -11.6724 +▁Dominican -11.6725 +▁baron -11.6725 +▁memorable -11.6727 +▁lengths -11.6727 +▁halted -11.6727 +▁Dé -11.6728 +▁Plymouth -11.673 +kra -11.6731 +PM -11.6731 +▁Cinema -11.6731 +▁foul -11.6734 +▁RBI -11.6737 +▁ranged -11.6737 +lash -11.6738 +▁Ble -11.6741 +▁susceptible -11.6741 +AB -11.6742 +▁worthy -11.6745 +lian -11.6745 +▁generic -11.6747 +▁obviously -11.6747 +▁Clean -11.675 +▁depot -11.6751 +uba -11.6751 +▁optimal -11.6751 +▁Musical -11.6752 +▁Southwest -11.6752 +▁stressed -11.6754 +▁spectators -11.6755 +▁Parkway -11.6756 +▁exhaust -11.6757 +▁Motion -11.6759 +▁chip -11.676 +▁declining -11.6761 +▁counted -11.6762 +▁stems -11.6767 +▁correspondence -11.6769 +▁invest -11.677 +1) -11.6771 +▁intercept -11.6772 +▁Grande -11.6775 +▁socialist -11.6775 +▁Bermuda -11.6775 +▁Dudley -11.6775 +▁jou -11.6784 +▁unprecedented -11.6785 +▁Faith -11.6785 +▁lodge -11.6786 +▁associations -11.6787 +▁appreciate -11.6788 +▁Pap -11.6789 +▁Berry -11.679 +▁insult -11.6791 +▁Sugar -11.6792 +▁pat -11.6793 +▁arcade -11.6793 +▁Newport -11.6795 +▁mari -11.6795 +▁Karen -11.6801 +▁sensors -11.6801 +▁Princip -11.6801 +▁rob -11.6802 +▁gesture -11.6803 +▁Joshua -11.6803 +▁tech -11.6805 +▁allegations -11.6806 +▁premye -11.6806 +▁Ari -11.6808 +ffin -11.6808 +▁northwestern -11.681 +▁gro -11.6812 +▁tiger -11.6813 +▁abortion -11.6813 +▁prevalent -11.6814 +▁mbar -11.6814 +▁Lone -11.6815 +abi -11.6816 +▁Vir -11.6817 +▁Sala -11.6818 +HS -11.6818 +▁diving -11.6821 +▁iTunes -11.683 +▁Chandler -11.683 +▁sensation -11.6831 +hang -11.6831 +▁vault -11.6832 +▁behavioral -11.6833 +▁Canucks -11.6834 +gat -11.6834 +▁enthusiastic -11.6835 +activity -11.6835 +▁exceptional -11.684 +▁Lancaster -11.6841 +▁Hau -11.6842 +▁Fig -11.6842 +▁bowled -11.6845 +▁speaks -11.6847 +esque -11.6849 +▁Enix -11.685 +pack -11.6851 +▁Wikipedia -11.6851 +▁nationally -11.6852 +▁Pokémon -11.6854 +▁antibiotics -11.6855 +▁Shore -11.6856 +▁Maxwell -11.6856 +ddy -11.6859 +▁infectious -11.6862 +▁bicycle -11.6862 +▁jwe -11.6862 +last -11.6863 +▁Engineers -11.6866 +arrow -11.6868 +ider -11.6873 +Di -11.6875 +▁slopes -11.6876 +▁viable -11.6876 +▁southward -11.6877 +▁neurons -11.6877 +▁torn -11.6877 +▁2: -11.6878 +▁sectors -11.6878 +▁Chancellor -11.6879 +▁furniture -11.6879 +▁flexibility -11.6879 +▁Cohen -11.6882 +round -11.6885 +▁packed -11.6886 +▁stepped -11.6886 +▁caliber -11.6886 +sip -11.6886 +▁Tales -11.6888 +lib -11.689 +▁vaccination -11.6893 +▁alphabet -11.6893 +▁encompass -11.6893 +▁honored -11.6893 +pression -11.6894 +▁gall -11.6895 +▁static -11.6895 +▁Pou -11.6896 +▁Jose -11.6898 +▁Rice -11.6899 +▁activist -11.6899 +▁Nonetheless -11.6899 +▁puppet -11.6899 +▁clever -11.69 +bbing -11.6902 +▁Sister -11.6902 +▁precursor -11.6903 +▁117 -11.6904 +▁Kap -11.6904 +▁platoon -11.6907 +▁savings -11.6907 +boat -11.6908 +▁commentators -11.6909 +HC -11.6912 +▁ditch -11.6912 +▁empower -11.6914 +▁exhibits -11.6914 +▁submission -11.6915 +wash -11.6915 +▁estates -11.6917 +▁motive -11.6917 +▁Petit -11.6918 +▁monarchy -11.6918 +UP -11.6919 +▁1874 -11.6919 +▁Theory -11.692 +▁intra -11.6921 +▁regulatory -11.6922 +▁regards -11.6923 +▁Fast -11.6926 +▁Riley -11.6927 +▁Newfoundland -11.6927 +▁Tunnel -11.6927 +▁suburb -11.6928 +▁Tara -11.6928 +▁Lucy -11.6928 +▁Janet -11.6933 +dou -11.6935 +LI -11.6935 +▁dys -11.6936 +▁Course -11.6937 +▁Busch -11.6939 +zh -11.6939 +▁CC -11.694 +▁accepting -11.6941 +▁conclude -11.6941 +▁Contemporary -11.6941 +inter -11.6941 +▁negotiate -11.6944 +τ -11.6945 +-7 -11.6945 +▁antibodies -11.6949 +▁nicknamed -11.6949 +▁270 -11.6951 +▁sustainability -11.6952 +▁nationwide -11.6952 +▁Stoke -11.6953 +▁Hum -11.6954 +using -11.6954 +ops -11.6955 +▁Cow -11.6958 +▁accelerated -11.6962 +▁Advanced -11.6962 +▁Lynch -11.6962 +▁suspicion -11.6962 +▁esp -11.6963 +▁intend -11.6964 +▁Looking -11.6966 +▁WWF -11.6967 +▁Shar -11.6968 +▁chronicle -11.6968 +▁premier -11.6972 +▁Wake -11.6972 +▁molecule -11.6972 +▁gig -11.6972 +▁scenarios -11.6973 +▁Rosen -11.6975 +▁Editor -11.6978 +▁Gy -11.6978 +▁Rare -11.6978 +▁flip -11.6978 +▁resembles -11.698 +▁indirect -11.698 +▁reservation -11.6983 +▁shower -11.6986 +nat -11.6987 +▁Augustus -11.6987 +▁nutrient -11.6988 +▁linking -11.6988 +flower -11.6989 +▁Mani -11.699 +▁passive -11.6992 +▁sensor -11.6996 +▁Left -11.6997 +▁Irving -11.6998 +▁Vermont -11.6999 +▁libraries -11.7001 +lau -11.7002 +▁garage -11.7004 +▁creativity -11.7004 +▁groove -11.7005 +▁midnight -11.7006 +▁executives -11.7009 +▁screw -11.7012 +▁dorsal -11.7012 +▁promises -11.7013 +▁socio -11.7015 +▁textile -11.7016 +▁airplane -11.7017 +iza -11.7017 +▁Written -11.7018 +▁limbs -11.7019 +▁Diana -11.7021 +▁conception -11.7021 +▁contractor -11.7021 +▁Plaza -11.7023 +▁Jeffrey -11.7026 +▁Treasury -11.7029 +▁Mana -11.7032 +▁mercury -11.7032 +▁Lyn -11.7033 +▁frames -11.7033 +▁Below -11.7035 +▁codes -11.7037 +▁Risk -11.7039 +▁successes -11.7039 +fon -11.704 +▁preceded -11.704 +▁enthusiasm -11.7043 +▁Kha -11.7044 +hou -11.7045 +metric -11.7045 +chem -11.7046 +▁passages -11.7047 +▁Taking -11.705 +▁matched -11.7052 +▁Factor -11.7052 +▁dolphin -11.7054 +▁MC -11.7054 +▁pie -11.7055 +▁lady -11.7056 +formula -11.7057 +▁Current -11.7061 +▁mount -11.7064 +▁Formula -11.7065 +▁Kri -11.7065 +fur -11.7065 +▁Masters -11.7066 +▁diesel -11.7068 +▁counts -11.707 +▁scarce -11.7071 +▁buses -11.7071 +FS -11.7071 +▁deceased -11.7071 +▁irrigation -11.7071 +▁una -11.7072 +yama -11.7072 +▁antenna -11.7072 +kal -11.7074 +▁Georgian -11.7075 +▁Armenia -11.7076 +▁starter -11.7077 +owski -11.7079 +▁stripped -11.708 +nick -11.7082 +▁pretend -11.7083 +▁nominal -11.7083 +▁discontinued -11.7085 +▁rotate -11.7085 +▁Alejandro -11.7086 +▁Assistant -11.7086 +▁Period -11.7087 +rain -11.7089 +kri -11.7089 +▁constellation -11.7089 +▁Punk -11.709 +▁Hon -11.7092 +▁Associated -11.7092 +▁AND -11.7092 +▁disappointment -11.7093 +▁Alexandria -11.7093 +▁impacted -11.7093 +wig -11.7096 +▁Neither -11.7096 +▁funnel -11.7097 +▁Rub -11.7098 +▁Lip -11.7098 +▁Paralympic -11.71 +▁Buddha -11.71 +▁Cul -11.71 +▁wit -11.7102 +▁tears -11.7103 +▁rigid -11.7105 +▁Franse -11.7105 +▁dwelling -11.7107 +▁Surrey -11.7107 +▁consuming -11.7113 +writer -11.7114 +▁Fraser -11.7115 +▁floors -11.7115 +▁Patricia -11.7118 +▁melting -11.7118 +▁deposit -11.7118 +▁Nord -11.712 +▁Preston -11.712 +▁Rec -11.7121 +▁cease -11.7121 +▁deserve -11.7121 +▁Beautiful -11.7121 +▁opted -11.7122 +▁Net -11.7123 +▁seize -11.7124 +▁wireless -11.7125 +▁implies -11.7125 +▁Thailand -11.7125 +▁locomotive -11.7126 +▁linguistic -11.7126 +graph -11.7126 +▁sexuality -11.7127 +▁continually -11.7128 +▁Burger -11.7128 +▁litter -11.7129 +▁festivals -11.713 +Cl -11.7137 +▁Eisenhower -11.7139 +▁Encyclopedia -11.7139 +xa -11.7139 +▁Hancock -11.7139 +▁crowned -11.7141 +▁brew -11.7141 +▁Catholics -11.7142 +▁Peak -11.7144 +▁dr -11.7144 +▁Cave -11.7148 +▁initiatives -11.7149 +▁warriors -11.7152 +▁Kay -11.7152 +▁allegedly -11.7154 +▁Gin -11.7155 +▁Tele -11.7156 +▁Brit -11.7156 +▁tunnels -11.7157 +▁155 -11.7159 +▁adjustment -11.7159 +▁Swi -11.716 +ī -11.716 +▁Panyòl -11.716 +▁emergence -11.7161 +bear -11.7163 +▁renowned -11.7164 +▁browser -11.7164 +▁contaminated -11.7166 +▁comb -11.7166 +▁Gérard -11.7167 +▁papa -11.7167 +▁Mach -11.717 +ymp -11.7171 +▁ultra -11.7171 +▁crust -11.7172 +▁factories -11.7177 +▁vegetable -11.7177 +▁likelihood -11.7178 +▁racism -11.7178 +▁slowed -11.7179 +▁Negro -11.7182 +DP -11.7184 +▁bloom -11.7185 +▁nominee -11.7185 +▁Skinner -11.7186 +▁defenses -11.7187 +icle -11.7188 +odi -11.7189 +▁composite -11.7192 +▁Kenya -11.7193 +rig -11.7194 +▁brutal -11.7197 +▁surround -11.7198 +▁Tai -11.7199 +▁counterparts -11.7199 +▁narrator -11.72 +▁Snake -11.72 +fest -11.7201 +▁Rhine -11.7201 +▁textbook -11.7202 +amba -11.7203 +And -11.7203 +isi -11.7204 +▁Flu -11.7206 +centric -11.7206 +wich -11.7206 +▁Franz -11.7206 +▁obstacles -11.7206 +▁1851 -11.7206 +▁vacuum -11.7207 +▁geographic -11.7207 +hum -11.7215 +▁corpse -11.7215 +▁macro -11.7216 +▁dip -11.7216 +▁evaluated -11.7217 +OT -11.722 +por -11.722 +NE -11.7221 +ologies -11.7223 +▁batsman -11.7223 +▁Pari -11.7223 +So -11.7224 +▁accumulated -11.7225 +▁dynamics -11.7227 +▁incredible -11.7228 +▁smile -11.7228 +▁handful -11.7229 +▁1859 -11.723 +▁Pie -11.723 +storm -11.723 +▁Protect -11.7231 +▁pillar -11.7231 +▁barn -11.7231 +Or -11.7233 +▁Fact -11.7233 +▁lowered -11.7237 +▁labels -11.7238 +▁seeks -11.7239 +▁analyst -11.7239 +▁metabolic -11.7239 +▁Terra -11.724 +▁siblings -11.724 +▁ranch -11.7241 +▁145 -11.7241 +▁dirt -11.7246 +▁Introduction -11.7246 +▁explicit -11.7246 +▁Lac -11.7247 +▁Knights -11.725 +▁boards -11.7252 +▁investments -11.7253 +step -11.7253 +base -11.7256 +▁enlarged -11.7257 +▁observers -11.7258 +▁maritime -11.7258 +▁neighborhoods -11.7258 +▁Outside -11.726 +▁sic -11.7261 +▁Leg -11.7262 +▁disliked -11.7263 +▁Patriot -11.7264 +▁snap -11.7264 +?" -11.7266 +doc -11.7267 +▁Nashville -11.7269 +▁reply -11.7269 +▁Rail -11.727 +rud -11.7272 +▁ancestor -11.7273 +▁vigorous -11.7275 +RS -11.7277 +▁clearing -11.7278 +▁Mirror -11.7279 +▁belongs -11.728 +▁spa -11.7281 +▁breakfast -11.7282 +▁Kol -11.7282 +▁atom -11.7284 +▁embrace -11.7286 +▁Drama -11.7286 +▁patrols -11.7287 +▁Cent -11.7288 +vie -11.729 +▁intensify -11.729 +▁Spy -11.7291 +▁fortified -11.7291 +▁colleague -11.7291 +▁Mack -11.7292 +▁Contact -11.7293 +▁dull -11.7294 +▁gasoline -11.7297 +▁recycling -11.7297 +▁pepper -11.7298 +▁Bulgaria -11.7299 +heart -11.73 +rew -11.73 +▁angles -11.73 +▁hymn -11.73 +rou -11.7302 +▁detached -11.7302 +▁inserted -11.7302 +▁disco -11.7305 +▁lined -11.7308 +crease -11.7308 +till -11.7308 +▁doubled -11.731 +▁sympathetic -11.7311 +▁periodic -11.7311 +▁caps -11.7318 +▁strand -11.7318 +▁freight -11.7319 +▁Finnish -11.732 +▁Cara -11.7321 +▁Luftwaffe -11.7322 +▁trucks -11.7327 +ony -11.7328 +ivo -11.7329 +▁exceeding -11.733 +even -11.733 +▁interventions -11.7331 +anta -11.7331 +▁coordination -11.7333 +▁convenient -11.7333 +▁Popular -11.7334 +▁Mounted -11.7334 +▁hell -11.7336 +screen -11.7336 +▁entertaining -11.7336 +▁imprisonment -11.7337 +▁Farmer -11.7339 +▁pub -11.7339 +▁Ple -11.7342 +▁blown -11.7342 +rak -11.7343 +▁dominance -11.7344 +▁Tyr -11.7346 +▁muzzle -11.7348 +▁referendum -11.7348 +▁vampire -11.7348 +▁RPG -11.7348 +▁hollow -11.7351 +nail -11.7352 +▁Cool -11.7352 +▁deadline -11.7353 +▁PR -11.7354 +▁Soldier -11.7355 +▁antioxidant -11.7355 +▁whereby -11.7356 +▁gentle -11.7356 +▁owl -11.7357 +▁Moor -11.7357 +▁pursuing -11.7358 +jack -11.7362 +▁suite -11.7362 +▁Corner -11.7364 +▁destructive -11.7366 +unda -11.7368 +ctic -11.7369 +bee -11.7371 +▁Subsequently -11.7372 +▁delivering -11.7373 +▁Agreement -11.7373 +▁Warsaw -11.7374 +▁Broad -11.7376 +▁trout -11.7378 +▁Glenn -11.7378 +▁Metacritic -11.738 +curr -11.7381 +▁dishes -11.7382 +▁costly -11.7382 +▁Manning -11.7385 +▁cycles -11.7387 +asa -11.7387 +▁carbohydrate -11.7388 +▁nobility -11.7388 +▁lawyers -11.7388 +▁Toy -11.7388 +▁PhD -11.7391 +▁Basic -11.7391 +▁farther -11.7392 +▁unconscious -11.7392 +▁dedication -11.7393 +▁tales -11.7398 +▁definitive -11.7399 +▁Waters -11.7399 +▁missiles -11.7399 +▁Engineer -11.74 +▁refine -11.7401 +▁abolished -11.7401 +▁Porter -11.7402 +▁Stro -11.7403 +dé -11.7403 +wave -11.7404 +itor -11.7406 +▁grasp -11.7406 +▁physicians -11.7406 +▁opt -11.7407 +vik -11.7407 +FI -11.7408 +▁210 -11.7409 +▁beaches -11.7413 +▁admit -11.7413 +▁assumption -11.7414 +▁nesting -11.7415 +▁immunity -11.7417 +▁Dame -11.7417 +▁Tool -11.7418 +▁ibn -11.7421 +▁Crane -11.7421 +▁inhibitor -11.7422 +▁Philippine -11.7422 +▁Admiralty -11.7423 +▁reside -11.7424 +▁regained -11.7425 +▁constraints -11.7428 +▁Til -11.743 +▁Lyon -11.7431 +▁Technical -11.7432 +▁Ober -11.7432 +▁Geo -11.7434 +▁sovereign -11.7434 +▁trails -11.7435 +▁lyric -11.7435 +▁Lum -11.7437 +▁intentions -11.7439 +▁Nicole -11.7439 +city -11.7441 +▁deter -11.7441 +▁gran -11.7442 +▁resume -11.7443 +▁faint -11.7444 +▁Windsor -11.7446 +▁Gaza -11.7447 +▁wavelength -11.745 +▁sweep -11.7452 +▁Munich -11.7454 +▁Speed -11.7457 +▁Monitor -11.7458 +▁fil -11.7462 +▁sends -11.7463 +▁nuts -11.7464 +▁invasive -11.7465 +▁elimination -11.7465 +▁Perth -11.7468 +▁Brigadier -11.7468 +▁Physics -11.7468 +▁colonel -11.7469 +▁Stre -11.7469 +▁Yale -11.7471 +mination -11.7471 +▁sheets -11.7472 +▁Sum -11.7473 +▁Arabia -11.7474 +▁Wol -11.7474 +▁Kun -11.7474 +▁servant -11.7475 +▁Jesse -11.7476 +▁suburban -11.7476 +▁precision -11.7477 +▁1820 -11.7478 +▁necessity -11.7479 +▁percussion -11.7479 +▁dozens -11.748 +▁Elder -11.7484 +▁countryside -11.7484 +▁Chapman -11.7486 +ifer -11.7486 +▁uncommon -11.7487 +pm -11.7488 +▁traces -11.7488 +ando -11.749 +ht -11.7492 +▁Lat -11.7492 +bou -11.7493 +▁131 -11.7494 +▁harmony -11.7494 +▁Present -11.7495 +▁landings -11.7496 +▁adviser -11.7497 +cz -11.7497 +▁freed -11.7501 +▁invested -11.7502 +dem -11.7502 +▁Liu -11.7507 +▁realised -11.7509 +▁stalk -11.7509 +▁retaining -11.7511 +▁Papa -11.7513 +▁doses -11.7514 +▁Sym -11.7515 +▁republic -11.7515 +eye -11.7516 +▁albeit -11.7516 +▁supervision -11.7517 +▁tutor -11.7517 +works -11.7517 +walk -11.7517 +▁borrowed -11.7518 +▁eco -11.7519 +gni -11.752 +▁Vitamin -11.7521 +▁disturbed -11.7522 +▁trustee -11.7523 +▁Pil -11.7523 +▁Bois -11.7526 +▁chat -11.7526 +▁pulling -11.7527 +▁Product -11.7527 +▁SD -11.7528 +nation -11.7528 +other -11.7529 +quo -11.753 +▁appreciation -11.7531 +▁obtaining -11.7533 +▁conclusions -11.7534 +cord -11.7535 +▁oppose -11.7535 +▁ankle -11.7537 +▁gravitational -11.7538 +▁Enter -11.7539 +▁Disc -11.7539 +▁motorway -11.7541 +▁Folk -11.7542 +▁Joy -11.7543 +▁binary -11.7548 +▁teens -11.7551 +edu -11.7552 +▁Adventures -11.7553 +traction -11.7553 +▁graduation -11.7553 +▁Vision -11.7556 +▁Petersburg -11.7556 +▁Sud -11.7556 +▁Joel -11.7559 +▁badge -11.756 +▁Avoid -11.7561 +borg -11.7565 +▁shale -11.7566 +▁GDP -11.7569 +iah -11.7571 +▁Hoffman -11.7572 +oids -11.7574 +▁Pierce -11.7574 +▁Serge -11.7575 +▁Dynasty -11.7576 +▁MVP -11.7576 +▁decreases -11.7576 +culture -11.7576 +▁Rocket -11.7576 +▁Argentine -11.7576 +ario -11.7577 +utter -11.7581 +▁regret -11.7582 +▁Index -11.7583 +iger -11.7584 +Th -11.7586 +▁Kiss -11.7587 +▁graduating -11.7587 +▁metabolism -11.7587 +▁Basil -11.7588 +▁poetic -11.7589 +▁Rem -11.759 +▁Angela -11.7591 +▁cake -11.7591 +▁Pig -11.7595 +▁dealer -11.7596 +▁Luther -11.7596 +▁deploy -11.7596 +▁Spartan -11.7596 +▁bend -11.7597 +▁frustrated -11.7598 +▁Lithuania -11.7598 +▁flock -11.76 +▁negotiated -11.7603 +▁traced -11.7605 +▁selective -11.7606 +rog -11.7607 +▁seri -11.7607 +▁confronted -11.7609 +▁joins -11.7609 +▁Aguilera -11.7609 +▁Ferguson -11.7609 +▁stimulate -11.7609 +▁battlecruisers -11.761 +vian -11.761 +▁scrapped -11.7614 +||1 -11.7614 +▁Phar -11.7615 +▁guaranteed -11.7617 +▁Raja -11.7618 +▁elephant -11.7619 +▁remarks -11.7621 +▁digestive -11.7622 +▁CF -11.7622 +▁extraction -11.7623 +▁Mart -11.7623 +▁biodiversity -11.7624 +erson -11.7625 +▁manor -11.7626 +▁collaborator -11.7628 +▁Hergé -11.7628 +▁interception -11.7629 +▁Flower -11.763 +▁Aug -11.7632 +woman -11.7634 +▁render -11.7634 +▁Rifle -11.7635 +▁Alien -11.7636 +▁Wheeler -11.7636 +istan -11.7638 +▁depict -11.7639 +▁Mei -11.7639 +▁Pearson -11.7639 +▁grandmother -11.7639 +TO -11.764 +▁Eugene -11.764 +▁LA -11.7641 +▁cardiovascular -11.7643 +▁Hale -11.7643 +you -11.7643 +▁judged -11.7644 +▁tab -11.7644 +▁silicon -11.7647 +▁Tsu -11.7647 +▁Scotia -11.7647 +▁patches -11.7649 +▁firmly -11.7652 +▁Planning -11.7653 +▁ought -11.7654 +▁Neptune -11.7654 +▁Eng -11.7657 +▁artifacts -11.7657 +▁Reynolds -11.7658 +▁Deal -11.766 +pis -11.766 +▁overnight -11.7661 +NO -11.7662 +▁mutations -11.7663 +▁sack -11.7663 +▁Emergency -11.7665 +▁frustration -11.7665 +▁overthrow -11.7665 +assa -11.7666 +▁suck -11.7669 +▁sits -11.767 +fan -11.767 +▁disruption -11.7671 +▁cultivated -11.7671 +stick -11.7675 +▁jokes -11.7675 +él -11.7676 +▁pati -11.7677 +▁Kom -11.7678 +▁152 -11.7678 +▁Singer -11.768 +▁lemurs -11.7681 +▁quote -11.7684 +▁Joyce -11.7685 +▁iconic -11.7686 +treat -11.7687 +▁Character -11.7688 +▁Mut -11.7688 +▁dressing -11.7688 +▁pig -11.7689 +▁Fel -11.7691 +▁phones -11.7691 +▁crypt -11.7691 +ο -11.7692 +▁€ -11.7695 +▁sulfur -11.7695 +▁sampling -11.7695 +▁Usher -11.7696 +▁diagnostic -11.7699 +▁Currently -11.7699 +ici -11.77 +600 -11.7701 +▁realizes -11.7702 +▁euro -11.7703 +▁Financial -11.7707 +▁Habana -11.7707 +lice -11.7708 +▁Ul -11.771 +▁welcomed -11.771 +▁homo -11.7711 +▁problematic -11.7713 +▁Municipal -11.7714 +ete -11.7714 +▁ID -11.7716 +▁Places -11.7716 +▁posture -11.7716 +▁Willis -11.7717 +▁galaxies -11.7718 +▁Gir -11.7718 +▁Sing -11.7719 +▁tram -11.7722 +▁Tradiksyon -11.7722 +▁Levi -11.7723 +▁revolve -11.7724 +▁shame -11.7725 +▁astronaut -11.7726 +▁vapor -11.7726 +▁odds -11.7726 +400 -11.7728 +▁sac -11.7729 +▁accomplishment -11.773 +▁Hamburg -11.7731 +▁relates -11.7731 +▁lectures -11.7733 +▁advise -11.7734 +▁swelling -11.7735 +▁Census -11.7737 +▁lineage -11.7737 +opho -11.7739 +▁fascinating -11.7741 +▁prosperity -11.7741 +▁fertilizer -11.7744 +▁Selena -11.7745 +zzo -11.7747 +▁municipality -11.7748 +▁compartment -11.7748 +▁Date -11.7749 +▁Chat -11.775 +▁Tank -11.775 +▁schemes -11.775 +▁shifts -11.7751 +Pierre -11.7756 +▁Idaho -11.7756 +▁Moving -11.7756 +nica -11.7757 +▁Vid -11.7758 +▁phrases -11.776 +enter -11.7761 +▁Hayes -11.7763 +▁Bowie -11.7763 +▁prevalence -11.7763 +▁supervisor -11.7763 +▁meantime -11.7768 +▁partition -11.777 +▁Haven -11.7772 +bie -11.7773 +quer -11.7777 +▁wheels -11.7782 +▁identifies -11.7782 +▁straw -11.7783 +▁outlets -11.7784 +▁insert -11.7785 +cad -11.7789 +ego -11.7791 +ë -11.7791 +▁dim -11.7792 +logist -11.7792 +▁Flor -11.7798 +gne -11.78 +▁popilasyon -11.7801 +EE -11.7802 +▁learners -11.7803 +▁LED -11.7803 +▁manuscripts -11.7804 +▁decreasing -11.7805 +▁trophy -11.7805 +▁extant -11.7807 +▁1200 -11.781 +▁tent -11.7811 +▁accompany -11.7812 +▁compelling -11.7813 +Ra -11.7813 +▁Roth -11.7814 +just -11.7814 +▁adaptations -11.7815 +▁bu -11.7817 +▁Rein -11.7817 +▁financially -11.7819 +▁consult -11.7821 +▁GameSpot -11.7821 +iche -11.7822 +▁Milton -11.7822 +▁refit -11.7824 +▁Salvador -11.7824 +▁warehouse -11.7824 +▁educators -11.7824 +▁alpha -11.7826 +▁viewer -11.7829 +▁reprise -11.783 +▁exhausted -11.7832 +omi -11.7832 +▁endorsed -11.7834 +azi -11.7836 +▁strains -11.7839 +3% -11.7839 +▁1857 -11.7839 +▁rookie -11.784 +▁teen -11.7841 +chant -11.7841 +▁Hank -11.7845 +croft -11.7846 +▁contamination -11.7847 +▁Happy -11.7848 +▁urgent -11.7848 +▁inspect -11.785 +▁Fletcher -11.7851 +▁ministry -11.7851 +▁sealed -11.7851 +▁Azerbaijan -11.7855 +▁HV -11.7855 +▁melt -11.7855 +▁PM -11.7856 +▁Giant -11.7856 +▁Lodge -11.786 +▁Hanna -11.786 +▁workshop -11.7861 +▁Episode -11.7862 +▁Parachute -11.7862 +▁knife -11.7862 +▁inflicted -11.7864 +▁fol -11.7864 +tris -11.7864 +▁Gat -11.7864 +▁rituals -11.7866 +▁broadly -11.7867 +▁liter -11.7868 +▁Month -11.787 +▁SO -11.7874 +▁Associate -11.7875 +–19 -11.7876 +▁Coach -11.788 +▁Edmonton -11.7882 +▁prescription -11.7883 +▁hammer -11.7883 +▁corporation -11.7883 +may -11.7884 +▁Birds -11.7886 +▁Randy -11.7887 +▁collectively -11.7888 +▁lymph -11.7889 +▁Observer -11.7889 +rrell -11.789 +bour -11.789 +▁′ -11.7892 +▁temper -11.7894 +▁metallic -11.7894 +▁bal -11.7895 +emon -11.7896 +▁negatively -11.7897 +▁Merri -11.7897 +icular -11.7898 +▁Cord -11.7899 +▁scorer -11.7901 +▁stretched -11.7901 +н -11.7901 +umble -11.7901 +▁McCain -11.7901 +▁Airborne -11.7902 +▁funk -11.7902 +ulus -11.7904 +▁Ilinwa -11.7905 +▁Agent -11.7905 +rish -11.7905 +▁banner -11.7905 +▁feast -11.7906 +▁vitamins -11.7906 +▁differs -11.7907 +▁Cornell -11.7907 +▁inspire -11.7907 +▁programmes -11.7908 +▁incredibly -11.7909 +▁Eco -11.7912 +▁Paramount -11.7913 +ules -11.7913 +▁kicked -11.7913 +▁enclosed -11.7916 +▁Omaha -11.7916 +▁Libya -11.7918 +▁gravel -11.7919 +▁Title -11.7919 +▁nu -11.7919 +▁Mick -11.792 +▁touched -11.7922 +▁Pilot -11.7922 +▁None -11.7927 +▁Rhodesia -11.7927 +▁Concern -11.7928 +▁Trump -11.7929 +wald -11.7932 +▁jungle -11.7932 +▁Kai -11.7932 +▁Ukraine -11.7936 +▁Covenant -11.7936 +# -11.7936 +▁curse -11.7936 +▁offence -11.7937 +FL -11.7937 +▁assured -11.7937 +NP -11.7939 +▁efficiently -11.7939 +▁rectangular -11.7939 +▁governance -11.794 +▁proto -11.7941 +▁spider -11.7943 +▁flags -11.7943 +▁maxim -11.7945 +▁supposedly -11.7946 +▁Warwick -11.7947 +▁institute -11.7948 +▁practitioners -11.7949 +▁Mode -11.795 +▁Astro -11.795 +▁Gab -11.795 +▁Casa -11.7951 +▁pedestrian -11.7951 +▁cooperative -11.7952 +▁induce -11.7952 +▁nutritional -11.7952 +▁diminished -11.7953 +▁lightning -11.7953 +urg -11.7955 +▁stabilize -11.7955 +WR -11.7957 +train -11.7959 +▁ceremonial -11.7959 +BE -11.7961 +▁114 -11.7964 +8. -11.7965 +▁persecution -11.7968 +▁Brandon -11.7968 +▁mound -11.7968 +▁ruin -11.7971 +▁instant -11.7971 +▁gradual -11.7971 +body -11.7973 +▁280 -11.7974 +▁tick -11.7977 +▁Barn -11.7978 +▁Whig -11.7978 +ducing -11.7979 +▁Flames -11.7979 +▁Norton -11.7981 +▁TH -11.7981 +▁supplier -11.7982 +▁Koreans -11.7982 +▁Vita -11.7983 +▁lean -11.7984 +▁Prussian -11.7984 +▁evolve -11.7987 +▁dimension -11.7987 +▁unofficial -11.799 +▁Prophet -11.799 +▁pigeon -11.799 +▁chambers -11.7991 +▁Limited -11.7992 +▁reviewing -11.7992 +▁JG -11.7993 +▁unpopular -11.7994 +▁farmland -11.7995 +▁hormones -11.7995 +▁northwestward -11.7996 +▁likewise -11.7998 +▁persisted -11.7998 +▁107 -11.7998 +▁Scr -11.7999 +▁deny -11.8006 +▁jacket -11.8008 +▁duet -11.8011 +taking -11.8012 +▁Volunteer -11.8013 +▁tolerate -11.8013 +▁Booth -11.8015 +▁260 -11.8018 +▁1845 -11.8019 +▁voluntary -11.8021 +▁Arc -11.8022 +▁humidity -11.8022 +▁IX -11.8023 +▁illnesses -11.8023 +▁puzzles -11.8024 +▁assassin -11.8024 +▁Productions -11.8025 +▁eliminating -11.8025 +▁Diane -11.8026 +anne -11.8027 +▁secretly -11.8028 +▁Cock -11.8028 +▁autonomous -11.8029 +▁newer -11.8029 +▁expressions -11.803 +▁premise -11.803 +mbling -11.803 +▁Wings -11.8033 +▁Flash -11.8034 +ité -11.8035 +▁Betty -11.8036 +escu -11.8037 +▁dinosaur -11.8037 +▁bats -11.8039 +▁downward -11.804 +▁spy -11.8041 +▁ethics -11.8044 +▁Robertson -11.8044 +hap -11.8046 +▁supplements -11.8047 +▁recognise -11.8049 +▁genetically -11.805 +▁conquer -11.8052 +▁thorough -11.8053 +▁pressing -11.8053 +▁screened -11.8057 +▁launching -11.8058 +NR -11.8061 +▁Gibb -11.8062 +▁preview -11.8063 +ogenic -11.8063 +▁García -11.8064 +▁celebrity -11.8064 +▁premature -11.8064 +▁slaughter -11.8064 +hra -11.8066 +▁toys -11.8066 +▁Jessica -11.8068 +mani -11.8068 +▁Jorge -11.8069 +ovich -11.807 +▁Sicily -11.8071 +▁Garfield -11.8072 +onne -11.8072 +▁Dub -11.8073 +▁blocking -11.8077 +▁conceptual -11.8078 +▁spawned -11.8078 +▁bri -11.8081 +izz -11.8083 +▁Ferrari -11.8083 +▁advancement -11.8084 +▁stir -11.8087 +IF -11.8087 +▁integrate -11.8088 +6. -11.8089 +UR -11.809 +▁persist -11.809 +▁gem -11.809 +▁bred -11.8091 +▁guilt -11.8092 +▁afterward -11.8093 +▁banking -11.8093 +gress -11.8094 +ène -11.8094 +▁digest -11.8095 +▁Athenian -11.8095 +▁employer -11.8095 +▁Attack -11.8095 +▁Fine -11.8096 +▁echo -11.8097 +oire -11.8098 +▁Cran -11.8099 +▁accounted -11.8099 +▁Brun -11.8101 +▁Direction -11.8103 +▁Chau -11.8104 +▁joints -11.8106 +▁Andalouzi -11.8107 +▁Chal -11.8108 +▁Sei -11.811 +▁Manor -11.811 +▁citation -11.8111 +▁eternal -11.8115 +▁surf -11.8115 +▁Bailey -11.8116 +▁Aid -11.8117 +yi -11.8118 +▁warmer -11.8118 +pton -11.8119 +▁demonstrates -11.812 +▁Bag -11.8122 +▁expelled -11.8123 +▁aligned -11.8125 +▁eleventh -11.8126 +▁Indigenous -11.8126 +▁contingent -11.8126 +▁denomination -11.8126 +ulf -11.8127 +▁Strike -11.8129 +▁tragedy -11.813 +▁Kind -11.8133 +▁beside -11.8134 +▁Jennings -11.8134 +▁pipes -11.8136 +▁ensured -11.8136 +▁Gardner -11.8138 +▁perimeter -11.8138 +▁MO -11.8139 +▁luck -11.814 +▁Gates -11.8141 +▁specially -11.8141 +▁defines -11.8141 +▁Lebanon -11.8142 +▁navigate -11.8142 +▁accessed -11.8142 +▁colonists -11.8143 +▁cheaper -11.8144 +▁Methodist -11.8145 +▁Yoshi -11.8146 +▁unstable -11.8146 +▁contra -11.8146 +▁fanm -11.8146 +including -11.8147 +▁Charter -11.8147 +▁revenues -11.8148 +nton -11.8153 +▁vaccines -11.8153 +▁unhappy -11.8154 +▁Lynn -11.8159 +▁rendering -11.8159 +▁1854 -11.8159 +▁expose -11.816 +▁spectacular -11.8162 +OW -11.8166 +▁Grim -11.8168 +▁Gardens -11.8168 +▁plutonium -11.817 +▁charm -11.8172 +▁Wait -11.8172 +▁comparisons -11.8173 +▁Poor -11.8173 +▁Chad -11.8173 +▁Dana -11.8175 +▁Hung -11.8176 +▁riff -11.8176 +▁Kaz -11.8177 +▁Success -11.8178 +▁landslide -11.8178 +▁Iraqi -11.8178 +▁Vick -11.8178 +▁Superman -11.8179 +▁Dai -11.8179 +GS -11.8179 +▁pagan -11.818 +▁butter -11.818 +▁Brave -11.8181 +▁matching -11.8181 +eter -11.8182 +▁sap -11.8182 +▁eighteenth -11.8183 +weed -11.8183 +▁Aqua -11.8184 +▁bishops -11.8184 +▁discoveries -11.8184 +▁Wyoming -11.8185 +▁Congo -11.8186 +▁Miner -11.8187 +ografi -11.8187 +7. -11.8187 +illard -11.8189 +▁Tall -11.8191 +▁symptom -11.8191 +▁Lad -11.8192 +▁Rhodesian -11.8193 +▁counterattack -11.8193 +▁crude -11.8195 +▁mating -11.8197 +▁touching -11.8198 +oto -11.8198 +▁lateral -11.8199 +▁orbits -11.8205 +▁Southampton -11.8205 +▁PDF -11.8206 +▁Senators -11.8206 +▁beef -11.8208 +▁Behind -11.8209 +▁grams -11.8212 +▁SC -11.8214 +▁Gol -11.8214 +▁1812 -11.8216 +ager -11.8217 +▁Effects -11.8218 +▁Lightning -11.8221 +lang -11.8221 +▁architects -11.8221 +▁Experience -11.8221 +▁thriller -11.8223 +century -11.8224 +▁Evolution -11.8224 +▁Nazis -11.8225 +burgh -11.8226 +▁admired -11.8227 +▁predecessors -11.8227 +▁seventeen -11.8227 +▁thy -11.8228 +▁Democrat -11.8228 +® -11.8229 +▁Lopez -11.8229 +▁neural -11.823 +▁Era -11.8231 +▁individually -11.8233 +▁monsoon -11.8233 +▁gaps -11.8233 +▁miniature -11.8233 +▁Monica -11.8233 +▁descend -11.8235 +▁examining -11.8237 +▁helium -11.8237 +pdf -11.8237 +▁fog -11.8241 +▁Aside -11.8242 +▁sandstone -11.8242 +▁jar -11.8243 +▁Manila -11.8243 +opter -11.8245 +▁Gwen -11.8245 +jar -11.8246 +▁Ref -11.8247 +▁Ox -11.8247 +▁pun -11.8249 +▁LGBT -11.8249 +▁beverage -11.8249 +dorf -11.8249 +wide -11.8253 +▁spore -11.8254 +▁exotic -11.8254 +▁watches -11.8254 +▁Academic -11.8257 +▁Approximately -11.8257 +▁Patton -11.8257 +▁sen -11.8259 +▁cough -11.8259 +▁Serbs -11.826 +▁var -11.8261 +▁printer -11.8264 +▁concluding -11.8265 +force -11.8266 +▁Recent -11.8266 +▁isotopes -11.827 +▁Witch -11.8271 +▁Marion -11.8272 +▁twelfth -11.8273 +two -11.8274 +▁honors -11.8275 +▁prominence -11.8277 +▁Weber -11.828 +Lo -11.8281 +▁unnamed -11.8281 +▁Crisis -11.8281 +cultural -11.8283 +Mi -11.8289 +▁Poli -11.829 +▁coll -11.8293 +▁Sussex -11.8293 +▁Wen -11.8293 +▁Mara -11.8295 +▁Abd -11.8296 +р -11.8297 +▁Egg -11.8299 +▁Distinguish -11.8301 +▁cultivation -11.8301 +▁Nag -11.8302 +▁deposited -11.8304 +▁Ah -11.8304 +▁Stefani -11.8304 +▁Evidence -11.8309 +cid -11.831 +▁Perfect -11.831 +▁hung -11.831 +▁Animals -11.8312 +▁outward -11.8315 +▁unwilling -11.8317 +▁sparse -11.8318 +▁BA -11.8318 +▁baptism -11.8321 +▁chaos -11.8321 +phen -11.8322 +▁steering -11.8326 +▁justify -11.8326 +▁Durham -11.8326 +▁runners -11.8327 +▁Trial -11.8328 +▁Saw -11.8331 +cine -11.8331 +▁ally -11.8331 +▁pneumonia -11.8333 +▁shortened -11.8333 +▁Dio -11.8335 +▁lawn -11.8336 +carbon -11.8337 +▁recreation -11.8337 +▁prompt -11.8338 +How -11.834 +chel -11.834 +▁accord -11.8341 +▁critique -11.8341 +▁Create -11.8342 +pose -11.8343 +where -11.8343 +▁poets -11.8344 +▁Jain -11.8344 +▁Mona -11.8345 +▁refusal -11.8345 +▁delicate -11.8345 +▁astronomers -11.8346 +▁organizing -11.8347 +▁Morton -11.8348 +▁Own -11.8348 +▁neighbour -11.8349 +▁121 -11.835 +▁modification -11.835 +▁teammates -11.8352 +▁Border -11.8353 +-9 -11.8357 +▁meksiken -11.8357 +▁devised -11.8358 +▁guides -11.8358 +▁homage -11.8358 +yèl -11.836 +tol -11.8361 +▁Bir -11.8361 +▁rode -11.8362 +▁Duck -11.8363 +▁presumably -11.8365 +▁Yard -11.8366 +system -11.8368 +▁Communications -11.8368 +▁Generally -11.8369 +▁Austen -11.8369 +▁Bolton -11.8371 +▁Spielberg -11.8373 +2,000 -11.8374 +▁govern -11.8374 +▁numerical -11.8376 +mund -11.8377 +▁originate -11.838 +▁ceramic -11.8381 +▁sensory -11.8381 +▁Whitney -11.8382 +▁Buddhism -11.8385 +▁Broadcasting -11.839 +▁Bud -11.8392 +▁Clu -11.8392 +bili -11.8393 +▁devil -11.8393 +▁thyroid -11.8393 +▁Forbes -11.8395 +eurs -11.8395 +tou -11.8396 +▁Gale -11.8396 +▁Minogue -11.8397 +▁neighbors -11.8398 +▁Presley -11.8399 +▁processor -11.8401 +▁Naka -11.8402 +▁bags -11.8402 +▁Oka -11.8405 +▁idol -11.8405 +▁helicopters -11.8406 +▁vein -11.8407 +▁shooter -11.8409 +▁correlation -11.8409 +▁eccentric -11.8409 +▁Armed -11.841 +▁Quinn -11.841 +▁regulated -11.8411 +▁Rum -11.8412 +▁Gone -11.8417 +▁spirits -11.8417 +▁Bomb -11.8418 +▁celebrations -11.8419 +▁Phase -11.842 +▁cheek -11.8423 +▁hosting -11.8423 +▁ions -11.8423 +▁similarity -11.8425 +▁refuse -11.8426 +▁emotionally -11.8426 +▁diagnose -11.8427 +▁Chance -11.8428 +▁profitable -11.843 +mura -11.8431 +▁employers -11.8431 +▁Audi -11.8432 +▁Hannah -11.8433 +6) -11.8435 +▁femme -11.8438 +▁intervals -11.8438 +▁contestant -11.8439 +▁370 -11.844 +▁rumors -11.8441 +▁emit -11.8441 +rrh -11.8446 +pole -11.8446 +▁offset -11.8446 +▁Hun -11.845 +inder -11.8451 +▁hostage -11.8452 +▁Artillery -11.8454 +▁glory -11.8455 +▁nurses -11.8457 +▁eclipse -11.8458 +▁monetary -11.8458 +section -11.8458 +▁crystals -11.8459 +cci -11.846 +▁Lem -11.846 +▁structured -11.8461 +▁ornament -11.8467 +▁Symptoms -11.847 +▁Flo -11.8471 +oga -11.8472 +▁insights -11.8472 +▁Junction -11.8475 +▁Kemp -11.8476 +▁vine -11.8476 +▁Software -11.8479 +▁heel -11.8482 +▁Allan -11.8483 +▁MIT -11.8485 +cet -11.8487 +▁1858 -11.8488 +▁boiler -11.8489 +▁Speaker -11.849 +▁Complex -11.8491 +▁complaint -11.8493 +▁Venezuela -11.8495 +▁drunk -11.8495 +▁catalog -11.8498 +▁suburbs -11.8499 +▁threshold -11.8499 +▁Balkan -11.85 +▁shoulders -11.8502 +diction -11.8502 +▁Slo -11.8504 +▁dissent -11.8504 +▁homosexual -11.8505 +▁Derek -11.8505 +▁tyre -11.8508 +▁rejection -11.8509 +2% -11.8511 +▁itilize -11.8511 +leur -11.8513 +owitz -11.8514 +▁Vie -11.8514 +prop -11.8514 +▁Hundred -11.8519 +▁Indo -11.8521 +▁nobody -11.8521 +▁storey -11.8522 +▁precious -11.8522 +▁guerrilla -11.8523 +▁supreme -11.8523 +▁Duch -11.8525 +▁denote -11.8525 +asi -11.8526 +▁stretching -11.8526 +▁Christine -11.8529 +▁exceptions -11.853 +▁corners -11.853 +▁Kenny -11.8531 +quality -11.8531 +▁immuno -11.8531 +ə -11.8532 +▁subsidiary -11.8532 +▁mandatory -11.8532 +▁consultation -11.8533 +▁Pascal -11.8533 +▁retrieve -11.8533 +▁morality -11.8535 +▁collar -11.8536 +▁Cardinal -11.8537 +▁desperate -11.8537 +git -11.8538 +▁repetitive -11.854 +▁illustration -11.8541 +▁undertake -11.8542 +action -11.8543 +▁1849 -11.8543 +▁Sanskrit -11.8544 +▁marker -11.8547 +▁checked -11.8547 +EG -11.8548 +▁refined -11.8548 +▁scroll -11.8548 +▁Ned -11.855 +▁Cay -11.8552 +▁sosyete -11.8552 +▁plural -11.8552 +▁catalogue -11.8553 +iste -11.8553 +▁IT -11.8555 +▁Variety -11.8556 +▁ineffective -11.8557 +▁SN -11.8558 +▁terror -11.8559 +▁shocked -11.8559 +▁posting -11.856 +▁conversations -11.856 +▁execute -11.8562 +person -11.8563 +▁Question -11.8564 +▁veto -11.8564 +▁carb -11.8566 +▁Fellow -11.8568 +▁bail -11.8569 +▁doll -11.857 +▁mor -11.857 +▁targeting -11.857 +▁depressed -11.8571 +▁crushed -11.8572 +▁editors -11.8572 +▁probable -11.8573 +▁Partisan -11.8573 +▁energetic -11.8573 +▁Pirates -11.8573 +▁Assessment -11.8573 +▁Bacon -11.8574 +▁CM -11.8575 +▁Bil -11.8576 +▁endemic -11.8576 +▁Vince -11.8576 +▁Pon -11.8576 +▁loses -11.8577 +▁therapeutic -11.8577 +▁Concord -11.8578 +▁merge -11.8578 +▁miners -11.8581 +▁welding -11.8582 +from -11.8586 +▁downstream -11.8587 +▁dams -11.8587 +▁quad -11.8588 +▁McN -11.8588 +▁Eighth -11.8589 +▁rein -11.8589 +▁Sr -11.8589 +▁komin -11.8589 +▁Wick -11.859 +▁Guards -11.859 +▁corporations -11.8592 +▁Anglican -11.8593 +▁packaging -11.8594 +▁Borough -11.8594 +▁flashback -11.8594 +▁Plus -11.8595 +fore -11.8596 +▁morale -11.8596 +fè -11.8597 +▁Salisbury -11.8597 +▁Hammond -11.8598 +▁washing -11.8598 +▁Allmusic -11.8601 +▁cavity -11.8601 +▁Alma -11.8607 +▁bur -11.8608 +▁Valentine -11.8609 +▁Interior -11.861 +▁Understanding -11.861 +7% -11.8611 +▁goat -11.8612 +heat -11.8613 +▁shipyard -11.8613 +▁Tankou -11.8614 +▁Mk -11.862 +▁Halloween -11.8622 +ART -11.8623 +hau -11.8624 +▁definitions -11.8625 +òd -11.8625 +hid -11.8628 +1% -11.8629 +biotic -11.8629 +▁Mata -11.863 +▁Beast -11.863 +▁Recreation -11.863 +figure -11.8631 +▁reproduce -11.8632 +▁Midland -11.8633 +▁Aboriginal -11.8634 +▁1,000 -11.8637 +nin -11.8637 +▁notorious -11.8639 +▁Jew -11.8639 +▁filters -11.8639 +▁bump -11.8642 +▁cadet -11.8643 +▁vie -11.8643 +▁amor -11.8645 +opia -11.8647 +hri -11.8648 +▁CP -11.8648 +▁Brod -11.8649 +▁shelters -11.8653 +▁Ethiopia -11.8655 +▁robotic -11.8657 +frame -11.8658 +▁UV -11.8659 +▁gland -11.8661 +▁lineup -11.8661 +▁Wheel -11.8663 +ogn -11.8663 +▁Kro -11.8663 +▁expenditure -11.8663 +▁Pinar -11.8664 +▁rocky -11.8665 +lah -11.8667 +▁tragic -11.8668 +▁(3) -11.8668 +▁planetary -11.8669 +▁justified -11.8669 +▁Maple -11.867 +▁viv -11.8671 +asco -11.8672 +▁Carte -11.8673 +▁conserve -11.8673 +▁clone -11.8674 +▁crowds -11.8674 +▁moderately -11.8677 +▁Scho -11.8677 +▁Burg -11.8678 +▁freshwater -11.8678 +▁beans -11.8678 +▁gradient -11.868 +▁ordering -11.868 +▁geological -11.8681 +▁kote -11.8681 +▁Scha -11.8681 +▁favoured -11.8682 +▁importantly -11.8682 +peri -11.8683 +▁Lois -11.8684 +▁Progress -11.8687 +▁fountain -11.8688 +▁donations -11.869 +▁affiliate -11.869 +▁1856 -11.8691 +shan -11.8691 +▁barracks -11.8692 +▁wives -11.8693 +▁loving -11.8694 +nit -11.8695 +▁tankou -11.8699 +▁Xi -11.8699 +ž -11.8701 +▁crazy -11.8701 +RP -11.8704 +▁ideology -11.8705 +iller -11.8706 +kil -11.8707 +▁hectares -11.8708 +▁Mumbai -11.8709 +▁Turnpike -11.8709 +▁reddish -11.8709 +▁boarding -11.8711 +▁Lambert -11.8711 +▁desk -11.8713 +▁factions -11.8713 +▁contender -11.8714 +▁Nile -11.8715 +▁makers -11.8716 +▁contemporaries -11.8717 +▁Fruit -11.8718 +▁Elliott -11.8718 +reach -11.8719 +ör -11.872 +▁receptor -11.8721 +▁Rugby -11.8722 +circ -11.8723 +▁synonym -11.8725 +▁economically -11.8727 +vey -11.8728 +▁forts -11.8728 +▁Einstein -11.873 +▁waterline -11.8731 +▁affiliated -11.8732 +▁trainer -11.8734 +idium -11.8734 +▁assuming -11.8734 +order -11.8736 +▁fiscal -11.8736 +▁devote -11.8736 +▁civic -11.8739 +▁Sig -11.8739 +▁bundle -11.8739 +▁marsh -11.8739 +▁mapping -11.8742 +▁prejudice -11.8743 +agged -11.8743 +layer -11.8744 +lion -11.8744 +▁Georg -11.8746 +▁Buenos -11.8747 +▁mandate -11.8748 +▁robots -11.875 +▁Oz -11.8751 +▁sharply -11.8752 +▁Ave -11.8752 +ket -11.8754 +▁yoga -11.8754 +▁beetle -11.8756 +▁(9 -11.8756 +▁CIA -11.8757 +▁Jazz -11.8757 +▁Hick -11.8758 +▁gad -11.8759 +▁adventures -11.8761 +▁disrupted -11.8761 +uga -11.8764 +▁satellites -11.8765 +▁Erie -11.8766 +▁Ace -11.8767 +▁unrest -11.8767 +▁Exchange -11.8768 +▁pest -11.8771 +▁Structure -11.8772 +▁averaging -11.8772 +▁meanwhile -11.8772 +9. -11.8774 +▁Sharon -11.8774 +▁Ultimate -11.8774 +wear -11.8775 +▁Cost -11.8775 +▁gambling -11.8776 +BI -11.8777 +▁Everything -11.878 +▁neglect -11.8781 +earn -11.8783 +”) -11.8783 +apa -11.8785 +ozo -11.8785 +▁AU -11.8785 +▁somehow -11.8787 +▁Adolf -11.8789 +watt -11.8789 +▁Newark -11.879 +▁rendition -11.8793 +▁Evan -11.8794 +▁soup -11.8794 +▁Sche -11.8795 +kind -11.8795 +▁Sandy -11.8796 +▁goalkeeper -11.8799 +▁sometime -11.8803 +wò -11.8803 +▁horizon -11.8805 +▁geometry -11.8806 +edge -11.8809 +▁uncomfortable -11.881 +▁Canberra -11.881 +▁hunger -11.8813 +▁Sebastian -11.8814 +code -11.8817 +▁Danube -11.8818 +▁Lindwall -11.8818 +tler -11.8819 +viv -11.8819 +▁Lesser -11.8821 +▁frequencies -11.8822 +▁Alonso -11.8822 +▁118 -11.8822 +▁Wave -11.8825 +ories -11.8825 +▁rehabilitation -11.8827 +Go -11.8827 +▁innovations -11.8827 +▁maneuvers -11.8828 +▁Must -11.883 +▁Banksia -11.883 +WS -11.8831 +ι -11.8835 +▁Guadalcanal -11.8835 +▁biblical -11.8835 +▁AllMusic -11.8836 +▁Letter -11.8836 +▁pathway -11.8836 +▁guardian -11.8836 +zin -11.8837 +▁compliance -11.8839 +▁jealous -11.8839 +▁pè -11.884 +▁TB -11.8841 +▁snakes -11.8842 +▁IC -11.8842 +cken -11.8844 +▁Shawn -11.8845 +▁Savage -11.8847 +▁Reid -11.8848 +▁restart -11.8849 +amo -11.885 +▁reconcile -11.8852 +▁explores -11.8853 +▁Carbon -11.8854 +lift -11.8856 +▁equity -11.8856 +▁Teaching -11.8856 +▁pets -11.8856 +▁119 -11.8858 +▁SpongeBob -11.886 +En -11.8862 +▁Alamo -11.8862 +▁candle -11.8863 +▁ancestry -11.8865 +claim -11.8868 +▁(17 -11.8868 +▁jen -11.8869 +▁aggression -11.8869 +▁ladder -11.8869 +▁Coalition -11.8869 +tori -11.8871 +▁Consul -11.8873 +▁Mich -11.8874 +▁delegate -11.8874 +▁GM -11.8876 +▁nerves -11.8877 +▁320 -11.8877 +▁Om -11.8878 +equi -11.8879 +▁FC -11.8879 +▁Tat -11.8881 +▁Numerous -11.8881 +▁Genetic -11.8884 +chet -11.8885 +▁Workers -11.8886 +TF -11.8888 +▁intercepted -11.889 +▁cheer -11.8893 +worthy -11.8893 +▁shifting -11.8895 +▁freshman -11.8895 +▁makeup -11.8896 +▁operas -11.8897 +▁monsters -11.8897 +▁1847 -11.8898 +▁compost -11.8899 +▁rebuilding -11.8899 +▁teaches -11.8899 +▁guys -11.8901 +▁aliens -11.8902 +▁legendary -11.8902 +▁Copyright -11.8903 +▁autonomy -11.8903 +▁surname -11.8903 +▁amid -11.8905 +▁Cau -11.8905 +rap -11.8911 +▁picking -11.8911 +▁singular -11.8912 +vio -11.8912 +EX -11.8915 +▁calculations -11.8916 +▁debated -11.8916 +▁thrill -11.8918 +hydr -11.8918 +▁Griffith -11.892 +▁vowel -11.8926 +▁Alternative -11.8926 +▁Hack -11.8927 +▁Espay -11.8929 +▁Willie -11.8929 +plex -11.8933 +▁Rhys -11.8933 +▁Few -11.8934 +▁Avon -11.8935 +enti -11.8936 +▁mills -11.8936 +four -11.8936 +▁boast -11.8938 +▁performer -11.894 +▁exploitation -11.8941 +▁NOK -11.8942 +▁Prussia -11.8943 +▁coaster -11.8944 +▁mould -11.8946 +éri -11.8947 +▁oath -11.8948 +▁midst -11.895 +▁tidal -11.8951 +▁glands -11.8951 +▁instinct -11.8954 +jè -11.8955 +written -11.8956 +▁Reference -11.8958 +▁observer -11.8959 +risk -11.896 +▁bassist -11.8962 +▁FDA -11.8963 +▁safer -11.8963 +▁wolf -11.8963 +▁lament -11.8963 +▁songwriting -11.8965 +▁turbine -11.8966 +icide -11.897 +▁Winchester -11.8971 +▁nonetheless -11.8971 +▁administer -11.8972 +▁Guest -11.8974 +author -11.8975 +▁jointly -11.8975 +▁penalties -11.8975 +azar -11.8976 +▁Pike -11.8978 +him -11.8978 +▁Von -11.8979 +▁Kingston -11.8983 +▁precaution -11.8984 +wee -11.8985 +▁containers -11.8986 +▁Dover -11.8986 +▁Yang -11.8987 +▁Quick -11.8987 +▁Pepper -11.8989 +▁Honey -11.8989 +berger -11.8989 +hat -11.8989 +▁Boyd -11.899 +4% -11.899 +▁relax -11.899 +▁favourable -11.8992 +▁Observatory -11.8992 +▁admits -11.8995 +▁128 -11.8996 +▁Plain -11.8997 +▁vacation -11.8997 +▁northbound -11.8998 +▁Á -11.9 +▁letting -11.9001 +▁Biology -11.9001 +▁Wash -11.9003 +8% -11.9008 +▁defects -11.9008 +▁worksheet -11.9009 +▁overview -11.9011 +▁skip -11.9013 +atè -11.9014 +rack -11.9015 +▁monitored -11.9015 +▁shipments -11.9016 +▁deliberate -11.9016 +▁Creative -11.9016 +▁dining -11.9017 +▁oxidation -11.9018 +▁spoil -11.9018 +▁blessing -11.9018 +▁Likewise -11.9019 +II -11.9019 +▁202 -11.9019 +▁Underground -11.9019 +▁Mono -11.902 +▁Mental -11.9021 +escent -11.9021 +▁Nuclear -11.9022 +▁Gram -11.9022 +▁discovering -11.9023 +▁rodent -11.9025 +▁Pho -11.9026 +▁businessman -11.9026 +Ha -11.9027 +▁Lenin -11.9027 +▁Lim -11.9027 +▁deity -11.9028 +▁encourages -11.9028 +▁thumb -11.9031 +isco -11.9032 +▁narrowly -11.9035 +▁supernatural -11.9036 +▁Wire -11.9036 +▁Webster -11.9037 +dden -11.9039 +witch -11.9041 +▁fen -11.9041 +▁visitor -11.9042 +▁Yan -11.9043 +▁demolition -11.9044 +▁550 -11.9047 +▁landowner -11.9048 +▁punish -11.9051 +toxic -11.9051 +▁Bot -11.9055 +▁Winston -11.9056 +▁comply -11.9058 +▁pitching -11.9061 +ε -11.9061 +▁sleeve -11.9061 +▁soccer -11.9061 +▁ofisyèl -11.9061 +▁glow -11.9062 +▁Ashley -11.9062 +▁Bradford -11.9062 +òn -11.9064 +enburg -11.9064 +▁Stern -11.9064 +mere -11.9066 +▁GA -11.9066 +▁Axis -11.9067 +▁Greenland -11.9067 +▁princess -11.9069 +▁Document -11.907 +▁Thanks -11.907 +▁Wong -11.9074 +▁umpire -11.9074 +▁Robot -11.9075 +▁WA -11.9075 +▁terrace -11.9076 +akh -11.9076 +▁advertisement -11.9077 +▁AT -11.9077 +▁Penguin -11.9078 +▁magn -11.908 +▁characterised -11.9081 +▁osi -11.9082 +▁Pradesh -11.9083 +▁wrapped -11.9083 +Bo -11.9085 +▁1846 -11.9086 +▁sounded -11.9087 +▁flour -11.9087 +▁Holly -11.9089 +fulness -11.9089 +▁depart -11.9089 +▁Brighton -11.9089 +▁instantly -11.909 +▁Fly -11.9091 +▁Ming -11.9092 +▁anyway -11.9095 +▁Believe -11.9096 +▁dangers -11.9096 +second -11.9099 +▁correction -11.9099 +▁glider -11.91 +▁gwoup -11.91 +LS -11.9101 +▁evacuate -11.9103 +▁cottage -11.9104 +vier -11.9106 +▁Carlo -11.9106 +product -11.9106 +▁Ramon -11.9107 +▁Socialist -11.9107 +▁Hendrix -11.9109 +▁Rise -11.9112 +▁inventor -11.9114 +▁compassion -11.9114 +▁bug -11.9116 +▁gallons -11.9117 +▁disciple -11.9117 +▁vibration -11.9117 +▁OK -11.9118 +▁uncovered -11.9119 +▁glove -11.912 +î -11.9122 +λ -11.9122 +▁catches -11.9125 +▁hack -11.9125 +Li -11.9126 +▁hazards -11.9127 +▁Duchess -11.9128 +▁vir -11.9128 +▁weaker -11.9128 +▁Comic -11.9129 +▁Greene -11.9131 +▁pigs -11.9131 +lva -11.9132 +iver -11.9133 +El -11.9133 +vre -11.9133 +▁coordinated -11.9134 +▁Tir -11.9134 +▁adhere -11.9136 +▁mushrooms -11.9139 +▁122 -11.9139 +▁teenager -11.914 +▁parasites -11.914 +bourne -11.914 +▁outlined -11.9143 +▁portraits -11.9143 +!” -11.9143 +▁vague -11.9145 +▁Stru -11.9145 +▁Organ -11.9148 +▁surplus -11.9148 +▁Account -11.9148 +▁SM -11.9149 +▁Amor -11.9149 +▁compose -11.915 +▁Chin -11.915 +▁switching -11.9153 +▁conventions -11.9155 +▁receptors -11.9155 +▁Jer -11.9156 +▁cheat -11.9156 +ا -11.9157 +▁aluminum -11.9157 +▁pronunciation -11.9157 +▁socially -11.9158 +vul -11.9159 +▁coincide -11.9159 +▁limb -11.9159 +▁bust -11.916 +▁116 -11.9162 +▁conscience -11.9162 +▁traders -11.9163 +▁Bend -11.9164 +▁inevitable -11.9165 +▁resemblance -11.9165 +iana -11.9166 +▁Drew -11.9167 +▁disagreed -11.9167 +▁yes -11.9169 +▁Depending -11.917 +▁collaborative -11.917 +▁Portsmouth -11.917 +On -11.917 +▁Fey -11.917 +▁Interest -11.917 +▁dispersed -11.9174 +▁illusion -11.9174 +▁template -11.9174 +▁123 -11.9175 +▁lemur -11.9175 +oco -11.9175 +▁interval -11.9177 +lish -11.9178 +▁economist -11.9178 +▁striker -11.918 +▁inherent -11.9181 +▁plumage -11.9182 +▁technically -11.9182 +▁curious -11.9184 +▁pesticides -11.9184 +▁Extra -11.9185 +▁modeling -11.9186 +▁Writers -11.9186 +▁algae -11.9187 +▁Chain -11.9187 +▁leaked -11.9193 +▁horns -11.9196 +▁animator -11.9196 +▁tense -11.9196 +▁330 -11.9197 +pound -11.9197 +pir -11.9199 +▁implementing -11.9199 +▁dirty -11.92 +▁1855 -11.92 +▁visually -11.9201 +▁hazardous -11.9201 +▁counterpart -11.9202 +▁proton -11.9203 +▁heroic -11.9204 +▁undergoing -11.9204 +▁Vale -11.9205 +▁millimetres -11.9206 +▁Cata -11.9206 +▁pod -11.9208 +▁fairy -11.9209 +▁Commodore -11.9209 +▁stump -11.9209 +▁adjusted -11.9209 +▁Rochester -11.921 +▁Multiple -11.921 +▁nasal -11.921 +about -11.9211 +▁Kip -11.9212 +▁abdomen -11.9213 +▁rhyme -11.9213 +▁synthesizer -11.9214 +▁seated -11.9215 +▁sore -11.9216 +riz -11.9217 +▁affection -11.9217 +▁inappropriate -11.9217 +▁Lombard -11.9218 +▁Benedict -11.9218 +▁brood -11.9219 +fit -11.922 +CU -11.9221 +▁Save -11.9221 +▁Destiny -11.9222 +▁extracted -11.9224 +▁Flow -11.9225 +▁Brother -11.9226 +▁Tran -11.9226 +▁luxury -11.9227 +▁practicing -11.9227 +▁Brunswick -11.9227 +▁generous -11.9227 +▁Brock -11.9228 +▁plat -11.9228 +will -11.9229 +▁Mori -11.9234 +▁traverse -11.9236 +▁Satan -11.9237 +▁Aires -11.9237 +▁discount -11.9237 +▁wax -11.9239 +▁Harmon -11.924 +▁Barber -11.924 +▁Crazy -11.924 +▁fins -11.9242 +▁archbishop -11.9244 +▁Maz -11.9246 +▁Sophie -11.9249 +▁Virtual -11.9249 +▁entities -11.9249 +▁entrepreneur -11.9251 +xia -11.9252 +▁climax -11.9253 +▁kilograms -11.9254 +course -11.9255 +▁advent -11.9257 +▁Presidential -11.926 +▁plague -11.926 +▁decommissioned -11.9262 +▁satisfaction -11.9262 +▁Orlando -11.9262 +▁yields -11.9262 +▁Linux -11.9263 +▁frontal -11.9264 +▁Zin -11.9265 +▁crab -11.9266 +▁superstructure -11.9267 +LM -11.9267 +▁Programme -11.9268 +▁pension -11.9268 +▁appealing -11.9268 +bow -11.927 +▁Nikola -11.9271 +▁geometric -11.9275 +▁cooked -11.9276 +▁Regard -11.9279 +▁sandwich -11.928 +▁CDC -11.928 +▁Siege -11.9284 +▁reclaim -11.9284 +▁Million -11.9284 +mme -11.9285 +▁Hou -11.9285 +▁Dayton -11.9287 +▁Cover -11.9288 +ennial -11.929 +▁remnant -11.929 +▁initiate -11.9291 +▁rolled -11.9292 +▁Thirty -11.9293 +▁Tina -11.9293 +▁ATP -11.9294 +▁sued -11.9296 +▁financing -11.9297 +glyc -11.9297 +▁Commun -11.9299 +▁comme -11.93 +▁Moreno -11.9301 +▁López -11.9301 +▁weighing -11.9303 +▁compatible -11.9306 +▁Bahamas -11.9306 +▁biologist -11.9306 +▁relies -11.9307 +▁Cant -11.9308 +▁statues -11.9312 +▁XIII -11.9312 +▁Parents -11.9313 +▁activate -11.9313 +▁poles -11.9314 +т -11.9315 +▁disagree -11.9315 +▁curtain -11.9316 +▁sparked -11.9316 +▁Roma -11.9317 +▁Doll -11.9318 +▁solved -11.9318 +▁Blaine -11.9318 +▁taxi -11.932 +▁185 -11.9322 +▁rust -11.9322 +vat -11.9323 +▁documentation -11.9324 +▁publishers -11.9325 +TER -11.9326 +pine -11.9326 +▁2022 -11.9326 +▁ego -11.933 +▁inventory -11.933 +▁1853 -11.933 +▁1832 -11.9332 +▁1500 -11.9332 +▁Bé -11.9334 +▁EC -11.9335 +▁deteriorated -11.9335 +shima -11.9335 +▁Iranian -11.9336 +▁obligations -11.9336 +▁Hindi -11.9336 +▁retiring -11.9337 +▁overhaul -11.9337 +▁friction -11.9337 +▁unified -11.9338 +▁portrays -11.9338 +▁Letters -11.9339 +▁Classical -11.9339 +▁invade -11.934 +▁elevator -11.9341 +▁presumed -11.9341 +▁possessions -11.9343 +▁Lot -11.9344 +▁Sport -11.9345 +▁glasses -11.9348 +▁globally -11.9348 +▁650 -11.9349 +▁hemisphere -11.935 +▁recovering -11.9352 +6% -11.9354 +high -11.9354 +▁Crash -11.9355 +▁Rican -11.9356 +▁Jenna -11.9358 +▁combines -11.9359 +▁Commercial -11.9359 +▁Literature -11.9359 +▁advocates -11.9359 +▁weld -11.9359 +▁SAS -11.936 +▁spiders -11.936 +▁Gould -11.9361 +▁Fiction -11.9361 +▁resting -11.9361 +▁Terri -11.9363 +▁electromagnetic -11.9364 +▁charging -11.9364 +▁constructing -11.9365 +▁supportive -11.9365 +▁distribute -11.9367 +▁applicable -11.9368 +▁shrink -11.9368 +▁Wade -11.9368 +▁Jamie -11.937 +kka -11.937 +▁mantle -11.9373 +▁molar -11.9374 +▁Statistics -11.9381 +aster -11.9382 +▁Wan -11.9385 +▁1852 -11.9386 +с -11.9386 +▁infrared -11.9386 +▁pleasant -11.9386 +▁Mormon -11.9386 +▁equations -11.9386 +▁chill -11.9387 +▁centimetres -11.9388 +natal -11.9388 +▁Federer -11.939 +RM -11.9392 +EV -11.9395 +▁plantation -11.9395 +▁(4 -11.9396 +mou -11.9398 +▁Agricultural -11.9399 +▁Application -11.9399 +▁relegated -11.9404 +▁overhead -11.9406 +▁passionate -11.9407 +▁Falcon -11.9408 +▁Something -11.9409 +▁weird -11.9409 +▁persona -11.9409 +▁comedian -11.9411 +plication -11.9411 +▁resonance -11.9413 +▁visibility -11.9413 +▁Wie -11.9417 +▁impairment -11.9419 +▁intervene -11.942 +▁cantata -11.9422 +▁Pluto -11.9423 +▁predictions -11.9423 +)| -11.9425 +▁trumpet -11.9426 +▁grat -11.9426 +▁Root -11.9426 +▁fig -11.9426 +▁Afterwards -11.9427 +▁niche -11.9429 +▁sake -11.9429 +▁teenagers -11.9429 +▁Usually -11.9431 +udge -11.9431 +▁Isabel -11.9431 +stand -11.9432 +▁warrior -11.9432 +▁skiing -11.9433 +▁1776 -11.9434 +graphic -11.9434 +cru -11.9435 +TP -11.9436 +▁freeze -11.9437 +▁Gore -11.9437 +▁exchanged -11.9439 +▁Cott -11.9439 +▁testified -11.9441 +cour -11.9443 +▁Reyalizatè -11.9444 +▁commended -11.9444 +▁Answer -11.9444 +▁gust -11.9445 +▁ré -11.9445 +▁Aircraft -11.9446 +beck -11.9446 +▁Carpenter -11.9448 +▁Immediately -11.9448 +▁intestine -11.9449 +▁concurrent -11.9452 +▁therapist -11.9452 +▁mizisyen -11.9453 +▁peripheral -11.9453 +abad -11.9453 +meric -11.9455 +solving -11.9455 +▁ballet -11.9456 +▁besides -11.9456 +sworth -11.9456 +▁meteor -11.9456 +▁overlooked -11.9458 +▁rotating -11.9459 +▁blank -11.9461 +pedia -11.9464 +▁surprisingly -11.9465 +▁markers -11.9465 +▁furnish -11.9466 +▁evoke -11.9466 +▁intentionally -11.9467 +▁morph -11.9469 +enstein -11.9469 +▁Hur -11.947 +▁nou -11.947 +▁totaled -11.947 +▁southbound -11.9472 +▁inflammatory -11.9473 +Neill -11.9474 +jin -11.9474 +▁stanza -11.9475 +kara -11.948 +▁fox -11.9483 +▁Edit -11.9483 +lean -11.9484 +▁fertility -11.9484 +oda -11.9486 +▁enjoyable -11.9486 +▁deleted -11.9487 +▁Donna -11.9487 +▁Jeanne -11.9488 +▁Sunderland -11.9489 +▁prestigious -11.9489 +▁Giro -11.9491 +▁Halifax -11.9493 +▁hygiene -11.9493 +▁Spo -11.9494 +▁Plains -11.9494 +static -11.9494 +▁bog -11.9502 +▁iPhone -11.9502 +rol -11.9504 +▁Carroll -11.9504 +▁Echo -11.9504 +▁educate -11.9506 +▁counting -11.9506 +▁Hyper -11.9508 +▁Verde -11.9508 +berries -11.951 +▁cuisine -11.9511 +▁Belt -11.9513 +▁ruined -11.9513 +▁brave -11.9514 +▁satisfy -11.9515 +▁somebody -11.952 +▁Evening -11.952 +onym -11.9524 +▁RIAA -11.9525 +▁Conf -11.9526 +keeping -11.9526 +trib -11.9526 +▁advisory -11.953 +▁hierarchy -11.9534 +▁Download -11.9535 +▁urging -11.9535 +group -11.9536 +▁sculptures -11.9538 +▁diplomat -11.9539 +enko -11.9539 +odont -11.9541 +▁refusing -11.9543 +▁Dow -11.9543 +▁pistol -11.9543 +▁overtime -11.9546 +empt -11.9547 +anto -11.955 +▁Locke -11.9552 +spire -11.9552 +▁ESPN -11.9552 +tir -11.9553 +▁Cour -11.9554 +▁Dot -11.9555 +▁steer -11.9555 +source -11.9557 +▁fare -11.9558 +▁governmental -11.9559 +▁damp -11.956 +▁penetrate -11.956 +hua -11.956 +▁censor -11.9565 +emp -11.9566 +▁underway -11.9566 +▁pollen -11.9572 +uter -11.9573 +raja -11.9575 +▁awkward -11.9575 +▁solitary -11.9575 +▁smash -11.9575 +▁Feature -11.9575 +wise -11.9576 +opo -11.9577 +▁gale -11.9577 +cient -11.9578 +MT -11.9579 +▁synagogue -11.9579 +▁132 -11.9584 +▁superhero -11.9584 +▁Rafael -11.9584 +▁Cedar -11.9585 +▁font -11.9587 +green -11.9587 +▁degradation -11.9589 +▁plaza -11.9589 +▁inheritance -11.9589 +DC -11.9589 +▁mole -11.9597 +▁relijyon -11.9598 +▁wrist -11.9598 +▁Ode -11.96 +gul -11.9601 +▁masterpiece -11.9603 +ark -11.9604 +VE -11.9606 +tree -11.9607 +▁Touch -11.9609 +▁Amar -11.9609 +dress -11.9611 +▁victorious -11.9611 +▁Geographic -11.9612 +▁Fresh -11.9613 +▁lining -11.9615 +ï -11.9615 +▁Producer -11.9616 +▁cock -11.9617 +suit -11.9617 +▁barge -11.9617 +▁backdrop -11.9618 +▁Lesson -11.962 +rise -11.962 +ctive -11.962 +▁Webber -11.962 +ilo -11.962 +▁whip -11.9622 +▁Kali -11.9622 +hee -11.9623 +▁cancel -11.9626 +▁missionaries -11.9626 +▁Visit -11.9627 +▁moth -11.9627 +▁Teachers -11.9628 +hear -11.9629 +▁Fuller -11.9629 +▁Rutherford -11.963 +▁accumulation -11.963 +stad -11.963 +Au -11.9631 +white -11.9631 +lund -11.9634 +▁Doktè -11.9635 +pod -11.9635 +oxin -11.9637 +▁updates -11.964 +PT -11.964 +phin -11.9641 +▁Troy -11.9642 +▁promptly -11.9642 +▁Wolverine -11.9643 +▁feather -11.9644 +▁pathways -11.9645 +▁seminar -11.9646 +▁Harbour -11.9646 +▁reunited -11.9648 +▁McMahon -11.9648 +▁constituent -11.9648 +▁magnesium -11.9648 +▁col -11.9648 +sexual -11.9648 +3) -11.965 +▁Term -11.965 +▁Hind -11.9652 +▁Beauty -11.9654 +▁Mod -11.9656 +▁geography -11.9657 +When -11.9659 +▁MW -11.966 +▁urge -11.966 +▁constituted -11.9661 +▁lizard -11.9662 +▁bathroom -11.9662 +▁Geneva -11.9662 +▁toxicity -11.9664 +▁Discovery -11.9664 +father -11.9664 +▁ple -11.9665 +▁^ -11.9665 +▁Always -11.9666 +▁cone -11.9666 +▁bounce -11.9668 +▁Away -11.967 +▁psychiatric -11.9671 +BL -11.9671 +aï -11.9671 +▁confession -11.9672 +▁spans -11.9673 +▁noir -11.9674 +▁Proto -11.9674 +▁semifinal -11.9675 +▁discarded -11.9675 +▁tumors -11.9676 +▁141 -11.968 +▁ADHD -11.968 +▁Sudan -11.968 +omer -11.9681 +▁postponed -11.9682 +▁Sergeant -11.9682 +▁drowned -11.9682 +▁manned -11.9684 +AG -11.9685 +▁Clinical -11.9686 +▁canvas -11.9689 +▁gills -11.9689 +▁Wizard -11.9689 +▁continuation -11.9689 +▁invisible -11.9689 +▁Nico -11.969 +▁duct -11.969 +▁hometown -11.9691 +▁fibers -11.9691 +▁mankind -11.9692 +▁humorous -11.9692 +▁Cope -11.9692 +▁Investigation -11.9694 +▁economies -11.9694 +▁issuing -11.9694 +chon -11.9697 +▁compression -11.9698 +▁Adriatic -11.9698 +▁1844 -11.9699 +shaped -11.9699 +▁obey -11.9701 +▁skate -11.9701 +▁Humphrey -11.9703 +anger -11.9706 +▁Mam -11.9706 +▁Britney -11.9708 +▁considerations -11.9709 +Fi -11.9709 +▁Archives -11.9709 +pati -11.971 +▁Custom -11.9712 +▁Stockholm -11.9712 +national -11.9712 +allow -11.9716 +▁caves -11.9716 +▁Holden -11.9717 +▁shy -11.9718 +▁Gunn -11.9721 +▁congressional -11.9721 +▁1837 -11.9723 +▁jan -11.9723 +▁temperate -11.9723 +▁claw -11.9725 +▁algorithms -11.9726 +▁repeal -11.9726 +▁Pill -11.9726 +▁charting -11.9728 +▁basal -11.973 +▁daylight -11.973 +▁Indianapolis -11.9731 +▁cancellation -11.9731 +neur -11.9732 +▁practically -11.9732 +▁dash -11.9734 +▁Fuji -11.9735 +▁embassy -11.9735 +▁1836 -11.9736 +▁upstream -11.9736 +▁Div -11.9737 +▁sect -11.9738 +▁hunter -11.9739 +inate -11.974 +▁resembling -11.974 +▁technician -11.974 +▁Knox -11.9745 +▁acquiring -11.9749 +▁Gandhi -11.9749 +▁Nearly -11.9751 +large -11.9753 +▁Lions -11.9754 +ologic -11.9755 +▁diminish -11.9756 +▁Dad -11.9757 +▁divorced -11.9757 +▁Minneapolis -11.9758 +▁opener -11.9758 +▁analog -11.9758 +▁Castell -11.976 +▁NME -11.9761 +▁grab -11.9761 +wit -11.9761 +▁forbidden -11.9768 +ović -11.9771 +▁Roland -11.9772 +▁rebuild -11.9773 +▁replicate -11.9773 +science -11.9774 +▁recalls -11.9775 +▁Nest -11.9776 +▁Lafayette -11.9777 +▁excitement -11.9777 +▁Dodgers -11.9778 +▁Bala -11.9779 +▁Dorothy -11.9782 +▁clad -11.9782 +▁Fight -11.9783 +▁Estate -11.9785 +▁Communication -11.9787 +▁listeners -11.9787 +▁Gamb -11.9789 +anj -11.979 +▁desirable -11.9791 +▁Literary -11.9791 +▁pitit -11.9792 +▁carving -11.9793 +▁Dre -11.9793 +▁accusations -11.9795 +ør -11.9796 +▁oz -11.9798 +▁Extension -11.98 +▁± -11.9802 +▁advertisements -11.9803 +▁Employ -11.9805 +▁IUCN -11.9805 +▁Hampton -11.9805 +▁Archer -11.9807 +▁pasture -11.9808 +▁Wesley -11.9808 +▁Chesapeake -11.9809 +▁salvage -11.9809 +▁Myth -11.981 +max -11.9812 +generation -11.9813 +▁incorrect -11.9817 +▁rage -11.9818 +▁culminated -11.9818 +▁reliability -11.9819 +ggy -11.9819 +▁polymer -11.9819 +ledge -11.982 +▁odor -11.9824 +pathy -11.9826 +▁AN -11.9826 +▁northeastward -11.9826 +▁Julius -11.9828 +▁straightforward -11.9828 +▁excluding -11.9828 +agno -11.983 +▁deities -11.983 +▁crusade -11.9833 +▁companions -11.9833 +▁Bess -11.9834 +▁Brig -11.9835 +▁Maybe -11.9836 +▁frigates -11.9837 +▁UC -11.9837 +▁chloride -11.9837 +▁potent -11.9839 +▁asset -11.9839 +▁stain -11.984 +▁Grass -11.9842 +▁disastrous -11.9842 +▁stellar -11.9842 +inae -11.9842 +▁excuse -11.9843 +▁Ivy -11.9843 +CM -11.9846 +▁hunters -11.9846 +▁apologize -11.9847 +▁instability -11.9847 +▁1790 -11.9848 +▁stall -11.9848 +▁Across -11.9849 +▁tornadoes -11.9849 +▁mountainous -11.9849 +▁Jackie -11.985 +▁Guam -11.985 +▁questioning -11.9851 +▁transparent -11.9852 +▁Tampa -11.9852 +▁tailed -11.9853 +DL -11.9856 +▁amounted -11.986 +▁trilogy -11.9861 +genic -11.9862 +ih -11.9863 +nomic -11.9864 +▁butterfly -11.9865 +race -11.9867 +▁Timberlake -11.987 +▁Scouting -11.9872 +▁glaciers -11.9873 +▁stranger -11.9874 +mph -11.9875 +▁sparrow -11.9875 +▁paired -11.988 +▁Divine -11.9881 +▁mutation -11.9883 +▁devastated -11.9884 +ête -11.9885 +▁capsule -11.9886 +▁sè -11.9889 +▁transmit -11.9889 +▁Disorder -11.9889 +▁neighbor -11.9892 +▁mounting -11.9893 +▁decorative -11.9893 +natural -11.9896 +▁Fitz -11.9897 +▁Rebecca -11.9898 +▁Vladimir -11.9898 +▁equilibrium -11.9898 +▁psychologist -11.9898 +▁sounding -11.9902 +▁Middlesex -11.9903 +▁talented -11.9904 +▁SI -11.9906 +atur -11.9907 +▁workshops -11.9907 +▁coined -11.9907 +▁humanitarian -11.9908 +▁milestone -11.9908 +▁tit -11.991 +▁Turk -11.9911 +▁Scale -11.9911 +▁Lauren -11.9912 +▁NO -11.9913 +▁Pond -11.9915 +ija -11.9918 +▁organise -11.9918 +▁oval -11.9918 +hana -11.9919 +chlor -11.9922 +▁Louisville -11.9923 +▁metro -11.9929 +▁Gaelic -11.9931 +▁Higher -11.9932 +olin -11.9933 +▁Questions -11.9934 +▁1⁄2 -11.9936 +jur -11.9938 +▁burnt -11.9938 +▁void -11.9939 +▁Gai -11.994 +▁skirmish -11.9941 +zzy -11.9945 +▁audit -11.9945 +▁partisan -11.9945 +▁Alberto -11.9947 +▁Hyde -11.995 +▁Journey -11.995 +▁Legal -11.9952 +▁casual -11.9953 +▁militant -11.9953 +▁Herman -11.9954 +▁Leopold -11.9955 +▁confusing -11.9955 +▁Sanders -11.9956 +né -11.9956 +▁Kle -11.9957 +▁sketches -11.9958 +nett -11.9959 +▁Rita -11.9959 +▁Thank -11.996 +▁Bronze -11.996 +LL -11.996 +▁impose -11.9961 +▁unrelated -11.9962 +▁Messi -11.9963 +▁thunderstorms -11.9965 +▁manifestation -11.9968 +▁slate -11.9969 +▁Gazette -11.9969 +▁televised -11.9969 +▁bullying -11.9969 +▁precedent -11.9969 +DE -11.997 +▁programmer -11.997 +▁abdominal -11.9974 +▁Rig -11.9974 +▁basket -11.9978 +▁Ear -11.9978 +▁Matanzas -11.9983 +èv -11.9983 +▁humour -11.9984 +▁emblem -11.9985 +▁Compton -11.9987 +▁inscriptions -11.999 +▁ACC -11.9991 +▁glad -11.9991 +▁née -11.9993 +▁Rivera -11.9993 +ð -11.9994 +▁portraying -11.9995 +▁bou -11.9995 +▁crossover -11.9996 +▁rig -11.9997 +▁climbed -11.9997 +▁grassland -12.0001 +▁immigrant -12.0003 +▁dependence -12.0004 +▁excavated -12.0005 +comb -12.0006 +▁Amsterdam -12.0007 +▁breathe -12.0007 +▁courtyard -12.0009 +▁institutional -12.001 +▁Zimbabwe -12.0011 +▁comprise -12.0013 +▁congress -12.0013 +▁broadcasting -12.0013 +1/ -12.0013 +▁photon -12.0014 +▁iPad -12.0016 +▁cycling -12.0017 +▁pupil -12.0018 +Un -12.0024 +baum -12.0024 +▁trench -12.0024 +▁stealing -12.0025 +▁teknoloji -12.0026 +▁restoring -12.0026 +▁Silva -12.0028 +▁edible -12.0028 +▁Yar -12.0029 +▁Meg -12.003 +▁CI -12.0031 +▁minorities -12.0031 +▁enlist -12.0034 +▁implied -12.0035 +▁selecting -12.0038 +▁Worth -12.004 +▁Regular -12.0041 +▁Population -12.0041 +▁sitcom -12.0041 +▁Person -12.0043 +▁arthritis -12.0045 +▁mentally -12.0045 +▁Barton -12.0046 +▁novelist -12.0052 +▁Brett -12.0053 +▁Galveston -12.0054 +▁pseudo -12.0054 +▁trusted -12.0055 +tang -12.0056 +▁trenches -12.0056 +▁Loch -12.0057 +▁GE -12.0057 +9% -12.0058 +▁Eleanor -12.0059 +▁Lexington -12.0059 +▁scholarly -12.0062 +▁Sit -12.0062 +▁realise -12.0062 +cup -12.0063 +▁Rand -12.0063 +▁occupying -12.0064 +▁derives -12.0064 +▁peri -12.0065 +▁Nie -12.0065 +▁1841 -12.0067 +▁grief -12.0069 +▁nave -12.0071 +▁Everyone -12.0071 +▁boil -12.0073 +▁Phantom -12.0073 +▁Eyes -12.0073 +▁settling -12.0073 +▁126 -12.0076 +▁Guerrero -12.0078 +building -12.0082 +▁vomiting -12.0083 +▁lauded -12.0083 +▁Hair -12.0086 +▁dismissal -12.0087 +▁enclosure -12.0088 +▁differed -12.0091 +än -12.0092 +▁Publisher -12.0092 +▁additionally -12.0093 +▁jack -12.0094 +▁objected -12.0094 +They -12.0094 +▁Provide -12.0097 +▁camouflage -12.0097 +▁Bahrain -12.0097 +▁anxious -12.0097 +trin -12.0099 +▁impaired -12.0101 +▁pamphlet -12.0102 +▁Jesuit -12.0102 +▁realism -12.0104 +▁sculptor -12.0105 +rav -12.0106 +▁Augustine -12.0107 +▁Spitfire -12.0107 +fly -12.0107 +lev -12.0109 +▁Dawson -12.0112 +▁imèn -12.0112 +scape -12.0113 +▁affordable -12.0113 +▁Tomb -12.0115 +▁defender -12.0117 +▁Relations -12.0117 +▁138 -12.0117 +▁remark -12.0119 +▁calculation -12.0121 +▁Transit -12.0121 +▁Hutton -12.0123 +cco -12.0124 +▁Trinidad -12.0126 +▁astronomy -12.0126 +▁Wyatt -12.0126 +▁Rovers -12.0129 +▁50% -12.0129 +▁boring -12.013 +▁Qa -12.013 +▁neglected -12.013 +▁troubled -12.0132 +▁naturalist -12.0134 +▁grazing -12.0136 +CG -12.0137 +▁Ibn -12.0137 +▁prediction -12.0138 +▁BL -12.0138 +▁personalities -12.0139 +▁discomfort -12.014 +▁microphone -12.0141 +▁prominently -12.0144 +agne -12.0145 +value -12.0145 +▁Philosophy -12.0145 +▁Racing -12.0148 +▁celebrating -12.015 +▁motorcycle -12.015 +▁yeast -12.0151 +▁bottles -12.0151 +▁Juliet -12.0151 +▁waited -12.0153 +▁Pall -12.0154 +▁asylum -12.0155 +▁erupted -12.0155 +▁Ek -12.0156 +▁Vernon -12.0157 +ouche -12.0159 +All -12.016 +▁dent -12.016 +▁portal -12.0161 +▁Grenad -12.0161 +▁Kea -12.0162 +▁toxins -12.0163 +▁Gha -12.0163 +▁hydraulic -12.0165 +▁Finance -12.0166 +▁Lili -12.0167 +TION -12.0168 +▁trop -12.0168 +▁lifelong -12.0172 +Reilly -12.0173 +▁Slam -12.0173 +▁bankruptcy -12.0174 +▁clearance -12.0175 +▁transactions -12.0177 +due -12.0177 +▁Election -12.0179 +bone -12.018 +▁Pav -12.0181 +▁continuity -12.0184 +▁Rupert -12.0184 +▁referenced -12.0186 +▁condom -12.0188 +▁inflict -12.0189 +▁composing -12.0189 +▁methane -12.0189 +▁burrow -12.0189 +▁Sixth -12.0189 +▁obligation -12.019 +▁tetra -12.0192 +▁Drink -12.0192 +RNA -12.0192 +▁interim -12.0192 +▁accordingly -12.0193 +BO -12.0193 +▁Initiative -12.0194 +scribed -12.0194 +▁rejoined -12.0197 +illi -12.0198 +▁Rin -12.0199 +▁fluoride -12.0199 +▁granite -12.02 +▁spanning -12.02 +▁Eugen -12.02 +cycle -12.0202 +800 -12.0203 +▁Ultra -12.0204 +▁lenses -12.0204 +▁Slave -12.0204 +▁Knowles -12.0205 +▁Vent -12.0207 +▁wrap -12.0208 +▁allergic -12.0208 +▁progresses -12.0208 +▁entirety -12.0209 +▁applicant -12.0213 +▁Battery -12.0213 +dec -12.0215 +▁newborn -12.0218 +▁Follow -12.0219 +!) -12.022 +▁lobe -12.0221 +▁Cage -12.0221 +▁retrospective -12.0223 +▁portable -12.0224 +▁confirmation -12.0224 +▁lent -12.0224 +mbre -12.0225 +easterly -12.0226 +▁enforced -12.0226 +▁mortal -12.0227 +ρ -12.0227 +▁fibre -12.0229 +▁Representative -12.0229 +vig -12.023 +▁anpil -12.023 +▁Critic -12.023 +chal -12.0231 +▁Damascus -12.0232 +▁announcing -12.0232 +▁dinò -12.0232 +▁Mort -12.0236 +▁Nutrition -12.0242 +▁Resolution -12.0243 +▁stationary -12.0246 +▁slice -12.0247 +▁prosecutor -12.0247 +TT -12.0247 +wr -12.0248 +▁nuclei -12.0248 +▁Vocal -12.0249 +▁kn -12.0252 +▁Sang -12.0252 +▁chips -12.0252 +▁tilt -12.0253 +enne -12.0254 +▁spinning -12.0254 +▁Timothy -12.0257 +▁gregoryen -12.0257 +▁entertain -12.0257 +▁reporters -12.0257 +▁discourse -12.0258 +▁Rei -12.0258 +▁Bella -12.0259 +▁violated -12.0262 +▁adolescents -12.0263 +▁Eat -12.0264 +▁Julien -12.0266 +▁superiority -12.0266 +▁leisure -12.0266 +▁amalgam -12.0266 +▁Nina -12.0266 +▁capitalist -12.0267 +ME -12.0267 +▁Supporting -12.0268 +manship -12.0269 +▁anchored -12.027 +▁Sz -12.027 +▁maiden -12.0271 +▁Bergen -12.0273 +▁bugs -12.0274 +divi -12.0275 +▁earl -12.0275 +▁Kiel -12.0276 +▁Pennsilvani -12.0276 +▁Webb -12.0279 +OH -12.0279 +▁Abdul -12.028 +anus -12.0281 +▁Malaya -12.0281 +▁Oakland -12.0285 +▁catching -12.0286 +▁wilderness -12.0286 +▁Borg -12.0288 +▁Shepherd -12.0291 +▁lumber -12.0291 +▁converting -12.0291 +▁overwhelmed -12.0292 +▁wetlands -12.0296 +▁Stark -12.0297 +▁loosely -12.0297 +▁beak -12.0297 +▁lamb -12.0298 +▁timeline -12.0299 +▁riots -12.03 +▁Brisbane -12.03 +▁supernova -12.03 +▁snack -12.03 +▁verdict -12.0301 +▁Rest -12.0301 +▁124 -12.0302 +▁Cherry -12.0305 +▁reel -12.0305 +▁peculiar -12.0305 +▁refresh -12.0305 +▁Tsar -12.0308 +▁utter -12.0309 +▁Vishnu -12.031 +child -12.031 +▁Norwich -12.0311 +▁workforce -12.0312 +▁electrode -12.0312 +▁hazard -12.0313 +▁Horror -12.0315 +▁hay -12.0316 +▁perfection -12.0317 +▁Buckingham -12.032 +▁canyon -12.032 +▁staple -12.0321 +▁Pablo -12.0321 +▁Minute -12.0321 +▁activation -12.0323 +▁surveyed -12.0323 +▁Cretaceous -12.0325 +▁residue -12.0325 +ummy -12.0326 +▁Glo -12.0328 +▁Albanian -12.0329 +▁Ferry -12.0329 +▁simpler -12.0329 +▁Fringe -12.033 +▁spear -12.0331 +▁Strip -12.0331 +50,000 -12.0333 +▁Elementary -12.0335 +-15 -12.0336 +▁Wise -12.0339 +▁Flat -12.034 +▁plateau -12.034 +▁displaying -12.034 +▁distill -12.0341 +▁Hib -12.0343 +▁WrestleMania -12.0344 +▁Heinrich -12.0345 +▁Hastings -12.0345 +▁Johan -12.0345 +)|| -12.0346 +▁frog -12.0346 +▁(“ -12.0346 +▁consolidated -12.0348 +▁cater -12.0351 +▁Gloucester -12.0354 +vac -12.0355 +mile -12.0361 +mol -12.0363 +▁Finding -12.0363 +▁vulnerability -12.0364 +▁Sept -12.0365 +technology -12.0365 +▁perceive -12.0366 +▁Reader -12.0367 +▁immortal -12.0369 +▁Towards -12.037 +▁Hydro -12.0372 +▁Gerard -12.0372 +▁Gul -12.0374 +▁Essential -12.0374 +▁Parkinson -12.0374 +▁ethanol -12.0374 +-17 -12.0375 +▁shirts -12.0376 +▁veins -12.0377 +▁obsolete -12.0379 +▁Jenny -12.038 +▁Quarter -12.038 +▁Nolan -12.0382 +▁allegiance -12.0384 +cilia -12.0388 +▁accumulate -12.0389 +▁Amazing -12.0389 +▁lightly -12.0392 +▁Circ -12.0392 +▁Stur -12.0394 +▁Diệm -12.0394 +▁astronomical -12.0394 +▁Traditional -12.0396 +▁Germanic -12.0396 +leigh -12.0397 +▁wrestlers -12.0397 +▁Located -12.0399 +▁heroine -12.0399 +▁Vit -12.0399 +MI -12.04 +▁creep -12.04 +▁Rough -12.04 +▁Garcia -12.0401 +▁attracting -12.0405 +▁Isabella -12.0405 +▁Sec -12.0407 +firm -12.0408 +▁Commerce -12.0409 +▁correspondent -12.0411 +bill -12.0412 +▁Write -12.0413 +▁township -12.0413 +▁auxiliary -12.0413 +▁Shark -12.0414 +▁Miz -12.0415 +lich -12.0416 +▁spontaneous -12.0418 +▁Hokie -12.0419 +▁marketed -12.0419 +▁attribute -12.0419 +affe -12.042 +▁McM -12.0422 +▁pause -12.0422 +ride -12.0422 +▁monk -12.0424 +▁spice -12.0425 +▁Warning -12.0425 +▁drone -12.0427 +▁modeled -12.0428 +▁Baja -12.0429 +▁integer -12.0429 +▁1838 -12.0429 +▁circulated -12.0431 +▁broadside -12.0431 +▁ulcer -12.0433 +▁dysfunction -12.0433 +▁demonstrations -12.0434 +▁137 -12.0434 +▁sauce -12.0434 +▁bride -12.0434 +▁Mortal -12.0435 +uber -12.0435 +▁flourish -12.0438 +▁expresses -12.044 +▁keeper -12.044 +▁vivid -12.0442 +▁congestion -12.0443 +▁abbey -12.0443 +▁tides -12.0443 +▁wholly -12.0443 +▁Alexandra -12.0444 +▁seventy -12.0445 +▁Bai -12.0446 +augh -12.0447 +▁propulsion -12.0448 +▁Antarctica -12.0448 +▁Psycho -12.0449 +▁Stay -12.045 +▁yielded -12.0451 +eira -12.0454 +▁satire -12.0454 +▁Zen -12.0454 +▁bribe -12.0457 +mara -12.0458 +▁vacant -12.0458 +▁municipalities -12.0459 +▁Cornwall -12.0461 +▁Taka -12.0462 +▁Conversely -12.0463 +▁recruiting -12.0467 +▁Religion -12.0468 +▁cardinal -12.0469 +▁Capcom -12.047 +▁Conrad -12.047 +yèm -12.0472 +▁divètisman -12.0473 +▁proponent -12.0473 +▁syllable -12.0473 +▁medley -12.0473 +▁Notre -12.0474 +▁Coal -12.0475 +▁demonstrating -12.0478 +▁Persona -12.0478 +week -12.0479 +▁consul -12.0481 +▁missionary -12.0481 +▁Ambassador -12.0483 +▁Jag -12.0483 +IE -12.0485 +tab -12.0485 +▁Noble -12.0485 +self -12.0486 +▁premium -12.0488 +▁Jill -12.0489 +posed -12.0491 +▁Arrow -12.0491 +▁isotope -12.0491 +▁Yankovic -12.0493 +▁mathematician -12.0493 +▁quotes -12.0493 +▁pianist -12.0493 +▁Zhang -12.0494 +▁Harding -12.0498 +▁Log -12.0499 +▁Chip -12.0499 +▁exploded -12.05 +homme -12.0501 +▁sided -12.0502 +▁grenade -12.0503 +▁sermon -12.0504 +iman -12.0506 +▁cyto -12.0506 +nea -12.051 +chemical -12.0512 +▁Shanghai -12.0513 +▁Oldham -12.0513 +▁Midwest -12.0513 +FR -12.0514 +▁Jude -12.0515 +▁conceded -12.0517 +▁labelled -12.0517 +▁approve -12.0518 +▁ecology -12.0519 +▁consulting -12.052 +▁Whatever -12.052 +▁Beta -12.0521 +▁summoned -12.0522 +▁dissipating -12.0523 +▁marijuana -12.0523 +▁Kahn -12.0523 +▁Above -12.0523 +▁asleep -12.0523 +▁adopting -12.0523 +▁Felix -12.0524 +HT -12.0524 +▁1835 -12.0525 +▁Hut -12.0525 +▁Jump -12.0527 +But -12.0527 +▁travay -12.0528 +ć -12.0529 +▁Heights -12.0529 +▁capitalism -12.0529 +▁patronage -12.0532 +▁Meredith -12.0533 +▁dignity -12.0533 +▁Reyes -12.0534 +▁banana -12.0536 +▁Wald -12.0536 +▁arches -12.0537 +ktè -12.0537 +▁Adel -12.0538 +▁indirectly -12.0538 +▁WHO -12.0541 +▁expecting -12.0541 +kou -12.0542 +▁McKe -12.0543 +▁appetite -12.0543 +▁authored -12.0543 +▁potatoes -12.0543 +▁procession -12.0546 +▁backwards -12.0547 +attle -12.0548 +▁desimal -12.055 +▁belly -12.0551 +▁Breath -12.0552 +▁proportional -12.0552 +▁distract -12.0553 +▁Hook -12.0553 +▁fauna -12.0554 +▁withstand -12.0557 +▁Mao -12.0557 +▁seating -12.0559 +▁jumped -12.0559 +▁specify -12.0561 +▁stud -12.0561 +▁supervised -12.0564 +▁pardon -12.0566 +▁Copenhagen -12.0568 +▁Rodríguez -12.0568 +▁segregation -12.0568 +▁Python -12.0568 +▁crawl -12.0568 +▁reminder -12.057 +▁Coup -12.0571 +▁hitter -12.0573 +▁Oppenheimer -12.0573 +▁bachelor -12.0573 +▁omni -12.0573 +▁Nau -12.0575 +▁Darren -12.0575 +▁peasants -12.0576 +▁reconstructed -12.0578 +< -12.0582 +▁Experiment -12.0585 +watch -12.0588 +▁Typically -12.0588 +▁imminent -12.0588 +▁participant -12.0589 +▁granting -12.0589 +ador -12.0589 +▁infect -12.0593 +Google -12.0595 +▁Victory -12.0595 +▁worsen -12.0596 +▁Till -12.0598 +▁recapture -12.0598 +▁1839 -12.0598 +▁bun -12.0598 +▁sixteenth -12.0601 +▁Cyber -12.0602 +▁shortages -12.0603 +▁endless -12.0603 +▁coronation -12.0603 +FP -12.0604 +▁tablets -12.0607 +▁Witt -12.0607 +▁Thousand -12.0608 +▁flare -12.0608 +plan -12.061 +▁batsmen -12.061 +▁cookie -12.0611 +▁messenger -12.0613 +▁rip -12.0614 +andan -12.0614 +▁Pakistani -12.0614 +▁Thorpe -12.0615 +▁Monk -12.0615 +▁tiles -12.0618 +serving -12.0618 +▁spectral -12.0618 +▁dementia -12.0618 +▁filmmakers -12.062 +▁Erin -12.0621 +▁transcription -12.0622 +uta -12.0623 +▁migrants -12.0623 +odon -12.0625 +▁Š -12.0625 +▁risen -12.0625 +▁AG -12.0625 +▁stained -12.0625 +▁responding -12.0626 +▁Haw -12.0626 +▁EMI -12.0628 +▁ARIA -12.0628 +▁sanction -12.0629 +▁fertile -12.0629 +▁Coastal -12.0631 +▁SMS -12.0632 +▁NOT -12.0632 +▁inclined -12.0633 +▁melodies -12.0633 +▁ventilation -12.0633 +nai -12.0634 +▁Seth -12.0635 +▁coating -12.0636 +Figure -12.0641 +▁Parent -12.0642 +One -12.0642 +▁Matematisyen -12.0643 +▁surely -12.0646 +▁pope -12.0647 +▁Published -12.0648 +▁lifespan -12.0649 +▁Wid -12.065 +emic -12.0652 +Art -12.0654 +▁Medieval -12.0654 +▁Dixon -12.0654 +▁129 -12.0654 +▁differing -12.0654 +ometric -12.0658 +▁suspicious -12.0659 +tention -12.0663 +glass -12.0664 +▁Stewie -12.0664 +▁lure -12.0664 +▁abduct -12.0664 +▁Hamlet -12.0666 +▁inscribed -12.0667 +▁bladder -12.0669 +▁sacked -12.0672 +▁Mansfield -12.0674 +▁Colonial -12.0674 +▁hiring -12.0676 +▁Kla -12.0676 +ought -12.0677 +▁Fork -12.0677 +▁Berger -12.0678 +change -12.0678 +▁melodic -12.0679 +vu -12.0679 +▁Expert -12.0679 +▁Gaul -12.068 +▁Eagles -12.0683 +▁Trent -12.0683 +▁cautious -12.0684 +▁miracle -12.0684 +▁colorful -12.0686 +▁Providence -12.0689 +▁1831 -12.0689 +▁tightly -12.069 +▁173 -12.0693 +▁maker -12.0693 +▁Forever -12.0694 +▁Secondary -12.0695 +▁Quality -12.07 +▁antibody -12.0701 +▁halfway -12.0701 +▁Nero -12.0702 +▁Mika -12.0706 +▁Treat -12.0706 +▁stranded -12.0708 +▁detector -12.0708 +▁engineered -12.0709 +▁Cliff -12.0709 +▁Trafford -12.0709 +▁prolific -12.0709 +▁liberation -12.0709 +▁terminated -12.071 +▁recycled -12.0712 +▁viewpoint -12.0713 +▁treason -12.0714 +▁Bottom -12.0715 +▁inequality -12.0715 +▁frost -12.0715 +▁Paleo -12.0716 +▁Fill -12.0717 +▁alleviate -12.072 +▁3000 -12.072 +rip -12.072 +▁Leonardo -12.072 +▁Cairo -12.0721 +▁aiming -12.0725 +▁Gloria -12.0725 +▁Bonn -12.0726 +▁Carmen -12.0726 +▁Internal -12.0727 +▁clade -12.0727 +▁Pir -12.0729 +RN -12.073 +▁frogs -12.073 +▁stereo -12.0731 +tsch -12.0732 +▁grounded -12.0732 +uti -12.0735 +▁employing -12.0737 +▁bunch -12.0737 +▁antigen -12.0737 +▁alterations -12.0739 +▁Seymour -12.074 +▁slogan -12.074 +▁volcanoes -12.0742 +` -12.0743 +shoot -12.0744 +▁automated -12.0745 +▁Shak -12.0745 +camp -12.0747 +▁kilometre -12.075 +▁Worcester -12.075 +▁tariff -12.0751 +-11 -12.0751 +▁Dig -12.0752 +▁1842 -12.0754 +▁Campus -12.0755 +▁coil -12.0755 +▁distributor -12.0755 +▁Buy -12.0756 +▁Davidson -12.0757 +▁plantations -12.0757 +structure -12.0757 +▁Fowler -12.076 +lytic -12.0761 +HI -12.0761 +▁Naga -12.0762 +▁Kang -12.0763 +▁Fernand -12.0764 +▁Quint -12.0765 +▁Wilde -12.0765 +▁Dexter -12.0766 +▁refrain -12.0766 +▁storytelling -12.0766 +▁excavation -12.0766 +▁safeguard -12.0766 +▁trait -12.0767 +▁Chandra -12.0767 +▁Troop -12.0769 +▁Carson -12.0771 +▁freestyle -12.0773 +▁khi -12.0774 +▁pow -12.0774 +▁UNESCO -12.0776 +▁blanket -12.0777 +▁Madanm -12.0781 +▁Scene -12.0782 +▁Benefit -12.0791 +▁Pha -12.0792 +rump -12.0793 +▁assumptions -12.0795 +▁Aristotle -12.0796 +▁Sé -12.0796 +▁prohibition -12.0797 +▁replay -12.08 +▁papal -12.08 +▁Electro -12.08 +▁Belarus -12.0801 +▁Hemisphere -12.0801 +▁Presbyterian -12.0801 +▁incumbent -12.0801 +▁Haz -12.0802 +▁unto -12.0803 +▁trash -12.0804 +▁thermo -12.0806 +▁therapies -12.0807 +guchi -12.0807 +▁expired -12.0808 +▁downloadable -12.0809 +▁Gear -12.0809 +RL -12.0811 +▁swell -12.0811 +UC -12.0812 +▁hiatus -12.0812 +▁Maur -12.0813 +good -12.0815 +▁Sher -12.0818 +kowski -12.0818 +▁Massa -12.0818 +▁discharged -12.0819 +▁Crew -12.0819 +▁fri -12.082 +▁Skin -12.0821 +▁simplicity -12.0822 +▁bowel -12.0824 +IV -12.0825 +▁Imagine -12.0827 +▁Klein -12.0827 +▁tying -12.083 +rh -12.0831 +▁preserving -12.0834 +gren -12.0835 +▁relying -12.0836 +▁routed -12.0839 +ATION -12.084 +contin -12.0842 +▁chin -12.0842 +lut -12.0843 +▁parrot -12.0843 +▁rebound -12.0844 +▁Sparta -12.0845 +tero -12.0846 +▁Priest -12.0847 +▁Freeway -12.0847 +▁Treasure -12.0848 +▁posthumously -12.0848 +▁censorship -12.0849 +hiro -12.0851 +▁constituency -12.0853 +▁Magnus -12.0853 +▁undertaking -12.0854 +▁centimeter -12.0858 +▁unfair -12.0858 +▁Olympia -12.0858 +think -12.0859 +▁Clare -12.086 +▁Lionel -12.086 +▁transaction -12.0861 +▁recipes -12.0865 +Yves -12.0867 +▁Terror -12.0868 +▁slender -12.0868 +▁Maggie -12.0869 +▁Barrow -12.087 +▁Constant -12.0872 +▁Parish -12.0872 +▁Kou -12.0873 +▁Glacier -12.0874 +▁elephants -12.0875 +▁upright -12.0876 +▁Roche -12.0881 +▁beast -12.0885 +▁exclude -12.0885 +▁Thur -12.0887 +▁Boot -12.0888 +▁buffer -12.0889 +▁racist -12.0889 +▁144 -12.0891 +▁reopened -12.0892 +▁Warrior -12.0892 +▁objections -12.0892 +brow -12.0894 +▁Bac -12.0894 +voca -12.0894 +yang -12.0895 +▁Wide -12.0896 +▁Frost -12.0896 +▁Marina -12.0897 +▁Cumberland -12.0899 +▁Thomson -12.0901 +▁(6 -12.0901 +slated -12.0902 +aph -12.0904 +▁anatomy -12.0905 +▁Lester -12.0906 +▁Phi -12.0907 +▁outrage -12.0908 +▁boxing -12.0909 +▁unchanged -12.091 +inator -12.0913 +▁seizure -12.0914 +▁trafficking -12.0915 +▁Known -12.0915 +also -12.0915 +▁seizures -12.0917 +grove -12.0917 +▁Herb -12.0918 +▁coffin -12.0918 +▁Fit -12.092 +▁AR -12.0921 +▁worms -12.0922 +▁seventeenth -12.0923 +aq -12.0923 +▁freezing -12.0923 +DF -12.0925 +▁Behavior -12.0925 +▁goaltender -12.0925 +▁whistle -12.0925 +▁Kumar -12.0929 +▁Tau -12.093 +▁excavations -12.0931 +▁intermittent -12.0931 +▁academy -12.0931 +escence -12.0934 +▁Dust -12.0935 +▁Tolkien -12.0936 +▁catalyst -12.0936 +▁symbolize -12.0938 +▁Ok -12.0938 +▁sexes -12.0938 +▁crane -12.094 +▁premises -12.094 +▁dissolution -12.0942 +▁accelerate -12.0942 +▁procure -12.0942 +▁chemist -12.0945 +uca -12.0945 +▁Tonight -12.0946 +▁Psychology -12.0947 +▁otter -12.0947 +▁satisfying -12.0948 +▁Stefan -12.0948 +▁enjoying -12.0949 +▁Pé -12.0949 +▁flush -12.0952 +▁mural -12.0956 +▁Fro -12.0957 +▁parachute -12.0957 +▁omitted -12.0958 +“ -12.0959 +▁preach -12.0959 +▁Poul -12.0961 +▁hailed -12.0962 +▁Galaxy -12.0962 +▁bunker -12.0963 +▁footprint -12.0963 +film -12.0965 +▁restrain -12.0965 +▁relaxed -12.0966 +▁enduring -12.0966 +▁Ukrainian -12.0967 +▁reacted -12.0969 +▁Bone -12.097 +▁Barack -12.097 +▁Welles -12.0971 +Ho -12.0972 +▁Sinclair -12.0972 +▁separating -12.0972 +▁harmonic -12.0974 +lew -12.0975 +œ -12.0978 +▁Sánchez -12.0978 +▁ambient -12.0978 +▁licence -12.0978 +▁cosmic -12.0978 +▁Tudor -12.098 +▁Shane -12.0981 +▁consulted -12.0981 +▁complexes -12.0983 +cub -12.0984 +▁sting -12.0984 +third -12.0986 +▁Blade -12.0986 +▁comeback -12.0988 +▁Solution -12.0988 +▁recreate -12.0989 +▁solicit -12.0989 +▁compress -12.099 +▁intricate -12.0993 +motion -12.0995 +▁Brussels -12.0999 +▁Canadiens -12.1004 +▁Reason -12.1004 +▁Joker -12.1004 +▁ME -12.1005 +▁disappearance -12.1005 +▁Going -12.1006 +iano -12.1008 +lett -12.1008 +▁Legislature -12.1009 +▁hepatitis -12.1009 +▁magnificent -12.1009 +▁Spur -12.101 +bé -12.1012 +▁Moh -12.1013 +▁allergies -12.1014 +▁exclusion -12.1014 +▁Shannon -12.1015 +▁Fighting -12.1015 +▁nodes -12.1016 +▁reformed -12.1019 +standing -12.102 +▁angular -12.102 +▁Trouble -12.102 +▁temporal -12.102 +eger -12.1021 +▁approximate -12.1025 +▁Important -12.1025 +▁methodology -12.1026 +▁Via -12.1027 +▁validity -12.1028 +ovny -12.1028 +▁dire -12.103 +▁elegant -12.103 +▁GR -12.1033 +fil -12.1035 +▁salvation -12.1035 +▁Metroid -12.1036 +▁steamer -12.1036 +▁pests -12.1039 +▁shelf -12.1039 +▁bloody -12.1039 +▁marching -12.104 +▁flowering -12.104 +▁Dartmouth -12.1041 +▁Xavier -12.1041 +phobia -12.105 +mother -12.1052 +▁hail -12.1053 +▁adulthood -12.1053 +▁venom -12.1053 +▁impart -12.1054 +stral -12.1056 +▁Legislative -12.1056 +▁cylindrical -12.1056 +EST -12.1058 +▁lighthouse -12.1059 +▁outflow -12.106 +MB -12.106 +▁quietly -12.1061 +▁resisted -12.1062 +▁Nottingham -12.1062 +▁sanctuary -12.1062 +saurus -12.1062 +▁Beatty -12.1065 +▁1843 -12.1066 +▁Zelda -12.1067 +▁decent -12.1069 +▁vertebrae -12.1069 +PU -12.107 +▁User -12.107 +▁SK -12.1071 +patient -12.1071 +▁RF -12.1071 +▁wrestler -12.1071 +▁Randolph -12.1072 +▁stunning -12.1072 +▁wheelchair -12.1072 +▁Pioneer -12.1072 +▁Clyde -12.1072 +▁Bret -12.1077 +▁milit -12.1077 +▁Pérez -12.1077 +▁Shackleton -12.1077 +▁disappointing -12.1077 +▁merchandise -12.1077 +в -12.1077 +▁Bates -12.1078 +▁buoy -12.1078 +▁fringe -12.108 +▁leased -12.1081 +oux -12.1082 +esse -12.1082 +▁Sheriff -12.1083 +hwa -12.1084 +▁Wig -12.1085 +▁willingness -12.1085 +▁Cities -12.1085 +ERS -12.1088 +▁inconsistent -12.1088 +▁sympathy -12.1088 +▁Brewer -12.109 +▁diarrhea -12.1093 +▁obliged -12.1094 +▁Colbert -12.1095 +▁JMA -12.1096 +▁obli -12.1096 +▁healthier -12.1096 +▁1815 -12.1097 +▁Ranch -12.1097 +▁Voyager -12.1098 +\ -12.1099 +▁anticipation -12.1099 +▁mwa -12.1099 +▁Freeman -12.1099 +▁Sidney -12.11 +▁batch -12.11 +▁envelope -12.1101 +▁Monthly -12.1103 +▁cartridge -12.1104 +~ -12.1104 +▁anarchist -12.1104 +▁swap -12.1105 +▁195 -12.1107 +▁Estonia -12.1107 +UD -12.1108 +▁thirteenth -12.1108 +′′ -12.1109 +▁α -12.1109 +▁Animation -12.1109 +▁shine -12.111 +▁Host -12.1111 +ARS -12.1113 +▁Summit -12.1115 +▁Content -12.1116 +▁coached -12.1117 +▁lemon -12.1117 +▁Seed -12.1118 +▁Lack -12.1119 +▁boo -12.1119 +social -12.112 +▁Hemingway -12.112 +▁remedy -12.112 +▁Meteorological -12.112 +▁amphibious -12.1122 +▁Expo -12.1123 +data -12.1124 +▁stretches -12.1124 +▁disarm -12.1125 +▁Match -12.1125 +▁Forum -12.1125 +▁Sophia -12.1125 +▁Proc -12.1125 +▁Cubs -12.1126 +▁Warriors -12.1127 +▁Phillip -12.1127 +▁clot -12.1128 +▁Colony -12.1128 +rob -12.1128 +▁Speaking -12.1128 +▁Europa -12.1129 +▁Kannada -12.113 +▁advocacy -12.113 +▁celebrities -12.113 +▁pencil -12.1131 +▁herbs -12.1132 +Cube -12.1134 +▁pap -12.1134 +▁Wat -12.1134 +qa -12.1135 +▁Knowledge -12.1136 +▁rooted -12.1138 +▁carpet -12.1139 +▁Returning -12.114 +▁definite -12.1141 +▁Criminal -12.1141 +▁swimmer -12.1142 +▁rash -12.1142 +▁investigators -12.1143 +▁accession -12.1144 +▁Holiday -12.1146 +▁alternating -12.1146 +▁folded -12.1147 +:10.1 -12.1147 +▁Milky -12.1147 +▁spokesman -12.1147 +▁tallest -12.1147 +▁coincided -12.1148 +▁Ride -12.1149 +▁rewarded -12.1149 +▁fuselage -12.1152 +▁financed -12.1153 +▁villagers -12.1153 +▁Congressional -12.1153 +▁clash -12.1154 +▁crowded -12.1156 +▁reminded -12.1156 +▁transcend -12.1157 +▁gag -12.1158 +▁flora -12.1159 +▁Idol -12.1159 +▁Cycl -12.116 +▁summon -12.116 +▁Herzegovina -12.1162 +▁canopy -12.1162 +cou -12.1163 +▁exercised -12.1165 +von -12.1166 +valent -12.1166 +▁protesters -12.1167 +▁hampered -12.1168 +▁franc -12.1168 +▁cardiac -12.1168 +▁migrate -12.1169 +▁Glory -12.117 +▁ecclesiastical -12.117 +▁grasses -12.1171 +▁prostitute -12.1173 +▁physiological -12.1173 +▁Shakira -12.1173 +vious -12.1174 +▁plaster -12.1174 +▁Walsh -12.1175 +▁demise -12.1178 +▁Northumbria -12.1178 +▁boycott -12.1179 +▁asserts -12.1183 +lead -12.1183 +▁martyr -12.1184 +▁Alf -12.1184 +finger -12.1185 +▁Boul -12.1187 +▁entail -12.1187 +▁mosaic -12.1189 +▁scent -12.119 +▁exaggerated -12.1191 +▁Gou -12.1193 +▁Include -12.1194 +dimensional -12.1194 +▁gaze -12.1195 +yat -12.1195 +▁Laurence -12.1195 +▁Pun -12.1196 +▁overlooking -12.1196 +▁Said -12.1197 +▁possesses -12.1198 +▁manipulation -12.12 +▁reappear -12.12 +▁Saga -12.1201 +▁tutorial -12.1201 +▁Siberia -12.1201 +▁terrorism -12.1202 +member -12.1203 +RB -12.1204 +▁cube -12.1205 +▁Antilles -12.1205 +▁protested -12.1206 +▁Teen -12.1206 +tale -12.1209 +▁searched -12.1209 +▁arguably -12.121 +▁diocese -12.121 +ddington -12.1212 +▁1829 -12.1212 +▁Batt -12.1214 +▁Hutchinson -12.1216 +▁Survivor -12.1216 +▁pharmaceutical -12.1216 +▁Educational -12.1217 +▁Fau -12.1217 +▁Solo -12.1219 +▁empirical -12.1221 +▁shuttle -12.1222 +▁flex -12.1223 +▁Coming -12.1223 +▁aspirin -12.1224 +▁admiral -12.1226 +▁lifting -12.1227 +▁Prayer -12.1227 +▁provoked -12.123 +▁harness -12.1232 +▁vinyl -12.1233 +electric -12.1236 +▁envisioned -12.1237 +▁repertoire -12.1237 +▁histories -12.1237 +▁Lucia -12.124 +cision -12.1241 +▁Okinawa -12.1243 +▁digging -12.1243 +▁inspiring -12.1244 +▁Role -12.1244 +Car -12.1248 +▁tweet -12.1248 +▁prevailing -12.125 +▁hood -12.1252 +▁charitable -12.1253 +▁digitally -12.1254 +▁shoe -12.1257 +▁mistaken -12.1257 +▁Yi -12.1257 +ograph -12.1258 +▁embraced -12.1259 +▁Madame -12.126 +tow -12.126 +▁scripture -12.126 +season -12.1262 +▁bolt -12.1264 +▁Slav -12.1264 +▁capita -12.1264 +▁microscope -12.1264 +▁Romantic -12.1265 +Frans -12.1266 +LP -12.1267 +▁pediatric -12.1269 +▁consistency -12.127 +oku -12.1274 +erate -12.1274 +:00 -12.1274 +▁vanish -12.1275 +▁Chetnik -12.1275 +▁supplemented -12.1276 +teri -12.1276 +▁proposition -12.1277 +▁Carnegie -12.128 +▁hostilities -12.128 +▁Doggett -12.128 +▁dancer -12.1281 +▁echoed -12.1282 +▁Christina -12.1282 +▁MB -12.1287 +▁Kant -12.1288 +▁Uncle -12.1289 +▁lucky -12.1289 +▁medicinal -12.1291 +▁Ernst -12.1291 +▁denial -12.1293 +olar -12.1296 +▁overweight -12.1298 +▁Bard -12.1301 +▁homeland -12.1303 +▁witch -12.1304 +vé -12.1305 +▁Value -12.1305 +▁Neg -12.1306 +▁1789 -12.1306 +▁Ricardo -12.1307 +▁Telugu -12.1307 +brand -12.1308 +▁slim -12.131 +MG -12.1312 +▁rigorous -12.1313 +▁1.5 -12.1315 +▁contradict -12.1316 +volution -12.1317 +▁Gur -12.1318 +▁Vatican -12.1318 +▁Speech -12.1319 +▁Irene -12.1319 +▁XII -12.1321 +▁Milk -12.1321 +▁tub -12.1321 +▁Goldman -12.1322 +▁cinematic -12.1322 +▁Waste -12.1326 +▁cruel -12.1328 +▁archipelago -12.1329 +▁Belgrade -12.1329 +▁Auburn -12.133 +▁proving -12.1334 +▁furnace -12.1334 +▁mitigate -12.1334 +▁Silvia -12.1335 +▁jewel -12.1337 +▁Lowe -12.1338 +proof -12.1339 +▁Exercise -12.134 +▁repetition -12.134 +ː -12.1341 +▁Willy -12.1341 +▁Bono -12.1343 +▁owed -12.1345 +▁Syracuse -12.1345 +▁fragile -12.1345 +▁Alain -12.1345 +▁Zach -12.1346 +▁hatred -12.1347 +▁Rib -12.1349 +▁besieged -12.135 +▁unfold -12.135 +▁bombarded -12.1351 +ikh -12.1352 +▁Wheat -12.1353 +▁checking -12.1354 +▁460 -12.1354 +▁Coco -12.1355 +▁Memphis -12.1356 +▁reunion -12.1356 +▁furious -12.1357 +raw -12.1359 +▁Lara -12.1361 +▁Polar -12.1361 +▁Eden -12.1361 +▁ideological -12.1361 +▁→ -12.1364 +▁Thing -12.1367 +PubMed -12.1367 +▁endorsement -12.1369 +▁cites -12.1372 +▁Dou -12.1372 +▁clues -12.1374 +▁Brooke -12.1375 +TL -12.1376 +file -12.1377 +▁Wimbledon -12.1378 +▁suffrage -12.1378 +▁alcoholic -12.1378 +▁elbow -12.1378 +hav -12.138 +▁dividing -12.1383 +▁conceal -12.1384 +kawa -12.1385 +▁ingredient -12.1388 +rama -12.1388 +▁Sca -12.1389 +▁stigma -12.1389 +▁Bombay -12.1389 +▁Silent -12.1391 +▁hungry -12.1391 +▁plank -12.1394 +▁Chemistry -12.1394 +▁Nepal -12.1396 +▁1819 -12.1396 +▁1804 -12.1397 +▁Tide -12.1399 +▁antibiotic -12.14 +▁restriction -12.1401 +▁differentiate -12.1401 +zil -12.1402 +3,000 -12.1403 +▁lethal -12.1404 +▁eks -12.1405 +▁terminate -12.1408 +▁groom -12.141 +▁spawn -12.1412 +MM -12.1415 +▁Matilda -12.1416 +▁memoirs -12.1416 +▁endured -12.1417 +▁Hole -12.1418 +lax -12.1419 +dè -12.142 +▁MGM -12.142 +▁Clarkson -12.142 +▁tuned -12.142 +▁shouldn -12.1423 +▁justification -12.1423 +▁assertion -12.1426 +▁Katherine -12.1427 +▁Goodman -12.1429 +▁Cobb -12.1429 +Pre -12.1432 +▁Watts -12.1435 +PF -12.1435 +▁sage -12.1435 +▁Boone -12.1438 +▁Hoo -12.144 +▁exploited -12.1441 +▁Goal -12.1442 +▁folklore -12.1443 +▁utilizing -12.1443 +▁morphology -12.1444 +▁manipulate -12.1445 +eaux -12.1445 +▁Pauline -12.1445 +stroke -12.1446 +▁fleeing -12.1447 +▁Mercy -12.1448 +▁Combined -12.1449 +▁humid -12.145 +▁highlighting -12.1452 +▁assisting -12.1453 +establish -12.1456 +▁seller -12.1456 +▁Could -12.1457 +phra -12.1457 +▁Blackburn -12.1458 +▁routinely -12.146 +▁Khrushchev -12.146 +▁analyzing -12.146 +▁Duff -12.1461 +▁Trip -12.1461 +▁weaknesses -12.1462 +▁Zagreb -12.1465 +▁Historically -12.1468 +▁Liv -12.1469 +▁McLaren -12.1471 +▁disregard -12.1471 +▁stupid -12.1471 +▁muscular -12.1471 +▁fade -12.1472 +▁outpost -12.1473 +▁Sandra -12.1477 +▁205 -12.1478 +▁gel -12.1479 +▁hunted -12.148 +Man -12.1482 +▁invalid -12.1482 +▁crush -12.1482 +▁Android -12.1484 +▁Meeting -12.1485 +▁Orkney -12.1487 +▁optimistic -12.1487 +▁nut -12.1488 +▁outlaw -12.1488 +ivat -12.1489 +security -12.1489 +friend -12.1492 +▁ensued -12.1493 +▁Townsend -12.1493 +▁virgin -12.1493 +▁Miranda -12.1493 +flat -12.1493 +▁conning -12.1494 +▁gym -12.1495 +▁Matsu -12.1496 +▁Hammer -12.1496 +▁Brittany -12.1498 +▁magistrate -12.1498 +▁Roe -12.1499 +▁ortho -12.1503 +▁Aberdeen -12.1504 +▁heaviest -12.1504 +▁donation -12.1505 +▁cyst -12.1506 +▁305 -12.1508 +▁forgive -12.1511 +▁oubyen -12.1515 +hom -12.1516 +▁isolate -12.1517 +▁gason -12.1518 +store -12.1518 +▁foremost -12.152 +▁saga -12.1522 +▁Seventh -12.1523 +▁1801 -12.1524 +▁Brent -12.1525 +▁Thorn -12.1526 +▁senaris -12.1526 +▁Strange -12.1527 +▁Arist -12.1528 +▁Elvis -12.1528 +Gu -12.1529 +▁imagined -12.1529 +▁lipid -12.153 +▁dictator -12.1531 +▁Tit -12.1531 +▁difize -12.1531 +▁prestige -12.1531 +▁intensification -12.1531 +▁subscription -12.1532 +▁numer -12.1533 +hour -12.1534 +▁retreating -12.1534 +fat -12.1534 +atta -12.1534 +▁Northeast -12.1535 +▁BR -12.1535 +▁milli -12.1535 +▁neurological -12.1537 +flies -12.1538 +jima -12.1538 +friendly -12.1538 +▁imitate -12.1543 +▁longtime -12.1543 +▁scatter -12.1544 +▁Midway -12.1545 +LR -12.1546 +▁caregiver -12.1548 +▁sheriff -12.1548 +▁Wer -12.1549 +▁Listen -12.155 +opha -12.155 +▁Aston -12.1554 +▁Joey -12.1554 +▁pathogen -12.1557 +▁gently -12.1559 +▁Exeter -12.156 +▁Naples -12.156 +▁Shell -12.1561 +▁deposition -12.1561 +▁Safe -12.1562 +▁Sally -12.1564 +▁suppressed -12.1564 +▁Dynamic -12.1564 +▁Leipzig -12.1564 +▁pran -12.1565 +▁Dock -12.1566 +▁Bede -12.1568 +▁Carn -12.1568 +▁pottery -12.157 +▁Rainbow -12.157 +▁ladies -12.157 +▁gamma -12.1571 +▁pase -12.1571 +▁specifications -12.1571 +▁searches -12.1571 +▁Rot -12.1571 +▁rented -12.1574 +▁astronomer -12.1574 +▁Giovanni -12.1576 +▁Booker -12.1577 +▁dispatch -12.1577 +▁billed -12.1577 +▁discern -12.1577 +▁Whale -12.1579 +▁sneak -12.1581 +▁Honour -12.1582 +▁Trevor -12.1582 +▁recipe -12.1585 +▁Mom -12.1587 +▁smartphone -12.1587 +▁invoke -12.1591 +def -12.1591 +mite -12.1591 +▁Killer -12.1593 +pòt -12.1593 +▁Boris -12.1594 +▁Span -12.1596 +▁Sinatra -12.1598 +▁Condition -12.1598 +▁superficial -12.1598 +▁PD -12.1599 +▁Kapoor -12.1603 +▁ancestral -12.1603 +▁480 -12.1603 +▁Empress -12.1604 +▁Dunn -12.1605 +▁fisheries -12.161 +▁resembled -12.1611 +▁improper -12.1614 +▁Regardless -12.1616 +▁unexpectedly -12.1619 +imal -12.1619 +lav -12.162 +▁laptop -12.1621 +▁1809 -12.1622 +▁upheld -12.1622 +▁Fry -12.1623 +▁listened -12.1625 +▁universally -12.1625 +▁Achievement -12.1626 +▁wolves -12.1626 +▁Titanic -12.1627 +▁puff -12.1628 +‘ -12.1628 +bay -12.1628 +▁fishermen -12.1631 +market -12.1631 +▁Barker -12.1632 +MR -12.1632 +▁Bald -12.1632 +▁Manual -12.1635 +▁foliage -12.1637 +▁otonòm -12.1637 +▁Venetian -12.1637 +▁Built -12.1637 +▁greeted -12.164 +▁recession -12.1641 +▁detention -12.1641 +▁reasonably -12.1642 +▁convenience -12.1642 +▁Simple -12.1643 +▁Focus -12.1643 +▁bent -12.1646 +▁machin -12.1646 +▁Cotton -12.1647 +▁ridiculous -12.1648 +▁Albion -12.1648 +▁Factory -12.1648 +▁Prague -12.1649 +▁lime -12.1653 +▁absurd -12.1654 +▁wherever -12.1654 +▁delight -12.1655 +▁sezon -12.1656 +▁mosquito -12.1658 +▁Byron -12.1659 +ß -12.1659 +▁Everglades -12.1659 +▁janvye -12.1659 +▁diverted -12.1659 +▁Helena -12.1662 +▁stronghold -12.1663 +▁Object -12.1663 +root -12.1663 +▁Una -12.1664 +▁cockpit -12.1665 +ummer -12.1665 +dry -12.1667 +▁remaster -12.1667 +▁hangar -12.167 +▁differential -12.167 +▁drilling -12.1672 +▁Alba -12.1672 +AU -12.1673 +▁Noah -12.1675 +GE -12.1675 +▁align -12.1675 +fjord -12.1676 +▁pinned -12.1677 +▁cer -12.1681 +▁1799 -12.1681 +GB -12.1681 +▁Matter -12.1681 +▁seldom -12.1682 +▁Crosby -12.1682 +who -12.1683 +ça -12.1685 +▁outskirts -12.1687 +▁parental -12.1687 +▁glyco -12.1689 +▁Charleston -12.1693 +▁gloss -12.1693 +▁Initial -12.1693 +stadt -12.1698 +▁Rie -12.1701 +▁1775 -12.1702 +▁manman -12.1702 +▁turnpike -12.1704 +▁Alder -12.1705 +▁Holt -12.1707 +orum -12.1708 +▁Shop -12.1708 +▁Rising -12.1708 +▁Spike -12.1709 +yèn -12.1709 +▁pavilion -12.171 +▁1814 -12.171 +▁Protocol -12.171 +▁Join -12.1713 +▁harass -12.1714 +▁Raz -12.1714 +▁outlook -12.1715 +▁Soundtrack -12.1716 +▁Remix -12.1716 +▁staging -12.1717 +▁Cannon -12.1718 +▁Patients -12.1721 +▁SW -12.1722 +▁peasant -12.1723 +derm -12.1723 +combe -12.1723 +zhou -12.1723 +ل -12.1727 +▁Randall -12.1727 +▁suppression -12.1729 +▁lowland -12.1731 +▁Veterans -12.1732 +uto -12.1733 +▁Lutheran -12.1734 +▁Doc -12.1735 +▁artery -12.1735 +▁simplified -12.1738 +TU -12.1738 +▁beloved -12.1738 +▁homosexuality -12.1741 +▁Leng -12.1741 +▁Airways -12.1742 +▁Smoking -12.1743 +▁Reformation -12.1745 +▁facto -12.1745 +▁teyat -12.1746 +▁chef -12.1747 +fam -12.1747 +▁recruitment -12.1748 +▁reliance -12.1749 +▁lithium -12.1749 +▁foraging -12.1749 +▁coordinator -12.1755 +▁waist -12.1756 +▁10% -12.176 +▁Shock -12.176 +▁Eliot -12.176 +▁exported -12.176 +▁apparatus -12.176 +▁pathogens -12.1761 +▁copied -12.1761 +▁quotation -12.1761 +▁Zhou -12.1765 +▁coinage -12.1766 +▁dictionary -12.1766 +▁Reflect -12.1766 +▁Dorset -12.1767 +▁literal -12.177 +▁Panthers -12.1772 +▁Humber -12.1773 +health -12.1773 +bio -12.1777 +▁Chrys -12.1778 +▁Wiki -12.1781 +▁chimney -12.1783 +▁Traffic -12.1783 +▁soda -12.1788 +▁Filipino -12.1789 +▁Jab -12.1791 +▁amphibian -12.1794 +▁compelled -12.1794 +▁Serv -12.1794 +▁Aero -12.1796 +▁surfaced -12.1796 +▁starboard -12.1796 +▁Eleven -12.1797 +block -12.1797 +▁setup -12.1799 +ahu -12.18 +▁Instrument -12.18 +▁mortgage -12.18 +▁tuberculosis -12.18 +▁benefited -12.1802 +▁gunfire -12.1803 +▁augmented -12.1804 +▁Frédéric -12.1806 +▁convex -12.1806 +▁anybody -12.1807 +▁conditioning -12.1808 +▁Monkey -12.1808 +▁rejoin -12.1808 +▁buff -12.1809 +▁Morocco -12.1811 +▁recognizing -12.1811 +▁alumni -12.1812 +▁impulse -12.1812 +tology -12.1812 +▁Creation -12.1816 +▁portfolio -12.1817 +▁bolster -12.1817 +▁respondents -12.1817 +▁compute -12.1819 +▁Arn -12.182 +ár -12.1821 +▁149 -12.1821 +▁146 -12.1822 +▁pixel -12.1823 +interest -12.1823 +▁Cath -12.1823 +▁Interactive -12.1824 +▁genital -12.1825 +▁proclaim -12.1826 +▁licensing -12.1828 +▁Blind -12.1829 +▁fòm -12.1831 +▁retina -12.1833 +opathy -12.1833 +▁Bit -12.1834 +▁Stanton -12.1836 +inch -12.1836 +arium -12.1837 +▁Landing -12.1838 +▁kilogram -12.1839 +▁dislike -12.1843 +▁Romeo -12.1844 +▁shoreline -12.1844 +▁glue -12.1846 +▁Slayer -12.1847 +▁pandan -12.1849 +▁eighty -12.1849 +▁Théâtre -12.1851 +▁Ruby -12.1851 +▁134 -12.1852 +▁deaf -12.1854 +ophy -12.1855 +▁1825 -12.1857 +▁flap -12.1857 +▁Parliamentary -12.1857 +▁treaties -12.1857 +▁judgement -12.1858 +article -12.1859 +▁1810 -12.1862 +ʻ -12.1863 +▁fool -12.1866 +▁10.1 -12.1866 +▁1794 -12.1868 +Adapt -12.187 +▁MCC -12.187 +▁collaborate -12.1871 +process -12.1872 +▁refugee -12.1876 +▁stricken -12.188 +▁168 -12.1882 +▁graphical -12.1884 +▁strained -12.1885 +▁exceptionally -12.1885 +▁Available -12.1886 +▁phylogenetic -12.1886 +▁packet -12.1886 +▁Reviewers -12.1888 +idia -12.1888 +▁Scan -12.1889 +rone -12.1891 +▁Relief -12.1891 +▁culminating -12.1891 +▁mercy -12.1891 +▁forensic -12.1892 +▁embark -12.1894 +ragon -12.1894 +▁Bug -12.1894 +▁finite -12.1895 +▁outright -12.1895 +▁Tak -12.1896 +lance -12.1898 +▁Georgetown -12.1898 +▁Wear -12.19 +▁exiled -12.1901 +▁850 -12.1906 +▁elongated -12.1909 +▁ligament -12.1909 +▁piercing -12.1909 +▁restraint -12.191 +▁shutout -12.1911 +▁columnist -12.1912 +▁contraction -12.1913 +▁Photograph -12.1914 +▁trillion -12.1914 +▁Chor -12.1915 +fill -12.1915 +▁coli -12.1916 +▁photographed -12.1917 +▁mol -12.1917 +writing -12.1919 +activated -12.1919 +▁chicks -12.192 +▁Champ -12.1921 +▁cricketer -12.1923 +shell -12.1924 +economic -12.1924 +▁Wine -12.1925 +▁apprentice -12.1925 +▁retention -12.1925 +▁unfinished -12.1926 +▁countless -12.1926 +▁anymore -12.1927 +▁Expressway -12.1934 +nucleotide -12.1937 +▁telegraph -12.1938 +▁functionality -12.1941 +▁Comet -12.1943 +▁Hiro -12.1944 +▁TR -12.1945 +▁concurrently -12.1945 +▁preschool -12.1946 +▁greet -12.1946 +▁diversion -12.1946 +▁Primetime -12.1947 +▁Boom -12.1948 +▁tactic -12.1948 +▁ambiguous -12.1949 +▁incarnation -12.1949 +▁Thanksgiving -12.1949 +▁133 -12.1951 +▁Mariana -12.1953 +▁410 -12.1954 +▁10,000 -12.1954 +▁denounced -12.1955 +▁endeavor -12.1955 +▁Petro -12.1955 +▁♭ -12.1956 +▁Woo -12.196 +▁escaping -12.196 +▁Weston -12.1961 +▁competent -12.1962 +▁crashes -12.1965 +▁Cel -12.1966 +▁Shirley -12.1966 +cost -12.1967 +▁fevriye -12.1972 +▁sandy -12.1973 +▁Antioch -12.1973 +▁NW -12.1974 +hō -12.1977 +▁Wisden -12.1978 +▁Bog -12.1982 +▁rumours -12.1983 +▁1833 -12.1985 +LD -12.1986 +cade -12.1986 +▁Everett -12.1989 +▁Paradise -12.1989 +▁Rockefeller -12.1989 +yòk -12.199 +▁advisories -12.1991 +▁inherit -12.1992 +▁disturbing -12.1993 +▁Cunningham -12.1995 +▁cerebral -12.1995 +▁Mira -12.1995 +▁164 -12.1996 +▁homework -12.1998 +▁foe -12.1999 +nine -12.2 +▁Move -12.2001 +oud -12.2001 +▁Ahmad -12.2001 +▁Broken -12.2002 +▁converge -12.2002 +▁morphological -12.2007 +▁Uganda -12.2007 +▁Bosnian -12.2007 +▁Catholicism -12.2008 +▁Fitzgerald -12.2012 +▁Gua -12.2015 +spiration -12.2015 +▁Rah -12.2015 +▁Afghan -12.2018 +▁cooperate -12.2018 +▁harvested -12.2018 +▁nude -12.2019 +▁1793 -12.2019 +▁Mae -12.2019 +▁affirm -12.202 +▁rack -12.2021 +▁nun -12.2023 +urus -12.2024 +Éric -12.2029 +ctus -12.2031 +▁Clarence -12.2031 +▁lone -12.2032 +▁setback -12.2035 +▁paradox -12.2036 +▁quantitative -12.2036 +▁Bismarck -12.2036 +▁Psalm -12.2036 +▁DM -12.2036 +▁fro -12.2037 +▁Mercia -12.2038 +▁cues -12.2039 +▁Geological -12.2039 +▁1821 -12.2042 +▁Chess -12.2045 +▁gotten -12.2046 +▁Northumberland -12.2047 +▁Hubble -12.2048 +AV -12.2048 +▁Nun -12.2049 +▁Levine -12.2049 +▁1798 -12.2049 +▁iOS -12.205 +▁rhythmic -12.2051 +iq -12.2051 +▁Rabbi -12.2052 +kun -12.2053 +▁Galileo -12.2053 +▁volatile -12.2053 +▁Sesame -12.2053 +▁380 -12.2053 +▁Feed -12.2054 +▁focal -12.2054 +NL -12.2054 +▁noon -12.2054 +lope -12.2055 +001 -12.2056 +▁magma -12.2058 +▁subplot -12.2059 +sboro -12.2062 +▁Active -12.2063 +▁142 -12.2064 +▁Twilight -12.2065 +▁Manitoba -12.2065 +▁Limit -12.2066 +▁fuck -12.2066 +▁Tex -12.2068 +▁Undertaker -12.2071 +ardo -12.2071 +physics -12.2071 +▁blew -12.2072 +▁Mickey -12.2072 +▁Rouge -12.2072 +▁Ladies -12.2072 +▁criticizing -12.2074 +▁optic -12.2076 +▁Wanderers -12.2076 +▁dopamine -12.2076 +▁hyphae -12.2076 +▁staircase -12.2076 +▁Twelve -12.2076 +▁noticeable -12.2077 +▁Madras -12.2078 +▁Dear -12.2079 +▁theorem -12.2079 +▁Advisory -12.2081 +▁Rank -12.2081 +▁competitor -12.2081 +scribing -12.2082 +▁Were -12.2082 +▁hom -12.2084 +▁likened -12.2085 +▁barrage -12.2089 +▁bulkhead -12.2089 +▁harvesting -12.209 +▁Soil -12.2091 +▁groundwater -12.2093 +▁predictable -12.2093 +dhar -12.2095 +FO -12.2095 +▁Frontier -12.2097 +▁Taft -12.2099 +▁prospective -12.2099 +▁bizarre -12.21 +▁Hama -12.21 +▁sickness -12.2102 +▁runoff -12.2103 +▁framed -12.2104 +vell -12.2105 +▁impedance -12.2106 +▁intrinsic -12.2106 +▁strive -12.2106 +▁mort -12.2108 +▁Bound -12.2109 +nomi -12.211 +▁Kab -12.2111 +control -12.2111 +▁Winnipeg -12.2111 +▁Corinth -12.2112 +▁Thai -12.2113 +▁1824 -12.2114 +▁Bachelor -12.2117 +▁Getting -12.2119 +▁priorities -12.2119 +▁Weight -12.2122 +▁MacDonald -12.2123 +▁slam -12.2125 +▁Moment -12.2127 +▁Mess -12.2128 +▁Rodriguez -12.2129 +▁conspicuous -12.2129 +▁divisional -12.213 +▁liv -12.2131 +▁treatise -12.2133 +morphic -12.2134 +▁mizik -12.2135 +▁225 -12.2135 +▁Albania -12.2135 +▁Whereas -12.2135 +0.0 -12.2138 +▁assemble -12.2138 +▁canoe -12.2138 +▁235 -12.214 +▁Sabbath -12.2141 +▁concurrency -12.2141 +▁nausea -12.2141 +öl -12.2144 +▁Birth -12.2145 +grave -12.2147 +▁cereal -12.2147 +endra -12.2147 +▁Noel -12.2152 +kti -12.2152 +▁Extreme -12.2153 +▁Dahl -12.2153 +▁151 -12.2153 +▁Bryant -12.2153 +▁traumatic -12.2157 +▁Dominic -12.2158 +▁endurance -12.2158 +▁transferring -12.2158 +▁Grammar -12.2159 +▁simultaneous -12.2159 +▁Milwaukee -12.2164 +▁plum -12.2169 +▁overflow -12.2169 +▁Detective -12.217 +▁depleted -12.217 +▁eponymous -12.217 +▁evolving -12.217 +▁tendon -12.2171 +▁unsure -12.2171 +▁recur -12.2171 +▁coding -12.2173 +▁SEC -12.2174 +▁Version -12.2174 +ambo -12.2175 +▁Cromwell -12.2176 +▁pollutants -12.2176 +▁triangular -12.2176 +▁tributary -12.2176 +ondo -12.2177 +▁verify -12.2177 +▁symbolism -12.2177 +▁sighted -12.2177 +▁depended -12.2177 +▁elastic -12.2178 +▁adequately -12.2178 +▁caste -12.2179 +▁subsidies -12.2182 +▁relegation -12.2183 +▁Peggy -12.2183 +▁realizing -12.2183 +▁Coral -12.2184 +▁Quaker -12.2185 +▁1780 -12.2185 +▁Plate -12.2185 +▁hardship -12.2185 +charge -12.2186 +▁MR -12.2187 +▁Shot -12.2188 +▁Restoration -12.2188 +▁efficacy -12.2188 +ATE -12.2188 +▁Quar -12.2189 +▁Cornwallis -12.219 +▁radial -12.219 +▁backward -12.2193 +▁Continuing -12.2194 +▁Definition -12.2194 +▁garbage -12.2194 +▁variability -12.2194 +▁damn -12.2195 +▁fulfilled -12.2197 +▁provisional -12.2197 +igen -12.2198 +▁discretion -12.22 +▁Majesty -12.22 +-16 -12.2201 +▁hetero -12.2201 +▁acidic -12.2204 +▁intersecting -12.2204 +▁supp -12.2206 +▁Would -12.2206 +▁analogy -12.2207 +GO -12.2209 +▁monopoly -12.2211 +▁spherical -12.2211 +▁AIF -12.2212 +bourg -12.2213 +▁lesions -12.2213 +▁hPa -12.2215 +▁instituted -12.2216 +▁celestial -12.2217 +▁compulsory -12.2217 +▁Connect -12.2219 +▁Reporter -12.2219 +strom -12.2219 +▁explode -12.222 +▁169 -12.2221 +roma -12.2221 +▁1792 -12.2221 +strate -12.2222 +▁Companies -12.2223 +▁Wemble -12.2227 +▁Nap -12.2228 +▁extinguish -12.2229 +▁Rebellion -12.2229 +▁fal -12.223 +▁compromised -12.2232 +CF -12.2232 +▁stalled -12.2234 +▁ambulance -12.2235 +▁Compared -12.2236 +▁distortion -12.2237 +▁martin -12.2237 +uate -12.2239 +▁Results -12.2241 +▁skirt -12.2242 +▁ˈ -12.2244 +▁Malaysian -12.2244 +cyclic -12.2247 +▁sporadic -12.2247 +▁Illustrated -12.2247 +▁bargain -12.2247 +▁connector -12.2247 +▁Playing -12.2248 +oche -12.2249 +▁stripes -12.225 +▁millennium -12.2253 +▁anthology -12.2253 +▁dissolve -12.2256 +▁1805 -12.2257 +horse -12.2257 +▁Rao -12.2257 +▁Bf -12.2258 +κ -12.2259 +▁catastrophic -12.2259 +▁psychedelic -12.2259 +▁Himalaya -12.2259 +▁Paraguay -12.2259 +▁Memory -12.2259 +▁stint -12.2259 +▁logging -12.2261 +▁Conan -12.2264 +▁wrought -12.2265 +▁Smithsonian -12.2265 +▁biomass -12.2265 +▁geology -12.2265 +spor -12.2267 +▁revive -12.2268 +▁Nigel -12.2268 +what -12.2269 +▁contempt -12.2271 +▁blunt -12.2271 +▁airway -12.2273 +astic -12.2274 +▁taxation -12.2274 +▁Heroes -12.2275 +▁repeating -12.2275 +▁worm -12.2276 +▁centred -12.2276 +▁republican -12.2276 +▁impress -12.2276 +▁Bright -12.2276 +▁Mathematics -12.2277 +▁pilgrimage -12.2277 +filtration -12.2277 +▁swift -12.2278 +▁standardized -12.228 +▁Eurasian -12.228 +▁pseudonym -12.2283 +▁attendant -12.2286 +HR -12.2287 +▁$2 -12.2287 +▁Anglia -12.2288 +▁symmetry -12.2289 +zie -12.2289 +▁Zam -12.2291 +▁Natal -12.2291 +▁Kana -12.2292 +▁landfill -12.2293 +▁Olga -12.2293 +▁nursery -12.2293 +к -12.2295 +▁Dominique -12.2295 +patri -12.2295 +▁Plato -12.2297 +▁duel -12.2297 +▁Bench -12.2299 +▁Door -12.2299 +▁Dominion -12.2301 +▁cleaner -12.2301 +▁enamel -12.2307 +DD -12.2307 +▁promoter -12.2307 +▁liability -12.231 +▁acceleration -12.2313 +▁excerpt -12.2313 +▁identities -12.2313 +▁legislator -12.2313 +▁glacial -12.2313 +kò -12.2316 +▁Peck -12.2316 +▁Walton -12.2317 +▁Ludwig -12.2319 +▁hereditary -12.2319 +▁stimulation -12.2319 +▁petroleum -12.2319 +▁USSR -12.2321 +▁Watt -12.2321 +▁Alexandre -12.2323 +▁Judith -12.2325 +▁superb -12.2325 +▁Function -12.2325 +▁cleric -12.2326 +▁amended -12.2329 +▁torch -12.2331 +▁Teacher -12.2332 +jon -12.2333 +▁Perform -12.2334 +▁deception -12.2335 +▁battlecruiser -12.2335 +▁sewer -12.2336 +▁requesting -12.2336 +▁Habsburg -12.2336 +4) -12.2338 +▁100% -12.2338 +▁flux -12.2339 +▁motto -12.2339 +cock -12.234 +▁Orion -12.2341 +▁britanik -12.2342 +▁paternal -12.2342 +▁Nurse -12.2344 +▁blowing -12.2345 +▁pumping -12.2346 +▁Tap -12.2346 +blast -12.2348 +▁microscopic -12.2348 +▁Easy -12.2349 +▁imply -12.2349 +▁Regulation -12.2349 +zone -12.235 +▁Squad -12.235 +▁Casey -12.2351 +▁algebra -12.2354 +▁Lindsay -12.2355 +▁collided -12.2355 +▁rowing -12.2356 +▁Wilkinson -12.2356 +▁Payne -12.2356 +▁perennial -12.2358 +▁gifted -12.236 +▁kidnapped -12.2361 +▁Medina -12.2364 +▁incoming -12.2365 +▁Sitwèb -12.2366 +▁Atlas -12.2367 +ivist -12.2367 +uria -12.237 +▁unanimously -12.2371 +fran -12.2372 +lette -12.2373 +▁inclusive -12.2374 +lux -12.2374 +▁Tate -12.2375 +▁finishes -12.2376 +▁Sabin -12.2379 +▁Cub -12.2379 +▁136 -12.238 +glyph -12.2382 +▁dwell -12.2382 +Our -12.2383 +▁avenue -12.2385 +▁Sexual -12.2385 +▁reigning -12.2386 +▁Myers -12.2388 +▁suppose -12.2388 +▁Chap -12.239 +▁Borneo -12.2392 +BT -12.2393 +▁156 -12.2393 +▁addict -12.2394 +▁equator -12.2396 +▁Eminem -12.2397 +▁rematch -12.2397 +▁Macdonald -12.2403 +▁feasible -12.2403 +held -12.2403 +hausen -12.2404 +▁Chaplin -12.2404 +▁Clayton -12.2406 +▁Mitch -12.2407 +▁Lund -12.2407 +▁condemn -12.2408 +▁Bertrand -12.2409 +▁Marlborough -12.2409 +▁Patterson -12.2409 +▁Sarawak -12.2409 +▁Superior -12.2409 +▁mascot -12.2409 +▁complain -12.2409 +▁comparative -12.241 +▁Bedford -12.241 +▁nineteen -12.2411 +▁Fram -12.2411 +qi -12.2411 +▁Transylvania -12.2415 +▁stakeholders -12.2415 +government -12.2416 +▁Alec -12.2421 +▁encouragement -12.2423 +▁distraction -12.2424 +▁Salmon -12.2428 +▁148 -12.2428 +See -12.243 +▁Krusty -12.2433 +▁casino -12.2433 +▁localized -12.2433 +▁tile -12.2433 +▁gill -12.2433 +▁barometric -12.2434 +▁Novel -12.2434 +▁appropriately -12.2434 +raj -12.2434 +▁Bron -12.2435 +▁Masa -12.2435 +▁Jou -12.2435 +(1) -12.2435 +corp -12.2437 +▁Horizon -12.2439 +▁diffusion -12.2439 +▁sophomore -12.2439 +▁gonna -12.2439 +▁Gain -12.2439 +▁optional -12.244 +▁trunkline -12.2442 +▁enrich -12.2443 +giving -12.2444 +▁Delgado -12.2445 +▁Dante -12.2446 +▁Milne -12.2446 +▁underside -12.2448 +▁Canon -12.2449 +▁‐ -12.2451 +▁turkey -12.2451 +▁Smash -12.2451 +▁reintroduc -12.2451 +▁Pound -12.2452 +▁Valve -12.2452 +▁Beaver -12.2454 +▁stallion -12.2455 +▁sync -12.2455 +▁Vulcan -12.2457 +▁scr -12.2457 +▁Terminal -12.2457 +▁swarm -12.2457 +anza -12.2458 +▁Picard -12.2459 +▁travelers -12.246 +▁volunteered -12.246 +▁nowhere -12.246 +▁insulation -12.2462 +pressed -12.2462 +▁Except -12.2462 +▁stylistic -12.2463 +▁Hamm -12.2463 +▁Middleton -12.2464 +▁randomly -12.2466 +▁cosmetic -12.2469 +▁Bolshevik -12.2469 +▁Revival -12.2469 +▁enhancing -12.2469 +▁enlighten -12.2469 +▁semester -12.2469 +▁additive -12.247 +▁foam -12.2473 +PH -12.2478 +Gra -12.2479 +▁RCA -12.248 +▁Macedonia -12.2481 +▁Telescope -12.2481 +eval -12.2481 +▁Gel -12.2486 +▁unbeaten -12.2487 +▁Macbeth -12.2487 +▁dub -12.2487 +▁clutch -12.2487 +▁Luna -12.2487 +▁ribbon -12.2488 +▁assessing -12.2489 +▁tanker -12.249 +▁Writer -12.249 +▁215 -12.249 +▁1834 -12.2493 +▁Consumer -12.2493 +▁Slant -12.2494 +▁subjective -12.2495 +▁Diva -12.2495 +fel -12.2496 +▁Graf -12.2497 +breaker -12.2498 +imon -12.2498 +mala -12.2499 +forth -12.2499 +▁Dickinson -12.25 +▁Kawolin -12.25 +▁Dav -12.25 +▁Latino -12.2501 +iggs -12.2503 +▁splitting -12.2504 +▁Raf -12.2507 +▁convict -12.251 +▁Excel -12.2511 +▁Alcohol -12.2512 +▁inaccurate -12.2512 +▁optimize -12.2512 +▁neighbourhood -12.2512 +Connor -12.2514 +love -12.2514 +▁divert -12.2514 +▁Hubert -12.2515 +èz -12.2515 +▁IOC -12.2516 +▁Keynes -12.2521 +▁protector -12.2521 +▁peat -12.2523 +iente -12.2523 +ody -12.2526 +▁Coleman -12.2526 +▁lessen -12.2527 +▁Pratt -12.253 +▁153 -12.253 +▁communal -12.253 +▁Allison -12.2532 +▁Chrono -12.2535 +▁deprived -12.2535 +▁patriarch -12.2536 +▁Oswald -12.2536 +▁journalism -12.2536 +▁hypertension -12.2536 +▁Mina -12.2536 +▁expectation -12.2538 +▁1806 -12.254 +▁Ariel -12.2541 +▁congratulat -12.2542 +▁neat -12.2543 +▁Persia -12.2543 +bah -12.2544 +▁Sinai -12.2547 +▁convened -12.2548 +▁Paula -12.2549 +rach -12.2549 +▁accidental -12.255 +▁environmentally -12.2551 +▁Trou -12.2551 +▁Pomp -12.2554 +▁Offensive -12.2554 +▁Sergio -12.2555 +▁Amanda -12.2557 +▁Friend -12.2558 +▁Nut -12.256 +euil -12.256 +▁tributaries -12.2561 +kai -12.2561 +▁ingest -12.2562 +▁crying -12.2563 +▁Cove -12.2565 +▁Benson -12.2567 +▁Alta -12.2567 +▁deflect -12.2568 +▁Tale -12.257 +UL -12.2571 +▁Feeling -12.2571 +▁summarized -12.2571 +▁Salem -12.2572 +л -12.2573 +▁Kho -12.2573 +▁salad -12.2574 +AI -12.2574 +▁Subsequent -12.2574 +urban -12.2575 +bolic -12.2577 +▁periodically -12.2578 +▁Reverend -12.2579 +▁Peterson -12.2581 +▁HM -12.2585 +▁Guillaume -12.2585 +▁unfamiliar -12.2585 +ecki -12.2589 +▁concealed -12.259 +▁nucle -12.2591 +▁distorted -12.2594 +▁Platinum -12.2597 +▁Harald -12.2599 +▁Pitchfork -12.2604 +▁paradigm -12.2604 +▁influx -12.2604 +▁facade -12.2604 +▁rim -12.2604 +▁outlet -12.2608 +▁Rex -12.2608 +▁Psych -12.2608 +▁Brady -12.2608 +▁desanm -12.261 +▁Gaming -12.2612 +▁Confederation -12.2616 +▁hawk -12.2617 +▁fuse -12.2618 +▁Terre -12.2619 +▁CNN -12.2622 +▁Roc -12.2622 +▁rainforest -12.2622 +▁impending -12.2623 +graphy -12.2626 +▁1828 -12.2629 +▁bagay -12.2629 +track -12.263 +▁Aztec -12.263 +▁Standing -12.2632 +▁Vig -12.2633 +▁Nicaragua -12.2634 +▁prosecute -12.2635 +efficient -12.2635 +▁turbo -12.2636 +▁Bean -12.2637 +▁node -12.2637 +home -12.2637 +▁139 -12.2637 +▁Hipper -12.2637 +▁chronicler -12.2637 +▁Running -12.2637 +▁uncover -12.2638 +▁Martín -12.264 +▁Niagara -12.2641 +▁Equi -12.2643 +▁descending -12.2646 +▁ROK -12.2647 +▁Notable -12.2647 +▁1795 -12.2651 +-14 -12.2651 +▁174 -12.2653 +▁quarry -12.2653 +▁Chun -12.2656 +▁gram -12.2657 +▁simulate -12.2657 +▁obstacle -12.266 +▁Kerr -12.266 +▁drained -12.2663 +▁Tao -12.2663 +▁Paulo -12.2663 +▁communicating -12.2665 +▁dragged -12.2666 +▁Å -12.2667 +▁USAF -12.2669 +ı -12.2671 +▁transporting -12.2673 +▁Prem -12.2673 +▁Coke -12.2674 +▁Maritime -12.2674 +▁compile -12.2674 +▁Neville -12.2675 +zia -12.2677 +▁Potomac -12.2678 +▁Harriet -12.2678 +▁intrigue -12.2678 +▁kominote -12.2678 +▁pastor -12.2679 +VI -12.268 +▁Semi -12.2681 +▁Viol -12.2683 +▁Reconstruction -12.2684 +▁Wollstonecraft -12.2684 +▁imbalance -12.2684 +▁proclamation -12.2684 +▁renumbering -12.2684 +▁amidships -12.2684 +▁pledge -12.2684 +▁touches -12.2684 +jen -12.2685 +▁Qur -12.2689 +▁Shoot -12.2689 +▁spectacle -12.269 +▁spar -12.2692 +▁167 -12.2696 +▁encircle -12.2696 +▁truce -12.2696 +▁raft -12.2697 +▁maximize -12.2698 +-13 -12.2698 +▁Won -12.2698 +▁circum -12.2699 +▁stresses -12.27 +▁saturated -12.2701 +▁Honduras -12.2703 +▁Atomic -12.2703 +▁158 -12.2703 +▁Stor -12.2705 +▁reprinted -12.2705 +▁comparatively -12.2707 +▁Cartoon -12.2709 +▁Martínez -12.2709 +▁Biden -12.271 +▁Flint -12.271 +▁Hari -12.2711 +▁nationalism -12.2712 +▁Outer -12.2713 +▁owe -12.2715 +▁Bolivia -12.2715 +▁Doom -12.2715 +kirk -12.2718 +▁attackers -12.2719 +▁Morales -12.2721 +▁useless -12.2721 +▁Jurassic -12.2721 +▁Mozambique -12.2721 +▁humble -12.2722 +▁Janeiro -12.2722 +▁McCoy -12.2722 +▁evade -12.2722 +▁Hanover -12.2724 +▁prostate -12.2726 +σ -12.2727 +▁Ekriven -12.2727 +▁consonant -12.2727 +Paul -12.2728 +▁progressively -12.2729 +▁GB -12.2731 +▁rabbi -12.2731 +▁Recently -12.2732 +▁SG -12.2732 +▁Confederacy -12.2734 +▁envoy -12.2734 +▁avril -12.2734 +▁Mead -12.2738 +▁gateway -12.274 +▁Belfast -12.274 +opsis -12.274 +▁Macedonian -12.2744 +élé -12.2744 +▁Heather -12.2746 +isha -12.2746 +▁epithet -12.2746 +▁Rider -12.2747 +▁raiding -12.2747 +▁Biblical -12.2752 +▁cervical -12.2752 +▁flattened -12.2752 +▁Lana -12.2753 +▁stairs -12.2753 +▁Casino -12.2754 +▁1797 -12.2754 +▁prehistoric -12.2759 +▁pwodui -12.2759 +▁revisit -12.2759 +▁Ranger -12.2763 +▁assure -12.2764 +UM -12.2764 +▁uneven -12.2764 +▁Cherokee -12.2765 +▁IBM -12.2765 +▁(4) -12.2766 +▁Duran -12.2767 +▁interacting -12.277 +▁Solid -12.2771 +▁Nadu -12.2772 +▁contention -12.2774 +opus -12.2775 +▁booklet -12.2775 +▁Shankar -12.2776 +▁stole -12.2778 +scription -12.2778 +GM -12.2781 +▁occupant -12.2784 +▁squirrel -12.2784 +▁exposing -12.2784 +▁Legacy -12.2784 +▁Cyril -12.2784 +▁Prinz -12.2784 +▁steward -12.2785 +▁Bayern -12.2787 +▁Politics -12.279 +▁Publications -12.2794 +▁adolescent -12.2794 +open -12.2796 +▁Earlier -12.2796 +ambi -12.2798 +▁carbonate -12.2801 +▁Mik -12.2801 +▁Salford -12.2801 +▁lump -12.2802 +▁choreography -12.2802 +▁combustion -12.2802 +▁Batista -12.2802 +▁keel -12.2803 +▁Murder -12.2806 +▁psychiatrist -12.2809 +▁infamous -12.2809 +▁widened -12.281 +▁Feel -12.2813 +▁Moffat -12.2815 +▁ignite -12.2815 +▁scare -12.2816 +trust -12.2818 +▁Mud -12.282 +▁parasite -12.282 +▁McClellan -12.2821 +▁Resource -12.2822 +▁Loop -12.2823 +▁digestion -12.2824 +▁Nasser -12.2824 +▁emitted -12.2824 +▁Metallica -12.2828 +▁slash -12.2829 +▁Nicola -12.2831 +▁coconut -12.2834 +▁Aurora -12.2834 +▁succeeding -12.2834 +etto -12.2835 +▁Rescue -12.2835 +▁147 -12.2837 +▁sewage -12.284 +addy -12.284 +▁Stevenson -12.2843 +▁signaling -12.2844 +▁Istanbul -12.2846 +▁grateful -12.2846 +▁Elements -12.2847 +▁enrollment -12.2848 +▁Previously -12.2849 +▁classify -12.2849 +▁airplay -12.2849 +▁feudal -12.2855 +▁Effect -12.2857 +▁Fried -12.2857 +amphetamine -12.2859 +▁Amber -12.286 +▁catcher -12.2861 +▁Slow -12.2862 +▁Describe -12.2862 +▁tablet -12.2863 +▁swear -12.2865 +▁Davenport -12.2865 +▁adaptive -12.2866 +▁purity -12.2866 +▁pledged -12.2868 +▁experimentation -12.2868 +▁disguise -12.287 +▁Related -12.2872 +▁propelled -12.2872 +▁Plum -12.2872 +▁derive -12.2872 +▁escorting -12.2872 +▁Religious -12.2878 +▁Rip -12.2879 +▁Valle -12.2886 +▁kan -12.2887 +▁Canning -12.2887 +forest -12.289 +▁Llan -12.2892 +oscope -12.2893 +▁Thought -12.2894 +▁arising -12.2894 +▁enthusiast -12.2895 +▁Schneider -12.2897 +▁Guil -12.2897 +▁Smyth -12.2899 +▁Measure -12.2902 +▁rhetoric -12.2903 +▁hostility -12.2904 +▁Kawa -12.2905 +▁theorist -12.2906 +▁redesigned -12.2908 +▁nectar -12.291 +▁Cowboy -12.291 +▁Emerson -12.291 +IST -12.2911 +▁unanimous -12.2912 +▁fishes -12.2914 +RF -12.2915 +ENT -12.2916 +lach -12.2918 +▁Burma -12.292 +river -12.292 +▁speculate -12.2921 +idio -12.2923 +▁turnover -12.2924 +▁Clair -12.2927 +▁Epstein -12.2929 +▁pulmonary -12.2929 +▁disgust -12.2929 +▁Orient -12.2929 +▁orijin -12.2929 +LT -12.293 +▁Godwin -12.293 +▁committing -12.2932 +▁Fell -12.2933 +▁undermine -12.2934 +▁priv -12.2934 +▁compressed -12.2935 +▁Judaism -12.2935 +▁chemotherapy -12.2935 +▁pending -12.2936 +▁Example -12.2936 +▁mistress -12.2936 +▁1600 -12.2938 +▁manoeuvre -12.2938 +▁angered -12.2938 +▁Tibetan -12.294 +▁commuter -12.2941 +▁Target -12.2943 +▁NES -12.2943 +▁wander -12.2945 +▁aisle -12.2946 +bru -12.2946 +psych -12.2946 +bag -12.2948 +▁Scandinavian -12.2948 +▁Crowley -12.2951 +▁Rica -12.2952 +▁Cooke -12.2953 +▁Lemon -12.2953 +▁corrosion -12.2954 +▁relinquish -12.2954 +▁sci -12.2954 +▁Sioux -12.2955 +▁leverage -12.2956 +▁warship -12.2956 +▁Constitutional -12.2957 +▁Concept -12.2957 +▁kite -12.2957 +enthal -12.2957 +▁customary -12.2961 +▁concussion -12.2961 +▁scrutiny -12.2961 +▁undoubtedly -12.2961 +▁strikeouts -12.2961 +▁Kala -12.2961 +▁Gut -12.2962 +UT -12.2963 +aceous -12.2964 +▁wield -12.2967 +litz -12.2967 +▁indulge -12.2967 +hari -12.2968 +▁Pride -12.2969 +▁1816 -12.2969 +▁hardest -12.2972 +▁Fiji -12.2973 +▁gunnery -12.2973 +after -12.2973 +▁fifteenth -12.2974 +4,000 -12.298 +▁203 -12.2981 +vous -12.2984 +▁regeneration -12.2986 +▁arbitrary -12.2986 +▁lavish -12.2986 +▁slug -12.2987 +▁Canton -12.2988 +sheet -12.2988 +amus -12.2989 +▁Christophe -12.2991 +ς -12.2992 +▁Mauritius -12.2992 +▁innocence -12.2992 +▁occupies -12.2992 +▁Regina -12.2993 +▁monastic -12.2993 +▁154 -12.2994 +▁null -12.2994 +▁famine -12.2995 +oloji -12.2995 +▁Discover -12.2997 +▁Brest -12.2998 +▁Hepburn -12.2999 +▁Drop -12.3002 +phonic -12.3004 +▁punished -12.3004 +▁Ö -12.3004 +▁acquaintance -12.3005 +▁fission -12.3005 +▁Eddy -12.3005 +▁Jerome -12.3006 +▁detailing -12.3006 +▁Pent -12.3006 +▁Lore -12.3007 +▁340 -12.3009 +▁Deco -12.3011 +▁pioneering -12.3011 +▁177 -12.3011 +▁telenovela -12.3012 +▁anterior -12.3012 +▁slab -12.3013 +▁Thé -12.3015 +▁facilitated -12.3015 +▁apology -12.3015 +▁commentator -12.3016 +▁275 -12.3017 +▁Rodgers -12.3018 +▁coarse -12.3019 +▁allusion -12.3022 +▁opioid -12.3025 +▁deviation -12.3025 +▁Becket -12.3025 +▁Calder -12.3027 +through -12.3028 +naut -12.3029 +▁Nice -12.3031 +▁Tibet -12.3033 +▁obstruct -12.3033 +▁operative -12.3036 +▁microwave -12.3038 +▁Eduardo -12.3039 +▁bald -12.304 +▁GPS -12.3042 +▁spokesperson -12.3044 +▁coherent -12.305 +▁fined -12.3051 +▁Rotten -12.3051 +▁Fortress -12.3052 +▁Gateway -12.3053 +That -12.3054 +▁Berk -12.3054 +▁quiz -12.3055 +▁broadcaster -12.3055 +▁bot -12.3056 +▁Anatomy -12.3057 +▁Elephant -12.3057 +▁Refuge -12.3057 +▁longitudinal -12.3057 +▁assurance -12.3057 +▁drastically -12.3057 +▁Suffolk -12.3063 +▁diffuse -12.3063 +▁Architecture -12.3064 +▁socialism -12.3066 +▁Corona -12.3069 +▁adjective -12.307 +▁postseason -12.3071 +▁Sacramento -12.3072 +▁Jules -12.3074 +▁Phys -12.3074 +▁Whilst -12.3076 +▁Faust -12.308 +▁Elena -12.3084 +quant -12.3087 +▁undergone -12.3088 +▁bombed -12.3088 +▁receipt -12.3089 +▁rift -12.309 +▁emulate -12.3092 +▁Como -12.3093 +▁draught -12.3095 +▁Fortunately -12.3095 +▁switches -12.3095 +▁distracted -12.3096 +▁ODI -12.3096 +▁reflective -12.3097 +▁abolition -12.3097 +▁Megan -12.31 +▁Polo -12.31 +⁄ -12.31 +▁Saskatchewan -12.3102 +▁foil -12.3102 +▁Drum -12.3102 +▁Reach -12.3102 +▁Nordic -12.3103 +▁VHS -12.3104 +▁Chronic -12.3104 +▁scream -12.3104 +▁redevelopment -12.3106 +▁Activity -12.3106 +▁143 -12.3106 +▁destined -12.3108 +▁gratitude -12.3108 +▁plunder -12.3109 +▁remarkably -12.3109 +▁injected -12.3109 +▁conifer -12.311 +▁mourn -12.3111 +▁Hansen -12.3112 +▁Bring -12.3115 +▁Buchanan -12.3115 +▁Daughter -12.3115 +▁Ahmed -12.3116 +▁screenwriter -12.3116 +number -12.3116 +▁substituted -12.3117 +▁Engine -12.3118 +scope -12.3118 +Sha -12.3118 +▁renewal -12.3121 +▁Sustainable -12.3121 +▁genocide -12.3121 +▁161 -12.3122 +▁mom -12.3122 +eastern -12.3122 +▁NWA -12.3122 +▁Gillian -12.3124 +▁1818 -12.3125 +▁Yoga -12.3125 +▁poultry -12.3128 +▁MRI -12.3128 +▁NK -12.3131 +▁Elle -12.3132 +▁Geoff -12.3133 +▁Baroque -12.3134 +lapse -12.3137 +▁157 -12.3138 +▁densely -12.3139 +▁Bram -12.314 +▁objection -12.314 +▁kindergarten -12.3141 +▁tsunami -12.3141 +▁courtesy -12.3141 +▁tentative -12.3142 +▁descendant -12.3142 +endi -12.3146 +▁Activities -12.3147 +▁certainty -12.3149 +▁chiefly -12.3149 +▁Georgie -12.3153 +▁reconciliation -12.3154 +▁survivor -12.3154 +fli -12.3154 +▁whisk -12.3154 +▁Organisation -12.3154 +lington -12.3155 +▁Copper -12.3156 +▁Released -12.3156 +▁sweeping -12.3156 +▁NHC -12.3158 +▁potato -12.3161 +▁Clinic -12.3165 +▁Wilmington -12.3167 +▁unite -12.3167 +▁shipment -12.317 +▁Hartford -12.317 +westerly -12.3172 +▁archaeology -12.3173 +▁unavailable -12.3173 +present -12.3174 +▁storyboard -12.3175 +▁lust -12.3175 +phus -12.3177 +▁skeletal -12.318 +▁fumble -12.3181 +▁Claudia -12.3186 +▁sponsorship -12.3188 +▁Chair -12.319 +▁veil -12.319 +gong -12.319 +▁Sava -12.3191 +▁Jaw -12.3192 +▁Confession -12.3193 +▁admiration -12.3193 +▁oktòb -12.3193 +▁Talbot -12.3193 +▁mutant -12.3194 +▁Gilles -12.3194 +▁buzz -12.3195 +ubi -12.3195 +▁Doyle -12.3195 +▁arteries -12.3196 +▁advertised -12.3198 +▁insane -12.3199 +▁boiling -12.3199 +▁Lanmò -12.3199 +▁appliance -12.3199 +▁Therapy -12.3199 +▁Yellowstone -12.32 +physiology -12.3202 +hoff -12.3202 +▁cannabis -12.3206 +▁curiosity -12.3206 +▁Punjab -12.3206 +▁posterior -12.3206 +controlled -12.3212 +▁confiscated -12.3212 +▁slap -12.3213 +▁Weaver -12.3213 +▁seismic -12.3214 +▁federation -12.3219 +▁butterflies -12.3219 +▁Taunton -12.3219 +▁detained -12.3219 +location -12.322 +▁Vega -12.3222 +▁Hermann -12.3223 +▁Oriental -12.3224 +income -12.3225 +▁Vickers -12.3225 +▁Rwanda -12.3226 +▁transforming -12.3226 +▁stipe -12.3228 +▁disposition -12.3228 +▁skeptical -12.323 +▁resilience -12.3232 +▁formidable -12.3232 +▁Kombat -12.3232 +▁characterize -12.3232 +▁Hornet -12.3237 +▁Slovenia -12.3239 +▁Voyage -12.3239 +▁Address -12.324 +▁raven -12.3242 +▁cocaine -12.3245 +▁midfielder -12.3245 +▁Session -12.3245 +▁Weiss -12.3245 +▁Carmel -12.3247 +▁confer -12.3249 +▁fransèz -12.3252 +logue -12.3253 +▁recess -12.3256 +▁Clifton -12.3258 +▁Flotilla -12.3258 +▁Khmer -12.3258 +▁Severe -12.3259 +▁Ronnie -12.3259 +▁Timor -12.3259 +▁litre -12.326 +▁Scarlet -12.326 +▁overrun -12.326 +mata -12.326 +▁esteem -12.326 +▁spun -12.3262 +▁guarded -12.3263 +▁Corb -12.3265 +▁Himmler -12.3265 +▁inexpensive -12.3265 +▁eroded -12.3265 +▁Khal -12.3269 +Ph -12.327 +▁improvised -12.327 +ordinate -12.327 +▁Earp -12.327 +gastrointestinal -12.3271 +▁clarify -12.3271 +▁STEM -12.3272 +▁Improve -12.3272 +▁Meet -12.3276 +▁Hogan -12.3277 +▁Counsel -12.3278 +▁monasteries -12.3278 +▁sticky -12.328 +▁glacier -12.3281 +▁290 -12.3281 +▁hut -12.3283 +▁Spark -12.3284 +▁Crete -12.3285 +▁meadow -12.3285 +▁Hassett -12.3285 +▁Progressive -12.3287 +▁Holl -12.3288 +▁Dress -12.329 +▁Kashmir -12.3291 +▁feminine -12.3291 +▁Omega -12.3291 +▁allergy -12.3291 +▁righteous -12.3291 +VR -12.3293 +▁fearing -12.3293 +▁Capt -12.3293 +▁Elsa -12.3294 +▁departing -12.3294 +▁Reef -12.3297 +▁perpendicular -12.3298 +▁clarity -12.3298 +▁savage -12.3298 +▁Tribe -12.3298 +▁Demon -12.3299 +azza -12.33 +▁Audio -12.3302 +▁flute -12.3302 +▁outages -12.3305 +Gen -12.3306 +▁Samantha -12.3311 +▁septanm -12.3311 +▁Sikh -12.3315 +▁Nobody -12.3315 +▁satirical -12.3317 +▁plume -12.3319 +bug -12.332 +west -12.3321 +▁Homo -12.3321 +▁Rowland -12.3322 +▁migrated -12.3323 +▁legitimacy -12.3324 +▁Nassau -12.3324 +▁proceeding -12.3325 +▁toddler -12.3325 +▁Zack -12.3328 +▁Ebert -12.3329 +▁injustice -12.3331 +▁Northwestern -12.3331 +▁20% -12.3335 +interpret -12.3337 +▁Response -12.3337 +▁circulating -12.3337 +typical -12.3337 +▁Explain -12.3338 +▁Purana -12.334 +▁erupt -12.3344 +▁aluminium -12.3344 +▁engraving -12.3344 +▁murderer -12.3344 +ç -12.3345 +▁Rebel -12.3345 +▁Toll -12.3347 +éné -12.3348 +▁vegetarian -12.3351 +▁Waterloo -12.3352 +▁regulator -12.3353 +▁1700 -12.3354 +▁Portrait -12.3357 +▁unpleasant -12.3357 +▁Devi -12.3358 +▁plagued -12.336 +▁commemorated -12.336 +▁Torah -12.3362 +▁Kerry -12.3364 +▁Bonnie -12.3364 +• -12.3364 +▁deserted -12.3366 +Book -12.3366 +▁shocking -12.3368 +▁Mariah -12.3369 +▁deterioration -12.337 +▁Teresa -12.3371 +▁spelled -12.3371 +▁disid -12.3371 +nitz -12.3372 +▁heroin -12.3372 +▁abnormalities -12.3372 +▁coefficient -12.3372 +▁Travis -12.3372 +ethyl -12.3373 +▁§ -12.3376 +▁Hang -12.3376 +▁Approach -12.3377 +▁Inspector -12.3377 +▁replenish -12.3377 +▁charming -12.3377 +▁silly -12.3379 +▁mesh -12.3379 +▁halo -12.338 +2018 -12.3381 +▁cutter -12.3382 +▁corrected -12.3383 +▁ITV -12.3384 +▁ACT -12.3386 +▁terra -12.3386 +▁comedic -12.3386 +▁phosphate -12.339 +▁renovated -12.339 +▁strap -12.3392 +AY -12.3397 +▁statutory -12.3397 +▁synthesized -12.3398 +▁Specifically -12.3398 +▁Dodd -12.3398 +▁abruptly -12.3399 +▁Passion -12.3402 +flam -12.3403 +▁interrupt -12.3403 +▁curl -12.3404 +▁Matematik -12.3404 +▁Glu -12.3405 +▁Gilli -12.3405 +▁Brill -12.3406 +ción -12.3406 +▁thigh -12.3406 +▁Seg -12.3406 +▁Golf -12.3407 +▁Kru -12.3408 +check -12.3409 +▁cleaned -12.3409 +▁encompasses -12.341 +▁memoir -12.341 +▁Lakers -12.341 +▁Bonaparte -12.341 +▁Garrett -12.341 +▁Pyramid -12.341 +▁smallpox -12.341 +▁Jenkins -12.3411 +▁Hawke -12.3411 +▁Léon -12.3411 +▁agreeing -12.3411 +▁wildfire -12.3412 +▁Mora -12.3412 +▁Vine -12.3413 +▁glee -12.3415 +moral -12.3416 +▁soluble -12.3417 +▁flotilla -12.3417 +▁Button -12.3417 +▁overlapping -12.3419 +▁Dental -12.3419 +▁renew -12.3422 +▁grav -12.3423 +▁Tomatoes -12.3424 +▁rupture -12.3424 +▁authenticity -12.343 +▁CPU -12.3432 +▁Thu -12.3435 +▁Judy -12.3435 +▁Industries -12.3437 +▁succumb -12.3437 +▁forthcoming -12.3437 +▁310 -12.3438 +▁Landmark -12.3439 +▁incorrectly -12.3439 +▁Commando -12.344 +▁principally -12.3443 +▁Pilgrim -12.3444 +▁Ulysses -12.3444 +▁amplifier -12.3444 +▁ignorance -12.3444 +éra -12.3446 +▁crafted -12.3447 +atsu -12.3448 +▁inspector -12.3449 +▁RAR -12.3449 +▁polio -12.3449 +▁Architect -12.345 +▁1803 -12.3451 +▁Dent -12.3452 +▁Nur -12.3452 +▁marvel -12.3454 +▁Saka -12.3455 +▁Neal -12.3457 +▁ordinance -12.3457 +▁saliva -12.3457 +wheel -12.3458 +▁Braun -12.3458 +▁phosphorus -12.346 +▁Zion -12.346 +▁polished -12.3461 +▁Liberation -12.3462 +▁sponge -12.3464 +▁dread -12.3465 +▁chasing -12.3467 +ceive -12.3468 +utobiographical -12.3471 +▁Vaughan -12.3471 +▁nitrate -12.3471 +▁Apache -12.3471 +▁formulation -12.3472 +speed -12.3473 +▁coloration -12.3475 +▁porch -12.3476 +▁Grin -12.3477 +▁Ambrose -12.3477 +▁Thirteen -12.3477 +stress -12.3478 +▁scary -12.3478 +▁jiyè -12.3478 +▁Trojan -12.3478 +genetic -12.3478 +▁notified -12.3479 +▁transcript -12.3479 +▁plas -12.3482 +▁secretion -12.3483 +▁Mesopotamia -12.3484 +▁adjoining -12.3484 +▁eminent -12.3484 +▁Lyrical -12.3485 +▁greed -12.3485 +▁harassment -12.3486 +▁divin -12.3488 +▁hinder -12.3488 +▁fused -12.3489 +▁Zan -12.349 +▁Spit -12.349 +▁invertebrates -12.3494 +▁Clause -12.3496 +▁discouraged -12.3497 +▁Kitchen -12.3498 +▁redesignated -12.3498 +▁exempt -12.3499 +▁cab -12.3501 +▁Contra -12.3501 +▁Rural -12.3504 +▁beautifully -12.3504 +▁Continue -12.3504 +▁flavour -12.3504 +▁headquartered -12.3504 +▁multitude -12.3504 +▁schizophrenia -12.3504 +▁smuggle -12.3504 +▁Savoy -12.3505 +▁sampled -12.3505 +rash -12.3507 +▁1791 -12.3509 +▁Gad -12.3509 +▁Higgins -12.3511 +▁Byrne -12.3511 +▁oppression -12.3511 +▁forehead -12.3512 +holm -12.3512 +▁Boer -12.3519 +▁rumor -12.352 +▁Royalist -12.352 +▁foreigners -12.3521 +▁minus -12.3524 +▁rendezvous -12.3524 +▁Auckland -12.3524 +▁gentleman -12.3525 +▁Specific -12.3526 +▁contradiction -12.3527 +▁encode -12.3528 +▁epidemi -12.3528 +▁orbiting -12.3528 +▁Atlantis -12.3531 +▁Camaguey -12.3531 +▁despair -12.3531 +▁ultraviolet -12.3531 +▁raided -12.3532 +▁Connor -12.3532 +▁footballer -12.3534 +▁chased -12.3534 +▁Topic -12.3537 +▁communism -12.3538 +▁glimpse -12.3538 +▁Prevent -12.354 +▁Clar -12.354 +▁Fortune -12.3541 +▁ethno -12.3541 +ECT -12.3543 +▁Burr -12.3543 +▁HR -12.3543 +▁PopMatters -12.3545 +▁Scripture -12.3545 +▁excellence -12.3545 +cology -12.3546 +▁Arbor -12.3547 +▁HBO -12.3548 +Donnell -12.3549 +▁Cash -12.3551 +rrington -12.3551 +▁Elsewhere -12.3551 +▁Fourteen -12.3551 +▁storing -12.3554 +▁Healthy -12.3557 +▁retaliation -12.3558 +▁prairie -12.3558 +▁commissioning -12.3559 +▁1796 -12.356 +▁hike -12.356 +▁1827 -12.3561 +▁Marseille -12.3565 +▁Feb -12.3567 +▁kickoff -12.3568 +▁tenor -12.3568 +▁Plateau -12.3569 +chroma -12.357 +▁affiliation -12.3572 +▁ratified -12.3573 +mack -12.3578 +▁relevance -12.3579 +▁multiply -12.3579 +bler -12.358 +▁hover -12.3583 +▁mourning -12.3583 +pool -12.3584 +▁Minh -12.3585 +▁Stéphane -12.3585 +▁USDA -12.3586 +2010 -12.3587 +▁voter -12.3591 +η -12.3592 +▁blessed -12.3592 +▁pedal -12.3596 +▁realization -12.3598 +▁Grad -12.3598 +▁Meteor -12.3599 +▁Panel -12.3599 +▁brightness -12.3603 +▁Karnataka -12.3606 +▁nightclub -12.3606 +▁unwanted -12.3606 +done -12.3606 +▁Chopra -12.3606 +▁Explorer -12.3608 +▁π -12.3611 +▁Forrest -12.3611 +▁Trap -12.3612 +▁commemorative -12.3613 +▁Tunisia -12.3613 +▁Meadow -12.3613 +▁Mask -12.3618 +▁Peel -12.3619 +▁eligibility -12.3619 +▁intestinal -12.3619 +érie -12.362 +▁Mystery -12.362 +▁scrub -12.362 +▁Buzz -12.3621 +▁Used -12.3622 +▁retrieved -12.3623 +▁610 -12.3625 +▁cooled -12.3626 +▁attaining -12.3627 +▁daytime -12.3631 +sound -12.3632 +▁crocodile -12.3633 +▁sanitation -12.3633 +▁societal -12.3633 +▁soprano -12.3633 +▁originating -12.3634 +▁mammal -12.3635 +▁Lamp -12.3637 +▁installing -12.3638 +▁analytical -12.3639 +▁Avatar -12.364 +▁marshal -12.364 +▁Cartman -12.364 +▁Kitty -12.3643 +▁berries -12.3646 +▁vibrant -12.3647 +▁Saigon -12.3647 +▁Purple -12.3647 +▁Walking -12.3649 +▁bombard -12.3649 +nose -12.3651 +▁deposed -12.3653 +▁Vu -12.3653 +▁maple -12.3654 +▁neutrality -12.3656 +▁1826 -12.3657 +▁drowning -12.3658 +▁ejected -12.3658 +▁Hoy -12.3659 +▁silt -12.3659 +▁catchy -12.366 +▁syndicate -12.366 +▁empathy -12.3661 +▁transverse -12.3661 +▁jewelry -12.3662 +▁Choose -12.3663 +▁reluctantly -12.3664 +▁thunderstorm -12.3666 +▁Pagan -12.3667 +▁sexy -12.3671 +▁Emil -12.3672 +▁Navigation -12.3674 +▁Vampire -12.3674 +▁infiltrate -12.3674 +▁Frankfurt -12.3674 +▁novanm -12.3674 +▁workout -12.3675 +neck -12.3678 +▁dots -12.368 +atum -12.368 +▁ammonia -12.3681 +dev -12.3681 +▁invading -12.3681 +▁dad -12.3681 +▁Afrik -12.3685 +▁Laurie -12.3686 +▁Resistance -12.3688 +▁subdivision -12.3688 +▁AAA -12.369 +▁crow -12.3693 +▁criticize -12.3693 +▁penetration -12.3695 +▁predation -12.3695 +^ -12.3696 +▁FOR -12.3697 +▁saddle -12.3697 +▁440 -12.3699 +ş -12.3701 +▁gunpowder -12.3701 +▁implicit -12.3701 +▁candy -12.3702 +▁clinch -12.3702 +valuation -12.3703 +▁endure -12.3703 +▁Crist -12.3704 +▁Visitor -12.3704 +trial -12.3706 +▁herbal -12.3706 +▁File -12.3706 +▁Archaeological -12.3708 +▁Cyprus -12.3708 +▁Felipe -12.3708 +▁cortex -12.3708 +▁prevailed -12.3709 +▁Rho -12.3712 +▁Companion -12.3715 +▁Armoured -12.3715 +▁Mama -12.3717 +▁Whitehead -12.3719 +▁Sap -12.3719 +▁reinforcement -12.3719 +▁Phelps -12.3722 +▁snout -12.3722 +▁Kerala -12.3723 +▁Rabbit -12.3723 +▁utterly -12.3723 +▁Craft -12.3724 +▁insistence -12.3724 +▁breakaway -12.3725 +▁resin -12.3727 +▁organizational -12.3729 +▁aforementioned -12.3736 +Italia -12.3739 +▁Dion -12.374 +▁curb -12.3742 +▁Contreras -12.3743 +▁blond -12.3743 +▁Lowell -12.3744 +▁mitochondrial -12.3745 +otto -12.3745 +current -12.3747 +▁skier -12.3748 +▁lame -12.3748 +▁Cele -12.3749 +▁playwright -12.375 +aldo -12.375 +▁nightmare -12.375 +trap -12.375 +▁imprint -12.375 +acci -12.3751 +▁wrecked -12.3755 +▁deeds -12.3755 +▁Occupation -12.3756 +▁Uruguay -12.3756 +▁Eccles -12.3756 +▁Saffir -12.3756 +▁supermarket -12.3757 +▁Cruise -12.3759 +▁moss -12.3761 +▁bamboo -12.3763 +▁confluence -12.3763 +▁exercising -12.3763 +▁Seal -12.3765 +▁dismay -12.3765 +▁Algeria -12.3765 +▁Finch -12.3767 +▁commence -12.3768 +▁Bower -12.3769 +opods -12.3769 +▁tattoo -12.377 +▁outnumbered -12.377 +▁Toyota -12.377 +▁Mongolia -12.3771 +biology -12.3772 +▁imposing -12.3777 +dependent -12.3779 +crypt -12.3779 +▁Score -12.378 +▁predominant -12.378 +▁Salon -12.3781 +▁equip -12.3782 +▁Begin -12.3784 +▁hiking -12.3786 +gawa -12.3786 +cule -12.379 +▁utilise -12.3792 +▁parameter -12.3793 +▁manually -12.3794 +▁reconstruct -12.3796 +▁meso -12.3796 +▁Hoover -12.3796 +▁Goes -12.3796 +▁Equal -12.3797 +▁traveller -12.3798 +▁roam -12.3798 +▁Autumn -12.3798 +▁Observation -12.3798 +▁taxonomic -12.3798 +▁Ricky -12.3805 +▁Bohemia -12.3805 +▁marrying -12.3806 +▁Edith -12.3806 +▁hoist -12.3807 +▁Stress -12.3809 +▁cub -12.381 +▁Thom -12.381 +▁Strategic -12.3812 +▁comrade -12.3812 +▁detrimental -12.3818 +▁Sosyete -12.3819 +▁Wenger -12.382 +▁Parade -12.3821 +▁Carlisle -12.3826 +▁Odin -12.3826 +▁analogous -12.3828 +▁Pipe -12.3831 +▁Dodge -12.3831 +▁POW -12.3832 +đ -12.3833 +▁PMID -12.3833 +▁obese -12.3834 +▁206 -12.3836 +▁Circus -12.3837 +▁freighter -12.3838 +cross -12.3838 +▁Provincial -12.384 +् -12.384 +▁mare -12.384 +▁Triangle -12.384 +▁enhancement -12.3841 +:30 -12.3842 +imer -12.3845 +▁vassal -12.3847 +▁Dubai -12.3848 +uku -12.3848 +▁quicker -12.3848 +ALL -12.3851 +▁Blond -12.3852 +ivism -12.3852 +unch -12.3852 +▁Haitian -12.3853 +▁imitation -12.3854 +▁2.5 -12.3856 +▁NJ -12.3857 +▁Franc -12.3858 +▁Sham -12.3859 +▁Whedon -12.3861 +▁dilemma -12.3861 +▁zombie -12.3861 +▁fungal -12.3863 +modern -12.3864 +▁preferring -12.3864 +▁fashioned -12.3864 +▁Alexis -12.3867 +▁intriguing -12.3868 +▁formulated -12.3868 +▁yellowish -12.3869 +▁shaping -12.387 +▁photographic -12.387 +▁mangrove -12.387 +drop -12.3871 +▁vertically -12.3873 +▁Sheet -12.3874 +▁gull -12.3874 +▁Share -12.3874 +▁Groening -12.3876 +▁experimented -12.3876 +▁ripe -12.3881 +▁Baghdad -12.3881 +▁Syndrome -12.3881 +▁Sora -12.3884 +rgic -12.3884 +▁Didier -12.3884 +phr -12.3885 +filled -12.3886 +▁Clifford -12.3889 +▁subway -12.3891 +▁1777 -12.3892 +▁Thereafter -12.3892 +▁178 -12.3892 +▁bait -12.3893 +▁Keller -12.3894 +powered -12.3894 +▁100,000 -12.3895 +▁196 -12.3896 +▁Flynn -12.3896 +▁taxa -12.3902 +▁reactive -12.3902 +▁domination -12.3905 +lateral -12.3905 +▁Soft -12.3906 +▁violate -12.3909 +▁Leone -12.3909 +▁botanist -12.391 +▁transistor -12.391 +▁affinity -12.391 +▁Workshop -12.391 +▁edisyon -12.391 +▁1808 -12.3911 +hé -12.3911 +▁Flora -12.3913 +rub -12.3915 +▁Buffy -12.3917 +abilities -12.3919 +amma -12.3919 +wara -12.392 +▁earnest -12.3922 +▁182 -12.3926 +▁alkali -12.3927 +▁390 -12.3928 +▁Norris -12.3929 +gill -12.3929 +▁Rubin -12.393 +▁erroneous -12.3931 +▁Protein -12.3931 +▁graded -12.3931 +▁Cain -12.3932 +▁Rud -12.3935 +▁Waugh -12.3935 +▁authorised -12.3937 +▁fraternity -12.3938 +▁undefeated -12.3938 +▁skating -12.3938 +▁Virgil -12.3938 +▁Thy -12.3939 +coat -12.394 +▁Odd -12.3943 +▁evaluating -12.3945 +▁incorporation -12.3945 +COM -12.3946 +▁Gala -12.3948 +metal -12.3949 +** -12.3951 +▁negotiating -12.3952 +▁baseline -12.3952 +▁trailing -12.3954 +▁poisonous -12.3955 +▁Nichols -12.3956 +▁investing -12.3958 +/4 -12.396 +glu -12.3961 +▁Guru -12.3963 +▁Collier -12.3963 +▁Josef -12.3963 +▁pitches -12.3964 +▁Tail -12.3965 +▁sour -12.3965 +▁201 -12.3966 +▁Stafford -12.3966 +▁wondered -12.3968 +▁Romance -12.3969 +▁Normal -12.3971 +▁Militia -12.3973 +▁galleries -12.3973 +▁uphold -12.3974 +▁camel -12.3978 +▁internally -12.3979 +▁duke -12.398 +▁niece -12.398 +▁Peng -12.3982 +DNA -12.3983 +▁minefield -12.3984 +▁Vehicle -12.3987 +▁shrimp -12.3987 +▁hedge -12.3988 +▁Fanny -12.399 +▁dwe -12.3991 +▁1811 -12.3992 +▁Cochrane -12.3994 +▁Batavia -12.3995 +hydrate -12.3999 +▁char -12.4 +▁substitution -12.4001 +▁musket -12.4001 +▁awesome -12.4001 +▁brace -12.4001 +▁Yong -12.4007 +▁Lung -12.4008 +▁prefix -12.4008 +▁sworn -12.4008 +▁Mecca -12.401 +▁legion -12.401 +▁Minaj -12.4012 +▁fourteenth -12.4012 +▁programmed -12.4014 +▁diabetic -12.4015 +▁Domestic -12.4015 +nip -12.4016 +▁Exhibition -12.4016 +▁Toby -12.4026 +▁profess -12.4026 +▁Michele -12.4028 +▁doorway -12.4028 +unconstitutional -12.4029 +▁Malagasy -12.4029 +▁repel -12.403 +▁Leno -12.403 +▁Melissa -12.403 +▁intentional -12.4036 +γ -12.4036 +▁Satellite -12.4036 +▁multiplication -12.4037 +▁ozone -12.4038 +▁Kamp -12.4041 +▁comprehension -12.4044 +▁Signal -12.4051 +▁Episcopal -12.4051 +▁Harlem -12.4052 +▁allocation -12.4052 +▁culturally -12.4057 +▁bucket -12.4058 +▁heightened -12.4058 +▁pleaded -12.4058 +rff -12.4059 +May -12.406 +▁Pure -12.4064 +(2) -12.4064 +▁Malone -12.4064 +▁1823 -12.4065 +▁Fei -12.4067 +▁Czechoslovakia -12.4068 +▁Russo -12.4068 +▁Push -12.4068 +▁tally -12.4071 +▁Revenge -12.4072 +ˈ -12.4076 +▁dungeon -12.4079 +▁Sakura -12.4079 +▁Barney -12.408 +▁chaotic -12.408 +▁Julio -12.408 +▁slipped -12.4081 +▁worsened -12.4082 +▁Zhu -12.4083 +park -12.4084 +▁inaugurated -12.4086 +▁precipitate -12.4086 +▁barred -12.4087 +▁delta -12.4088 +▁Simone -12.4089 +▁ninety -12.409 +▁Erlewine -12.4093 +pec -12.4094 +▁Acid -12.4098 +▁Scheer -12.4098 +▁laboratories -12.4101 +▁Shepard -12.4101 +▁Demo -12.4103 +▁Napoleonic -12.4107 +▁Réunion -12.4108 +▁symphony -12.4108 +▁incurred -12.4108 +▁Christie -12.4109 +▁Williamson -12.411 +▁redeem -12.4111 +▁poured -12.4111 +▁directive -12.4114 +▁Regent -12.4115 +▁VH -12.4115 +▁Mycena -12.4115 +▁Sabre -12.4118 +normal -12.4119 +lima -12.4121 +▁Trondheim -12.4122 +▁Coin -12.4122 +▁theologian -12.4123 +▁Nicol -12.4125 +▁Avery -12.4127 +▁Glastonbury -12.4129 +▁Jarrett -12.4129 +▁Sheridan -12.4129 +▁fortunate -12.4129 +wire -12.413 +vertebrate -12.413 +▁verified -12.413 +▁filmmaker -12.4131 +▁drifted -12.4131 +▁brighter -12.4132 +chrome -12.4133 +▁640 -12.4134 +▁Molina -12.4134 +iš -12.4134 +▁Bollywood -12.4136 +▁migraine -12.4136 +▁imperative -12.4136 +▁unused -12.4137 +map -12.4138 +▁Slavic -12.4139 +▁Huron -12.414 +▁Vista -12.414 +▁migratory -12.4144 +▁prosperous -12.4144 +▁Wessex -12.4144 +▁duplicate -12.4144 +▁hanged -12.4149 +▁translator -12.4151 +▁Cascade -12.4151 +▁microbes -12.4151 +▁sociology -12.4151 +▁unfortunate -12.4154 +▁widening -12.4158 +▁vascular -12.4158 +▁Vettel -12.4158 +▁counseling -12.4158 +▁chalk -12.4159 +▁Johannes -12.416 +zur -12.4164 +▁unhealthy -12.4165 +▁awful -12.4165 +▁choral -12.4169 +▁lonely -12.4171 +▁compliment -12.4172 +▁propagate -12.4172 +▁liquor -12.4172 +▁Privy -12.4173 +▁viewership -12.4174 +▁Hereford -12.4175 +2015 -12.4176 +▁Maker -12.4176 +▁Charge -12.4178 +▁Bomber -12.4178 +▁Lorenzo -12.4178 +▁Invest -12.4179 +▁Baba -12.4179 +▁credibility -12.4179 +!" -12.4181 +▁overdose -12.4182 +▁favorably -12.4182 +▁Bolt -12.4182 +inflammatory -12.4184 +▁conced -12.4186 +▁Montenegro -12.4187 +▁Ángel -12.4187 +▁Innovation -12.4187 +berht -12.4189 +▁` -12.419 +▁Henrik -12.4192 +▁broaden -12.4192 +▁helm -12.4193 +▁circus -12.4194 +▁Calais -12.4194 +▁Goddess -12.4194 +▁erotic -12.4194 +▁causal -12.4194 +▁Colon -12.4199 +▁nominate -12.4201 +▁Diabetes -12.4201 +▁quadruple -12.4201 +▁vulture -12.4201 +▁presided -12.4201 +▁penned -12.4203 +▁Samoa -12.4205 +▁Isla -12.4205 +stream -12.4205 +▁Franck -12.4205 +Malley -12.4206 +ushi -12.4207 +▁90% -12.4207 +▁Everton -12.4208 +ceratops -12.4208 +▁Schmidt -12.4208 +▁occult -12.4208 +▁Lisbon -12.4209 +▁Kanye -12.4209 +▁Xeno -12.4209 +▁compass -12.421 +▁maid -12.421 +▁coma -12.421 +2013 -12.4215 +▁2030 -12.4215 +▁obsession -12.4216 +▁umbrella -12.4216 +▁inclination -12.4216 +▁Sumatra -12.4216 +▁fortification -12.4216 +▁denying -12.4217 +▁Nicholson -12.4219 +ploid -12.4221 +▁Katrina -12.4223 +▁patience -12.4224 +▁yell -12.4226 +▁Pull -12.4227 +▁Rab -12.4227 +▁relocation -12.4228 +strict -12.4228 +▁Biological -12.4229 +▁annexed -12.4229 +▁Reservoir -12.423 +▁abused -12.4231 +▁fried -12.4233 +▁Kell -12.4233 +▁reflex -12.4234 +RR -12.4235 +▁Piper -12.4236 +▁vain -12.4237 +▁erratic -12.4237 +ossi -12.424 +▁ashes -12.4241 +▁monumental -12.4241 +▁conveyed -12.4244 +▁Sovereign -12.4245 +▁stimulus -12.4245 +▁Toledo -12.4245 +▁Rumble -12.4245 +▁hive -12.4248 +▁Toro -12.4248 +▁Pius -12.425 +tooth -12.425 +▁1813 -12.4252 +▁Hitchcock -12.4252 +▁remixed -12.4252 +▁McCay -12.4254 +▁counselor -12.4258 +oscopic -12.4261 +▁solvent -12.4261 +▁simulated -12.4262 +▁accessibility -12.4263 +▁consort -12.4266 +▁clashes -12.4268 +▁Zeus -12.4272 +▁Elliot -12.4273 +▁Sense -12.4274 +▁rental -12.4275 +▁confidential -12.4276 +▁loom -12.428 +▁Jericho -12.4281 +▁Proceedings -12.4281 +▁afflict -12.4281 +▁downgraded -12.4281 +▁Instruction -12.4281 +▁Keats -12.4282 +▁Leadership -12.4283 +▁Barrier -12.4285 +▁1817 -12.4286 +▁coated -12.4286 +▁Benz -12.4287 +▁Scream -12.4288 +angle -12.429 +▁transformer -12.4292 +▁rewrite -12.4294 +▁computational -12.4295 +2012 -12.4295 +▁reused -12.4296 +▁interpreter -12.4297 +▁295 -12.4297 +▁vle -12.4299 +▁Dane -12.43 +ubli -12.4301 +▁Jaguar -12.4303 +▁β -12.4304 +▁vicious -12.4304 +▁tug -12.4306 +▁Barre -12.4309 +▁Sure -12.4309 +▁Yucatán -12.431 +▁satisfactory -12.431 +▁PRO -12.431 +▁wedge -12.4311 +▁Hazard -12.4311 +▁Gallipoli -12.4317 +▁stool -12.4321 +▁Gem -12.4322 +▁WW -12.4324 +▁Baden -12.4325 +▁deficiencies -12.4325 +▁ignoring -12.4325 +▁introductory -12.4325 +▁À -12.4326 +▁Friedman -12.4328 +▁Hinduism -12.4329 +▁Archie -12.433 +▁populace -12.4332 +111 -12.4332 +ectomy -12.4335 +▁Conway -12.4335 +▁Alternatively -12.4336 +wiki -12.4336 +▁Molecular -12.4339 +▁accuse -12.4339 +▁Ulster -12.4341 +▁Bury -12.4341 +fact -12.4342 +pub -12.4344 +▁Quad -12.4344 +▁bankrupt -12.4346 +▁Increasing -12.4347 +▁Malvern -12.4347 +▁microbial -12.4347 +▁filament -12.4347 +▁Nursing -12.4347 +▁Dinosaur -12.4349 +▁1802 -12.435 +road -12.4351 +▁methyl -12.4351 +▁hated -12.4354 +▁Ibrahim -12.4354 +▁Pediatric -12.4354 +▁remedies -12.4354 +700 -12.4354 +▁diagonal -12.4354 +▁ransom -12.4354 +2014 -12.4359 +▁OCLC -12.4361 +▁Pleasant -12.4361 +▁747 -12.4364 +▁elaborated -12.4365 +obble -12.4365 +▁larva -12.4369 +▁Mesa -12.437 +▁pronoun -12.4373 +Har -12.4374 +chemistry -12.4374 +▁pivotal -12.4374 +▁antiquity -12.4376 +▁Crescent -12.4376 +▁Identify -12.4376 +▁rainy -12.4377 +▁unfortunately -12.4379 +▁Hav -12.4381 +▁Dirty -12.4383 +▁Beverly -12.4383 +▁merging -12.4383 +▁nm -12.4384 +▁penetrated -12.4385 +▁calf -12.4386 +▁melted -12.4386 +▁Schwartz -12.4391 +▁mistakenly -12.4391 +▁Dresden -12.4391 +▁Marxist -12.4391 +▁Congressman -12.4393 +▁Patrol -12.4394 +▁Damon -12.4394 +▁Enrique -12.4398 +▁fundraising -12.4398 +▁Split -12.4399 +▁synonymous -12.44 +▁redesign -12.4401 +▁Chilean -12.4403 +▁Harvest -12.4406 +▁deserved -12.4407 +▁Subject -12.4408 +▁Lima -12.4408 +paw -12.4409 +20,000 -12.4409 +▁Jac -12.4412 +▁Rhythm -12.4413 +▁Judah -12.4413 +▁Linares -12.4413 +▁Duchy -12.4413 +lastname -12.4415 +▁grit -12.4418 +▁Significant -12.442 +▁tomorrow -12.442 +▁Organic -12.442 +▁Stream -12.4423 +profit -12.4424 +▁capped -12.4425 +2000 -12.4425 +▁penis -12.4426 +▁nourish -12.4428 +▁expressway -12.4428 +▁Willow -12.4428 +diktè -12.4429 +▁Horace -12.443 +▁writ -12.4433 +▁Chicken -12.4434 +▁confirming -12.4434 +▁orchard -12.4435 +▁Midnight -12.4435 +▁Infant -12.4439 +▁Welcome -12.4442 +▁fashionable -12.4445 +▁affirmed -12.4446 +▁resurrect -12.4448 +▁Rookie -12.445 +▁Neolithic -12.445 +LF -12.4451 +▁Poet -12.4456 + -12.4457 +▁epilepsy -12.4457 +▁bleach -12.4457 +▁spouse -12.4457 +chain -12.4457 +▁1783 -12.4458 +▁Gamer -12.4462 +▁Blanche -12.4462 +▁Chem -12.4464 +▁Hyderabad -12.4464 +▁rerouted -12.4464 +▁veterinarian -12.4464 +▁Pixar -12.4464 +▁proposing -12.4464 +trophic -12.4464 +▁Merit -12.4465 +▁Piano -12.4466 +Fig -12.4466 +▁complementary -12.4469 +▁Gerry -12.447 +▁cache -12.4471 +▁suffix -12.4472 +▁Prairie -12.4472 +▁terminology -12.4472 +▁Poole -12.4472 +▁Knowing -12.4472 +▁Airbus -12.4477 +lithic -12.4479 +▁turmoil -12.4479 +▁Shelby -12.4479 +▁Uttar -12.448 +▁regent -12.4481 +▁assassinated -12.4481 +▁lance -12.4483 +grin -12.4483 +▁Rabi -12.4484 +▁Yemen -12.4485 +▁Ruiz -12.4485 +▁gestation -12.4487 +▁Counter -12.4489 +▁Ske -12.4491 +ocratic -12.4493 +ān -12.4494 +▁reggae -12.4494 +▁Mouse -12.4497 +▁fundamentally -12.45 +▁aristocracy -12.4502 +▁Insurance -12.4502 +▁1822 -12.4502 +gression -12.4504 +▁Gap -12.4505 +▁simplest -12.4506 +▁cumulative -12.4509 +▁orthodox -12.4509 +▁Kappa -12.451 +▁nap -12.451 +▁flourished -12.451 +▁Perkins -12.4511 +▁serum -12.4513 +▁candidacy -12.4516 +▁easiest -12.4516 +▁reorganized -12.4516 +▁ruthless -12.4516 +▁urinary -12.4516 +▁overturned -12.4516 +▁testify -12.4517 +▁Wigan -12.4517 +▁trapping -12.452 +▁genuinely -12.4521 +▁pesticide -12.4522 +▁pioneered -12.4522 +▁1807 -12.4522 +▁Hazel -12.4524 +▁Stirling -12.4524 +▁salaries -12.4524 +▁Rory -12.4525 +▁Torre -12.4526 +▁sunset -12.4526 +oodle -12.4527 +▁Magna -12.4531 +▁Thierry -12.4531 +▁regulating -12.4531 +▁Housing -12.4534 +▁Agnes -12.4535 +▁drunken -12.4539 +▁Pòtoprens -12.4539 +▁altering -12.4541 +▁preseason -12.4541 +▁cusp -12.4544 +▁Sutherland -12.4546 +▁stark -12.4549 +▁430 -12.455 +▁loris -12.4553 +extraterrestrial -12.4554 +▁Supplement -12.4554 +▁Versailles -12.4554 +▁dismantled -12.4554 +▁skyscraper -12.4554 +▁660 -12.4559 +▁delighted -12.4559 +▁Anniversary -12.4561 +▁inauguration -12.4561 +growth -12.4568 +▁kernel -12.4569 +▁berth -12.4574 +▁relativity -12.4576 +▁420 -12.4577 +▁relaxation -12.458 +▁Pwo -12.4581 +bau -12.4582 +▁mutiny -12.4584 +▁Crimson -12.4584 +▁stitch -12.4584 +▁warmth -12.4585 +▁scenery -12.4585 +▁tortured -12.4586 +▁Maiden -12.4587 +▁tuning -12.4587 +esthesia -12.4591 +▁reunite -12.4591 +▁nuance -12.4593 +▁Countries -12.4593 +ghan -12.4595 +▁Eaton -12.4596 +▁refract -12.4597 +▁listener -12.4598 +▁Oval -12.4599 +▁commodity -12.4599 +▁Mandela -12.4599 +▁Magdalen -12.4599 +▁Gong -12.4599 +||2 -12.4603 +▁periodical -12.4603 +▁royalty -12.4606 +▁contemplate -12.4606 +▁wicked -12.4607 +▁secession -12.4614 +▁thunder -12.4614 +▁Eating -12.4615 +▁resurrection -12.4615 +▁rites -12.4616 +▁newcomer -12.4616 +▁Blow -12.4616 +▁Lava -12.4617 +▁Mansion -12.4619 +▁Lydia -12.4619 +▁advocating -12.4621 +▁swollen -12.4621 +▁unreleased -12.4621 +▁Reduce -12.4622 +▁Effective -12.4623 +▁mandated -12.4625 +▁sorry -12.4628 +▁blur -12.4629 +▁Suzuki -12.4629 +▁façade -12.4629 +▁Lecture -12.4629 +▁Avila -12.4629 +▁leaning -12.463 +LAN -12.4631 +▁Dash -12.4632 +RG -12.4634 +▁twisted -12.4634 +▁Merchant -12.4637 +▁Kylie -12.4637 +▁XIV -12.4638 +▁Unknown -12.4639 +▁harmless -12.464 +▁versa -12.4641 +odic -12.4643 +▁Stick -12.4643 +▁inevitably -12.4644 +▁Porto -12.4646 +▁Hooper -12.4647 +NET -12.4648 +igny -12.4648 +▁clashed -12.465 +▁Mifflin -12.4651 +▁grocery -12.4651 +▁incapable -12.4652 +runner -12.4652 +▁nmi -12.4653 +▁Britten -12.4653 +PDF -12.4654 +▁disguised -12.4654 +2009 -12.4654 +houser -12.4655 +▁† -12.4656 +▁Abbott -12.4656 +▁MacFarlane -12.4659 +▁liberties -12.4659 +▁bodily -12.4659 +▁guinea -12.4659 +▁AFC -12.466 +▁Dong -12.4662 +▁differentiated -12.4664 +▁mined -12.4665 +▁Siva -12.4665 +▁clarified -12.4667 +▁cartoonist -12.4667 +▁truss -12.4667 +▁Marilyn -12.4667 +▁Growing -12.4668 +▁alpine -12.4669 +▁Comme -12.467 +▁enact -12.4672 +▁80% -12.4673 +View -12.4674 +▁sustaining -12.4675 +▁Guidelines -12.4675 +▁Blog -12.468 +▁stride -12.4681 +▁balancing -12.4682 +▁Meat -12.4684 +▁Manson -12.4687 +▁Stephanie -12.4689 +▁voluntarily -12.4689 +▁Dungeon -12.4689 +▁interred -12.469 +analysis -12.4691 +▁colonization -12.4692 +▁1770 -12.4694 +▁Drawing -12.4694 +▁reuse -12.4694 +▁instructional -12.4695 +ulla -12.4696 +▁Dangerous -12.4697 +▁imperfect -12.4697 +▁amusement -12.4697 +▁Hawkins -12.4698 +appa -12.4703 +shack -12.4703 +▁paced -12.4703 +▁String -12.4704 +▁Mozart -12.4704 +▁repulsed -12.4704 +▁kinetic -12.4704 +▁handicap -12.4705 +▁Disaster -12.4705 +▁Wendy -12.4706 +▁Valentin -12.4706 +▁Werner -12.4706 +▁polygon -12.4706 +▁discontinu -12.4707 +▁invaders -12.4707 +δ -12.4712 +▁Breckinridge -12.4712 +▁Māori -12.4712 +▁recognizable -12.4712 +▁stimuli -12.4712 +fused -12.4714 +▁Cava -12.4715 +▁pawn -12.4715 +cham -12.4717 +evich -12.4718 +▁handsome -12.4719 +liter -12.472 +▁unemployed -12.472 +robe -12.4722 +▁Leading -12.4723 +▁glorious -12.4727 +▁Growth -12.4729 +▁obstruction -12.4733 +These -12.4733 +▁ornamental -12.4734 +▁Faculty -12.4735 +▁sequencing -12.4735 +▁analytic -12.4736 +▁activism -12.4736 +Pri -12.4741 +▁Chick -12.4742 +▁preacher -12.4743 +▁Haynes -12.4745 +cluding -12.4745 +▁carrot -12.4746 +gha -12.4747 +▁Kubrick -12.475 +▁cruising -12.475 +▁horrible -12.4758 +▁covenant -12.4758 +▁Hercules -12.4758 +▁coronavirus -12.4758 +▁quarrel -12.476 +▁490 -12.4764 +▁tomatoes -12.4764 +6,000 -12.4765 +▁Kosovo -12.4765 +▁irritation -12.4765 +▁parasitic -12.4765 +▁Alicia -12.4767 +▁Monarch -12.4767 +▁penal -12.4767 +Homme -12.4768 +Col -12.4768 +▁halftime -12.4769 +▁Volk -12.4772 +▁Appalachian -12.4773 +▁Holguin -12.4773 +▁Tomorrow -12.4773 +▁politik -12.4773 +▁abbot -12.4773 +▁Marvin -12.4775 +ignon -12.4775 +▁Allow -12.4776 +▁Holm -12.4777 +flex -12.4778 +▁Epic -12.478 +▁Quatermas -12.4781 +▁lucrative -12.4781 +▁sprout -12.4781 +▁shortest -12.4783 +▁Whole -12.4784 +▁Soap -12.4788 +▁Tottenham -12.4788 +vention -12.4789 +▁301 -12.479 +plastic -12.479 +▁abolish -12.4791 +▁preaching -12.4792 +▁scientifically -12.4794 +▁maize -12.4794 +▁eject -12.4795 +▁Fermi -12.4795 +▁subtitle -12.4795 +▁serpent -12.4796 +▁Musk -12.4796 +▁Banner -12.4799 +▁Hub -12.48 +▁Suez -12.4801 +▁patrolling -12.4802 +iscus -12.4803 +▁gorge -12.4803 +▁titanium -12.4804 +▁RKO -12.4804 +▁Cabo -12.4808 +▁Camden -12.4809 +clus -12.481 +▁Wish -12.481 +▁brownish -12.4813 +▁frank -12.4813 +▁midway -12.4817 +▁packaged -12.4818 +▁newsletter -12.4819 +close -12.4819 +▁peptide -12.4819 +wang -12.4822 +▁Jacksonville -12.4823 +▁spit -12.4825 +▁1778 -12.4826 +▁Property -12.4827 +▁bilingual -12.4827 +▁utilities -12.4827 +▁Femme -12.4827 +conduct -12.4829 +▁intending -12.4833 +▁Levy -12.4834 +▁Shō -12.4836 +▁Hume -12.4836 +▁allowance -12.4836 +NU -12.4841 +▁implying -12.4842 +▁Linnaeus -12.4842 +▁resided -12.4842 +hair -12.4842 +▁Charlton -12.4843 +▁Burnham -12.4844 +▁Lamar -12.485 +▁imaginative -12.485 +▁Azores -12.485 +▁Tay -12.485 +▁Jonas -12.4854 +▁kidnap -12.4856 +▁descriptive -12.4857 +▁robbery -12.4857 +▁transparency -12.4857 +▁prequel -12.4857 +▁differentiation -12.4857 +▁surreal -12.4858 +▁Contest -12.4862 +àn -12.4863 +▁ACE -12.4864 +▁sinus -12.4864 +▁decompression -12.4865 +▁ordained -12.4865 +▁chariot -12.4865 +▁Charity -12.4866 +andra -12.4866 +uration -12.4868 +▁subscribe -12.4868 +▁oven -12.4873 +▁Rainfall -12.4874 +cranial -12.4874 +▁annexation -12.4875 +defined -12.4879 +▁enjoyment -12.4879 +▁inexperienced -12.488 +▁mitigation -12.488 +▁uplift -12.4881 +eater -12.4881 +▁emigrated -12.4885 +▁flawed -12.4885 +2017 -12.4885 +▁quota -12.4886 +▁trajectory -12.4888 +▁unidentified -12.4888 +▁turf -12.4888 +▁roost -12.4889 +▁Pasha -12.4891 +▁Maud -12.4891 +▁peel -12.4891 +▁mixes -12.4891 +▁modernization -12.4892 +▁Dalton -12.4897 +▁Baez -12.4897 +▁Truck -12.4899 +▁correlated -12.4901 +▁misleading -12.4904 +▁enroll -12.4908 +▁pho -12.4909 +▁takeover -12.4911 +▁Odyssey -12.4911 +▁Anzac -12.4911 +▁discontent -12.4912 +▁Perl -12.4913 +▁passport -12.4913 +▁Kink -12.4914 +▁nonprofit -12.4914 +TOR -12.4917 +▁XX -12.4918 +▁Bren -12.4919 +▁nocturnal -12.4919 +▁penguin -12.4919 +▁botanical -12.4919 +▁marshes -12.4924 +▁Jedi -12.4925 +▁Graphic -12.4925 +▁Titus -12.4927 +▁Sanchez -12.4927 +▁artefacts -12.4927 +▁crises -12.4928 +plate -12.4929 +▁Construct -12.4931 +ön -12.4931 +▁chaplain -12.4935 +▁conclusive -12.4936 +▁Discuss -12.4937 +▁stat -12.4942 +▁plizyè -12.4942 +▁pwodiktè -12.4943 +▁ethnicity -12.4943 +▁NOAA -12.4943 +▁Ghana -12.4945 +helm -12.4948 +▁Previous -12.4948 +▁Conflict -12.495 +▁Emanuel -12.495 +▁Soler -12.4951 +▁Cristina -12.4951 +▁Alison -12.4952 +▁ample -12.4953 +▁Cheshire -12.4953 +▁Esther -12.4953 +▁interrogat -12.4955 +▁Babylon -12.4955 +▁Kick -12.4955 +▁chewing -12.4956 +parent -12.4957 +▁Isis -12.4957 +▁frustrating -12.4958 +▁Gettysburg -12.4958 +mori -12.4958 +▁crushing -12.496 +▁Patriarch -12.4966 +▁Presidency -12.4966 +▁filing -12.4966 +depressant -12.4967 +▁donate -12.4968 +▁annul -12.4973 +▁cavities -12.4974 +▁chronological -12.4974 +▁Exposition -12.4975 +▁stepping -12.4976 +▁Fountain -12.4981 +▁residual -12.4981 +▁reversal -12.4981 +olith -12.4982 +▁specification -12.4982 +▁questionable -12.4983 +▁codename -12.4985 +▁kreye -12.4989 +▁Garland -12.4989 +▁Freud -12.499 +▁Violence -12.499 +▁Lotus -12.4993 +▁transmitter -12.4996 +▁narration -12.4997 +▁Bruins -12.4999 +▁stature -12.4999 +solution -12.4999 +▁councillor -12.5 +▁patriotic -12.5001 +▁Ashton -12.5003 +Meksik -12.5003 +▁Congregation -12.5005 +▁Spectrum -12.5005 +▁masculine -12.5005 +▁doubling -12.5005 +▁oyster -12.5005 +ieux -12.5005 +▁allele -12.5005 +▁surpassing -12.5006 +▁Description -12.5007 +▁augment -12.5008 +▁Cycle -12.5009 +▁Frog -12.5012 +▁disorganized -12.5013 +▁Recovery -12.5013 +▁Sterling -12.5013 +▁Seneca -12.5013 +▁Mott -12.5014 +Christ -12.5014 +▁AFL -12.5015 +▁reiterat -12.5016 +▁mechanic -12.5018 +ogenesis -12.5018 +▁Alfonso -12.5021 +▁Economy -12.5021 +▁squeeze -12.5021 +▁unacceptable -12.5021 +▁dilute -12.5022 +▁Haas -12.5022 +▁hardcore -12.5023 +▁konsè -12.5024 +är -12.5024 +titled -12.5025 +▁biographical -12.5028 +▁attested -12.5029 +▁Lucky -12.503 +▁booth -12.5031 +▁Reuter -12.5032 +lake -12.5032 +▁preventive -12.5033 +▁Moran -12.5033 +▁Perse -12.5035 +▁Darkness -12.5035 +▁plaintiff -12.5036 +▁rainbow -12.5037 +été -12.5038 +▁Boyle -12.5038 +▁gluten -12.504 +▁Amir -12.504 +▁hp -12.5041 +▁occupational -12.5042 +▁Escape -12.5043 +▁Díaz -12.5044 +▁caffeine -12.5044 +▁Río -12.5044 +▁Everybody -12.5045 +▁hobby -12.5045 +▁specialize -12.5046 +▁dataset -12.505 +phenol -12.505 +▁leopard -12.5052 +▁thrash -12.5052 +recht -12.5053 +▁pastoral -12.5057 +▁Flores -12.5057 +▁guiding -12.506 +▁initiation -12.506 +▁steroid -12.506 +▁Hurley -12.5062 +▁Pool -12.5063 +▁redevelop -12.5066 +▁Santana -12.5067 +bodies -12.5067 +▁Applied -12.5068 +▁thwart -12.5068 +▁discourage -12.5069 +▁Ashes -12.507 +▁unjust -12.5073 +▁inadvertently -12.5076 +▁exacerbated -12.5076 +▁disperse -12.5077 +▁birthplace -12.5078 +▁Etty -12.5079 +▁categorized -12.5081 +▁Mughal -12.5083 +▁Chili -12.5085 +▁Random -12.5085 +▁breakup -12.5086 +▁fanmi -12.5088 +▁lightweight -12.5089 +▁Goldberg -12.509 +▁Icelandic -12.509 +scler -12.509 +▁neon -12.5091 +▁Puritan -12.5091 +▁shepherd -12.5091 +▁QF -12.5092 +øy -12.5093 +▁Greenwich -12.5093 +▁systematically -12.5094 +▁Birk -12.5098 +▁fancy -12.5099 +lix -12.5102 +▁readiness -12.5105 +▁delicious -12.5107 +ibble -12.5111 +▁pinch -12.5111 +▁Supply -12.5115 +▁infancy -12.5115 +▁Eck -12.5116 +▁mash -12.5116 +cipit -12.5116 +▁bracket -12.5123 +▁Increased -12.5123 +▁expectancy -12.5124 +▁splash -12.5124 +▁Arlington -12.5124 +▁Alpine -12.5126 +▁slit -12.5127 +▁Müller -12.5131 +▁destiny -12.5131 +▁Mysore -12.5131 +▁Toxic -12.5131 +▁Havana -12.5132 +▁Option -12.5134 +▁manpower -12.5136 +▁breeders -12.5136 +▁Teach -12.5138 +axis -12.5138 +▁Jacqueline -12.5139 +▁Pleistocene -12.5139 +▁scheduling -12.5139 +▁Ciego -12.5139 +vill -12.5139 +▁dictate -12.514 +▁lecturer -12.5141 +▁sentimental -12.5144 +▁rediscover -12.5147 +▁Innocent -12.5147 +▁Hiroshima -12.5147 +▁Winner -12.5148 +▁foxes -12.515 +▁Hamel -12.5151 +▁Unable -12.5152 +▁Hide -12.5152 +▁unreliable -12.5155 +▁Bieber -12.5155 +▁Sawyer -12.5155 +▁Nguy -12.5155 +▁competence -12.5156 +▁Atari -12.5157 +girl -12.5157 +▁́ -12.5157 +▁Isaiah -12.5163 +▁illegitimate -12.5163 +▁Platt -12.5163 +Net -12.5164 +▁Mosley -12.5165 +▁homolog -12.5166 +▁Darius -12.5167 +▁Yankee -12.5168 +▁millimetre -12.5168 +▁disposed -12.5169 +▁stealth -12.5169 +▁Beethoven -12.517 +▁cultivar -12.517 +▁livelihood -12.517 +▁zebra -12.517 +▁conferred -12.5171 +▁broker -12.5171 +▁Downtown -12.5174 +▁Lyme -12.5175 +▁parcel -12.5176 +▁Robb -12.5176 +▁exemption -12.5178 +ा -12.5178 +▁Iroquois -12.5178 +▁prezidan -12.5178 +▁spacing -12.5179 +▁thou -12.5179 +graf -12.518 +▁betrayed -12.518 +AND -12.518 +▁chancel -12.518 +▁jour -12.5181 +▁Wulf -12.5184 +▁bang -12.5186 +▁truncated -12.5186 +▁pelvic -12.5186 +▁harp -12.5191 +▁Establish -12.5192 +▁planners -12.5195 +2011 -12.5195 +▁intercourse -12.5195 +▁Engel -12.5196 +▁Traditionally -12.5196 +▁limitation -12.5197 +▁Rowling -12.5199 +▁Kendrick -12.5202 +▁responsive -12.5202 +▁nebula -12.5202 +▁courthouse -12.5203 +▁lever -12.5204 +bacterium -12.5204 +▁Lori -12.521 +▁adrenal -12.521 +▁Revelation -12.521 +▁ECW -12.5213 +▁Audrey -12.5218 +▁Havilland -12.5218 +▁unlimited -12.5218 +▁Edison -12.522 +▁Thornton -12.5222 +▁thorn -12.5223 +▁imaginary -12.5226 +▁uterus -12.5226 +▁reopen -12.5228 +▁Cornish -12.5229 +▁Dickens -12.5229 +▁illegally -12.5232 +Ó -12.5234 +ー -12.5234 +▁unsafe -12.5234 +▁Vanessa -12.5234 +▁CGI -12.5234 +▁oversight -12.5236 +▁XVI -12.5237 +▁Budapest -12.5242 +▁octave -12.5242 +▁undivided -12.5242 +▁SQL -12.5242 +▁bony -12.5243 +IDE -12.5244 +▁Mysterio -12.5244 +▁scanning -12.5245 +▁calibre -12.525 +▁cartilage -12.525 +▁crewmen -12.5252 +▁Grow -12.5253 +▁pork -12.5255 +▁Ville -12.5256 +▁osteo -12.5257 +five -12.5258 +▁Fernández -12.5258 +▁techno -12.5258 +glio -12.5263 +III -12.5266 +▁commodities -12.5266 +▁Sacred -12.5266 +▁reinstated -12.5267 +▁Hector -12.5269 +▁560 -12.527 +▁comprehend -12.5274 +▁concentrating -12.5274 +▁peloton -12.5274 +▁purported -12.5274 +▁accusing -12.5274 +▁Schedule -12.5274 +▁Blame -12.5277 +▁1788 -12.5278 +▁Seward -12.5279 +▁Bride -12.5279 +▁specialised -12.5282 +▁faded -12.5282 +▁cabbage -12.5282 +▁fascinated -12.5282 +▁improvisation -12.5282 +▁License -12.5283 +▁waterfall -12.5285 +▁witches -12.5285 +▁Experimental -12.5288 +▁Paw -12.5289 +▁pearl -12.5289 +▁glut -12.5289 +phyll -12.529 +▁Destroyer -12.529 +▁reconsider -12.529 +▁aggressively -12.5291 +▁energies -12.5291 +▁Carrier -12.5294 +▁soften -12.5297 +▁Partnership -12.5299 +oxide -12.5299 +▁illuminated -12.53 +▁Haifa -12.53 +▁Stamp -12.5306 +▁Gallagher -12.5307 +▁rebellious -12.5307 +▁Massacre -12.5307 +first -12.531 +▁Archived -12.5313 +▁parodies -12.5315 +▁contradictory -12.5315 +▁grill -12.5316 +▁Gavin -12.5319 +1-2 -12.5321 +û -12.5323 +▁Atmospheric -12.5323 +▁weaving -12.5323 +▁Smoke -12.5324 +▁Mosque -12.5326 +▁Abbasid -12.5326 +▁fist -12.5326 +(3) -12.5328 +▁sadness -12.533 +▁consecrated -12.5331 +▁recounted -12.5331 +▁Hogg -12.5331 +rive -12.5332 +dynamic -12.5334 +▁Wilder -12.5334 +μ -12.5334 +002 -12.5335 +▁mystic -12.5335 +▁Assyrian -12.5339 +▁Balzac -12.5339 +▁Upanishad -12.5339 +▁Wolfgang -12.5339 +▁unsuitable -12.5339 +▁supervising -12.5339 +▁intuitive -12.5339 +cribe -12.5342 +▁confessed -12.5343 +▁hose -12.5344 +▁vicar -12.5344 +aille -12.5345 +▁Zeppelin -12.5347 +▁blossom -12.5347 +▁Sloan -12.5348 +▁usurp -12.5349 +▁Mersey -12.5349 +John -12.535 +▁Kirby -12.535 +▁Suite -12.5351 +▁flick -12.5351 +▁Thatcher -12.5354 +▁1/2 -12.5354 +▁Agri -12.5354 +▁Phone -12.5355 +▁Sylvia -12.5355 +▁egz -12.5356 +▁junk -12.5357 +MU -12.5357 +▁Sample -12.5359 +▁Radical -12.536 +▁Newspaper -12.5363 +▁whitish -12.5363 +▁Cosmo -12.5364 +▁Ramsay -12.5364 +▁spared -12.5365 +▁Natalie -12.5366 +kamp -12.5366 +▁187 -12.5367 +▁garde -12.537 +▁encroach -12.5371 +▁(2010) -12.5372 +▁bending -12.5373 +iku -12.5375 +▁roast -12.5375 +▁254 -12.5376 +▁amend -12.5377 +▁fò -12.5377 +▁tolerant -12.5379 +▁masonry -12.5379 +▁indicative -12.5379 +▁Afro -12.5387 +▁Invincible -12.5388 +▁deforestation -12.5388 +▁sabotage -12.5388 +▁thinner -12.5389 +▁handheld -12.539 +topic -12.5391 +▁coping -12.5391 +▁Lunar -12.5394 +▁Improvement -12.5395 +2016 -12.5396 +▁lattice -12.5396 +▁Meridian -12.5396 +▁landlord -12.5396 +▁Camille -12.5398 +▁brig -12.5401 +▁reverted -12.5404 +▁Dalmatia -12.5404 +▁Advent -12.5406 +▁curator -12.5408 +▁bureaucrat -12.5412 +▁jeneral -12.5412 +▁1787 -12.5412 +▁playground -12.5412 +▁Inspired -12.5412 +▁noisy -12.5412 +▁Handbook -12.5413 +▁grim -12.5415 +▁ceded -12.5415 +▁oceanic -12.5416 +▁polish -12.5416 +▁robin -12.5416 +▁reassigned -12.542 +▁Informer -12.542 +▁Investment -12.5425 +▁apex -12.5426 +▁Shetland -12.5429 +▁Farrell -12.543 +▁Sporting -12.5431 +▁firstname -12.5432 +▁404 -12.5433 +▁raiders -12.5433 +▁indefinitely -12.5434 +▁Brahmin -12.5436 +▁Temperature -12.5436 +▁kapab -12.5436 +▁takeoff -12.5439 +▁tomato -12.5442 +▁MFR -12.5443 +▁Plastic -12.5443 +▁statewide -12.5444 +▁caterpillar -12.5445 +▁resentment -12.5445 +▁unconventional -12.5445 +▁ascertain -12.5445 +▁atlèt -12.5445 +trained -12.5446 +mitted -12.5449 +▁Shrewsbury -12.5453 +▁convective -12.5453 +▁residing -12.5453 +▁pricing -12.5453 +▁farewell -12.5454 +▁bailey -12.5455 +▁Khalid -12.5458 +▁Crush -12.5459 +▁Katy -12.5461 +▁Auschwitz -12.5461 +▁biofuel -12.5461 +▁Uranus -12.5461 +▁Greco -12.5462 +▁Robson -12.5463 +aël -12.5467 +▁vulgar -12.5469 +▁influencing -12.5469 +▁doctorate -12.547 +sthetic -12.547 +▁(2009) -12.547 +▁Giles -12.547 +▁Tavern -12.547 +conscious -12.5471 +▁Rodney -12.5471 +▁Anyone -12.5473 +▁Travers -12.5476 +▁emphasizing -12.5477 +▁supremacy -12.5477 +▁Ideal -12.5478 +▁Henson -12.5484 +▁Elias -12.5484 +▁Marriage -12.5486 +▁expulsion -12.5486 +▁prophecy -12.5486 +▁Animated -12.5486 +▁Tunas -12.5487 +▁woven -12.5487 +▁Frey -12.5488 +▁Juno -12.5489 +ESS -12.549 +▁tendencies -12.5494 +▁Sigma -12.5495 +▁symmetrical -12.5497 +▁Spector -12.5498 +▁actresses -12.5498 +▁modelling -12.5499 +▁ponder -12.5502 +▁asbestos -12.5502 +▁Campo -12.5502 +▁Either -12.5503 +▁Ceres -12.5504 +torial -12.5508 +brun -12.5509 +▁Settlement -12.551 +▁elicit -12.551 +▁malfunction -12.551 +▁paralysis -12.5511 +▁Entry -12.5511 +ische -12.5512 +▁Katz -12.5512 +▁Notice -12.5517 +▁Ecuador -12.5518 +▁Philharmonic -12.5518 +▁obsessed -12.5518 +▁squash -12.5518 +▁bestowed -12.5519 +▁flirt -12.5519 +▁mythological -12.552 +▁reproduced -12.5525 +ù -12.5527 +▁embodied -12.5527 +▁scène -12.5527 +▁tuition -12.5528 +▁chif -12.5529 +▁plunge -12.5529 +− -12.5531 +▁Colour -12.5531 +wulf -12.5533 +▁melano -12.5534 +▁boulder -12.5535 +▁scalp -12.5536 +▁Danielle -12.5537 +▁Alps -12.5537 +▁Brief -12.5538 +▁Argent -12.5539 +▁establishes -12.5539 +▁amidst -12.5542 +▁Lockheed -12.5543 +▁Luxembourg -12.5543 +▁Jutland -12.5543 +▁situ -12.5544 +▁expressive -12.5544 +▁Rene -12.5544 +▁bruise -12.5545 +▁recurrent -12.5549 +▁Gorge -12.555 +▁deepest -12.555 +▁Pony -12.555 +▁Fasci -12.5551 +▁Räikkönen -12.5551 +▁cliché -12.5551 +▁ridicule -12.5551 +▁picnic -12.5551 +voir -12.5553 +▁Ravi -12.5557 +▁sway -12.5557 +▁graft -12.5562 +▁Connie -12.5562 +▁Arcade -12.5562 +▁Cadet -12.5563 +▁McGill -12.5564 +depend -12.5566 +▁Spokane -12.5568 +▁Clive -12.5568 +▁kindness -12.5568 +rü -12.557 +▁Granma -12.5573 +▁Papua -12.5573 +▁wetland -12.5575 +▁Kalifòni -12.5576 +▁microorganisms -12.5576 +▁Caledonia -12.5576 +▁Tulsa -12.5576 +▁hyena -12.5577 +sensitive -12.5581 +▁Hello -12.5582 +née -12.5583 +Day -12.5583 +▁Flemish -12.5584 +▁ultrasound -12.5585 +poze -12.5585 +▁Module -12.5585 +▁Penny -12.5588 +▁(2007) -12.5593 +▁mule -12.5595 +tension -12.5596 +▁Roh -12.5599 +▁Jakarta -12.5601 +▁Influence -12.5601 +▁realigned -12.5601 +▁sunny -12.5601 +▁Stella -12.5606 +▁wiped -12.5607 +▁parishes -12.5609 +blood -12.5609 +▁divergence -12.5609 +▁chlorine -12.5609 +▁pertaining -12.5609 +phobic -12.561 +surface -12.5615 +▁popularized -12.5615 +▁Braathen -12.5618 +▁untreated -12.5618 +▁regenerate -12.5618 +▁Universities -12.5618 +▁tractor -12.5619 +wou -12.5619 +▁Dollar -12.5621 +▁Yeah -12.5621 +▁Thin -12.5625 +▁Cruiser -12.5625 +▁advertise -12.5626 +▁Competition -12.5626 +▁unpredictable -12.5626 +▁polite -12.5628 +▁summarize -12.5628 +▁reset -12.5629 +brain -12.5631 +▁Flav -12.5633 +▁Peach -12.5633 +▁abandonment -12.5634 +υ -12.5634 +▁Torchwood -12.5634 +▁dehydration -12.5634 +▁banquet -12.5635 +▁stray -12.5637 +▁spotlight -12.5638 +Ø -12.5643 +▁deciduous -12.5643 +▁superintendent -12.5643 +▁Maru -12.5644 +▁mutually -12.5644 +▁Exit -12.5645 +▁287 -12.5645 +▁beads -12.5648 +▁Jung -12.5648 +▁hilarious -12.5651 +▁Sejm -12.5651 +▁Lazo -12.5652 +▁spinner -12.5653 +▁Anime -12.5653 +▁confess -12.5654 +encia -12.5655 +▁Luka -12.5656 +▁Hobbs -12.5659 +▁basalt -12.5661 +▁subset -12.5665 +▁McKi -12.5665 +▁NHS -12.5665 +▁acquitted -12.5668 +▁elliptical -12.5668 +▁provocative -12.5668 +▁longevity -12.5668 +▁monoxide -12.5668 +blow -12.5669 +asser -12.567 +▁Brownlee -12.5671 +▁XXI -12.5671 +Alain -12.5673 +▁retake -12.5673 +▁Eurogamer -12.5676 +▁implicated -12.5676 +▁reluctance -12.5676 +▁Luigi -12.5676 +▁spearhead -12.5677 +food -12.5677 +▁bloodstream -12.5678 +▁Gaston -12.5681 +▁strategically -12.5681 +▁complaining -12.5684 +▁Moral -12.5684 +▁qualitative -12.5684 +▁accolade -12.5684 +▁plausible -12.5684 +LY -12.5686 +▁screaming -12.569 +▁30% -12.5691 +▁commemorating -12.5693 +▁Huntington -12.5694 +▁exposition -12.5696 +▁exhaustion -12.5696 +▁hacker -12.5697 +▁Belize -12.5698 +▁entè -12.5698 +▁replication -12.5702 +▁194 -12.5703 +▁selfish -12.5703 +▁tailored -12.5704 +▁Monaco -12.5704 +▁Badge -12.5706 +▁(2002) -12.571 +▁Loyalist -12.571 +▁futuristic -12.571 +▁Technique -12.571 +▁decimal -12.571 +▁lodging -12.571 +▁Dramatic -12.571 +▁Updated -12.5712 +▁discrete -12.5718 +▁sorrow -12.5718 +▁chancellor -12.5718 +▁Quant -12.5719 +▁spurred -12.572 +▁stab -12.5721 +▁imen -12.5723 +▁Bavaria -12.5724 +▁nuit -12.5725 +▁phosphor -12.5725 +▁Sylvester -12.5726 +▁syrup -12.5726 +▁alligator -12.5726 +▁Amid -12.5734 +▁brightest -12.5734 +▁Somalia -12.5735 +▁Tchaikovsky -12.5735 +▁starvation -12.5735 +▁Holloway -12.5735 +clock -12.5735 +▁Irwin -12.5736 +▁fetus -12.5737 +▁localization -12.5738 +▁Slovakia -12.5739 +▁rugged -12.5743 +▁Guinness -12.5743 +▁Anatolia -12.5743 +▁infestation -12.5743 +▁Mercer -12.5744 +loch -12.5745 +▁Sita -12.5747 +▁Pré -12.5748 +▁theropod -12.575 +▁stove -12.575 +▁mystical -12.575 +▁Calcutta -12.5752 +▁HTML -12.5752 +çon -12.5753 +▁stainless -12.5755 +▁Biography -12.5755 +▁Cult -12.5755 +▁perished -12.5759 +▁realities -12.5762 +▁Raoul -12.5766 +▁Democracy -12.5769 +▁Scharnhorst -12.5769 +▁liaison -12.5769 +▁Elaine -12.5769 +▁Taliban -12.5769 +▁Kesha -12.5771 +pyr -12.5774 +▁Wanna -12.5774 +▁Strategy -12.5777 +▁backstage -12.5777 +▁semantic -12.5777 +▁Strauss -12.5777 +▁sanctioned -12.5778 +▁Francesco -12.5778 +▁Milo -12.578 +▁gait -12.5781 +▁Greenwood -12.5782 +▁shattered -12.5782 +Louis -12.5783 +▁Texian -12.5784 +ethylene -12.5785 +▁oneself -12.5785 +▁#1 -12.5785 +▁Activision -12.5785 +immun -12.5786 +▁geologist -12.5786 +▁Surface -12.5786 +▁paddle -12.579 +André -12.5792 +▁Gott -12.5792 +▁dictated -12.5793 +▁César -12.5794 +▁Mikhail -12.5794 +▁obedience -12.5794 +▁Loud -12.5799 +▁reissue -12.58 +▁Fifteen -12.5802 +▁cassette -12.5802 +▁rudder -12.5802 +▁renounce -12.5802 +▁prosthetic -12.5803 +▁busiest -12.5803 +▁Cody -12.5805 +▁Archive -12.5806 +▁tèt -12.5807 +▁desperately -12.5808 +▁fireplace -12.5808 +▁Fashion -12.5811 +▁Territorial -12.5811 +▁scenic -12.5811 +▁Graduate -12.5811 +▁Harrier -12.5812 +0° -12.5813 +2008 -12.5816 +start -12.5817 +producing -12.5818 +▁accompaniment -12.5819 +▁climatic -12.5819 +▁Barbados -12.5819 +▁reprint -12.582 +▁topography -12.5821 +▁Dyer -12.5821 +▁Dancing -12.5822 +▁investigator -12.5825 +▁Trenton -12.5825 +▁Sarajevo -12.5828 +▁calculating -12.5828 +▁sèvi -12.5829 +▁Ethan -12.5835 +▁Endangered -12.5836 +▁Labrador -12.5836 +▁relentless -12.5836 +▁Hussein -12.5836 +▁Severn -12.5837 +▁shaking -12.5839 +plicate -12.5839 +▁Hurt -12.584 +▁abrupt -12.5843 +▁Panic -12.5844 +▁immature -12.5845 +▁mammoth -12.5845 +▁Bengali -12.5845 +▁(2005) -12.5845 +hof -12.5846 +▁dictatorship -12.5846 +▁entre -12.5846 +▁Olaf -12.5847 +▁Gogh -12.585 +▁Eastwood -12.5852 +▁calculator -12.5853 +▁socket -12.5853 +▁Kratos -12.5854 +oscopy -12.5855 +▁weave -12.5858 +IVE -12.5861 +▁Diocese -12.5862 +▁accustomed -12.5862 +▁catapult -12.5862 +▁thrombo -12.5862 +▁Saunders -12.5862 +▁rector -12.5862 +▁notebook -12.5866 +▁EastEnders -12.587 +▁Preservation -12.587 +▁unsigned -12.587 +▁slept -12.587 +ifolia -12.5871 +▁NGO -12.5874 +▁mites -12.5876 +▁linebacker -12.5879 +tribute -12.588 +▁Poetry -12.5881 +▁Clock -12.5882 +▁MLS -12.5883 +polar -12.5884 +▁Hillary -12.5884 +▁Cannes -12.5887 +▁mysteries -12.5887 +▁Pretty -12.5887 +▁Fool -12.5888 +ometri -12.5891 +▁Violet -12.5894 +▁quasi -12.5896 +gall -12.5896 +▁rubble -12.5897 +▁Strand -12.5898 +OUR -12.5898 +▁intervened -12.5899 +▁bravery -12.5899 +▁Wehrmacht -12.5905 +▁malicious -12.5905 +▁Fantastic -12.5905 +▁charities -12.5905 +▁Robbie -12.5907 +magnetic -12.5911 +▁Samar -12.5912 +▁Difference -12.5913 +▁Powder -12.5913 +▁durable -12.5913 +▁Centaur -12.5914 +8,000 -12.5914 +▁sensing -12.5915 +public -12.5916 +▁wastewater -12.5918 +izasyon -12.5918 +▁Nadal -12.5919 +▁wandering -12.5919 +▁Recommend -12.5922 +▁acknowledging -12.5922 +▁annoying -12.5922 +▁Hobart -12.5922 +▁liberated -12.5922 +▁lifeboat -12.5922 +▁Martian -12.5922 +▁cyclo -12.5922 +ión -12.5926 +▁soybean -12.593 +▁Forward -12.5931 +odium -12.5932 +▁Frei -12.5934 +▁acne -12.5935 +▁Creating -12.5937 +▁educator -12.5939 +▁denoting -12.5939 +▁mapped -12.5944 +▁outset -12.5945 +Comm -12.5945 +protein -12.5946 +▁encryption -12.5947 +▁fizik -12.5947 +▁Marathon -12.5947 +▁Seoul -12.5947 +▁NSB -12.5948 +▁Somme -12.5951 +ovirus -12.5951 +▁Terrace -12.5953 +▁betrayal -12.5953 +▁Tourism -12.5954 +ché -12.5954 +▁dusk -12.5955 +▁Enemy -12.5956 +▁corpus -12.5956 +▁Apostle -12.5956 +▁chestnut -12.5957 +▁Gemini -12.5958 +▁Symbol -12.5964 +▁Nirvana -12.5965 +▁outdated -12.5965 +▁Throne -12.5965 +▁Favre -12.5965 +▁falcon -12.5966 +▁Scapa -12.5968 +▁HMA -12.5968 +▁versatile -12.5973 +▁Rosenberg -12.5974 +▁Gender -12.5977 +▁glance -12.5979 +▁buildup -12.5981 +▁VanDerWe -12.5982 +▁Rodrigues -12.5982 +▁charcoal -12.5982 +▁Sutton -12.5982 +▁Javier -12.5983 +jö -12.5984 +▁Passage -12.5989 +▁wellbeing -12.5989 +▁timeslot -12.599 +▁Favorite -12.599 +▁Mangalore -12.599 +▁Sanctuary -12.599 +▁dissatisfied -12.599 +▁sergeant -12.599 +▁Barkley -12.599 +▁intersect -12.5991 +▁Predator -12.5991 +▁hindered -12.5991 +have -12.5991 +▁royalist -12.5991 +▁equate -12.5991 +▁diploma -12.5992 +▁stressful -12.5996 +clusive -12.5997 +▁executing -12.5999 +▁Katie -12.6 +▁Camera -12.6002 +▁purge -12.6002 +▁Becker -12.6007 +▁semiconductor -12.6008 +▁Kiev -12.6008 +▁Kami -12.6013 +▁persecut -12.6014 +▁Contract -12.6015 +▁capacities -12.6016 +▁hypothetical -12.6016 +▁integrating -12.6016 +▁Reginald -12.6016 +▁guild -12.6016 +▁Infection -12.6016 +▁hallucinat -12.6017 +▁consolidate -12.6019 +▁Bulletin -12.6022 +▁magnate -12.6023 +▁Laurel -12.6024 +▁Ellie -12.6024 +▁Archibald -12.6025 +▁registry -12.6025 +▁tectonic -12.6025 +▁Tornado -12.6025 +▁(2006) -12.6026 +▁Bain -12.6026 +▁negotiation -12.6027 +▁CAP -12.6027 +▁provoke -12.6028 +▁warbler -12.6029 +▁courtship -12.6031 +▁abusive -12.6034 +▁witchcraft -12.6034 +▁Mathew -12.6035 +▁Khar -12.6036 +▁kilo -12.6037 +▁Ridd -12.604 +▁Creator -12.6042 +▁Irvine -12.6042 +▁Walpole -12.6043 +▁Vijay -12.6043 +▁Database -12.6043 +▁connectivity -12.6044 +▁Turtle -12.6045 +▁mammalian -12.6045 +▁Angola -12.6046 +agging -12.6054 +▁Kuala -12.6054 +▁Bethlehem -12.606 +▁cohort -12.606 +▁Offer -12.6061 +▁mosquitoes -12.6061 +▁alteration -12.6062 +volved -12.6063 +▁Electrical -12.6064 +▁Owl -12.6065 +▁Veda -12.6065 +▁citadel -12.6068 +▁mandible -12.6069 +▁amassed -12.6069 +▁garlic -12.6071 +▁Castillo -12.6076 +▁Hippo -12.6076 +▁skies -12.6076 +▁1781 -12.6076 +▁Historia -12.6076 +▁Tape -12.6077 +▁troupe -12.6077 +▁0.5 -12.6079 +▁undermined -12.608 +▁Federalist -12.6084 +RU -12.6084 +▁scaffold -12.6086 +▁credible -12.6086 +Read -12.6086 +▁(2008) -12.6087 +▁Monmouth -12.6087 +▁weaponry -12.6089 +▁Classification -12.6089 +▁wipe -12.6089 +▁PCB -12.6091 +especially -12.6094 +▁Summary -12.6095 +▁hospitalized -12.6097 +▁Pattern -12.6097 +ē -12.6103 +▁Emerald -12.6103 +▁clarinet -12.6103 +▁temperament -12.6103 +▁Paterson -12.6104 +▁Manga -12.6108 +▁grinding -12.6109 +▁Coulthard -12.6112 +▁worries -12.6112 +▁adherence -12.6113 +▁reissued -12.6119 +▁Riverside -12.612 +▁lobbied -12.6121 +▁Cindy -12.6121 +▁(2004) -12.6121 +▁hopefully -12.6123 +▁Drag -12.6128 +▁deteriorating -12.613 +▁terrific -12.613 +▁Coffee -12.613 +▁zanmi -12.613 +▁ventral -12.6131 +▁specialty -12.6131 +▁bridgehead -12.6132 +▁mindset -12.6132 +▁vibe -12.6138 +▁feasibility -12.6138 +▁litigation -12.6138 +political -12.6138 +▁desktop -12.6139 +jection -12.6139 +▁disclosure -12.6139 +lecommunications -12.614 +▁interstate -12.614 +▁curving -12.6141 +▁flor -12.6143 +▁Pocket -12.6147 +▁biographies -12.6147 +▁hesitate -12.6148 +▁exponential -12.6148 +christ -12.615 +▁gatehouse -12.615 +▁PBS -12.6152 +▁topical -12.6154 +induced -12.6155 +▁Occasionally -12.6156 +▁Savannah -12.6156 +▁bourgeois -12.6156 +▁populous -12.6156 +▁vintage -12.6156 +▁Piece -12.6156 +service -12.6157 +▁Device -12.6158 +▁baking -12.6159 +▁mythical -12.6164 +▁choreographed -12.6165 +▁manganese -12.6165 +▁inviting -12.6166 +▁pear -12.6169 +Claude -12.6173 +▁Cienfuegos -12.6173 +▁forcibly -12.6173 +▁PHP -12.6173 +▁clam -12.6177 +▁Brendan -12.6182 +Édouard -12.6182 +▁Ustaše -12.6182 +▁aquarium -12.6182 +▁Fairbanks -12.6182 +▁omega -12.6182 +▁Otherwise -12.6184 +▁motivate -12.6185 +▁Jess -12.6188 +▁stimulated -12.6191 +▁Dunder -12.6191 +▁pitted -12.6191 +▁overshadowed -12.6191 +▁grandchildren -12.6191 +▁distributing -12.6192 +▁Brass -12.6193 +▁jug -12.6195 +▁Horton -12.6196 +▁statistically -12.6196 +▁aspirations -12.6197 +Angelo -12.6198 +▁vertebrates -12.6202 +▁Lincolnshire -12.6202 +▁chew -12.6203 +▁Counties -12.6204 +▁Croft -12.6205 +minute -12.6205 +▁Fairfax -12.6209 +▁chunk -12.6209 +▁verge -12.6209 +▁admitting -12.6211 +▁suspend -12.6214 +▁honorable -12.6216 +▁disapprove -12.6217 +▁lacrosse -12.6217 +▁idle -12.6219 +▁analysed -12.622 +crest -12.6224 +▁injunction -12.6226 +energy -12.6227 +▁Martinez -12.6228 +▁aristocratic -12.6229 +▁Olive -12.623 +▁Stranger -12.6232 +▁Rogue -12.6233 +▁Connection -12.6234 +▁regimental -12.6235 +▁Rudolf -12.6235 +▁Wilhelmshaven -12.6235 +▁Jardine -12.6235 +▁distrust -12.6236 +▁renal -12.6237 +▁Malawi -12.6237 +▁Yel -12.6238 +▁Camel -12.6238 +▁grind -12.6238 +▁deliveries -12.6242 +rigg -12.6242 +▁syntax -12.6244 +▁Twist -12.6244 +▁forgiveness -12.6247 +▁alias -12.6249 +▁mRNA -12.625 +physical -12.6251 +▁Blitz -12.6251 +▁irrelevant -12.6253 +▁syphilis -12.6253 +▁solidarity -12.6253 +ddling -12.6253 +▁drip -12.6257 +▁Billie -12.6258 +ɪ -12.6262 +▁collaborating -12.6262 +▁periphery -12.6262 +▁questionnaire -12.6262 +▁Ninja -12.6262 +▁Kensington -12.6262 +▁(2011) -12.6263 +▁enriched -12.6265 +MENT -12.6268 +▁iodine -12.6271 +▁Pour -12.6271 +▁Ninth -12.6271 +▁dumb -12.6271 +▁excel -12.6274 +▁Barlow -12.6275 +▁Evaluation -12.6276 +▁Bharat -12.6277 +▁Tig -12.6277 +▁Larkin -12.6277 +▁persuasive -12.6279 +▁quartet -12.6279 +▁arterial -12.6279 +▁forestry -12.628 +driven -12.6282 +▁backyard -12.6283 +▁Mimi -12.6283 +▁Hatch -12.6283 +▁fascist -12.6288 +€ -12.6288 +▁sultan -12.6288 +▁inundated -12.6289 +▁Handle -12.6292 +▁Hamlin -12.6293 +▁Luzon -12.6294 +▁deprivation -12.6297 +resistant -12.6297 +▁Baha -12.6299 +▁Brom -12.63 +▁León -12.6305 +▁Antony -12.6306 +▁consolidation -12.6306 +Craft -12.6306 +▁logistical -12.6306 +▁ugly -12.6307 +▁Domingo -12.6315 +▁Scranton -12.6324 +▁discredit -12.6324 +▁Yahoo -12.6324 +▁degraded -12.6324 +▁Birthday -12.6325 +||0 -12.6325 +grown -12.6326 +▁cardboard -12.6327 +▁podium -12.6328 +umbo -12.6329 +▁knot -12.633 +▁pushes -12.6332 +▁Encourage -12.6333 +▁Uematsu -12.6333 +▁estuary -12.6333 +▁Fossil -12.6333 +▁Gomez -12.6333 +▁Simply -12.6333 +▁eradicate -12.6333 +▁McCall -12.6333 +▁Amphi -12.6335 +West -12.6337 +▁Falkland -12.6337 +▁Radiohead -12.6337 +▁Isabelle -12.6338 +▁richest -12.634 +▁perpetrator -12.6342 +▁Simmons -12.6342 +▁propel -12.6348 +▁abolitionist -12.6348 +▁culprit -12.6351 +▁sniper -12.6351 +▁anatomical -12.6351 +▁dormant -12.6352 +▁Desmond -12.6353 +▁teaser -12.6355 +▁Manufacturing -12.636 +▁cannibal -12.636 +▁Caldwell -12.636 +qué -12.6361 +▁Courage -12.6363 +▁Spock -12.6363 +▁centralized -12.6365 +▁Nomura -12.6365 +▁König -12.6369 +▁Technologies -12.6369 +▁entrusted -12.6369 +▁Feu -12.6369 +fruit -12.637 +▁spontaneously -12.637 +Rankings -12.6375 +▁avec -12.6377 +▁pavement -12.6378 +▁telegram -12.6379 +▁replies -12.6379 +▁Germain -12.6379 +▁manure -12.6379 +▁Carlton -12.6382 +▁Verdi -12.6387 +▁Journalist -12.6389 +▁wholesale -12.6389 +▁Fuel -12.6389 +▁Hof -12.6391 +▁40% -12.6392 +▁Rudy -12.6394 +▁granddaughter -12.6396 +▁illustrator -12.6396 +▁proprietor -12.6396 +▁Guillermo -12.6396 +▁anthropologist -12.6396 +▁Sellers -12.6396 +▁millennia -12.6398 +éro -12.6399 +▁Hypo -12.6402 +▁clap -12.6403 +▁atheist -12.6404 +▁Frequent -12.6405 +▁segregated -12.6405 +▁disgrace -12.6405 +▁deluxe -12.6405 +▁Spaniel -12.6405 +▁1779 -12.6407 +▁gallon -12.6407 +▁Speak -12.6411 +▁bosses -12.6413 +▁loft -12.6413 +▁Abyss -12.6413 +ن -12.6414 +▁dispersal -12.6414 +▁prostitution -12.6414 +▁Philipp -12.6414 +▁Decade -12.6415 +▁spanned -12.6416 +grand -12.6416 +▁Server -12.6417 +▁Conduct -12.6418 +▁misuse -12.642 +brush -12.642 +gold -12.6422 +▁autoimmune -12.6423 +▁hypotheses -12.6423 +▁Tanzania -12.6423 +▁Chong -12.6423 +▁Beatrice -12.6423 +▁Kramer -12.6427 +▁Scandinavia -12.6431 +▁Relijyon -12.6432 +▁procedural -12.6432 +▁thirst -12.6432 +▁Famous -12.6432 +▁unseen -12.6432 +▁Kidd -12.6433 +▁paperback -12.6433 +▁relocate -12.6435 +▁spoon -12.6435 +▁adorned -12.6435 +factor -12.6437 +▁necessitated -12.6438 +▁daring -12.644 +▁ACLU -12.6441 +▁BAFTA -12.6441 +▁Perspective -12.6441 +▁Tirpitz -12.6441 +▁estimation -12.6441 +▁feminism -12.6441 +▁herbivore -12.6441 +▁proliferation -12.6441 +▁forfeit -12.6441 +▁hydrocarbon -12.6441 +▁gown -12.6442 +▁Ramsey -12.6443 +▁tailor -12.6444 +INE -12.6445 +▁Lucien -12.6447 +▁Provisional -12.645 +▁Timbaland -12.645 +▁jewellery -12.645 +▁optimism -12.645 +▁paleontologist -12.645 +▁grandparents -12.645 +trophy -12.645 +▁tabak -12.6452 +▁practitioner -12.6453 +▁Franciscan -12.6453 +leutnant -12.6459 +▁peanut -12.6459 +▁sulfate -12.6459 +▁Chennai -12.6459 +▁Eliza -12.6462 +▁Emeterio -12.6468 +▁substantive -12.6468 +▁Baxter -12.6468 +condition -12.6469 +effect -12.6469 +▁Amerik -12.6469 +▁pharmaco -12.6471 +▁anticipate -12.6471 +▁Abbot -12.6473 +▁Portable -12.6474 +▁Angus -12.6477 +minster -12.6483 +▁Jeremiah -12.6486 +▁violating -12.6486 +▁grammatical -12.6486 +▁retard -12.6486 +▁Morse -12.6488 +▁prescribe -12.6489 +▁Teddy -12.6489 +▁applauded -12.6495 +д -12.6495 +▁Threat -12.6495 +▁whaling -12.6495 +▁Edmond -12.6497 +▁Draw -12.6498 +Marie -12.6503 +▁misconception -12.6504 +▁seamless -12.6504 +▁pennant -12.6505 +With -12.6506 +▁PSP -12.6506 +▁Radi -12.6506 +▁Handel -12.651 +▁preface -12.651 +▁unfavorable -12.6513 +▁Brick -12.6521 +wild -12.6522 +▁Cynthia -12.6522 +▁arthropod -12.6522 +▁interspersed -12.6522 +▁stimulating -12.6522 +▁prensipal -12.6522 +▁diplomacy -12.6523 +▁Whitman -12.6523 +▁axle -12.6524 +▁Kelley -12.6527 +▁Brezhnev -12.6531 +▁Excellence -12.6531 +▁Guevara -12.6531 +▁libretto -12.6531 +▁Passenger -12.6531 +▁Invasion -12.6531 +▁irritate -12.6531 +ucker -12.6532 +people -12.6532 +▁Quran -12.6534 +▁articulated -12.6534 +▁inverted -12.6534 +▁Becky -12.6535 +▁sculpted -12.6537 +lastic -12.6537 +▁1774 -12.6538 +▁Participants -12.654 +▁Willamette -12.654 +▁Cumming -12.6541 +▁Mutual -12.6541 +▁Bakshi -12.6542 +▁bastion -12.6542 +▁Yuan -12.6543 +▁Decision -12.6544 +▁Schwe -12.6547 +▁clue -12.6549 +▁Bowman -12.6549 +▁Veracruz -12.655 +▁Nails -12.6551 +▁royalties -12.6553 +▁Keating -12.6555 +▁Dolphin -12.6559 +▁Gujarat -12.6559 +▁Jérôme -12.6559 +genesis -12.656 +▁Enough -12.6564 +▁Verse -12.6566 +▁query -12.6567 +▁Sigismund -12.6568 +▁photosynthesis -12.6568 +▁saxophone -12.6568 +▁scramble -12.6568 +▁dispense -12.6568 +▁benchmark -12.6568 +▁1660 -12.6575 +▁Skip -12.6575 +▁revolver -12.6575 +7,000 -12.6576 +▁Kraków -12.6577 +▁sunshine -12.6577 +▁interlude -12.6577 +▁devoid -12.6577 +▁namesake -12.6581 +ðr -12.6583 +▁monde -12.6585 +▁Hebrides -12.6586 +▁taxpayer -12.6586 +▁Chirino -12.6586 +▁battling -12.6586 +▁artisan -12.6586 +▁Valencia -12.6587 +▁Bungie -12.6587 +▁Lansing -12.6589 +▁Embassy -12.6595 +▁engraved -12.6595 +▁Permanent -12.6595 +▁modelled -12.6596 +effective -12.6597 +▁Buddy -12.6598 +▁Livingstone -12.6598 +▁prank -12.6598 +▁inherently -12.66 +▁Marquis -12.6604 +▁Ramírez -12.6605 +▁cholera -12.6605 +▁lettuce -12.6605 +▁Variation -12.6605 +▁benign -12.6605 +▁Childhood -12.6606 +▁Priestley -12.6607 +▁gangster -12.6608 +▁manipulated -12.6611 +▁NASCAR -12.6614 +▁Seminole -12.6614 +▁adolescence -12.6614 +▁redemption -12.6614 +▁Interestingly -12.6614 +▁Kuwait -12.6614 +▁jelly -12.6615 +▁Evelyn -12.6615 +▁Johor -12.6616 +▁Catch -12.6618 +▁chorale -12.662 +▁disinfect -12.6621 +▁trek -12.6622 +▁Curriculum -12.6623 +▁Deborah -12.6623 +▁perpetual -12.6623 +▁uploaded -12.6623 +▁fluent -12.6623 +▁Gateshead -12.6624 +▁Clown -12.6624 +900 -12.6626 +▁narrated -12.6626 +▁CAS -12.6627 +▁UBS -12.6628 +▁Romero -12.6629 +leave -12.6629 +▁hoard -12.6629 +▁fulfil -12.663 +▁Steelers -12.663 +2020 -12.663 +htm -12.663 +▁drastic -12.6631 +misunderstanding -12.6632 +▁vernacular -12.6632 +▁cutscene -12.6632 +▁freak -12.6632 +▁Welch -12.6632 +▁alcoholism -12.6633 +▁consortium -12.6633 +AGE -12.6635 +▁impede -12.6636 +left -12.6638 +م -12.6641 +▁melodrama -12.6641 +▁breech -12.6641 +▁framing -12.6642 +▁Reaction -12.6645 +▁regression -12.6647 +▁Bubbl -12.6647 +▁outspoken -12.6651 +▁residency -12.6651 +▁pectoral -12.6651 +▁trivial -12.6651 +▁subfamily -12.6651 +▁Alexandr -12.6652 +▁hopeless -12.6652 +▁Hulk -12.6652 +} -12.666 +▁Anonymous -12.666 +▁yesterday -12.666 +▁squid -12.666 +▁Evangel -12.666 +▁Millwall -12.6661 +▁summed -12.6663 +▁expel -12.6664 +Amour -12.6668 +▁Antwerp -12.6669 +▁atrocities -12.6669 +▁deputies -12.6669 +▁groundbreaking -12.6669 +▁pizza -12.6669 +▁entertainer -12.6669 +▁Tripoli -12.6673 +▁soloist -12.6677 +▁Nickelodeon -12.6678 +▁Prospect -12.6678 +▁titular -12.6679 +▁Rockwell -12.6679 +▁Opposition -12.6679 +▁attendees -12.668 +hopper -12.668 +trip -12.668 +▁Bronx -12.6681 +▁deteriorate -12.6682 +▁bodyguard -12.6684 +▁escalated -12.6686 +▁migrant -12.6687 +▁Saratoga -12.6687 +▁Wiggins -12.6688 +▁Ajete -12.6688 +▁indictment -12.6688 +▁ceasefire -12.6688 +▁worshipped -12.6691 +▁Virus -12.6696 +▁brawl -12.6698 +central -12.6701 +▁penultimate -12.6706 +▁tortoise -12.6706 +zong -12.6706 +▁(2012) -12.6707 +▁Palma -12.6708 +▁transient -12.6708 +▁Location -12.6709 +▁Danys -12.671 +▁Kathy -12.6711 +▁Javl -12.6711 +distinguishable -12.6711 +▁Crater -12.6713 +▁Enlightenment -12.6715 +▁Madeleine -12.6715 +▁Pembroke -12.6715 +▁Strength -12.6715 +▁Superintendent -12.6715 +▁treasury -12.6715 +▁Corpus -12.6715 +▁Freak -12.6716 +▁Civic -12.6716 +▁betray -12.6718 +▁Worm -12.6719 +▁swiftly -12.6723 +▁barley -12.6725 +▁fluorescent -12.6725 +▁heterosexual -12.6725 +▁parkway -12.6727 +▁Béla -12.6728 +inski -12.6728 +▁Repeat -12.6728 +▁Guantanamo -12.6734 +▁Göring -12.6734 +▁Ticket -12.6734 +▁forefront -12.6734 +▁Briggs -12.6735 +▁Vargas -12.6735 +▁addictive -12.6736 +▁confuse -12.6738 +▁elevate -12.6738 +▁Slovak -12.6739 +▁Tamar -12.6739 +▁Jade -12.6742 +▁Surgery -12.6743 +▁collegiate -12.6743 +▁librarian -12.6743 +▁scuttled -12.6743 +▁Scenic -12.6743 +▁Mitsu -12.6746 +charya -12.6746 +▁authoritarian -12.6752 +▁zeal -12.6753 +▁Interview -12.6754 +franchi -12.6754 +▁Florid -12.6757 +▁Worldwide -12.676 +▁crustaceans -12.6762 +▁backstory -12.6762 +▁Amelia -12.6764 +▁Silence -12.6764 +▁empowerment -12.6766 +▁posing -12.6768 +▁sèn -12.6771 +ả -12.6771 +▁exemplified -12.6771 +▁judiciary -12.6771 +▁underestimate -12.6771 +▁stumble -12.6771 +▁kòmanse -12.6771 +▁grabbed -12.6772 +▁Birch -12.6772 +▁casualty -12.6774 +▁Trigger -12.6774 +–18 -12.678 +θ -12.678 +▁incursion -12.6781 +▁coincidence -12.6781 +▁Vivian -12.6782 +▁delete -12.6783 +▁Candy -12.6784 +▁Conquest -12.6784 +▁Choir -12.6785 +▁Sunset -12.6786 +▁Royce -12.6787 +▁Whenever -12.6788 +▁sailor -12.6789 +▁thriving -12.679 +▁Rufus -12.679 +▁rogue -12.6792 +▁Tyne -12.6793 +▁banning -12.6795 +▁Richie -12.6795 +▁Falk -12.6796 +▁Avalanche -12.6799 +▁fugitive -12.6799 +▁quarterfinal -12.6799 +▁okay -12.6799 +▁UCLA -12.68 +clar -12.6801 +▁choke -12.6801 +▁Floor -12.6801 +▁cruelty -12.6801 +▁allergen -12.6806 +▁Spice -12.6808 +▁Cologne -12.6809 +▁Anselm -12.6809 +▁dialog -12.6816 +▁Pavilion -12.6818 +▁observatory -12.6818 +▁hydroelectric -12.6818 +▁Ballad -12.6819 +▁investor -12.682 +▁interrogation -12.6822 +pipe -12.6824 +Star -12.6824 +▁attire -12.6828 +▁seafood -12.6829 +» -12.683 +▁familia -12.6831 +▁admirer -12.6833 +▁Mohammed -12.6837 +▁nonsense -12.6837 +▁Drummond -12.6837 +▁bipolar -12.6837 +▁gorgeous -12.6838 +▁Depot -12.6839 +▁toxin -12.684 +▁Duval -12.6842 +▁Launch -12.6842 +▁Gift -12.6843 +▁Honda -12.6843 +▁commemoration -12.6846 +ICE -12.6846 +aylor -12.6847 +▁youthful -12.6848 +▁dispose -12.6852 +▁Cognitive -12.6855 +▁fiancé -12.6855 +▁standout -12.686 +util -12.6865 +World -12.6868 +▁marketplace -12.6868 +▁Ecology -12.6871 +▁Hilton -12.6872 +▁intellect -12.6874 +▁expansive -12.6874 +▁harmonies -12.6874 +evangeli -12.6876 +tropical -12.6876 +▁0.1 -12.6876 +operative -12.6877 +▁amusing -12.6879 +▁Flyers -12.6883 +▁Carrie -12.6884 +▁Distribution -12.6884 +▁abbreviated -12.6884 +м -12.6884 +▁intrusion -12.6884 +▁yacht -12.6884 +▁Rudd -12.6884 +▁Gloucestershire -12.6884 +▁baked -12.6885 +▁confinement -12.6885 +▁avoidance -12.689 +▁degenerated -12.6891 +ophile -12.6893 +▁Rousseau -12.6893 +▁tribunal -12.6893 +▁Dundee -12.6893 +▁kidnapping -12.6894 +▁Hearing -12.6895 +▁fetch -12.6896 +▁senate -12.6899 +▁congenital -12.6903 +▁happily -12.6903 +▁Constance -12.6903 +▁bayonet -12.6903 +▁reputed -12.6903 +▁Velvet -12.6903 +▁psychic -12.6903 +▁Carell -12.6903 +▁Ramirez -12.6912 +▁plentiful -12.6912 +▁Bahá -12.6912 +▁Selection -12.6913 +catch -12.6915 +stasis -12.6916 +▁hastily -12.6922 +▁accessories -12.6924 +▁dyo -12.6925 +▁disclosed -12.6925 +ostom -12.6927 +▁Plata -12.6928 +▁Plot -12.6929 +▁Archaeology -12.6931 +▁astonishing -12.6931 +▁foresee -12.6931 +▁Pamela -12.6932 +▁Prepare -12.6935 +▁payload -12.6937 +resumption -12.6941 +▁Artificial -12.6941 +▁Kathleen -12.6941 +▁computation -12.6941 +▁eyewall -12.6945 +▁laughter -12.6946 +▁Polk -12.695 +▁Dwarf -12.695 +▁Homicide -12.695 +▁Natasha -12.695 +▁NDH -12.695 +▁paranormal -12.695 +▁deceive -12.6954 +Arnaud -12.696 +▁decipher -12.696 +▁Clash -12.696 +▁jwenn -12.696 +▁Rollins -12.6962 +▁Luz -12.6962 +▁Ripley -12.6962 +▁seduce -12.6962 +▁gunboat -12.6962 +▁Talent -12.6965 +▁Universi -12.6967 +▁cemeteries -12.6969 +▁endeavour -12.6969 +▁fellowship -12.6969 +▁stemmed -12.6972 +amide -12.6973 +▁plotting -12.6975 +▁detonated -12.6978 +▁Advocate -12.6979 +▁Elijah -12.6979 +▁sant -12.6979 +▁Klaus -12.6987 +▁Funk -12.6988 +▁Félix -12.6988 +▁Pawnee -12.6988 +▁Quentin -12.6988 +▁estrogen -12.6988 +▁Breast -12.6989 +▁practised -12.699 +▁Underwood -12.699 +▁locus -12.6992 +† -12.6996 +____ -12.6997 +▁infringement -12.6998 +▁enslaved -12.6998 +▁Clerk -12.7001 +▁assemblies -12.7007 +▁excursion -12.7007 +▁ignorant -12.7007 +ław -12.7014 +▁Families -12.7017 +▁appropriation -12.7017 +▁Landis -12.7017 +commissioned -12.7021 +▁Adler -12.7021 +▁Trick -12.7026 +▁munitions -12.7026 +▁haunted -12.7026 +▁physio -12.7026 +▁Quarterly -12.7028 +▁Rhino -12.7034 +ś -12.7036 +▁baptized -12.7036 +▁carpenter -12.7036 +▁fermentation -12.7036 +▁Nagasaki -12.7036 +▁Chloe -12.7036 +▁Rutgers -12.7036 +▁Average -12.7036 +▁traitor -12.7036 +▁tandem -12.7036 +▁Mechanical -12.7038 +▁cultivate -12.704 +Intercontinental -12.7046 +▁Ipswich -12.7046 +▁Shuttle -12.7046 +▁accelerating -12.7046 +▁Deutsche -12.7046 +▁polluted -12.7046 +▁marrow -12.7046 +▁Setting -12.7046 +▁Maw -12.705 +▁endorse -12.7052 +▁echoes -12.7052 +ARC -12.7054 +▁Logic -12.7054 +▁leukemia -12.7055 +▁nomadic -12.7055 +leaf -12.7058 +function -12.7059 +2007 -12.7059 +▁denies -12.7061 +acid -12.7066 +▁superstar -12.7067 +▁Radiation -12.7067 +▁blanc -12.7067 +▁alkaline -12.7067 +remixes -12.7069 +significant -12.7069 +▁dosage -12.7071 +▁flea -12.7072 +ación -12.7074 +▁colloquial -12.7074 +▁caretaker -12.7074 +▁McCool -12.7074 +▁injuring -12.7075 +▁Peyi -12.7076 +▁conductivity -12.7076 +▁omission -12.7077 +▁Maximum -12.7079 +▁Yoko -12.708 +▁Peruvian -12.7084 +▁Psychological -12.7085 +▁blindness -12.7085 +chondr -12.7086 +depth -12.7089 +▁shipwreck -12.7094 +▁Sgt -12.7095 +soft -12.7097 +oriented -12.7098 +▁identifiable -12.7103 +▁Ethics -12.7103 +▁chick -12.7103 +▁lounge -12.7104 +▁standpoint -12.7107 +▁YOU -12.7109 +▁Ballard -12.711 +▁Stargate -12.7111 +▁Melville -12.7112 +▁naive -12.7112 +kiewicz -12.7113 +▁Byzantium -12.7113 +▁Gentlemen -12.7113 +▁Pentecost -12.7113 +▁renumbered -12.7113 +▁Cobain -12.7113 +▁electrolyte -12.7113 +▁Buster -12.7113 +▁Habitat -12.7113 +▁Neumann -12.7114 +winter -12.7114 +▁Poison -12.7117 +▁Novak -12.7117 +▁couch -12.7126 +axial -12.7129 +uddle -12.7131 +▁disembark -12.7132 +▁meticulous -12.7132 +▁ostensibly -12.7132 +▁Valuable -12.7132 +▁Soccer -12.7132 +▁Doubt -12.7132 +▁decompose -12.7133 +▁Silk -12.7136 +▁aloud -12.7136 +▁Milford -12.7136 +▁Aegean -12.7142 +▁wardrobe -12.7142 +▁Brandenburg -12.7142 +▁Pressure -12.7143 +▁Justinian -12.7144 +▁caption -12.7147 +▁contentious -12.715 +▁Happen -12.7152 +▁trè -12.7152 +▁Bauer -12.7152 +1,000 -12.7153 +▁taboo -12.7154 +▁inhibition -12.7161 +▁Developing -12.7161 +▁automotive -12.7161 +▁intimidate -12.7161 +▁Wallachia -12.7162 +▁permitting -12.7168 +▁Orbit -12.717 +▁assimilate -12.7171 +▁cadmium -12.7171 +▁cinematographer -12.7171 +▁lanmò -12.7171 +▁loneliness -12.7171 +▁shortcomings -12.7171 +▁knit -12.7173 +▁1782 -12.7175 +plat -12.7176 +▁Fatal -12.7177 +▁foal -12.7178 +▁Wilfrid -12.7181 +▁Pseudo -12.7181 +▁Uprising -12.7181 +▁hardened -12.7181 +▁squat -12.7183 +▁Deux -12.7184 +▁Mahler -12.7186 +raptor -12.7188 +▁Statistical -12.719 +▁Teknoloji -12.719 +▁arsenic -12.719 +▁splinter -12.719 +▁moat -12.7191 +▁Curie -12.7192 +▁otè -12.7193 +closure -12.7194 +▁Jenner -12.7195 +▁Caucasus -12.72 +▁Navarro -12.72 +▁salamander -12.72 +▁sclerosis -12.72 +▁drank -12.72 +▁ratification -12.7202 +▁dorm -12.7204 +oplasm -12.7206 +▁counteract -12.7206 +▁Message -12.7207 +▁Calhoun -12.721 +▁Collegiate -12.721 +▁mercenaries -12.721 +▁referencing -12.721 +▁densities -12.721 +▁circa -12.721 +▁insecticide -12.721 +▁postwar -12.7213 +facing -12.7214 +▁overdub -12.7214 +▁Thriller -12.7217 +▁Elisabeth -12.722 +▁sacrament -12.722 +▁translating -12.722 +▁bikini -12.722 +▁FIA -12.722 +▁Annals -12.7222 +▁flak -12.7226 +′ -12.7226 +▁reworked -12.723 +▁Potential -12.723 +▁Spell -12.723 +▁checkpoint -12.7233 +▁Sonia -12.7233 +▁URL -12.7238 +▁drier -12.7238 +▁intravenous -12.7239 +▁Playboy -12.724 +▁conformation -12.7243 +▁drawback -12.7245 +▁american -12.7245 +▁PET -12.7247 +▁Astronomical -12.7249 +▁jockey -12.7249 +▁holistic -12.7249 +▁Interpret -12.7249 +fiction -12.7251 +▁Chew -12.7252 +▁Bluff -12.7252 +▁southernmost -12.7254 +▁Vander -12.7257 +▁cohesive -12.7259 +▁gubernatorial -12.7259 +0.00 -12.7259 +▁bilateral -12.7259 +▁Alert -12.7261 +▁Cesar -12.7265 +▁ruf -12.7266 +▁Riding -12.7267 +▁Oryzomy -12.7269 +▁reaffirm -12.7269 +▁schooner -12.7269 +▁secrecy -12.7269 +▁herbicide -12.7269 +▁Klingon -12.7269 +▁Merry -12.727 +▁Levant -12.727 +▁orchestrated -12.7275 +IND -12.7275 +▁consequent -12.7278 +▁electorate -12.7278 +▁bronchi -12.7279 +▁NSW -12.7279 +▁kilometer -12.7283 +▁visa -12.7283 +▁subtype -12.7284 +determined -12.7284 +▁usher -12.7286 +▁frè -12.7286 +▁Gail -12.7287 +▁Briarcliff -12.7288 +▁Butterfly -12.7288 +▁Lichtenstein -12.7288 +▁Nablus -12.7288 +▁Svalbard -12.7288 +▁sidkoreyèn -12.7288 +▁Incident -12.7288 +▁Mafia -12.7288 +▁Hollow -12.7291 +▁Flair -12.7292 +▁penti -12.7297 +▁inconclusive -12.7298 +▁staunch -12.7298 +▁Alban -12.73 +▁prevail -12.7303 +▁Wedding -12.7305 +▁fishery -12.7307 +dokimantè -12.7308 +▁cinematography -12.7308 +▁scavenge -12.7308 +▁Somali -12.7308 +▁droplets -12.7309 +▁Collect -12.7309 +khan -12.7311 +▁clamp -12.7312 +▁correlate -12.7313 +▁wreckage -12.7313 +▁captaincy -12.7315 +▁Benoît -12.7318 +▁aerosol -12.7318 +▁sterile -12.7318 +▁Budget -12.7318 +▁GameSp -12.7319 +▁highlands -12.7319 +▁orchid -12.732 +▁Merlin -12.7321 +▁Sancti -12.7322 +▁diaries -12.7324 +▁avail -12.7326 +▁evaporation -12.7328 +▁insomnia -12.7328 +▁Snyder -12.7328 +▁Firth -12.7328 +▁smokers -12.7329 +▁Donkey -12.7332 +▁Laugh -12.7332 +▁Brahma -12.7332 +▁spoof -12.7338 +▁Hamasaki -12.7338 +kovsky -12.7339 +▁organising -12.734 +▁Contrary -12.734 +▁ridden -12.7341 +▁fearful -12.7343 +critical -12.7345 +▁siding -12.7345 +▁Hague -12.7345 +▁brigadier -12.7347 +▁mediocre -12.7347 +▁unpublished -12.7347 +▁thief -12.7347 +▁Sentinel -12.7347 +▁dominion -12.7347 +▁discriminate -12.7348 +▁omit -12.7349 +▁salute -12.735 +▁Jungle -12.7352 +▁commonplace -12.7355 +issi -12.7357 +▁luminosity -12.7357 +▁chassis -12.7357 +▁auditory -12.7358 +▁unfit -12.7362 +▁Mendel -12.7364 +▁sensational -12.7364 +▁Coaches -12.7365 +▁Stead -12.7367 +▁Corridor -12.7367 +▁Dunstan -12.7367 +aliforni -12.7367 +/10.1 -12.7368 +▁Oilers -12.7371 +▁overlook -12.7373 +▁Runner -12.7377 +▁McGovern -12.7377 +▁Raúl -12.7377 +▁quartz -12.7377 +▁selenium -12.7377 +▁Purchase -12.7377 +▁utilization -12.7377 +▁unleash -12.7377 +Learn -12.7379 +▁lazy -12.7385 +▁vitro -12.7385 +у -12.7387 +▁HPV -12.7387 +▁knives -12.7387 +▁blockchain -12.7388 +▁Normally -12.7392 +▁Partners -12.7394 +▁Christgau -12.7397 +▁Senegal -12.7397 +▁Mortimer -12.7397 +Haïti -12.7397 +▁convergence -12.7397 +▁Reign -12.7399 +▁Patty -12.7399 +▁Pep -12.7402 +▁Foley -12.7402 +▁lagoon -12.7407 +▁Positive -12.7407 +▁violet -12.7407 +▁Beaufort -12.7407 +▁snowfall -12.7409 +▁Baird -12.7409 +▁Vogue -12.7411 +▁Medici -12.7412 +▁parole -12.7415 +▁Coolidge -12.7417 +▁Mohawk -12.742 +▁seaplane -12.7421 +▁Cerv -12.7424 +▁fragmentation -12.7425 +▁Confucian -12.7427 +▁catastrophe -12.7427 +▁embarrassing -12.7427 +▁Montagu -12.7428 +▁pleasing -12.7429 +▁amber -12.7429 +▁LLC -12.743 +▁Woodward -12.7435 +▁Framework -12.7437 +▁simplify -12.7437 +▁Already -12.7437 +▁Nissan -12.7437 +▁Vlad -12.7437 +▁revered -12.7437 +olisyon -12.744 +▁Calvert -12.744 +esteem -12.7443 +▁Beauchamp -12.7447 +▁Marguerite -12.7447 +▁Radcliffe -12.7447 +▁dominating -12.7447 +▁Scratch -12.7447 +▁deported -12.7447 +▁pony -12.7449 +▁circulate -12.7452 +▁insertion -12.7455 +▁frightened -12.7457 +▁hesitant -12.7457 +▁arbitration -12.7457 +▁Translation -12.7458 +▁Stakes -12.7459 +▁Scheme -12.746 +arctic -12.746 +▁crystalline -12.7461 +▁70% -12.7464 +▁fry -12.7465 +▁exacerbat -12.7466 +▁Yasu -12.7467 +▁victor -12.7467 +▁Diocletian -12.7467 +▁aggravate -12.7467 +▁Ceylon -12.7467 +▁Noël -12.7467 +▁PPV -12.7467 +▁Scarborough -12.7467 +▁Templar -12.7468 +▁roundabout -12.7469 +▁Howell -12.747 +▁dissect -12.747 +▁slick -12.747 +▁Flame -12.7473 +computer -12.7474 +vati -12.7475 +▁Divètisman -12.7477 +▁Olympus -12.7477 +▁unpaid -12.7477 +▁Tactical -12.7477 +▁sunscreen -12.7478 +▁Owing -12.7482 +meyer -12.7482 +▁icy -12.7482 +▁Astronomy -12.7487 +▁Gardiner -12.7487 +▁Reconnaissance -12.7487 +▁penetrating -12.7487 +▁turbulent -12.7487 +▁ubiquitous -12.7487 +▁recounts -12.7487 +▁immoral -12.7487 +▁dubious -12.7487 +▁Bowen -12.749 +▁flatter -12.749 +PEC -12.7497 +▁Kafka -12.7497 +▁perfume -12.7497 +Saharan -12.7498 +▁Chopin -12.7499 +▁rhino -12.7499 +desimal -12.7504 +▁roar -12.7505 +▁Dracula -12.7507 +▁follicle -12.7507 +▁cognition -12.7507 +hiko -12.7507 +▁Woodstock -12.7509 +▁factual -12.7512 +Olivier -12.7514 +▁unintentional -12.7517 +▁ekzadesimal -12.7517 +▁microscopy -12.7517 +▁Robbins -12.7517 +▁puck -12.7526 +▁Oracle -12.7527 +▁devout -12.7527 +▁Kruger -12.7528 +▁interned -12.7528 +▁MiG -12.7533 +▁Rowan -12.7533 +▁Haf -12.7533 +▁crisp -12.7534 +ACE -12.7537 +▁(2003) -12.7537 +▁Gómez -12.7537 +▁tumour -12.7537 +▁citrus -12.7537 +▁solemn -12.7538 +▁respiration -12.7545 +▁Bypass -12.7546 +▁Lorraine -12.7547 +▁TARDIS -12.7547 +▁dissatisfaction -12.7547 +▁taxonomy -12.7547 +▁sliding -12.7547 +▁Sherlock -12.7548 +▁comfortably -12.7549 +▁Darling -12.755 +▁Sector -12.7552 +fòm -12.7556 +▁Ordnance -12.7557 +▁Amateur -12.7557 +▁recycle -12.7558 +▁Tikal -12.7558 +AST -12.7559 +▁Bohr -12.7559 +▁blot -12.756 +▁cleanup -12.756 +▁Wicca -12.7561 +changing -12.7567 +▁Epsilon -12.7567 +▁fascination -12.7567 +▁Raphael -12.7567 +▁lobster -12.7567 +▁bulge -12.7568 +▁baker -12.7568 +▁meander -12.7568 +▁torment -12.7569 +▁mulch -12.7569 +▁Gabrielle -12.757 +▁Shape -12.7573 +ERT -12.7573 +▁boron -12.7574 +▁bureau -12.7577 +▁Hernández -12.7577 +▁Artemis -12.7577 +▁Frankenstein -12.7579 +▁domesticated -12.758 +▁floral -12.7581 +▁bacon -12.7583 +30,000 -12.7584 +employ -12.7584 +▁Mussolini -12.7588 +▁propagation -12.7588 +र -12.7588 +▁childbirth -12.7588 +▁caudal -12.7588 +▁Laguna -12.7588 +Televisa -12.7588 +▁Miracle -12.7588 +▁palp -12.759 +▁silica -12.759 +▁contour -12.7591 +2006 -12.7591 +▁Morrow -12.7594 +Why -12.7596 +▁Harlan -12.7596 +▁admire -12.7597 +▁Claudius -12.7598 +▁Migration -12.7598 +▁breastfeeding -12.7598 +▁caricature -12.7598 +▁wizard -12.7598 +▁unequal -12.7598 +▁unlawful -12.7598 +▁Defender -12.7599 +archive -12.7604 +▁pacing -12.7606 +Baptiste -12.7607 +▁Coventry -12.7608 +▁conjecture -12.7608 +▁dessert -12.7608 +▁Rahman -12.7616 +▁oxidative -12.7618 +▁predominate -12.7618 +▁hurdle -12.7618 +▁Eurovision -12.7618 +▁accountability -12.7619 +▁Punch -12.762 +otti -12.7628 +▁Doris -12.7628 +↑ -12.7628 +▁controversies -12.7628 +▁northerly -12.7629 +▁offended -12.7629 +integration -12.7636 +▁marathon -12.7638 +▁Atkinson -12.7638 +▁freelance -12.7641 +▁Morph -12.7645 +rkham -12.7647 +▁illumination -12.7648 +▁Coronation -12.7649 +▁pivot -12.7651 +▁delightful -12.7651 +▁Cobra -12.7655 +▁Frederic -12.7655 +ン -12.7659 +▁aggregator -12.7659 +▁souvenir -12.7659 +▁befriended -12.7659 +▁forbade -12.7659 +▁Classroom -12.7661 +▁Messiah -12.7661 +▁Sirius -12.7661 +▁Gaspar -12.7663 +▁Scientist -12.7663 +shock -12.7664 +▁treasurer -12.7665 +ARP -12.7665 +▁Wainwright -12.7669 +▁commune -12.7669 +▁dissertation -12.7669 +▁interconnected -12.7669 +▁nymph -12.7669 +▁drape -12.7672 +▁showrunner -12.7673 +▁hopeful -12.7673 +▁restrictive -12.7673 +▁ansyen -12.7674 +▁Malik -12.7678 +▁Andromeda -12.7679 +▁embarrassed -12.7679 +▁Schwarz -12.7679 +▁Nathaniel -12.768 +▁Smile -12.7684 +▁acquainted -12.7689 +▁resurgence -12.7689 +▁Rabaul -12.7689 +▁aerodynamic -12.7689 +▁Kerrigan -12.7689 +▁Osborne -12.769 +▁Bacteria -12.769 +▁backlash -12.769 +66667 -12.7696 +▁Burnett -12.7696 +▁approximation -12.77 +▁Loyola -12.77 +▁Speedway -12.7701 +▁Jensen -12.7702 +when -12.7704 +million -12.7706 +gyn -12.7709 +production -12.771 +▁logarithm -12.771 +▁Murdoch -12.771 +▁crippled -12.771 +▁obituary -12.771 +▁redundant -12.771 +▁epoch -12.771 +aeus -12.7711 +▁noteworthy -12.7711 +▁Wilderness -12.7712 +▁Insect -12.7714 +eanu -12.7716 +▁continual -12.772 +ر -12.772 +▁Celebration -12.772 +▁monologue -12.772 +▁Pusan -12.7721 +▁minimise -12.7721 +▁knockout -12.7723 +▁graceful -12.7724 +▁sedimentary -12.7726 +▁confesses -12.7728 +ACT -12.7729 +▁Juvenile -12.773 +▁rallied -12.773 +▁Arjona -12.7741 +▁extravagant -12.7741 +▁gimmick -12.7741 +ω -12.7741 +▁Ezra -12.7741 +▁Revolt -12.7741 +▁Judas -12.7741 +▁Zeta -12.7746 +▁hinge -12.775 +▁BMI -12.7751 +▁Bournemouth -12.7751 +▁preclude -12.7751 +▁pwofesè -12.7751 +▁transgender -12.7751 +▁Asylum -12.7751 +▁stingray -12.7752 +▁Collector -12.7757 +▁recharge -12.7759 +▁Maverick -12.7761 +▁arranging -12.7761 +▁galactic -12.7761 +▁Purdue -12.7761 +▁podcast -12.7762 +▁fingerprint -12.7762 +▁Programming -12.7764 +▁rotor -12.7765 +chloro -12.7766 +▁Huang -12.7771 +▁entrenched -12.7771 +▁incompatible -12.7771 +▁Sixteen -12.7771 +▁puncture -12.7771 +▁genomic -12.7772 +▁Silicon -12.7772 +▁biochemical -12.7772 +▁Weld -12.7773 +▁reckless -12.7783 +▁biopsy -12.7785 +▁signalling -12.7788 +ær -12.7789 +▁Babylonian -12.7789 +respond -12.7791 +▁Bullet -12.7791 +▁Euclid -12.7792 +▁Manufacture -12.7792 +▁Susquehanna -12.7792 +▁invaluable -12.7792 +▁deportation -12.7792 +▁avatar -12.7792 +▁Transfer -12.7796 +▁Release -12.7798 +index -12.78 +β -12.7801 +▁geologic -12.7802 +▁Lebanese -12.7802 +▁depletion -12.7802 +▁Memoir -12.7803 +▁Falun -12.7803 +uzu -12.7803 +▁commencement -12.7805 +▁Absolute -12.7813 +▁embracing -12.7813 +▁nurture -12.7813 +▁Awareness -12.7813 +▁testament -12.7813 +▁Simeon -12.7814 +▁conscription -12.7815 +▁slain -12.7816 +▁hypothesized -12.7818 +▁anecdote -12.7823 +▁defunct -12.7823 +▁buffalo -12.7823 +▁petrel -12.7824 +▁Chatham -12.7826 +▁halves -12.7826 +▁sidewalk -12.783 +▁Bernie -12.783 +▁raccoon -12.7834 +▁café -12.7834 +▁yarn -12.7834 +pozisyon -12.7834 +▁Andersen -12.7834 +▁Watkins -12.7834 +▁pellet -12.7834 +Institut -12.7835 +▁Electoral -12.7839 +▁vaginal -12.7841 +▁constructive -12.7843 +▁Enrico -12.7844 +▁splendid -12.7844 +▁crucifix -12.7844 +▁Sufi -12.7844 +▁Cream -12.7845 +▁Renault -12.7845 +▁revolutionaries -12.7845 +▁patrolled -12.7848 +▁VRS -12.785 +▁termination -12.7851 +▁repository -12.7854 +▁Latvia -12.7855 +▁Oakley -12.7862 +▁backbone -12.7863 +▁Goebbels -12.7865 +▁grunge -12.7865 +▁Kaufman -12.7865 +▁Nightmare -12.7865 +▁Fluor -12.7865 +▁Naomi -12.7867 +▁Jolie -12.787 +ième -12.7872 +haven -12.7874 +¥ -12.7875 +▁decomposition -12.7875 +▁bisexual -12.7876 +▁Aleppo -12.7886 +▁Hannibal -12.7886 +▁stylized -12.7886 +▁Embr -12.7886 +▁commute -12.7886 +▁Daisy -12.7886 +▁blaze -12.7888 +▁Patent -12.7888 +▁fireworks -12.7891 +▁Achilles -12.7896 +▁scaling -12.7896 +▁scarcity -12.7896 +▁Burlington -12.7897 +▁Landscape -12.7897 +▁coronary -12.7898 +▁coexist -12.7899 +▁Moreau -12.7906 +support -12.7906 +▁Presentation -12.7906 +▁Athlete -12.7906 +▁automation -12.7906 +▁vacated -12.7906 +▁clump -12.7907 +embra -12.7911 +▁Wilkes -12.7914 +▁Certificate -12.7917 +▁Jubilee -12.7917 +▁Mackenzie -12.7917 +▁deficient -12.7917 +▁embarrassment -12.7917 +▁ghetto -12.7917 +▁Rudolph -12.7927 +▁resupply -12.7927 +▁undesirable -12.7927 +▁overcoming -12.7928 +▁Granada -12.7929 +▁cornerstone -12.7932 +▁fragrance -12.7938 +▁frightening -12.7938 +▁shingle -12.7938 +▁ponies -12.7938 +▁Crook -12.7938 +▁Shearer -12.7938 +bbling -12.794 +▁Naruto -12.7942 +▁Monsieur -12.7948 +▁stairway -12.7948 +▁Narayan -12.7949 +▁Chev -12.7949 +▁Melody -12.7949 +history -12.795 +▁Wife -12.7954 +▁arithmetic -12.7959 +▁bureaucracy -12.7959 +▁upbringing -12.7959 +▁insignia -12.7959 +▁lottery -12.7959 +▁dunes -12.7959 +▁Winthrop -12.796 +▁Argon -12.7961 +▁bidding -12.7963 +atomic -12.7963 +▁capsized -12.7963 +▁encore -12.7964 +▁pact -12.797 +pulse -12.7974 +▁Shakur -12.7974 +▁Gamma -12.7975 +▁disclose -12.7977 +▁Dunham -12.7977 +▁amplitude -12.798 +▁aerobic -12.798 +▁toujou -12.798 +▁obverse -12.7981 +▁Tristan -12.7981 +▁rumour -12.7982 +▁Fellowship -12.7982 +▁meteorite -12.7983 +▁Martel -12.7984 +neurotransmitter -12.799 +▁Gilmour -12.799 +▁Monastery -12.799 +▁yogurt -12.799 +▁strife -12.799 +▁agitation -12.7991 +▁rehearse -12.7991 +▁Countess -12.7992 +▁motte -12.7995 +▁diode -12.7997 +▁Suzanne -12.8001 +▁pornography -12.8001 +▁Estimates -12.8001 +▁floss -12.8001 +▁commentaries -12.8002 +▁Patrice -12.8002 +▁empath -12.8003 +ombre -12.8005 +▁Gig -12.8009 +▁Metz -12.8011 +▁Giuseppe -12.8012 +▁Revenue -12.8012 +▁resilient -12.8012 +▁unrealistic -12.8012 +▁constrained -12.8012 +▁Anything -12.8012 +▁italyen -12.8012 +▁inventive -12.8012 +▁Joanna -12.8013 +▁Léo -12.8016 +RES -12.8019 +Č -12.8022 +▁Sihanouk -12.8022 +▁obsessive -12.8022 +▁whatsoever -12.8022 +▁Intervention -12.8023 +▁Sumner -12.8026 +▁Yuri -12.8026 +▁pronounce -12.8032 +▁Amtrak -12.8033 +▁Especially -12.8033 +▁authoritative -12.8033 +▁Île -12.8033 +▁Goodbye -12.8033 +education -12.8033 +▁temptation -12.8033 +▁tracing -12.8034 +▁Boulder -12.8035 +▁Jaime -12.8035 +▁rebelled -12.8035 +▁cheerful -12.8036 +▁tramp -12.8036 +▁rooftop -12.8036 +▁Burnley -12.8038 +▁converse -12.8039 +▁Marceline -12.804 +▁Karma -12.8041 +▁psyche -12.8042 +▁Britannia -12.8043 +▁proprietary -12.8043 +▁théâtre -12.8043 +▁Liszt -12.8043 +▁Northampton -12.8044 +▁Msye -12.8046 +▁Liao -12.8047 +▁deviate -12.8049 +▁palette -12.8051 +▁arsenal -12.8054 +▁endowment -12.8054 +▁regroup -12.8054 +▁Getty -12.8054 +▁charismatic -12.8054 +▁scribe -12.806 +▁respectful -12.8064 +threatening -12.8064 +▁Chevalier -12.8065 +▁Platform -12.8065 +▁Ptolemy -12.8065 +▁festivities -12.8065 +▁milligrams -12.8065 +▁Position -12.8065 +▁Neck -12.8065 +▁mindfulness -12.8066 +▁Denny -12.807 +▁Requiem -12.8075 +▁aboriginal -12.8075 +▁collapsing -12.8075 +▁curvature -12.8075 +▁subdivided -12.8075 +▁culmination -12.8075 +▁necklace -12.8075 +▁Adolph -12.8075 +▁rhetorical -12.8076 +▁Leaving -12.8077 +▁Grange -12.8084 +▁Abstract -12.8086 +▁geothermal -12.8086 +▁ivory -12.8086 +▁Opinion -12.8086 +▁interruption -12.8086 +hydro -12.8087 +▁vinegar -12.8087 +usually -12.8088 +▁seminal -12.809 +▁Smallville -12.8091 +Comp -12.8091 +▁horseback -12.8093 +▁Orico -12.8095 +phase -12.8096 +▁picket -12.8096 +▁dissident -12.8096 +▁impractical -12.8096 +▁sedentary -12.8096 +▁stubborn -12.8097 +▁Resort -12.8097 +▁Beaumont -12.8097 +▁Gilligan -12.8098 +▁Bavarian -12.8099 +▁Phonographi -12.81 +▁predate -12.8104 +purpose -12.8104 +▁Broadcast -12.8105 +▁Balance -12.8105 +▁Caliph -12.8106 +▁Vanderbilt -12.8107 +▁pancreatic -12.8107 +▁urgency -12.8107 +▁miniseries -12.8107 +▁Yardley -12.8111 +▁narrate -12.8114 +▁convent -12.8114 +▁Argyll -12.8118 +▁Believing -12.8118 +▁Defensive -12.8118 +▁ambiguity -12.8118 +▁fluctuate -12.8118 +▁Exposure -12.8118 +▁intolerance -12.8118 +cutaneous -12.8118 +▁besieg -12.812 +▁palate -12.8121 +▁Freddy -12.8122 +▁chieftain -12.8124 +▁Imam -12.8124 +▁Richter -12.8125 +▁mitochondria -12.8125 +▁alienated -12.8125 +▁USGS -12.8125 +▁Prefecture -12.8128 +▁grievance -12.8128 +▁oxidize -12.8128 +▁chèf -12.8128 +▁Ebola -12.8129 +quarter -12.8129 +▁Viscount -12.8129 +QU -12.8129 +▁coupling -12.813 +▁Marqu -12.8132 +▁tipped -12.8132 +▁Hilary -12.8133 +▁fabricated -12.8134 +▁posthumous -12.8139 +▁Properties -12.8139 +▁Darryl -12.8139 +▁sympathize -12.8139 +access -12.814 +▁Burgess -12.8141 +▁lush -12.8146 +▁Loft -12.8148 +▁migrating -12.815 +▁incubation -12.815 +▁Pentagon -12.815 +regulation -12.8151 +▁panned -12.8153 +▁Ryder -12.8154 +▁waking -12.8154 +▁vertebra -12.8157 +▁Bordeaux -12.8161 +▁Honolulu -12.8161 +▁Literacy -12.8161 +▁currencies -12.8161 +▁enforcing -12.8161 +▁menstrual -12.8161 +▁Coleridge -12.8161 +▁canonical -12.8166 +▁Explore -12.8168 +▁relapse -12.8168 +▁Dubrovnik -12.8171 +▁aircrew -12.8171 +▁bandwidth -12.8171 +▁cloverleaf -12.8171 +▁mujer -12.8171 +▁Pickett -12.8173 +osaurs -12.8175 +▁postpone -12.8179 +▁Moul -12.818 +▁Hybrid -12.8182 +▁Physician -12.8182 +▁fizisyen -12.8182 +▁Determine -12.8182 +▁Weinberg -12.8182 +▁maladi -12.8183 +▁Examination -12.8193 +▁balcony -12.8193 +▁Patti -12.8193 +▁purification -12.8195 +▁Discussion -12.8201 +▁Junta -12.8203 +▁Juliette -12.8204 +▁proxy -12.8204 +▁Household -12.8205 +▁Macmillan -12.8214 +▁sequential -12.8214 +▁Maximilian -12.8214 +region -12.822 +positive -12.8224 +▁Electricity -12.8225 +▁Cameroon -12.8225 +▁Exodus -12.8225 +▁brittle -12.8225 +▁mollusc -12.8225 +▁thorium -12.8225 +▁vengeance -12.8225 +▁myriad -12.8225 +▁Prescott -12.8225 +▁Autism -12.8225 +▁socioeconomic -12.8225 +▁Marianne -12.8226 +▁cuticle -12.8228 +▁maze -12.8229 +▁madness -12.8232 +▁shootout -12.8234 +▁Quincy -12.8236 +soluble -12.8237 +‐ -12.8237 +▁molten -12.8237 +▁Galland -12.824 +talled -12.8246 +▁Faulkner -12.8247 +▁Kolkata -12.8247 +▁criterion -12.8247 +▁qualifier -12.8247 +▁refrigerator -12.8247 +▁Filmfare -12.8247 +▁graphite -12.8252 +▁Heinz -12.8253 +י -12.8258 +▁Huffington -12.8258 +▁Joachim -12.8258 +▁Roddenberry -12.8258 +▁cushion -12.8258 +▁observance -12.8258 +▁preparatory -12.8258 +▁sprinkle -12.8258 +▁strait -12.8258 +▁Accept -12.8258 +setting -12.826 +▁Beirut -12.8268 +▁McCormick -12.8268 +▁judging -12.8268 +▁revolving -12.8268 +▁foreground -12.8269 +▁pinpoint -12.827 +▁quell -12.8274 +▁Divide -12.8276 +▁Worst -12.8277 +▁unearthed -12.8279 +▁savanna -12.8279 +▁superseded -12.8279 +terdisciplinary -12.8279 +▁External -12.8279 +▁Gibbons -12.828 +AIDS -12.8281 +▁Expect -12.8282 +▁Exploration -12.829 +▁annoyed -12.829 +▁estimating -12.829 +▁vocational -12.829 +▁reagent -12.829 +sphere -12.829 +▁Frozen -12.829 +▁(2013) -12.8291 +▁Sofia -12.8292 +▁Hassan -12.8295 +▁Platoon -12.8297 +enfant -12.8299 +▁Aubrey -12.8301 +▁Integrated -12.8301 +▁educating -12.8301 +▁stipulated -12.8301 +▁sèlman -12.8301 +▁Brennan -12.8301 +▁impersonat -12.8302 +▁Trustees -12.8307 +▁colonize -12.8308 +▁conceive -12.831 +▁Hezbollah -12.8312 +▁Rodrigo -12.8312 +▁Sunshine -12.8312 +▁accredited -12.8312 +▁inaccessible -12.8312 +▁Cushing -12.8312 +▁Hearst -12.8312 +▁cocktail -12.8312 +▁Beckham -12.8315 +▁expire -12.8319 +▁brutality -12.8319 +▁Appendix -12.8323 +▁Phyllis -12.8323 +▁Tribunal -12.8323 +▁refurbished -12.8323 +▁suspense -12.8323 +▁Stamford -12.8323 +▁Herrera -12.8323 +▁tropics -12.8323 +▁worthwhile -12.8323 +family -12.8323 +▁Console -12.8323 +▁Jewel -12.8326 +electro -12.8328 +▁Chevrolet -12.8334 +▁Springsteen -12.8334 +▁Townshend -12.8334 +▁speculative -12.8334 +▁bounty -12.8334 +▁elusive -12.8334 +▁Cinque -12.8334 +shark -12.8334 +▁underparts -12.8334 +▁firepower -12.8339 +1000 -12.834 +▁Panther -12.8341 +2005 -12.8342 +EAR -12.8345 +▁Assistance -12.8345 +▁Mendoza -12.8345 +▁pibliye -12.8345 +▁unopposed -12.8345 +▁Weinstein -12.8345 +▁cyclonic -12.8345 +▁Sparrow -12.8346 +▁noticeably -12.8348 +kòz -12.8353 +▁Navajo -12.8356 +▁psoriasis -12.8356 +▁Epidemi -12.8356 +▁clown -12.8357 +Univers -12.8357 +▁Chou -12.8358 +ggling -12.8364 +▁Messenger -12.8366 +▁PTSD -12.8366 +▁contagious -12.8366 +▁hormonal -12.8366 +▁Ganesha -12.8366 +▁Ramayana -12.8366 +▁blister -12.8367 +photo -12.8368 +▁annex -12.8368 +▁Belmont -12.8369 +▁Digest -12.8371 +▁Ballet -12.8375 +führer -12.8377 +▁Mosquito -12.8377 +▁prerogative -12.8377 +▁reorganization -12.8377 +▁vaccinated -12.8377 +▁Details -12.8378 +▁prioritize -12.8379 +▁Sharma -12.8381 +▁Lehman -12.8382 +▁Trois -12.8383 +▁err -12.8384 +▁Patch -12.8387 +▁Gonzalez -12.8388 +▁reliably -12.8388 +▁shrew -12.8388 +▁variance -12.8388 +▁Tillman -12.8389 +▁bootleg -12.8389 +▁dependency -12.839 +▁hype -12.8392 +Game -12.8395 +▁Mathematical -12.8399 +▁smuggling -12.8399 +▁tranquil -12.8399 +▁adherents -12.8399 +▁shortstop -12.84 +issue -12.8401 +▁Affair -12.8404 +▁condemnation -12.8406 +▁Pharaoh -12.841 +▁pinfall -12.8412 +▁Mizik -12.8412 +▁Zappa -12.8412 +▁subgroup -12.8413 +▁Elector -12.8415 +▁viability -12.8416 +northernmost -12.8421 +▁Villeneuve -12.8421 +▁Hotspur -12.8421 +▁Typical -12.8422 +trix -12.8425 +▁petty -12.8431 +ý -12.8432 +▁Mendelssohn -12.8432 +▁constipation -12.8432 +▁sensible -12.8432 +▁Namibia -12.8432 +ström -12.8432 +▁Nikki -12.8436 +▁Acapulco -12.8443 +▁undisclosed -12.8443 +▁Eternal -12.8443 +▁crank -12.8444 +▁Zika -12.8445 +▁Darlington -12.8446 +bush -12.8447 +▁Roz -12.8452 +▁rude -12.8452 +ornith -12.8452 +ệ -12.8454 +▁Syndicate -12.8454 +▁angrily -12.8454 +▁cataract -12.8454 +▁Worksheet -12.8455 +▁apostle -12.8456 +▁disruptive -12.8459 +design -12.8465 +▁veterinary -12.8465 +▁Stratford -12.8465 +▁Dewey -12.8466 +▁womb -12.8469 +▁Curse -12.847 +▁volley -12.8476 +▁Goddard -12.8477 +▁inference -12.8477 +▁goodbye -12.8477 +▁beacon -12.8478 +population -12.848 +▁Andhra -12.8481 +▁Kriegsmarine -12.8488 +▁pwodiksyon -12.8488 +・ -12.8488 +▁collagen -12.8488 +▁measles -12.8488 +▁Toulon -12.8488 +▁Deacon -12.8488 +▁Ledger -12.8488 +▁marred -12.8492 +▁Biscay -12.8499 +▁intervening -12.8499 +▁Snap -12.8499 +▁inorganic -12.8499 +▁whereabouts -12.8499 +Henri -12.8501 +▁colourful -12.8509 +▁Djokovic -12.851 +▁Literati -12.851 +▁apocalyptic -12.851 +▁hydroxide -12.851 +▁hottest -12.8513 +▁endanger -12.8521 +▁Helsinki -12.8521 +▁Repiblik -12.8521 +▁nutritious -12.8521 +▁optimum -12.8521 +▁pedestal -12.8521 +▁wiring -12.8521 +▁Abuse -12.8522 +▁Poems -12.8522 +▁yolk -12.8523 +▁Whitlam -12.8523 +▁Spiritual -12.8523 +▁Brahman -12.8527 +▁Immigration -12.8532 +▁Relationship -12.8532 +▁parodied -12.8532 +▁sulfide -12.8532 +▁Maintain -12.8535 +torrential -12.8535 +▁Pepsi -12.8536 +▁Obviously -12.8543 +▁proficiency -12.8543 +▁Nellie -12.8543 +▁Athena -12.8544 +▁ripped -12.8544 +π -12.8546 +▁informative -12.8548 +▁unprotected -12.8554 +▁cessation -12.8554 +▁prowess -12.8554 +▁xenon -12.8554 +▁carcinogen -12.8555 +▁Hammerstein -12.8555 +▁lantern -12.8555 +punct -12.8556 +communication -12.8563 +▁Bitcoin -12.8565 +▁abbreviation -12.8565 +▁pervasive -12.8565 +▁serotonin -12.8565 +▁Dixie -12.8565 +▁tyrant -12.8566 +▁kilowatt -12.8566 +▁Putnam -12.8566 +▁Strom -12.8566 +▁Bravo -12.8575 +azine -12.8576 +▁Pasadena -12.8577 +▁Tyrannosaurus -12.8577 +▁exploding -12.8577 +▁fledgling -12.8577 +▁illustrating -12.8577 +▁neutrino -12.8577 +▁irrational -12.8577 +▁Goebel -12.8577 +▁Anchor -12.8577 +▁sidelined -12.8577 +▁grading -12.8577 +Ō -12.8588 +▁sauropod -12.8588 +▁montage -12.8588 +▁Yeats -12.8588 +▁shotgun -12.8592 +▁Tradition -12.8592 +833333 -12.8594 +▁_____ -12.8595 +▁doubtful -12.8599 +▁Restaurant -12.8599 +▁reclassified -12.8599 +▁unaffected -12.8599 +▁Mustaine -12.8599 +▁deadliest -12.8599 +▁apologise -12.8599 +▁Hammersmith -12.8599 +▁Dockyard -12.8599 +▁Tali -12.8602 +(4) -12.8604 +▁Yosemite -12.861 +▁figurine -12.861 +▁invariably -12.861 +▁gorilla -12.861 +▁locating -12.861 +▁surpass -12.8611 +▁Peterborough -12.8613 +▁supervise -12.8618 +▁Codex -12.862 +▁Clément -12.8621 +▁Ideas -12.8622 +▁drumming -12.8623 +▁blueprint -12.8624 +ADT -12.8624 +▁confine -12.8628 +cancer -12.8632 +▁Mamluk -12.8633 +▁caliph -12.8633 +▁Jessie -12.8635 +▁McCull -12.8635 +saturated -12.8636 +▁outweigh -12.8637 +▁UFO -12.8641 +▁chimpanzee -12.8644 +▁phenotype -12.8644 +▁Enhance -12.8644 +▁crescent -12.8645 +▁Catalan -12.8646 +▁monograph -12.8649 +ceps -12.8654 +black -12.8655 +▁gossip -12.8655 +▁bedrock -12.8656 +program -12.8662 +▁hurried -12.8666 +▁recurrence -12.8666 +▁Fifty -12.8666 +▁Bourbon -12.8667 +material -12.867 +▁Expression -12.8675 +▁McLean -12.8678 +▁Middlesbrough -12.8678 +▁terrifying -12.8678 +▁exquisite -12.8678 +▁impetus -12.8678 +▁rigging -12.8679 +▁equatorial -12.8679 +▁taunt -12.8683 +▁detox -12.8684 +▁Amherst -12.8689 +▁McNamara -12.8689 +▁equestrian -12.8689 +▁gigantic -12.8689 +▁perpetuate -12.8689 +▁cobalt -12.8689 +▁initiating -12.8689 +▁tread -12.8691 +▁Yuki -12.8691 +▁MacLeod -12.87 +▁tangible -12.87 +▁indicted -12.8702 +▁pumpkin -12.8702 +▁Tonga -12.8703 +▁rampant -12.8707 +▁petrol -12.8708 +disqualification -12.8712 +▁aggregation -12.8712 +▁impoverished -12.8712 +++ -12.8713 +▁Firm -12.8713 +▁verification -12.8714 +▁Diefenbaker -12.8723 +▁adhesive -12.8723 +▁Ortiz -12.8723 +▁Lumpur -12.8724 +▁SAFE -12.8724 +▁Sherwood -12.8725 +▁Ernie -12.8725 +▁complimentary -12.8725 +▁Paige -12.8726 +▁Alternate -12.8734 +▁Welfare -12.8734 +▁demolish -12.8737 +▁firefight -12.8737 +▁rations -12.874 +▁exponent -12.8745 +▁Gruppe -12.8746 +▁poignant -12.8746 +▁Glorious -12.8746 +▁octagonal -12.8746 +▁restructuring -12.8746 +▁tertiary -12.8746 +▁uncredited -12.8746 +ος -12.8746 +▁Christchurch -12.8746 +▁sinister -12.8747 +▁Diesel -12.8748 +▁Surf -12.875 +▁espionage -12.8757 +▁suicidal -12.8757 +▁tackling -12.8757 +♯ -12.8757 +▁Waffen -12.8757 +▁miserable -12.8757 +▁Bentley -12.8757 +▁precedence -12.8757 +▁slump -12.8757 +hedral -12.876 +Script -12.876 +▁muddy -12.8761 +▁Fidel -12.8764 +▁acronym -12.8769 +▁caravan -12.8769 +▁Kyoto -12.8769 +while -12.8771 +▁fetal -12.8773 +▁Transition -12.8778 +▁contractual -12.8779 +▁Maintenance -12.878 +▁carnival -12.878 +▁interfering -12.878 +▁Cavalier -12.878 +▁inflated -12.8781 +approx -12.8781 +▁Friendship -12.8781 +▁Israelites -12.8786 +▁strata -12.8787 +▁60% -12.8791 +▁Comparison -12.8791 +▁foreshadow -12.8791 +▁graffiti -12.8791 +▁Armistice -12.8791 +▁sprawl -12.8791 +▁MHz -12.8791 +▁Geography -12.8794 +▁Rockstar -12.8795 +▁Barrichello -12.8803 +▁Orioles -12.8803 +▁quarantine -12.8803 +ル -12.8803 +▁Remote -12.8803 +▁meteorological -12.8804 +ILL -12.8804 +▁Sargent -12.8805 +▁Hydra -12.8805 +General -12.8807 +▁Croix -12.8807 +▁radiate -12.8807 +▁collier -12.8808 +▁capacitor -12.8814 +▁miraculous -12.8814 +▁whisper -12.8814 +▁forerunner -12.8814 +▁curricula -12.8815 +▁graze -12.8818 +children -12.8819 +▁avenge -12.882 +▁Remove -12.882 +ković -12.8821 +▁shave -12.8824 +▁Maharashtra -12.8826 +▁Myanmar -12.8826 +▁SummerSlam -12.8826 +▁Surgeon -12.8826 +▁Broncos -12.8826 +▁Wreck -12.8826 +▁zoologist -12.8826 +▁Guill -12.8828 +▁happier -12.8837 +▁Constable -12.8837 +▁Alexios -12.8837 +▁emancipation -12.8838 +▁calves -12.884 +▁Megade -12.8843 +▁resonate -12.8844 +▁Moravia -12.8844 +▁neutralize -12.8846 +▁Territories -12.8849 +▁utmost -12.8849 +▁Terminator -12.8849 +▁CMLL -12.8849 +▁nasty -12.8849 +▁Chakra -12.8851 +▁refitted -12.8852 +▁Brenda -12.8852 +▁Painting -12.8855 +▁Axel -12.8856 +▁randomized -12.8856 +▁Carnival -12.886 +▁apartheid -12.886 +▁Donovan -12.886 +▁resented -12.886 +▁Adrien -12.8864 +kumar -12.8868 +▁Château -12.8872 +▁Nuremberg -12.8872 +▁dynasties -12.8872 +▁laundry -12.8872 +▁stalemate -12.8872 +▁Celsius -12.8872 +▁endowed -12.8872 +▁persistence -12.8874 +▁Update -12.8881 +▁Herodotus -12.8883 +▁miscarriage -12.8883 +▁oscillation -12.8883 +▁translucent -12.8883 +▁madanm -12.8883 +▁Convoy -12.8883 +▁concise -12.8883 +▁meningitis -12.8883 +▁allotted -12.8883 +▁aprè -12.8886 +▁Domain -12.8889 +▁Ethel -12.8892 +Khánh -12.8895 +▁Tobacco -12.8895 +▁tabloid -12.8895 +▁intruder -12.8895 +▁Whitehall -12.8899 +▁analyse -12.8905 +▁Cornelius -12.8906 +▁Hélène -12.8906 +▁Immortal -12.8906 +▁Pulitzer -12.8906 +▁barrister -12.8906 +▁rectangle -12.8906 +▁Whistle -12.8906 +▁artifact -12.8908 +▁IoT -12.8908 +▁Promise -12.8912 +▁eyesight -12.8913 +▁creditors -12.8914 +▁Memories -12.8918 +▁caucus -12.8918 +▁multiplied -12.8918 +φ -12.8918 +▁antelope -12.8918 +▁skepticism -12.8919 +▁analogue -12.8919 +▁Citation -12.892 +▁revise -12.8923 +▁Weekend -12.8923 +ferential -12.8927 +narky -12.8929 +▁Gravity -12.8929 +▁eclectic -12.8929 +▁Infinity -12.8929 +▁Oasis -12.893 +▁(2000) -12.893 +▁Maratha -12.8932 +▁Filip -12.8934 +CHA -12.8938 +▁ekspresyon -12.8941 +▁interstellar -12.8941 +▁trophies -12.8941 +▁Botanical -12.8941 +▁Zimmerman -12.8941 +▁stereotypical -12.8941 +▁Staffordshire -12.8941 +▁Volcano -12.8942 +lleging -12.8942 +▁Perrin -12.8948 +▁(2001) -12.8953 +▁Difficult -12.8953 +▁emergencies -12.8953 +▁advising -12.8953 +▁purse -12.8953 +▁mucus -12.8955 +▁Gotham -12.8957 +▁articulate -12.8961 +état -12.8964 +▁prognosis -12.8964 +▁Relative -12.8964 +▁Barracks -12.8964 +▁riddle -12.8966 +▁Anglesey -12.8966 +▁gloom -12.8967 +▁jerk -12.8967 +▁peroxide -12.8968 +▁Thief -12.8969 +▁Medicare -12.8976 +▁disintegrate -12.8976 +▁susceptibility -12.8976 +▁Octopus -12.8976 +▁reckon -12.8977 +▁Stockport -12.8978 +▁queue -12.8979 +▁devastation -12.8987 +▁melancholy -12.8987 +▁cascade -12.8987 +▁Communities -12.8989 +▁Craven -12.899 +▁Ruben -12.899 +▁hectare -12.8991 +の -12.8999 +▁ovarian -12.8999 +▁unconditional -12.8999 +plen -12.9004 +▁Fingleton -12.9011 +▁Garrison -12.9011 +▁Gladstone -12.9011 +▁apprehend -12.9011 +▁investigative -12.9011 +▁Seminary -12.9011 +▁archaic -12.9011 +▁Slavonia -12.9011 +▁Tanaka -12.9013 +▁Robyn -12.9013 +▁Moderate -12.9014 +▁cornea -12.9022 +▁Freemason -12.9022 +▁swirl -12.9022 +▁Emirates -12.9022 +▁bleak -12.9023 +▁Osaka -12.9023 +▁deacon -12.9023 +▁disciplinary -12.9023 +▁Slide -12.9031 +▁evaporate -12.9034 +▁navigator -12.9034 +▁cougar -12.9034 +▁disdain -12.9034 +▁Marquette -12.9035 +▁orchestration -12.9037 +▁Paolo -12.9037 + write code " +text2 = "myHTTPRequestHandler is calling process_payment_v2" +text3 = "methylphenidate hydrochloride dopamine reuptake modulation" +text4 = "hello 🔥🔥🔥💀💀" +text5 = "https://github.com/Avinash-MiniLLM?tab=repos" + + +print(text1) +print(text2) +print(text3) +print(text4) +print(text5) + +print(tok.tokenize(text1)) +print(tok.tokenize(text2)) +print(tok.tokenize(text3)) +print(tok.tokenize(text4)) +print(tok.tokenize(text5)) + + +ids1 = tok.encode(text1) +ids2 = tok.encode(text2) +ids3 = tok.encode(text3) +ids4 = tok.encode(text4) +ids5 = tok.encode(text5) + +print(ids1) +print(tok.decode(ids1)) +print(tok.decode(ids1, skip_special_tokens=True)) + +print(ids2) +print(tok.decode(ids2)) +print(tok.decode(ids2, skip_special_tokens=True)) + +print(ids3) +print(tok.decode(ids3)) +print(tok.decode(ids3, skip_special_tokens=True)) + +ids4 = tok.encode(text4) +print(ids4) +print(tok.decode(ids4)) +print(tok.decode(ids4, skip_special_tokens=True)) + +ids5 = tok.encode(text5) +print(ids5) +print(tok.decode(ids5)) +print(tok.decode(ids5, skip_special_tokens=True)) \ No newline at end of file diff --git a/Tokenizer/Unigram/tokenizer.json b/Tokenizer/Unigram/tokenizer.json new file mode 100644 index 0000000000000000000000000000000000000000..815784b78f684792b01575b89b0533abeb64d4cb --- /dev/null +++ b/Tokenizer/Unigram/tokenizer.json @@ -0,0 +1,128162 @@ +{ + "version": "1.0", + "truncation": null, + "padding": null, + "added_tokens": [ + { + "id": 0, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 1, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 2, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 3, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 4, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 5, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + }, + { + "id": 6, + "content": "", + "single_word": false, + "lstrip": false, + "rstrip": false, + "normalized": false, + "special": true + } + ], + "normalizer": { + "type": "Sequence", + "normalizers": [ + { + "type": "Replace", + "pattern": { + "String": " " + }, + "content": "▁" + } + ] + }, + "pre_tokenizer": null, + "post_processor": { + "type": "TemplateProcessing", + "single": [ + { + "SpecialToken": { + "id": "", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + } + ], + "pair": [ + { + "SpecialToken": { + "id": "", + "type_id": 0 + } + }, + { + "Sequence": { + "id": "A", + "type_id": 0 + } + }, + { + "SpecialToken": { + "id": "", + "type_id": 1 + } + }, + { + "Sequence": { + "id": "B", + "type_id": 1 + } + } + ], + "special_tokens": { + "": { + "id": "", + "ids": [ + 1 + ], + "tokens": [ + "" + ] + } + } + }, + "decoder": { + "type": "Sequence", + "decoders": [ + { + "type": "Replace", + "pattern": { + "String": "▁" + }, + "content": " " + }, + { + "type": "ByteFallback" + }, + { + "type": "Fuse" + } + ] + }, + "model": { + "type": "Unigram", + "unk_id": 0, + "vocab": [ + [ + "", + 0.0 + ], + [ + "", + 0.0 + ], + [ + "", + 0.0 + ], + [ + "", + 0.0 + ], + [ + "", + 0.0 + ], + [ + "", + 0.0 + ], + [ + "", + 0.0 + ], + [ + "▁the", + -3.0963141918182373 + ], + [ + "▁,", + -3.5177109241485596 + ], + [ + "s", + -3.7199947834014893 + ], + [ + "▁of", + -3.7482521533966064 + ], + [ + "▁.", + -3.8255867958068848 + ], + [ + "▁and", + -3.857097625732422 + ], + [ + "▁to", + -4.037322521209717 + ], + [ + "▁in", + -4.150589466094971 + ], + [ + "▁a", + -4.180783748626709 + ], + [ + ".", + -4.327014923095703 + ], + [ + ",", + -4.396007061004639 + ], + [ + "▁\"", + -4.7831315994262695 + ], + [ + "▁was", + -4.906564235687256 + ], + [ + "▁The", + -5.00486946105957 + ], + [ + "▁that", + -5.0797038078308105 + ], + [ + "▁@", + -5.08933162689209 + ], + [ + "▁for", + -5.117947101593018 + ], + [ + "▁is", + -5.138973236083984 + ], + [ + "▁'", + -5.1663970947265625 + ], + [ + "▁on", + -5.2099833488464355 + ], + [ + "▁", + -5.234116554260254 + ], + [ + "-@", + -5.2564167976379395 + ], + [ + "▁with", + -5.261872291564941 + ], + [ + "▁as", + -5.275145053863525 + ], + [ + "▁(", + -5.318174362182617 + ], + [ + "▁by", + -5.363787651062012 + ], + [ + "▁from", + -5.637099266052246 + ], + [ + "▁)", + -5.694399833679199 + ], + [ + "▁at", + -5.723997116088867 + ], + [ + "▁it", + -5.751924991607666 + ], + [ + "▁his", + -5.812265396118164 + ], + [ + "▁an", + -5.875687599182129 + ], + [ + "▁be", + -5.904623031616211 + ], + [ + "▁are", + -5.91483211517334 + ], + [ + "▁were", + -5.954893589019775 + ], + [ + "ing", + -6.043276309967041 + ], + [ + "▁In", + -6.049866676330566 + ], + [ + "▁he", + -6.08270788192749 + ], + [ + "-", + -6.083621978759766 + ], + [ + "▁:", + -6.095727443695068 + ], + [ + "▁which", + -6.100211143493652 + ], + [ + "▁or", + -6.121440410614014 + ], + [ + "ed", + -6.178064823150635 + ], + [ + "▁had", + -6.192895412445068 + ], + [ + "▁not", + -6.254127502441406 + ], + [ + "▁have", + -6.313887596130371 + ], + [ + "▁their", + -6.346838474273682 + ], + [ + "▁but", + -6.391287803649902 + ], + [ + "▁A", + -6.395340919494629 + ], + [ + "▁this", + -6.416470527648926 + ], + [ + "▁also", + -6.487361431121826 + ], + [ + "e", + -6.4945292472839355 + ], + [ + "d", + -6.515419960021973 + ], + [ + "t", + -6.52058744430542 + ], + [ + "▁one", + -6.530267238616943 + ], + [ + "▁has", + -6.5459160804748535 + ], + [ + "▁I", + -6.5664472579956055 + ], + [ + "▁first", + -6.589102745056152 + ], + [ + "▁they", + -6.611099720001221 + ], + [ + "▁its", + -6.6529130935668945 + ], + [ + "▁who", + -6.666913986206055 + ], + [ + "▁can", + -6.685737133026123 + ], + [ + "▁her", + -6.692861557006836 + ], + [ + "▁been", + -6.696290493011475 + ], + [ + "’", + -6.696981430053711 + ], + [ + "▁–", + -6.7052412033081055 + ], + [ + "▁more", + -6.725776195526123 + ], + [ + "▁two", + -6.753191947937012 + ], + [ + "▁;", + -6.768827438354492 + ], + [ + "▁It", + -6.782229423522949 + ], + [ + ":", + -6.801292419433594 + ], + [ + "▁He", + -6.8069963455200195 + ], + [ + "▁other", + -6.813621997833252 + ], + [ + "▁time", + -6.815725803375244 + ], + [ + "ly", + -6.834264755249023 + ], + [ + "er", + -6.842207908630371 + ], + [ + "▁into", + -6.860194683074951 + ], + [ + "▁you", + -6.867708683013916 + ], + [ + "y", + -6.868719100952148 + ], + [ + "▁-", + -6.870560169219971 + ], + [ + "▁all", + -6.883388519287109 + ], + [ + "▁would", + -6.883445739746094 + ], + [ + ")", + -6.884462833404541 + ], + [ + "th", + -6.918856143951416 + ], + [ + "▁after", + -6.959493637084961 + ], + [ + ".@", + -6.968372821807861 + ], + [ + "▁1", + -6.9773406982421875 + ], + [ + "▁about", + -6.9791340827941895 + ], + [ + "▁when", + -6.979729652404785 + ], + [ + "▁de", + -6.982791423797607 + ], + [ + "▁2", + -6.98375129699707 + ], + [ + "▁over", + -7.001608848571777 + ], + [ + "a", + -7.0246992111206055 + ], + [ + "'", + -7.0259480476379395 + ], + [ + "▁@,@", + -7.027068138122559 + ], + [ + "▁than", + -7.048036575317383 + ], + [ + "▁out", + -7.058576583862305 + ], + [ + "▁nan", + -7.0676188468933105 + ], + [ + "▁up", + -7.074822425842285 + ], + [ + "n", + -7.077160358428955 + ], + [ + "▁This", + -7.103982925415039 + ], + [ + "▁only", + -7.127894401550293 + ], + [ + "▁3", + -7.144087791442871 + ], + [ + "▁most", + -7.1617560386657715 + ], + [ + "▁will", + -7.170936584472656 + ], + [ + "▁new", + -7.222643852233887 + ], + [ + "▁between", + -7.231074333190918 + ], + [ + "▁during", + -7.234288692474365 + ], + [ + "▁such", + -7.238264083862305 + ], + [ + "▁she", + -7.243902206420898 + ], + [ + "▁some", + -7.263447284698486 + ], + [ + "▁them", + -7.269722938537598 + ], + [ + "▁him", + -7.281497001647949 + ], + [ + "o", + -7.305480003356934 + ], + [ + "▁used", + -7.3153181076049805 + ], + [ + "▁so", + -7.34984827041626 + ], + [ + "▁there", + -7.361907005310059 + ], + [ + "▁three", + -7.362116813659668 + ], + [ + "▁5", + -7.366309642791748 + ], + [ + "es", + -7.376835823059082 + ], + [ + "▁where", + -7.377987384796143 + ], + [ + "▁while", + -7.380110740661621 + ], + [ + "▁we", + -7.384244441986084 + ], + [ + "i", + -7.388733386993408 + ], + [ + "▁your", + -7.40526819229126 + ], + [ + "al", + -7.407100677490234 + ], + [ + "▁years", + -7.408265590667725 + ], + [ + "▁made", + -7.411795616149902 + ], + [ + "▁through", + -7.419212818145752 + ], + [ + "▁no", + -7.42366886138916 + ], + [ + "▁may", + -7.4253339767456055 + ], + [ + "▁4", + -7.437719821929932 + ], + [ + "▁people", + -7.443482398986816 + ], + [ + "▁later", + -7.446866989135742 + ], + [ + "m", + -7.449120998382568 + ], + [ + "▁these", + -7.450174808502197 + ], + [ + "▁game", + -7.4568257331848145 + ], + [ + "▁well", + -7.457237720489502 + ], + [ + "▁many", + -7.458804607391357 + ], + [ + "▁year", + -7.459667682647705 + ], + [ + "▁before", + -7.4663214683532715 + ], + [ + "▁“", + -7.470767974853516 + ], + [ + "▁being", + -7.472424030303955 + ], + [ + "▁On", + -7.477887153625488 + ], + [ + "▁New", + -7.483413219451904 + ], + [ + "re", + -7.5230712890625 + ], + [ + "▁then", + -7.537471771240234 + ], + [ + "▁use", + -7.53809118270874 + ], + [ + "▁part", + -7.5586981773376465 + ], + [ + "▁work", + -7.562034606933594 + ], + [ + "in", + -7.569721698760986 + ], + [ + "r", + -7.570559024810791 + ], + [ + "▁could", + -7.575523853302002 + ], + [ + "▁number", + -7.57947301864624 + ], + [ + "▁both", + -7.590356349945068 + ], + [ + "▁S", + -7.597361087799072 + ], + [ + "▁6", + -7.6024909019470215 + ], + [ + "▁like", + -7.61265754699707 + ], + [ + "S", + -7.6138482093811035 + ], + [ + "▁said", + -7.620792388916016 + ], + [ + "▁film", + -7.621272087097168 + ], + [ + "▁B", + -7.625270843505859 + ], + [ + "▁under", + -7.633088111877441 + ], + [ + "▁including", + -7.637454509735107 + ], + [ + "▁against", + -7.6486029624938965 + ], + [ + "▁second", + -7.655612945556641 + ], + [ + "▁As", + -7.656886100769043 + ], + [ + "▁if", + -7.658139228820801 + ], + [ + "▁season", + -7.658463478088379 + ], + [ + "▁do", + -7.658629417419434 + ], + [ + "▁C", + -7.677752494812012 + ], + [ + "▁/", + -7.681495666503906 + ], + [ + "▁000", + -7.686344623565674 + ], + [ + "▁what", + -7.688157558441162 + ], + [ + "▁—", + -7.6982645988464355 + ], + [ + "▁re", + -7.702381134033203 + ], + [ + "▁any", + -7.709089756011963 + ], + [ + "▁10", + -7.7174072265625 + ], + [ + "▁United", + -7.7194366455078125 + ], + [ + ";", + -7.722726345062256 + ], + [ + "▁because", + -7.736915588378906 + ], + [ + "▁became", + -7.741734027862549 + ], + [ + "▁American", + -7.752935886383057 + ], + [ + "▁7", + -7.763317108154297 + ], + [ + "▁After", + -7.763458728790283 + ], + [ + "▁known", + -7.7651262283325195 + ], + [ + "▁day", + -7.767336368560791 + ], + [ + "▁se", + -7.774628639221191 + ], + [ + "▁U", + -7.775085926055908 + ], + [ + "▁=", + -7.792417049407959 + ], + [ + "man", + -7.792989730834961 + ], + [ + "▁found", + -7.795180797576904 + ], + [ + "▁E", + -7.796197414398193 + ], + [ + "▁four", + -7.80266809463501 + ], + [ + "▁did", + -7.802783489227295 + ], + [ + "▁several", + -7.808664798736572 + ], + [ + "▁same", + -7.81341028213501 + ], + [ + "▁8", + -7.816794395446777 + ], + [ + "▁called", + -7.821077346801758 + ], + [ + "?", + -7.82643985748291 + ], + [ + "▁team", + -7.826609134674072 + ], + [ + "▁song", + -7.8302001953125 + ], + [ + "▁series", + -7.832441806793213 + ], + [ + "▁each", + -7.842405796051025 + ], + [ + "▁album", + -7.8430352210998535 + ], + [ + "▁end", + -7.856488227844238 + ], + [ + "▁long", + -7.85706090927124 + ], + [ + "▁early", + -7.860406875610352 + ], + [ + "en", + -7.8609490394592285 + ], + [ + "▁They", + -7.866662502288818 + ], + [ + "▁high", + -7.868906021118164 + ], + [ + "▁M", + -7.869483947753906 + ], + [ + "▁water", + -7.871495246887207 + ], + [ + "▁make", + -7.87555456161499 + ], + [ + "g", + -7.884650230407715 + ], + [ + "▁D", + -7.884975433349609 + ], + [ + "▁back", + -7.885859966278076 + ], + [ + "▁9", + -7.886317253112793 + ], + [ + "/", + -7.888847351074219 + ], + [ + "▁around", + -7.8896965980529785 + ], + [ + "▁how", + -7.8953857421875 + ], + [ + "▁sa", + -7.90102481842041 + ], + [ + "▁system", + -7.908875942230225 + ], + [ + "▁F", + -7.912213325500488 + ], + [ + "▁until", + -7.914092063903809 + ], + [ + "▁At", + -7.9155354499816895 + ], + [ + "k", + -7.9176154136657715 + ], + [ + "▁She", + -7.926065921783447 + ], + [ + "▁began", + -7.939911365509033 + ], + [ + "▁much", + -7.949128150939941 + ], + [ + "▁life", + -7.949610233306885 + ], + [ + "▁very", + -7.950265407562256 + ], + [ + "ers", + -7.950963973999023 + ], + [ + "l", + -7.9545111656188965 + ], + [ + "▁million", + -7.955960273742676 + ], + [ + "▁episode", + -7.957150459289551 + ], + [ + "▁However", + -7.9605302810668945 + ], + [ + "▁world", + -7.963468074798584 + ], + [ + "▁state", + -7.965076446533203 + ], + [ + "▁those", + -7.973834037780762 + ], + [ + "▁way", + -7.975255012512207 + ], + [ + "▁15", + -7.978650093078613 + ], + [ + "▁just", + -7.981820106506348 + ], + [ + "▁P", + -7.987051963806152 + ], + [ + "▁our", + -7.9904656410217285 + ], + [ + "▁For", + -7.993392467498779 + ], + [ + "▁20", + -7.997886657714844 + ], + [ + "▁area", + -8.006641387939453 + ], + [ + "▁12", + -8.007852554321289 + ], + [ + "▁down", + -8.010319709777832 + ], + [ + "▁L", + -8.01096248626709 + ], + [ + "▁off", + -8.013337135314941 + ], + [ + "▁States", + -8.01392936706543 + ], + [ + "▁16", + -8.020013809204102 + ], + [ + "▁yo", + -8.020325660705566 + ], + [ + "▁even", + -8.020537376403809 + ], + [ + "an", + -8.024465560913086 + ], + [ + ").", + -8.031784057617188 + ], + [ + "▁following", + -8.032275199890137 + ], + [ + "▁British", + -8.035344123840332 + ], + [ + "▁$", + -8.041666030883789 + ], + [ + "▁[", + -8.0476713180542 + ], + [ + "▁released", + -8.053400039672852 + ], + [ + "▁G", + -8.053829193115234 + ], + [ + "▁R", + -8.054398536682129 + ], + [ + "▁When", + -8.055447578430176 + ], + [ + "▁own", + -8.062457084655762 + ], + [ + "▁0", + -8.063884735107422 + ], + [ + "us", + -8.070945739746094 + ], + [ + "▁large", + -8.07623291015625 + ], + [ + "▁T", + -8.076992988586426 + ], + [ + "▁li", + -8.07746696472168 + ], + [ + "▁place", + -8.078168869018555 + ], + [ + "▁should", + -8.07880687713623 + ], + [ + "▁17", + -8.087390899658203 + ], + [ + "▁different", + -8.088006019592285 + ], + [ + "st", + -8.089387893676758 + ], + [ + "▁War", + -8.091035842895508 + ], + [ + "▁O", + -8.09246826171875 + ], + [ + "▁yon", + -8.092743873596191 + ], + [ + "▁along", + -8.09311294555664 + ], + [ + "▁May", + -8.093390464782715 + ], + [ + "▁since", + -8.094493865966797 + ], + [ + "▁now", + -8.094828605651855 + ], + [ + "▁World", + -8.098379135131836 + ], + [ + "▁John", + -8.099329948425293 + ], + [ + "▁m", + -8.101500511169434 + ], + [ + "on", + -8.103433609008789 + ], + [ + "▁set", + -8.1064453125 + ], + [ + "or", + -8.111505508422852 + ], + [ + "▁There", + -8.112645149230957 + ], + [ + "▁music", + -8.11454963684082 + ], + [ + "▁group", + -8.1162109375 + ], + [ + "▁century", + -8.121024131774902 + ], + [ + "▁took", + -8.12513256072998 + ], + [ + "▁another", + -8.125389099121094 + ], + [ + "▁September", + -8.128702163696289 + ], + [ + "▁home", + -8.130473136901855 + ], + [ + "c", + -8.130910873413086 + ], + [ + "▁show", + -8.136252403259277 + ], + [ + "▁km", + -8.146515846252441 + ], + [ + "b", + -8.147724151611328 + ], + [ + "▁often", + -8.1505708694458 + ], + [ + "▁five", + -8.15545654296875 + ], + [ + "▁government", + -8.157105445861816 + ], + [ + "▁war", + -8.160797119140625 + ], + [ + "▁city", + -8.161460876464844 + ], + [ + "ic", + -8.165765762329102 + ], + [ + "▁August", + -8.166065216064453 + ], + [ + "▁men", + -8.168486595153809 + ], + [ + "▁single", + -8.16939926147461 + ], + [ + "▁still", + -8.171603202819824 + ], + [ + "▁take", + -8.179988861083984 + ], + [ + "▁name", + -8.183194160461426 + ], + [ + "▁due", + -8.184221267700195 + ], + [ + "▁small", + -8.184597969055176 + ], + [ + "▁11", + -8.187207221984863 + ], + [ + "▁US", + -8.190345764160156 + ], + [ + "▁based", + -8.190908432006836 + ], + [ + "▁York", + -8.19442081451416 + ], + [ + "2", + -8.197123527526855 + ], + [ + "▁received", + -8.19954776763916 + ], + [ + "▁help", + -8.20143985748291 + ], + [ + "▁To", + -8.202230453491211 + ], + [ + "▁K", + -8.209858894348145 + ], + [ + "▁left", + -8.211421012878418 + ], + [ + "▁children", + -8.212621688842773 + ], + [ + "▁family", + -8.214717864990234 + ], + [ + "▁within", + -8.216018676757812 + ], + [ + "▁October", + -8.216703414916992 + ], + [ + "▁best", + -8.219026565551758 + ], + [ + "A", + -8.220833778381348 + ], + [ + "▁We", + -8.22541618347168 + ], + [ + "▁school", + -8.227285385131836 + ], + [ + "▁La", + -8.230130195617676 + ], + [ + "▁using", + -8.248188018798828 + ], + [ + "▁June", + -8.248437881469727 + ], + [ + "▁ak", + -8.248819351196289 + ], + [ + "p", + -8.250738143920898 + ], + [ + "▁line", + -8.260305404663086 + ], + [ + "u", + -8.261188507080078 + ], + [ + "▁By", + -8.262226104736328 + ], + [ + "▁last", + -8.26363468170166 + ], + [ + "▁power", + -8.265172004699707 + ], + [ + "▁species", + -8.26770305633545 + ], + [ + "▁per", + -8.26951789855957 + ], + [ + "▁July", + -8.274768829345703 + ], + [ + "▁March", + -8.277816772460938 + ], + [ + "▁North", + -8.279566764831543 + ], + [ + "▁s", + -8.283197402954102 + ], + [ + "▁If", + -8.290355682373047 + ], + [ + "▁public", + -8.292217254638672 + ], + [ + "▁13", + -8.292546272277832 + ], + [ + "▁30", + -8.296173095703125 + ], + [ + "le", + -8.296248435974121 + ], + [ + "▁April", + -8.29631519317627 + ], + [ + "▁un", + -8.296456336975098 + ], + [ + "▁November", + -8.2991304397583 + ], + [ + "▁form", + -8.304203987121582 + ], + [ + "▁...", + -8.305054664611816 + ], + [ + "▁South", + -8.305380821228027 + ], + [ + "▁H", + -8.306562423706055 + ], + [ + "▁good", + -8.309945106506348 + ], + [ + "▁During", + -8.312925338745117 + ], + [ + "▁&", + -8.313361167907715 + ], + [ + "▁without", + -8.313432693481445 + ], + [ + "▁These", + -8.31351089477539 + ], + [ + "▁final", + -8.313756942749023 + ], + [ + "▁National", + -8.314781188964844 + ], + [ + "▁14", + -8.316494941711426 + ], + [ + "▁No", + -8.317334175109863 + ], + [ + "▁important", + -8.320172309875488 + ], + [ + "able", + -8.323800086975098 + ], + [ + "▁N", + -8.325602531433105 + ], + [ + "),", + -8.326894760131836 + ], + [ + "▁J", + -8.328372955322266 + ], + [ + "▁third", + -8.332365036010742 + ], + [ + "▁get", + -8.332609176635742 + ], + [ + "▁St", + -8.332937240600586 + ], + [ + "▁character", + -8.333191871643066 + ], + [ + "▁become", + -8.334864616394043 + ], + [ + "▁main", + -8.335359573364258 + ], + [ + "▁next", + -8.335808753967285 + ], + [ + "▁included", + -8.335816383361816 + ], + [ + "▁few", + -8.338334083557129 + ], + [ + "▁near", + -8.3399658203125 + ], + [ + "▁major", + -8.340849876403809 + ], + [ + "▁]", + -8.34125804901123 + ], + [ + "▁18", + -8.343823432922363 + ], + [ + "▁%", + -8.35384464263916 + ], + [ + "ity", + -8.358309745788574 + ], + [ + "▁support", + -8.358555793762207 + ], + [ + "▁University", + -8.361857414245605 + ], + [ + "▁local", + -8.365582466125488 + ], + [ + "▁One", + -8.368326187133789 + ], + [ + "▁An", + -8.369771003723145 + ], + [ + "▁December", + -8.371402740478516 + ], + [ + "C", + -8.373796463012695 + ], + [ + "▁led", + -8.375227928161621 + ], + [ + "▁side", + -8.375873565673828 + ], + [ + "▁January", + -8.376399040222168 + ], + [ + "▁role", + -8.379100799560547 + ], + [ + "▁death", + -8.380826950073242 + ], + [ + "▁right", + -8.382159233093262 + ], + [ + "▁book", + -8.382540702819824 + ], + [ + "▁play", + -8.38367748260498 + ], + [ + "▁wrote", + -8.387740135192871 + ], + [ + "h", + -8.389538764953613 + ], + [ + "ar", + -8.391392707824707 + ], + [ + "▁include", + -8.394761085510254 + ], + [ + "▁won", + -8.394889831542969 + ], + [ + "te", + -8.398698806762695 + ], + [ + "”", + -8.399046897888184 + ], + [ + "▁see", + -8.400689125061035 + ], + [ + "▁however", + -8.402403831481934 + ], + [ + "▁His", + -8.404035568237305 + ], + [ + "▁six", + -8.405468940734863 + ], + [ + "▁days", + -8.406828880310059 + ], + [ + "ve", + -8.406898498535156 + ], + [ + "▁point", + -8.407026290893555 + ], + [ + "▁order", + -8.407083511352539 + ], + [ + "▁need", + -8.410411834716797 + ], + [ + "▁described", + -8.412202835083008 + ], + [ + "▁development", + -8.41229248046875 + ], + [ + "B", + -8.412787437438965 + ], + [ + "▁played", + -8.413628578186035 + ], + [ + "▁body", + -8.4143648147583 + ], + [ + "▁2010", + -8.430092811584473 + ], + [ + "z", + -8.43061351776123 + ], + [ + "▁again", + -8.434196472167969 + ], + [ + "▁vil", + -8.437369346618652 + ], + [ + "▁production", + -8.437668800354004 + ], + [ + "▁among", + -8.438467025756836 + ], + [ + "▁band", + -8.439732551574707 + ], + [ + "▁record", + -8.439823150634766 + ], + [ + "▁You", + -8.440115928649902 + ], + [ + "▁original", + -8.440984725952148 + ], + [ + "▁built", + -8.442694664001465 + ], + [ + "f", + -8.443134307861328 + ], + [ + "▁All", + -8.44490909576416 + ], + [ + "▁late", + -8.44542407989502 + ], + [ + "▁named", + -8.445459365844727 + ], + [ + "▁kòm", + -8.445826530456543 + ], + [ + "▁my", + -8.446393013000488 + ], + [ + "▁W", + -8.449385643005371 + ], + [ + "▁te", + -8.45003604888916 + ], + [ + "▁man", + -8.450613021850586 + ], + [ + "▁less", + -8.450836181640625 + ], + [ + "to", + -8.45495319366455 + ], + [ + "▁further", + -8.457988739013672 + ], + [ + "▁Le", + -8.458165168762207 + ], + [ + "▁non", + -8.4585542678833 + ], + [ + "ist", + -8.463863372802734 + ], + [ + "▁19", + -8.46413516998291 + ], + [ + "▁Li", + -8.467838287353516 + ], + [ + "D", + -8.467894554138184 + ], + [ + "▁me", + -8.468297958374023 + ], + [ + "ia", + -8.468493461608887 + ], + [ + "▁top", + -8.47082233428955 + ], + [ + "▁German", + -8.471200942993164 + ], + [ + "ation", + -8.471418380737305 + ], + [ + "▁period", + -8.472166061401367 + ], + [ + "▁having", + -8.48073959350586 + ], + [ + "▁French", + -8.482558250427246 + ], + [ + "▁came", + -8.48305892944336 + ], + [ + "▁2011", + -8.483928680419922 + ], + [ + "▁given", + -8.484538078308105 + ], + [ + "▁history", + -8.486230850219727 + ], + [ + "▁north", + -8.489493370056152 + ], + [ + "▁ship", + -8.489567756652832 + ], + [ + "▁100", + -8.489813804626465 + ], + [ + "▁held", + -8.490019798278809 + ], + [ + "▁although", + -8.49184513092041 + ], + [ + "▁control", + -8.492237091064453 + ], + [ + "▁Istwa", + -8.492271423339844 + ], + [ + "\"", + -8.493589401245117 + ], + [ + "▁2009", + -8.494331359863281 + ], + [ + "ta", + -8.497556686401367 + ], + [ + "▁De", + -8.497564315795898 + ], + [ + "▁25", + -8.498204231262207 + ], + [ + "▁English", + -8.499369621276855 + ], + [ + "ton", + -8.50088119506836 + ], + [ + "▁students", + -8.501654624938965 + ], + [ + "▁2008", + -8.503750801086426 + ], + [ + "▁considered", + -8.503974914550781 + ], + [ + "▁example", + -8.506197929382324 + ], + [ + "▁But", + -8.506571769714355 + ], + [ + "▁story", + -8.507411003112793 + ], + [ + "▁February", + -8.511137008666992 + ], + [ + "▁great", + -8.512182235717773 + ], + [ + "▁country", + -8.515327453613281 + ], + [ + "▁video", + -8.515754699707031 + ], + [ + "▁members", + -8.518027305603027 + ], + [ + "ian", + -8.518790245056152 + ], + [ + "▁lead", + -8.519920349121094 + ], + [ + "▁result", + -8.526230812072754 + ], + [ + "ism", + -8.526642799377441 + ], + [ + "▁short", + -8.527851104736328 + ], + [ + "▁While", + -8.52853775024414 + ], + [ + "▁study", + -8.531514167785645 + ], + [ + "▁making", + -8.536809921264648 + ], + [ + "▁does", + -8.538324356079102 + ], + [ + "▁common", + -8.540984153747559 + ], + [ + "▁old", + -8.54390811920166 + ], + [ + "▁V", + -8.545694351196289 + ], + [ + "▁la", + -8.547616958618164 + ], + [ + "▁2012", + -8.5554838180542 + ], + [ + "▁must", + -8.555797576904297 + ], + [ + "▁Although", + -8.55811882019043 + ], + [ + "ne", + -8.559123039245605 + ], + [ + "▁women", + -8.559767723083496 + ], + [ + "▁health", + -8.559864044189453 + ], + [ + "▁release", + -8.561421394348145 + ], + [ + "▁human", + -8.561573028564453 + ], + [ + "▁though", + -8.561888694763184 + ], + [ + "▁information", + -8.562461853027344 + ], + [ + "▁2007", + -8.562707901000977 + ], + [ + "na", + -8.563397407531738 + ], + [ + "▁go", + -8.564200401306152 + ], + [ + "▁half", + -8.569066047668457 + ], + [ + "▁level", + -8.571845054626465 + ], + [ + "3", + -8.578411102294922 + ], + [ + "▁research", + -8.581050872802734 + ], + [ + "▁land", + -8.582128524780273 + ], + [ + "▁south", + -8.583242416381836 + ], + [ + "▁air", + -8.586023330688477 + ], + [ + "▁games", + -8.587565422058105 + ], + [ + "▁West", + -8.587865829467773 + ], + [ + "▁continued", + -8.58851432800293 + ], + [ + "is", + -8.590639114379883 + ], + [ + "▁never", + -8.594026565551758 + ], + [ + "▁low", + -8.594829559326172 + ], + [ + "▁able", + -8.595995903015137 + ], + [ + "▁every", + -8.596566200256348 + ], + [ + "▁England", + -8.599077224731445 + ], + [ + "▁similar", + -8.600940704345703 + ], + [ + "▁Re", + -8.600951194763184 + ], + [ + "ness", + -8.605340003967285 + ], + [ + "▁d", + -8.606537818908691 + ], + [ + "▁building", + -8.606703758239746 + ], + [ + "▁too", + -8.608634948730469 + ], + [ + "F", + -8.609699249267578 + ], + [ + "▁process", + -8.610487937927246 + ], + [ + "▁position", + -8.610713958740234 + ], + [ + "▁published", + -8.614144325256348 + ], + [ + "▁total", + -8.620122909545898 + ], + [ + "▁written", + -8.621914863586426 + ], + [ + "▁areas", + -8.62390422821045 + ], + [ + "▁change", + -8.625699043273926 + ], + [ + "▁match", + -8.626484870910645 + ], + [ + "▁head", + -8.626991271972656 + ], + [ + "il", + -8.627887725830078 + ], + [ + "▁company", + -8.62833309173584 + ], + [ + "ll", + -8.631930351257324 + ], + [ + "▁light", + -8.632013320922852 + ], + [ + "▁across", + -8.635784149169922 + ], + [ + "▁21", + -8.638781547546387 + ], + [ + "▁City", + -8.643861770629883 + ], + [ + "▁class", + -8.644411087036133 + ], + [ + "▁age", + -8.646536827087402 + ], + [ + "▁former", + -8.648262023925781 + ], + [ + "ry", + -8.648589134216309 + ], + [ + "▁River", + -8.649869918823242 + ], + [ + "▁food", + -8.650580406188965 + ], + [ + "▁24", + -8.650736808776855 + ], + [ + "▁little", + -8.651407241821289 + ], + [ + "▁case", + -8.652438163757324 + ], + [ + "▁data", + -8.65924072265625 + ], + [ + "▁away", + -8.659383773803711 + ], + [ + "▁service", + -8.660796165466309 + ], + [ + "▁various", + -8.662039756774902 + ], + [ + "▁us", + -8.66210651397705 + ], + [ + "▁According", + -8.662199974060059 + ], + [ + "▁version", + -8.663032531738281 + ], + [ + "▁II", + -8.663604736328125 + ], + [ + "▁Some", + -8.664375305175781 + ], + [ + "▁King", + -8.664800643920898 + ], + [ + "▁co", + -8.665834426879883 + ], + [ + "▁find", + -8.66631031036377 + ], + [ + "▁storm", + -8.666731834411621 + ], + [ + "1", + -8.667479515075684 + ], + [ + "ch", + -8.670389175415039 + ], + [ + "▁developed", + -8.673707962036133 + ], + [ + "▁e", + -8.674308776855469 + ], + [ + "▁moved", + -8.674309730529785 + ], + [ + "▁times", + -8.677531242370605 + ], + [ + "▁America", + -8.678370475769043 + ], + [ + "▁produced", + -8.680608749389648 + ], + [ + "▁2013", + -8.680749893188477 + ], + [ + "▁State", + -8.681106567382812 + ], + [ + "▁London", + -8.684793472290039 + ], + [ + "▁2006", + -8.686568260192871 + ], + [ + "▁With", + -8.69104290008545 + ], + [ + "▁general", + -8.691582679748535 + ], + [ + "▁present", + -8.69202709197998 + ], + [ + "▁design", + -8.695947647094727 + ], + [ + "▁fire", + -8.696135520935059 + ], + [ + "▁run", + -8.69653606414795 + ], + [ + "▁full", + -8.697705268859863 + ], + [ + "▁attack", + -8.699125289916992 + ], + [ + "ment", + -8.700132369995117 + ], + [ + "▁know", + -8.706216812133789 + ], + [ + "▁went", + -8.706769943237305 + ], + [ + "la", + -8.708565711975098 + ], + [ + "ma", + -8.708925247192383 + ], + [ + "el", + -8.712668418884277 + ], + [ + "▁week", + -8.716736793518066 + ], + [ + "▁might", + -8.71814250946045 + ], + [ + "▁gave", + -8.718690872192383 + ], + [ + "▁lost", + -8.719208717346191 + ], + [ + "▁seen", + -8.721723556518555 + ], + [ + "▁Ayiti", + -8.727683067321777 + ], + [ + "▁And", + -8.727710723876953 + ], + [ + "▁created", + -8.731775283813477 + ], + [ + "▁What", + -8.73243522644043 + ], + [ + "son", + -8.733518600463867 + ], + [ + "▁months", + -8.733558654785156 + ], + [ + "▁epi", + -8.73386287689209 + ], + [ + "▁population", + -8.734928131103516 + ], + [ + "▁player", + -8.736675262451172 + ], + [ + "E", + -8.737171173095703 + ], + [ + "▁possible", + -8.739758491516113 + ], + [ + "▁better", + -8.744274139404297 + ], + [ + "▁white", + -8.74520206451416 + ], + [ + "▁together", + -8.745471954345703 + ], + [ + "nd", + -8.745502471923828 + ], + [ + "x", + -8.74698257446289 + ], + [ + "▁So", + -8.749785423278809 + ], + [ + "▁military", + -8.75070571899414 + ], + [ + "▁range", + -8.752275466918945 + ], + [ + "▁political", + -8.752345085144043 + ], + [ + "▁addition", + -8.752355575561523 + ], + [ + "▁town", + -8.754060745239258 + ], + [ + "▁house", + -8.757044792175293 + ], + [ + "ie", + -8.758333206176758 + ], + [ + "▁force", + -8.758818626403809 + ], + [ + "age", + -8.759298324584961 + ], + [ + "▁put", + -8.76082706451416 + ], + [ + "▁performance", + -8.761235237121582 + ], + [ + "id", + -8.761275291442871 + ], + [ + "▁black", + -8.765524864196777 + ], + [ + "▁50", + -8.765915870666504 + ], + [ + "▁law", + -8.766796112060547 + ], + [ + "▁p", + -8.767457008361816 + ], + [ + "H", + -8.76810359954834 + ], + [ + "▁person", + -8.76904296875 + ], + [ + "co", + -8.775232315063477 + ], + [ + "▁thought", + -8.775762557983398 + ], + [ + "▁father", + -8.777753829956055 + ], + [ + "▁east", + -8.778131484985352 + ], + [ + "▁22", + -8.778341293334961 + ], + [ + "▁taken", + -8.778487205505371 + ], + [ + "▁l", + -8.779555320739746 + ], + [ + "▁national", + -8.782111167907715 + ], + [ + "▁himself", + -8.782941818237305 + ], + [ + "N", + -8.78343391418457 + ], + [ + "▁returned", + -8.784215927124023 + ], + [ + "▁project", + -8.784278869628906 + ], + [ + "▁forces", + -8.78499698638916 + ], + [ + "▁Sa", + -8.785311698913574 + ], + [ + "▁child", + -8.785988807678223 + ], + [ + "▁social", + -8.78656005859375 + ], + [ + "it", + -8.786840438842773 + ], + [ + "▁available", + -8.788962364196777 + ], + [ + "▁career", + -8.78939437866211 + ], + [ + "▁Kiba", + -8.790255546569824 + ], + [ + "▁writing", + -8.791828155517578 + ], + [ + "▁live", + -8.793044090270996 + ], + [ + "▁reported", + -8.794482231140137 + ], + [ + "P", + -8.797301292419434 + ], + [ + "▁ki", + -8.797340393066406 + ], + [ + "▁west", + -8.80128288269043 + ], + [ + "▁2014", + -8.801495552062988 + ], + [ + "V", + -8.801889419555664 + ], + [ + "de", + -8.801987648010254 + ], + [ + ".”", + -8.803852081298828 + ], + [ + "▁field", + -8.805397033691406 + ], + [ + "▁throughout", + -8.805421829223633 + ], + [ + "▁Man", + -8.807116508483887 + ], + [ + "ra", + -8.808180809020996 + ], + [ + "w", + -8.809467315673828 + ], + [ + "▁General", + -8.811010360717773 + ], + [ + "I", + -8.811166763305664 + ], + [ + "▁William", + -8.811531066894531 + ], + [ + "▁pre", + -8.811945915222168 + ], + [ + "▁Australia", + -8.813298225402832 + ], + [ + "M", + -8.814143180847168 + ], + [ + "▁once", + -8.814837455749512 + ], + [ + "▁free", + -8.816421508789062 + ], + [ + "▁site", + -8.81653881072998 + ], + [ + "▁working", + -8.817282676696777 + ], + [ + "▁2005", + -8.818503379821777 + ], + [ + "▁come", + -8.81881046295166 + ], + [ + "▁James", + -8.819011688232422 + ], + [ + "▁Al", + -8.819916725158691 + ], + [ + "G", + -8.82004165649414 + ], + [ + "▁stated", + -8.820446014404297 + ], + [ + "▁recorded", + -8.820450782775879 + ], + [ + "da", + -8.820655822753906 + ], + [ + "▁least", + -8.822643280029297 + ], + [ + "um", + -8.823298454284668 + ], + [ + "▁died", + -8.826970100402832 + ], + [ + "▁God", + -8.827284812927246 + ], + [ + "▁provide", + -8.829296112060547 + ], + [ + "▁son", + -8.82936954498291 + ], + [ + "▁rather", + -8.82997989654541 + ], + [ + "▁hand", + -8.831761360168457 + ], + [ + "▁young", + -8.832405090332031 + ], + [ + "▁23", + -8.836512565612793 + ], + [ + "▁return", + -8.840069770812988 + ], + [ + "▁c", + -8.841167449951172 + ], + [ + "▁start", + -8.844009399414062 + ], + [ + "▁energy", + -8.846270561218262 + ], + [ + "▁ten", + -8.846423149108887 + ], + [ + "▁track", + -8.846465110778809 + ], + [ + "▁night", + -8.846689224243164 + ], + [ + "▁others", + -8.847089767456055 + ], + [ + "▁al", + -8.84854793548584 + ], + [ + "▁previous", + -8.849648475646973 + ], + [ + "▁George", + -8.851580619812012 + ], + [ + "▁caused", + -8.853200912475586 + ], + [ + "ine", + -8.853549003601074 + ], + [ + "T", + -8.855121612548828 + ], + [ + "ive", + -8.855509757995605 + ], + [ + "▁Park", + -8.856675148010254 + ], + [ + "▁cause", + -8.859116554260254 + ], + [ + "▁sent", + -8.860260009765625 + ], + [ + "▁action", + -8.860544204711914 + ], + [ + "▁far", + -8.861639022827148 + ], + [ + "▁modern", + -8.86375904083252 + ], + [ + "ley", + -8.869646072387695 + ], + [ + "▁aircraft", + -8.87370777130127 + ], + [ + "▁40", + -8.874449729919434 + ], + [ + "▁upon", + -8.879311561584473 + ], + [ + "▁close", + -8.881208419799805 + ], + [ + "▁damage", + -8.881579399108887 + ], + [ + "▁sea", + -8.881786346435547 + ], + [ + "▁title", + -8.881903648376465 + ], + [ + "com", + -8.882417678833008 + ], + [ + "et", + -8.883065223693848 + ], + [ + "▁open", + -8.883852005004883 + ], + [ + "▁either", + -8.885875701904297 + ], + [ + "▁ayisyen", + -8.88623332977295 + ], + [ + "▁type", + -8.887731552124023 + ], + [ + "ling", + -8.888279914855957 + ], + [ + "▁2000", + -8.88851261138916 + ], + [ + "▁ships", + -8.888591766357422 + ], + [ + "land", + -8.88892650604248 + ], + [ + "▁remained", + -8.89123821258545 + ], + [ + "▁established", + -8.892075538635254 + ], + [ + "▁followed", + -8.89603328704834 + ], + [ + "▁Army", + -8.897530555725098 + ], + [ + "men", + -8.90272045135498 + ], + [ + "▁started", + -8.902961730957031 + ], + [ + "▁style", + -8.905789375305176 + ], + [ + "▁feet", + -8.906840324401855 + ], + [ + "▁ground", + -8.907022476196289 + ], + [ + "▁almost", + -8.90791130065918 + ], + [ + "me", + -8.909189224243164 + ], + [ + "ro", + -8.911001205444336 + ], + [ + "▁2015", + -8.911901473999023 + ], + [ + "▁Japanese", + -8.914278984069824 + ], + [ + "▁County", + -8.914803504943848 + ], + [ + "▁strong", + -8.915379524230957 + ], + [ + "▁San", + -8.916988372802734 + ], + [ + "▁give", + -8.9194917678833 + ], + [ + "▁post", + -8.920807838439941 + ], + [ + "▁club", + -8.922772407531738 + ], + [ + "▁X", + -8.925257682800293 + ], + [ + "▁popular", + -8.926543235778809 + ], + [ + "▁added", + -8.926852226257324 + ], + [ + "▁think", + -8.92685317993164 + ], + [ + "▁reached", + -8.92761516571045 + ], + [ + "▁average", + -8.927742958068848 + ], + [ + "▁felt", + -8.930257797241211 + ], + [ + "▁region", + -8.930338859558105 + ], + [ + "▁Co", + -8.931601524353027 + ], + [ + "▁ant", + -8.932089805603027 + ], + [ + "▁road", + -8.932336807250977 + ], + [ + "▁instead", + -8.934306144714355 + ], + [ + "W", + -8.934833526611328 + ], + [ + "▁28", + -8.935111045837402 + ], + [ + "at", + -8.93518352508545 + ], + [ + "▁h", + -8.935906410217285 + ], + [ + "▁above", + -8.936129570007324 + ], + [ + "▁School", + -8.937418937683105 + ], + [ + "▁Dr", + -8.93773078918457 + ], + [ + "▁fact", + -8.93830680847168 + ], + [ + "▁eight", + -8.938666343688965 + ], + [ + "▁El", + -8.938946723937988 + ], + [ + "▁Division", + -8.939260482788086 + ], + [ + "▁performed", + -8.940844535827637 + ], + [ + "▁2004", + -8.941320419311523 + ], + [ + "▁seven", + -8.941705703735352 + ], + [ + "ion", + -8.941807746887207 + ], + [ + "▁27", + -8.942179679870605 + ], + [ + "▁success", + -8.942412376403809 + ], + [ + "!", + -8.944188117980957 + ], + [ + "ate", + -8.945016860961914 + ], + [ + "▁noted", + -8.945195198059082 + ], + [ + "▁member", + -8.945229530334473 + ], + [ + "▁points", + -8.947553634643555 + ], + [ + "▁miles", + -8.947626113891602 + ], + [ + "▁Street", + -8.94786548614502 + ], + [ + "▁enough", + -8.948344230651855 + ], + [ + "▁rest", + -8.950422286987305 + ], + [ + "▁front", + -8.95065689086914 + ], + [ + "▁usually", + -8.951651573181152 + ], + [ + "▁provided", + -8.9520263671875 + ], + [ + "▁win", + -8.952519416809082 + ], + [ + "▁ever", + -8.952994346618652 + ], + [ + "▁26", + -8.954183578491211 + ], + [ + "▁features", + -8.95447063446045 + ], + [ + "▁percent", + -8.954778671264648 + ], + [ + "▁program", + -8.956277847290039 + ], + [ + "▁future", + -8.956626892089844 + ], + [ + "ary", + -8.95844554901123 + ], + [ + "▁served", + -8.958769798278809 + ], + [ + "▁blood", + -8.95885181427002 + ], + [ + "▁significant", + -8.960092544555664 + ], + [ + "▁characters", + -8.9606351852417 + ], + [ + "ur", + -8.96214485168457 + ], + [ + "▁car", + -8.96362590789795 + ], + [ + "é", + -8.963678359985352 + ], + [ + "▁That", + -8.965222358703613 + ], + [ + "▁killed", + -8.96523666381836 + ], + [ + "▁community", + -8.965341567993164 + ], + [ + "▁race", + -8.965672492980957 + ], + [ + "▁going", + -8.966168403625488 + ], + [ + "am", + -8.966316223144531 + ], + [ + "▁located", + -8.967161178588867 + ], + [ + "▁risk", + -8.969780921936035 + ], + [ + "▁David", + -8.969900131225586 + ], + [ + "▁East", + -8.973584175109863 + ], + [ + "▁lower", + -8.974717140197754 + ], + [ + "be", + -8.975470542907715 + ], + [ + "▁en", + -8.975733757019043 + ], + [ + "▁France", + -8.978063583374023 + ], + [ + "▁disease", + -8.978632926940918 + ], + [ + "ir", + -8.978909492492676 + ], + [ + "▁ft", + -8.979573249816895 + ], + [ + "▁means", + -8.979920387268066 + ], + [ + "▁behind", + -8.980645179748535 + ], + [ + "▁stage", + -8.981340408325195 + ], + [ + "K", + -8.982404708862305 + ], + [ + "▁announced", + -8.9824857711792 + ], + [ + "ized", + -8.982566833496094 + ], + [ + "▁battle", + -8.982954978942871 + ], + [ + "ous", + -8.983251571655273 + ], + [ + "the", + -8.983306884765625 + ], + [ + "▁Me", + -8.983983993530273 + ], + [ + "O", + -8.984603881835938 + ], + [ + "▁works", + -8.989598274230957 + ], + [ + "▁mi", + -8.991161346435547 + ], + [ + "▁love", + -8.992618560791016 + ], + [ + "▁songs", + -8.994232177734375 + ], + [ + "▁television", + -8.994519233703613 + ], + [ + "▁course", + -8.994599342346191 + ], + [ + "▁special", + -8.995083808898926 + ], + [ + "▁space", + -8.995159149169922 + ], + [ + "▁event", + -8.999236106872559 + ], + [ + "▁increased", + -9.00050163269043 + ], + [ + "▁don", + -9.001279830932617 + ], + [ + "▁saw", + -9.001546859741211 + ], + [ + "▁formed", + -9.002649307250977 + ], + [ + "▁League", + -9.005143165588379 + ], + [ + "▁Road", + -9.005674362182617 + ], + [ + "▁create", + -9.007343292236328 + ], + [ + "▁eventually", + -9.007574081420898 + ], + [ + "▁past", + -9.007948875427246 + ], + [ + "j", + -9.008393287658691 + ], + [ + "▁born", + -9.009387016296387 + ], + [ + "▁increase", + -9.00967025756836 + ], + [ + "▁mother", + -9.009773254394531 + ], + [ + "▁language", + -9.010339736938477 + ], + [ + "ty", + -9.011030197143555 + ], + [ + "▁Australian", + -9.011933326721191 + ], + [ + "▁pressure", + -9.012626647949219 + ], + [ + "▁especially", + -9.013028144836426 + ], + [ + "ca", + -9.013854026794434 + ], + [ + "▁House", + -9.01441478729248 + ], + [ + "▁European", + -9.014467239379883 + ], + [ + "▁real", + -9.01533031463623 + ], + [ + "▁campaign", + -9.015555381774902 + ], + [ + "▁natural", + -9.016040802001953 + ], + [ + "▁Vil", + -9.016362190246582 + ], + [ + "▁Ko", + -9.018184661865234 + ], + [ + "▁Be", + -9.018446922302246 + ], + [ + "as", + -9.018533706665039 + ], + [ + "▁leading", + -9.018749237060547 + ], + [ + "▁hours", + -9.018977165222168 + ], + [ + "▁evidence", + -9.019119262695312 + ], + [ + "▁want", + -9.01933479309082 + ], + [ + "▁|", + -9.019750595092773 + ], + [ + "▁Etazini", + -9.019899368286133 + ], + [ + "▁designed", + -9.02052116394043 + ], + [ + "▁material", + -9.021334648132324 + ], + [ + "▁decided", + -9.022089958190918 + ], + [ + "ge", + -9.022782325744629 + ], + [ + "▁experience", + -9.024311065673828 + ], + [ + "▁construction", + -9.024768829345703 + ], + [ + "less", + -9.025151252746582 + ], + [ + "▁Europe", + -9.025569915771484 + ], + [ + "▁generally", + -9.027139663696289 + ], + [ + "▁appeared", + -9.028420448303223 + ], + [ + "▁star", + -9.028980255126953 + ], + [ + "▁problems", + -9.029740333557129 + ], + [ + "▁likely", + -9.029767036437988 + ], + [ + "▁lane", + -9.030591011047363 + ], + [ + "▁mid", + -9.033940315246582 + ], + [ + "▁route", + -9.034369468688965 + ], + [ + "▁training", + -9.03450870513916 + ], + [ + "ter", + -9.035004615783691 + ], + [ + "▁Michael", + -9.03615665435791 + ], + [ + "▁involved", + -9.036341667175293 + ], + [ + "▁look", + -9.037271499633789 + ], + [ + "▁tropical", + -9.038134574890137 + ], + [ + "▁term", + -9.041589736938477 + ], + [ + "▁2003", + -9.041854858398438 + ], + [ + "▁Robert", + -9.0427827835083 + ], + [ + "rs", + -9.043521881103516 + ], + [ + "ner", + -9.044270515441895 + ], + [ + "▁towards", + -9.045355796813965 + ], + [ + "▁changes", + -9.045798301696777 + ], + [ + "▁From", + -9.045961380004883 + ], + [ + "▁events", + -9.046435356140137 + ], + [ + "▁brought", + -9.046813011169434 + ], + [ + "▁always", + -9.047677040100098 + ], + [ + "▁already", + -9.049586296081543 + ], + [ + "4", + -9.04977798461914 + ], + [ + "▁players", + -9.049803733825684 + ], + [ + "▁sold", + -9.050869941711426 + ], + [ + "▁current", + -9.051636695861816 + ], + [ + "▁surface", + -9.052130699157715 + ], + [ + "▁something", + -9.053503036499023 + ], + [ + "▁higher", + -9.054361343383789 + ], + [ + "os", + -9.056346893310547 + ], + [ + "no", + -9.056680679321289 + ], + [ + "▁required", + -9.057713508605957 + ], + [ + "▁here", + -9.057920455932617 + ], + [ + "▁Black", + -9.058048248291016 + ], + [ + "▁move", + -9.058191299438477 + ], + [ + "▁according", + -9.059133529663086 + ], + [ + "▁weeks", + -9.060442924499512 + ], + [ + "ad", + -9.060674667358398 + ], + [ + "▁keep", + -9.060851097106934 + ], + [ + "▁things", + -9.0619478225708 + ], + [ + "▁mm", + -9.062033653259277 + ], + [ + "▁heavy", + -9.065289497375488 + ], + [ + "▁effects", + -9.065792083740234 + ], + [ + "▁29", + -9.067608833312988 + ], + [ + "▁countries", + -9.068554878234863 + ], + [ + "▁taking", + -9.069365501403809 + ], + [ + "▁Her", + -9.070279121398926 + ], + [ + "▁completed", + -9.072047233581543 + ], + [ + "▁particularly", + -9.073870658874512 + ], + [ + "▁worked", + -9.07413387298584 + ], + [ + "ant", + -9.075450897216797 + ], + [ + "▁itself", + -9.076067924499512 + ], + [ + "▁Washington", + -9.07707691192627 + ], + [ + "▁Royal", + -9.078067779541016 + ], + [ + "▁idea", + -9.07919979095459 + ], + [ + "▁Air", + -9.080550193786621 + ], + [ + "▁list", + -9.083280563354492 + ], + [ + "do", + -9.084383964538574 + ], + [ + "▁command", + -9.085193634033203 + ], + [ + "▁soon", + -9.08660888671875 + ], + [ + "▁anti", + -9.088531494140625 + ], + [ + "▁allowed", + -9.092187881469727 + ], + [ + "▁business", + -9.093208312988281 + ], + [ + "▁et", + -9.093457221984863 + ], + [ + "5", + -9.09355354309082 + ], + [ + "▁effect", + -9.093567848205566 + ], + [ + "▁First", + -9.093772888183594 + ], + [ + "▁cost", + -9.094169616699219 + ], + [ + "▁plan", + -9.096848487854004 + ], + [ + "▁turn", + -9.096930503845215 + ], + [ + "▁groups", + -9.09713363647461 + ], + [ + "▁art", + -9.09743881225586 + ], + [ + "▁outside", + -9.09807014465332 + ], + [ + "▁playing", + -9.098082542419434 + ], + [ + "▁party", + -9.09836196899414 + ], + [ + "▁size", + -9.098990440368652 + ], + [ + "▁!", + -9.101278305053711 + ], + [ + "▁treatment", + -9.101378440856934 + ], + [ + "▁individual", + -9.102008819580078 + ], + [ + "▁eta", + -9.102581024169922 + ], + [ + "▁placed", + -9.104361534118652 + ], + [ + "▁loss", + -9.104565620422363 + ], + [ + "ting", + -9.10498332977295 + ], + [ + "▁2001", + -9.105173110961914 + ], + [ + "▁con", + -9.106162071228027 + ], + [ + "▁self", + -9.108094215393066 + ], + [ + "▁heart", + -9.108153343200684 + ], + [ + "—", + -9.111313819885254 + ], + [ + "di", + -9.112116813659668 + ], + [ + "▁Do", + -9.112133026123047 + ], + [ + "▁‘", + -9.112330436706543 + ], + [ + "▁states", + -9.112506866455078 + ], + [ + "▁station", + -9.112601280212402 + ], + [ + "▁’", + -9.112815856933594 + ], + [ + "▁India", + -9.115272521972656 + ], + [ + "▁whether", + -9.115545272827148 + ], + [ + "▁positive", + -9.115689277648926 + ], + [ + "▁conditions", + -9.116525650024414 + ], + [ + "▁interest", + -9.117228507995605 + ], + [ + "▁t", + -9.117697715759277 + ], + [ + "▁office", + -9.121684074401855 + ], + [ + "▁President", + -9.122447967529297 + ], + [ + "wa", + -9.122901916503906 + ], + [ + "▁red", + -9.122932434082031 + ], + [ + "▁says", + -9.123269081115723 + ], + [ + "▁goal", + -9.126753807067871 + ], + [ + "▁key", + -9.127653121948242 + ], + [ + "▁Most", + -9.128232955932617 + ], + [ + ",”", + -9.128494262695312 + ], + [ + "▁levels", + -9.129243850708008 + ], + [ + "▁opened", + -9.129287719726562 + ], + [ + "▁education", + -9.129600524902344 + ], + [ + "li", + -9.13047981262207 + ], + [ + "▁Paul", + -9.130911827087402 + ], + [ + "▁Other", + -9.13259220123291 + ], + [ + "▁wanted", + -9.134232521057129 + ], + [ + "▁pou", + -9.134926795959473 + ], + [ + "▁done", + -9.135106086730957 + ], + [ + "▁largest", + -9.135557174682617 + ], + [ + "▁Henry", + -9.13617992401123 + ], + [ + "▁care", + -9.137739181518555 + ], + [ + "▁money", + -9.138545989990234 + ], + [ + "den", + -9.138689994812012 + ], + [ + "ri", + -9.139142036437988 + ], + [ + "▁2002", + -9.145283699035645 + ], + [ + "est", + -9.14548397064209 + ], + [ + "▁really", + -9.145694732666016 + ], + [ + "▁minutes", + -9.146224975585938 + ], + [ + "L", + -9.146413803100586 + ], + [ + "ul", + -9.147701263427734 + ], + [ + "▁science", + -9.148124694824219 + ], + [ + "▁originally", + -9.149252891540527 + ], + [ + "▁Many", + -9.149772644042969 + ], + [ + "▁month", + -9.149828910827637 + ], + [ + "▁relationship", + -9.14987850189209 + ], + [ + "▁sound", + -9.150296211242676 + ], + [ + "▁issue", + -9.15110969543457 + ], + [ + "▁believed", + -9.151850700378418 + ], + [ + "▁successful", + -9.152140617370605 + ], + [ + "▁sou", + -9.152617454528809 + ], + [ + "se", + -9.15469741821289 + ], + [ + "▁central", + -9.154911994934082 + ], + [ + "▁rock", + -9.159775733947754 + ], + [ + "▁hit", + -9.159789085388184 + ], + [ + "▁200", + -9.159862518310547 + ], + [ + "ba", + -9.160834312438965 + ], + [ + "ent", + -9.163311004638672 + ], + [ + "ke", + -9.163371086120605 + ], + [ + "▁court", + -9.16357421875 + ], + [ + "▁report", + -9.163799285888672 + ], + [ + "▁plant", + -9.164346694946289 + ], + [ + "▁met", + -9.165167808532715 + ], + [ + "▁earlier", + -9.167158126831055 + ], + [ + "▁International", + -9.16840934753418 + ], + [ + "▁moun", + -9.171248435974121 + ], + [ + "▁scene", + -9.1721773147583 + ], + [ + "▁living", + -9.173211097717285 + ], + [ + "▁test", + -9.17444896697998 + ], + [ + "▁Canada", + -9.175241470336914 + ], + [ + "▁say", + -9.175933837890625 + ], + [ + "▁related", + -9.176304817199707 + ], + [ + "▁themselves", + -9.176654815673828 + ], + [ + "▁certain", + -9.177547454833984 + ], + [ + "▁beginning", + -9.177989959716797 + ], + [ + "||", + -9.178450584411621 + ], + [ + "▁Two", + -9.180299758911133 + ], + [ + "▁complete", + -9.18043327331543 + ], + [ + "▁view", + -9.180889129638672 + ], + [ + "ol", + -9.181099891662598 + ], + [ + "▁base", + -9.18189525604248 + ], + [ + "▁problem", + -9.183448791503906 + ], + [ + "▁island", + -9.183581352233887 + ], + [ + "▁international", + -9.184242248535156 + ], + [ + "▁Japan", + -9.184296607971191 + ], + [ + "▁director", + -9.18510913848877 + ], + [ + "▁California", + -9.185312271118164 + ], + [ + "▁wife", + -9.186335563659668 + ], + [ + "▁word", + -9.18642807006836 + ], + [ + "▁hard", + -9.187973022460938 + ], + [ + "▁structure", + -9.188304901123047 + ], + [ + "ha", + -9.189798355102539 + ], + [ + "▁Despite", + -9.190268516540527 + ], + [ + "▁army", + -9.19180965423584 + ], + [ + "▁parts", + -9.19206428527832 + ], + [ + "▁Thomas", + -9.194079399108887 + ], + [ + "ka", + -9.19420051574707 + ], + [ + "▁sometimes", + -9.194892883300781 + ], + [ + "▁tour", + -9.195430755615234 + ], + [ + "▁read", + -9.196518898010254 + ], + [ + "▁Charles", + -9.196531295776367 + ], + [ + "▁media", + -9.196799278259277 + ], + [ + "▁fourth", + -9.197299003601074 + ], + [ + "▁Sea", + -9.19737720489502 + ], + [ + "ted", + -9.19888687133789 + ], + [ + "▁lack", + -9.199092864990234 + ], + [ + "▁?", + -9.199121475219727 + ], + [ + "▁Red", + -9.199884414672852 + ], + [ + "▁lyen", + -9.200225830078125 + ], + [ + "▁response", + -9.20025634765625 + ], + [ + "lo", + -9.201233863830566 + ], + [ + "▁difficult", + -9.202187538146973 + ], + [ + "▁words", + -9.203702926635742 + ], + [ + "▁face", + -9.204300880432129 + ], + [ + "▁access", + -9.204360961914062 + ], + [ + "▁Act", + -9.204606056213379 + ], + [ + "▁guns", + -9.204651832580566 + ], + [ + "▁saying", + -9.205729484558105 + ], + [ + "▁Kèk", + -9.206244468688965 + ], + [ + "▁troops", + -9.20811939239502 + ], + [ + "▁referans", + -9.208810806274414 + ], + [ + "▁particular", + -9.209074974060059 + ], + [ + "▁highest", + -9.209968566894531 + ], + [ + "▁31", + -9.210107803344727 + ], + [ + "▁economic", + -9.210344314575195 + ], + [ + "▁rights", + -9.210474967956543 + ], + [ + "▁section", + -9.211085319519043 + ], + [ + "go", + -9.212357521057129 + ], + [ + "▁500", + -9.212786674499512 + ], + [ + "▁cut", + -9.21318244934082 + ], + [ + "▁told", + -9.21418571472168 + ], + [ + "rd", + -9.214385032653809 + ], + [ + "▁nature", + -9.217373847961426 + ], + [ + "▁whole", + -9.217432022094727 + ], + [ + "▁Con", + -9.217456817626953 + ], + [ + "▁Ayisyen", + -9.218270301818848 + ], + [ + "▁sub", + -9.218573570251465 + ], + [ + "▁today", + -9.219786643981934 + ], + [ + "▁elements", + -9.221930503845215 + ], + [ + "▁rate", + -9.223674774169922 + ], + [ + "▁opening", + -9.22473430633545 + ], + [ + "▁entire", + -9.225005149841309 + ], + [ + "▁associated", + -9.22527027130127 + ], + [ + "▁1996", + -9.225358009338379 + ], + [ + "▁passed", + -9.226454734802246 + ], + [ + "▁pa", + -9.22768783569336 + ], + [ + "▁My", + -9.228169441223145 + ], + [ + "▁personal", + -9.228745460510254 + ], + [ + "▁longer", + -9.229957580566406 + ], + [ + "▁Indian", + -9.230237007141113 + ], + [ + "▁quickly", + -9.230391502380371 + ], + [ + "▁cover", + -9.230545997619629 + ], + [ + "▁Court", + -9.230795860290527 + ], + [ + "▁whose", + -9.230875968933105 + ], + [ + "▁below", + -9.231292724609375 + ], + [ + "▁shows", + -9.232405662536621 + ], + [ + "▁church", + -9.233036041259766 + ], + [ + "▁additional", + -9.233222961425781 + ], + [ + "▁Best", + -9.234614372253418 + ], + [ + "mo", + -9.235502243041992 + ], + [ + "▁movement", + -9.235700607299805 + ], + [ + "▁wide", + -9.236666679382324 + ], + [ + "line", + -9.238251686096191 + ], + [ + "▁joined", + -9.238875389099121 + ], + [ + "▁Great", + -9.240253448486328 + ], + [ + "▁oil", + -9.243314743041992 + ], + [ + "▁specific", + -9.243660926818848 + ], + [ + "▁Church", + -9.245780944824219 + ], + [ + "▁needed", + -9.249238967895508 + ], + [ + "▁replaced", + -9.25033187866211 + ], + [ + "▁Battle", + -9.250412940979004 + ], + [ + "▁center", + -9.250547409057617 + ], + [ + "▁Jewografi", + -9.251289367675781 + ], + [ + "▁amount", + -9.25136661529541 + ], + [ + "▁turned", + -9.251418113708496 + ], + [ + "▁review", + -9.25143051147461 + ], + [ + "▁featured", + -9.25204086303711 + ], + [ + "v", + -9.252067565917969 + ], + [ + "ler", + -9.252669334411621 + ], + [ + "▁Referans", + -9.252989768981934 + ], + [ + "▁relasyon", + -9.25508975982666 + ], + [ + "▁Union", + -9.256643295288086 + ], + [ + "▁source", + -9.257770538330078 + ], + [ + "▁southern", + -9.25794792175293 + ], + [ + "▁model", + -9.258195877075195 + ], + [ + "▁speed", + -9.258221626281738 + ], + [ + "▁Mo", + -9.258978843688965 + ], + [ + "▁Earth", + -9.259033203125 + ], + [ + "▁decision", + -9.260668754577637 + ], + [ + "▁official", + -9.261242866516113 + ], + [ + "▁scored", + -9.261892318725586 + ], + [ + "▁forced", + -9.263110160827637 + ], + [ + "▁b", + -9.263720512390137 + ], + [ + "▁Relasyon", + -9.264087677001953 + ], + [ + "▁practice", + -9.264799118041992 + ], + [ + "▁larger", + -9.267203330993652 + ], + [ + "up", + -9.2675142288208 + ], + [ + "▁issues", + -9.267562866210938 + ], + [ + "▁Following", + -9.269756317138672 + ], + [ + "▁1990", + -9.269864082336426 + ], + [ + "un", + -9.27068042755127 + ], + [ + "The", + -9.270862579345703 + ], + [ + "▁White", + -9.272369384765625 + ], + [ + "▁quality", + -9.27242374420166 + ], + [ + "▁results", + -9.274892807006836 + ], + [ + "▁cases", + -9.275114059448242 + ], + [ + "▁asked", + -9.275314331054688 + ], + [ + "▁How", + -9.275830268859863 + ], + [ + "ally", + -9.27664566040039 + ], + [ + "▁prevent", + -9.277029991149902 + ], + [ + "▁allow", + -9.277850151062012 + ], + [ + "ce", + -9.279095649719238 + ], + [ + "ated", + -9.279848098754883 + ], + [ + "▁runs", + -9.279858589172363 + ], + [ + "▁Z", + -9.28052806854248 + ], + [ + "▁makes", + -9.281837463378906 + ], + [ + "▁units", + -9.281848907470703 + ], + [ + "and", + -9.283812522888184 + ], + [ + "▁gun", + -9.284135818481445 + ], + [ + "▁Island", + -9.284904479980469 + ], + [ + "▁appearance", + -9.285707473754883 + ], + [ + "▁learning", + -9.286006927490234 + ], + [ + "▁length", + -9.286111831665039 + ], + [ + "▁summer", + -9.286581993103027 + ], + [ + "▁systems", + -9.287118911743164 + ], + [ + "ak", + -9.287378311157227 + ], + [ + "▁Mar", + -9.287883758544922 + ], + [ + "ization", + -9.287939071655273 + ], + [ + "▁novel", + -9.288294792175293 + ], + [ + "▁critics", + -9.288457870483398 + ], + [ + "▁potential", + -9.289752960205078 + ], + [ + "▁attempt", + -9.289956092834473 + ], + [ + "▁clear", + -9.289993286132812 + ], + [ + "▁northern", + -9.290764808654785 + ], + [ + "▁impact", + -9.291478157043457 + ], + [ + "▁Germany", + -9.291528701782227 + ], + [ + "▁High", + -9.29291820526123 + ], + [ + "▁services", + -9.294012069702148 + ], + [ + "▁shot", + -9.294695854187012 + ], + [ + "▁produce", + -9.296223640441895 + ], + [ + "▁finished", + -9.297085762023926 + ], + [ + "▁Aktè", + -9.297204971313477 + ], + [ + "▁act", + -9.297499656677246 + ], + [ + "▁Hall", + -9.297688484191895 + ], + [ + "▁dis", + -9.298436164855957 + ], + [ + "▁studio", + -9.299477577209473 + ], + [ + "▁ability", + -9.299631118774414 + ], + [ + "▁victory", + -9.300402641296387 + ], + [ + "lin", + -9.301013946533203 + ], + [ + "▁yet", + -9.301698684692383 + ], + [ + "▁limited", + -9.303290367126465 + ], + [ + "ium", + -9.305525779724121 + ], + [ + "▁influence", + -9.307056427001953 + ], + [ + "▁crew", + -9.308430671691895 + ], + [ + "▁terms", + -9.309468269348145 + ], + [ + "▁Pro", + -9.31057357788086 + ], + [ + "▁Peter", + -9.310977935791016 + ], + [ + "R", + -9.311904907226562 + ], + [ + "ya", + -9.313404083251953 + ], + [ + "J", + -9.314314842224121 + ], + [ + "▁previously", + -9.315590858459473 + ], + [ + "▁Star", + -9.315837860107422 + ], + [ + "▁hurricane", + -9.315886497497559 + ], + [ + "▁Richard", + -9.315991401672363 + ], + [ + "▁thus", + -9.3172025680542 + ], + [ + "▁lines", + -9.318114280700684 + ], + [ + "by", + -9.318862915039062 + ], + [ + "▁studies", + -9.319168090820312 + ], + [ + "▁physical", + -9.319323539733887 + ], + [ + "▁compared", + -9.31939697265625 + ], + [ + "▁spent", + -9.319828033447266 + ], + [ + "tic", + -9.319924354553223 + ], + [ + "▁Roman", + -9.320247650146484 + ], + [ + "▁probably", + -9.32039737701416 + ], + [ + "▁room", + -9.320704460144043 + ], + [ + "▁Center", + -9.321104049682617 + ], + [ + "ite", + -9.32143497467041 + ], + [ + "–", + -9.32154369354248 + ], + [ + "▁Go", + -9.322074890136719 + ], + [ + "▁initially", + -9.322189331054688 + ], + [ + "▁lot", + -9.323201179504395 + ], + [ + "▁Bo", + -9.323741912841797 + ], + [ + "▁activity", + -9.324209213256836 + ], + [ + ".\"", + -9.324230194091797 + ], + [ + "▁China", + -9.324841499328613 + ], + [ + "▁learn", + -9.3251953125 + ], + [ + "ti", + -9.32626724243164 + ], + [ + "▁UK", + -9.327288627624512 + ], + [ + "▁College", + -9.32843017578125 + ], + [ + "▁date", + -9.32932186126709 + ], + [ + "▁industry", + -9.329808235168457 + ], + [ + "der", + -9.33006477355957 + ], + [ + "▁Edikasyon", + -9.330465316772461 + ], + [ + "▁Kingdom", + -9.33067798614502 + ], + [ + "▁Western", + -9.331228256225586 + ], + [ + "▁female", + -9.331321716308594 + ], + [ + "▁1999", + -9.331385612487793 + ], + [ + "▁Since", + -9.33327579498291 + ], + [ + "▁shown", + -9.333529472351074 + ], + [ + "ni", + -9.33424186706543 + ], + [ + "▁poor", + -9.334733963012695 + ], + [ + "io", + -9.335161209106445 + ], + [ + "ga", + -9.337648391723633 + ], + [ + "▁river", + -9.337740898132324 + ], + [ + "▁round", + -9.338247299194336 + ], + [ + "▁ended", + -9.3388671875 + ], + [ + "ard", + -9.339487075805664 + ], + [ + "▁why", + -9.339827537536621 + ], + [ + "▁Christian", + -9.340150833129883 + ], + [ + "▁Smith", + -9.340738296508789 + ], + [ + "▁cast", + -9.341894149780273 + ], + [ + "▁value", + -9.342031478881836 + ], + [ + "▁build", + -9.342182159423828 + ], + [ + "▁2016", + -9.342484474182129 + ], + [ + "▁includes", + -9.34262466430664 + ], + [ + "▁cells", + -9.34349250793457 + ], + [ + "▁mph", + -9.344252586364746 + ], + [ + "ham", + -9.3443603515625 + ], + [ + "▁nearly", + -9.345158576965332 + ], + [ + "▁Lo", + -9.345494270324707 + ], + [ + "▁appear", + -9.346657752990723 + ], + [ + "ies", + -9.34758186340332 + ], + [ + "▁60", + -9.348414421081543 + ], + [ + "▁introduced", + -9.350569725036621 + ], + [ + "ating", + -9.350587844848633 + ], + [ + "▁technology", + -9.35090446472168 + ], + [ + "ey", + -9.35164737701416 + ], + [ + "▁Company", + -9.35279369354248 + ], + [ + "▁Navy", + -9.354120254516602 + ], + [ + "▁Day", + -9.356194496154785 + ], + [ + "ber", + -9.356708526611328 + ], + [ + "▁develop", + -9.357991218566895 + ], + [ + "▁highway", + -9.35813045501709 + ], + [ + "▁actually", + -9.359236717224121 + ], + [ + "▁Music", + -9.359763145446777 + ], + [ + "▁despite", + -9.360750198364258 + ], + [ + "▁Lord", + -9.361817359924316 + ], + [ + "▁subject", + -9.361856460571289 + ], + [ + "▁coast", + -9.362292289733887 + ], + [ + "▁king", + -9.36247730255127 + ], + [ + "▁Brown", + -9.36318588256836 + ], + [ + "ina", + -9.363378524780273 + ], + [ + "▁whom", + -9.363921165466309 + ], + [ + "▁Bay", + -9.364006042480469 + ], + [ + "▁overall", + -9.365195274353027 + ], + [ + "▁chart", + -9.365897178649902 + ], + [ + "▁brain", + -9.366799354553223 + ], + [ + "▁carried", + -9.367082595825195 + ], + [ + "▁pro", + -9.367131233215332 + ], + [ + "▁regular", + -9.368313789367676 + ], + [ + "▁market", + -9.371119499206543 + ], + [ + "]", + -9.371729850769043 + ], + [ + "▁nine", + -9.375336647033691 + ], + [ + "▁ordered", + -9.37569522857666 + ], + [ + "▁1980", + -9.376599311828613 + ], + [ + "▁medical", + -9.376729965209961 + ], + [ + "▁paper", + -9.377037048339844 + ], + [ + "▁commercial", + -9.377338409423828 + ], + [ + "▁attention", + -9.377946853637695 + ], + [ + "▁sense", + -9.378030776977539 + ], + [ + "▁failed", + -9.379014015197754 + ], + [ + "▁radio", + -9.379077911376953 + ], + [ + "▁estimated", + -9.379792213439941 + ], + [ + "ful", + -9.380051612854004 + ], + [ + "▁approach", + -9.380264282226562 + ], + [ + "▁growth", + -9.381044387817383 + ], + [ + "▁°", + -9.38131332397461 + ], + [ + "▁Jean", + -9.381617546081543 + ], + [ + "▁plants", + -9.382329940795898 + ], + [ + "▁feel", + -9.382743835449219 + ], + [ + "▁signed", + -9.38289737701416 + ], + [ + "▁Se", + -9.383792877197266 + ], + [ + "ish", + -9.384260177612305 + ], + [ + "▁animals", + -9.384855270385742 + ], + [ + "▁1970", + -9.38580322265625 + ], + [ + "ier", + -9.388397216796875 + ], + [ + "▁activities", + -9.3892240524292 + ], + [ + "▁becoming", + -9.389792442321777 + ], + [ + "▁staff", + -9.391106605529785 + ], + [ + "▁Africa", + -9.392354965209961 + ], + [ + "▁woman", + -9.393238067626953 + ], + [ + "▁Chinese", + -9.394290924072266 + ], + [ + "▁professional", + -9.394291877746582 + ], + [ + "▁complex", + -9.394861221313477 + ], + [ + "▁Cup", + -9.396142959594727 + ], + [ + "▁cancer", + -9.396295547485352 + ], + [ + "▁1998", + -9.396727561950684 + ], + [ + "▁police", + -9.39713191986084 + ], + [ + "▁Association", + -9.400118827819824 + ], + [ + "▁standard", + -9.400630950927734 + ], + [ + "▁Lake", + -9.401004791259766 + ], + [ + "▁private", + -9.401344299316406 + ], + [ + "▁student", + -9.402830123901367 + ], + [ + "▁wind", + -9.403894424438477 + ], + [ + "▁Britain", + -9.404716491699219 + ], + [ + "▁remains", + -9.406004905700684 + ], + [ + "▁environment", + -9.406745910644531 + ], + [ + "▁Los", + -9.40921688079834 + ], + [ + "▁score", + -9.410463333129883 + ], + [ + "▁president", + -9.411245346069336 + ], + [ + "▁leave", + -9.412240982055664 + ], + [ + "▁Don", + -9.413171768188477 + ], + [ + "va", + -9.414155006408691 + ], + [ + "im", + -9.414894104003906 + ], + [ + "▁forward", + -9.415055274963379 + ], + [ + "▁network", + -9.41673755645752 + ], + [ + "▁via", + -9.417052268981934 + ], + [ + "▁western", + -9.417388916015625 + ], + [ + "▁Ar", + -9.41761589050293 + ], + [ + "▁running", + -9.418475151062012 + ], + [ + "ah", + -9.419404029846191 + ], + [ + "▁Hill", + -9.420143127441406 + ], + [ + "▁primary", + -9.421177864074707 + ], + [ + "▁brother", + -9.421770095825195 + ], + [ + "▁author", + -9.422416687011719 + ], + [ + "▁praised", + -9.422880172729492 + ], + [ + "▁trade", + -9.423484802246094 + ], + [ + "▁pay", + -9.424286842346191 + ], + [ + "▁Another", + -9.425215721130371 + ], + [ + "▁Or", + -9.425281524658203 + ], + [ + "▁location", + -9.42603874206543 + ], + [ + "▁call", + -9.426177978515625 + ], + [ + "▁mass", + -9.426619529724121 + ], + [ + "▁continue", + -9.427403450012207 + ], + [ + "▁traditional", + -9.427643775939941 + ], + [ + "▁Soviet", + -9.428847312927246 + ], + [ + "▁weight", + -9.429716110229492 + ], + [ + "▁article", + -9.431571006774902 + ], + [ + "▁Times", + -9.431783676147461 + ], + [ + "▁directed", + -9.431906700134277 + ], + [ + "▁di", + -9.432692527770996 + ], + [ + "▁Spanish", + -9.433320999145508 + ], + [ + "▁variety", + -9.434263229370117 + ], + [ + "▁Texas", + -9.434309005737305 + ], + [ + "▁changed", + -9.434407234191895 + ], + [ + "▁types", + -9.434587478637695 + ], + [ + "▁kind", + -9.435044288635254 + ], + [ + "▁African", + -9.43609619140625 + ], + [ + "▁winds", + -9.436980247497559 + ], + [ + "▁meaning", + -9.43828010559082 + ], + [ + "▁critical", + -9.438855171203613 + ], + [ + "▁active", + -9.439962387084961 + ], + [ + "▁league", + -9.440808296203613 + ], + [ + "▁parents", + -9.441757202148438 + ], + [ + "▁Council", + -9.442901611328125 + ], + [ + "ac", + -9.44396686553955 + ], + [ + "▁mind", + -9.444512367248535 + ], + [ + "▁fall", + -9.44672966003418 + ], + [ + "out", + -9.447278022766113 + ], + [ + "▁knowledge", + -9.447568893432617 + ], + [ + "▁arrived", + -9.44798469543457 + ], + [ + "▁Un", + -9.448226928710938 + ], + [ + "▁claimed", + -9.448918342590332 + ], + [ + "con", + -9.449698448181152 + ], + [ + "è", + -9.451583862304688 + ], + [ + "▁cannot", + -9.452624320983887 + ], + [ + "▁takes", + -9.454056739807129 + ], + [ + "▁society", + -9.454214096069336 + ], + [ + "▁ex", + -9.454455375671387 + ], + [ + "▁suggested", + -9.456214904785156 + ], + [ + "▁£", + -9.456598281860352 + ], + [ + "▁Na", + -9.458150863647461 + ], + [ + "▁direct", + -9.458884239196777 + ], + [ + "▁Award", + -9.46005916595459 + ], + [ + "▁greater", + -9.46164321899414 + ], + [ + "▁capital", + -9.461665153503418 + ], + [ + "▁cell", + -9.461932182312012 + ], + [ + "▁effective", + -9.462530136108398 + ], + [ + "▁recording", + -9.462752342224121 + ], + [ + "▁culture", + -9.462818145751953 + ], + [ + "▁NY", + -9.462824821472168 + ], + [ + "▁recent", + -9.46423625946045 + ], + [ + "▁fight", + -9.464240074157715 + ], + [ + "▁understand", + -9.46472454071045 + ], + [ + "▁90", + -9.465836524963379 + ], + [ + "▁Force", + -9.465935707092285 + ], + [ + "▁musical", + -9.466447830200195 + ], + [ + "▁1997", + -9.46646785736084 + ], + [ + "▁proposed", + -9.46742057800293 + ], + [ + "▁intended", + -9.468216896057129 + ], + [ + "▁election", + -9.468267440795898 + ], + [ + "▁Virginia", + -9.468392372131348 + ], + [ + "▁approximately", + -9.468429565429688 + ], + [ + "▁remaining", + -9.468963623046875 + ], + [ + "▁contains", + -9.46899700164795 + ], + [ + "▁bridge", + -9.47012996673584 + ], + [ + "▁Du", + -9.471085548400879 + ], + [ + "▁reason", + -9.471936225891113 + ], + [ + "▁35", + -9.472362518310547 + ], + [ + "▁matter", + -9.472711563110352 + ], + [ + "▁Love", + -9.473543167114258 + ], + [ + "▁helped", + -9.474074363708496 + ], + [ + "▁latter", + -9.474956512451172 + ], + [ + "▁Sun", + -9.475419998168945 + ], + [ + "▁ː", + -9.475629806518555 + ], + [ + "▁account", + -9.475747108459473 + ], + [ + "▁deep", + -9.476951599121094 + ], + [ + "▁feature", + -9.478253364562988 + ], + [ + "▁eastern", + -9.478649139404297 + ], + [ + "▁majority", + -9.47929573059082 + ], + [ + "sa", + -9.479607582092285 + ], + [ + "▁1960", + -9.480234146118164 + ], + [ + "▁gold", + -9.480565071105957 + ], + [ + "▁reach", + -9.481401443481445 + ], + [ + "per", + -9.481447219848633 + ], + [ + "▁unit", + -9.482017517089844 + ], + [ + "▁focus", + -9.482498168945312 + ], + [ + "6", + -9.485053062438965 + ], + [ + "▁got", + -9.485081672668457 + ], + [ + "▁supported", + -9.486547470092773 + ], + [ + "▁highly", + -9.486747741699219 + ], + [ + "▁leaving", + -9.486827850341797 + ], + [ + "▁status", + -9.48692798614502 + ], + [ + "▁directly", + -9.487125396728516 + ], + [ + "▁believe", + -9.48740005493164 + ], + [ + "▁true", + -9.489462852478027 + ], + [ + "▁inside", + -9.490059852600098 + ], + [ + "▁Russian", + -9.491089820861816 + ], + [ + "▁eye", + -9.49152946472168 + ], + [ + "▁discovered", + -9.492526054382324 + ], + [ + "▁immediately", + -9.492572784423828 + ], + [ + "▁share", + -9.493622779846191 + ], + [ + "sh", + -9.494684219360352 + ], + [ + "▁schools", + -9.49717903137207 + ], + [ + "▁content", + -9.500725746154785 + ], + [ + "▁follow", + -9.500961303710938 + ], + [ + "▁contact", + -9.501423835754395 + ], + [ + "▁mostly", + -9.502145767211914 + ], + [ + "▁comes", + -9.503703117370605 + ], + [ + "▁reviews", + -9.503704071044922 + ], + [ + "▁Grand", + -9.504508972167969 + ], + [ + "▁Mary", + -9.504646301269531 + ], + [ + "▁Department", + -9.504655838012695 + ], + [ + "▁Route", + -9.50512981414795 + ], + [ + "▁contract", + -9.506796836853027 + ], + [ + "▁skin", + -9.507248878479004 + ], + [ + "ot", + -9.508076667785645 + ], + [ + "▁smaller", + -9.508079528808594 + ], + [ + "▁Both", + -9.508331298828125 + ], + [ + "▁question", + -9.509045600891113 + ], + [ + "▁reduce", + -9.509625434875488 + ], + [ + "▁multiple", + -9.510063171386719 + ], + [ + "▁writer", + -9.51116943359375 + ], + [ + "▁magazine", + -9.511556625366211 + ], + [ + "▁voice", + -9.511590957641602 + ], + [ + "▁religious", + -9.51237964630127 + ], + [ + "▁expected", + -9.512476921081543 + ], + [ + "▁gas", + -9.512520790100098 + ], + [ + "field", + -9.5136079788208 + ], + [ + "▁books", + -9.514070510864258 + ], + [ + "▁entered", + -9.515009880065918 + ], + [ + "▁operations", + -9.5150785446167 + ], + [ + "▁80", + -9.515382766723633 + ], + [ + "▁daughter", + -9.515844345092773 + ], + [ + "ship", + -9.516525268554688 + ], + [ + "mi", + -9.51753044128418 + ], + [ + "bo", + -9.517951011657715 + ], + [ + "▁initial", + -9.519034385681152 + ], + [ + "ki", + -9.519649505615234 + ], + [ + "▁condition", + -9.519768714904785 + ], + [ + "▁pwovens", + -9.51994514465332 + ], + [ + "▁stop", + -9.520537376403809 + ], + [ + "▁destroyed", + -9.520792961120605 + ], + [ + "▁simple", + -9.520956039428711 + ], + [ + "ko", + -9.52125072479248 + ], + [ + "ize", + -9.521668434143066 + ], + [ + "▁moving", + -9.521909713745117 + ], + [ + "▁improve", + -9.522601127624512 + ], + [ + "ster", + -9.523486137390137 + ], + [ + "U", + -9.524358749389648 + ], + [ + "▁necessary", + -9.52500057220459 + ], + [ + "▁Mark", + -9.525834083557129 + ], + [ + "▁removed", + -9.525883674621582 + ], + [ + "▁needs", + -9.525944709777832 + ], + [ + "▁image", + -9.527010917663574 + ], + [ + "▁policy", + -9.528038024902344 + ], + [ + "ut", + -9.528674125671387 + ], + [ + "▁leader", + -9.528993606567383 + ], + [ + "▁prior", + -9.529394149780273 + ], + [ + "ana", + -9.530060768127441 + ], + [ + "▁football", + -9.530572891235352 + ], + [ + "▁debut", + -9.530901908874512 + ], + [ + "▁management", + -9.5313081741333 + ], + [ + "▁middle", + -9.531562805175781 + ], + [ + "▁depression", + -9.532678604125977 + ], + [ + "▁Canadian", + -9.533416748046875 + ], + [ + "▁Martin", + -9.533584594726562 + ], + [ + "▁method", + -9.53376293182373 + ], + [ + "ence", + -9.534138679504395 + ], + [ + "▁double", + -9.535731315612793 + ], + [ + "▁write", + -9.537741661071777 + ], + [ + "▁fleet", + -9.537912368774414 + ], + [ + "▁forms", + -9.53964614868164 + ], + [ + "▁appears", + -9.539666175842285 + ], + [ + "▁Game", + -9.540021896362305 + ], + [ + "▁legal", + -9.540566444396973 + ], + [ + "▁computer", + -9.542011260986328 + ], + [ + "▁appointed", + -9.543017387390137 + ], + [ + "▁friend", + -9.543600082397461 + ], + [ + "▁deal", + -9.54407024383545 + ], + [ + "▁companies", + -9.54426097869873 + ], + [ + "▁break", + -9.544812202453613 + ], + [ + "mer", + -9.545512199401855 + ], + [ + "▁Pacific", + -9.545646667480469 + ], + [ + "▁married", + -9.546136856079102 + ], + [ + "▁function", + -9.547722816467285 + ], + [ + "▁meeting", + -9.548065185546875 + ], + [ + "▁ways", + -9.548065185546875 + ], + [ + "▁Car", + -9.548072814941406 + ], + [ + "▁plans", + -9.548340797424316 + ], + [ + "▁situation", + -9.551263809204102 + ], + [ + "▁Chicago", + -9.551405906677246 + ], + [ + "▁numerous", + -9.551907539367676 + ], + [ + "▁products", + -9.551993370056152 + ], + [ + "▁pass", + -9.552313804626465 + ], + [ + "▁1995", + -9.552504539489746 + ], + [ + "▁agreed", + -9.552766799926758 + ], + [ + "▁peyi", + -9.552885055541992 + ], + [ + "...", + -9.55305004119873 + ], + [ + "▁effort", + -9.55355167388916 + ], + [ + "▁climate", + -9.553682327270508 + ], + [ + "▁individuals", + -9.554619789123535 + ], + [ + "ek", + -9.556885719299316 + ], + [ + "▁Party", + -9.5575590133667 + ], + [ + "▁du", + -9.56010913848877 + ], + [ + "ial", + -9.561043739318848 + ], + [ + "▁male", + -9.561943054199219 + ], + [ + "▁big", + -9.561988830566406 + ], + [ + "▁doing", + -9.562491416931152 + ], + [ + "▁Ben", + -9.56290054321289 + ], + [ + "▁avoid", + -9.562934875488281 + ], + [ + "▁Edward", + -9.56305980682373 + ], + [ + "ance", + -9.563116073608398 + ], + [ + "▁analysis", + -9.5641508102417 + ], + [ + "▁lived", + -9.56430435180664 + ], + [ + "▁sources", + -9.56503677368164 + ], + [ + "pe", + -9.565220832824707 + ], + [ + "▁defeated", + -9.565454483032227 + ], + [ + "▁v", + -9.565792083740234 + ], + [ + "▁ball", + -9.566275596618652 + ], + [ + "▁numbers", + -9.566580772399902 + ], + [ + "▁village", + -9.566648483276367 + ], + [ + "▁stars", + -9.566725730895996 + ], + [ + "▁le", + -9.567380905151367 + ], + [ + "▁separate", + -9.56762981414795 + ], + [ + "min", + -9.56804084777832 + ], + [ + "▁buildings", + -9.56877613067627 + ], + [ + "▁hour", + -9.56932258605957 + ], + [ + "ja", + -9.569402694702148 + ], + [ + "▁responsible", + -9.570351600646973 + ], + [ + "au", + -9.570691108703613 + ], + [ + "▁Green", + -9.57151985168457 + ], + [ + "▁board", + -9.57205581665039 + ], + [ + "▁Second", + -9.57281494140625 + ], + [ + "▁green", + -9.573843002319336 + ], + [ + "▁Ka", + -9.574209213256836 + ], + [ + "pa", + -9.574838638305664 + ], + [ + "▁giving", + -9.5750732421875 + ], + [ + "▁offered", + -9.575774192810059 + ], + [ + "▁Queen", + -9.577031135559082 + ], + [ + "▁soldiers", + -9.577498435974121 + ], + [ + "▁letter", + -9.577583312988281 + ], + [ + "▁goals", + -9.577824592590332 + ], + [ + "▁financial", + -9.578085899353027 + ], + [ + "▁hold", + -9.578314781188965 + ], + [ + "▁pain", + -9.578583717346191 + ], + [ + "▁Ne", + -9.579320907592773 + ], + [ + "▁text", + -9.579702377319336 + ], + [ + "▁Because", + -9.579833984375 + ], + [ + "▁referred", + -9.58056926727295 + ], + [ + "▁friends", + -9.58147144317627 + ], + [ + "▁captured", + -9.582751274108887 + ], + [ + "▁color", + -9.582859992980957 + ], + [ + "▁simply", + -9.58325481414795 + ], + [ + "vo", + -9.583487510681152 + ], + [ + "ran", + -9.583525657653809 + ], + [ + "▁Over", + -9.583829879760742 + ], + [ + "que", + -9.584003448486328 + ], + [ + "▁Di", + -9.584037780761719 + ], + [ + "▁foot", + -9.58425521850586 + ], + [ + "les", + -9.58470344543457 + ], + [ + "▁reduced", + -9.584760665893555 + ], + [ + "▁theory", + -9.585138320922852 + ], + [ + "▁winning", + -9.587265968322754 + ], + [ + "▁Kominote", + -9.587705612182617 + ], + [ + "▁Central", + -9.588390350341797 + ], + [ + "▁efforts", + -9.590032577514648 + ], + [ + "▁extended", + -9.591085433959961 + ], + [ + "▁fish", + -9.59168815612793 + ], + [ + "▁Florida", + -9.591816902160645 + ], + [ + "▁ran", + -9.594401359558105 + ], + [ + "▁scale", + -9.594649314880371 + ], + [ + "▁metal", + -9.59465503692627 + ], + [ + "ville", + -9.595266342163086 + ], + [ + "▁division", + -9.595454216003418 + ], + [ + "▁i", + -9.595728874206543 + ], + [ + "ten", + -9.595962524414062 + ], + [ + "▁job", + -9.59669017791748 + ], + [ + "▁Johnson", + -9.596817970275879 + ], + [ + "ised", + -9.598310470581055 + ], + [ + "▁normal", + -9.598953247070312 + ], + [ + "▁provides", + -9.599034309387207 + ], + [ + "▁planned", + -9.599349975585938 + ], + [ + "▁thing", + -9.600502014160156 + ], + [ + "0", + -9.600556373596191 + ], + [ + "▁symptoms", + -9.600770950317383 + ], + [ + "▁begin", + -9.601436614990234 + ], + [ + "▁raised", + -9.6016206741333 + ], + [ + "▁reading", + -9.60235595703125 + ], + [ + "▁occurred", + -9.602693557739258 + ], + [ + "▁45", + -9.60370922088623 + ], + [ + "▁park", + -9.603732109069824 + ], + [ + "▁Can", + -9.603850364685059 + ], + [ + "▁temperature", + -9.603926658630371 + ], + [ + "▁upper", + -9.604659080505371 + ], + [ + "▁More", + -9.604850769042969 + ], + [ + "▁g", + -9.60653305053711 + ], + [ + "way", + -9.606661796569824 + ], + [ + "▁lives", + -9.60693645477295 + ], + [ + "▁mixed", + -9.607651710510254 + ], + [ + "▁1994", + -9.608107566833496 + ], + [ + "Y", + -9.608575820922852 + ], + [ + "ists", + -9.60892391204834 + ], + [ + "▁300", + -9.60942554473877 + ], + [ + "▁property", + -9.609940528869629 + ], + [ + "he", + -9.609978675842285 + ], + [ + "▁covered", + -9.610021591186523 + ], + [ + "▁resources", + -9.610025405883789 + ], + [ + "▁federal", + -9.610136985778809 + ], + [ + "▁cm", + -9.610893249511719 + ], + [ + "▁Old", + -9.611194610595703 + ], + [ + "▁Jackson", + -9.611539840698242 + ], + [ + "▁70", + -9.61163330078125 + ], + [ + "▁patients", + -9.612190246582031 + ], + [ + "▁films", + -9.612275123596191 + ], + [ + "▁operation", + -9.61264419555664 + ], + [ + "▁Politik", + -9.612748146057129 + ], + [ + "ger", + -9.613520622253418 + ], + [ + "▁Ekonomi", + -9.613924026489258 + ], + [ + "ring", + -9.613957405090332 + ], + [ + "▁bring", + -9.61440372467041 + ], + [ + "▁cross", + -9.616134643554688 + ], + [ + "▁Y", + -9.616182327270508 + ], + [ + "▁protect", + -9.617438316345215 + ], + [ + "▁Jack", + -9.617647171020508 + ], + [ + "▁wall", + -9.618069648742676 + ], + [ + "▁Les", + -9.6181001663208 + ], + [ + "▁issued", + -9.618334770202637 + ], + [ + "▁direction", + -9.618435859680176 + ], + [ + "7", + -9.61963939666748 + ], + [ + "ver", + -9.61978530883789 + ], + [ + "za", + -9.619876861572266 + ], + [ + "▁flight", + -9.619982719421387 + ], + [ + "▁fell", + -9.620393753051758 + ], + [ + "▁remain", + -9.620495796203613 + ], + [ + "▁plot", + -9.620739936828613 + ], + [ + "▁Po", + -9.62173080444336 + ], + [ + "▁therefore", + -9.623637199401855 + ], + [ + ",\"", + -9.624412536621094 + ], + [ + "▁Atlantic", + -9.624800682067871 + ], + [ + "▁Their", + -9.625272750854492 + ], + [ + "▁Italian", + -9.626482963562012 + ], + [ + "▁winter", + -9.626898765563965 + ], + [ + "▁finally", + -9.627175331115723 + ], + [ + "ck", + -9.62779712677002 + ], + [ + "á", + -9.62874984741211 + ], + [ + "▁Ca", + -9.629249572753906 + ], + [ + "(", + -9.629388809204102 + ], + [ + "▁script", + -9.629728317260742 + ], + [ + "▁lang", + -9.630392074584961 + ], + [ + "▁Ma", + -9.630452156066895 + ], + [ + "▁rule", + -9.630805969238281 + ], + [ + "▁growing", + -9.630966186523438 + ], + [ + "▁presence", + -9.631440162658691 + ], + [ + "▁concept", + -9.631473541259766 + ], + [ + "▁awarded", + -9.631611824035645 + ], + [ + "▁Ra", + -9.631848335266113 + ], + [ + "▁animal", + -9.632229804992676 + ], + [ + "▁collection", + -9.632411003112793 + ], + [ + "▁showed", + -9.632942199707031 + ], + [ + "ron", + -9.633082389831543 + ], + [ + "▁let", + -9.63332462310791 + ], + [ + "▁Congress", + -9.633383750915527 + ], + [ + "▁revealed", + -9.6343355178833 + ], + [ + "▁suffered", + -9.634815216064453 + ], + [ + "▁Group", + -9.635068893432617 + ], + [ + "▁dark", + -9.635931968688965 + ], + [ + "▁strength", + -9.636469841003418 + ], + [ + "▁meet", + -9.637059211730957 + ], + [ + "▁largely", + -9.637828826904297 + ], + [ + "wood", + -9.638978958129883 + ], + [ + "▁presented", + -9.63949203491211 + ], + [ + "▁fifth", + -9.639951705932617 + ], + [ + "▁scenes", + -9.640006065368652 + ], + [ + "▁figure", + -9.640080451965332 + ], + [ + "▁manager", + -9.640608787536621 + ], + [ + "▁Championship", + -9.641231536865234 + ], + [ + "▁uses", + -9.642172813415527 + ], + [ + "▁Later", + -9.643427848815918 + ], + [ + "▁distance", + -9.644074440002441 + ], + [ + "▁fuel", + -9.644659042358398 + ], + [ + "▁Club", + -9.645550727844238 + ], + [ + "ny", + -9.648223876953125 + ], + [ + "em", + -9.65007209777832 + ], + [ + "▁minute", + -9.650347709655762 + ], + [ + "▁Greek", + -9.650481224060059 + ], + [ + "10", + -9.651187896728516 + ], + [ + "▁Institute", + -9.652022361755371 + ], + [ + "▁try", + -9.6524658203125 + ], + [ + "▁Big", + -9.652509689331055 + ], + [ + "▁visit", + -9.65304183959961 + ], + [ + "▁supply", + -9.65310287475586 + ], + [ + "▁defeat", + -9.653861999511719 + ], + [ + "▁dead", + -9.654582977294922 + ], + [ + "▁Of", + -9.654642105102539 + ], + [ + "▁global", + -9.654808044433594 + ], + [ + "▁damaged", + -9.655906677246094 + ], + [ + "▁TV", + -9.656475067138672 + ], + [ + "▁piece", + -9.656665802001953 + ], + [ + "mar", + -9.656760215759277 + ], + [ + "▁selected", + -9.657073020935059 + ], + [ + "▁tree", + -9.657393455505371 + ], + [ + "▁annual", + -9.659048080444336 + ], + [ + "▁ice", + -9.659147262573242 + ], + [ + "▁skills", + -9.660562515258789 + ], + [ + "▁Pe", + -9.660713195800781 + ], + [ + "ci", + -9.661185264587402 + ], + [ + "ford", + -9.661308288574219 + ], + [ + "▁spread", + -9.661750793457031 + ], + [ + "▁Society", + -9.66213321685791 + ], + [ + "▁attacks", + -9.662156105041504 + ], + [ + "▁Saint", + -9.662470817565918 + ], + [ + "X", + -9.662736892700195 + ], + [ + "▁college", + -9.662961959838867 + ], + [ + "ho", + -9.663047790527344 + ], + [ + "▁1992", + -9.663972854614258 + ], + [ + "▁Tom", + -9.664674758911133 + ], + [ + "▁heat", + -9.665840148925781 + ], + [ + "ze", + -9.666336059570312 + ], + [ + "▁audience", + -9.666364669799805 + ], + [ + "▁powerful", + -9.667800903320312 + ], + [ + "▁Rock", + -9.668736457824707 + ], + [ + "▁press", + -9.66976261138916 + ], + [ + "▁Am", + -9.669880867004395 + ], + [ + "lan", + -9.670035362243652 + ], + [ + "▁Empire", + -9.670268058776855 + ], + [ + "▁Sir", + -9.671201705932617 + ], + [ + "▁questions", + -9.671887397766113 + ], + [ + "ise", + -9.671979904174805 + ], + [ + "▁completely", + -9.672161102294922 + ], + [ + "▁stories", + -9.672542572021484 + ], + [ + "▁unique", + -9.67282485961914 + ], + [ + "▁interview", + -9.672852516174316 + ], + [ + "one", + -9.673449516296387 + ], + [ + "▁pop", + -9.673999786376953 + ], + [ + "▁copies", + -9.674304008483887 + ], + [ + "▁offer", + -9.674489974975586 + ], + [ + "▁officers", + -9.674931526184082 + ], + [ + "▁teams", + -9.676015853881836 + ], + [ + "▁launched", + -9.676024436950684 + ], + [ + "ye", + -9.676297187805176 + ], + [ + "▁Ro", + -9.677376747131348 + ], + [ + "▁trees", + -9.67763900756836 + ], + [ + "▁composed", + -9.678023338317871 + ], + [ + "▁relatively", + -9.678197860717773 + ], + [ + "▁tons", + -9.678468704223633 + ], + [ + "▁becomes", + -9.67846965789795 + ], + [ + "▁severe", + -9.67875862121582 + ], + [ + "▁conducted", + -9.679279327392578 + ], + [ + "led", + -9.680118560791016 + ], + [ + "▁square", + -9.680192947387695 + ], + [ + "▁1950", + -9.680198669433594 + ], + [ + "▁resulting", + -9.68189525604248 + ], + [ + "▁Research", + -9.682567596435547 + ], + [ + "▁Frank", + -9.683422088623047 + ], + [ + "▁bar", + -9.683733940124512 + ], + [ + "▁purpose", + -9.684528350830078 + ], + [ + "▁Here", + -9.685038566589355 + ], + [ + "▁Mexico", + -9.685379028320312 + ], + [ + "▁minor", + -9.685649871826172 + ], + [ + "▁respectively", + -9.685741424560547 + ], + [ + "▁Cor", + -9.686727523803711 + ], + [ + "▁Ba", + -9.686882019042969 + ], + [ + "▁weather", + -9.687073707580566 + ], + [ + "|", + -9.68750286102295 + ], + [ + "▁port", + -9.687798500061035 + ], + [ + "▁III", + -9.687844276428223 + ], + [ + "▁genyen", + -9.689108848571777 + ], + [ + "▁observed", + -9.689671516418457 + ], + [ + "▁serious", + -9.690059661865234 + ], + [ + "▁birth", + -9.690258026123047 + ], + [ + "▁organization", + -9.690864562988281 + ], + [ + "▁occur", + -9.691190719604492 + ], + [ + "▁fans", + -9.691558837890625 + ], + [ + "ative", + -9.69166088104248 + ], + [ + "▁gen", + -9.69190502166748 + ], + [ + "▁peak", + -9.691967010498047 + ], + [ + "▁f", + -9.692407608032227 + ], + [ + "▁listed", + -9.692420959472656 + ], + [ + "▁closed", + -9.695403099060059 + ], + [ + "▁Time", + -9.696107864379883 + ], + [ + "▁bit", + -9.696540832519531 + ], + [ + "▁1993", + -9.697182655334473 + ], + [ + "hi", + -9.69762897491455 + ], + [ + "▁singer", + -9.697667121887207 + ], + [ + "▁1991", + -9.698309898376465 + ], + [ + "▁Lu", + -9.699697494506836 + ], + [ + "▁contrast", + -9.70002555847168 + ], + [ + "▁Anviwònman", + -9.700485229492188 + ], + [ + "▁Per", + -9.700579643249512 + ], + [ + "▁subsequently", + -9.7007417678833 + ], + [ + "▁ideas", + -9.701212882995605 + ], + [ + "▁looking", + -9.701260566711426 + ], + [ + "▁Health", + -9.701537132263184 + ], + [ + "▁Even", + -9.702605247497559 + ], + [ + "▁resulted", + -9.703635215759277 + ], + [ + "▁product", + -9.70379638671875 + ], + [ + "▁Devlòpman", + -9.704201698303223 + ], + [ + "▁website", + -9.705902099609375 + ], + [ + "▁morning", + -9.706502914428711 + ], + [ + "▁older", + -9.706587791442871 + ], + [ + "▁sure", + -9.7076416015625 + ], + [ + "▁online", + -9.707887649536133 + ], + [ + "▁Mr", + -9.708064079284668 + ], + [ + "▁unable", + -9.708168029785156 + ], + [ + "▁inspired", + -9.708178520202637 + ], + [ + "▁developing", + -9.70821475982666 + ], + [ + "▁32", + -9.709609985351562 + ], + [ + "▁marriage", + -9.7096586227417 + ], + [ + "▁Film", + -9.709799766540527 + ], + [ + "▁understanding", + -9.710994720458984 + ], + [ + "▁sign", + -9.712071418762207 + ], + [ + "▁native", + -9.712514877319336 + ], + [ + "▁Pre", + -9.712831497192383 + ], + [ + "sen", + -9.71432876586914 + ], + [ + "▁basic", + -9.715775489807129 + ], + [ + "▁blue", + -9.717355728149414 + ], + [ + "ru", + -9.717921257019043 + ], + [ + "▁coming", + -9.71834945678711 + ], + [ + "▁Paris", + -9.718694686889648 + ], + [ + "▁mission", + -9.7188081741333 + ], + [ + "ker", + -9.719944953918457 + ], + [ + "▁perform", + -9.720040321350098 + ], + [ + "▁kept", + -9.720396995544434 + ], + [ + "ow", + -9.720952033996582 + ], + [ + "▁inter", + -9.721090316772461 + ], + [ + "▁billion", + -9.721385955810547 + ], + [ + "▁affected", + -9.721651077270508 + ], + [ + "▁materials", + -9.722208976745605 + ], + [ + "▁Year", + -9.722318649291992 + ], + [ + "▁producer", + -9.722496032714844 + ], + [ + "▁starting", + -9.72268295288086 + ], + [ + "▁workers", + -9.723057746887207 + ], + [ + "▁Science", + -9.723206520080566 + ], + [ + "▁artist", + -9.724332809448242 + ], + [ + "▁Da", + -9.725465774536133 + ], + [ + "▁broadcast", + -9.726022720336914 + ], + [ + "▁alone", + -9.726298332214355 + ], + [ + "▁typically", + -9.726717948913574 + ], + [ + "▁increasing", + -9.726896286010742 + ], + [ + "8", + -9.7279691696167 + ], + [ + "▁negative", + -9.728063583374023 + ], + [ + "▁equipment", + -9.729107856750488 + ], + [ + "▁deyò", + -9.729146003723145 + ], + [ + "▁fighting", + -9.729874610900879 + ], + [ + "▁conflict", + -9.729957580566406 + ], + [ + "▁hands", + -9.729995727539062 + ], + [ + "chi", + -9.73011589050293 + ], + [ + "▁Your", + -9.730212211608887 + ], + [ + "▁centre", + -9.730339050292969 + ], + [ + "▁Billboard", + -9.731184005737305 + ], + [ + "▁quite", + -9.731271743774414 + ], + [ + "▁grow", + -9.731534004211426 + ], + [ + "▁notes", + -9.732072830200195 + ], + [ + "▁era", + -9.73212718963623 + ], + [ + "▁identified", + -9.732527732849121 + ], + [ + "▁hair", + -9.73277473449707 + ], + [ + "▁competition", + -9.733110427856445 + ], + [ + "▁records", + -9.733342170715332 + ], + [ + "▁Lyen", + -9.733905792236328 + ], + [ + "▁sales", + -9.734457015991211 + ], + [ + "▁combat", + -9.735541343688965 + ], + [ + "▁elected", + -9.735638618469238 + ], + [ + "▁Minister", + -9.73643684387207 + ], + [ + "▁soil", + -9.736486434936523 + ], + [ + "▁Angeles", + -9.736488342285156 + ], + [ + "▁tried", + -9.736886024475098 + ], + [ + "▁Pa", + -9.737159729003906 + ], + [ + "▁Latin", + -9.737468719482422 + ], + [ + "▁assigned", + -9.738030433654785 + ], + [ + "▁independent", + -9.738142967224121 + ], + [ + "▁nation", + -9.73861312866211 + ], + [ + "20", + -9.738999366760254 + ], + [ + "▁factors", + -9.739399909973145 + ], + [ + "▁Joseph", + -9.739541053771973 + ], + [ + "▁names", + -9.739676475524902 + ], + [ + "▁security", + -9.740252494812012 + ], + [ + "▁toward", + -9.740360260009766 + ], + [ + "▁degree", + -9.740707397460938 + ], + [ + "▁Men", + -9.741033554077148 + ], + [ + "ai", + -9.74141788482666 + ], + [ + "▁+", + -9.742402076721191 + ], + [ + "ov", + -9.743391036987305 + ], + [ + "▁serve", + -9.74364948272705 + ], + [ + "▁tracks", + -9.74377155303955 + ], + [ + "▁depi", + -9.744453430175781 + ], + [ + "▁k", + -9.74538803100586 + ], + [ + "▁Highway", + -9.745988845825195 + ], + [ + "▁n", + -9.746908187866211 + ], + [ + "▁Awards", + -9.74735164642334 + ], + [ + "▁basis", + -9.747517585754395 + ], + [ + "ius", + -9.747666358947754 + ], + [ + "▁Law", + -9.748157501220703 + ], + [ + "▁episodes", + -9.749037742614746 + ], + [ + "▁Also", + -9.750299453735352 + ], + [ + "▁begins", + -9.750560760498047 + ], + [ + "▁step", + -9.751506805419922 + ], + [ + "▁getting", + -9.751940727233887 + ], + [ + "▁dance", + -9.751943588256836 + ], + [ + "▁Like", + -9.75197696685791 + ], + [ + "▁families", + -9.752218246459961 + ], + [ + "▁machine", + -9.752554893493652 + ], + [ + "▁jewografi", + -9.752660751342773 + ], + [ + "▁allowing", + -9.753159523010254 + ], + [ + "▁actions", + -9.753259658813477 + ], + [ + "▁attempted", + -9.753436088562012 + ], + [ + "▁am", + -9.753751754760742 + ], + [ + "▁accepted", + -9.754013061523438 + ], + [ + "▁ensure", + -9.75440502166748 + ], + [ + "▁foreign", + -9.754603385925293 + ], + [ + "▁declared", + -9.754639625549316 + ], + [ + "▁mean", + -9.754816055297852 + ], + [ + "bi", + -9.754975318908691 + ], + [ + "ino", + -9.755361557006836 + ], + [ + "▁Squadron", + -9.75623893737793 + ], + [ + "▁75", + -9.756264686584473 + ], + [ + "▁Each", + -9.757469177246094 + ], + [ + "▁ha", + -9.757875442504883 + ], + [ + "▁safety", + -9.759049415588379 + ], + [ + "▁causes", + -9.759225845336914 + ], + [ + "▁ancient", + -9.759268760681152 + ], + [ + "▁protection", + -9.759293556213379 + ], + [ + "▁trying", + -9.7600736618042 + ], + [ + "ex", + -9.76074504852295 + ], + [ + "▁officer", + -9.761218070983887 + ], + [ + "▁stay", + -9.76128101348877 + ], + [ + "tro", + -9.76137924194336 + ], + [ + "▁meant", + -9.761568069458008 + ], + [ + "▁daily", + -9.76269817352295 + ], + [ + "▁attacked", + -9.762735366821289 + ], + [ + "▁Bi", + -9.763137817382812 + ], + [ + "▁travel", + -9.763509750366211 + ], + [ + "▁nothing", + -9.764404296875 + ], + [ + "▁continues", + -9.764924049377441 + ], + [ + "▁leaves", + -9.765193939208984 + ], + [ + "▁creating", + -9.765240669250488 + ], + [ + "▁Ha", + -9.765316009521484 + ], + [ + "▁Several", + -9.766494750976562 + ], + [ + "▁couple", + -9.767254829406738 + ], + [ + "▁Bill", + -9.767534255981445 + ], + [ + "ning", + -9.76876449584961 + ], + [ + "▁widely", + -9.768829345703125 + ], + [ + "▁engine", + -9.76884937286377 + ], + [ + "▁visual", + -9.769341468811035 + ], + [ + "▁cities", + -9.769533157348633 + ], + [ + "▁Louis", + -9.770224571228027 + ], + [ + "▁dry", + -9.772629737854004 + ], + [ + "▁easily", + -9.773427963256836 + ], + [ + "▁1940", + -9.773433685302734 + ], + [ + "▁guitar", + -9.773778915405273 + ], + [ + "▁lyrics", + -9.773871421813965 + ], + [ + "▁nearby", + -9.774266242980957 + ], + [ + "house", + -9.774320602416992 + ], + [ + "▁pair", + -9.774347305297852 + ], + [ + "▁receive", + -9.774629592895508 + ], + [ + "▁constructed", + -9.77513599395752 + ], + [ + "▁slow", + -9.775590896606445 + ], + [ + "▁Life", + -9.775739669799805 + ], + [ + "▁portion", + -9.776162147521973 + ], + [ + "▁path", + -9.7767333984375 + ], + [ + "▁researchers", + -9.77728271484375 + ], + [ + "▁traffic", + -9.777992248535156 + ], + [ + "▁spring", + -9.77804183959961 + ], + [ + "▁primarily", + -9.7785062789917 + ], + [ + "▁o", + -9.778630256652832 + ], + [ + "▁Not", + -9.77872371673584 + ], + [ + "▁failure", + -9.779704093933105 + ], + [ + "▁Zealand", + -9.779998779296875 + ], + [ + "▁ranked", + -9.780414581298828 + ], + [ + "▁sister", + -9.781116485595703 + ], + [ + "mp", + -9.781956672668457 + ], + [ + "▁camp", + -9.782326698303223 + ], + [ + "▁causing", + -9.782842636108398 + ], + [ + "▁Sam", + -9.783520698547363 + ], + [ + "▁inches", + -9.783676147460938 + ], + [ + "▁En", + -9.784637451171875 + ], + [ + "▁Before", + -9.785539627075195 + ], + [ + "▁surrounding", + -9.785710334777832 + ], + [ + "▁charge", + -9.786198616027832 + ], + [ + "▁twenty", + -9.786405563354492 + ], + [ + "▁beyond", + -9.78650951385498 + ], + [ + "▁border", + -9.786666870117188 + ], + [ + "▁Michigan", + -9.787288665771484 + ], + [ + "▁People", + -9.787324905395508 + ], + [ + "▁managed", + -9.787775993347168 + ], + [ + "▁cold", + -9.7880859375 + ], + [ + "▁environmental", + -9.788191795349121 + ], + [ + "▁refused", + -9.788233757019043 + ], + [ + "▁Corps", + -9.78863525390625 + ], + [ + "▁page", + -9.78897762298584 + ], + [ + "▁Fort", + -9.789104461669922 + ], + [ + "▁stone", + -9.789319038391113 + ], + [ + "ang", + -9.789433479309082 + ], + [ + "▁Super", + -9.790999412536621 + ], + [ + "▁Stone", + -9.791574478149414 + ], + [ + "▁programs", + -9.792068481445312 + ], + [ + "▁Ho", + -9.792529106140137 + ], + [ + "▁Art", + -9.792819023132324 + ], + [ + "▁determine", + -9.793038368225098 + ], + [ + "▁Museum", + -9.793740272521973 + ], + [ + "ding", + -9.793797492980957 + ], + [ + "▁Lee", + -9.793861389160156 + ], + [ + "▁Wales", + -9.794313430786133 + ], + [ + "▁birds", + -9.794322967529297 + ], + [ + "ure", + -9.795711517333984 + ], + [ + "▁fast", + -9.795802116394043 + ], + [ + "om", + -9.796066284179688 + ], + [ + "▁Final", + -9.797127723693848 + ], + [ + "▁fully", + -9.797780990600586 + ], + [ + "ile", + -9.797877311706543 + ], + [ + "▁earned", + -9.798202514648438 + ], + [ + "▁Moun", + -9.798321723937988 + ], + [ + "▁Scott", + -9.79891300201416 + ], + [ + "ji", + -9.799542427062988 + ], + [ + "▁Tu", + -9.799551010131836 + ], + [ + "ig", + -9.801430702209473 + ], + [ + "▁Port", + -9.801468849182129 + ], + [ + "▁methods", + -9.80292797088623 + ], + [ + "▁edition", + -9.802985191345215 + ], + [ + "▁mainly", + -9.803152084350586 + ], + [ + "▁advance", + -9.803351402282715 + ], + [ + "▁Van", + -9.803672790527344 + ], + [ + "▁box", + -9.804733276367188 + ], + [ + "▁chief", + -9.805258750915527 + ], + [ + "che", + -9.805340766906738 + ], + [ + "▁trial", + -9.805500030517578 + ], + [ + "▁train", + -9.805648803710938 + ], + [ + "▁combined", + -9.805952072143555 + ], + [ + "▁marked", + -9.807463645935059 + ], + [ + "ping", + -9.807902336120605 + ], + [ + "▁Su", + -9.80790901184082 + ], + [ + "▁Service", + -9.809500694274902 + ], + [ + "▁onto", + -9.809696197509766 + ], + [ + "▁(19", + -9.811570167541504 + ], + [ + "▁ago", + -9.81158447265625 + ], + [ + "▁famous", + -9.811704635620117 + ], + [ + "▁allows", + -9.812108039855957 + ], + [ + "_", + -9.812867164611816 + ], + [ + "▁scientific", + -9.813315391540527 + ], + [ + "tu", + -9.81455135345459 + ], + [ + "dy", + -9.814935684204102 + ], + [ + "tor", + -9.815587043762207 + ], + [ + "▁alternative", + -9.815593719482422 + ], + [ + "▁Three", + -9.815655708312988 + ], + [ + "▁commander", + -9.816061019897461 + ], + [ + "▁extra", + -9.816207885742188 + ], + [ + "▁Bridge", + -9.816349983215332 + ], + [ + "▁1930", + -9.817441940307617 + ], + [ + "▁slightly", + -9.817720413208008 + ], + [ + "▁recently", + -9.81776237487793 + ], + [ + "▁yards", + -9.818133354187012 + ], + [ + "▁bad", + -9.819093704223633 + ], + [ + "▁Kiben", + -9.819129943847656 + ], + [ + "▁background", + -9.819319725036621 + ], + [ + "▁fevry", + -9.819442749023438 + ], + [ + "▁capacity", + -9.82046127319336 + ], + [ + "▁Test", + -9.820969581604004 + ], + [ + "▁stand", + -9.820992469787598 + ], + [ + "▁someone", + -9.821220397949219 + ], + [ + "▁historical", + -9.821304321289062 + ], + [ + "▁screen", + -9.821388244628906 + ], + [ + "▁divided", + -9.821391105651855 + ], + [ + "▁paid", + -9.821430206298828 + ], + [ + "▁maximum", + -9.821447372436523 + ], + [ + "op", + -9.821539878845215 + ], + [ + "ung", + -9.821566581726074 + ], + [ + "▁Americans", + -9.821575164794922 + ], + [ + "vi", + -9.821751594543457 + ], + [ + "▁reference", + -9.822092056274414 + ], + [ + "▁Q", + -9.822527885437012 + ], + [ + "▁movie", + -9.822904586791992 + ], + [ + "▁Mac", + -9.822948455810547 + ], + [ + "▁speech", + -9.823342323303223 + ], + [ + "▁Committee", + -9.825838088989258 + ], + [ + "fe", + -9.826250076293945 + ], + [ + "▁save", + -9.826769828796387 + ], + [ + "po", + -9.82679557800293 + ], + [ + "▁Si", + -9.826930046081543 + ], + [ + "▁cultural", + -9.827649116516113 + ], + [ + "gi", + -9.828453063964844 + ], + [ + "izing", + -9.82882308959961 + ], + [ + "▁setting", + -9.829136848449707 + ], + [ + "▁easy", + -9.82967472076416 + ], + [ + "ap", + -9.830421447753906 + ], + [ + "▁diet", + -9.83402156829834 + ], + [ + "ik", + -9.83409595489502 + ], + [ + "jo", + -9.834380149841309 + ], + [ + "▁search", + -9.836241722106934 + ], + [ + "time", + -9.836277961730957 + ], + [ + "▁injury", + -9.8373384475708 + ], + [ + "▁choice", + -9.838851928710938 + ], + [ + "▁civil", + -9.839518547058105 + ], + [ + "▁Tour", + -9.83991813659668 + ], + [ + "▁equal", + -9.840398788452148 + ], + [ + "▁Chris", + -9.840714454650879 + ], + [ + "we", + -9.84255599975586 + ], + [ + "▁Southern", + -9.842782020568848 + ], + [ + "gen", + -9.844426155090332 + ], + [ + "ward", + -9.845069885253906 + ], + [ + "▁ending", + -9.84558391571045 + ], + [ + "▁Under", + -9.846036911010742 + ], + [ + "▁leaders", + -9.846809387207031 + ], + [ + "▁commonly", + -9.84681224822998 + ], + [ + "▁Once", + -9.847854614257812 + ], + [ + "▁greatest", + -9.848381042480469 + ], + [ + "lic", + -9.848705291748047 + ], + [ + "▁commented", + -9.849627494812012 + ], + [ + "▁Government", + -9.850178718566895 + ], + [ + "▁400", + -9.851032257080078 + ], + [ + "▁iron", + -9.85319995880127 + ], + [ + "tin", + -9.853245735168457 + ], + [ + "▁Te", + -9.853607177734375 + ], + [ + "▁enemy", + -9.854607582092285 + ], + [ + "▁tell", + -9.854806900024414 + ], + [ + "▁Home", + -9.856071472167969 + ], + [ + "tre", + -9.85614013671875 + ], + [ + "▁1989", + -9.856200218200684 + ], + [ + "▁carbon", + -9.856287956237793 + ], + [ + "▁Ver", + -9.857582092285156 + ], + [ + "all", + -9.857789993286133 + ], + [ + "▁Long", + -9.858738899230957 + ], + [ + "▁shape", + -9.85888385772705 + ], + [ + "▁rise", + -9.859166145324707 + ], + [ + "▁agreement", + -9.860450744628906 + ], + [ + "▁Post", + -9.8612642288208 + ], + [ + "▁founded", + -9.861405372619629 + ], + [ + "oc", + -9.861989974975586 + ], + [ + "▁transport", + -9.86223030090332 + ], + [ + "▁Team", + -9.862824440002441 + ], + [ + "▁Sch", + -9.862832069396973 + ], + [ + "://", + -9.8629732131958 + ], + [ + "▁frequently", + -9.86332893371582 + ], + [ + "▁33", + -9.863509178161621 + ], + [ + "▁gives", + -9.863682746887207 + ], + [ + "▁00", + -9.863943099975586 + ], + [ + "▁Press", + -9.864192962646484 + ], + [ + "▁houses", + -9.864555358886719 + ], + [ + "▁floor", + -9.865972518920898 + ], + [ + "▁Hot", + -9.866090774536133 + ], + [ + "ft", + -9.867197036743164 + ], + [ + "▁teaching", + -9.867271423339844 + ], + [ + "▁anything", + -9.867697715759277 + ], + [ + "ities", + -9.868117332458496 + ], + [ + "▁Oxford", + -9.868136405944824 + ], + [ + "▁Scotland", + -9.868239402770996 + ], + [ + "▁Jones", + -9.868309020996094 + ], + [ + "▁attended", + -9.868321418762207 + ], + [ + "▁opportunity", + -9.868351936340332 + ], + [ + "▁require", + -9.868682861328125 + ], + [ + "▁r", + -9.86904525756836 + ], + [ + "▁Line", + -9.869412422180176 + ], + [ + "▁Bar", + -9.87054443359375 + ], + [ + "▁explained", + -9.870816230773926 + ], + [ + "▁hospital", + -9.871163368225098 + ], + [ + "▁ultimately", + -9.871224403381348 + ], + [ + "▁concert", + -9.871319770812988 + ], + [ + "▁currently", + -9.871631622314453 + ], + [ + "▁Jewish", + -9.872566223144531 + ], + [ + "▁seems", + -9.873457908630371 + ], + [ + "▁Creek", + -9.874314308166504 + ], + [ + "▁drive", + -9.874418258666992 + ], + [ + "▁positions", + -9.874796867370605 + ], + [ + "▁capture", + -9.875482559204102 + ], + [ + "▁contain", + -9.875664710998535 + ], + [ + "▁providing", + -9.875805854797363 + ], + [ + "▁didn", + -9.876031875610352 + ], + [ + "▁flow", + -9.87631893157959 + ], + [ + "▁fruit", + -9.877164840698242 + ], + [ + "▁reports", + -9.877490043640137 + ], + [ + "▁DVD", + -9.877564430236816 + ], + [ + "port", + -9.878158569335938 + ], + [ + "▁formation", + -9.878710746765137 + ], + [ + "▁claim", + -9.88010025024414 + ], + [ + "▁Ireland", + -9.880694389343262 + ], + [ + "▁scientists", + -9.88106918334961 + ], + [ + "red", + -9.881951332092285 + ], + [ + "▁Fox", + -9.881993293762207 + ], + [ + "▁wing", + -9.883928298950195 + ], + [ + "▁Har", + -9.884871482849121 + ], + [ + "▁wood", + -9.885676383972168 + ], + [ + "je", + -9.886009216308594 + ], + [ + "▁planet", + -9.886398315429688 + ], + [ + "▁digital", + -9.88747787475586 + ], + [ + "ric", + -9.887523651123047 + ], + [ + "▁dropped", + -9.889079093933105 + ], + [ + "▁consider", + -9.889424324035645 + ], + [ + "▁earth", + -9.889939308166504 + ], + [ + "▁Nan", + -9.890140533447266 + ], + [ + "▁matches", + -9.890366554260254 + ], + [ + "▁leg", + -9.890817642211914 + ], + [ + "▁sides", + -9.891083717346191 + ], + [ + "▁escape", + -9.891785621643066 + ], + [ + "▁officials", + -9.891788482666016 + ], + [ + "▁Ni", + -9.892145156860352 + ], + [ + "ab", + -9.89242935180664 + ], + [ + "ped", + -9.892712593078613 + ], + [ + "▁residents", + -9.892945289611816 + ], + [ + "▁communities", + -9.892955780029297 + ], + [ + "▁mouth", + -9.893656730651855 + ], + [ + "▁economy", + -9.895380020141602 + ], + [ + "▁eyes", + -9.89557933807373 + ], + [ + "9", + -9.896122932434082 + ], + [ + "▁theme", + -9.896425247192383 + ], + [ + "tan", + -9.896864891052246 + ], + [ + "▁yard", + -9.896864891052246 + ], + [ + "ors", + -9.896976470947266 + ], + [ + "▁peace", + -9.898211479187012 + ], + [ + "▁Academy", + -9.898506164550781 + ], + [ + "berg", + -9.898713111877441 + ], + [ + "▁Now", + -9.899177551269531 + ], + [ + "▁price", + -9.899206161499023 + ], + [ + "king", + -9.89969253540039 + ], + [ + "▁bodies", + -9.899768829345703 + ], + [ + "▁join", + -9.900144577026367 + ], + [ + "▁concluded", + -9.900202751159668 + ], + [ + "▁captain", + -9.900343894958496 + ], + [ + "▁thick", + -9.90070915222168 + ], + [ + "of", + -9.903777122497559 + ], + [ + "▁expressed", + -9.903951644897461 + ], + [ + "▁Italy", + -9.903959274291992 + ], + [ + "▁award", + -9.904032707214355 + ], + [ + "▁Prince", + -9.904332160949707 + ], + [ + "▁Cross", + -9.905298233032227 + ], + [ + "▁difference", + -9.90575885772705 + ], + [ + "▁importance", + -9.906270027160645 + ], + [ + "▁sex", + -9.906350135803223 + ], + [ + "▁existing", + -9.90650463104248 + ], + [ + "▁Hu", + -9.906614303588867 + ], + [ + "▁Water", + -9.906615257263184 + ], + [ + "▁aid", + -9.907452583312988 + ], + [ + "well", + -9.907487869262695 + ], + [ + "▁combination", + -9.90788745880127 + ], + [ + "▁Little", + -9.908177375793457 + ], + [ + "ology", + -9.909200668334961 + ], + [ + "▁humans", + -9.909374237060547 + ], + [ + "30", + -9.910355567932129 + ], + [ + "▁forest", + -9.910564422607422 + ], + [ + "ries", + -9.91108226776123 + ], + [ + "▁advanced", + -9.911696434020996 + ], + [ + "ari", + -9.912548065185547 + ], + [ + "▁authority", + -9.913430213928223 + ], + [ + "▁Is", + -9.914270401000977 + ], + [ + "▁suggests", + -9.915144920349121 + ], + [ + "kin", + -9.915328979492188 + ], + [ + "▁horse", + -9.915908813476562 + ], + [ + "▁reasons", + -9.918176651000977 + ], + [ + "▁36", + -9.918267250061035 + ], + [ + "▁stating", + -9.918587684631348 + ], + [ + "ita", + -9.918879508972168 + ], + [ + "▁creation", + -9.918889999389648 + ], + [ + "ong", + -9.918974876403809 + ], + [ + "▁Daniel", + -9.9198637008667 + ], + [ + "▁Sha", + -9.920230865478516 + ], + [ + "▁Carolina", + -9.920927047729492 + ], + [ + "▁except", + -9.921110153198242 + ], + [ + "▁heard", + -9.922090530395508 + ], + [ + "▁quarter", + -9.922869682312012 + ], + [ + "▁district", + -9.922929763793945 + ], + [ + "▁tax", + -9.923274993896484 + ], + [ + "▁master", + -9.923792839050293 + ], + [ + "▁Boston", + -9.923922538757324 + ], + [ + "▁behavior", + -9.92401123046875 + ], + [ + "▁1942", + -9.924159049987793 + ], + [ + "▁Jesus", + -9.924174308776855 + ], + [ + "▁pieces", + -9.924333572387695 + ], + [ + "▁goes", + -9.924838066101074 + ], + [ + "ud", + -9.924896240234375 + ], + [ + "▁adult", + -9.92561149597168 + ], + [ + "▁pilot", + -9.926403045654297 + ], + [ + "▁Republic", + -9.926504135131836 + ], + [ + "▁doesn", + -9.926986694335938 + ], + [ + "▁transferred", + -9.927074432373047 + ], + [ + "▁sought", + -9.927796363830566 + ], + [ + "▁healthy", + -9.927820205688477 + ], + [ + "▁code", + -9.928317070007324 + ], + [ + "▁influenced", + -9.928523063659668 + ], + [ + "ib", + -9.928878784179688 + ], + [ + "lon", + -9.929030418395996 + ], + [ + "▁Civil", + -9.929545402526855 + ], + [ + "▁multi", + -9.930055618286133 + ], + [ + "▁Cha", + -9.930140495300293 + ], + [ + "▁drug", + -9.930339813232422 + ], + [ + "▁Jo", + -9.930875778198242 + ], + [ + "▁writers", + -9.931384086608887 + ], + [ + "▁owned", + -9.931632041931152 + ], + [ + "ez", + -9.932726860046387 + ], + [ + "▁places", + -9.933005332946777 + ], + [ + "▁gain", + -9.933140754699707 + ], + [ + "▁Young", + -9.93315601348877 + ], + [ + "▁bill", + -9.933533668518066 + ], + [ + "▁History", + -9.93384838104248 + ], + [ + "▁chance", + -9.934296607971191 + ], + [ + "▁attempts", + -9.93447208404541 + ], + [ + "▁metres", + -9.934761047363281 + ], + [ + "▁Catholic", + -9.93515682220459 + ], + [ + "▁table", + -9.935431480407715 + ], + [ + "▁sites", + -9.935786247253418 + ], + [ + "▁Northern", + -9.936297416687012 + ], + [ + "▁secret", + -9.936577796936035 + ], + [ + "▁husband", + -9.936981201171875 + ], + [ + "▁Though", + -9.937209129333496 + ], + [ + "▁Stephen", + -9.93765640258789 + ], + [ + "▁rules", + -9.938307762145996 + ], + [ + "tra", + -9.93881607055664 + ], + [ + "tz", + -9.939115524291992 + ], + [ + "▁rich", + -9.939787864685059 + ], + [ + "▁defense", + -9.941545486450195 + ], + [ + "▁Major", + -9.942960739135742 + ], + [ + "▁Asia", + -9.942968368530273 + ], + [ + "zi", + -9.943272590637207 + ], + [ + "▁Ocean", + -9.943571090698242 + ], + [ + "lu", + -9.943633079528809 + ], + [ + "▁religion", + -9.945209503173828 + ], + [ + "ven", + -9.945383071899414 + ], + [ + "▁maintain", + -9.94554615020752 + ], + [ + "▁represented", + -9.945977210998535 + ], + [ + "istic", + -9.946562767028809 + ], + [ + "▁1988", + -9.947072982788086 + ], + [ + "ell", + -9.948230743408203 + ], + [ + "▁System", + -9.948732376098633 + ], + [ + "▁everything", + -9.949908256530762 + ], + [ + "▁acid", + -9.949975967407227 + ], + [ + "▁county", + -9.950151443481445 + ], + [ + "▁Chief", + -9.951515197753906 + ], + [ + "▁Ten", + -9.951706886291504 + ], + [ + "side", + -9.951813697814941 + ], + [ + "▁defined", + -9.952132225036621 + ], + [ + "▁Wood", + -9.952659606933594 + ], + [ + "▁37", + -9.952674865722656 + ], + [ + "▁confirmed", + -9.953099250793457 + ], + [ + "od", + -9.954130172729492 + ], + [ + "▁perhaps", + -9.954181671142578 + ], + [ + "▁ring", + -9.954224586486816 + ], + [ + "▁advantage", + -9.954612731933594 + ], + [ + "▁Ta", + -9.955379486083984 + ], + [ + "▁target", + -9.955398559570312 + ], + [ + "▁Valley", + -9.955418586730957 + ], + [ + "▁invasion", + -9.955592155456543 + ], + [ + "▁Jim", + -9.956100463867188 + ], + [ + "don", + -9.95612621307373 + ], + [ + "▁acting", + -9.956578254699707 + ], + [ + "▁sequence", + -9.957026481628418 + ], + [ + "▁1987", + -9.957144737243652 + ], + [ + "▁coach", + -9.957258224487305 + ], + [ + "▁Infantry", + -9.95732593536377 + ], + [ + "▁projects", + -9.957837104797363 + ], + [ + "▁proved", + -9.957916259765625 + ], + [ + "▁gained", + -9.95825481414795 + ], + [ + "▁essential", + -9.959131240844727 + ], + [ + "tter", + -9.959495544433594 + ], + [ + "▁subsequent", + -9.960119247436523 + ], + [ + "ach", + -9.96043872833252 + ], + [ + "▁moment", + -9.961050987243652 + ], + [ + "▁Part", + -9.961137771606445 + ], + [ + "▁bank", + -9.961186408996582 + ], + [ + "▁improved", + -9.96120834350586 + ], + [ + "▁worldwide", + -9.961370468139648 + ], + [ + "▁mentioned", + -9.961400032043457 + ], + [ + "▁sleep", + -9.961424827575684 + ], + [ + "▁determined", + -9.961682319641113 + ], + [ + "▁threat", + -9.961703300476074 + ], + [ + "pp", + -9.961859703063965 + ], + [ + "▁calling", + -9.961872100830078 + ], + [ + "ou", + -9.961883544921875 + ], + [ + "qui", + -9.962198257446289 + ], + [ + "▁images", + -9.96250057220459 + ], + [ + "▁tells", + -9.962738990783691 + ], + [ + "▁height", + -9.963369369506836 + ], + [ + "han", + -9.963619232177734 + ], + [ + "▁passing", + -9.963970184326172 + ], + [ + "▁senior", + -9.964346885681152 + ], + [ + "▁fine", + -9.965052604675293 + ], + [ + "mon", + -9.965229988098145 + ], + [ + "50", + -9.9656343460083 + ], + [ + "▁motion", + -9.965813636779785 + ], + [ + "▁measure", + -9.966102600097656 + ], + [ + "▁rare", + -9.966564178466797 + ], + [ + "▁benefits", + -9.966695785522461 + ], + [ + "▁artists", + -9.967829704284668 + ], + [ + "▁governor", + -9.968648910522461 + ], + [ + "▁eat", + -9.968689918518066 + ], + [ + "▁nuclear", + -9.968713760375977 + ], + [ + "▁royal", + -9.968854904174805 + ], + [ + "▁cyclone", + -9.9689302444458 + ], + [ + "bu", + -9.970041275024414 + ], + [ + "▁1920", + -9.971874237060547 + ], + [ + "▁Tri", + -9.972825050354004 + ], + [ + "▁castle", + -9.973184585571289 + ], + [ + "▁sun", + -9.97338581085205 + ], + [ + "▁ahead", + -9.973867416381836 + ], + [ + "ini", + -9.974011421203613 + ], + [ + "▁claims", + -9.974020004272461 + ], + [ + "use", + -9.974184036254883 + ], + [ + "▁significantly", + -9.974324226379395 + ], + [ + "▁Captain", + -9.975072860717773 + ], + [ + "▁plays", + -9.975310325622559 + ], + [ + "▁selling", + -9.975400924682617 + ], + [ + "▁applied", + -9.975555419921875 + ], + [ + "▁broke", + -9.975682258605957 + ], + [ + "▁fan", + -9.975933074951172 + ], + [ + "▁reaching", + -9.976425170898438 + ], + [ + "▁core", + -9.976683616638184 + ], + [ + "▁Chi", + -9.976747512817383 + ], + [ + "▁check", + -9.977714538574219 + ], + [ + "▁stress", + -9.977745056152344 + ], + [ + "▁mental", + -9.977785110473633 + ], + [ + "▁Our", + -9.977917671203613 + ], + [ + "▁add", + -9.978150367736816 + ], + [ + "▁safe", + -9.978211402893066 + ], + [ + "▁carry", + -9.978581428527832 + ], + [ + "▁resistance", + -9.978714942932129 + ], + [ + "▁1944", + -9.9788179397583 + ], + [ + "▁figures", + -9.978828430175781 + ], + [ + "▁Middle", + -9.978877067565918 + ], + [ + "gan", + -9.97935676574707 + ], + [ + "▁designated", + -9.979592323303223 + ], + [ + "▁1986", + -9.979826927185059 + ], + [ + "▁sexual", + -9.980224609375 + ], + [ + "▁pale", + -9.980486869812012 + ], + [ + "head", + -9.980902671813965 + ], + [ + "▁draw", + -9.981253623962402 + ], + [ + "▁150", + -9.981406211853027 + ], + [ + "▁industrial", + -9.98167610168457 + ], + [ + "▁Battalion", + -9.981711387634277 + ], + [ + "▁respect", + -9.982098579406738 + ], + [ + "ney", + -9.982194900512695 + ], + [ + "▁urban", + -9.982645034790039 + ], + [ + "▁follows", + -9.982892990112305 + ], + [ + "▁models", + -9.98290729522705 + ], + [ + "▁38", + -9.982930183410645 + ], + [ + "▁Ex", + -9.983098983764648 + ], + [ + "yl", + -9.984296798706055 + ], + [ + "▁twice", + -9.985182762145996 + ], + [ + "ng", + -9.985825538635254 + ], + [ + "fa", + -9.986364364624023 + ], + [ + "▁walls", + -9.986801147460938 + ], + [ + "▁Madonna", + -9.988666534423828 + ], + [ + "▁exist", + -9.989385604858398 + ], + [ + "▁dog", + -9.989541053771973 + ], + [ + "ea", + -9.989652633666992 + ], + [ + "▁planning", + -9.989827156066895 + ], + [ + "▁1945", + -9.989961624145508 + ], + [ + "▁struck", + -9.990011215209961 + ], + [ + "▁promote", + -9.99106216430664 + ], + [ + "▁enter", + -9.991291046142578 + ], + [ + "▁Fim", + -9.991832733154297 + ], + [ + "▁chemical", + -9.993358612060547 + ], + [ + "▁bi", + -9.994009971618652 + ], + [ + "▁Records", + -9.994418144226074 + ], + [ + "▁34", + -9.995232582092285 + ], + [ + "12", + -9.99535846710205 + ], + [ + "▁contemporary", + -9.995414733886719 + ], + [ + "▁volume", + -9.995756149291992 + ], + [ + "▁Williams", + -9.996472358703613 + ], + [ + "▁territory", + -9.996501922607422 + ], + [ + "▁university", + -9.996821403503418 + ], + [ + "25", + -9.997315406799316 + ], + [ + "▁1941", + -9.99790096282959 + ], + [ + "▁counter", + -9.997980117797852 + ], + [ + "▁heavily", + -9.998230934143066 + ], + [ + "▁Dutch", + -9.99853229522705 + ], + [ + "▁alongside", + -9.999393463134766 + ], + [ + "▁ca", + -9.999818801879883 + ], + [ + "▁unknown", + -10.000984191894531 + ], + [ + "▁prominent", + -10.001007080078125 + ], + [ + "fer", + -10.00118637084961 + ], + [ + "▁kat", + -10.00268840789795 + ], + [ + "▁rating", + -10.002951622009277 + ], + [ + "▁costs", + -10.003417015075684 + ], + [ + "▁element", + -10.004067420959473 + ], + [ + "▁weapons", + -10.004976272583008 + ], + [ + "van", + -10.006354331970215 + ], + [ + "▁chosen", + -10.006412506103516 + ], + [ + "▁answer", + -10.006664276123047 + ], + [ + "▁titled", + -10.007195472717285 + ], + [ + "▁#", + -10.00735855102539 + ], + [ + "▁adopted", + -10.009265899658203 + ], + [ + "▁Dis", + -10.00943660736084 + ], + [ + "ren", + -10.010475158691406 + ], + [ + "▁Parliament", + -10.010540962219238 + ], + [ + "▁laws", + -10.010758399963379 + ], + [ + "▁Brigade", + -10.011064529418945 + ], + [ + "▁host", + -10.011282920837402 + ], + [ + "▁memory", + -10.011384010314941 + ], + [ + "▁District", + -10.01236343383789 + ], + [ + "▁objects", + -10.013131141662598 + ], + [ + "▁Ke", + -10.014877319335938 + ], + [ + "▁news", + -10.015342712402344 + ], + [ + "▁Gold", + -10.015369415283203 + ], + [ + "▁draft", + -10.016189575195312 + ], + [ + "▁regions", + -10.016216278076172 + ], + [ + "▁Light", + -10.016242980957031 + ], + [ + "▁experienced", + -10.016528129577637 + ], + [ + "▁Good", + -10.016546249389648 + ], + [ + "▁viewers", + -10.016556739807129 + ], + [ + "▁Victoria", + -10.016629219055176 + ], + [ + "▁demand", + -10.016786575317383 + ], + [ + "▁vote", + -10.017030715942383 + ], + [ + "11", + -10.017855644226074 + ], + [ + "▁note", + -10.017986297607422 + ], + [ + "▁structures", + -10.019170761108398 + ], + [ + "▁BBC", + -10.0200777053833 + ], + [ + "▁grew", + -10.020209312438965 + ], + [ + "▁Show", + -10.020475387573242 + ], + [ + "▁featuring", + -10.020844459533691 + ], + [ + "▁object", + -10.020975112915039 + ], + [ + "uk", + -10.021344184875488 + ], + [ + "▁maintained", + -10.021883010864258 + ], + [ + "▁Christ", + -10.02213191986084 + ], + [ + "▁contained", + -10.022175788879395 + ], + [ + "▁Gu", + -10.022295951843262 + ], + [ + "▁occurs", + -10.02248764038086 + ], + [ + "▁inch", + -10.024062156677246 + ], + [ + "15", + -10.024412155151367 + ], + [ + "▁laid", + -10.02481746673584 + ], + [ + "▁murder", + -10.025020599365234 + ], + [ + "net", + -10.025225639343262 + ], + [ + "▁connected", + -10.025581359863281 + ], + [ + "▁selection", + -10.025978088378906 + ], + [ + "▁literature", + -10.026031494140625 + ], + [ + "▁actor", + -10.026232719421387 + ], + [ + "▁teeth", + -10.0266752243042 + ], + [ + "off", + -10.027134895324707 + ], + [ + "▁Regiment", + -10.027480125427246 + ], + [ + "▁arms", + -10.027759552001953 + ], + [ + "▁Its", + -10.027862548828125 + ], + [ + "▁challenge", + -10.028037071228027 + ], + [ + "▁possibly", + -10.028271675109863 + ], + [ + "▁administration", + -10.028338432312012 + ], + [ + "▁Will", + -10.028365135192871 + ], + [ + "▁mis", + -10.02840518951416 + ], + [ + "ther", + -10.028939247131348 + ], + [ + "▁progress", + -10.029219627380371 + ], + [ + "▁wave", + -10.029669761657715 + ], + [ + "▁killing", + -10.031232833862305 + ], + [ + "▁standing", + -10.031523704528809 + ], + [ + "▁controlled", + -10.031556129455566 + ], + [ + "ible", + -10.03215503692627 + ], + [ + "▁executive", + -10.03248405456543 + ], + [ + "▁protein", + -10.032543182373047 + ], + [ + "▁News", + -10.032574653625488 + ], + [ + "▁Commission", + -10.032669067382812 + ], + [ + "▁Live", + -10.033413887023926 + ], + [ + "▁prepared", + -10.033527374267578 + ], + [ + "▁Christmas", + -10.033534049987793 + ], + [ + "▁Par", + -10.033952713012695 + ], + [ + "▁Blue", + -10.034811019897461 + ], + [ + "ane", + -10.034844398498535 + ], + [ + "▁scoring", + -10.034895896911621 + ], + [ + "▁peaked", + -10.035209655761719 + ], + [ + "▁tradition", + -10.03592300415039 + ], + [ + "▁reaction", + -10.036005973815918 + ], + [ + "▁BC", + -10.036478042602539 + ], + [ + "▁learned", + -10.037425994873047 + ], + [ + "▁picture", + -10.0377197265625 + ], + [ + "▁distribution", + -10.03775691986084 + ], + [ + "▁phase", + -10.037881851196289 + ], + [ + "▁techniques", + -10.037932395935059 + ], + [ + "ide", + -10.03935718536377 + ], + [ + "▁Harrison", + -10.039570808410645 + ], + [ + "▁wild", + -10.03972053527832 + ], + [ + "du", + -10.039782524108887 + ], + [ + "▁achieved", + -10.03979778289795 + ], + [ + "▁nor", + -10.04016399383545 + ], + [ + "▁argued", + -10.040231704711914 + ], + [ + "▁sports", + -10.04060173034668 + ], + [ + "▁Series", + -10.040705680847168 + ], + [ + "▁income", + -10.040858268737793 + ], + [ + "▁etc", + -10.04086971282959 + ], + [ + "▁budget", + -10.040898323059082 + ], + [ + "work", + -10.041104316711426 + ], + [ + "▁naval", + -10.041178703308105 + ], + [ + "▁committee", + -10.041295051574707 + ], + [ + "tal", + -10.041407585144043 + ], + [ + "▁brief", + -10.041497230529785 + ], + [ + "▁See", + -10.042230606079102 + ], + [ + "▁address", + -10.04224681854248 + ], + [ + "▁fun", + -10.042285919189453 + ], + [ + "▁Ohio", + -10.042597770690918 + ], + [ + "▁Spain", + -10.042669296264648 + ], + [ + "▁serving", + -10.043288230895996 + ], + [ + "▁Early", + -10.04348087310791 + ], + [ + "▁leadership", + -10.043694496154785 + ], + [ + "▁Russia", + -10.044742584228516 + ], + [ + "▁Manchester", + -10.0449800491333 + ], + [ + "▁statement", + -10.045293807983398 + ], + [ + "▁1943", + -10.045371055603027 + ], + [ + "▁adults", + -10.045559883117676 + ], + [ + "▁talk", + -10.045662879943848 + ], + [ + "ator", + -10.045955657958984 + ], + [ + "▁promoted", + -10.04761791229248 + ], + [ + "▁genetic", + -10.047982215881348 + ], + [ + "▁49", + -10.0482759475708 + ], + [ + "▁exchange", + -10.048491477966309 + ], + [ + "▁Public", + -10.04874038696289 + ], + [ + "▁split", + -10.049251556396484 + ], + [ + "▁extensive", + -10.049628257751465 + ], + [ + "▁Eastern", + -10.050153732299805 + ], + [ + "▁expansion", + -10.050566673278809 + ], + [ + "▁silver", + -10.050769805908203 + ], + [ + "▁Today", + -10.050965309143066 + ], + [ + "▁visited", + -10.051203727722168 + ], + [ + "▁hot", + -10.051993370056152 + ], + [ + "hu", + -10.052285194396973 + ], + [ + "▁About", + -10.05233097076416 + ], + [ + "▁centuries", + -10.052391052246094 + ], + [ + "▁extremely", + -10.05337142944336 + ], + [ + "▁edge", + -10.0537748336792 + ], + [ + "ns", + -10.054051399230957 + ], + [ + "▁benefit", + -10.054338455200195 + ], + [ + "▁performances", + -10.054705619812012 + ], + [ + "▁describes", + -10.054832458496094 + ], + [ + "town", + -10.055635452270508 + ], + [ + "▁super", + -10.055682182312012 + ], + [ + "▁Avenue", + -10.055846214294434 + ], + [ + "▁containing", + -10.05655288696289 + ], + [ + "▁faced", + -10.0570650100708 + ], + [ + "▁affect", + -10.057458877563477 + ], + [ + "▁items", + -10.057579040527344 + ], + [ + "uff", + -10.057940483093262 + ], + [ + "gu", + -10.057973861694336 + ], + [ + "▁kill", + -10.058209419250488 + ], + [ + "▁boat", + -10.058754920959473 + ], + [ + "▁properties", + -10.059061050415039 + ], + [ + "nt", + -10.060598373413086 + ], + [ + "▁rele", + -10.060779571533203 + ], + [ + "▁Who", + -10.060888290405273 + ], + [ + "▁focused", + -10.061373710632324 + ], + [ + "▁academic", + -10.062176704406738 + ], + [ + "▁Irish", + -10.062592506408691 + ], + [ + "▁Just", + -10.062670707702637 + ], + [ + "▁Gar", + -10.062749862670898 + ], + [ + "▁Che", + -10.062972068786621 + ], + [ + "▁patient", + -10.063013076782227 + ], + [ + "▁opposed", + -10.063613891601562 + ], + [ + "▁violence", + -10.06384563446045 + ], + [ + "▁railway", + -10.064153671264648 + ], + [ + "▁tournament", + -10.064364433288574 + ], + [ + "▁del", + -10.064591407775879 + ], + [ + "▁rain", + -10.064932823181152 + ], + [ + "ub", + -10.06545352935791 + ], + [ + "▁transfer", + -10.065858840942383 + ], + [ + "▁Field", + -10.066014289855957 + ], + [ + "▁block", + -10.066206932067871 + ], + [ + "ee", + -10.066417694091797 + ], + [ + "▁shortly", + -10.066550254821777 + ], + [ + "▁successfully", + -10.068471908569336 + ], + [ + "▁details", + -10.069046974182129 + ], + [ + "▁exercise", + -10.06989860534668 + ], + [ + "▁existence", + -10.070001602172852 + ], + [ + "▁Journal", + -10.070733070373535 + ], + [ + "▁1985", + -10.071715354919434 + ], + [ + "her", + -10.071920394897461 + ], + [ + "▁Among", + -10.07317066192627 + ], + [ + "▁sixth", + -10.073240280151367 + ], + [ + "▁regarding", + -10.073265075683594 + ], + [ + "▁Hurricane", + -10.073508262634277 + ], + [ + "▁officially", + -10.073991775512695 + ], + [ + "▁broken", + -10.074100494384766 + ], + [ + "▁display", + -10.074310302734375 + ], + [ + "▁kg", + -10.074886322021484 + ], + [ + "▁suggest", + -10.074905395507812 + ], + [ + "▁brown", + -10.075296401977539 + ], + [ + "▁Dan", + -10.075740814208984 + ], + [ + "▁1984", + -10.075766563415527 + ], + [ + "▁doctor", + -10.076416969299316 + ], + [ + "▁Games", + -10.076545715332031 + ], + [ + "▁finding", + -10.077155113220215 + ], + [ + "\".", + -10.077290534973145 + ], + [ + "▁offers", + -10.077407836914062 + ], + [ + "▁feed", + -10.077808380126953 + ], + [ + "ability", + -10.078083992004395 + ], + [ + "▁generation", + -10.078171730041504 + ], + [ + "▁Elizabeth", + -10.078286170959473 + ], + [ + "▁Col", + -10.078733444213867 + ], + [ + "▁seem", + -10.079033851623535 + ], + [ + "▁Due", + -10.079038619995117 + ], + [ + "▁Board", + -10.079304695129395 + ], + [ + "▁bottom", + -10.07974624633789 + ], + [ + "▁Power", + -10.080193519592285 + ], + [ + "▁task", + -10.080342292785645 + ], + [ + "▁Office", + -10.080381393432617 + ], + [ + "▁Governor", + -10.080439567565918 + ], + [ + "▁parallel", + -10.081274032592773 + ], + [ + "▁entirely", + -10.081575393676758 + ], + [ + "if", + -10.08204174041748 + ], + [ + "▁fit", + -10.08261489868164 + ], + [ + "19", + -10.082731246948242 + ], + [ + "▁solar", + -10.08288860321045 + ], + [ + "▁differences", + -10.083274841308594 + ], + [ + "ff", + -10.083426475524902 + ], + [ + "▁flag", + -10.083841323852539 + ], + [ + "▁electric", + -10.084139823913574 + ], + [ + "▁choose", + -10.08456802368164 + ], + [ + "▁vehicles", + -10.084843635559082 + ], + [ + "ct", + -10.084935188293457 + ], + [ + "▁teacher", + -10.084981918334961 + ], + [ + "▁shared", + -10.085143089294434 + ], + [ + "▁testing", + -10.085271835327148 + ], + [ + "▁facilities", + -10.085389137268066 + ], + [ + "▁everyone", + -10.08566951751709 + ], + [ + "cher", + -10.085753440856934 + ], + [ + "▁Ti", + -10.085980415344238 + ], + [ + "▁holding", + -10.086029052734375 + ], + [ + "▁organized", + -10.08639907836914 + ], + [ + "▁Let", + -10.087784767150879 + ], + [ + "▁authorities", + -10.087799072265625 + ], + [ + "▁rainfall", + -10.08813762664795 + ], + [ + "▁drama", + -10.088449478149414 + ], + [ + "▁yellow", + -10.088460922241211 + ], + [ + "▁Alexander", + -10.089179992675781 + ], + [ + "▁actual", + -10.089290618896484 + ], + [ + "▁flat", + -10.089507102966309 + ], + [ + "▁pattern", + -10.089845657348633 + ], + [ + "ken", + -10.08986759185791 + ], + [ + "bar", + -10.089972496032715 + ], + [ + "▁rapidly", + -10.09005355834961 + ], + [ + "▁message", + -10.090204238891602 + ], + [ + "▁values", + -10.090204238891602 + ], + [ + "▁protected", + -10.090373039245605 + ], + [ + "▁launch", + -10.090389251708984 + ], + [ + "▁newly", + -10.090536117553711 + ], + [ + "▁perfect", + -10.090728759765625 + ], + [ + "▁Far", + -10.091351509094238 + ], + [ + "vin", + -10.091426849365234 + ], + [ + "▁device", + -10.09156608581543 + ], + [ + "▁Ge", + -10.091720581054688 + ], + [ + "▁Fa", + -10.091803550720215 + ], + [ + "▁newspaper", + -10.091805458068848 + ], + [ + "▁horses", + -10.092238426208496 + ], + [ + "▁homes", + -10.092879295349121 + ], + [ + "▁Top", + -10.093307495117188 + ], + [ + "ix", + -10.093341827392578 + ], + [ + "▁Land", + -10.093505859375 + ], + [ + "▁solution", + -10.093530654907227 + ], + [ + "day", + -10.093657493591309 + ], + [ + "▁closely", + -10.093685150146484 + ], + [ + "▁Del", + -10.093944549560547 + ], + [ + "▁manner", + -10.094030380249023 + ], + [ + "▁returning", + -10.094042778015137 + ], + [ + "▁cent", + -10.094121932983398 + ], + [ + "▁sort", + -10.094462394714355 + ], + [ + "▁Tech", + -10.094747543334961 + ], + [ + "▁*", + -10.094917297363281 + ], + [ + "▁introduction", + -10.094940185546875 + ], + [ + "▁Ed", + -10.095565795898438 + ], + [ + "▁useful", + -10.095587730407715 + ], + [ + "In", + -10.096343994140625 + ], + [ + "▁rates", + -10.096479415893555 + ], + [ + "▁vocals", + -10.097245216369629 + ], + [ + "▁appropriate", + -10.097945213317871 + ], + [ + "▁application", + -10.098368644714355 + ], + [ + "▁Andrew", + -10.098909378051758 + ], + [ + "80", + -10.09910774230957 + ], + [ + "16", + -10.099235534667969 + ], + [ + "cha", + -10.099461555480957 + ], + [ + "▁franse", + -10.09953784942627 + ], + [ + "▁Ad", + -10.099733352661133 + ], + [ + "▁recognized", + -10.099885940551758 + ], + [ + "ble", + -10.100164413452148 + ], + [ + "▁watch", + -10.100532531738281 + ], + [ + "ev", + -10.100847244262695 + ], + [ + "▁artillery", + -10.100885391235352 + ], + [ + "▁steel", + -10.100958824157715 + ], + [ + "▁consists", + -10.10105037689209 + ], + [ + "▁waste", + -10.101164817810059 + ], + [ + "▁Out", + -10.10135269165039 + ], + [ + "▁measures", + -10.101856231689453 + ], + [ + "▁fellow", + -10.10218620300293 + ], + [ + "▁represent", + -10.102601051330566 + ], + [ + "▁innings", + -10.102996826171875 + ], + [ + "▁stock", + -10.102997779846191 + ], + [ + "▁sp", + -10.103087425231934 + ], + [ + "▁decades", + -10.103192329406738 + ], + [ + "▁consisted", + -10.103410720825195 + ], + [ + "▁Pi", + -10.103537559509277 + ], + [ + "ata", + -10.103720664978027 + ], + [ + "▁vision", + -10.104293823242188 + ], + [ + "▁chose", + -10.104897499084473 + ], + [ + "▁clean", + -10.105167388916016 + ], + [ + "▁seat", + -10.10533618927002 + ], + [ + "40", + -10.1054048538208 + ], + [ + "▁Pennsylvania", + -10.105439186096191 + ], + [ + "▁thousands", + -10.10559368133545 + ], + [ + "based", + -10.105874061584473 + ], + [ + "▁thinking", + -10.106736183166504 + ], + [ + "shi", + -10.106855392456055 + ], + [ + "wi", + -10.107160568237305 + ], + [ + "▁IMDb", + -10.107295036315918 + ], + [ + "▁Wilson", + -10.107721328735352 + ], + [ + "▁street", + -10.107865333557129 + ], + [ + "▁straight", + -10.108080863952637 + ], + [ + "org", + -10.108122825622559 + ], + [ + "ging", + -10.108673095703125 + ], + [ + "▁recommended", + -10.109070777893066 + ], + [ + "▁store", + -10.109112739562988 + ], + [ + "▁historian", + -10.109315872192383 + ], + [ + "▁domestic", + -10.109421730041504 + ], + [ + "▁opposition", + -10.1098051071167 + ], + [ + "ose", + -10.110245704650879 + ], + [ + "▁Upon", + -10.110430717468262 + ], + [ + "▁buy", + -10.110898971557617 + ], + [ + "▁communication", + -10.111215591430664 + ], + [ + "▁Duke", + -10.111363410949707 + ], + [ + "▁achieve", + -10.112071990966797 + ], + [ + "▁nominated", + -10.112095832824707 + ], + [ + "▁Pan", + -10.112748146057129 + ], + [ + "▁Columbia", + -10.112882614135742 + ], + [ + "mann", + -10.11375904083252 + ], + [ + "▁Four", + -10.113940238952637 + ], + [ + "ani", + -10.114306449890137 + ], + [ + "▁Book", + -10.114567756652832 + ], + [ + "▁conference", + -10.114616394042969 + ], + [ + "▁65", + -10.114773750305176 + ], + [ + "▁48", + -10.114938735961914 + ], + [ + "cy", + -10.114964485168457 + ], + [ + "▁context", + -10.115066528320312 + ], + [ + "▁Ab", + -10.115959167480469 + ], + [ + "▁collected", + -10.116868019104004 + ], + [ + "▁losing", + -10.117112159729004 + ], + [ + "▁hope", + -10.117987632751465 + ], + [ + "▁Fleet", + -10.118212699890137 + ], + [ + "▁Thus", + -10.118520736694336 + ], + [ + "▁raise", + -10.120226860046387 + ], + [ + "▁Up", + -10.120786666870117 + ], + [ + "▁internal", + -10.121167182922363 + ], + [ + "▁Ga", + -10.12139892578125 + ], + [ + "▁roof", + -10.12154483795166 + ], + [ + "▁dedicated", + -10.122061729431152 + ], + [ + "▁ka", + -10.1221342086792 + ], + [ + "▁600", + -10.122428894042969 + ], + [ + "▁freedom", + -10.122586250305176 + ], + [ + "▁regarded", + -10.122647285461426 + ], + [ + "▁fired", + -10.12281608581543 + ], + [ + "▁1968", + -10.123412132263184 + ], + [ + "▁Entertainment", + -10.124299049377441 + ], + [ + "▁herself", + -10.124698638916016 + ], + [ + "▁Ku", + -10.124829292297363 + ], + [ + "▁Taylor", + -10.125271797180176 + ], + [ + "▁55", + -10.12653636932373 + ], + [ + "▁Bond", + -10.127034187316895 + ], + [ + "▁cap", + -10.127777099609375 + ], + [ + "▁link", + -10.127996444702148 + ], + [ + "▁connection", + -10.128122329711914 + ], + [ + "▁Jersey", + -10.128162384033203 + ], + [ + "▁Only", + -10.128181457519531 + ], + [ + "▁exposure", + -10.128595352172852 + ], + [ + "-19", + -10.12906551361084 + ], + [ + "▁incident", + -10.129888534545898 + ], + [ + "▁operating", + -10.130362510681152 + ], + [ + "▁knew", + -10.13037109375 + ], + [ + "▁stations", + -10.130392074584961 + ], + [ + "▁Polish", + -10.130403518676758 + ], + [ + "▁passes", + -10.130518913269043 + ], + [ + "▁operated", + -10.130847930908203 + ], + [ + "▁label", + -10.130929946899414 + ], + [ + "▁DNA", + -10.13116455078125 + ], + [ + "▁1983", + -10.131264686584473 + ], + [ + "▁micro", + -10.132000923156738 + ], + [ + "▁aspects", + -10.13211727142334 + ], + [ + "▁flying", + -10.132634162902832 + ], + [ + "22", + -10.132731437683105 + ], + [ + "▁trip", + -10.132848739624023 + ], + [ + "▁w", + -10.133296966552734 + ], + [ + "▁identify", + -10.13355541229248 + ], + [ + "▁Women", + -10.134797096252441 + ], + [ + "▁debate", + -10.134968757629395 + ], + [ + "▁showing", + -10.135393142700195 + ], + [ + "▁council", + -10.135671615600586 + ], + [ + "▁branch", + -10.135710716247559 + ], + [ + "▁remove", + -10.135841369628906 + ], + [ + "▁Zèv", + -10.136007308959961 + ], + [ + "▁fim", + -10.136109352111816 + ], + [ + "▁1982", + -10.136149406433105 + ], + [ + "▁girl", + -10.136406898498535 + ], + [ + "▁increasingly", + -10.136434555053711 + ], + [ + "▁bird", + -10.136734008789062 + ], + [ + "▁Song", + -10.137031555175781 + ], + [ + "▁Operation", + -10.137211799621582 + ], + [ + "▁younger", + -10.137253761291504 + ], + [ + "med", + -10.137434005737305 + ], + [ + "í", + -10.13768196105957 + ], + [ + "▁menm", + -10.137781143188477 + ], + [ + "▁x", + -10.13851261138916 + ], + [ + "▁tests", + -10.13875961303711 + ], + [ + "▁kids", + -10.14046573638916 + ], + [ + "▁1979", + -10.14120101928711 + ], + [ + "▁standards", + -10.141213417053223 + ], + [ + "▁factor", + -10.141261100769043 + ], + [ + "▁expedition", + -10.141374588012695 + ], + [ + "▁Mu", + -10.141804695129395 + ], + [ + "ery", + -10.141948699951172 + ], + [ + "ola", + -10.14217758178711 + ], + [ + "▁Bre", + -10.142443656921387 + ], + [ + "▁assault", + -10.142983436584473 + ], + [ + "▁secondary", + -10.143000602722168 + ], + [ + "▁offensive", + -10.143150329589844 + ], + [ + "▁hundred", + -10.144390106201172 + ], + [ + "▁turns", + -10.144514083862305 + ], + [ + "▁granted", + -10.144913673400879 + ], + [ + "▁feeling", + -10.145319938659668 + ], + [ + "▁Cambridge", + -10.145459175109863 + ], + [ + "▁Bank", + -10.145513534545898 + ], + [ + "▁accept", + -10.145540237426758 + ], + [ + "fi", + -10.145620346069336 + ], + [ + "▁tower", + -10.145977973937988 + ], + [ + "▁Wall", + -10.146016120910645 + ], + [ + "▁vi", + -10.146315574645996 + ], + [ + "▁infection", + -10.146327018737793 + ], + [ + "▁Senate", + -10.147056579589844 + ], + [ + "▁Ri", + -10.147065162658691 + ], + [ + "▁versions", + -10.148022651672363 + ], + [ + "▁rear", + -10.148382186889648 + ], + [ + "▁steam", + -10.149514198303223 + ], + [ + "▁Bu", + -10.14954662322998 + ], + [ + "iz", + -10.149724960327148 + ], + [ + "▁1967", + -10.150067329406738 + ], + [ + "▁Castle", + -10.150208473205566 + ], + [ + "▁semi", + -10.15035629272461 + ], + [ + "▁else", + -10.150553703308105 + ], + [ + "▁opinion", + -10.151439666748047 + ], + [ + "▁depth", + -10.151450157165527 + ], + [ + "▁Scottish", + -10.15167236328125 + ], + [ + "▁reality", + -10.151803970336914 + ], + [ + "▁ocean", + -10.151817321777344 + ], + [ + "▁abandoned", + -10.152115821838379 + ], + [ + "▁solid", + -10.152165412902832 + ], + [ + "▁Human", + -10.152968406677246 + ], + [ + "▁Mon", + -10.15306568145752 + ], + [ + "eg", + -10.153350830078125 + ], + [ + "ants", + -10.153363227844238 + ], + [ + "▁Doctor", + -10.15361213684082 + ], + [ + "▁Project", + -10.153730392456055 + ], + [ + "isation", + -10.15393352508545 + ], + [ + "▁guest", + -10.154092788696289 + ], + [ + "▁Ya", + -10.154297828674316 + ], + [ + "▁39", + -10.154789924621582 + ], + [ + "▁garden", + -10.155322074890137 + ], + [ + "▁Education", + -10.15550708770752 + ], + [ + "▁letters", + -10.155658721923828 + ], + [ + "car", + -10.155920028686523 + ], + [ + "▁MD", + -10.156599998474121 + ], + [ + "our", + -10.157136917114258 + ], + [ + "ett", + -10.157318115234375 + ], + [ + "▁wounded", + -10.157976150512695 + ], + [ + "▁supporting", + -10.158045768737793 + ], + [ + "▁helps", + -10.158945083618164 + ], + [ + "▁Space", + -10.160006523132324 + ], + [ + "▁coal", + -10.160785675048828 + ], + [ + "▁Georgia", + -10.161375045776367 + ], + [ + "▁crossing", + -10.161462783813477 + ], + [ + "▁purchase", + -10.161715507507324 + ], + [ + "▁Instead", + -10.161805152893066 + ], + [ + "ps", + -10.161903381347656 + ], + [ + "▁caught", + -10.162601470947266 + ], + [ + "▁soundtrack", + -10.163132667541504 + ], + [ + "▁journey", + -10.163426399230957 + ], + [ + "tion", + -10.164467811584473 + ], + [ + "▁interested", + -10.164679527282715 + ], + [ + "▁reign", + -10.164793014526367 + ], + [ + "▁Joe", + -10.165176391601562 + ], + [ + "▁adding", + -10.165258407592773 + ], + [ + "▁ready", + -10.165322303771973 + ], + [ + "▁warm", + -10.16543960571289 + ], + [ + "▁64", + -10.165548324584961 + ], + [ + "▁worth", + -10.165986061096191 + ], + [ + "▁atmosphere", + -10.165995597839355 + ], + [ + "ians", + -10.166202545166016 + ], + [ + "▁concerns", + -10.166341781616211 + ], + [ + "▁2017", + -10.166444778442383 + ], + [ + "▁software", + -10.166690826416016 + ], + [ + "Z", + -10.16675090789795 + ], + [ + "▁huge", + -10.167487144470215 + ], + [ + "▁disc", + -10.16819953918457 + ], + [ + "▁replace", + -10.168608665466309 + ], + [ + "▁fiction", + -10.16861629486084 + ], + [ + "▁classes", + -10.16896915435791 + ], + [ + "▁acquired", + -10.169475555419922 + ], + [ + "▁instance", + -10.169842720031738 + ], + [ + "▁van", + -10.169960975646973 + ], + [ + "ura", + -10.170530319213867 + ], + [ + "▁ta", + -10.170641899108887 + ], + [ + "▁armed", + -10.171517372131348 + ], + [ + "▁expanded", + -10.171666145324707 + ], + [ + "▁Ja", + -10.172057151794434 + ], + [ + "water", + -10.172539710998535 + ], + [ + "▁platform", + -10.172575950622559 + ], + [ + "▁decline", + -10.172884941101074 + ], + [ + "▁intensity", + -10.172914505004883 + ], + [ + "back", + -10.172938346862793 + ], + [ + "▁Point", + -10.173783302307129 + ], + [ + "▁calls", + -10.173938751220703 + ], + [ + "ep", + -10.174217224121094 + ], + [ + "▁1972", + -10.174394607543945 + ], + [ + "▁criticized", + -10.174722671508789 + ], + [ + "▁sugar", + -10.174845695495605 + ], + [ + "▁Han", + -10.176162719726562 + ], + [ + "▁transition", + -10.176323890686035 + ], + [ + "▁distinct", + -10.176390647888184 + ], + [ + "▁specifically", + -10.176899909973145 + ], + [ + "▁42", + -10.177064895629883 + ], + [ + "▁fought", + -10.177972793579102 + ], + [ + "▁Shi", + -10.178122520446777 + ], + [ + "▁locations", + -10.178179740905762 + ], + [ + "▁citizens", + -10.178914070129395 + ], + [ + "▁Mike", + -10.178956985473633 + ], + [ + "▁interchange", + -10.179197311401367 + ], + [ + "▁47", + -10.180599212646484 + ], + [ + "▁requires", + -10.18090534210205 + ], + [ + "▁narrow", + -10.181048393249512 + ], + [ + "▁Festival", + -10.181185722351074 + ], + [ + "▁vocal", + -10.181320190429688 + ], + [ + "▁participated", + -10.181397438049316 + ], + [ + "▁1969", + -10.181546211242676 + ], + [ + "val", + -10.18160343170166 + ], + [ + "▁Francisco", + -10.181770324707031 + ], + [ + "q", + -10.181802749633789 + ], + [ + "▁finish", + -10.182218551635742 + ], + [ + "▁Ju", + -10.18253231048584 + ], + [ + "▁41", + -10.183259963989258 + ], + [ + "pt", + -10.183268547058105 + ], + [ + "▁survey", + -10.183738708496094 + ], + [ + "▁studied", + -10.185735702514648 + ], + [ + "▁teachers", + -10.186314582824707 + ], + [ + "▁Mel", + -10.186347007751465 + ], + [ + "▁mile", + -10.186542510986328 + ], + [ + "▁receiving", + -10.18658447265625 + ], + [ + "▁Homer", + -10.186676025390625 + ], + [ + "▁Wa", + -10.186731338500977 + ], + [ + "▁criticism", + -10.186773300170898 + ], + [ + "▁session", + -10.187478065490723 + ], + [ + "▁Bob", + -10.189263343811035 + ], + [ + "▁balance", + -10.190317153930664 + ], + [ + "gar", + -10.191427230834961 + ], + [ + "▁fear", + -10.19200325012207 + ], + [ + "▁spot", + -10.19216537475586 + ], + [ + "▁Director", + -10.19217300415039 + ], + [ + "▁secure", + -10.192557334899902 + ], + [ + "▁producers", + -10.192594528198242 + ], + [ + "▁Meanwhile", + -10.193181037902832 + ], + [ + "▁farm", + -10.19350528717041 + ], + [ + "▁Harry", + -10.193906784057617 + ], + [ + "▁drawn", + -10.193938255310059 + ], + [ + "▁beat", + -10.194199562072754 + ], + [ + "▁shall", + -10.194336891174316 + ], + [ + "▁debuted", + -10.1944580078125 + ], + [ + "▁roads", + -10.194613456726074 + ], + [ + "▁decade", + -10.194872856140137 + ], + [ + "▁treated", + -10.19500732421875 + ], + [ + "▁1971", + -10.195169448852539 + ], + [ + "▁des", + -10.195791244506836 + ], + [ + "▁establish", + -10.196331024169922 + ], + [ + "▁museum", + -10.196611404418945 + ], + [ + "▁contributed", + -10.196621894836426 + ], + [ + "▁prison", + -10.197084426879883 + ], + [ + "▁die", + -10.197236061096191 + ], + [ + "▁fresh", + -10.197254180908203 + ], + [ + "▁1964", + -10.197381973266602 + ], + [ + "▁1975", + -10.197395324707031 + ], + [ + "▁cycle", + -10.197694778442383 + ], + [ + "▁grade", + -10.19851016998291 + ], + [ + "▁Cal", + -10.199014663696289 + ], + [ + "mate", + -10.199227333068848 + ], + [ + "▁consecutive", + -10.199505805969238 + ], + [ + "▁tools", + -10.199837684631348 + ], + [ + "▁format", + -10.199894905090332 + ], + [ + "▁tail", + -10.20075798034668 + ], + [ + "▁wrong", + -10.200759887695312 + ], + [ + "bel", + -10.200959205627441 + ], + [ + "▁landing", + -10.201022148132324 + ], + [ + "▁1973", + -10.201105117797852 + ], + [ + "▁1976", + -10.201509475708008 + ], + [ + "ris", + -10.201740264892578 + ], + [ + "▁deck", + -10.201940536499023 + ], + [ + "▁origin", + -10.202235221862793 + ], + [ + "▁Rose", + -10.20262622833252 + ], + [ + "▁poem", + -10.202641487121582 + ], + [ + "▁1974", + -10.202821731567383 + ], + [ + "▁Then", + -10.202842712402344 + ], + [ + "▁Arthur", + -10.203129768371582 + ], + [ + "▁painting", + -10.203394889831543 + ], + [ + "▁producing", + -10.204021453857422 + ], + [ + "▁Allied", + -10.204619407653809 + ], + [ + "▁Va", + -10.205256462097168 + ], + [ + "▁publication", + -10.205527305603027 + ], + [ + "si", + -10.205820083618164 + ], + [ + "▁domèn", + -10.205950736999512 + ], + [ + "▁interesting", + -10.20617961883545 + ], + [ + "21", + -10.206186294555664 + ], + [ + "14", + -10.207010269165039 + ], + [ + "▁engaged", + -10.207345008850098 + ], + [ + "let", + -10.207351684570312 + ], + [ + "▁arrival", + -10.207449913024902 + ], + [ + "▁glass", + -10.207479476928711 + ], + [ + "▁bio", + -10.207612037658691 + ], + [ + "▁seconds", + -10.207745552062988 + ], + [ + "art", + -10.20779800415039 + ], + [ + "mat", + -10.207983016967773 + ], + [ + "▁electronic", + -10.20862865447998 + ], + [ + "▁Admiral", + -10.208671569824219 + ], + [ + "▁aired", + -10.20919132232666 + ], + [ + "ological", + -10.209212303161621 + ], + [ + "▁1981", + -10.209321975708008 + ], + [ + "unt", + -10.209606170654297 + ], + [ + "▁Islands", + -10.2097806930542 + ], + [ + "▁Football", + -10.210144996643066 + ], + [ + "▁approved", + -10.210214614868164 + ], + [ + "▁Night", + -10.21034049987793 + ], + [ + "▁Israel", + -10.210630416870117 + ], + [ + "▁Jews", + -10.210737228393555 + ], + [ + "▁capable", + -10.211273193359375 + ], + [ + "▁camera", + -10.211390495300293 + ], + [ + "▁1939", + -10.211625099182129 + ], + [ + "▁battery", + -10.211661338806152 + ], + [ + "▁layer", + -10.211709976196289 + ], + [ + "ette", + -10.211722373962402 + ], + [ + "▁northeast", + -10.212301254272461 + ], + [ + "ara", + -10.21251392364502 + ], + [ + "▁effectively", + -10.21280574798584 + ], + [ + "▁UN", + -10.212929725646973 + ], + [ + "my", + -10.212960243225098 + ], + [ + "ified", + -10.213024139404297 + ], + [ + "▁identity", + -10.213071823120117 + ], + [ + "▁championship", + -10.21418571472168 + ], + [ + "▁parties", + -10.214722633361816 + ], + [ + "▁rejected", + -10.215179443359375 + ], + [ + "▁rural", + -10.21563720703125 + ], + [ + "▁Philadelphia", + -10.215855598449707 + ], + [ + "▁Bell", + -10.216188430786133 + ], + [ + "▁1965", + -10.216360092163086 + ], + [ + "▁Secretary", + -10.216874122619629 + ], + [ + "▁trans", + -10.216968536376953 + ], + [ + "▁Mi", + -10.21711254119873 + ], + [ + "▁Children", + -10.217312812805176 + ], + [ + "▁Republican", + -10.217397689819336 + ], + [ + "▁cr", + -10.217658042907715 + ], + [ + "▁correct", + -10.217921257019043 + ], + [ + "▁wear", + -10.218385696411133 + ], + [ + "ification", + -10.218819618225098 + ], + [ + "▁twelve", + -10.219205856323242 + ], + [ + "70", + -10.219268798828125 + ], + [ + "▁desire", + -10.21944808959961 + ], + [ + "▁Walter", + -10.21957778930664 + ], + [ + "▁Egypt", + -10.22028923034668 + ], + [ + "▁firm", + -10.22087287902832 + ], + [ + "▁Coast", + -10.22096061706543 + ], + [ + "▁brand", + -10.221293449401855 + ], + [ + "ec", + -10.222822189331055 + ], + [ + "13", + -10.224116325378418 + ], + [ + "▁fat", + -10.224170684814453 + ], + [ + "▁ideal", + -10.224302291870117 + ], + [ + "▁typical", + -10.224306106567383 + ], + [ + "▁professor", + -10.22455883026123 + ], + [ + "▁Town", + -10.225054740905762 + ], + [ + "ica", + -10.22512149810791 + ], + [ + "▁44", + -10.225608825683594 + ], + [ + "▁composition", + -10.225997924804688 + ], + [ + "▁appeal", + -10.226103782653809 + ], + [ + "▁actors", + -10.226283073425293 + ], + [ + "pi", + -10.227105140686035 + ], + [ + "▁End", + -10.227509498596191 + ], + [ + "old", + -10.227742195129395 + ], + [ + "▁tend", + -10.228638648986816 + ], + [ + "▁Development", + -10.228678703308105 + ], + [ + "▁employed", + -10.2288236618042 + ], + [ + "▁ask", + -10.230206489562988 + ], + [ + "aj", + -10.230799674987793 + ], + [ + "▁proper", + -10.231188774108887 + ], + [ + "can", + -10.23123836517334 + ], + [ + "▁filled", + -10.231431007385254 + ], + [ + "▁Special", + -10.231450080871582 + ], + [ + "▁limit", + -10.23164176940918 + ], + [ + "▁medicine", + -10.231802940368652 + ], + [ + "und", + -10.231939315795898 + ], + [ + "▁genus", + -10.232217788696289 + ], + [ + "▁hearing", + -10.232256889343262 + ], + [ + "ay", + -10.232340812683105 + ], + [ + "▁examples", + -10.232650756835938 + ], + [ + "ned", + -10.232771873474121 + ], + [ + "▁mountain", + -10.23279857635498 + ], + [ + "▁virus", + -10.233052253723145 + ], + [ + "▁hall", + -10.233098030090332 + ], + [ + "▁1966", + -10.233155250549316 + ], + [ + "▁performing", + -10.233420372009277 + ], + [ + "▁Prime", + -10.233872413635254 + ], + [ + "▁sets", + -10.234424591064453 + ], + [ + "▁retire", + -10.235106468200684 + ], + [ + "▁Gade", + -10.23529052734375 + ], + [ + "▁anyone", + -10.235300064086914 + ], + [ + "▁Sal", + -10.235395431518555 + ], + [ + "▁drop", + -10.235459327697754 + ], + [ + "tes", + -10.235739707946777 + ], + [ + "▁orders", + -10.235841751098633 + ], + [ + "▁critic", + -10.236298561096191 + ], + [ + "Q", + -10.236313819885254 + ], + [ + "▁essay", + -10.236441612243652 + ], + [ + "▁Ch", + -10.236528396606445 + ], + [ + "▁Free", + -10.236902236938477 + ], + [ + "▁conduct", + -10.237163543701172 + ], + [ + "▁broad", + -10.23780632019043 + ], + [ + "▁relative", + -10.23781967163086 + ], + [ + "stone", + -10.237823486328125 + ], + [ + "▁Grant", + -10.238313674926758 + ], + [ + "nes", + -10.23832893371582 + ], + [ + "▁pick", + -10.238336563110352 + ], + [ + "▁request", + -10.23859691619873 + ], + [ + "▁practices", + -10.239174842834473 + ], + [ + "▁views", + -10.239437103271484 + ], + [ + "▁Lewis", + -10.239644050598145 + ], + [ + "▁strike", + -10.239907264709473 + ], + [ + "▁driving", + -10.240035057067871 + ], + [ + "▁accompanied", + -10.240058898925781 + ], + [ + "▁purchased", + -10.240410804748535 + ], + [ + "▁islands", + -10.240583419799805 + ], + [ + "▁1914", + -10.241069793701172 + ], + [ + "▁appearances", + -10.241291999816895 + ], + [ + "▁Why", + -10.241589546203613 + ], + [ + "▁credit", + -10.241853713989258 + ], + [ + "▁Way", + -10.242037773132324 + ], + [ + "▁aktivite", + -10.242158889770508 + ], + [ + "ably", + -10.24244213104248 + ], + [ + "▁poll", + -10.24290943145752 + ], + [ + "▁remember", + -10.243111610412598 + ], + [ + "▁intelligence", + -10.243208885192871 + ], + [ + "▁43", + -10.243492126464844 + ], + [ + "▁briefly", + -10.243553161621094 + ], + [ + "▁map", + -10.24406909942627 + ], + [ + "ade", + -10.244583129882812 + ], + [ + "ok", + -10.244585037231445 + ], + [ + "▁obtained", + -10.244606971740723 + ], + [ + "▁mo", + -10.244852066040039 + ], + [ + "ations", + -10.245209693908691 + ], + [ + "▁occupied", + -10.245844841003418 + ], + [ + "▁hear", + -10.246952056884766 + ], + [ + "▁gross", + -10.247726440429688 + ], + [ + "▁Gulf", + -10.247888565063477 + ], + [ + "▁processes", + -10.2483549118042 + ], + [ + "ue", + -10.248826026916504 + ], + [ + "▁Conference", + -10.249544143676758 + ], + [ + "▁truth", + -10.249547958374023 + ], + [ + "▁Vi", + -10.249914169311523 + ], + [ + "▁moral", + -10.250075340270996 + ], + [ + "▁technique", + -10.250975608825684 + ], + [ + "▁Mc", + -10.251206398010254 + ], + [ + "qu", + -10.251307487487793 + ], + [ + "ò", + -10.251327514648438 + ], + [ + "ans", + -10.251357078552246 + ], + [ + "▁52", + -10.251415252685547 + ], + [ + "▁labor", + -10.251609802246094 + ], + [ + "▁roles", + -10.251762390136719 + ], + [ + "▁joint", + -10.25197696685791 + ], + [ + "▁viewed", + -10.252176284790039 + ], + [ + "ria", + -10.252264022827148 + ], + [ + "▁Bra", + -10.252347946166992 + ], + [ + "▁•", + -10.252762794494629 + ], + [ + "▁drugs", + -10.25379467010498 + ], + [ + "▁Ken", + -10.254129409790039 + ], + [ + "▁CD", + -10.254236221313477 + ], + [ + "ray", + -10.254829406738281 + ], + [ + "▁1978", + -10.255297660827637 + ], + [ + "▁devices", + -10.255317687988281 + ], + [ + "▁signs", + -10.255352973937988 + ], + [ + "sha", + -10.255428314208984 + ], + [ + "▁Plan", + -10.255845069885254 + ], + [ + "▁roughly", + -10.256266593933105 + ], + [ + "▁motor", + -10.256326675415039 + ], + [ + "▁principal", + -10.256491661071777 + ], + [ + "▁print", + -10.256587028503418 + ], + [ + "▁SS", + -10.25697135925293 + ], + [ + "▁squadron", + -10.257683753967285 + ], + [ + "▁agent", + -10.25816822052002 + ], + [ + "▁sell", + -10.258183479309082 + ], + [ + "▁strategy", + -10.25839614868164 + ], + [ + "▁stages", + -10.25892448425293 + ], + [ + "▁pi", + -10.25942611694336 + ], + [ + "▁youth", + -10.259562492370605 + ], + [ + "▁mode", + -10.25964641571045 + ], + [ + "▁technical", + -10.259818077087402 + ], + [ + "▁Age", + -10.259892463684082 + ], + [ + "▁populations", + -10.260677337646484 + ], + [ + "▁retired", + -10.261159896850586 + ], + [ + "▁Fi", + -10.261221885681152 + ], + [ + "▁explain", + -10.261271476745605 + ], + [ + "▁concerned", + -10.261409759521484 + ], + [ + "▁responsibility", + -10.261725425720215 + ], + [ + "pre", + -10.262286186218262 + ], + [ + "▁vehicle", + -10.262794494628906 + ], + [ + "end", + -10.262999534606934 + ], + [ + "pro", + -10.263636589050293 + ], + [ + "▁lo", + -10.263874053955078 + ], + [ + "▁turning", + -10.264291763305664 + ], + [ + "▁missing", + -10.264552116394043 + ], + [ + "▁Supreme", + -10.265734672546387 + ], + [ + "▁Korean", + -10.265894889831543 + ], + [ + "▁walk", + -10.265973091125488 + ], + [ + "▁Miller", + -10.266597747802734 + ], + [ + "▁Order", + -10.267290115356445 + ], + [ + "ath", + -10.26751708984375 + ], + [ + "▁46", + -10.267571449279785 + ], + [ + "like", + -10.26766300201416 + ], + [ + "▁boy", + -10.268442153930664 + ], + [ + "▁par", + -10.26882553100586 + ], + [ + "▁CO", + -10.268830299377441 + ], + [ + "pen", + -10.268913269042969 + ], + [ + "ph", + -10.26900863647461 + ], + [ + "▁storyline", + -10.26923942565918 + ], + [ + "▁emotional", + -10.269326210021973 + ], + [ + "▁supplies", + -10.269679069519043 + ], + [ + "▁Studios", + -10.270110130310059 + ], + [ + "so", + -10.270824432373047 + ], + [ + "▁Fantasy", + -10.271527290344238 + ], + [ + "▁experiences", + -10.271592140197754 + ], + [ + "sky", + -10.271794319152832 + ], + [ + "▁crime", + -10.272082328796387 + ], + [ + "▁equivalent", + -10.272285461425781 + ], + [ + "▁Kar", + -10.272550582885742 + ], + [ + "▁kilometres", + -10.272798538208008 + ], + [ + "▁si", + -10.273154258728027 + ], + [ + "▁fields", + -10.273409843444824 + ], + [ + "▁weak", + -10.273505210876465 + ], + [ + "▁Forest", + -10.273756980895996 + ], + [ + "har", + -10.273802757263184 + ], + [ + "▁guide", + -10.274077415466309 + ], + [ + "▁regional", + -10.274463653564453 + ], + [ + "▁temperatures", + -10.274593353271484 + ], + [ + "▁Davis", + -10.275710105895996 + ], + [ + "▁diseases", + -10.276001930236816 + ], + [ + "▁infantry", + -10.276152610778809 + ], + [ + "▁authors", + -10.276263236999512 + ], + [ + "▁800", + -10.276355743408203 + ], + [ + "sch", + -10.27640438079834 + ], + [ + "▁Jr", + -10.276418685913086 + ], + [ + "▁Anderson", + -10.276461601257324 + ], + [ + "▁soul", + -10.27667236328125 + ], + [ + "▁losses", + -10.277554512023926 + ], + [ + "▁Boy", + -10.277971267700195 + ], + [ + "▁fi", + -10.27808666229248 + ], + [ + "▁ends", + -10.278164863586426 + ], + [ + "▁singing", + -10.27823257446289 + ], + [ + "▁cars", + -10.278531074523926 + ], + [ + "ō", + -10.278952598571777 + ], + [ + "iv", + -10.27951431274414 + ], + [ + "▁Massachusetts", + -10.279982566833496 + ], + [ + "▁baby", + -10.280204772949219 + ], + [ + "▁--", + -10.280372619628906 + ], + [ + "▁Arab", + -10.280420303344727 + ], + [ + "▁eating", + -10.280603408813477 + ], + [ + "▁ill", + -10.280682563781738 + ], + [ + "▁defence", + -10.28097915649414 + ], + [ + "▁flooding", + -10.281522750854492 + ], + [ + "▁organizations", + -10.281606674194336 + ], + [ + "▁concern", + -10.281975746154785 + ], + [ + "▁zone", + -10.2825345993042 + ], + [ + "▁honor", + -10.282539367675781 + ], + [ + "yan", + -10.2829008102417 + ], + [ + "ER", + -10.28352165222168 + ], + [ + "▁Railway", + -10.284276962280273 + ], + [ + "▁extension", + -10.284841537475586 + ], + [ + "▁speak", + -10.285430908203125 + ], + [ + "▁rapid", + -10.2854585647583 + ], + [ + "▁perspective", + -10.285687446594238 + ], + [ + "▁send", + -10.285799026489258 + ], + [ + "▁signal", + -10.285867691040039 + ], + [ + "▁headquarters", + -10.285943984985352 + ], + [ + "▁Bur", + -10.286063194274902 + ], + [ + "ical", + -10.286588668823242 + ], + [ + "▁partner", + -10.286751747131348 + ], + [ + "▁permanent", + -10.288206100463867 + ], + [ + "▁treat", + -10.288918495178223 + ], + [ + "▁northwest", + -10.289681434631348 + ], + [ + "▁suit", + -10.2898588180542 + ], + [ + "ign", + -10.28994369506836 + ], + [ + "▁web", + -10.290058135986328 + ], + [ + "light", + -10.290910720825195 + ], + [ + "▁Between", + -10.291597366333008 + ], + [ + "▁indicated", + -10.291621208190918 + ], + [ + "▁carrying", + -10.29173755645752 + ], + [ + "▁extreme", + -10.292156219482422 + ], + [ + "▁policies", + -10.292284965515137 + ], + [ + "▁editor", + -10.29286003112793 + ], + [ + "▁otherwise", + -10.292922019958496 + ], + [ + "▁commissioned", + -10.29346752166748 + ], + [ + "▁Ottoman", + -10.293787956237793 + ], + [ + "ions", + -10.294269561767578 + ], + [ + "ens", + -10.294543266296387 + ], + [ + "▁constant", + -10.294914245605469 + ], + [ + "▁reform", + -10.295040130615234 + ], + [ + "▁defensive", + -10.29555606842041 + ], + [ + "▁independence", + -10.295815467834473 + ], + [ + "▁massive", + -10.29606819152832 + ], + [ + "▁load", + -10.296207427978516 + ], + [ + "▁finds", + -10.296217918395996 + ], + [ + "mm", + -10.296485900878906 + ], + [ + "▁Roberto", + -10.297309875488281 + ], + [ + "▁dangerous", + -10.297369956970215 + ], + [ + "▁rive", + -10.297579765319824 + ], + [ + "▁1918", + -10.29765796661377 + ], + [ + "▁applications", + -10.297849655151367 + ], + [ + "▁Rome", + -10.298054695129395 + ], + [ + "▁Ve", + -10.298196792602539 + ], + [ + "▁entrance", + -10.298319816589355 + ], + [ + "▁Cu", + -10.298452377319336 + ], + [ + "▁describe", + -10.29857349395752 + ], + [ + "▁patterns", + -10.298966407775879 + ], + [ + "▁1977", + -10.299077987670898 + ], + [ + "▁foods", + -10.299100875854492 + ], + [ + "▁earliest", + -10.299187660217285 + ], + [ + "▁gradually", + -10.299511909484863 + ], + [ + "▁von", + -10.299832344055176 + ], + [ + "▁relief", + -10.300570487976074 + ], + [ + "▁linked", + -10.300945281982422 + ], + [ + "▁seventh", + -10.301310539245605 + ], + [ + "▁rail", + -10.301478385925293 + ], + [ + "▁slowly", + -10.302647590637207 + ], + [ + "▁Jan", + -10.303016662597656 + ], + [ + "mb", + -10.303082466125488 + ], + [ + "▁shooting", + -10.303183555603027 + ], + [ + "gue", + -10.303508758544922 + ], + [ + "▁Moon", + -10.304137229919434 + ], + [ + "▁Fire", + -10.30528736114502 + ], + [ + "▁scheduled", + -10.305330276489258 + ], + [ + "▁fly", + -10.30554485321045 + ], + [ + "▁phone", + -10.305659294128418 + ], + [ + "▁acts", + -10.306052207946777 + ], + [ + "▁Review", + -10.30661678314209 + ], + [ + "▁exposed", + -10.306648254394531 + ], + [ + "▁hip", + -10.307061195373535 + ], + [ + "more", + -10.307136535644531 + ], + [ + "▁emergency", + -10.30717945098877 + ], + [ + "▁comic", + -10.30734920501709 + ], + [ + "▁Tropical", + -10.307703971862793 + ], + [ + "▁spend", + -10.308903694152832 + ], + [ + "▁Ray", + -10.309011459350586 + ], + [ + "ving", + -10.309273719787598 + ], + [ + "▁entry", + -10.309350967407227 + ], + [ + "▁Emperor", + -10.30936336517334 + ], + [ + "▁regularly", + -10.309491157531738 + ], + [ + "▁derived", + -10.30964469909668 + ], + [ + "60", + -10.309901237487793 + ], + [ + "▁mounted", + -10.309944152832031 + ], + [ + "▁ceremony", + -10.310151100158691 + ], + [ + "▁piano", + -10.311263084411621 + ], + [ + "▁assistant", + -10.311410903930664 + ], + [ + "▁survive", + -10.311474800109863 + ], + [ + "▁changing", + -10.311488151550293 + ], + [ + "▁formal", + -10.31224250793457 + ], + [ + "▁Sunday", + -10.312524795532227 + ], + [ + "▁intersection", + -10.312560081481934 + ], + [ + "▁opposite", + -10.313218116760254 + ], + [ + "án", + -10.3132963180542 + ], + [ + "illa", + -10.313438415527344 + ], + [ + "▁IV", + -10.313474655151367 + ], + [ + "▁Ban", + -10.313654899597168 + ], + [ + "▁notable", + -10.3140230178833 + ], + [ + "ice", + -10.314038276672363 + ], + [ + "▁investigation", + -10.314451217651367 + ], + [ + "bury", + -10.314641952514648 + ], + [ + "▁strip", + -10.315226554870605 + ], + [ + "▁y", + -10.31585693359375 + ], + [ + "▁characteristics", + -10.315898895263672 + ], + [ + "▁powers", + -10.316195487976074 + ], + [ + "▁vessels", + -10.316237449645996 + ], + [ + "▁union", + -10.316446304321289 + ], + [ + "▁Mad", + -10.316597938537598 + ], + [ + "▁Lincoln", + -10.316625595092773 + ], + [ + "▁personnel", + -10.317150115966797 + ], + [ + "▁Square", + -10.317534446716309 + ], + [ + "▁possibility", + -10.318058013916016 + ], + [ + "▁settlement", + -10.318106651306152 + ], + [ + "▁torpedo", + -10.318540573120117 + ], + [ + "90", + -10.318588256835938 + ], + [ + "▁bacteria", + -10.319228172302246 + ], + [ + "▁Vo", + -10.319494247436523 + ], + [ + "▁Ross", + -10.319743156433105 + ], + [ + "▁steps", + -10.319982528686523 + ], + [ + "▁120", + -10.319992065429688 + ], + [ + "▁arm", + -10.3200044631958 + ], + [ + "▁lose", + -10.320306777954102 + ], + [ + "▁buried", + -10.320712089538574 + ], + [ + "▁rose", + -10.320816993713379 + ], + [ + "▁battalion", + -10.320923805236816 + ], + [ + "▁salt", + -10.321853637695312 + ], + [ + "▁filmed", + -10.321920394897461 + ], + [ + "▁Mount", + -10.322248458862305 + ], + [ + "▁Key", + -10.322263717651367 + ], + [ + "▁ISBN", + -10.32229995727539 + ], + [ + "ase", + -10.322495460510254 + ], + [ + "▁seek", + -10.32258129119873 + ], + [ + "▁Gen", + -10.322892189025879 + ], + [ + "▁option", + -10.32302188873291 + ], + [ + "▁evening", + -10.323287010192871 + ], + [ + "▁gwo", + -10.323430061340332 + ], + [ + "▁tank", + -10.323526382446289 + ], + [ + "▁Mal", + -10.323569297790527 + ], + [ + "▁shaped", + -10.323929786682129 + ], + [ + "ano", + -10.323983192443848 + ], + [ + "▁kèk", + -10.324271202087402 + ], + [ + "▁coastal", + -10.324519157409668 + ], + [ + "▁51", + -10.325152397155762 + ], + [ + "▁passage", + -10.325286865234375 + ], + [ + "ral", + -10.325434684753418 + ], + [ + "▁lay", + -10.32585334777832 + ], + [ + "▁delivered", + -10.327216148376465 + ], + [ + "▁suffering", + -10.327516555786133 + ], + [ + "▁converted", + -10.327544212341309 + ], + [ + "▁eggs", + -10.327996253967285 + ], + [ + "▁Lady", + -10.328145027160645 + ], + [ + "▁politics", + -10.328271865844727 + ], + [ + "▁filming", + -10.328426361083984 + ], + [ + "▁el", + -10.328717231750488 + ], + [ + "17", + -10.329014778137207 + ], + [ + "▁oxygen", + -10.329411506652832 + ], + [ + "▁estate", + -10.329830169677734 + ], + [ + "▁speaking", + -10.329849243164062 + ], + [ + "▁assessment", + -10.330277442932129 + ], + [ + "▁Justice", + -10.330617904663086 + ], + [ + "▁Steve", + -10.331491470336914 + ], + [ + "ü", + -10.332350730895996 + ], + [ + "▁Singapore", + -10.332449913024902 + ], + [ + "▁aware", + -10.332914352416992 + ], + [ + "▁deaths", + -10.333024978637695 + ], + [ + "▁functions", + -10.333745956420898 + ], + [ + "▁department", + -10.334489822387695 + ], + [ + "▁taught", + -10.334790229797363 + ], + [ + "▁chain", + -10.334856986999512 + ], + [ + "cal", + -10.335514068603516 + ], + [ + "▁em", + -10.335695266723633 + ], + [ + "▁Chart", + -10.33578872680664 + ], + [ + "▁Olympic", + -10.336335182189941 + ], + [ + "hr", + -10.336564064025879 + ], + [ + "▁Kentucky", + -10.33657455444336 + ], + [ + "▁acres", + -10.336682319641113 + ], + [ + "▁boats", + -10.336687088012695 + ], + [ + "▁assistance", + -10.336730003356934 + ], + [ + "▁Simon", + -10.336884498596191 + ], + [ + "▁hotel", + -10.3372163772583 + ], + [ + "▁1963", + -10.337469100952148 + ], + [ + "tle", + -10.338398933410645 + ], + [ + "▁da", + -10.338908195495605 + ], + [ + "▁funds", + -10.338951110839844 + ], + [ + "▁2018", + -10.33910083770752 + ], + [ + "▁enjoyed", + -10.33976936340332 + ], + [ + "▁Carl", + -10.340104103088379 + ], + [ + "▁snow", + -10.340571403503418 + ], + [ + "▁faith", + -10.340603828430176 + ], + [ + "▁campus", + -10.340643882751465 + ], + [ + "▁heads", + -10.341327667236328 + ], + [ + "▁attached", + -10.341475486755371 + ], + [ + "▁discovery", + -10.341527938842773 + ], + [ + "▁comedy", + -10.34223747253418 + ], + [ + "▁Fritz", + -10.342543601989746 + ], + [ + "▁popularity", + -10.342945098876953 + ], + [ + "ged", + -10.343998908996582 + ], + [ + "▁users", + -10.344144821166992 + ], + [ + "▁recognition", + -10.34424114227295 + ], + [ + "▁solo", + -10.344289779663086 + ], + [ + "▁fè", + -10.344407081604004 + ], + [ + "▁1917", + -10.344547271728516 + ], + [ + "▁visible", + -10.344696044921875 + ], + [ + "▁relations", + -10.344776153564453 + ], + [ + "▁installed", + -10.345067977905273 + ], + [ + "▁cited", + -10.345187187194824 + ], + [ + "▁reputation", + -10.345418930053711 + ], + [ + "▁1915", + -10.345800399780273 + ], + [ + "▁soft", + -10.345831871032715 + ], + [ + "▁Cape", + -10.346102714538574 + ], + [ + "▁indicate", + -10.34640121459961 + ], + [ + "18", + -10.346450805664062 + ], + [ + "▁crowd", + -10.346480369567871 + ], + [ + "▁Za", + -10.346678733825684 + ], + [ + "▁Station", + -10.347786903381348 + ], + [ + "▁Son", + -10.347833633422852 + ], + [ + "gg", + -10.348159790039062 + ], + [ + "ada", + -10.348465919494629 + ], + [ + "board", + -10.348651885986328 + ], + [ + "▁Liverpool", + -10.348687171936035 + ], + [ + "▁1916", + -10.349231719970703 + ], + [ + "▁Democratic", + -10.349286079406738 + ], + [ + "▁educational", + -10.349449157714844 + ], + [ + "▁bone", + -10.349523544311523 + ], + [ + "▁Brian", + -10.350006103515625 + ], + [ + "▁Val", + -10.35007381439209 + ], + [ + "24", + -10.350316047668457 + ], + [ + "▁extent", + -10.350652694702148 + ], + [ + "▁95", + -10.351806640625 + ], + [ + "▁breeding", + -10.351883888244629 + ], + [ + "▁clearly", + -10.352697372436523 + ], + [ + "%", + -10.353025436401367 + ], + [ + "ski", + -10.353141784667969 + ], + [ + "ates", + -10.353301048278809 + ], + [ + "▁Earl", + -10.353824615478516 + ], + [ + "▁stopped", + -10.354459762573242 + ], + [ + "▁circuit", + -10.354707717895508 + ], + [ + "fo", + -10.354975700378418 + ], + [ + "▁disorder", + -10.355692863464355 + ], + [ + "▁250", + -10.35647201538086 + ], + [ + "▁sounds", + -10.35661792755127 + ], + [ + "We", + -10.357169151306152 + ], + [ + "▁injured", + -10.357293128967285 + ], + [ + "uck", + -10.357805252075195 + ], + [ + "▁Daily", + -10.35800838470459 + ], + [ + "wo", + -10.35843563079834 + ], + [ + "▁involving", + -10.35855770111084 + ], + [ + "▁Are", + -10.358994483947754 + ], + [ + "▁franchise", + -10.359201431274414 + ], + [ + "▁Carey", + -10.35976791381836 + ], + [ + "▁relationships", + -10.359930038452148 + ], + [ + "▁Head", + -10.360231399536133 + ], + [ + "▁funding", + -10.360411643981934 + ], + [ + "▁looked", + -10.360493659973145 + ], + [ + "▁owner", + -10.360620498657227 + ], + [ + "uc", + -10.360928535461426 + ], + [ + "▁lap", + -10.361004829406738 + ], + [ + "▁widespread", + -10.361409187316895 + ], + [ + "form", + -10.361531257629395 + ], + [ + "term", + -10.36158561706543 + ], + [ + "▁starts", + -10.361740112304688 + ], + [ + "▁increases", + -10.361783981323242 + ], + [ + "▁Gi", + -10.36196517944336 + ], + [ + "▁Matt", + -10.362100601196289 + ], + [ + "▁Nations", + -10.36237907409668 + ], + [ + "▁establishment", + -10.362980842590332 + ], + [ + "▁Additionally", + -10.362997055053711 + ], + [ + "▁Arm", + -10.363105773925781 + ], + [ + "▁destroy", + -10.36341667175293 + ], + [ + "▁Vietnam", + -10.363595962524414 + ], + [ + "▁brigade", + -10.363626480102539 + ], + [ + "▁Emmanuel", + -10.363815307617188 + ], + [ + "ual", + -10.364007949829102 + ], + [ + "▁1948", + -10.364009857177734 + ], + [ + "▁kingdom", + -10.36424446105957 + ], + [ + "▁meat", + -10.36429214477539 + ], + [ + "▁shell", + -10.364398956298828 + ], + [ + "▁criminal", + -10.364730834960938 + ], + [ + "▁helping", + -10.364811897277832 + ], + [ + "▁detailed", + -10.364943504333496 + ], + [ + "▁1962", + -10.365047454833984 + ], + [ + "▁injuries", + -10.365379333496094 + ], + [ + "ious", + -10.365616798400879 + ], + [ + "▁Foundation", + -10.365835189819336 + ], + [ + "▁Revolution", + -10.366482734680176 + ], + [ + "▁door", + -10.366493225097656 + ], + [ + "▁symbol", + -10.366546630859375 + ], + [ + "▁Lieutenant", + -10.366951942443848 + ], + [ + "▁reduction", + -10.366997718811035 + ], + [ + "▁promotion", + -10.367156982421875 + ], + [ + "▁fill", + -10.368243217468262 + ], + [ + "▁tool", + -10.36838436126709 + ], + [ + "▁Sound", + -10.368408203125 + ], + [ + "▁meters", + -10.369295120239258 + ], + [ + "zo", + -10.369690895080566 + ], + [ + "▁engineering", + -10.369950294494629 + ], + [ + "▁therapy", + -10.370245933532715 + ], + [ + "▁Clark", + -10.370978355407715 + ], + [ + "▁classic", + -10.371175765991211 + ], + [ + "▁1946", + -10.37120246887207 + ], + [ + "▁SR", + -10.371347427368164 + ], + [ + "bb", + -10.371614456176758 + ], + [ + "▁Storm", + -10.37177562713623 + ], + [ + "▁kò", + -10.371811866760254 + ], + [ + "▁seasons", + -10.371898651123047 + ], + [ + "▁candidate", + -10.372518539428711 + ], + [ + "aire", + -10.372527122497559 + ], + [ + "▁sections", + -10.372583389282227 + ], + [ + "▁declined", + -10.374144554138184 + ], + [ + "▁greatly", + -10.374485969543457 + ], + [ + "▁chapter", + -10.374648094177246 + ], + [ + "▁storage", + -10.375509262084961 + ], + [ + "▁Ant", + -10.375511169433594 + ], + [ + "▁committed", + -10.375550270080566 + ], + [ + "len", + -10.375748634338379 + ], + [ + "23", + -10.376689910888672 + ], + [ + "▁tri", + -10.376712799072266 + ], + [ + "▁duty", + -10.376720428466797 + ], + [ + "▁user", + -10.377341270446777 + ], + [ + "▁ma", + -10.37861442565918 + ], + [ + "▁considerable", + -10.379085540771484 + ], + [ + "▁Marine", + -10.379718780517578 + ], + [ + "▁alcohol", + -10.379803657531738 + ], + [ + "▁Back", + -10.380138397216797 + ], + [ + "▁seed", + -10.38033676147461 + ], + [ + "27", + -10.380606651306152 + ], + [ + "▁discussed", + -10.380763053894043 + ], + [ + "▁casualties", + -10.381134986877441 + ], + [ + "▁favorite", + -10.381318092346191 + ], + [ + "▁difficulty", + -10.381775856018066 + ], + [ + "▁landscape", + -10.382203102111816 + ], + [ + "▁replacement", + -10.38272476196289 + ], + [ + "▁girls", + -10.382732391357422 + ], + [ + "▁components", + -10.382960319519043 + ], + [ + "cul", + -10.383305549621582 + ], + [ + "▁sector", + -10.383432388305664 + ], + [ + "▁colour", + -10.383513450622559 + ], + [ + "▁opportunities", + -10.383764266967773 + ], + [ + "▁interests", + -10.384017944335938 + ], + [ + "nic", + -10.384157180786133 + ], + [ + "▁Oregon", + -10.384235382080078 + ], + [ + "▁advice", + -10.384612083435059 + ], + [ + "▁themes", + -10.38498306274414 + ], + [ + "tis", + -10.385153770446777 + ], + [ + "ments", + -10.38572883605957 + ], + [ + "▁lands", + -10.386024475097656 + ], + [ + "▁mark", + -10.386109352111816 + ], + [ + "▁Tim", + -10.386367797851562 + ], + [ + "▁sik", + -10.386898040771484 + ], + [ + "ight", + -10.387378692626953 + ], + [ + "▁leads", + -10.387405395507812 + ], + [ + "▁Albert", + -10.387988090515137 + ], + [ + "▁rated", + -10.388401985168457 + ], + [ + "▁guard", + -10.388625144958496 + ], + [ + "▁tissue", + -10.388810157775879 + ], + [ + "▁temple", + -10.388975143432617 + ], + [ + "▁library", + -10.3895263671875 + ], + [ + "▁85", + -10.389784812927246 + ], + [ + "▁Sp", + -10.390192031860352 + ], + [ + "=", + -10.390368461608887 + ], + [ + "▁keeping", + -10.391975402832031 + ], + [ + "▁Pierre", + -10.392065048217773 + ], + [ + "▁universe", + -10.392182350158691 + ], + [ + "▁sustained", + -10.392666816711426 + ], + [ + "▁assist", + -10.392805099487305 + ], + [ + "▁association", + -10.39310073852539 + ], + [ + "▁favor", + -10.393181800842285 + ], + [ + "▁hired", + -10.393492698669434 + ], + [ + "▁threatened", + -10.39354419708252 + ], + [ + "▁Open", + -10.393720626831055 + ], + [ + "▁crisis", + -10.393999099731445 + ], + [ + "▁discussion", + -10.394755363464355 + ], + [ + "▁fair", + -10.394776344299316 + ], + [ + "over", + -10.395082473754883 + ], + [ + "▁surgery", + -10.395312309265137 + ], + [ + "▁doubt", + -10.39561653137207 + ], + [ + "www", + -10.39626693725586 + ], + [ + "▁happened", + -10.396284103393555 + ], + [ + "▁quick", + -10.396427154541016 + ], + [ + "▁requirements", + -10.396769523620605 + ], + [ + "▁argument", + -10.39696979522705 + ], + [ + "▁Summer", + -10.396976470947266 + ], + [ + "▁Poland", + -10.396982192993164 + ], + [ + "▁dat", + -10.397049903869629 + ], + [ + "▁Radio", + -10.397523880004883 + ], + [ + "▁southeast", + -10.397978782653809 + ], + [ + "▁Library", + -10.397994041442871 + ], + [ + "rie", + -10.398402214050293 + ], + [ + "▁spirit", + -10.398453712463379 + ], + [ + "▁evolution", + -10.39885139465332 + ], + [ + "ory", + -10.399067878723145 + ], + [ + "dan", + -10.399374008178711 + ], + [ + "▁Last", + -10.399587631225586 + ], + [ + "▁destruction", + -10.399810791015625 + ], + [ + "ox", + -10.399819374084473 + ], + [ + "▁architecture", + -10.400032997131348 + ], + [ + "▁degrees", + -10.400511741638184 + ], + [ + "▁cat", + -10.400542259216309 + ], + [ + "▁lb", + -10.400712966918945 + ], + [ + "ux", + -10.400785446166992 + ], + [ + "▁Adam", + -10.40079402923584 + ], + [ + "▁spiritual", + -10.401281356811523 + ], + [ + "▁Disney", + -10.401510238647461 + ], + [ + "ks", + -10.401646614074707 + ], + [ + "▁males", + -10.402023315429688 + ], + [ + "▁opera", + -10.40209674835205 + ], + [ + "▁Nintendo", + -10.402111053466797 + ], + [ + "▁prepare", + -10.402456283569336 + ], + [ + "▁hundreds", + -10.403288841247559 + ], + [ + "▁Robaina", + -10.403646469116211 + ], + [ + "▁1961", + -10.40412425994873 + ], + [ + ">", + -10.404661178588867 + ], + [ + "▁succeeded", + -10.405137062072754 + ], + [ + "▁Francis", + -10.405172348022461 + ], + [ + "▁inner", + -10.40517520904541 + ], + [ + "▁narrative", + -10.405282020568848 + ], + [ + "▁corner", + -10.405412673950195 + ], + [ + "par", + -10.405502319335938 + ], + [ + "▁sand", + -10.405750274658203 + ], + [ + "▁Federal", + -10.405781745910645 + ], + [ + "▁brothers", + -10.40644359588623 + ], + [ + "▁sample", + -10.407068252563477 + ], + [ + "▁Popilasyon", + -10.407304763793945 + ], + [ + "▁writes", + -10.40742015838623 + ], + [ + "▁immediate", + -10.407774925231934 + ], + [ + "▁strongly", + -10.408799171447754 + ], + [ + "ag", + -10.40897274017334 + ], + [ + "▁Hollywood", + -10.409249305725098 + ], + [ + "▁Command", + -10.4096097946167 + ], + [ + "▁bought", + -10.409648895263672 + ], + [ + "▁drew", + -10.409777641296387 + ], + [ + "▁reserve", + -10.410149574279785 + ], + [ + "ula", + -10.41028118133545 + ], + [ + "▁titles", + -10.410346031188965 + ], + [ + "▁refers", + -10.41077709197998 + ], + [ + "▁Bart", + -10.411028861999512 + ], + [ + "▁AD", + -10.411172866821289 + ], + [ + "▁stands", + -10.411429405212402 + ], + [ + "▁proposal", + -10.41185188293457 + ], + [ + "▁entitled", + -10.411863327026367 + ], + [ + "cc", + -10.411962509155273 + ], + [ + "low", + -10.41196346282959 + ], + [ + "nan", + -10.412142753601074 + ], + [ + "ida", + -10.412206649780273 + ], + [ + "▁habitat", + -10.412325859069824 + ], + [ + "▁Holy", + -10.412410736083984 + ], + [ + "▁Maria", + -10.412568092346191 + ], + [ + "▁Roger", + -10.412863731384277 + ], + [ + "ram", + -10.413116455078125 + ], + [ + "▁arranged", + -10.413243293762207 + ], + [ + "▁Anne", + -10.413312911987305 + ], + [ + "▁neither", + -10.413398742675781 + ], + [ + "▁movements", + -10.413538932800293 + ], + [ + ".)", + -10.413865089416504 + ], + [ + "▁Mars", + -10.4140043258667 + ], + [ + "▁creative", + -10.414584159851074 + ], + [ + "▁liquid", + -10.414856910705566 + ], + [ + "▁gets", + -10.414884567260742 + ], + [ + "▁tall", + -10.414892196655273 + ], + [ + "▁Norway", + -10.415104866027832 + ], + [ + "▁depending", + -10.41512680053711 + ], + [ + "▁trouble", + -10.41512680053711 + ], + [ + "▁southwest", + -10.415939331054688 + ], + [ + "▁watched", + -10.416321754455566 + ], + [ + "▁grand", + -10.417051315307617 + ], + [ + "▁seeing", + -10.417529106140137 + ], + [ + "▁imp", + -10.417922973632812 + ], + [ + "▁1.", + -10.41796588897705 + ], + [ + "45", + -10.418827056884766 + ], + [ + "▁Tout", + -10.41890811920166 + ], + [ + "sk", + -10.419057846069336 + ], + [ + "▁lake", + -10.419127464294434 + ], + [ + "▁contribute", + -10.419333457946777 + ], + [ + "▁minimum", + -10.419920921325684 + ], + [ + "▁prove", + -10.420248031616211 + ], + [ + "▁trains", + -10.42033576965332 + ], + [ + "▁responded", + -10.420475959777832 + ], + [ + "▁fèt", + -10.420567512512207 + ], + [ + "▁charged", + -10.420757293701172 + ], + [ + "▁Maryland", + -10.420851707458496 + ], + [ + "▁headed", + -10.421192169189453 + ], + [ + "▁survived", + -10.421276092529297 + ], + [ + "▁disaster", + -10.421407699584961 + ], + [ + "▁exactly", + -10.421661376953125 + ], + [ + "▁shoot", + -10.422442436218262 + ], + [ + "▁Ru", + -10.422567367553711 + ], + [ + "▁piti", + -10.42270565032959 + ], + [ + "ó", + -10.422883033752441 + ], + [ + "▁purposes", + -10.42337703704834 + ], + [ + "▁conclusion", + -10.423566818237305 + ], + [ + "▁designs", + -10.423669815063477 + ], + [ + "▁beautiful", + -10.423937797546387 + ], + [ + "▁outbreak", + -10.424120903015137 + ], + [ + "▁journal", + -10.424395561218262 + ], + [ + "▁consumption", + -10.424521446228027 + ], + [ + "▁outer", + -10.42492389678955 + ], + [ + "▁belief", + -10.425630569458008 + ], + [ + "▁oldest", + -10.425721168518066 + ], + [ + "▁honour", + -10.425797462463379 + ], + [ + "asyon", + -10.42597770690918 + ], + [ + "▁electricity", + -10.426323890686035 + ], + [ + "▁bringing", + -10.426395416259766 + ], + [ + "▁ruled", + -10.426416397094727 + ], + [ + "ella", + -10.426774024963379 + ], + [ + "▁Eric", + -10.427022933959961 + ], + [ + "tte", + -10.4273042678833 + ], + [ + "air", + -10.427910804748535 + ], + [ + "▁unusual", + -10.428167343139648 + ], + [ + "▁cricket", + -10.42820930480957 + ], + [ + "▁fer", + -10.428624153137207 + ], + [ + "▁timoun", + -10.428650856018066 + ], + [ + "▁waters", + -10.42868709564209 + ], + [ + "▁Internet", + -10.428792953491211 + ], + [ + "▁grown", + -10.428893089294434 + ], + [ + "▁54", + -10.428906440734863 + ], + [ + "ick", + -10.429780006408691 + ], + [ + "▁accounts", + -10.429910659790039 + ], + [ + "▁stream", + -10.430038452148438 + ], + [ + "▁televizyon", + -10.430425643920898 + ], + [ + "▁expression", + -10.430549621582031 + ], + [ + "▁bomb", + -10.431174278259277 + ], + [ + "▁Pat", + -10.431623458862305 + ], + [ + "▁Patrick", + -10.431928634643555 + ], + [ + "ju", + -10.43213176727295 + ], + [ + "▁generated", + -10.432351112365723 + ], + [ + "▁copy", + -10.432472229003906 + ], + [ + "▁card", + -10.433791160583496 + ], + [ + "for", + -10.43493938446045 + ], + [ + "▁Pop", + -10.435012817382812 + ], + [ + "row", + -10.435019493103027 + ], + [ + "mes", + -10.435391426086426 + ], + [ + "▁medium", + -10.43547534942627 + ], + [ + "▁employees", + -10.43566608428955 + ], + [ + "▁stable", + -10.436020851135254 + ], + [ + "▁po", + -10.436043739318848 + ], + [ + "▁accident", + -10.436482429504395 + ], + [ + "▁valley", + -10.436911582946777 + ], + [ + "▁Th", + -10.437146186828613 + ], + [ + "▁Colonel", + -10.437485694885254 + ], + [ + "▁thin", + -10.437601089477539 + ], + [ + "▁dezyèm", + -10.437854766845703 + ], + [ + "▁document", + -10.438158988952637 + ], + [ + "▁warning", + -10.438309669494629 + ], + [ + "▁singles", + -10.438594818115234 + ], + [ + "▁Arts", + -10.438628196716309 + ], + [ + "▁HMS", + -10.438812255859375 + ], + [ + "▁USA", + -10.439013481140137 + ], + [ + "▁file", + -10.439135551452637 + ], + [ + "▁challenges", + -10.43936538696289 + ], + [ + "▁biggest", + -10.439845085144043 + ], + [ + "▁definition", + -10.439875602722168 + ], + [ + "▁reducing", + -10.439963340759277 + ], + [ + "▁entering", + -10.44035816192627 + ], + [ + "▁gone", + -10.440625190734863 + ], + [ + "▁mu", + -10.441246032714844 + ], + [ + "▁options", + -10.441581726074219 + ], + [ + "26", + -10.441625595092773 + ], + [ + "▁hill", + -10.441682815551758 + ], + [ + "▁Moore", + -10.441732406616211 + ], + [ + "IS", + -10.441751480102539 + ], + [ + "ef", + -10.442179679870605 + ], + [ + "hl", + -10.442663192749023 + ], + [ + "28", + -10.442740440368652 + ], + [ + "▁Imperial", + -10.442838668823242 + ], + [ + "▁Max", + -10.442880630493164 + ], + [ + "ku", + -10.443260192871094 + ], + [ + "▁Video", + -10.443422317504883 + ], + [ + "▁im", + -10.443459510803223 + ], + [ + "▁justice", + -10.443548202514648 + ], + [ + "▁females", + -10.443733215332031 + ], + [ + "▁PlayStation", + -10.443737983703613 + ], + [ + "▁childhood", + -10.443744659423828 + ], + [ + "▁Tra", + -10.443984985351562 + ], + [ + "▁Sante", + -10.4441499710083 + ], + [ + "▁Such", + -10.444178581237793 + ], + [ + "▁operate", + -10.444292068481445 + ], + [ + "▁Inter", + -10.444512367248535 + ], + [ + "▁seemed", + -10.444814682006836 + ], + [ + "▁literary", + -10.444873809814453 + ], + [ + "▁participate", + -10.446066856384277 + ], + [ + "▁albums", + -10.446276664733887 + ], + [ + "▁53", + -10.446483612060547 + ], + [ + "▁1938", + -10.446537017822266 + ], + [ + "ese", + -10.44670581817627 + ], + [ + "▁Indiana", + -10.446718215942383 + ], + [ + "▁circulation", + -10.44674301147461 + ], + [ + "▁illness", + -10.446798324584961 + ], + [ + "▁1956", + -10.446903228759766 + ], + [ + "▁Dar", + -10.447227478027344 + ], + [ + "▁Bowl", + -10.447362899780273 + ], + [ + "▁pe", + -10.4474458694458 + ], + [ + "mas", + -10.447452545166016 + ], + [ + "▁parent", + -10.44760513305664 + ], + [ + "▁Mor", + -10.447650909423828 + ], + [ + "▁http", + -10.447811126708984 + ], + [ + "▁settled", + -10.448376655578613 + ], + [ + "▁Mexican", + -10.448450088500977 + ], + [ + "ces", + -10.448657035827637 + ], + [ + "▁flu", + -10.449419021606445 + ], + [ + "▁FA", + -10.449421882629395 + ], + [ + "sion", + -10.44945240020752 + ], + [ + "▁enjoy", + -10.449631690979004 + ], + [ + "▁engines", + -10.449831008911133 + ], + [ + "▁foundation", + -10.44997787475586 + ], + [ + "▁behaviour", + -10.450562477111816 + ], + [ + "▁normally", + -10.450799942016602 + ], + [ + "35", + -10.450918197631836 + ], + [ + "▁approached", + -10.450936317443848 + ], + [ + "▁closer", + -10.451261520385742 + ], + [ + "▁sum", + -10.451627731323242 + ], + [ + "▁inspiration", + -10.452303886413574 + ], + [ + "▁poly", + -10.452353477478027 + ], + [ + "▁agricultural", + -10.452377319335938 + ], + [ + "▁intense", + -10.452608108520508 + ], + [ + "▁nonm", + -10.452641487121582 + ], + [ + "era", + -10.45267105102539 + ], + [ + "▁Use", + -10.45268726348877 + ], + [ + "▁attend", + -10.453010559082031 + ], + [ + "▁Jay", + -10.45318603515625 + ], + [ + "▁renamed", + -10.453386306762695 + ], + [ + "▁thousand", + -10.453571319580078 + ], + [ + "ill", + -10.454093933105469 + ], + [ + "▁prisoners", + -10.454432487487793 + ], + [ + "▁Network", + -10.454619407653809 + ], + [ + "▁Anti", + -10.45487117767334 + ], + [ + "ome", + -10.45498275756836 + ], + [ + "▁window", + -10.455090522766113 + ], + [ + "▁bear", + -10.455389976501465 + ], + [ + "▁Unlike", + -10.455806732177734 + ], + [ + "▁exit", + -10.455951690673828 + ], + [ + "▁familiar", + -10.456884384155273 + ], + [ + "▁Douglas", + -10.457037925720215 + ], + [ + "tern", + -10.45716667175293 + ], + [ + "▁Constitution", + -10.457193374633789 + ], + [ + "▁Asian", + -10.457401275634766 + ], + [ + "▁bound", + -10.45749568939209 + ], + [ + "▁classification", + -10.457555770874023 + ], + [ + "▁plastic", + -10.458085060119629 + ], + [ + "▁retained", + -10.458657264709473 + ], + [ + "war", + -10.4589262008667 + ], + [ + "▁download", + -10.459261894226074 + ], + [ + "ction", + -10.459317207336426 + ], + [ + "▁experiment", + -10.459320068359375 + ], + [ + "▁institutions", + -10.45936107635498 + ], + [ + "▁measured", + -10.459561347961426 + ], + [ + "▁Social", + -10.459569931030273 + ], + [ + "▁Fair", + -10.459606170654297 + ], + [ + "▁awards", + -10.460284233093262 + ], + [ + "▁interior", + -10.460583686828613 + ], + [ + "▁absence", + -10.460683822631836 + ], + [ + "▁apply", + -10.460758209228516 + ], + [ + "▁bed", + -10.461058616638184 + ], + [ + "▁Hospital", + -10.461091041564941 + ], + [ + "▁driven", + -10.461584091186523 + ], + [ + "▁facility", + -10.461701393127441 + ], + [ + "▁genre", + -10.461956977844238 + ], + [ + "▁somewhat", + -10.462126731872559 + ], + [ + "▁apart", + -10.462714195251465 + ], + [ + "▁Com", + -10.462892532348633 + ], + [ + "yn", + -10.462966918945312 + ], + [ + "▁equipped", + -10.463033676147461 + ], + [ + "▁adapted", + -10.463093757629395 + ], + [ + "matic", + -10.463106155395508 + ], + [ + "▁none", + -10.463128089904785 + ], + [ + "▁Cap", + -10.46326732635498 + ], + [ + "▁trust", + -10.463281631469727 + ], + [ + "▁Sydney", + -10.463638305664062 + ], + [ + "▁Ram", + -10.463656425476074 + ], + [ + "▁òganizasyon", + -10.463740348815918 + ], + [ + "▁Prior", + -10.463883399963379 + ], + [ + "▁Golden", + -10.463953018188477 + ], + [ + "▁2004.", + -10.464022636413574 + ], + [ + "▁segment", + -10.464112281799316 + ], + [ + "▁giant", + -10.464152336120605 + ], + [ + "75", + -10.464827537536621 + ], + [ + "▁debt", + -10.465041160583496 + ], + [ + "▁commission", + -10.465555191040039 + ], + [ + "▁breed", + -10.465624809265137 + ], + [ + "▁56", + -10.465696334838867 + ], + [ + "▁1958", + -10.466364860534668 + ], + [ + "▁charts", + -10.466389656066895 + ], + [ + "br", + -10.466660499572754 + ], + [ + "▁wearing", + -10.46667766571045 + ], + [ + "▁languages", + -10.466756820678711 + ], + [ + "▁Dark", + -10.466961860656738 + ], + [ + "▁sight", + -10.467413902282715 + ], + [ + "izin", + -10.467498779296875 + ], + [ + "▁weakened", + -10.467545509338379 + ], + [ + "▁resolution", + -10.467684745788574 + ], + [ + "▁Illinois", + -10.467727661132812 + ], + [ + "▁frequent", + -10.467780113220215 + ], + [ + "▁consisting", + -10.468539237976074 + ], + [ + "oid", + -10.468565940856934 + ], + [ + "▁happen", + -10.469179153442383 + ], + [ + "▁spoke", + -10.469559669494629 + ], + [ + "▁discuss", + -10.469667434692383 + ], + [ + "▁offering", + -10.469674110412598 + ], + [ + "▁assumed", + -10.469732284545898 + ], + [ + "▁tanks", + -10.469825744628906 + ], + [ + "▁moon", + -10.470182418823242 + ], + [ + "66", + -10.470301628112793 + ], + [ + "▁Band", + -10.470318794250488 + ], + [ + "▁dates", + -10.470541000366211 + ], + [ + "▁sufficient", + -10.47086238861084 + ], + [ + "86", + -10.470992088317871 + ], + [ + "▁lasted", + -10.471055030822754 + ], + [ + "▁Touris", + -10.471073150634766 + ], + [ + "▁duties", + -10.471177101135254 + ], + [ + "cho", + -10.47178840637207 + ], + [ + "▁trained", + -10.4719877243042 + ], + [ + "▁1959", + -10.472221374511719 + ], + [ + "▁net", + -10.472400665283203 + ], + [ + "▁Marie", + -10.472569465637207 + ], + [ + "▁Mountain", + -10.472683906555176 + ], + [ + "hal", + -10.472699165344238 + ], + [ + "▁Espò", + -10.472772598266602 + ], + [ + "▁Longchamp", + -10.47317123413086 + ], + [ + "▁legislation", + -10.473274230957031 + ], + [ + "▁Santa", + -10.473302841186523 + ], + [ + "▁spin", + -10.473346710205078 + ], + [ + "▁happy", + -10.473394393920898 + ], + [ + "▁Within", + -10.47344970703125 + ], + [ + "▁prey", + -10.47380256652832 + ], + [ + "▁bass", + -10.474355697631836 + ], + [ + "▁700", + -10.474360466003418 + ], + [ + "▁photo", + -10.474892616271973 + ], + [ + "▁ko", + -10.475045204162598 + ], + [ + "▁1957", + -10.475312232971191 + ], + [ + "▁NHL", + -10.475543975830078 + ], + [ + "fu", + -10.475637435913086 + ], + [ + "▁Alan", + -10.475787162780762 + ], + [ + "▁category", + -10.475852966308594 + ], + [ + "65", + -10.476110458374023 + ], + [ + "vis", + -10.476377487182617 + ], + [ + "▁lies", + -10.476391792297363 + ], + [ + "▁fashion", + -10.47644329071045 + ], + [ + "▁electrical", + -10.477169036865234 + ], + [ + "▁cool", + -10.477187156677246 + ], + [ + "▁theatre", + -10.477490425109863 + ], + [ + "ture", + -10.477500915527344 + ], + [ + "eau", + -10.478049278259277 + ], + [ + "▁output", + -10.47807788848877 + ], + [ + "▁1947", + -10.478404998779297 + ], + [ + "07", + -10.4788818359375 + ], + [ + "▁radyo", + -10.479010581970215 + ], + [ + "▁maintenance", + -10.479267120361328 + ], + [ + "▁sivil", + -10.479594230651855 + ], + [ + "▁Fer", + -10.479636192321777 + ], + [ + "▁1919", + -10.479684829711914 + ], + [ + "▁organic", + -10.479718208312988 + ], + [ + "▁gene", + -10.479940414428711 + ], + [ + "▁radiation", + -10.479992866516113 + ], + [ + "▁angle", + -10.480162620544434 + ], + [ + "▁Heart", + -10.480367660522461 + ], + [ + "die", + -10.480496406555176 + ], + [ + "ret", + -10.48051929473877 + ], + [ + "▁Kilti", + -10.480600357055664 + ], + [ + "▁Angel", + -10.480616569519043 + ], + [ + "▁external", + -10.480616569519043 + ], + [ + "ough", + -10.480655670166016 + ], + [ + "SA", + -10.480679512023926 + ], + [ + "▁nations", + -10.480850219726562 + ], + [ + "37", + -10.481367111206055 + ], + [ + "▁impossible", + -10.481654167175293 + ], + [ + "▁ridge", + -10.482017517089844 + ], + [ + "▁minister", + -10.482026100158691 + ], + [ + "▁Bush", + -10.482385635375977 + ], + [ + "▁Family", + -10.48269271850586 + ], + [ + "▁Temple", + -10.482748031616211 + ], + [ + "▁credited", + -10.483131408691406 + ], + [ + "▁easier", + -10.483317375183105 + ], + [ + "▁Korea", + -10.483613014221191 + ], + [ + "til", + -10.483705520629883 + ], + [ + "▁begun", + -10.48379135131836 + ], + [ + "▁serves", + -10.483919143676758 + ], + [ + "▁folk", + -10.484582901000977 + ], + [ + "▁Real", + -10.485313415527344 + ], + [ + "▁1936", + -10.486948013305664 + ], + [ + "▁Pu", + -10.487266540527344 + ], + [ + "▁moderate", + -10.487283706665039 + ], + [ + "▁Des", + -10.48741626739502 + ], + [ + "av", + -10.48742389678955 + ], + [ + "▁mix", + -10.487519264221191 + ], + [ + "▁Kim", + -10.487683296203613 + ], + [ + "▁1953", + -10.487793922424316 + ], + [ + "▁describing", + -10.487967491149902 + ], + [ + "▁kontak", + -10.488144874572754 + ], + [ + "▁invited", + -10.488310813903809 + ], + [ + "▁medikal", + -10.488324165344238 + ], + [ + "▁classified", + -10.48845100402832 + ], + [ + "▁Hitler", + -10.488697052001953 + ], + [ + "▁Airport", + -10.488848686218262 + ], + [ + "▁programme", + -10.488905906677246 + ], + [ + "▁otorite", + -10.488951683044434 + ], + [ + "▁principles", + -10.489127159118652 + ], + [ + "▁Centre", + -10.489139556884766 + ], + [ + "▁Philip", + -10.489252090454102 + ], + [ + "▁distributed", + -10.489404678344727 + ], + [ + "▁Germans", + -10.489450454711914 + ], + [ + "▁Kreyòl", + -10.48947525024414 + ], + [ + "01", + -10.489567756652832 + ], + [ + "ré", + -10.489781379699707 + ], + [ + "▁para", + -10.489971160888672 + ], + [ + "operasyon", + -10.489985466003418 + ], + [ + "▁rescue", + -10.489990234375 + ], + [ + "▁medal", + -10.490118980407715 + ], + [ + "▁Bal", + -10.490440368652344 + ], + [ + "▁excellent", + -10.490522384643555 + ], + [ + "▁Hamilton", + -10.49062728881836 + ], + [ + "▁respond", + -10.490721702575684 + ], + [ + "▁sport", + -10.490727424621582 + ], + [ + "▁household", + -10.491000175476074 + ], + [ + "▁sispann", + -10.491571426391602 + ], + [ + "▁Take", + -10.491633415222168 + ], + [ + "▁smooth", + -10.491677284240723 + ], + [ + "ama", + -10.491878509521484 + ], + [ + "▁faster", + -10.491902351379395 + ], + [ + "▁Missouri", + -10.492621421813965 + ], + [ + "▁rank", + -10.49303913116455 + ], + [ + "▁Minnesota", + -10.493356704711914 + ], + [ + "▁province", + -10.493614196777344 + ], + [ + "▁1962,", + -10.493925094604492 + ], + [ + "▁businesses", + -10.49458122253418 + ], + [ + "▁neck", + -10.494786262512207 + ], + [ + "▁emphasis", + -10.495144844055176 + ], + [ + "▁Gordon", + -10.49538516998291 + ], + [ + "▁Gouvènman", + -10.495460510253906 + ], + [ + "▁fa", + -10.495494842529297 + ], + [ + "85", + -10.495738983154297 + ], + [ + "▁separated", + -10.49593448638916 + ], + [ + "▁Dream", + -10.495956420898438 + ], + [ + "▁Howard", + -10.495970726013184 + ], + [ + "▁milk", + -10.496146202087402 + ], + [ + "fish", + -10.496411323547363 + ], + [ + "▁diplomatik", + -10.496423721313477 + ], + [ + "▁expensive", + -10.496620178222656 + ], + [ + "▁Kong", + -10.496723175048828 + ], + [ + "▁emerged", + -10.496816635131836 + ], + [ + "▁Sinema", + -10.497480392456055 + ], + [ + "▁plane", + -10.497722625732422 + ], + [ + "▁amounts", + -10.49782943725586 + ], + [ + "▁abuse", + -10.4978666305542 + ], + [ + "▁admitted", + -10.498236656188965 + ], + [ + "▁historic", + -10.498353004455566 + ], + [ + "ack", + -10.498397827148438 + ], + [ + "▁estasyon", + -10.498433113098145 + ], + [ + "ique", + -10.499211311340332 + ], + [ + "yo", + -10.499471664428711 + ], + [ + "▁baseball", + -10.499783515930176 + ], + [ + "▁gender", + -10.500473976135254 + ], + [ + "29", + -10.500530242919922 + ], + [ + "33", + -10.500561714172363 + ], + [ + "▁classroom", + -10.500764846801758 + ], + [ + "▁Naval", + -10.501059532165527 + ], + [ + "▁decisions", + -10.501389503479004 + ], + [ + "▁Mediterranean", + -10.501482009887695 + ], + [ + "▁freeway", + -10.501827239990234 + ], + [ + "▁struggle", + -10.50186824798584 + ], + [ + "▁Report", + -10.501911163330078 + ], + [ + "▁conservation", + -10.502012252807617 + ], + [ + "▁immune", + -10.502119064331055 + ], + [ + "▁subjects", + -10.502203941345215 + ], + [ + "▁root", + -10.502381324768066 + ], + [ + "▁1904.", + -10.502567291259766 + ], + [ + "▁explains", + -10.50290298461914 + ], + [ + "ena", + -10.50332260131836 + ], + [ + "▁mention", + -10.503355979919434 + ], + [ + "osis", + -10.503522872924805 + ], + [ + "▁Master", + -10.504050254821777 + ], + [ + "▁pp", + -10.504054069519043 + ], + [ + "99", + -10.504158973693848 + ], + [ + "▁Kennedy", + -10.504453659057617 + ], + [ + "▁towns", + -10.504524230957031 + ], + [ + "cre", + -10.504618644714355 + ], + [ + "▁belt", + -10.504623413085938 + ], + [ + "▁Em", + -10.504739761352539 + ], + [ + "▁drawing", + -10.504744529724121 + ], + [ + "▁emissions", + -10.50476360321045 + ], + [ + "▁gameplay", + -10.50482177734375 + ], + [ + "▁Tre", + -10.505300521850586 + ], + [ + "▁praise", + -10.505314826965332 + ], + [ + "▁Agrikilti", + -10.50551700592041 + ], + [ + "▁asistans", + -10.50566291809082 + ], + [ + "▁crossed", + -10.505962371826172 + ], + [ + "▁dwèt", + -10.506049156188965 + ], + [ + "▁Assembly", + -10.506155967712402 + ], + [ + "▁instruments", + -10.5061674118042 + ], + [ + "▁1955", + -10.506180763244629 + ], + [ + "▁Beyoncé", + -10.507007598876953 + ], + [ + "▁Five", + -10.507104873657227 + ], + [ + "reprann", + -10.50712776184082 + ], + [ + "mit", + -10.50748062133789 + ], + [ + "▁channel", + -10.507607460021973 + ], + [ + "▁description", + -10.507786750793457 + ], + [ + "▁row", + -10.507838249206543 + ], + [ + "tel", + -10.507842063903809 + ], + [ + "▁airport", + -10.508108139038086 + ], + [ + "▁Sta", + -10.5084867477417 + ], + [ + "▁vast", + -10.508663177490234 + ], + [ + "▁Pèsonalite", + -10.508713722229004 + ], + [ + "ip", + -10.50904369354248 + ], + [ + "eur", + -10.509450912475586 + ], + [ + "▁founder", + -10.509489059448242 + ], + [ + "▁detail", + -10.509501457214355 + ], + [ + "tain", + -10.509695053100586 + ], + [ + "▁posted", + -10.510153770446777 + ], + [ + "▁sequel", + -10.510530471801758 + ], + [ + "▁pit", + -10.510716438293457 + ], + [ + "▁worst", + -10.51085090637207 + ], + [ + "▁encouraged", + -10.510964393615723 + ], + [ + "▁Konstriksyon", + -10.511064529418945 + ], + [ + "▁flank", + -10.511066436767578 + ], + [ + "▁tape", + -10.511133193969727 + ], + [ + "hanselye", + -10.51127815246582 + ], + [ + "▁Sky", + -10.511382102966309 + ], + [ + "▁repair", + -10.511434555053711 + ], + [ + "▁feelings", + -10.511468887329102 + ], + [ + "▁alfabetizasyon", + -10.51159954071045 + ], + [ + "▁koumanse", + -10.511706352233887 + ], + [ + "▁Wi", + -10.511802673339844 + ], + [ + "▁pèsonalite", + -10.51181411743164 + ], + [ + "▁colonial", + -10.511841773986816 + ], + [ + "▁Pèch", + -10.511920928955078 + ], + [ + "▁OEA", + -10.511921882629395 + ], + [ + "▁300000", + -10.512197494506836 + ], + [ + "▁shore", + -10.512442588806152 + ], + [ + "▁stadium", + -10.512455940246582 + ], + [ + "▁arrested", + -10.512630462646484 + ], + [ + "▁Dabò", + -10.512788772583008 + ], + [ + "▁Adams", + -10.512876510620117 + ], + [ + "ewonotik", + -10.512991905212402 + ], + [ + "▁breaking", + -10.513099670410156 + ], + [ + "▁Therefore", + -10.513501167297363 + ], + [ + "▁modified", + -10.513548851013184 + ], + [ + "▁schedule", + -10.513551712036133 + ], + [ + "▁der", + -10.514087677001953 + ], + [ + "▁manage", + -10.51441764831543 + ], + [ + "▁false", + -10.5145263671875 + ], + [ + "▁Op", + -10.514573097229004 + ], + [ + "▁dating", + -10.514684677124023 + ], + [ + "▁Norman", + -10.514755249023438 + ], + [ + "▁Guide", + -10.514966011047363 + ], + [ + "▁collaboration", + -10.515137672424316 + ], + [ + "▁Shortly", + -10.515183448791504 + ], + [ + "▁dogs", + -10.51545524597168 + ], + [ + "▁76", + -10.515640258789062 + ], + [ + "▁suitable", + -10.515656471252441 + ], + [ + "▁1910", + -10.516324043273926 + ], + [ + "▁Beach", + -10.51647663116455 + ], + [ + "▁concrete", + -10.516535758972168 + ], + [ + "ball", + -10.516611099243164 + ], + [ + "▁attributed", + -10.516858100891113 + ], + [ + "▁articles", + -10.5170316696167 + ], + [ + "down", + -10.517109870910645 + ], + [ + "book", + -10.51731014251709 + ], + [ + "▁represents", + -10.517387390136719 + ], + [ + "▁Native", + -10.517509460449219 + ], + [ + "▁Byzantine", + -10.517719268798828 + ], + [ + "▁thirty", + -10.517719268798828 + ], + [ + "▁Kent", + -10.517878532409668 + ], + [ + "elle", + -10.518228530883789 + ], + [ + "▁1937", + -10.51826000213623 + ], + [ + "▁drinking", + -10.518315315246582 + ], + [ + "lor", + -10.518776893615723 + ], + [ + "rum", + -10.518784523010254 + ], + [ + "▁Sen", + -10.518842697143555 + ], + [ + "▁Ber", + -10.519116401672363 + ], + [ + "▁kon", + -10.519186973571777 + ], + [ + "ala", + -10.519477844238281 + ], + [ + "▁ameriken", + -10.520415306091309 + ], + [ + "▁Fe", + -10.520609855651855 + ], + [ + "vert", + -10.520676612854004 + ], + [ + "▁Further", + -10.520942687988281 + ], + [ + "▁1954", + -10.52102279663086 + ], + [ + "▁whereas", + -10.521042823791504 + ], + [ + "▁engage", + -10.521217346191406 + ], + [ + "▁yourself", + -10.521844863891602 + ], + [ + "▁Jordan", + -10.522253036499023 + ], + [ + "▁temporary", + -10.522469520568848 + ], + [ + "lay", + -10.522574424743652 + ], + [ + "▁Memorial", + -10.523551940917969 + ], + [ + "▁Throughout", + -10.523736953735352 + ], + [ + "▁winner", + -10.52427864074707 + ], + [ + "AC", + -10.524943351745605 + ], + [ + "▁Down", + -10.525179862976074 + ], + [ + "▁Fu", + -10.525415420532227 + ], + [ + "▁legs", + -10.525638580322266 + ], + [ + "pping", + -10.525995254516602 + ], + [ + "▁holds", + -10.526816368103027 + ], + [ + "▁suffer", + -10.52685546875 + ], + [ + "bra", + -10.526898384094238 + ], + [ + "▁Well", + -10.527021408081055 + ], + [ + "▁Mont", + -10.527124404907227 + ], + [ + "▁percentage", + -10.527132987976074 + ], + [ + "▁Muslim", + -10.527140617370605 + ], + [ + "gate", + -10.527451515197754 + ], + [ + "▁Jacob", + -10.52757453918457 + ], + [ + "bal", + -10.527594566345215 + ], + [ + "▁rep", + -10.52767562866211 + ], + [ + "▁sessions", + -10.528173446655273 + ], + [ + "▁stood", + -10.52835750579834 + ], + [ + "▁interpretation", + -10.528409957885742 + ], + [ + "cent", + -10.52863883972168 + ], + [ + "▁informed", + -10.528650283813477 + ], + [ + "▁participants", + -10.529075622558594 + ], + [ + "▁Pen", + -10.529094696044922 + ], + [ + "▁fluid", + -10.529195785522461 + ], + [ + "tt", + -10.52933120727539 + ], + [ + "▁owners", + -10.52936840057373 + ], + [ + "▁pages", + -10.529647827148438 + ], + [ + "▁enemies", + -10.53094482421875 + ], + [ + "▁obtain", + -10.531012535095215 + ], + [ + "▁Magazine", + -10.531274795532227 + ], + [ + "▁Those", + -10.531535148620605 + ], + [ + "▁Cre", + -10.531600952148438 + ], + [ + "▁Iowa", + -10.53197956085205 + ], + [ + "▁classical", + -10.53219985961914 + ], + [ + "▁Win", + -10.532466888427734 + ], + [ + "▁Six", + -10.532600402832031 + ], + [ + "38", + -10.532917022705078 + ], + [ + "▁Phil", + -10.53305435180664 + ], + [ + "▁forming", + -10.533110618591309 + ], + [ + "▁voted", + -10.533177375793457 + ], + [ + "▁Olympics", + -10.533530235290527 + ], + [ + "dis", + -10.533644676208496 + ], + [ + "des", + -10.533652305603027 + ], + [ + "▁involves", + -10.533868789672852 + ], + [ + "▁Cro", + -10.534065246582031 + ], + [ + "▁victims", + -10.534112930297852 + ], + [ + "lye", + -10.534453392028809 + ], + [ + "▁Using", + -10.534476280212402 + ], + [ + "▁Gra", + -10.534619331359863 + ], + [ + "▁Ann", + -10.534975051879883 + ], + [ + "▁appointment", + -10.535037994384766 + ], + [ + "▁ap", + -10.535173416137695 + ], + [ + "▁diameter", + -10.535653114318848 + ], + [ + "▁falling", + -10.535788536071777 + ], + [ + "▁sale", + -10.535820007324219 + ], + [ + "▁facing", + -10.536052703857422 + ], + [ + "▁Jeff", + -10.536063194274902 + ], + [ + "▁Third", + -10.536255836486816 + ], + [ + "ros", + -10.536285400390625 + ], + [ + "▁Tony", + -10.536372184753418 + ], + [ + "▁comments", + -10.536890983581543 + ], + [ + "▁Media", + -10.537153244018555 + ], + [ + "▁remainder", + -10.537301063537598 + ], + [ + ".1", + -10.537548065185547 + ], + [ + "▁ratio", + -10.537548065185547 + ], + [ + "▁harm", + -10.537750244140625 + ], + [ + "▁isn", + -10.538177490234375 + ], + [ + "▁wish", + -10.538183212280273 + ], + [ + "▁explore", + -10.538496017456055 + ], + [ + "▁marine", + -10.538501739501953 + ], + [ + "ky", + -10.539031028747559 + ], + [ + "▁Ly", + -10.539234161376953 + ], + [ + "▁contest", + -10.539766311645508 + ], + [ + "▁Luc", + -10.539851188659668 + ], + [ + "):", + -10.539978981018066 + ], + [ + "▁certified", + -10.540264129638672 + ], + [ + "▁Iron", + -10.54043197631836 + ], + [ + "▁ride", + -10.540846824645996 + ], + [ + "▁Matthew", + -10.540942192077637 + ], + [ + "ising", + -10.541752815246582 + ], + [ + "tch", + -10.541834831237793 + ], + [ + "▁incorporated", + -10.541947364807129 + ], + [ + "▁accused", + -10.542031288146973 + ], + [ + "▁muscle", + -10.543062210083008 + ], + [ + "▁reflect", + -10.544179916381836 + ], + [ + "▁Medical", + -10.54423713684082 + ], + [ + "▁66", + -10.544785499572754 + ], + [ + "▁Allen", + -10.544943809509277 + ], + [ + "▁app", + -10.545148849487305 + ], + [ + "▁occasionally", + -10.545385360717773 + ], + [ + "▁Nick", + -10.545451164245605 + ], + [ + "▁Class", + -10.545522689819336 + ], + [ + "▁concentration", + -10.54580020904541 + ], + [ + "zy", + -10.545821189880371 + ], + [ + "ax", + -10.54602336883545 + ], + [ + "▁scheme", + -10.546624183654785 + ], + [ + "▁grounds", + -10.547097206115723 + ], + [ + "▁Jane", + -10.547139167785645 + ], + [ + "▁breast", + -10.547452926635742 + ], + [ + "▁Egyptian", + -10.54749870300293 + ], + [ + "ero", + -10.54764461517334 + ], + [ + "bit", + -10.547765731811523 + ], + [ + "▁landfall", + -10.547906875610352 + ], + [ + "▁Theatre", + -10.548368453979492 + ], + [ + "ular", + -10.548949241638184 + ], + [ + "▁judge", + -10.549042701721191 + ], + [ + "▁housing", + -10.549124717712402 + ], + [ + "▁bands", + -10.549126625061035 + ], + [ + "▁57", + -10.549623489379883 + ], + [ + "▁organ", + -10.549857139587402 + ], + [ + "▁ra", + -10.549956321716309 + ], + [ + "rid", + -10.550406455993652 + ], + [ + "▁Food", + -10.550498962402344 + ], + [ + "▁dated", + -10.550886154174805 + ], + [ + "itis", + -10.55117416381836 + ], + [ + "▁bo", + -10.551765441894531 + ], + [ + "▁1952", + -10.551992416381836 + ], + [ + "▁tied", + -10.552684783935547 + ], + [ + "▁rival", + -10.553390502929688 + ], + [ + "ins", + -10.553534507751465 + ], + [ + "▁Alex", + -10.553898811340332 + ], + [ + "▁portrayed", + -10.554085731506348 + ], + [ + "ole", + -10.554370880126953 + ], + [ + "▁apparent", + -10.554400444030762 + ], + [ + "▁controversy", + -10.555023193359375 + ], + [ + "▁plain", + -10.555095672607422 + ], + [ + "▁flowers", + -10.555462837219238 + ], + [ + "▁completion", + -10.555806159973145 + ], + [ + "▁involvement", + -10.555926322937012 + ], + [ + "▁recalled", + -10.556156158447266 + ], + [ + "▁Tan", + -10.556234359741211 + ], + [ + "ever", + -10.556336402893066 + ], + [ + "▁clinical", + -10.556485176086426 + ], + [ + "▁reception", + -10.557862281799316 + ], + [ + "▁notice", + -10.558021545410156 + ], + [ + "▁soti", + -10.558194160461426 + ], + [ + "▁−", + -10.558547973632812 + ], + [ + "uch", + -10.559338569641113 + ], + [ + "▁Professor", + -10.559617042541504 + ], + [ + "act", + -10.55971908569336 + ], + [ + "▁denied", + -10.559967994689941 + ], + [ + "▁Through", + -10.560212135314941 + ], + [ + "▁z", + -10.560537338256836 + ], + [ + "▁trials", + -10.561604499816895 + ], + [ + "▁Anna", + -10.56169319152832 + ], + [ + "▁documents", + -10.561956405639648 + ], + [ + "▁Bishop", + -10.561979293823242 + ], + [ + "▁Juan", + -10.562255859375 + ], + [ + "▁Natural", + -10.562548637390137 + ], + [ + "▁component", + -10.562938690185547 + ], + [ + "▁Area", + -10.563329696655273 + ], + [ + "▁Fo", + -10.563430786132812 + ], + [ + "bert", + -10.563498497009277 + ], + [ + "▁investment", + -10.563969612121582 + ], + [ + "▁Char", + -10.564160346984863 + ], + [ + "▁vary", + -10.564409255981445 + ], + [ + "▁Type", + -10.565062522888184 + ], + [ + "▁Ph", + -10.565218925476074 + ], + [ + "▁jewografik", + -10.565605163574219 + ], + [ + "▁);", + -10.565786361694336 + ], + [ + "▁1949", + -10.56590461730957 + ], + [ + "▁log", + -10.566160202026367 + ], + [ + "▁vital", + -10.566407203674316 + ], + [ + "year", + -10.566749572753906 + ], + [ + "▁Ash", + -10.567010879516602 + ], + [ + "▁tooth", + -10.567028999328613 + ], + [ + "▁column", + -10.56717300415039 + ], + [ + "▁Nu", + -10.567658424377441 + ], + [ + "tè", + -10.567781448364258 + ], + [ + "▁colony", + -10.568177223205566 + ], + [ + "▁roots", + -10.568215370178223 + ], + [ + "▁jobs", + -10.568438529968262 + ], + [ + "▁frequency", + -10.568503379821777 + ], + [ + "▁bright", + -10.56883430480957 + ], + [ + "▁Main", + -10.569208145141602 + ], + [ + "▁count", + -10.56923770904541 + ], + [ + "oon", + -10.5692720413208 + ], + [ + "ima", + -10.569531440734863 + ], + [ + "▁2019", + -10.56967544555664 + ], + [ + "▁forests", + -10.569811820983887 + ], + [ + "▁Tar", + -10.570168495178223 + ], + [ + "▁DE", + -10.570379257202148 + ], + [ + "lis", + -10.570528984069824 + ], + [ + "bre", + -10.570942878723145 + ], + [ + "▁kick", + -10.57103443145752 + ], + [ + "▁McC", + -10.571146011352539 + ], + [ + "▁moves", + -10.571218490600586 + ], + [ + "▁pool", + -10.5714693069458 + ], + [ + "▁Ana", + -10.57151985168457 + ], + [ + "▁Modern", + -10.571829795837402 + ], + [ + "▁periods", + -10.571934700012207 + ], + [ + "▁almanak", + -10.572047233581543 + ], + [ + "▁memorial", + -10.572729110717773 + ], + [ + "67", + -10.572916984558105 + ], + [ + "▁Las", + -10.573125839233398 + ], + [ + "▁taste", + -10.573663711547852 + ], + [ + "▁sit", + -10.573827743530273 + ], + [ + "▁continuing", + -10.573867797851562 + ], + [ + "▁topic", + -10.57388687133789 + ], + [ + "ming", + -10.573918342590332 + ], + [ + "▁canal", + -10.574002265930176 + ], + [ + "▁Sub", + -10.574309349060059 + ], + [ + "▁spending", + -10.574575424194336 + ], + [ + "▁defend", + -10.574831008911133 + ], + [ + "nal", + -10.574872016906738 + ], + [ + "▁Girl", + -10.575018882751465 + ], + [ + "▁cloud", + -10.57504940032959 + ], + [ + "af", + -10.575201988220215 + ], + [ + "▁Program", + -10.575580596923828 + ], + [ + "▁”", + -10.576064109802246 + ], + [ + "▁Plant", + -10.57630443572998 + ], + [ + "▁recovered", + -10.576313018798828 + ], + [ + "ón", + -10.5764799118042 + ], + [ + "▁Rio", + -10.57660961151123 + ], + [ + "▁cup", + -10.576712608337402 + ], + [ + "▁uniform", + -10.57681941986084 + ], + [ + "▁1951", + -10.576860427856445 + ], + [ + "▁findings", + -10.577215194702148 + ], + [ + "▁touch", + -10.5773344039917 + ], + [ + "▁58", + -10.577693939208984 + ], + [ + "▁pounds", + -10.577754020690918 + ], + [ + "▁departure", + -10.577762603759766 + ], + [ + "▁Alabama", + -10.577862739562988 + ], + [ + "▁Hart", + -10.577966690063477 + ], + [ + "▁Ford", + -10.577980995178223 + ], + [ + "55", + -10.578085899353027 + ], + [ + "▁twin", + -10.578211784362793 + ], + [ + "dale", + -10.57824420928955 + ], + [ + "▁routes", + -10.57829475402832 + ], + [ + "▁knots", + -10.578545570373535 + ], + [ + "▁Control", + -10.578705787658691 + ], + [ + "▁1933", + -10.578779220581055 + ], + [ + "▁Design", + -10.578939437866211 + ], + [ + "▁Dat", + -10.57915210723877 + ], + [ + "▁plus", + -10.579275131225586 + ], + [ + "▁stick", + -10.579695701599121 + ], + [ + "▁72", + -10.579853057861328 + ], + [ + "▁MTV", + -10.580196380615234 + ], + [ + "èt", + -10.580480575561523 + ], + [ + "▁visitors", + -10.580512046813965 + ], + [ + "▁throw", + -10.580514907836914 + ], + [ + "▁teach", + -10.580617904663086 + ], + [ + "44", + -10.580849647521973 + ], + [ + "▁hits", + -10.58092212677002 + ], + [ + "▁recognize", + -10.58096694946289 + ], + [ + "▁Trans", + -10.581439018249512 + ], + [ + "▁substantial", + -10.58164119720459 + ], + [ + "▁certainly", + -10.582113265991211 + ], + [ + "▁comparison", + -10.582347869873047 + ], + [ + "ić", + -10.582510948181152 + ], + [ + "▁practical", + -10.582523345947266 + ], + [ + "▁Get", + -10.58266544342041 + ], + [ + "iff", + -10.582732200622559 + ], + [ + "▁Dun", + -10.582950592041016 + ], + [ + "▁surrounded", + -10.58333969116211 + ], + [ + "▁repeated", + -10.583571434020996 + ], + [ + "▁orbit", + -10.583868026733398 + ], + [ + "▁Having", + -10.584390640258789 + ], + [ + "▁charges", + -10.584720611572266 + ], + [ + "rus", + -10.584771156311035 + ], + [ + "▁successor", + -10.585269927978516 + ], + [ + "▁engagement", + -10.585429191589355 + ], + [ + "▁Mer", + -10.585539817810059 + ], + [ + "▁Ger", + -10.585545539855957 + ], + [ + "▁missed", + -10.585681915283203 + ], + [ + "▁smoke", + -10.585893630981445 + ], + [ + "▁Hungarian", + -10.585907936096191 + ], + [ + "▁Make", + -10.585962295532227 + ], + [ + "▁Villa", + -10.586615562438965 + ], + [ + "▁fixed", + -10.586935997009277 + ], + [ + "fin", + -10.587029457092285 + ], + [ + "▁leta", + -10.587174415588379 + ], + [ + "▁Morgan", + -10.587203979492188 + ], + [ + "▁handle", + -10.587231636047363 + ], + [ + "▁1900", + -10.587553024291992 + ], + [ + "▁attracted", + -10.588255882263184 + ], + [ + "▁crash", + -10.588420867919922 + ], + [ + "▁evil", + -10.588781356811523 + ], + [ + "▁translation", + -10.589042663574219 + ], + [ + "▁bus", + -10.58940315246582 + ], + [ + "▁Simpsons", + -10.589409828186035 + ], + [ + "▁streets", + -10.58983039855957 + ], + [ + "▁eighth", + -10.58996868133545 + ], + [ + "▁loop", + -10.59012222290039 + ], + [ + "09", + -10.590667724609375 + ], + [ + "pri", + -10.590780258178711 + ], + [ + "▁ethnic", + -10.590869903564453 + ], + [ + "nce", + -10.59089469909668 + ], + [ + "▁Sh", + -10.591408729553223 + ], + [ + "31", + -10.591455459594727 + ], + [ + "▁ne", + -10.591504096984863 + ], + [ + "▁arch", + -10.591630935668945 + ], + [ + "▁driver", + -10.591780662536621 + ], + [ + "dar", + -10.591910362243652 + ], + [ + "▁Horse", + -10.591933250427246 + ], + [ + "▁Indians", + -10.592449188232422 + ], + [ + "▁gap", + -10.59251880645752 + ], + [ + "▁composer", + -10.592768669128418 + ], + [ + "36", + -10.593537330627441 + ], + [ + "▁1935", + -10.593551635742188 + ], + [ + "▁Hay", + -10.593753814697266 + ], + [ + "▁controversial", + -10.593771934509277 + ], + [ + "▁sky", + -10.593849182128906 + ], + [ + "▁looks", + -10.594015121459961 + ], + [ + "▁Samuel", + -10.594030380249023 + ], + [ + "▁rarely", + -10.594039916992188 + ], + [ + "az", + -10.594184875488281 + ], + [ + "▁Around", + -10.594331741333008 + ], + [ + "▁Yu", + -10.594429016113281 + ], + [ + "▁medieval", + -10.59446907043457 + ], + [ + "▁audio", + -10.594891548156738 + ], + [ + "ene", + -10.594952583312988 + ], + [ + "▁tested", + -10.595004081726074 + ], + [ + "▁sharp", + -10.595388412475586 + ], + [ + "▁creator", + -10.595739364624023 + ], + [ + "dor", + -10.595861434936523 + ], + [ + "list", + -10.595877647399902 + ], + [ + "eb", + -10.596474647521973 + ], + [ + "nch", + -10.596829414367676 + ], + [ + "PA", + -10.596853256225586 + ], + [ + "pon", + -10.596892356872559 + ], + [ + "▁130", + -10.59703540802002 + ], + [ + "▁Building", + -10.597147941589355 + ], + [ + "AT", + -10.597175598144531 + ], + [ + "▁Netherlands", + -10.597614288330078 + ], + [ + "▁circumstances", + -10.597640991210938 + ], + [ + "▁supporters", + -10.597886085510254 + ], + [ + "▁isolated", + -10.597929954528809 + ], + [ + "pin", + -10.598176956176758 + ], + [ + "▁Songs", + -10.59841537475586 + ], + [ + "▁string", + -10.59848690032959 + ], + [ + "▁refer", + -10.598776817321777 + ], + [ + "▁armor", + -10.59910774230957 + ], + [ + "▁pretty", + -10.599249839782715 + ], + [ + "▁mobile", + -10.599275588989258 + ], + [ + "▁expand", + -10.599616050720215 + ], + [ + "▁nomination", + -10.599847793579102 + ], + [ + "▁bay", + -10.600129127502441 + ], + [ + "▁2.", + -10.600361824035645 + ], + [ + "▁proportion", + -10.600906372070312 + ], + [ + "▁arrest", + -10.601048469543457 + ], + [ + "▁Play", + -10.601175308227539 + ], + [ + "▁poetry", + -10.601289749145508 + ], + [ + "▁exception", + -10.60135269165039 + ], + [ + "▁Ste", + -10.601412773132324 + ], + [ + "ties", + -10.601836204528809 + ], + [ + "qua", + -10.602376937866211 + ], + [ + "▁Kevin", + -10.602381706237793 + ], + [ + "▁surviving", + -10.603816032409668 + ], + [ + "▁restored", + -10.603896141052246 + ], + [ + "RA", + -10.604278564453125 + ], + [ + "▁Sweden", + -10.60428524017334 + ], + [ + "ency", + -10.604423522949219 + ], + [ + "gin", + -10.6044921875 + ], + [ + "▁Norwegian", + -10.604520797729492 + ], + [ + "AN", + -10.604557037353516 + ], + [ + "▁Berlin", + -10.60461711883545 + ], + [ + "▁biological", + -10.604963302612305 + ], + [ + "▁champion", + -10.605101585388184 + ], + [ + "▁Mill", + -10.605231285095215 + ], + [ + "sel", + -10.605246543884277 + ], + [ + "▁representing", + -10.60548210144043 + ], + [ + "▁Mulder", + -10.605851173400879 + ], + [ + "▁violent", + -10.606048583984375 + ], + [ + "▁samples", + -10.606208801269531 + ], + [ + "▁hunting", + -10.606389045715332 + ], + [ + "▁Bruce", + -10.606677055358887 + ], + [ + "▁Channel", + -10.606742858886719 + ], + [ + "▁difficulties", + -10.607011795043945 + ], + [ + "▁Au", + -10.607186317443848 + ], + [ + "95", + -10.60722541809082 + ], + [ + "▁chair", + -10.607414245605469 + ], + [ + "▁62", + -10.60836410522461 + ], + [ + "▁stem", + -10.608410835266113 + ], + [ + "▁hosted", + -10.608494758605957 + ], + [ + "▁Guy", + -10.608685493469238 + ], + [ + "dom", + -10.60886287689209 + ], + [ + "▁convoy", + -10.608993530273438 + ], + [ + "▁plate", + -10.609079360961914 + ], + [ + "▁frame", + -10.609304428100586 + ], + [ + "▁readers", + -10.609326362609863 + ], + [ + "oma", + -10.609355926513672 + ], + [ + "▁ban", + -10.609925270080566 + ], + [ + "▁valuable", + -10.609938621520996 + ], + [ + "▁goods", + -10.609946250915527 + ], + [ + "▁Nor", + -10.61000919342041 + ], + [ + "▁historians", + -10.610025405883789 + ], + [ + "▁stayed", + -10.610034942626953 + ], + [ + "▁Colorado", + -10.610300064086914 + ], + [ + "▁permission", + -10.610422134399414 + ], + [ + "▁waves", + -10.610438346862793 + ], + [ + "▁agents", + -10.610453605651855 + ], + [ + "▁Sand", + -10.610638618469238 + ], + [ + "▁believes", + -10.611015319824219 + ], + [ + "▁Im", + -10.611109733581543 + ], + [ + "▁Bad", + -10.611303329467773 + ], + [ + "▁passengers", + -10.6114501953125 + ], + [ + "▁missions", + -10.61153793334961 + ], + [ + "▁cutting", + -10.611595153808594 + ], + [ + "▁Bible", + -10.612092971801758 + ], + [ + "▁diabetes", + -10.612421035766602 + ], + [ + "▁conventional", + -10.613017082214355 + ], + [ + "▁pointed", + -10.613221168518066 + ], + [ + "ii", + -10.61334228515625 + ], + [ + "▁wealth", + -10.614006996154785 + ], + [ + "▁scholars", + -10.614570617675781 + ], + [ + "mis", + -10.614653587341309 + ], + [ + "▁adaptation", + -10.614705085754395 + ], + [ + "▁Fall", + -10.614718437194824 + ], + [ + "▁preferred", + -10.61495590209961 + ], + [ + "77", + -10.615139961242676 + ], + [ + "▁Bernard", + -10.615275382995605 + ], + [ + "ob", + -10.615309715270996 + ], + [ + "▁revolution", + -10.615340232849121 + ], + [ + "▁UTC", + -10.61551570892334 + ], + [ + "▁mine", + -10.615701675415039 + ], + [ + "▁deliver", + -10.6159029006958 + ], + [ + "▁wire", + -10.616264343261719 + ], + [ + "▁Dean", + -10.616312980651855 + ], + [ + "▁proteins", + -10.616413116455078 + ], + [ + "▁artificial", + -10.616811752319336 + ], + [ + "▁Ryan", + -10.616893768310547 + ], + [ + "▁sin", + -10.616982460021973 + ], + [ + "▁collect", + -10.61732006072998 + ], + [ + "▁seeking", + -10.617363929748535 + ], + [ + "▁99", + -10.617881774902344 + ], + [ + "mel", + -10.617916107177734 + ], + [ + "▁returns", + -10.618035316467285 + ], + [ + "▁residence", + -10.618247985839844 + ], + [ + "▁Robinson", + -10.618693351745605 + ], + [ + "▁references", + -10.618746757507324 + ], + [ + "sitye", + -10.61876106262207 + ], + [ + "▁Cur", + -10.618976593017578 + ], + [ + "It", + -10.619000434875488 + ], + [ + "▁surprise", + -10.619025230407715 + ], + [ + "▁explanation", + -10.619072914123535 + ], + [ + "▁properly", + -10.619107246398926 + ], + [ + ".5", + -10.619166374206543 + ], + [ + "▁Ci", + -10.619168281555176 + ], + [ + "dal", + -10.619176864624023 + ], + [ + "▁Rights", + -10.619274139404297 + ], + [ + "▁regime", + -10.619283676147461 + ], + [ + "▁chronic", + -10.619443893432617 + ], + [ + "▁principle", + -10.619708061218262 + ], + [ + "tri", + -10.619980812072754 + ], + [ + "win", + -10.620014190673828 + ], + [ + "▁pitch", + -10.620261192321777 + ], + [ + "39", + -10.620569229125977 + ], + [ + "ons", + -10.620797157287598 + ], + [ + "▁dollars", + -10.621566772460938 + ], + [ + "▁Comp", + -10.621715545654297 + ], + [ + "▁vice", + -10.621909141540527 + ], + [ + "ES", + -10.622135162353516 + ], + [ + "▁Chèf", + -10.62217903137207 + ], + [ + "▁Ball", + -10.622543334960938 + ], + [ + "▁catch", + -10.62255573272705 + ], + [ + "lam", + -10.62260627746582 + ], + [ + "▁Cooper", + -10.622743606567383 + ], + [ + "▁anniversary", + -10.622775077819824 + ], + [ + "▁crops", + -10.622817039489746 + ], + [ + "▁Winter", + -10.623040199279785 + ], + [ + "▁actress", + -10.623109817504883 + ], + [ + "▁Mississippi", + -10.623133659362793 + ], + [ + "▁accurate", + -10.623137474060059 + ], + [ + "▁Stadium", + -10.623373031616211 + ], + [ + "▁Bull", + -10.62338924407959 + ], + [ + "▁Retrieved", + -10.623612403869629 + ], + [ + "▁Lisa", + -10.623732566833496 + ], + [ + "▁Apple", + -10.62397575378418 + ], + [ + "▁pan", + -10.62510871887207 + ], + [ + "▁profile", + -10.625311851501465 + ], + [ + "AL", + -10.62556266784668 + ], + [ + "▁expect", + -10.625570297241211 + ], + [ + "▁hop", + -10.625798225402832 + ], + [ + "▁dream", + -10.625946044921875 + ], + [ + "▁farmers", + -10.626603126525879 + ], + [ + "▁connect", + -10.627069473266602 + ], + [ + "▁preparation", + -10.627103805541992 + ], + [ + "nar", + -10.627206802368164 + ], + [ + "▁apparently", + -10.627284049987793 + ], + [ + "▁select", + -10.62744426727295 + ], + [ + "▁watching", + -10.627608299255371 + ], + [ + "▁painted", + -10.627854347229004 + ], + [ + "lar", + -10.628096580505371 + ], + [ + "▁Finally", + -10.628165245056152 + ], + [ + "▁1913", + -10.628368377685547 + ], + [ + "▁technologies", + -10.628653526306152 + ], + [ + "ire", + -10.629124641418457 + ], + [ + "▁decide", + -10.629167556762695 + ], + [ + "▁prices", + -10.629385948181152 + ], + [ + "▁objective", + -10.629437446594238 + ], + [ + "une", + -10.629515647888184 + ], + [ + "▁chorus", + -10.62963581085205 + ], + [ + "▁Toronto", + -10.629977226257324 + ], + [ + "▁Every", + -10.630353927612305 + ], + [ + "05", + -10.630719184875488 + ], + [ + "▁collapse", + -10.631033897399902 + ], + [ + "▁partnership", + -10.6311674118042 + ], + [ + "▁fe", + -10.63128662109375 + ], + [ + "▁nest", + -10.6312894821167 + ], + [ + "▁presentation", + -10.631368637084961 + ], + [ + "▁representation", + -10.631376266479492 + ], + [ + "▁Greece", + -10.631424903869629 + ], + [ + "kh", + -10.631505012512207 + ], + [ + "▁Cat", + -10.632081985473633 + ], + [ + "▁Nelson", + -10.632269859313965 + ], + [ + "▁efficient", + -10.632360458374023 + ], + [ + "▁knee", + -10.632472038269043 + ], + [ + "”.", + -10.632514953613281 + ], + [ + "▁110", + -10.632845878601074 + ], + [ + "▁Stanley", + -10.632854461669922 + ], + [ + "▁Ki", + -10.632974624633789 + ], + [ + "▁poet", + -10.633013725280762 + ], + [ + "▁talking", + -10.63325309753418 + ], + [ + "▁drink", + -10.633456230163574 + ], + [ + "▁NASA", + -10.633489608764648 + ], + [ + "▁Persian", + -10.633564949035645 + ], + [ + "▁demonstrated", + -10.633910179138184 + ], + [ + "ore", + -10.634048461914062 + ], + [ + "bro", + -10.634069442749023 + ], + [ + "▁retain", + -10.634172439575195 + ], + [ + "▁Camp", + -10.634357452392578 + ], + [ + "ute", + -10.634723663330078 + ], + [ + "▁dialogue", + -10.634937286376953 + ], + [ + "▁Wind", + -10.635041236877441 + ], + [ + "lum", + -10.635274887084961 + ], + [ + "▁aspect", + -10.635722160339355 + ], + [ + "▁crop", + -10.63670539855957 + ], + [ + "▁PA", + -10.637571334838867 + ], + [ + "lock", + -10.63800048828125 + ], + [ + "▁Kansas", + -10.638330459594727 + ], + [ + "▁wooden", + -10.638540267944336 + ], + [ + "jan", + -10.63904094696045 + ], + [ + "▁Qu", + -10.639477729797363 + ], + [ + "▁ho", + -10.639920234680176 + ], + [ + "▁61", + -10.640246391296387 + ], + [ + "▁tries", + -10.640721321105957 + ], + [ + "▁animation", + -10.640763282775879 + ], + [ + "▁commanded", + -10.641013145446777 + ], + [ + "▁Brazil", + -10.641057968139648 + ], + [ + "▁fundamental", + -10.64126968383789 + ], + [ + "mal", + -10.641424179077148 + ], + [ + "▁romantic", + -10.64148998260498 + ], + [ + "▁vessel", + -10.641571044921875 + ], + [ + "▁personality", + -10.641786575317383 + ], + [ + "▁Je", + -10.641919136047363 + ], + [ + "▁Bel", + -10.641928672790527 + ], + [ + "▁exact", + -10.64194393157959 + ], + [ + "▁Military", + -10.64234447479248 + ], + [ + "▁neuro", + -10.642351150512695 + ], + [ + "▁à", + -10.642369270324707 + ], + [ + "wing", + -10.6424560546875 + ], + [ + "cu", + -10.642522811889648 + ], + [ + "▁Morris", + -10.642595291137695 + ], + [ + "▁radical", + -10.642667770385742 + ], + [ + "▁fishing", + -10.643016815185547 + ], + [ + "▁Ser", + -10.643200874328613 + ], + [ + "▁Cleveland", + -10.64332103729248 + ], + [ + "▁IGN", + -10.64332389831543 + ], + [ + "▁Lane", + -10.643731117248535 + ], + [ + "▁exhibition", + -10.643770217895508 + ], + [ + "▁Call", + -10.643866539001465 + ], + [ + "▁59", + -10.64399528503418 + ], + [ + "▁hoped", + -10.644196510314941 + ], + [ + "▁earthquake", + -10.644664764404297 + ], + [ + "▁roll", + -10.644747734069824 + ], + [ + "▁convinced", + -10.644761085510254 + ], + [ + "▁regiment", + -10.645047187805176 + ], + [ + "▁beach", + -10.645167350769043 + ], + [ + "▁rooms", + -10.645183563232422 + ], + [ + "▁ni", + -10.645284652709961 + ], + [ + "▁superior", + -10.64528751373291 + ], + [ + "▁sweet", + -10.645298957824707 + ], + [ + "▁rising", + -10.6453857421875 + ], + [ + "lia", + -10.645519256591797 + ], + [ + "▁profit", + -10.64565658569336 + ], + [ + "▁recommend", + -10.645663261413574 + ], + [ + "▁covering", + -10.645695686340332 + ], + [ + "tr", + -10.645700454711914 + ], + [ + "▁Students", + -10.645794868469238 + ], + [ + "▁encourage", + -10.646151542663574 + ], + [ + "▁existed", + -10.646184921264648 + ], + [ + "▁downtown", + -10.646488189697266 + ], + [ + "get", + -10.64650821685791 + ], + [ + "▁Cho", + -10.646895408630371 + ], + [ + "▁potentially", + -10.646994590759277 + ], + [ + "▁representative", + -10.647204399108887 + ], + [ + "▁Premier", + -10.647253036499023 + ], + [ + "ati", + -10.64746379852295 + ], + [ + "▁lowest", + -10.64783763885498 + ], + [ + "▁sailed", + -10.64797306060791 + ], + [ + "▁unless", + -10.648033142089844 + ], + [ + "▁asking", + -10.648054122924805 + ], + [ + "ids", + -10.648150444030762 + ], + [ + "see", + -10.648173332214355 + ], + [ + "bor", + -10.649081230163574 + ], + [ + "▁Vol", + -10.649110794067383 + ], + [ + "▁satellite", + -10.64965534210205 + ], + [ + "▁ch", + -10.649702072143555 + ], + [ + "▁boys", + -10.649937629699707 + ], + [ + "▁delayed", + -10.650487899780273 + ], + [ + "▁approaches", + -10.650704383850098 + ], + [ + "▁awareness", + -10.650928497314453 + ], + [ + "▁1912", + -10.651575088500977 + ], + [ + "▁Pope", + -10.65192699432373 + ], + [ + "▁shift", + -10.651972770690918 + ], + [ + "▁Biyografi", + -10.65202808380127 + ], + [ + "▁railroad", + -10.6522798538208 + ], + [ + "▁agree", + -10.65267276763916 + ], + [ + "ges", + -10.652732849121094 + ], + [ + "▁pen", + -10.652953147888184 + ], + [ + "48", + -10.652992248535156 + ], + [ + "su", + -10.653059005737305 + ], + [ + "▁PC", + -10.653084754943848 + ], + [ + "▁generate", + -10.653175354003906 + ], + [ + "▁festival", + -10.653428077697754 + ], + [ + "▁grave", + -10.653584480285645 + ], + [ + "▁strategies", + -10.653630256652832 + ], + [ + "▁Bon", + -10.653909683227539 + ], + [ + "▁flood", + -10.654086112976074 + ], + [ + "▁Mag", + -10.65440559387207 + ], + [ + "▁ranking", + -10.654454231262207 + ], + [ + "gy", + -10.654701232910156 + ], + [ + "▁agency", + -10.654873847961426 + ], + [ + "▁supposed", + -10.654958724975586 + ], + [ + "▁<", + -10.6549711227417 + ], + [ + "vel", + -10.654989242553711 + ], + [ + "ora", + -10.655149459838867 + ], + [ + "▁Ham", + -10.65553092956543 + ], + [ + "cut", + -10.655572891235352 + ], + [ + "pan", + -10.6559419631958 + ], + [ + "▁Blood", + -10.65598201751709 + ], + [ + "▁occupation", + -10.656129837036133 + ], + [ + "84", + -10.656163215637207 + ], + [ + "▁reveals", + -10.656673431396484 + ], + [ + "▁pure", + -10.656675338745117 + ], + [ + "▁weekend", + -10.656739234924316 + ], + [ + "▁requested", + -10.656756401062012 + ], + [ + "▁survival", + -10.657215118408203 + ], + [ + "▁Ron", + -10.657538414001465 + ], + [ + "▁Andy", + -10.658236503601074 + ], + [ + "▁prime", + -10.658239364624023 + ], + [ + "▁fictional", + -10.658358573913574 + ], + [ + "▁Qui", + -10.658408164978027 + ], + [ + "▁2020", + -10.659139633178711 + ], + [ + "▁Furthermore", + -10.659235954284668 + ], + [ + "▁arrangement", + -10.659418106079102 + ], + [ + "▁Nevertheless", + -10.65956974029541 + ], + [ + "▁philosophy", + -10.65956974029541 + ], + [ + "▁graduate", + -10.659581184387207 + ], + [ + "ona", + -10.660449981689453 + ], + [ + "▁ke", + -10.660961151123047 + ], + [ + "▁particles", + -10.661249160766602 + ], + [ + "▁bones", + -10.66128921508789 + ], + [ + "ö", + -10.66131591796875 + ], + [ + "▁verse", + -10.661460876464844 + ], + [ + "▁dominated", + -10.66147518157959 + ], + [ + "32", + -10.661952018737793 + ], + [ + "▁Michel", + -10.661983489990234 + ], + [ + "▁José", + -10.662096977233887 + ], + [ + "Re", + -10.662266731262207 + ], + [ + "▁panel", + -10.662266731262207 + ], + [ + "▁throne", + -10.662553787231445 + ], + [ + "▁favour", + -10.662582397460938 + ], + [ + "eo", + -10.663090705871582 + ], + [ + "cer", + -10.663681983947754 + ], + [ + "▁Lang", + -10.664189338684082 + ], + [ + "▁beam", + -10.664379119873047 + ], + [ + "▁aged", + -10.664822578430176 + ], + [ + "▁animated", + -10.66491413116455 + ], + [ + "▁windows", + -10.665043830871582 + ], + [ + "▁express", + -10.66518783569336 + ], + [ + "▁minimal", + -10.665325164794922 + ], + [ + "▁Ak", + -10.665434837341309 + ], + [ + "▁wait", + -10.66545581817627 + ], + [ + "▁grant", + -10.665776252746582 + ], + [ + "▁63", + -10.665891647338867 + ], + [ + "▁HIV", + -10.66601848602295 + ], + [ + "▁input", + -10.666193008422852 + ], + [ + "▁danger", + -10.666338920593262 + ], + [ + "08", + -10.66652774810791 + ], + [ + "34", + -10.666990280151367 + ], + [ + "▁Wright", + -10.667095184326172 + ], + [ + "▁crown", + -10.667181968688965 + ], + [ + "hy", + -10.667359352111816 + ], + [ + "▁Work", + -10.667637825012207 + ], + [ + "▁Ze", + -10.667777061462402 + ], + [ + "▁compete", + -10.668039321899414 + ], + [ + "▁Corporation", + -10.668545722961426 + ], + [ + "56", + -10.66858959197998 + ], + [ + "▁bow", + -10.66862964630127 + ], + [ + "ien", + -10.669053077697754 + ], + [ + "èl", + -10.669343948364258 + ], + [ + "▁Weekly", + -10.669758796691895 + ], + [ + "▁Tower", + -10.670025825500488 + ], + [ + "ved", + -10.670284271240234 + ], + [ + "bed", + -10.670326232910156 + ], + [ + "▁monitor", + -10.67040729522705 + ], + [ + "81", + -10.670523643493652 + ], + [ + "nia", + -10.670663833618164 + ], + [ + "▁Late", + -10.670980453491211 + ], + [ + "▁fossil", + -10.671002388000488 + ], + [ + "arian", + -10.671088218688965 + ], + [ + "▁covers", + -10.671183586120605 + ], + [ + "▁fewer", + -10.672313690185547 + ], + [ + "▁understood", + -10.672687530517578 + ], + [ + "▁Welsh", + -10.673064231872559 + ], + [ + "▁influential", + -10.673064231872559 + ], + [ + "▁emperor", + -10.673190116882324 + ], + [ + "▁Energy", + -10.67331600189209 + ], + [ + "ches", + -10.674018859863281 + ], + [ + "wan", + -10.674026489257812 + ], + [ + "mus", + -10.67403793334961 + ], + [ + "▁attempting", + -10.674041748046875 + ], + [ + "▁Sim", + -10.674135208129883 + ], + [ + "49", + -10.67489242553711 + ], + [ + "▁craft", + -10.674968719482422 + ], + [ + "▁Sarah", + -10.675044059753418 + ], + [ + "▁1911", + -10.67510986328125 + ], + [ + "▁usual", + -10.675127029418945 + ], + [ + "▁detect", + -10.675766944885254 + ], + [ + "▁tone", + -10.675871849060059 + ], + [ + "▁eleven", + -10.676116943359375 + ], + [ + "tar", + -10.676384925842285 + ], + [ + "tru", + -10.677360534667969 + ], + [ + "▁Hy", + -10.6773681640625 + ], + [ + "▁formula", + -10.677453994750977 + ], + [ + "▁jump", + -10.677574157714844 + ], + [ + "▁Min", + -10.678006172180176 + ], + [ + "▁Much", + -10.678035736083984 + ], + [ + "▁Studies", + -10.678994178771973 + ], + [ + "▁Inc", + -10.679001808166504 + ], + [ + "▁Garden", + -10.679495811462402 + ], + [ + "▁Sar", + -10.679840087890625 + ], + [ + "▁finishing", + -10.67996597290039 + ], + [ + "▁predict", + -10.68065071105957 + ], + [ + "rich", + -10.680776596069336 + ], + [ + "▁penalty", + -10.680787086486816 + ], + [ + "eng", + -10.681008338928223 + ], + [ + "▁procedure", + -10.681069374084473 + ], + [ + "▁Hol", + -10.68139934539795 + ], + [ + "▁colleagues", + -10.681469917297363 + ], + [ + "▁desert", + -10.681611061096191 + ], + [ + "▁deemed", + -10.681662559509277 + ], + [ + "▁residential", + -10.681825637817383 + ], + [ + "ug", + -10.681978225708008 + ], + [ + "uri", + -10.681979179382324 + ], + [ + "▁syndrome", + -10.682036399841309 + ], + [ + "▁feeding", + -10.682470321655273 + ], + [ + "▁wings", + -10.682522773742676 + ], + [ + "▁Run", + -10.682632446289062 + ], + [ + "▁sons", + -10.682632446289062 + ], + [ + "▁walking", + -10.682699203491211 + ], + [ + "▁circle", + -10.683432579040527 + ], + [ + "▁Read", + -10.683485984802246 + ], + [ + "eth", + -10.683510780334473 + ], + [ + "hn", + -10.683534622192383 + ], + [ + "mont", + -10.683587074279785 + ], + [ + "▁×", + -10.683680534362793 + ], + [ + "ae", + -10.683822631835938 + ], + [ + "▁suicide", + -10.684074401855469 + ], + [ + "▁experts", + -10.684213638305664 + ], + [ + "lle", + -10.684223175048828 + ], + [ + "▁Bas", + -10.685102462768555 + ], + [ + "▁Sol", + -10.68533992767334 + ], + [ + "▁margin", + -10.685436248779297 + ], + [ + "▁96", + -10.685484886169434 + ], + [ + "▁tube", + -10.685529708862305 + ], + [ + "ille", + -10.685553550720215 + ], + [ + "89", + -10.68569564819336 + ], + [ + "▁77", + -10.68572998046875 + ], + [ + "▁Scully", + -10.68585205078125 + ], + [ + "▁Fame", + -10.68614673614502 + ], + [ + "▁Ali", + -10.686721801757812 + ], + [ + "bin", + -10.686722755432129 + ], + [ + "78", + -10.686875343322754 + ], + [ + "ew", + -10.687031745910645 + ], + [ + "▁Bristol", + -10.68738079071045 + ], + [ + "▁Miss", + -10.68741512298584 + ], + [ + "ify", + -10.687455177307129 + ], + [ + "▁processing", + -10.687707901000977 + ], + [ + "▁decrease", + -10.687747955322266 + ], + [ + "▁protest", + -10.688705444335938 + ], + [ + "▁claiming", + -10.688838005065918 + ], + [ + "▁god", + -10.6888427734375 + ], + [ + "▁Hard", + -10.688874244689941 + ], + [ + "▁infrastructure", + -10.688913345336914 + ], + [ + "tus", + -10.688977241516113 + ], + [ + "▁consistent", + -10.689179420471191 + ], + [ + "▁NBA", + -10.689845085144043 + ], + [ + "▁ear", + -10.689888954162598 + ], + [ + "▁votes", + -10.689888954162598 + ], + [ + "ston", + -10.689970016479492 + ], + [ + "▁gay", + -10.690152168273926 + ], + [ + "ich", + -10.690214157104492 + ], + [ + "dia", + -10.690592765808105 + ], + [ + "▁trick", + -10.690600395202637 + ], + [ + "▁documentary", + -10.690614700317383 + ], + [ + "▁Mat", + -10.690768241882324 + ], + [ + "▁Dam", + -10.690774917602539 + ], + [ + "▁recovery", + -10.690800666809082 + ], + [ + "▁passenger", + -10.690986633300781 + ], + [ + "▁1934", + -10.691049575805664 + ], + [ + "▁explosion", + -10.691088676452637 + ], + [ + "▁examination", + -10.691227912902832 + ], + [ + "▁Russell", + -10.691730499267578 + ], + [ + "▁Er", + -10.691800117492676 + ], + [ + "▁68", + -10.691895484924316 + ], + [ + "▁Rolling", + -10.691913604736328 + ], + [ + "▁hero", + -10.692239761352539 + ], + [ + "00", + -10.692347526550293 + ], + [ + "▁cavalry", + -10.692498207092285 + ], + [ + "cle", + -10.692511558532715 + ], + [ + "▁elections", + -10.692564010620117 + ], + [ + "del", + -10.693039894104004 + ], + [ + "▁terminus", + -10.693076133728027 + ], + [ + "▁earning", + -10.693329811096191 + ], + [ + "▁Hindu", + -10.6934175491333 + ], + [ + "▁resource", + -10.693467140197754 + ], + [ + "▁executed", + -10.693474769592285 + ], + [ + "79", + -10.693546295166016 + ], + [ + "▁cha", + -10.69373607635498 + ], + [ + "▁elsewhere", + -10.693922996520996 + ], + [ + "▁depicted", + -10.693975448608398 + ], + [ + "▁Jon", + -10.69401741027832 + ], + [ + "▁Chan", + -10.694395065307617 + ], + [ + "▁falls", + -10.694798469543457 + ], + [ + "oo", + -10.695039749145508 + ], + [ + "▁pushed", + -10.695473670959473 + ], + [ + "▁abilities", + -10.696303367614746 + ], + [ + "▁characterized", + -10.696304321289062 + ], + [ + "▁bat", + -10.69650650024414 + ], + [ + "▁longest", + -10.696523666381836 + ], + [ + "play", + -10.69653606414795 + ], + [ + "ement", + -10.696592330932617 + ], + [ + "▁fitted", + -10.696807861328125 + ], + [ + "▁Police", + -10.696938514709473 + ], + [ + "▁skill", + -10.697171211242676 + ], + [ + "▁Story", + -10.697564125061035 + ], + [ + "88", + -10.697668075561523 + ], + [ + "▁concepts", + -10.698128700256348 + ], + [ + "gon", + -10.698360443115234 + ], + [ + "▁Thompson", + -10.698415756225586 + ], + [ + "▁carrier", + -10.69855785369873 + ], + [ + "▁1932", + -10.698637008666992 + ], + [ + "IC", + -10.698922157287598 + ], + [ + "▁pack", + -10.698928833007812 + ], + [ + "rin", + -10.699153900146484 + ], + [ + "ato", + -10.699604034423828 + ], + [ + "▁indicates", + -10.699825286865234 + ], + [ + "▁mechanical", + -10.699897766113281 + ], + [ + "▁Yo", + -10.699979782104492 + ], + [ + "▁delivery", + -10.700321197509766 + ], + [ + "▁garrison", + -10.700482368469238 + ], + [ + "▁aboard", + -10.701011657714844 + ], + [ + "▁Carter", + -10.701054573059082 + ], + [ + "▁Technology", + -10.701517105102539 + ], + [ + "▁custom", + -10.701786041259766 + ], + [ + "▁lock", + -10.701798439025879 + ], + [ + "▁discover", + -10.701973915100098 + ], + [ + "▁Nature", + -10.702171325683594 + ], + [ + "avi", + -10.702330589294434 + ], + [ + "▁agriculture", + -10.702683448791504 + ], + [ + "▁pace", + -10.70270824432373 + ], + [ + "▁friendly", + -10.702816009521484 + ], + [ + "▁divisions", + -10.702878952026367 + ], + [ + "▁density", + -10.703205108642578 + ], + [ + "▁prevented", + -10.703485488891602 + ], + [ + "▁hydrogen", + -10.703499794006348 + ], + [ + "ban", + -10.703593254089355 + ], + [ + "▁engineer", + -10.703965187072754 + ], + [ + "68", + -10.704033851623535 + ], + [ + "▁solutions", + -10.704215049743652 + ], + [ + "▁wants", + -10.704258918762207 + ], + [ + "ace", + -10.704587936401367 + ], + [ + "▁diverse", + -10.704658508300781 + ], + [ + "▁WWE", + -10.704690933227539 + ], + [ + "▁Common", + -10.704937934875488 + ], + [ + "▁Jacques", + -10.70520305633545 + ], + [ + "▁Nesans", + -10.705671310424805 + ], + [ + "▁burn", + -10.7061767578125 + ], + [ + "▁telling", + -10.706268310546875 + ], + [ + "▁inform", + -10.706724166870117 + ], + [ + "▁email", + -10.706803321838379 + ], + [ + "▁mono", + -10.70766544342041 + ], + [ + "▁crucial", + -10.707880020141602 + ], + [ + "+", + -10.707968711853027 + ], + [ + "nie", + -10.708300590515137 + ], + [ + "▁afterwards", + -10.708641052246094 + ], + [ + "▁dress", + -10.708701133728027 + ], + [ + "▁Nazi", + -10.709005355834961 + ], + [ + "▁journalist", + -10.70909595489502 + ], + [ + "▁afternoon", + -10.709185600280762 + ], + [ + "itz", + -10.709484100341797 + ], + [ + "▁67", + -10.71004867553711 + ], + [ + "▁insects", + -10.71005916595459 + ], + [ + "▁protagonist", + -10.71009635925293 + ], + [ + "▁unlike", + -10.71071720123291 + ], + [ + "▁Puerto", + -10.710748672485352 + ], + [ + "▁presidential", + -10.710877418518066 + ], + [ + "▁pictures", + -10.710951805114746 + ], + [ + "sey", + -10.711012840270996 + ], + [ + "▁Anthony", + -10.711140632629395 + ], + [ + "▁Rob", + -10.711241722106934 + ], + [ + "▁seeds", + -10.711654663085938 + ], + [ + "ets", + -10.711910247802734 + ], + [ + "cor", + -10.712090492248535 + ], + [ + "▁deployed", + -10.712257385253906 + ], + [ + "▁indeed", + -10.712541580200195 + ], + [ + "▁basketball", + -10.712980270385742 + ], + [ + "▁intervention", + -10.713062286376953 + ], + [ + "▁Harris", + -10.713480949401855 + ], + [ + "▁surrender", + -10.71366024017334 + ], + [ + "▁landed", + -10.714287757873535 + ], + [ + "▁improvement", + -10.71476936340332 + ], + [ + "▁shots", + -10.714813232421875 + ], + [ + "sp", + -10.714847564697266 + ], + [ + "▁sentence", + -10.71507453918457 + ], + [ + "vent", + -10.715267181396484 + ], + [ + "▁Ministry", + -10.715594291687012 + ], + [ + "▁78", + -10.715600967407227 + ], + [ + "▁Data", + -10.715680122375488 + ], + [ + "▁meets", + -10.715792655944824 + ], + [ + "▁wine", + -10.715866088867188 + ], + [ + "▁rap", + -10.716158866882324 + ], + [ + "64", + -10.71644401550293 + ], + [ + "▁Death", + -10.718018531799316 + ], + [ + "▁marks", + -10.718218803405762 + ], + [ + "▁vo", + -10.718294143676758 + ], + [ + "▁restoration", + -10.718354225158691 + ], + [ + "▁adapt", + -10.71867847442627 + ], + [ + "▁appearing", + -10.71870231628418 + ], + [ + "▁pull", + -10.718901634216309 + ], + [ + "▁1927", + -10.718914031982422 + ], + [ + "▁rivers", + -10.718940734863281 + ], + [ + "57", + -10.719114303588867 + ], + [ + "▁cur", + -10.719147682189941 + ], + [ + "▁Pri", + -10.71921157836914 + ], + [ + "shire", + -10.719263076782227 + ], + [ + "46", + -10.719541549682617 + ], + [ + "▁observations", + -10.719630241394043 + ], + [ + "ender", + -10.71980094909668 + ], + [ + "▁boost", + -10.720152854919434 + ], + [ + "▁aimed", + -10.720425605773926 + ], + [ + "▁crosses", + -10.720752716064453 + ], + [ + "put", + -10.720849990844727 + ], + [ + "▁160", + -10.721183776855469 + ], + [ + "▁secured", + -10.7212553024292 + ], + [ + "▁aim", + -10.721392631530762 + ], + [ + "▁experiments", + -10.721475601196289 + ], + [ + "▁bond", + -10.721479415893555 + ], + [ + "▁holiday", + -10.721518516540527 + ], + [ + "sol", + -10.72153091430664 + ], + [ + "▁Houston", + -10.721658706665039 + ], + [ + "▁targets", + -10.721685409545898 + ], + [ + "▁intellectual", + -10.721787452697754 + ], + [ + "▁Sel", + -10.722363471984863 + ], + [ + "▁manufacturing", + -10.72283935546875 + ], + [ + "ED", + -10.722901344299316 + ], + [ + "▁ray", + -10.723237037658691 + ], + [ + "▁encounter", + -10.723345756530762 + ], + [ + "▁worship", + -10.72344970703125 + ], + [ + "▁relevant", + -10.724185943603516 + ], + [ + "▁graphics", + -10.724188804626465 + ], + [ + "▁Commonwealth", + -10.724427223205566 + ], + [ + "▁approval", + -10.724427223205566 + ], + [ + "▁Mas", + -10.724604606628418 + ], + [ + "▁Beatles", + -10.725140571594238 + ], + [ + "▁Hal", + -10.72515869140625 + ], + [ + "▁churches", + -10.725394248962402 + ], + [ + "▁Silver", + -10.72553825378418 + ], + [ + "▁Where", + -10.725617408752441 + ], + [ + "▁Tur", + -10.72574520111084 + ], + [ + "▁Arsenal", + -10.726283073425293 + ], + [ + "▁Kelly", + -10.726408958435059 + ], + [ + "▁Lar", + -10.726409912109375 + ], + [ + "▁banks", + -10.726641654968262 + ], + [ + "ded", + -10.72685432434082 + ], + [ + "dra", + -10.727007865905762 + ], + [ + "▁Gre", + -10.7273530960083 + ], + [ + "▁partially", + -10.727712631225586 + ], + [ + "eu", + -10.727733612060547 + ], + [ + "▁dismissed", + -10.727768898010254 + ], + [ + "og", + -10.72800350189209 + ], + [ + "▁Den", + -10.728187561035156 + ], + [ + "▁dominant", + -10.728275299072266 + ], + [ + "top", + -10.728362083435059 + ], + [ + "▁weapon", + -10.728372573852539 + ], + [ + "chan", + -10.728744506835938 + ], + [ + "▁Hor", + -10.728879928588867 + ], + [ + "var", + -10.72921371459961 + ], + [ + "▁Mass", + -10.729284286499023 + ], + [ + "▁1921", + -10.72943115234375 + ], + [ + "▁conservative", + -10.729604721069336 + ], + [ + "▁Diego", + -10.729726791381836 + ], + [ + "ington", + -10.730093002319336 + ], + [ + "▁displayed", + -10.730112075805664 + ], + [ + "▁1926", + -10.73055362701416 + ], + [ + "▁dramatic", + -10.730557441711426 + ], + [ + "▁87", + -10.730561256408691 + ], + [ + "▁delay", + -10.73067855834961 + ], + [ + "▁situations", + -10.73077392578125 + ], + [ + "xi", + -10.731037139892578 + ], + [ + "▁remote", + -10.731077194213867 + ], + [ + "▁putting", + -10.731234550476074 + ], + [ + "zer", + -10.731466293334961 + ], + [ + "▁territories", + -10.732271194458008 + ], + [ + "ā", + -10.732540130615234 + ], + [ + "▁interaction", + -10.732666969299316 + ], + [ + "▁submarine", + -10.732684135437012 + ], + [ + "▁Ros", + -10.732781410217285 + ], + [ + ".2", + -10.732873916625977 + ], + [ + "▁Palace", + -10.733290672302246 + ], + [ + "▁74", + -10.733487129211426 + ], + [ + "ean", + -10.733747482299805 + ], + [ + "ei", + -10.733986854553223 + ], + [ + "▁brick", + -10.733990669250488 + ], + [ + "▁coverage", + -10.73538589477539 + ], + [ + "▁extend", + -10.73542308807373 + ], + [ + "▁musicians", + -10.735435485839844 + ], + [ + "▁limits", + -10.735616683959961 + ], + [ + "58", + -10.735626220703125 + ], + [ + "▁partly", + -10.735855102539062 + ], + [ + "▁fur", + -10.735939025878906 + ], + [ + "▁Hi", + -10.735960960388184 + ], + [ + "yen", + -10.736102104187012 + ], + [ + "▁compounds", + -10.736244201660156 + ], + [ + "▁Parker", + -10.736775398254395 + ], + [ + "▁efficiency", + -10.736863136291504 + ], + [ + "▁sc", + -10.73719310760498 + ], + [ + "▁ongoing", + -10.73728084564209 + ], + [ + "▁Cuba", + -10.737488746643066 + ], + [ + "kar", + -10.737593650817871 + ], + [ + "▁firing", + -10.73759937286377 + ], + [ + "▁reyalize", + -10.73829460144043 + ], + [ + "▁liver", + -10.738469123840332 + ], + [ + "▁coins", + -10.738484382629395 + ], + [ + "47", + -10.738494873046875 + ], + [ + "▁tea", + -10.739008903503418 + ], + [ + "▁Writing", + -10.73936939239502 + ], + [ + "▁1929", + -10.739638328552246 + ], + [ + "▁prefer", + -10.739814758300781 + ], + [ + "▁Murray", + -10.740074157714844 + ], + [ + "▁premiere", + -10.740107536315918 + ], + [ + "aw", + -10.740283966064453 + ], + [ + "ites", + -10.740300178527832 + ], + [ + "▁94", + -10.740365028381348 + ], + [ + "▁routine", + -10.740447998046875 + ], + [ + "▁happens", + -10.740546226501465 + ], + [ + "cro", + -10.740562438964844 + ], + [ + "▁Khan", + -10.740811347961426 + ], + [ + "▁radar", + -10.740839004516602 + ], + [ + "▁Along", + -10.740878105163574 + ], + [ + "▁clothing", + -10.741074562072754 + ], + [ + "▁printed", + -10.741096496582031 + ], + [ + "▁loan", + -10.741188049316406 + ], + [ + "ators", + -10.741189002990723 + ], + [ + "▁relation", + -10.741403579711914 + ], + [ + "seri", + -10.74155330657959 + ], + [ + "▁preserved", + -10.742019653320312 + ], + [ + "▁chairman", + -10.742189407348633 + ], + [ + "▁69", + -10.742262840270996 + ], + [ + "▁intention", + -10.742591857910156 + ], + [ + "▁Article", + -10.742624282836914 + ], + [ + "▁prize", + -10.742890357971191 + ], + [ + "▁Mario", + -10.743085861206055 + ], + [ + "▁evolved", + -10.743952751159668 + ], + [ + "▁links", + -10.74414348602295 + ], + [ + "▁lu", + -10.744321823120117 + ], + [ + "▁Die", + -10.74432373046875 + ], + [ + "▁1931", + -10.744333267211914 + ], + [ + "▁regard", + -10.744359970092773 + ], + [ + "▁mining", + -10.744487762451172 + ], + [ + "▁anxiety", + -10.744490623474121 + ], + [ + "▁transmission", + -10.744511604309082 + ], + [ + "▁Ol", + -10.744610786437988 + ], + [ + "▁picked", + -10.744670867919922 + ], + [ + "▁courts", + -10.744797706604004 + ], + [ + "▁stroke", + -10.744871139526367 + ], + [ + "▁Tor", + -10.744873046875 + ], + [ + "▁Sin", + -10.745391845703125 + ], + [ + "▁Sports", + -10.745574951171875 + ], + [ + "63", + -10.745662689208984 + ], + [ + "▁pot", + -10.745821952819824 + ], + [ + "▁tie", + -10.746078491210938 + ], + [ + "▁removal", + -10.746249198913574 + ], + [ + "▁touchdown", + -10.746354103088379 + ], + [ + "59", + -10.746641159057617 + ], + [ + "▁retreat", + -10.74672794342041 + ], + [ + "▁82", + -10.747023582458496 + ], + [ + "▁trend", + -10.747833251953125 + ], + [ + "98", + -10.747835159301758 + ], + [ + "▁blocks", + -10.748126029968262 + ], + [ + "rick", + -10.74825668334961 + ], + [ + "▁retirement", + -10.748332023620605 + ], + [ + "▁Anglo", + -10.748624801635742 + ], + [ + "▁consequences", + -10.748734474182129 + ], + [ + "▁Marshall", + -10.748835563659668 + ], + [ + "▁fighter", + -10.748862266540527 + ], + [ + "69", + -10.74889850616455 + ], + [ + "▁persons", + -10.748982429504395 + ], + [ + "▁Ou", + -10.74946117401123 + ], + [ + "▁instrument", + -10.749728202819824 + ], + [ + "▁attacking", + -10.749760627746582 + ], + [ + "▁wickets", + -10.749822616577148 + ], + [ + "41", + -10.749902725219727 + ], + [ + "stra", + -10.749984741210938 + ], + [ + "▁talent", + -10.750329971313477 + ], + [ + "▁shark", + -10.750880241394043 + ], + [ + "▁formerly", + -10.750981330871582 + ], + [ + "43", + -10.75100326538086 + ], + [ + "▁DC", + -10.751201629638672 + ], + [ + "▁Clinton", + -10.751269340515137 + ], + [ + "▁Swedish", + -10.751269340515137 + ], + [ + "▁tomb", + -10.75174617767334 + ], + [ + "▁Gilbert", + -10.75210952758789 + ], + [ + "▁Greg", + -10.752126693725586 + ], + [ + "▁encountered", + -10.752436637878418 + ], + [ + "▁adjacent", + -10.752493858337402 + ], + [ + "▁diagnosis", + -10.752766609191895 + ], + [ + "▁fort", + -10.753171920776367 + ], + [ + "97", + -10.753352165222168 + ], + [ + "76", + -10.753517150878906 + ], + [ + "▁push", + -10.75393295288086 + ], + [ + "▁charter", + -10.75398063659668 + ], + [ + "▁Frederick", + -10.754182815551758 + ], + [ + "▁Has", + -10.75428295135498 + ], + [ + "▁colonies", + -10.754448890686035 + ], + [ + "▁considering", + -10.754547119140625 + ], + [ + "▁(1", + -10.75471019744873 + ], + [ + "ulation", + -10.754769325256348 + ], + [ + "hand", + -10.754829406738281 + ], + [ + "▁Turkish", + -10.754973411560059 + ], + [ + "▁experimental", + -10.75509262084961 + ], + [ + "▁obvious", + -10.755107879638672 + ], + [ + "▁discipline", + -10.755468368530273 + ], + [ + "▁Commander", + -10.755743980407715 + ], + [ + "▁alien", + -10.755784034729004 + ], + [ + "▁Business", + -10.755924224853516 + ], + [ + "\",", + -10.756585121154785 + ], + [ + "chy", + -10.756730079650879 + ], + [ + "▁vertical", + -10.756752967834473 + ], + [ + "long", + -10.756877899169922 + ], + [ + "▁compound", + -10.75744915008545 + ], + [ + "▁notably", + -10.75748062133789 + ], + [ + "61", + -10.7576322555542 + ], + [ + "▁merely", + -10.75786304473877 + ], + [ + "▁rhythm", + -10.757890701293945 + ], + [ + "71", + -10.757936477661133 + ], + [ + "▁Austria", + -10.75827693939209 + ], + [ + "▁73", + -10.758870124816895 + ], + [ + "▁designation", + -10.758957862854004 + ], + [ + "▁Dec", + -10.758989334106445 + ], + [ + "ili", + -10.759012222290039 + ], + [ + "▁ratings", + -10.759074211120605 + ], + [ + "▁employment", + -10.75931167602539 + ], + [ + "▁pollution", + -10.7593412399292 + ], + [ + "▁commitment", + -10.759344100952148 + ], + [ + "aff", + -10.759382247924805 + ], + [ + "▁paintings", + -10.75947093963623 + ], + [ + "tta", + -10.759483337402344 + ], + [ + "▁styles", + -10.759855270385742 + ], + [ + "▁Croatian", + -10.760135650634766 + ], + [ + "▁slaves", + -10.760245323181152 + ], + [ + "▁noble", + -10.760553359985352 + ], + [ + "▁sing", + -10.760991096496582 + ], + [ + "▁climb", + -10.761221885681152 + ], + [ + "▁genes", + -10.76127815246582 + ], + [ + "▁mini", + -10.761486053466797 + ], + [ + "▁Singles", + -10.761687278747559 + ], + [ + "are", + -10.762457847595215 + ], + [ + "▁tasks", + -10.76254940032959 + ], + [ + "▁noise", + -10.76279067993164 + ], + [ + "uring", + -10.763418197631836 + ], + [ + "oli", + -10.763423919677734 + ], + [ + "▁mature", + -10.763473510742188 + ], + [ + "load", + -10.763571739196777 + ], + [ + "▁Wisconsin", + -10.763724327087402 + ], + [ + "▁ninth", + -10.763729095458984 + ], + [ + "▁Canal", + -10.76384449005127 + ], + [ + "▁Caribbean", + -10.763999938964844 + ], + [ + "▁Low", + -10.764164924621582 + ], + [ + "worth", + -10.76452350616455 + ], + [ + "▁arts", + -10.764618873596191 + ], + [ + "int", + -10.76478385925293 + ], + [ + "▁error", + -10.764820098876953 + ], + [ + "▁racial", + -10.765121459960938 + ], + [ + "ition", + -10.76517391204834 + ], + [ + "▁Spring", + -10.765264511108398 + ], + [ + "▁1,", + -10.76527214050293 + ], + [ + "▁tribes", + -10.76540756225586 + ], + [ + "sur", + -10.765419006347656 + ], + [ + "ration", + -10.765559196472168 + ], + [ + "vy", + -10.765660285949707 + ], + [ + "▁transportation", + -10.765758514404297 + ], + [ + "but", + -10.76583480834961 + ], + [ + "83", + -10.765932083129883 + ], + [ + "▁bra", + -10.766274452209473 + ], + [ + "▁diversity", + -10.766488075256348 + ], + [ + "▁dust", + -10.7666654586792 + ], + [ + "▁pursue", + -10.766666412353516 + ], + [ + "▁traveled", + -10.766850471496582 + ], + [ + "rat", + -10.766876220703125 + ], + [ + "▁underground", + -10.766925811767578 + ], + [ + "▁fled", + -10.768486022949219 + ], + [ + "▁investigate", + -10.768601417541504 + ], + [ + "▁mountains", + -10.768630027770996 + ], + [ + "▁noting", + -10.768635749816895 + ], + [ + "▁cruiser", + -10.768647193908691 + ], + [ + "▁influences", + -10.768685340881348 + ], + [ + "▁siege", + -10.768699645996094 + ], + [ + "▁Lawrence", + -10.769388198852539 + ], + [ + "▁alternate", + -10.76954174041748 + ], + [ + "onic", + -10.769594192504883 + ], + [ + "dic", + -10.769667625427246 + ], + [ + "▁forecast", + -10.769675254821777 + ], + [ + "03", + -10.769912719726562 + ], + [ + "▁Confederate", + -10.770218849182129 + ], + [ + "▁enters", + -10.77035140991211 + ], + [ + "96", + -10.770530700683594 + ], + [ + "burg", + -10.770710945129395 + ], + [ + "stein", + -10.770913124084473 + ], + [ + "log", + -10.770915031433105 + ], + [ + "▁confidence", + -10.770976066589355 + ], + [ + "▁poverty", + -10.771051406860352 + ], + [ + "▁vulnerable", + -10.771745681762695 + ], + [ + "ening", + -10.772464752197266 + ], + [ + "not", + -10.772886276245117 + ], + [ + "rè", + -10.772892951965332 + ], + [ + "▁saved", + -10.773324966430664 + ], + [ + "▁Stra", + -10.773494720458984 + ], + [ + "▁convention", + -10.77349853515625 + ], + [ + "▁programming", + -10.773720741271973 + ], + [ + "▁Christopher", + -10.773893356323242 + ], + [ + "▁pr", + -10.774382591247559 + ], + [ + "▁Have", + -10.77443790435791 + ], + [ + "▁battleships", + -10.774497032165527 + ], + [ + "▁98", + -10.774528503417969 + ], + [ + "▁observation", + -10.774847984313965 + ], + [ + "▁Management", + -10.775501251220703 + ], + [ + "▁ranging", + -10.775510787963867 + ], + [ + "▁ti", + -10.775623321533203 + ], + [ + "▁Tennessee", + -10.775779724121094 + ], + [ + "▁examine", + -10.775808334350586 + ], + [ + "▁mainstream", + -10.775965690612793 + ], + [ + "▁Digital", + -10.776480674743652 + ], + [ + "▁conversion", + -10.776948928833008 + ], + [ + "▁elevation", + -10.777034759521484 + ], + [ + "▁1922", + -10.777438163757324 + ], + [ + "▁convection", + -10.777454376220703 + ], + [ + "▁su", + -10.777657508850098 + ], + [ + "ika", + -10.777694702148438 + ], + [ + "▁fl", + -10.777915954589844 + ], + [ + "tha", + -10.777974128723145 + ], + [ + "▁blog", + -10.778254508972168 + ], + [ + "▁reflected", + -10.778380393981934 + ], + [ + "▁cable", + -10.778421401977539 + ], + [ + "▁Gri", + -10.778635025024414 + ], + [ + "▁Staff", + -10.778915405273438 + ], + [ + "some", + -10.778992652893066 + ], + [ + "▁alive", + -10.779211044311523 + ], + [ + "▁exists", + -10.779253959655762 + ], + [ + "▁Drive", + -10.779505729675293 + ], + [ + "▁Vice", + -10.780123710632324 + ], + [ + "uv", + -10.780466079711914 + ], + [ + "▁demands", + -10.780482292175293 + ], + [ + "▁wedding", + -10.780534744262695 + ], + [ + "▁sick", + -10.78069019317627 + ], + [ + "▁illegal", + -10.780998229980469 + ], + [ + "▁formally", + -10.781023025512695 + ], + [ + "▁Community", + -10.781025886535645 + ], + [ + "osa", + -10.781169891357422 + ], + [ + "▁ownership", + -10.781204223632812 + ], + [ + "ava", + -10.781329154968262 + ], + [ + "04", + -10.78153133392334 + ], + [ + "▁Recording", + -10.781901359558105 + ], + [ + "▁Franklin", + -10.7819242477417 + ], + [ + "▁disorders", + -10.781996726989746 + ], + [ + "▁ro", + -10.782116889953613 + ], + [ + "▁avèk", + -10.782217025756836 + ], + [ + "hill", + -10.782488822937012 + ], + [ + "5%", + -10.782540321350098 + ], + [ + "▁Bor", + -10.78287410736084 + ], + [ + "▁registered", + -10.782917022705078 + ], + [ + "▁mechanism", + -10.783025741577148 + ], + [ + "ock", + -10.783028602600098 + ], + [ + "▁waiting", + -10.783185005187988 + ], + [ + "▁wider", + -10.78370475769043 + ], + [ + "▁Baltimore", + -10.783757209777832 + ], + [ + "ami", + -10.783780097961426 + ], + [ + "cing", + -10.78384780883789 + ], + [ + "tim", + -10.7840576171875 + ], + [ + "rt", + -10.784276008605957 + ], + [ + "▁Benjamin", + -10.784460067749023 + ], + [ + "▁sitting", + -10.784486770629883 + ], + [ + "▁dealing", + -10.785382270812988 + ], + [ + "▁Non", + -10.785479545593262 + ], + [ + "▁papers", + -10.785565376281738 + ], + [ + "▁latest", + -10.785648345947266 + ], + [ + "▁clock", + -10.785677909851074 + ], + [ + "▁leaf", + -10.785895347595215 + ], + [ + "▁continuous", + -10.78594970703125 + ], + [ + "▁specimens", + -10.786044120788574 + ], + [ + "rian", + -10.786409378051758 + ], + [ + "din", + -10.786439895629883 + ], + [ + "▁assume", + -10.786764144897461 + ], + [ + "▁Pass", + -10.786893844604492 + ], + [ + "▁Alfred", + -10.787153244018555 + ], + [ + "▁possession", + -10.787927627563477 + ], + [ + "▁arc", + -10.788471221923828 + ], + [ + "▁79", + -10.788626670837402 + ], + [ + "▁Medicine", + -10.788722038269043 + ], + [ + "▁matters", + -10.788895606994629 + ], + [ + "tur", + -10.78927230834961 + ], + [ + "cast", + -10.789366722106934 + ], + [ + "▁structural", + -10.78939437866211 + ], + [ + "▁offices", + -10.789448738098145 + ], + [ + "▁shear", + -10.789464950561523 + ], + [ + "gal", + -10.789928436279297 + ], + [ + "▁mar", + -10.790409088134766 + ], + [ + "▁Gro", + -10.790782928466797 + ], + [ + "▁Cook", + -10.790833473205566 + ], + [ + "▁Oklahoma", + -10.79123306274414 + ], + [ + "▁Knight", + -10.79135513305664 + ], + [ + "▁Yet", + -10.791461944580078 + ], + [ + "gent", + -10.791467666625977 + ], + [ + "▁unsuccessful", + -10.791716575622559 + ], + [ + "▁Bureau", + -10.791841506958008 + ], + [ + "▁associate", + -10.792021751403809 + ], + [ + "▁Ag", + -10.79213809967041 + ], + [ + "▁Note", + -10.792256355285645 + ], + [ + "kan", + -10.792298316955566 + ], + [ + "▁Gun", + -10.79237174987793 + ], + [ + "bri", + -10.792596817016602 + ], + [ + "▁colors", + -10.792920112609863 + ], + [ + "▁Stewart", + -10.792933464050293 + ], + [ + "▁Miami", + -10.793112754821777 + ], + [ + "▁marketing", + -10.793354034423828 + ], + [ + "▁Guard", + -10.7936429977417 + ], + [ + "▁Arizona", + -10.793784141540527 + ], + [ + "nu", + -10.794028282165527 + ], + [ + "lli", + -10.794211387634277 + ], + [ + "▁sacrifice", + -10.794352531433105 + ], + [ + "▁hole", + -10.794665336608887 + ], + [ + "▁maintaining", + -10.794754028320312 + ], + [ + "▁Jason", + -10.794798851013184 + ], + [ + "▁Next", + -10.794899940490723 + ], + [ + "▁operational", + -10.79500675201416 + ], + [ + "▁reviewer", + -10.795031547546387 + ], + [ + "▁Dor", + -10.795248985290527 + ], + [ + "▁wa", + -10.79549503326416 + ], + [ + "▁Ren", + -10.795509338378906 + ], + [ + "pper", + -10.795510292053223 + ], + [ + "▁sensitive", + -10.795551300048828 + ], + [ + "nk", + -10.795653343200684 + ], + [ + "▁stores", + -10.795907974243164 + ], + [ + "iel", + -10.796333312988281 + ], + [ + "▁submitted", + -10.796563148498535 + ], + [ + "▁estimates", + -10.79673957824707 + ], + [ + "▁88", + -10.797078132629395 + ], + [ + ");", + -10.797240257263184 + ], + [ + "ée", + -10.797311782836914 + ], + [ + "elli", + -10.797718048095703 + ], + [ + "▁1890", + -10.797722816467285 + ], + [ + "▁Peninsula", + -10.798051834106445 + ], + [ + "▁Dragon", + -10.798585891723633 + ], + [ + "poli", + -10.799088478088379 + ], + [ + "▁mate", + -10.799243927001953 + ], + [ + "▁truly", + -10.799484252929688 + ], + [ + "▁bell", + -10.79951286315918 + ], + [ + "iya", + -10.799871444702148 + ], + [ + "AS", + -10.799982070922852 + ], + [ + "▁pet", + -10.800154685974121 + ], + [ + "000", + -10.800484657287598 + ], + [ + "▁Marc", + -10.800600051879883 + ], + [ + "▁Television", + -10.800766944885254 + ], + [ + "▁Evans", + -10.800926208496094 + ], + [ + "▁900", + -10.80097770690918 + ], + [ + "nis", + -10.801018714904785 + ], + [ + "▁tip", + -10.801196098327637 + ], + [ + "▁alliance", + -10.801627159118652 + ], + [ + "▁treaty", + -10.801923751831055 + ], + [ + "▁Lin", + -10.802047729492188 + ], + [ + "▁1928", + -10.80235481262207 + ], + [ + "▁fault", + -10.802844047546387 + ], + [ + "hood", + -10.80307674407959 + ], + [ + "mor", + -10.803262710571289 + ], + [ + "▁Treaty", + -10.803345680236816 + ], + [ + "▁Standard", + -10.803977966308594 + ], + [ + "▁Victor", + -10.804183006286621 + ], + [ + "▁batting", + -10.80419921875 + ], + [ + "▁slave", + -10.804269790649414 + ], + [ + "▁decay", + -10.804349899291992 + ], + [ + "room", + -10.804438591003418 + ], + [ + "▁handed", + -10.805242538452148 + ], + [ + "▁chi", + -10.805575370788574 + ], + [ + "▁hyper", + -10.805578231811523 + ], + [ + "▁Shakespeare", + -10.805649757385254 + ], + [ + "ale", + -10.805672645568848 + ], + [ + "lus", + -10.80586051940918 + ], + [ + "CA", + -10.805862426757812 + ], + [ + "ito", + -10.80598258972168 + ], + [ + "▁tunnel", + -10.80604362487793 + ], + [ + "▁corn", + -10.806097030639648 + ], + [ + "▁lifestyle", + -10.80622673034668 + ], + [ + "▁stronger", + -10.806323051452637 + ], + [ + "▁contributions", + -10.80659008026123 + ], + [ + "bridge", + -10.80662727355957 + ], + [ + "iti", + -10.806674003601074 + ], + [ + "▁enpòtan", + -10.806784629821777 + ], + [ + "▁Detroit", + -10.807215690612793 + ], + [ + "▁distinctive", + -10.807769775390625 + ], + [ + "▁starred", + -10.807953834533691 + ], + [ + "▁ve", + -10.807954788208008 + ], + [ + "▁shop", + -10.808038711547852 + ], + [ + "▁designer", + -10.808050155639648 + ], + [ + "AR", + -10.80819034576416 + ], + [ + "▁Ring", + -10.808340072631836 + ], + [ + "▁Windows", + -10.808369636535645 + ], + [ + "▁Bio", + -10.808614730834961 + ], + [ + "▁negotiations", + -10.80891227722168 + ], + [ + "▁palace", + -10.809099197387695 + ], + [ + "gel", + -10.809540748596191 + ], + [ + "▁defended", + -10.809828758239746 + ], + [ + "▁villages", + -10.809905052185059 + ], + [ + "▁71", + -10.810249328613281 + ], + [ + "▁studying", + -10.810624122619629 + ], + [ + "▁pin", + -10.810812950134277 + ], + [ + "▁81", + -10.811012268066406 + ], + [ + "▁Soon", + -10.811271667480469 + ], + [ + "▁phrase", + -10.81151008605957 + ], + [ + "▁hidden", + -10.811979293823242 + ], + [ + "▁clubs", + -10.812203407287598 + ], + [ + "▁characteristic", + -10.812215805053711 + ], + [ + "▁stored", + -10.812542915344238 + ], + [ + "▁organisms", + -10.812762260437012 + ], + [ + "TA", + -10.813036918640137 + ], + [ + "▁Princess", + -10.8133544921875 + ], + [ + "▁Hell", + -10.813387870788574 + ], + [ + "▁forcing", + -10.814881324768066 + ], + [ + "▁slavery", + -10.815192222595215 + ], + [ + "▁naturally", + -10.815269470214844 + ], + [ + "▁fund", + -10.815335273742676 + ], + [ + "sse", + -10.815374374389648 + ], + [ + "▁sinema", + -10.815470695495605 + ], + [ + "▁coat", + -10.815597534179688 + ], + [ + "▁please", + -10.815645217895508 + ], + [ + "▁loved", + -10.815648078918457 + ], + [ + "▁Sur", + -10.815661430358887 + ], + [ + "▁reader", + -10.8157958984375 + ], + [ + "▁Zo", + -10.815929412841797 + ], + [ + "▁worse", + -10.816049575805664 + ], + [ + "▁Melbourne", + -10.816186904907227 + ], + [ + "▁reveal", + -10.816312789916992 + ], + [ + "▁flew", + -10.816363334655762 + ], + [ + "▁infections", + -10.81654167175293 + ], + [ + "▁1925", + -10.816654205322266 + ], + [ + "▁Hero", + -10.816739082336426 + ], + [ + "▁Roosevelt", + -10.816755294799805 + ], + [ + "▁suggesting", + -10.816762924194336 + ], + [ + "ffer", + -10.816912651062012 + ], + [ + "aki", + -10.816957473754883 + ], + [ + "▁console", + -10.817781448364258 + ], + [ + "▁Simpson", + -10.818153381347656 + ], + [ + "▁Convention", + -10.818373680114746 + ], + [ + "▁execution", + -10.818645477294922 + ], + [ + "▁reaches", + -10.81871509552002 + ], + [ + "▁3.", + -10.818739891052246 + ], + [ + "enberg", + -10.818764686584473 + ], + [ + "▁improving", + -10.818791389465332 + ], + [ + "▁burning", + -10.819127082824707 + ], + [ + "▁laboratory", + -10.819402694702148 + ], + [ + "▁Country", + -10.819783210754395 + ], + [ + "▁perceived", + -10.81981086730957 + ], + [ + "ters", + -10.819940567016602 + ], + [ + "▁withdraw", + -10.820273399353027 + ], + [ + "las", + -10.820291519165039 + ], + [ + "ä", + -10.820345878601074 + ], + [ + "▁93", + -10.820379257202148 + ], + [ + "▁grass", + -10.820634841918945 + ], + [ + "▁amongst", + -10.820638656616211 + ], + [ + "▁vol", + -10.82066822052002 + ], + [ + "sis", + -10.821039199829102 + ], + [ + "▁natirèl", + -10.821122169494629 + ], + [ + "▁Front", + -10.821642875671387 + ], + [ + "-1", + -10.822087287902832 + ], + [ + "▁revenue", + -10.822525024414062 + ], + [ + "▁Seattle", + -10.822898864746094 + ], + [ + "▁rough", + -10.822921752929688 + ], + [ + "▁militia", + -10.823225021362305 + ], + [ + "▁Rat", + -10.823694229125977 + ], + [ + "▁tribute", + -10.823934555053711 + ], + [ + "▁markets", + -10.82427978515625 + ], + [ + "▁mask", + -10.824446678161621 + ], + [ + "▁dam", + -10.824573516845703 + ], + [ + "▁Claude", + -10.82465648651123 + ], + [ + "▁raid", + -10.824708938598633 + ], + [ + "▁Austrian", + -10.825018882751465 + ], + [ + "▁seal", + -10.825145721435547 + ], + [ + "▁Charlie", + -10.82528018951416 + ], + [ + "▁140", + -10.825536727905273 + ], + [ + "▁Ur", + -10.825579643249512 + ], + [ + "▁instrumental", + -10.82574462890625 + ], + [ + "▁Saturday", + -10.825800895690918 + ], + [ + "▁Information", + -10.825850486755371 + ], + [ + "▁legend", + -10.825918197631836 + ], + [ + "point", + -10.826022148132324 + ], + [ + "▁agencies", + -10.826094627380371 + ], + [ + "▁Raw", + -10.826631546020508 + ], + [ + "-3", + -10.826807975769043 + ], + [ + "▁Croatia", + -10.826842308044434 + ], + [ + "▁crack", + -10.826931953430176 + ], + [ + "▁Administration", + -10.826973915100098 + ], + [ + "▁convert", + -10.827103614807129 + ], + [ + "▁copper", + -10.827184677124023 + ], + [ + "▁tag", + -10.827481269836426 + ], + [ + "▁Br", + -10.827836990356445 + ], + [ + "â", + -10.828001022338867 + ], + [ + "▁labour", + -10.828115463256836 + ], + [ + "▁thereafter", + -10.828300476074219 + ], + [ + "93", + -10.828484535217285 + ], + [ + "▁1924", + -10.828489303588867 + ], + [ + "▁Friday", + -10.828913688659668 + ], + [ + "42", + -10.828978538513184 + ], + [ + "▁Guardian", + -10.829368591308594 + ], + [ + "▁opponents", + -10.829991340637207 + ], + [ + "▁occasion", + -10.830039024353027 + ], + [ + "▁Still", + -10.830082893371582 + ], + [ + "▁export", + -10.830121040344238 + ], + [ + "▁junction", + -10.830206871032715 + ], + [ + "▁restricted", + -10.83057975769043 + ], + [ + "▁candidates", + -10.830658912658691 + ], + [ + "▁branches", + -10.830801963806152 + ], + [ + "▁bearing", + -10.83094310760498 + ], + [ + "▁Warner", + -10.831023216247559 + ], + [ + "▁Mil", + -10.831663131713867 + ], + [ + "▁participation", + -10.831680297851562 + ], + [ + "▁Blu", + -10.831876754760742 + ], + [ + "▁alignment", + -10.831901550292969 + ], + [ + "vol", + -10.832160949707031 + ], + [ + "▁Initially", + -10.832257270812988 + ], + [ + "lat", + -10.83227252960205 + ], + [ + "▁1909", + -10.832486152648926 + ], + [ + "aga", + -10.832586288452148 + ], + [ + "▁households", + -10.832612991333008 + ], + [ + "▁administrative", + -10.832714080810547 + ], + [ + "app", + -10.833138465881348 + ], + [ + "▁91", + -10.833558082580566 + ], + [ + "▁Sy", + -10.833802223205566 + ], + [ + "▁eliminated", + -10.833952903747559 + ], + [ + "▁videos", + -10.834181785583496 + ], + [ + "▁bull", + -10.834259033203125 + ], + [ + "▁Web", + -10.83426570892334 + ], + [ + "▁predicted", + -10.834376335144043 + ], + [ + "▁connections", + -10.834467887878418 + ], + [ + "▁imperial", + -10.834485054016113 + ], + [ + "▁ba", + -10.834731101989746 + ], + [ + "▁inhabitants", + -10.83494758605957 + ], + [ + "▁domain", + -10.835021018981934 + ], + [ + "▁lab", + -10.83511734008789 + ], + [ + "▁retail", + -10.835145950317383 + ], + [ + "▁polar", + -10.835197448730469 + ], + [ + "▁survivors", + -10.835219383239746 + ], + [ + "▁basin", + -10.835293769836426 + ], + [ + "▁attitude", + -10.835769653320312 + ], + [ + "▁1908", + -10.835821151733398 + ], + [ + "ines", + -10.83594036102295 + ], + [ + "▁premiered", + -10.836094856262207 + ], + [ + "▁earn", + -10.83617115020752 + ], + [ + "▁liberal", + -10.836414337158203 + ], + [ + "rate", + -10.836675643920898 + ], + [ + "▁conversation", + -10.836846351623535 + ], + [ + "▁reverse", + -10.836869239807129 + ], + [ + "▁joining", + -10.836947441101074 + ], + [ + "▁Section", + -10.837136268615723 + ], + [ + "▁oral", + -10.837325096130371 + ], + [ + "▁Mun", + -10.837424278259277 + ], + [ + "▁NFL", + -10.837686538696289 + ], + [ + "▁nose", + -10.837965965270996 + ], + [ + "▁impressed", + -10.837967872619629 + ], + [ + "▁junior", + -10.83803939819336 + ], + [ + "▁skull", + -10.838188171386719 + ], + [ + "▁communicate", + -10.838335990905762 + ], + [ + "▁artistic", + -10.838445663452148 + ], + [ + "▁Dance", + -10.839140892028809 + ], + [ + "▁pregnancy", + -10.839226722717285 + ], + [ + "▁poorly", + -10.839454650878906 + ], + [ + "▁willing", + -10.839791297912598 + ], + [ + "▁seriously", + -10.83979320526123 + ], + [ + "cell", + -10.83997917175293 + ], + [ + "02", + -10.840003967285156 + ], + [ + "▁empire", + -10.840267181396484 + ], + [ + "▁Hong", + -10.840276718139648 + ], + [ + "ON", + -10.840662002563477 + ], + [ + "▁substance", + -10.840773582458496 + ], + [ + "CC", + -10.840803146362305 + ], + [ + "ave", + -10.840839385986328 + ], + [ + "▁contribution", + -10.840914726257324 + ], + [ + "▁97", + -10.841540336608887 + ], + [ + "▁demo", + -10.84186840057373 + ], + [ + "▁dispute", + -10.84187126159668 + ], + [ + "▁Mother", + -10.842000007629395 + ], + [ + "▁arrive", + -10.842184066772461 + ], + [ + "▁paint", + -10.842302322387695 + ], + [ + "▁fairly", + -10.842392921447754 + ], + [ + "▁Pakistan", + -10.842622756958008 + ], + [ + "▁Mur", + -10.84272575378418 + ], + [ + "06", + -10.842812538146973 + ], + [ + "▁situated", + -10.84311294555664 + ], + [ + "▁op", + -10.843146324157715 + ], + [ + "▁Small", + -10.843210220336914 + ], + [ + "cus", + -10.843249320983887 + ], + [ + "ode", + -10.843388557434082 + ], + [ + "▁resigned", + -10.84346866607666 + ], + [ + "▁hull", + -10.843546867370605 + ], + [ + "▁reportedly", + -10.843681335449219 + ], + [ + "osaurus", + -10.844243049621582 + ], + [ + "▁asks", + -10.844863891601562 + ], + [ + "▁NBC", + -10.845361709594727 + ], + [ + "▁tight", + -10.84579849243164 + ], + [ + "eri", + -10.845991134643555 + ], + [ + "▁Unit", + -10.846315383911133 + ], + [ + "▁CR", + -10.846330642700195 + ], + [ + "▁Category", + -10.846531867980957 + ], + [ + "▁Margaret", + -10.846531867980957 + ], + [ + "▁jet", + -10.846611022949219 + ], + [ + "▁Dead", + -10.846733093261719 + ], + [ + "72", + -10.846921920776367 + ], + [ + "▁moments", + -10.847362518310547 + ], + [ + "gre", + -10.847460746765137 + ], + [ + "▁races", + -10.84775447845459 + ], + [ + "▁gr", + -10.847789764404297 + ], + [ + "▁drivers", + -10.8480224609375 + ], + [ + "▁Crown", + -10.84832763671875 + ], + [ + "▁exhibit", + -10.848382949829102 + ], + [ + "▁powered", + -10.84852123260498 + ], + [ + "rant", + -10.848575592041016 + ], + [ + "▁mill", + -10.848711013793945 + ], + [ + "▁topics", + -10.848852157592773 + ], + [ + "spir", + -10.848929405212402 + ], + [ + "▁Ven", + -10.849348068237305 + ], + [ + "▁raising", + -10.849717140197754 + ], + [ + "▁comp", + -10.849788665771484 + ], + [ + "▁grey", + -10.849971771240234 + ], + [ + "▁konte", + -10.850170135498047 + ], + [ + "pu", + -10.850582122802734 + ], + [ + "▁mild", + -10.850643157958984 + ], + [ + "▁footage", + -10.850838661193848 + ], + [ + "▁Belgium", + -10.851030349731445 + ], + [ + "▁duration", + -10.851298332214355 + ], + [ + "▁behalf", + -10.85133171081543 + ], + [ + "53", + -10.851354598999023 + ], + [ + "▁reactions", + -10.851378440856934 + ], + [ + "▁Pra", + -10.851737022399902 + ], + [ + "▁Child", + -10.85189151763916 + ], + [ + "▁dynasty", + -10.851932525634766 + ], + [ + "gger", + -10.851998329162598 + ], + [ + "▁MP", + -10.852168083190918 + ], + [ + "▁Security", + -10.852383613586426 + ], + [ + "▁affairs", + -10.852561950683594 + ], + [ + "▁Edge", + -10.852861404418945 + ], + [ + "▁organisation", + -10.853415489196777 + ], + [ + "▁pump", + -10.853534698486328 + ], + [ + "RI", + -10.853676795959473 + ], + [ + "▁vitamin", + -10.854214668273926 + ], + [ + "▁competitive", + -10.854342460632324 + ], + [ + "▁Fred", + -10.854424476623535 + ], + [ + "▁impression", + -10.854461669921875 + ], + [ + "▁apartment", + -10.854528427124023 + ], + [ + "▁Luis", + -10.854743003845215 + ], + [ + "▁1923", + -10.854988098144531 + ], + [ + "▁categories", + -10.855096817016602 + ], + [ + "▁Father", + -10.855537414550781 + ], + [ + "ante", + -10.856254577636719 + ], + [ + "▁seats", + -10.856346130371094 + ], + [ + "▁mood", + -10.856612205505371 + ], + [ + "ira", + -10.857039451599121 + ], + [ + "▁Batman", + -10.857160568237305 + ], + [ + "▁Ice", + -10.857208251953125 + ], + [ + "▁Philippines", + -10.85747241973877 + ], + [ + "▁Seven", + -10.857755661010742 + ], + [ + "▁psychological", + -10.857828140258789 + ], + [ + "▁pregnant", + -10.8579683303833 + ], + [ + "▁ruling", + -10.858122825622559 + ], + [ + "▁Cam", + -10.858749389648438 + ], + [ + "▁planets", + -10.858827590942383 + ], + [ + "▁publicly", + -10.859062194824219 + ], + [ + "▁realized", + -10.859204292297363 + ], + [ + "▁statue", + -10.859432220458984 + ], + [ + "▁boundary", + -10.859827995300293 + ], + [ + "▁Dave", + -10.85997200012207 + ], + [ + "col", + -10.860382080078125 + ], + [ + "▁constitution", + -10.860400199890137 + ], + [ + "▁clip", + -10.860488891601562 + ], + [ + "▁molecules", + -10.860658645629883 + ], + [ + "hen", + -10.861108779907227 + ], + [ + "▁physics", + -10.861172676086426 + ], + [ + "▁filter", + -10.861204147338867 + ], + [ + "▁click", + -10.861261367797852 + ], + [ + "▁Angle", + -10.861350059509277 + ], + [ + "ple", + -10.861352920532227 + ], + [ + "▁84", + -10.861536979675293 + ], + [ + "▁Bus", + -10.861571311950684 + ], + [ + "▁Fish", + -10.861660957336426 + ], + [ + "▁customers", + -10.861812591552734 + ], + [ + "▁gear", + -10.861837387084961 + ], + [ + "▁variable", + -10.862040519714355 + ], + [ + "▁reward", + -10.86232852935791 + ], + [ + "▁Spirit", + -10.862344741821289 + ], + [ + "▁Kon", + -10.862433433532715 + ], + [ + "FC", + -10.862496376037598 + ], + [ + "▁aggressive", + -10.862508773803711 + ], + [ + "▁mirror", + -10.8626708984375 + ], + [ + "▁wet", + -10.86302661895752 + ], + [ + "▁electro", + -10.86330509185791 + ], + [ + "▁celebrated", + -10.863434791564941 + ], + [ + "▁prompted", + -10.863451957702637 + ], + [ + "▁striking", + -10.863736152648926 + ], + [ + "▁simultaneously", + -10.863861083984375 + ], + [ + "▁Para", + -10.863869667053223 + ], + [ + "▁entertainment", + -10.864115715026855 + ], + [ + "▁Had", + -10.864800453186035 + ], + [ + "▁argues", + -10.864933013916016 + ], + [ + "▁regulations", + -10.865031242370605 + ], + [ + "▁beauty", + -10.8654146194458 + ], + [ + "▁comprehensive", + -10.865564346313477 + ], + [ + "▁Global", + -10.86557388305664 + ], + [ + "▁Trust", + -10.866084098815918 + ], + [ + "lie", + -10.866096496582031 + ], + [ + "▁Wild", + -10.866307258605957 + ], + [ + "▁preserve", + -10.866378784179688 + ], + [ + "▁89", + -10.866473197937012 + ], + [ + "▁triple", + -10.866581916809082 + ], + [ + "▁solve", + -10.866640090942383 + ], + [ + "73", + -10.867364883422852 + ], + [ + "▁Auto", + -10.867413520812988 + ], + [ + "lip", + -10.867504119873047 + ], + [ + "▁occasions", + -10.867762565612793 + ], + [ + "▁tu", + -10.867857933044434 + ], + [ + "▁lessons", + -10.868051528930664 + ], + [ + "▁Walker", + -10.868522644042969 + ], + [ + "nell", + -10.868602752685547 + ], + [ + "▁restaurant", + -10.86860466003418 + ], + [ + "▁egg", + -10.868700981140137 + ], + [ + "▁shut", + -10.86879825592041 + ], + [ + "▁vaccine", + -10.869401931762695 + ], + [ + "phy", + -10.869564056396484 + ], + [ + "▁vs", + -10.869568824768066 + ], + [ + "ila", + -10.869669914245605 + ], + [ + "▁restore", + -10.86988353729248 + ], + [ + "▁monitoring", + -10.870271682739258 + ], + [ + "▁Clo", + -10.870285034179688 + ], + [ + "non", + -10.87053108215332 + ], + [ + "▁Bee", + -10.871024131774902 + ], + [ + "▁risks", + -10.871106147766113 + ], + [ + "▁queen", + -10.87112808227539 + ], + [ + "▁magic", + -10.871231079101562 + ], + [ + "▁acted", + -10.871301651000977 + ], + [ + "▁Rev", + -10.87159252166748 + ], + [ + "▁RAAF", + -10.871682167053223 + ], + [ + "vers", + -10.871946334838867 + ], + [ + "▁bypass", + -10.872037887573242 + ], + [ + "▁recover", + -10.872182846069336 + ], + [ + "▁infected", + -10.872323989868164 + ], + [ + "▁muscles", + -10.872394561767578 + ], + [ + "▁improvements", + -10.872793197631836 + ], + [ + "try", + -10.872941970825195 + ], + [ + "▁closing", + -10.873064994812012 + ], + [ + "▁fallen", + -10.873140335083008 + ], + [ + "▁va", + -10.873318672180176 + ], + [ + "▁Agency", + -10.87339973449707 + ], + [ + "▁theories", + -10.87348461151123 + ], + [ + "▁trail", + -10.873564720153809 + ], + [ + "struct", + -10.873671531677246 + ], + [ + "▁signing", + -10.873839378356934 + ], + [ + "▁newspapers", + -10.873909950256348 + ], + [ + "▁mixture", + -10.874336242675781 + ], + [ + "▁adventure", + -10.874429702758789 + ], + [ + "▁squad", + -10.87453556060791 + ], + [ + "▁insurance", + -10.874603271484375 + ], + [ + "▁bridges", + -10.874701499938965 + ], + [ + "▁wonder", + -10.87490177154541 + ], + [ + "▁flash", + -10.874921798706055 + ], + [ + "▁Hotel", + -10.875212669372559 + ], + [ + "-2", + -10.875322341918945 + ], + [ + "▁RAF", + -10.875398635864258 + ], + [ + "▁vegetables", + -10.875417709350586 + ], + [ + "right", + -10.875689506530762 + ], + [ + "▁blow", + -10.87592601776123 + ], + [ + "▁stuff", + -10.87614631652832 + ], + [ + "▁license", + -10.876198768615723 + ], + [ + "▁sharing", + -10.876202583312988 + ], + [ + "▁significance", + -10.876296043395996 + ], + [ + "▁zero", + -10.876497268676758 + ], + [ + "▁cl", + -10.876657485961914 + ], + [ + "▁departed", + -10.87687873840332 + ], + [ + "▁Alice", + -10.876903533935547 + ], + [ + "▁Without", + -10.877153396606445 + ], + [ + "▁Med", + -10.877214431762695 + ], + [ + "▁universal", + -10.877227783203125 + ], + [ + "▁Louisiana", + -10.87755298614502 + ], + [ + "▁expert", + -10.877585411071777 + ], + [ + "▁valid", + -10.877593994140625 + ], + [ + "▁shield", + -10.878019332885742 + ], + [ + "▁implemented", + -10.878177642822266 + ], + [ + "mobil", + -10.878254890441895 + ], + [ + "▁attract", + -10.87841796875 + ], + [ + "▁Alaska", + -10.878462791442871 + ], + [ + "▁construct", + -10.878928184509277 + ], + [ + "▁hybrid", + -10.879074096679688 + ], + [ + "▁athletes", + -10.879417419433594 + ], + [ + "▁essentially", + -10.879450798034668 + ], + [ + "▁distinguished", + -10.87987995147705 + ], + [ + "▁Care", + -10.87989330291748 + ], + [ + "▁bèzbòl", + -10.880157470703125 + ], + [ + "▁myth", + -10.880620002746582 + ], + [ + "▁enhance", + -10.880819320678711 + ], + [ + "▁lists", + -10.881085395812988 + ], + [ + "▁Jam", + -10.881229400634766 + ], + [ + "▁Vincent", + -10.88127326965332 + ], + [ + "▁sees", + -10.881341934204102 + ], + [ + "▁fifty", + -10.881396293640137 + ], + [ + "▁Senator", + -10.88145923614502 + ], + [ + "▁86", + -10.8815336227417 + ], + [ + "▁shorter", + -10.881996154785156 + ], + [ + "▁visiting", + -10.882017135620117 + ], + [ + "▁Born", + -10.882129669189453 + ], + [ + "▁airline", + -10.882257461547852 + ], + [ + "ologist", + -10.882403373718262 + ], + [ + "54", + -10.883042335510254 + ], + [ + "▁procedures", + -10.883042335510254 + ], + [ + "62", + -10.883191108703613 + ], + [ + "▁victim", + -10.883260726928711 + ], + [ + "▁pulled", + -10.883670806884766 + ], + [ + "pha", + -10.883683204650879 + ], + [ + "▁Gaga", + -10.883744239807129 + ], + [ + "▁Environmental", + -10.883953094482422 + ], + [ + "▁Services", + -10.883966445922852 + ], + [ + "▁Mid", + -10.883999824523926 + ], + [ + "▁App", + -10.884028434753418 + ], + [ + "▁sequences", + -10.884133338928223 + ], + [ + "▁travelled", + -10.884228706359863 + ], + [ + "▁Any", + -10.884428977966309 + ], + [ + "ear", + -10.884757995605469 + ], + [ + "mic", + -10.884804725646973 + ], + [ + "▁battleship", + -10.884868621826172 + ], + [ + "▁depends", + -10.885041236877441 + ], + [ + "cia", + -10.885223388671875 + ], + [ + "▁distinguish", + -10.885466575622559 + ], + [ + "hard", + -10.885796546936035 + ], + [ + "cri", + -10.88586139678955 + ], + [ + "▁Nielsen", + -10.886054992675781 + ], + [ + "▁magnetic", + -10.886281967163086 + ], + [ + "▁excess", + -10.8865385055542 + ], + [ + "▁Iraq", + -10.886842727661133 + ], + [ + "▁Somerset", + -10.887145042419434 + ], + [ + "▁cannon", + -10.887394905090332 + ], + [ + "▁texts", + -10.887528419494629 + ], + [ + "▁monument", + -10.887679100036621 + ], + [ + "▁Off", + -10.8876953125 + ], + [ + "sson", + -10.88786506652832 + ], + [ + "▁Industry", + -10.887924194335938 + ], + [ + "▁replacing", + -10.887924194335938 + ], + [ + "▁1880", + -10.888289451599121 + ], + [ + "▁chest", + -10.888742446899414 + ], + [ + "nn", + -10.888984680175781 + ], + [ + "▁withdrew", + -10.889019012451172 + ], + [ + "ado", + -10.889084815979004 + ], + [ + "bound", + -10.88913631439209 + ], + [ + "pers", + -10.889214515686035 + ], + [ + "▁sta", + -10.889365196228027 + ], + [ + "▁outdoor", + -10.889959335327148 + ], + [ + "▁gathered", + -10.890170097351074 + ], + [ + "▁dependent", + -10.89046573638916 + ], + [ + "▁lòt", + -10.890735626220703 + ], + [ + "▁Obama", + -10.890915870666504 + ], + [ + "RE", + -10.89097785949707 + ], + [ + "▁northward", + -10.891162872314453 + ], + [ + "▁Kin", + -10.891280174255371 + ], + [ + "▁usage", + -10.891435623168945 + ], + [ + "vid", + -10.891443252563477 + ], + [ + "▁wheel", + -10.891525268554688 + ], + [ + "▁severely", + -10.89152717590332 + ], + [ + "▁proof", + -10.891566276550293 + ], + [ + "iness", + -10.891766548156738 + ], + [ + "▁trigger", + -10.89183521270752 + ], + [ + "▁Dev", + -10.891894340515137 + ], + [ + "This", + -10.892328262329102 + ], + [ + "▁auto", + -10.892329216003418 + ], + [ + "▁chamber", + -10.89240550994873 + ], + [ + "▁raw", + -10.892406463623047 + ], + [ + "acy", + -10.892598152160645 + ], + [ + "yè", + -10.892833709716797 + ], + [ + "gra", + -10.892865180969238 + ], + [ + "▁novels", + -10.89289379119873 + ], + [ + "▁VI", + -10.893040657043457 + ], + [ + "▁variation", + -10.893167495727539 + ], + [ + "▁observe", + -10.893284797668457 + ], + [ + "idae", + -10.893494606018066 + ], + [ + "ska", + -10.893651962280273 + ], + [ + "▁Race", + -10.893874168395996 + ], + [ + "▁dollar", + -10.89432144165039 + ], + [ + "▁accessible", + -10.894890785217285 + ], + [ + "▁Historic", + -10.894895553588867 + ], + [ + "▁assisted", + -10.895076751708984 + ], + [ + "▁Construction", + -10.895153045654297 + ], + [ + "▁Campbell", + -10.895295143127441 + ], + [ + "lim", + -10.895307540893555 + ], + [ + "bla", + -10.896533966064453 + ], + [ + "▁Mari", + -10.896539688110352 + ], + [ + "▁1905", + -10.896897315979004 + ], + [ + "▁maps", + -10.896925926208496 + ], + [ + "▁arriving", + -10.89697265625 + ], + [ + "▁Roy", + -10.897007942199707 + ], + [ + "▁Organization", + -10.897043228149414 + ], + [ + "▁bid", + -10.89735221862793 + ], + [ + "▁Cy", + -10.897513389587402 + ], + [ + "▁strategic", + -10.897544860839844 + ], + [ + "ela", + -10.897600173950195 + ], + [ + "burn", + -10.89763069152832 + ], + [ + "rk", + -10.898146629333496 + ], + [ + "▁Pal", + -10.898422241210938 + ], + [ + "▁demon", + -10.898669242858887 + ], + [ + "▁plis", + -10.898852348327637 + ], + [ + "▁Snow", + -10.89891529083252 + ], + [ + "▁equally", + -10.898998260498047 + ], + [ + "▁whatever", + -10.899391174316406 + ], + [ + "▁assignment", + -10.899505615234375 + ], + [ + "▁funeral", + -10.89953327178955 + ], + [ + "▁MS", + -10.899535179138184 + ], + [ + "▁Christianity", + -10.900012969970703 + ], + [ + "rang", + -10.900155067443848 + ], + [ + "▁Steven", + -10.900203704833984 + ], + [ + "▁Harvard", + -10.901110649108887 + ], + [ + "▁Vietnamese", + -10.901161193847656 + ], + [ + "▁Bat", + -10.901179313659668 + ], + [ + "▁AI", + -10.901266098022461 + ], + [ + "ali", + -10.901447296142578 + ], + [ + "▁assembly", + -10.901900291442871 + ], + [ + "▁Dog", + -10.902047157287598 + ], + [ + "▁controls", + -10.902267456054688 + ], + [ + "▁92", + -10.902294158935547 + ], + [ + "▁attendance", + -10.902959823608398 + ], + [ + ".3", + -10.903665542602539 + ], + [ + "▁magnitude", + -10.903804779052734 + ], + [ + "wer", + -10.904101371765137 + ], + [ + "▁involve", + -10.904253959655762 + ], + [ + "tation", + -10.904303550720215 + ], + [ + "ked", + -10.904635429382324 + ], + [ + "▁establishing", + -10.90463638305664 + ], + [ + "▁marking", + -10.904829978942871 + ], + [ + "▁forty", + -10.904903411865234 + ], + [ + "▁identical", + -10.905068397521973 + ], + [ + "▁orange", + -10.905143737792969 + ], + [ + "▁upgraded", + -10.905355453491211 + ], + [ + "fully", + -10.905467987060547 + ], + [ + "▁na", + -10.90568733215332 + ], + [ + "wick", + -10.906332015991211 + ], + [ + "cat", + -10.906421661376953 + ], + [ + "▁Medal", + -10.906740188598633 + ], + [ + "▁factory", + -10.907247543334961 + ], + [ + "▁completing", + -10.907609939575195 + ], + [ + "AM", + -10.907754898071289 + ], + [ + "▁enable", + -10.907781600952148 + ], + [ + "▁Similarly", + -10.907791137695312 + ], + [ + "▁Peace", + -10.90800666809082 + ], + [ + "▁tenth", + -10.908053398132324 + ], + [ + "▁partial", + -10.908074378967285 + ], + [ + "▁recognised", + -10.908212661743164 + ], + [ + "▁annually", + -10.909125328063965 + ], + [ + "▁courses", + -10.909316062927246 + ], + [ + "▁database", + -10.9096040725708 + ], + [ + "▁signature", + -10.909720420837402 + ], + [ + "▁lesson", + -10.909902572631836 + ], + [ + "▁doctors", + -10.910598754882812 + ], + [ + "▁Gil", + -10.910857200622559 + ], + [ + "▁cash", + -10.911025047302246 + ], + [ + "pot", + -10.911189079284668 + ], + [ + "▁1907", + -10.911255836486816 + ], + [ + "▁suspended", + -10.911487579345703 + ], + [ + "▁Cold", + -10.911714553833008 + ], + [ + "▁tra", + -10.912015914916992 + ], + [ + "▁poems", + -10.912030220031738 + ], + [ + "▁cargo", + -10.912302017211914 + ], + [ + "▁1870", + -10.912424087524414 + ], + [ + "ua", + -10.912726402282715 + ], + [ + "ico", + -10.912782669067383 + ], + [ + "▁Reserve", + -10.912885665893555 + ], + [ + "chen", + -10.913107872009277 + ], + [ + "▁complicated", + -10.913191795349121 + ], + [ + "▁Ian", + -10.91336441040039 + ], + [ + "▁Bro", + -10.913410186767578 + ], + [ + "OS", + -10.913975715637207 + ], + [ + "▁dense", + -10.9147310256958 + ], + [ + "▁Lennon", + -10.91480541229248 + ], + [ + "▁internet", + -10.914948463439941 + ], + [ + "▁Mus", + -10.915018081665039 + ], + [ + "▁Keep", + -10.915264129638672 + ], + [ + "▁fifteen", + -10.915403366088867 + ], + [ + "▁constantly", + -10.915667533874512 + ], + [ + "▁kinds", + -10.915708541870117 + ], + [ + "▁industries", + -10.915754318237305 + ], + [ + "▁rice", + -10.91627025604248 + ], + [ + "▁challenging", + -10.916396141052246 + ], + [ + "▁Step", + -10.916556358337402 + ], + [ + "▁compare", + -10.917030334472656 + ], + [ + "▁Word", + -10.91761589050293 + ], + [ + "▁sole", + -10.917683601379395 + ], + [ + "ching", + -10.91782283782959 + ], + [ + "wen", + -10.918018341064453 + ], + [ + "ben", + -10.918092727661133 + ], + [ + "▁Pin", + -10.918210983276367 + ], + [ + "▁j", + -10.919028282165527 + ], + [ + "▁Week", + -10.919050216674805 + ], + [ + "▁Xbox", + -10.91908073425293 + ], + [ + "▁Fan", + -10.919166564941406 + ], + [ + "▁excessive", + -10.91927433013916 + ], + [ + "▁temporarily", + -10.919288635253906 + ], + [ + "▁Carr", + -10.91943645477295 + ], + [ + "cker", + -10.919525146484375 + ], + [ + "▁coin", + -10.91989803314209 + ], + [ + "▁Wing", + -10.920273780822754 + ], + [ + "▁Rain", + -10.920696258544922 + ], + [ + "▁beliefs", + -10.92085075378418 + ], + [ + "▁shock", + -10.920860290527344 + ], + [ + "▁nice", + -10.921072959899902 + ], + [ + "▁finance", + -10.921262741088867 + ], + [ + "▁produces", + -10.921785354614258 + ], + [ + "▁sustainable", + -10.922000885009766 + ], + [ + "ust", + -10.922185897827148 + ], + [ + "▁Mrs", + -10.922537803649902 + ], + [ + "▁Shin", + -10.922661781311035 + ], + [ + "▁Hungary", + -10.922886848449707 + ], + [ + "▁Catherine", + -10.923157691955566 + ], + [ + "▁constitutional", + -10.923171043395996 + ], + [ + "▁flower", + -10.923357963562012 + ], + [ + "▁Wars", + -10.92343807220459 + ], + [ + "ides", + -10.923684120178223 + ], + [ + "▁Manhattan", + -10.92380428314209 + ], + [ + "▁ballad", + -10.92427921295166 + ], + [ + "▁Prize", + -10.924284934997559 + ], + [ + "ST", + -10.92441177368164 + ], + [ + "▁(18", + -10.924666404724121 + ], + [ + "▁feels", + -10.924676895141602 + ], + [ + "▁repeatedly", + -10.924830436706543 + ], + [ + "▁Susan", + -10.925492286682129 + ], + [ + "▁Depression", + -10.925840377807617 + ], + [ + "▁cards", + -10.926078796386719 + ], + [ + "bul", + -10.92625617980957 + ], + [ + "▁networks", + -10.926328659057617 + ], + [ + "▁Var", + -10.926549911499023 + ], + [ + "▁settlers", + -10.926825523376465 + ], + [ + "▁pitched", + -10.926953315734863 + ], + [ + "▁altitude", + -10.927366256713867 + ], + [ + "▁communist", + -10.927366256713867 + ], + [ + "▁Israeli", + -10.927580833435059 + ], + [ + "▁taxes", + -10.927885055541992 + ], + [ + "▁horror", + -10.92801570892334 + ], + [ + "▁indicating", + -10.928179740905762 + ], + [ + "▁Spears", + -10.928508758544922 + ], + [ + "▁march", + -10.928984642028809 + ], + [ + "▁shells", + -10.929807662963867 + ], + [ + "▁Cla", + -10.930167198181152 + ], + [ + "arm", + -10.93044662475586 + ], + [ + "▁Ridge", + -10.93045425415039 + ], + [ + "sia", + -10.930703163146973 + ], + [ + "ivity", + -10.930742263793945 + ], + [ + "▁compilation", + -10.930778503417969 + ], + [ + "thi", + -10.931073188781738 + ], + [ + "▁altered", + -10.931074142456055 + ], + [ + "▁priest", + -10.931536674499512 + ], + [ + "▁emotions", + -10.931621551513672 + ], + [ + "▁Secret", + -10.931801795959473 + ], + [ + "▁ed", + -10.931879043579102 + ], + [ + "▁Gal", + -10.931893348693848 + ], + [ + "▁functional", + -10.931931495666504 + ], + [ + "▁platinum", + -10.932082176208496 + ], + [ + "▁layers", + -10.93215560913086 + ], + [ + "TV", + -10.933030128479004 + ], + [ + "▁screening", + -10.933056831359863 + ], + [ + "▁Independent", + -10.933127403259277 + ], + [ + "▁governments", + -10.93337345123291 + ], + [ + "La", + -10.933536529541016 + ], + [ + "▁chemicals", + -10.933540344238281 + ], + [ + "els", + -10.933594703674316 + ], + [ + "▁blind", + -10.933695793151855 + ], + [ + "▁cult", + -10.93382453918457 + ], + [ + "51", + -10.933978080749512 + ], + [ + "▁Township", + -10.93435287475586 + ], + [ + "▁Bri", + -10.934357643127441 + ], + [ + "hol", + -10.934903144836426 + ], + [ + "sburg", + -10.93494701385498 + ], + [ + "▁Chronicle", + -10.934967994689941 + ], + [ + "▁legislature", + -10.935019493103027 + ], + [ + "ort", + -10.935047149658203 + ], + [ + "▁fin", + -10.935117721557617 + ], + [ + "▁tele", + -10.935144424438477 + ], + [ + "▁Mah", + -10.935284614562988 + ], + [ + "▁specialist", + -10.935604095458984 + ], + [ + "▁shipping", + -10.935855865478516 + ], + [ + "▁origins", + -10.936127662658691 + ], + [ + "▁whilst", + -10.936164855957031 + ], + [ + "▁trap", + -10.936240196228027 + ], + [ + "▁Karl", + -10.936269760131836 + ], + [ + "▁institution", + -10.936369895935059 + ], + [ + "▁wasn", + -10.936403274536133 + ], + [ + "▁cattle", + -10.936433792114258 + ], + [ + "▁clothes", + -10.936774253845215 + ], + [ + "▁Gray", + -10.93680191040039 + ], + [ + "▁ju", + -10.936834335327148 + ], + [ + "gr", + -10.93702220916748 + ], + [ + "▁prayer", + -10.937230110168457 + ], + [ + "▁estimate", + -10.93734359741211 + ], + [ + "▁spoken", + -10.93734359741211 + ], + [ + "▁lie", + -10.937470436096191 + ], + [ + "▁empty", + -10.937641143798828 + ], + [ + "▁celebrate", + -10.937799453735352 + ], + [ + "▁Nar", + -10.93781852722168 + ], + [ + "▁criticised", + -10.93794059753418 + ], + [ + "▁Flight", + -10.938176155090332 + ], + [ + "pic", + -10.938529968261719 + ], + [ + "87", + -10.938572883605957 + ], + [ + "▁framework", + -10.938576698303223 + ], + [ + "▁favorable", + -10.938713073730469 + ], + [ + "▁photographs", + -10.938933372497559 + ], + [ + "▁orchestra", + -10.939087867736816 + ], + [ + "▁toll", + -10.939141273498535 + ], + [ + "▁Trade", + -10.939156532287598 + ], + [ + "▁fighters", + -10.939167976379395 + ], + [ + "▁centers", + -10.939264297485352 + ], + [ + "▁placing", + -10.939444541931152 + ], + [ + "▁sheet", + -10.939459800720215 + ], + [ + "yon", + -10.939604759216309 + ], + [ + "▁installation", + -10.939949989318848 + ], + [ + "▁meter", + -10.939995765686035 + ], + [ + "▁cho", + -10.940069198608398 + ], + [ + "▁battles", + -10.94034481048584 + ], + [ + "▁Learning", + -10.940462112426758 + ], + [ + "▁cousin", + -10.940597534179688 + ], + [ + "ois", + -10.941044807434082 + ], + [ + "ult", + -10.941169738769531 + ], + [ + "▁toxic", + -10.941366195678711 + ], + [ + "▁Islamic", + -10.941450119018555 + ], + [ + "▁mat", + -10.941606521606445 + ], + [ + "▁lifetime", + -10.941987037658691 + ], + [ + "▁facts", + -10.942039489746094 + ], + [ + "▁Warren", + -10.942052841186523 + ], + [ + "▁instructions", + -10.94235897064209 + ], + [ + "▁wake", + -10.942562103271484 + ], + [ + "▁sistèm", + -10.942732810974121 + ], + [ + "▁Wolf", + -10.943467140197754 + ], + [ + "lt", + -10.943528175354004 + ], + [ + "gle", + -10.943580627441406 + ], + [ + "late", + -10.943650245666504 + ], + [ + "▁mal", + -10.943779945373535 + ], + [ + "press", + -10.943976402282715 + ], + [ + "▁flows", + -10.94412612915039 + ], + [ + "▁Sto", + -10.944154739379883 + ], + [ + "▁grid", + -10.944409370422363 + ], + [ + "▁Switzerland", + -10.94454574584961 + ], + [ + "▁heritage", + -10.944547653198242 + ], + [ + "▁shoulder", + -10.944828987121582 + ], + [ + "▁kidney", + -10.944901466369629 + ], + [ + "▁carefully", + -10.944952011108398 + ], + [ + "▁Local", + -10.945215225219727 + ], + [ + "▁decreased", + -10.945466041564941 + ], + [ + "▁outcome", + -10.945796012878418 + ], + [ + "▁counties", + -10.945837020874023 + ], + [ + "▁Antonio", + -10.946091651916504 + ], + [ + "▁Place", + -10.94617748260498 + ], + [ + "▁reviewers", + -10.946311950683594 + ], + [ + "▁switch", + -10.946378707885742 + ], + [ + "cap", + -10.946417808532715 + ], + [ + "▁machines", + -10.946557998657227 + ], + [ + "▁bore", + -10.947721481323242 + ], + [ + "▁Hunt", + -10.947773933410645 + ], + [ + "--", + -10.947978973388672 + ], + [ + "▁Darwin", + -10.948090553283691 + ], + [ + "▁continent", + -10.94814682006836 + ], + [ + "▁Jonathan", + -10.948183059692383 + ], + [ + "och", + -10.948272705078125 + ], + [ + "▁Liberal", + -10.948476791381836 + ], + [ + "▁Kra", + -10.948534965515137 + ], + [ + "▁ages", + -10.94858169555664 + ], + [ + "▁1906", + -10.94884967803955 + ], + [ + "▁Dylan", + -10.94906997680664 + ], + [ + "aud", + -10.949118614196777 + ], + [ + "mun", + -10.94924545288086 + ], + [ + "▁distant", + -10.949254035949707 + ], + [ + "▁Portland", + -10.94927978515625 + ], + [ + "ient", + -10.949299812316895 + ], + [ + "▁addressed", + -10.949477195739746 + ], + [ + "▁friendship", + -10.949809074401855 + ], + [ + "▁Change", + -10.949868202209473 + ], + [ + "▁ven", + -10.949918746948242 + ], + [ + "▁Saxon", + -10.950101852416992 + ], + [ + "lla", + -10.950662612915039 + ], + [ + "▁Graham", + -10.950804710388184 + ], + [ + "▁tough", + -10.950944900512695 + ], + [ + "▁bombing", + -10.9509859085083 + ], + [ + "cin", + -10.951033592224121 + ], + [ + "▁filed", + -10.951217651367188 + ], + [ + "▁cruisers", + -10.951393127441406 + ], + [ + "▁wins", + -10.951423645019531 + ], + [ + "▁sword", + -10.95156192779541 + ], + [ + "▁concerning", + -10.951623916625977 + ], + [ + "▁Base", + -10.951685905456543 + ], + [ + "▁hat", + -10.951735496520996 + ], + [ + "▁sending", + -10.951749801635742 + ], + [ + "ched", + -10.9519624710083 + ], + [ + "▁Ontario", + -10.952166557312012 + ], + [ + "▁Islam", + -10.952682495117188 + ], + [ + "▁opponent", + -10.952910423278809 + ], + [ + "▁escaped", + -10.952942848205566 + ], + [ + "94", + -10.953001976013184 + ], + [ + "▁permit", + -10.95322322845459 + ], + [ + "▁Kan", + -10.953505516052246 + ], + [ + "▁neutral", + -10.95363712310791 + ], + [ + "▁trading", + -10.953892707824707 + ], + [ + "▁matematik", + -10.953997611999512 + ], + [ + "▁Fund", + -10.954026222229004 + ], + [ + "▁shallow", + -10.954292297363281 + ], + [ + "mond", + -10.954347610473633 + ], + [ + "▁Bou", + -10.954484939575195 + ], + [ + "▁List", + -10.954487800598145 + ], + [ + "yer", + -10.954802513122559 + ], + [ + "▁gray", + -10.954854965209961 + ], + [ + "▁environments", + -10.955151557922363 + ], + [ + "▁affair", + -10.955329895019531 + ], + [ + "▁merchant", + -10.955493927001953 + ], + [ + "▁perception", + -10.956053733825684 + ], + [ + "▁μ", + -10.95626449584961 + ], + [ + "▁focuses", + -10.956562042236328 + ], + [ + "74", + -10.956867218017578 + ], + [ + "▁Montreal", + -10.957184791564941 + ], + [ + "▁span", + -10.957456588745117 + ], + [ + "▁Mission", + -10.957502365112305 + ], + [ + "▁varied", + -10.95769214630127 + ], + [ + "▁Link", + -10.957795143127441 + ], + [ + "ú", + -10.957836151123047 + ], + [ + "▁prospect", + -10.958030700683594 + ], + [ + "▁meetings", + -10.958107948303223 + ], + [ + "▁adopt", + -10.958213806152344 + ], + [ + "▁bronze", + -10.958505630493164 + ], + [ + "▁parish", + -10.958563804626465 + ], + [ + "MA", + -10.958810806274414 + ], + [ + "▁evident", + -10.959343910217285 + ], + [ + "▁Carlos", + -10.959368705749512 + ], + [ + "▁ammunition", + -10.95950984954834 + ], + [ + "▁necessarily", + -10.959677696228027 + ], + [ + "▁meta", + -10.959758758544922 + ], + [ + "▁und", + -10.959901809692383 + ], + [ + "▁originated", + -10.959988594055176 + ], + [ + "▁Wal", + -10.960541725158691 + ], + [ + "▁drove", + -10.960606575012207 + ], + [ + "▁fatal", + -10.960658073425293 + ], + [ + "▁Der", + -10.961051940917969 + ], + [ + "▁civilian", + -10.961233139038086 + ], + [ + "▁Economic", + -10.961357116699219 + ], + [ + "▁westward", + -10.961479187011719 + ], + [ + "▁lighting", + -10.96158218383789 + ], + [ + "▁Trek", + -10.961657524108887 + ], + [ + "fall", + -10.961982727050781 + ], + [ + "▁drum", + -10.96233081817627 + ], + [ + "▁pilots", + -10.962813377380371 + ], + [ + "▁Ward", + -10.962984085083008 + ], + [ + "▁san", + -10.963032722473145 + ], + [ + "▁citing", + -10.963444709777832 + ], + [ + "▁rocks", + -10.963674545288086 + ], + [ + "▁Hand", + -10.963876724243164 + ], + [ + "ori", + -10.964153289794922 + ], + [ + "▁Mir", + -10.96420955657959 + ], + [ + "syon", + -10.964611053466797 + ], + [ + "ann", + -10.96486759185791 + ], + [ + "▁artwork", + -10.96492862701416 + ], + [ + "▁weekly", + -10.965106964111328 + ], + [ + "▁promised", + -10.965150833129883 + ], + [ + "▁signals", + -10.965368270874023 + ], + [ + "read", + -10.965452194213867 + ], + [ + "▁bases", + -10.965564727783203 + ], + [ + "▁pl", + -10.965600967407227 + ], + [ + "▁package", + -10.96568775177002 + ], + [ + "▁victories", + -10.966249465942383 + ], + [ + "▁Forces", + -10.966560363769531 + ], + [ + "▁dynamic", + -10.966577529907227 + ], + [ + "▁destroyers", + -10.966611862182617 + ], + [ + "▁shelter", + -10.966663360595703 + ], + [ + "▁Stan", + -10.967034339904785 + ], + [ + "▁Whit", + -10.967084884643555 + ], + [ + "▁lift", + -10.96773910522461 + ], + [ + "▁qualified", + -10.968259811401367 + ], + [ + "▁connecting", + -10.968375205993652 + ], + [ + "▁deeply", + -10.96846866607666 + ], + [ + "rab", + -10.968663215637207 + ], + [ + "▁indigenous", + -10.968766212463379 + ], + [ + "▁syn", + -10.968934059143066 + ], + [ + "▁turrets", + -10.969051361083984 + ], + [ + "▁wore", + -10.969202041625977 + ], + [ + "▁Heritage", + -10.969273567199707 + ], + [ + "▁scan", + -10.970189094543457 + ], + [ + "▁supplement", + -10.970987319946289 + ], + [ + "related", + -10.971559524536133 + ], + [ + "ically", + -10.971598625183105 + ], + [ + "atic", + -10.971617698669434 + ], + [ + "▁USD", + -10.972341537475586 + ], + [ + "▁personally", + -10.972712516784668 + ], + [ + "▁traditions", + -10.972830772399902 + ], + [ + "▁hockey", + -10.972832679748535 + ], + [ + "▁resumed", + -10.973008155822754 + ], + [ + "▁Never", + -10.973221778869629 + ], + [ + "▁jazz", + -10.97330379486084 + ], + [ + "▁lieutenant", + -10.973341941833496 + ], + [ + "pur", + -10.973709106445312 + ], + [ + "▁tips", + -10.973775863647461 + ], + [ + "▁Labour", + -10.97382926940918 + ], + [ + "▁Sullivan", + -10.973942756652832 + ], + [ + "▁interact", + -10.97395133972168 + ], + [ + "▁hook", + -10.97420883178711 + ], + [ + "▁rebellion", + -10.974366188049316 + ], + [ + "▁Giants", + -10.974419593811035 + ], + [ + "▁fever", + -10.9744291305542 + ], + [ + "▁Grade", + -10.974981307983398 + ], + [ + "▁Mitchell", + -10.975057601928711 + ], + [ + "▁Based", + -10.975547790527344 + ], + [ + "▁Tro", + -10.97563648223877 + ], + [ + "▁communications", + -10.97572135925293 + ], + [ + "▁jurisdiction", + -10.975722312927246 + ], + [ + "▁minority", + -10.975722312927246 + ], + [ + "▁Albums", + -10.975805282592773 + ], + [ + "▁Communist", + -10.976058959960938 + ], + [ + "▁Connecticut", + -10.97623348236084 + ], + [ + "▁badly", + -10.976583480834961 + ], + [ + "▁360", + -10.976709365844727 + ], + [ + "ake", + -10.97687816619873 + ], + [ + "▁fastest", + -10.976926803588867 + ], + [ + "▁bombers", + -10.977105140686035 + ], + [ + "▁similarly", + -10.977383613586426 + ], + [ + "▁Baby", + -10.977526664733887 + ], + [ + "▁developers", + -10.977909088134766 + ], + [ + "▁Jupiter", + -10.977938652038574 + ], + [ + "ech", + -10.978431701660156 + ], + [ + "▁hence", + -10.97847843170166 + ], + [ + "▁unlikely", + -10.978829383850098 + ], + [ + "▁Jerusalem", + -10.979133605957031 + ], + [ + "▁concentrated", + -10.979182243347168 + ], + [ + "▁finale", + -10.979185104370117 + ], + [ + "An", + -10.979216575622559 + ], + [ + "▁loose", + -10.979249000549316 + ], + [ + "▁Ty", + -10.979347229003906 + ], + [ + "▁est", + -10.979851722717285 + ], + [ + "gram", + -10.980073928833008 + ], + [ + "▁Stein", + -10.98025131225586 + ], + [ + "rit", + -10.980630874633789 + ], + [ + "▁diamond", + -10.980685234069824 + ], + [ + "ect", + -10.981205940246582 + ], + [ + "▁intensified", + -10.981529235839844 + ], + [ + "▁Wil", + -10.981684684753418 + ], + [ + "▁Tag", + -10.98177433013916 + ], + [ + "▁tension", + -10.981975555419922 + ], + [ + "▁soldier", + -10.982025146484375 + ], + [ + "▁disturbance", + -10.982050895690918 + ], + [ + "▁liked", + -10.9821195602417 + ], + [ + "▁Byografi", + -10.982325553894043 + ], + [ + "▁comment", + -10.98236083984375 + ], + [ + "▁stomach", + -10.98238468170166 + ], + [ + "▁hide", + -10.982470512390137 + ], + [ + "▁François", + -10.982992172241211 + ], + [ + "▁fu", + -10.983248710632324 + ], + [ + "▁tan", + -10.983795166015625 + ], + [ + "▁permitted", + -10.984090805053711 + ], + [ + "▁register", + -10.984097480773926 + ], + [ + "▁Tokyo", + -10.984100341796875 + ], + [ + "ert", + -10.98415756225586 + ], + [ + "▁integrated", + -10.984235763549805 + ], + [ + "aka", + -10.984259605407715 + ], + [ + "HA", + -10.98449420928955 + ], + [ + "▁Rick", + -10.984841346740723 + ], + [ + "▁wealthy", + -10.985086441040039 + ], + [ + "▁180", + -10.985321044921875 + ], + [ + "ache", + -10.985346794128418 + ], + [ + "▁occurring", + -10.985382080078125 + ], + [ + "▁thereby", + -10.985543251037598 + ], + [ + "▁batteries", + -10.985694885253906 + ], + [ + "dd", + -10.985703468322754 + ], + [ + "▁stretch", + -10.986754417419434 + ], + [ + "▁promise", + -10.986827850341797 + ], + [ + "ele", + -10.986873626708984 + ], + [ + "omy", + -10.98699951171875 + ], + [ + "▁jaw", + -10.987142562866211 + ], + [ + "▁serial", + -10.987302780151367 + ], + [ + "una", + -10.987401962280273 + ], + [ + "▁alleged", + -10.987680435180664 + ], + [ + "▁demonstrate", + -10.987898826599121 + ], + [ + "▁Past", + -10.98790168762207 + ], + [ + "▁Denmark", + -10.988079071044922 + ], + [ + "▁fix", + -10.988499641418457 + ], + [ + "▁implementation", + -10.988699913024902 + ], + [ + "▁thanks", + -10.988749504089355 + ], + [ + "▁prince", + -10.988771438598633 + ], + [ + "ways", + -10.98879337310791 + ], + [ + "▁repairs", + -10.98918628692627 + ], + [ + "▁allies", + -10.98930835723877 + ], + [ + "ware", + -10.989823341369629 + ], + [ + "▁sail", + -10.989948272705078 + ], + [ + "LA", + -10.990067481994629 + ], + [ + "▁revolt", + -10.990304946899414 + ], + [ + "▁math", + -10.990413665771484 + ], + [ + "▁Enterprise", + -10.990645408630371 + ], + [ + "▁blend", + -10.990662574768066 + ], + [ + "▁lying", + -10.990779876708984 + ], + [ + "▁releases", + -10.990939140319824 + ], + [ + "▁affects", + -10.991021156311035 + ], + [ + "atory", + -10.99106216430664 + ], + [ + "▁guilty", + -10.991449356079102 + ], + [ + "▁dock", + -10.991501808166504 + ], + [ + "▁mayor", + -10.99172592163086 + ], + [ + "▁83", + -10.991814613342285 + ], + [ + "▁Tamil", + -10.991889953613281 + ], + [ + "▁gift", + -10.99189567565918 + ], + [ + "▁diagnosed", + -10.991969108581543 + ], + [ + "▁prototype", + -10.992035865783691 + ], + [ + "▁Pr", + -10.992057800292969 + ], + [ + "gh", + -10.992207527160645 + ], + [ + "▁heading", + -10.992424964904785 + ], + [ + "▁Microsoft", + -10.993590354919434 + ], + [ + "▁Gene", + -10.994038581848145 + ], + [ + "▁USS", + -10.994123458862305 + ], + [ + "▁tune", + -10.99423885345459 + ], + [ + "AD", + -10.994312286376953 + ], + [ + "▁Baker", + -10.994390487670898 + ], + [ + "▁stability", + -10.995330810546875 + ], + [ + "▁burned", + -10.995488166809082 + ], + [ + "▁withdrawal", + -10.995521545410156 + ], + [ + "▁Officer", + -10.995854377746582 + ], + [ + "▁1904", + -10.99587345123291 + ], + [ + "▁ABC", + -10.995888710021973 + ], + [ + "▁nervous", + -10.996017456054688 + ], + [ + "▁chapel", + -10.996386528015137 + ], + [ + "▁Mis", + -10.996454238891602 + ], + [ + "▁coffee", + -10.996539115905762 + ], + [ + "▁diver", + -10.997125625610352 + ], + [ + "wall", + -10.997209548950195 + ], + [ + "▁initiated", + -10.997469902038574 + ], + [ + "▁choices", + -10.997475624084473 + ], + [ + "▁translated", + -10.997566223144531 + ], + [ + "▁Eu", + -10.997598648071289 + ], + [ + "▁preparing", + -10.997757911682129 + ], + [ + "▁spotted", + -10.997991561889648 + ], + [ + "▁architect", + -10.998037338256836 + ], + [ + "▁Originally", + -10.99807071685791 + ], + [ + "▁Eventually", + -10.998278617858887 + ], + [ + "▁alert", + -10.998530387878418 + ], + [ + "▁gl", + -10.998686790466309 + ], + [ + "▁hurt", + -10.999019622802734 + ], + [ + "tom", + -10.999040603637695 + ], + [ + "▁Bros", + -10.99916934967041 + ], + [ + "▁boundaries", + -10.999176979064941 + ], + [ + "▁Player", + -10.999463081359863 + ], + [ + "▁eruption", + -10.999493598937988 + ], + [ + "▁Hudson", + -10.999499320983887 + ], + [ + "▁listen", + -10.999704360961914 + ], + [ + "▁grain", + -10.999825477600098 + ], + [ + "inger", + -10.999985694885254 + ], + [ + "▁preventing", + -11.000160217285156 + ], + [ + "▁Gor", + -11.000689506530762 + ], + [ + "▁Cast", + -11.000778198242188 + ], + [ + "š", + -11.001119613647461 + ], + [ + "▁Horn", + -11.001242637634277 + ], + [ + "▁Disease", + -11.001243591308594 + ], + [ + "▁announcement", + -11.001270294189453 + ], + [ + "▁epizòd", + -11.001357078552246 + ], + [ + "▁impacts", + -11.001899719238281 + ], + [ + "▁swimming", + -11.001957893371582 + ], + [ + "▁Kat", + -11.002215385437012 + ], + [ + "ination", + -11.002296447753906 + ], + [ + "▁ranks", + -11.002389907836914 + ], + [ + "▁Sciences", + -11.00301456451416 + ], + [ + "▁Jefferson", + -11.003179550170898 + ], + [ + "▁Portuguese", + -11.003341674804688 + ], + [ + "cycl", + -11.003374099731445 + ], + [ + "▁molecular", + -11.003586769104004 + ], + [ + "▁underlying", + -11.00359058380127 + ], + [ + "▁distinction", + -11.003802299499512 + ], + [ + "▁Rachel", + -11.004075050354004 + ], + [ + "▁habit", + -11.004158020019531 + ], + [ + "▁Grammy", + -11.004232406616211 + ], + [ + "▁tiny", + -11.004339218139648 + ], + [ + "▁Reg", + -11.004351615905762 + ], + [ + "▁Federation", + -11.00456714630127 + ], + [ + "▁kit", + -11.004976272583008 + ], + [ + "tik", + -11.005317687988281 + ], + [ + "▁rebuilt", + -11.006380081176758 + ], + [ + "▁credits", + -11.006474494934082 + ], + [ + "▁beneath", + -11.006499290466309 + ], + [ + "▁Table", + -11.006548881530762 + ], + [ + "▁sank", + -11.006688117980957 + ], + [ + "▁wound", + -11.00677490234375 + ], + [ + "▁stones", + -11.006973266601562 + ], + [ + "▁architectural", + -11.007039070129395 + ], + [ + "world", + -11.007142066955566 + ], + [ + "▁str", + -11.007601737976074 + ], + [ + "▁attraction", + -11.007665634155273 + ], + [ + "▁exercises", + -11.007712364196777 + ], + [ + "▁É", + -11.008007049560547 + ], + [ + "itt", + -11.008118629455566 + ], + [ + "▁tap", + -11.00821304321289 + ], + [ + "▁advertising", + -11.008254051208496 + ], + [ + "▁tubes", + -11.00833511352539 + ], + [ + "▁Model", + -11.008441925048828 + ], + [ + "▁mail", + -11.008536338806152 + ], + [ + "▁sunk", + -11.008721351623535 + ], + [ + "91", + -11.00876235961914 + ], + [ + "▁precipitation", + -11.009134292602539 + ], + [ + "born", + -11.009225845336914 + ], + [ + "▁eliminate", + -11.00924015045166 + ], + [ + "▁1901", + -11.009291648864746 + ], + [ + "▁ski", + -11.009601593017578 + ], + [ + "▁import", + -11.009839057922363 + ], + [ + "CS", + -11.00987434387207 + ], + [ + "aba", + -11.010064125061035 + ], + [ + "▁Nine", + -11.01015567779541 + ], + [ + "ook", + -11.010167121887207 + ], + [ + "▁accommodate", + -11.010190963745117 + ], + [ + "▁concerts", + -11.010429382324219 + ], + [ + "▁closest", + -11.0104341506958 + ], + [ + "ern", + -11.010465621948242 + ], + [ + "dent", + -11.01055908203125 + ], + [ + "▁Set", + -11.010727882385254 + ], + [ + "▁Page", + -11.010824203491211 + ], + [ + "▁coup", + -11.010961532592773 + ], + [ + "▁thoughts", + -11.01105785369873 + ], + [ + "▁membership", + -11.011300086975098 + ], + [ + "▁edited", + -11.011515617370605 + ], + [ + "▁migration", + -11.011601448059082 + ], + [ + "▁venture", + -11.011691093444824 + ], + [ + "mark", + -11.011713981628418 + ], + [ + "▁statements", + -11.011747360229492 + ], + [ + "DS", + -11.011950492858887 + ], + [ + "▁Australians", + -11.012088775634766 + ], + [ + "▁reviewed", + -11.012275695800781 + ], + [ + "▁competed", + -11.012628555297852 + ], + [ + "▁destination", + -11.012838363647461 + ], + [ + "cur", + -11.013046264648438 + ], + [ + "▁Dakota", + -11.013368606567383 + ], + [ + "▁curriculum", + -11.013368606567383 + ], + [ + "▁supplied", + -11.013368606567383 + ], + [ + "▁arise", + -11.013406753540039 + ], + [ + "▁substitute", + -11.013481140136719 + ], + [ + "▁cognitive", + -11.013545036315918 + ], + [ + "▁smart", + -11.013564109802246 + ], + [ + "ault", + -11.013649940490723 + ], + [ + "▁suspect", + -11.013782501220703 + ], + [ + "▁Hunter", + -11.01384162902832 + ], + [ + "part", + -11.013957977294922 + ], + [ + "▁Billy", + -11.013965606689453 + ], + [ + "▁examined", + -11.01418399810791 + ], + [ + "▁keyboard", + -11.014286994934082 + ], + [ + "▁Qua", + -11.014395713806152 + ], + [ + "ash", + -11.014420509338379 + ], + [ + "lines", + -11.014480590820312 + ], + [ + "▁ob", + -11.014592170715332 + ], + [ + "▁representatives", + -11.014806747436523 + ], + [ + "▁Delaware", + -11.014960289001465 + ], + [ + "▁qui", + -11.01506233215332 + ], + [ + "▁Pedro", + -11.015195846557617 + ], + [ + "bid", + -11.015555381774902 + ], + [ + "▁possess", + -11.015790939331055 + ], + [ + "▁fruits", + -11.015846252441406 + ], + [ + "SS", + -11.01585578918457 + ], + [ + "▁Honor", + -11.01604175567627 + ], + [ + "▁ordinary", + -11.01620101928711 + ], + [ + "zen", + -11.01630687713623 + ], + [ + "▁Say", + -11.01633358001709 + ], + [ + "▁index", + -11.016517639160156 + ], + [ + "▁Bru", + -11.016539573669434 + ], + [ + "▁membrane", + -11.016555786132812 + ], + [ + "▁Mountains", + -11.016603469848633 + ], + [ + "▁Interstate", + -11.016753196716309 + ], + [ + "▁bonus", + -11.016777038574219 + ], + [ + "▁nutrients", + -11.016852378845215 + ], + [ + "cies", + -11.017169952392578 + ], + [ + "▁Nixon", + -11.017620086669922 + ], + [ + "NS", + -11.01762866973877 + ], + [ + ".4", + -11.01771068572998 + ], + [ + "path", + -11.017993927001953 + ], + [ + "▁Farm", + -11.018167495727539 + ], + [ + "▁worn", + -11.018179893493652 + ], + [ + "▁sq", + -11.0182466506958 + ], + [ + "▁button", + -11.018807411193848 + ], + [ + "▁demanded", + -11.019144058227539 + ], + [ + "own", + -11.019537925720215 + ], + [ + "▁Deep", + -11.020146369934082 + ], + [ + "ière", + -11.0201997756958 + ], + [ + "▁nerve", + -11.020490646362305 + ], + [ + "▁Author", + -11.02076530456543 + ], + [ + "▁divide", + -11.02078628540039 + ], + [ + "▁armament", + -11.02099895477295 + ], + [ + "▁mines", + -11.021048545837402 + ], + [ + "▁organize", + -11.021142959594727 + ], + [ + "▁Ap", + -11.021211624145508 + ], + [ + "▁Google", + -11.021284103393555 + ], + [ + "IT", + -11.02145004272461 + ], + [ + "TS", + -11.021478652954102 + ], + [ + "ography", + -11.021594047546387 + ], + [ + "▁detected", + -11.021771430969238 + ], + [ + "▁scrap", + -11.02178955078125 + ], + [ + "arch", + -11.02202320098877 + ], + [ + "▁storms", + -11.022045135498047 + ], + [ + "umb", + -11.022052764892578 + ], + [ + "▁breath", + -11.022356986999512 + ], + [ + "ras", + -11.022747039794922 + ], + [ + "▁rocket", + -11.022858619689941 + ], + [ + "▁flights", + -11.022860527038574 + ], + [ + "▁racing", + -11.0230073928833 + ], + [ + "▁consideration", + -11.023137092590332 + ], + [ + "ij", + -11.023154258728027 + ], + [ + "▁Ye", + -11.023295402526855 + ], + [ + "phe", + -11.02341365814209 + ], + [ + "▁afford", + -11.023446083068848 + ], + [ + "▁audiences", + -11.023449897766113 + ], + [ + "▁Owen", + -11.023484230041504 + ], + [ + "▁suddenly", + -11.023545265197754 + ], + [ + "cept", + -11.023650169372559 + ], + [ + "▁Amy", + -11.023872375488281 + ], + [ + "▁decides", + -11.023970603942871 + ], + [ + "etic", + -11.024242401123047 + ], + [ + "▁defeating", + -11.024392127990723 + ], + [ + "▁brings", + -11.024463653564453 + ], + [ + "▁konnen", + -11.024768829345703 + ], + [ + "▁abandon", + -11.025032043457031 + ], + [ + "MS", + -11.025090217590332 + ], + [ + "elo", + -11.025092124938965 + ], + [ + "ison", + -11.025653839111328 + ], + [ + "▁yield", + -11.0256986618042 + ], + [ + "▁Overall", + -11.025736808776855 + ], + [ + "ame", + -11.025895118713379 + ], + [ + "▁erected", + -11.026016235351562 + ], + [ + "▁Atlanta", + -11.026178359985352 + ], + [ + "ude", + -11.026590347290039 + ], + [ + "▁publishing", + -11.026824951171875 + ], + [ + "nik", + -11.027137756347656 + ], + [ + "rous", + -11.027389526367188 + ], + [ + "▁computers", + -11.027413368225098 + ], + [ + "▁enormous", + -11.027433395385742 + ], + [ + "▁Harvey", + -11.027634620666504 + ], + [ + "▁Rico", + -11.027713775634766 + ], + [ + "▁burial", + -11.027823448181152 + ], + [ + "iva", + -11.027899742126465 + ], + [ + "▁exclusively", + -11.028288841247559 + ], + [ + "▁knowing", + -11.028313636779785 + ], + [ + "▁Glen", + -11.028517723083496 + ], + [ + "▁Az", + -11.02858829498291 + ], + [ + "▁parliament", + -11.028738975524902 + ], + [ + "▁Christians", + -11.028779983520508 + ], + [ + "▁bread", + -11.028790473937988 + ], + [ + "▁audition", + -11.0293607711792 + ], + [ + "▁fate", + -11.029431343078613 + ], + [ + "▁recordings", + -11.029497146606445 + ], + [ + "▁chemistry", + -11.029873847961426 + ], + [ + "▁lacked", + -11.029875755310059 + ], + [ + "▁array", + -11.029976844787598 + ], + [ + "▁rotation", + -11.030052185058594 + ], + [ + "▁Tam", + -11.030065536499023 + ], + [ + "▁Maya", + -11.030253410339355 + ], + [ + "▁Watch", + -11.030730247497559 + ], + [ + "▁treatments", + -11.031156539916992 + ], + [ + "▁phenomenon", + -11.031564712524414 + ], + [ + "▁visits", + -11.031651496887207 + ], + [ + "▁Number", + -11.031745910644531 + ], + [ + "tract", + -11.031906127929688 + ], + [ + "▁petition", + -11.032000541687012 + ], + [ + "▁engineers", + -11.032044410705566 + ], + [ + "▁promoting", + -11.032105445861816 + ], + [ + "▁funded", + -11.032394409179688 + ], + [ + "▁challenged", + -11.032894134521484 + ], + [ + "▁virtually", + -11.032902717590332 + ], + [ + "▁Virgin", + -11.032907485961914 + ], + [ + "ifying", + -11.03292465209961 + ], + [ + "▁neighborhood", + -11.032962799072266 + ], + [ + "▁partners", + -11.033079147338867 + ], + [ + "▁Universal", + -11.033187866210938 + ], + [ + "▁Dy", + -11.033276557922363 + ], + [ + "▁Finn", + -11.033416748046875 + ], + [ + "▁exploration", + -11.033547401428223 + ], + [ + "ographic", + -11.03361701965332 + ], + [ + "▁measuring", + -11.033727645874023 + ], + [ + "▁carries", + -11.033761978149414 + ], + [ + "▁Syria", + -11.034083366394043 + ], + [ + "▁Sometimes", + -11.034102439880371 + ], + [ + "mu", + -11.034418106079102 + ], + [ + "▁exam", + -11.03464412689209 + ], + [ + "▁Books", + -11.034748077392578 + ], + [ + "wed", + -11.034834861755371 + ], + [ + "▁watershed", + -11.034902572631836 + ], + [ + "▁remnants", + -11.035078048706055 + ], + [ + "▁Halo", + -11.035252571105957 + ], + [ + "▁Bach", + -11.035462379455566 + ], + [ + "▁Dick", + -11.035505294799805 + ], + [ + "zu", + -11.035764694213867 + ], + [ + "▁cultures", + -11.03576946258545 + ], + [ + "▁terminal", + -11.035806655883789 + ], + [ + "rel", + -11.03581428527832 + ], + [ + "▁Code", + -11.036036491394043 + ], + [ + "test", + -11.036105155944824 + ], + [ + "Le", + -11.036372184753418 + ], + [ + "DA", + -11.036495208740234 + ], + [ + "▁calm", + -11.036506652832031 + ], + [ + "▁desired", + -11.036709785461426 + ], + [ + "▁1903", + -11.03674602508545 + ], + [ + "▁EU", + -11.036819458007812 + ], + [ + "▁printing", + -11.036876678466797 + ], + [ + "▁uncle", + -11.037301063537598 + ], + [ + "▁Rod", + -11.037362098693848 + ], + [ + "▁Rosa", + -11.037492752075195 + ], + [ + "▁theater", + -11.0377197265625 + ], + [ + "▁voiced", + -11.037796020507812 + ], + [ + "▁acknowledged", + -11.03789234161377 + ], + [ + "ital", + -11.038012504577637 + ], + [ + "▁threw", + -11.038070678710938 + ], + [ + "▁Figure", + -11.038558959960938 + ], + [ + "▁rev", + -11.03896713256836 + ], + [ + "ree", + -11.039298057556152 + ], + [ + "RC", + -11.039351463317871 + ], + [ + "▁Side", + -11.039377212524414 + ], + [ + "▁scientist", + -11.03940486907959 + ], + [ + "▁ease", + -11.039506912231445 + ], + [ + "▁Moreover", + -11.039648056030273 + ], + [ + "▁overseas", + -11.039702415466309 + ], + [ + "▁holes", + -11.0399751663208 + ], + [ + "▁corresponding", + -11.040087699890137 + ], + [ + "▁inclusion", + -11.040247917175293 + ], + [ + "PS", + -11.040664672851562 + ], + [ + "▁Training", + -11.040695190429688 + ], + [ + "▁Hockey", + -11.040789604187012 + ], + [ + "▁armies", + -11.04079818725586 + ], + [ + "▁birthday", + -11.041131019592285 + ], + [ + "▁VII", + -11.041254043579102 + ], + [ + "▁interactions", + -11.041386604309082 + ], + [ + "los", + -11.041574478149414 + ], + [ + "▁Hampshire", + -11.041879653930664 + ], + [ + "▁dancing", + -11.042426109313965 + ], + [ + "▁smoking", + -11.042426109313965 + ], + [ + "▁tribe", + -11.042505264282227 + ], + [ + "▁1000", + -11.042621612548828 + ], + [ + "▁react", + -11.042896270751953 + ], + [ + "band", + -11.043107032775879 + ], + [ + "▁Napoleon", + -11.043346405029297 + ], + [ + "▁portions", + -11.043416023254395 + ], + [ + "▁ou", + -11.043535232543945 + ], + [ + "▁universities", + -11.043701171875 + ], + [ + "▁traveling", + -11.043987274169922 + ], + [ + "▁Monte", + -11.044328689575195 + ], + [ + "▁cu", + -11.044625282287598 + ], + [ + "▁argue", + -11.044638633728027 + ], + [ + "▁confusion", + -11.044671058654785 + ], + [ + "▁Name", + -11.044737815856934 + ], + [ + "▁carriers", + -11.04485034942627 + ], + [ + "▁Laboratory", + -11.044990539550781 + ], + [ + "92", + -11.045254707336426 + ], + [ + "▁Il", + -11.045355796813965 + ], + [ + "OR", + -11.045615196228027 + ], + [ + "▁instruction", + -11.045628547668457 + ], + [ + "▁Tree", + -11.045716285705566 + ], + [ + "▁tackle", + -11.045735359191895 + ], + [ + "▁Penn", + -11.046012878417969 + ], + [ + "▁Amendment", + -11.046072959899902 + ], + [ + "▁attained", + -11.046086311340332 + ], + [ + "▁Kirk", + -11.046257972717285 + ], + [ + "▁Solar", + -11.046653747558594 + ], + [ + "▁referring", + -11.046728134155273 + ], + [ + "▁cor", + -11.046829223632812 + ], + [ + "▁publications", + -11.047042846679688 + ], + [ + "▁Perry", + -11.047164916992188 + ], + [ + "▁failing", + -11.04716682434082 + ], + [ + "duction", + -11.047466278076172 + ], + [ + "bus", + -11.047567367553711 + ], + [ + "▁messages", + -11.04807186126709 + ], + [ + "▁terrain", + -11.048235893249512 + ], + [ + "▁assists", + -11.048269271850586 + ], + [ + "▁rec", + -11.048396110534668 + ], + [ + "▁believing", + -11.048633575439453 + ], + [ + "▁Dia", + -11.048866271972656 + ], + [ + "▁Foreign", + -11.04900074005127 + ], + [ + "▁Victorian", + -11.049274444580078 + ], + [ + "▁overcome", + -11.049399375915527 + ], + [ + "▁Fab", + -11.049489974975586 + ], + [ + "▁mainland", + -11.049619674682617 + ], + [ + "▁handling", + -11.049736022949219 + ], + [ + "away", + -11.050238609313965 + ], + [ + "▁Donald", + -11.050565719604492 + ], + [ + "▁wildlife", + -11.05086612701416 + ], + [ + "▁Reading", + -11.050982475280762 + ], + [ + "▁Kurt", + -11.051006317138672 + ], + [ + "▁Record", + -11.051047325134277 + ], + [ + "Al", + -11.05106258392334 + ], + [ + "master", + -11.051107406616211 + ], + [ + "▁Trail", + -11.051254272460938 + ], + [ + "zan", + -11.051386833190918 + ], + [ + "ksyon", + -11.051484107971191 + ], + [ + "▁requiring", + -11.051567077636719 + ], + [ + "▁unclear", + -11.051610946655273 + ], + [ + "°", + -11.05168628692627 + ], + [ + "card", + -11.051748275756836 + ], + [ + "▁imagery", + -11.051819801330566 + ], + [ + "▁Hills", + -11.052129745483398 + ], + [ + "▁atomic", + -11.052138328552246 + ], + [ + "cht", + -11.052482604980469 + ], + [ + "▁Box", + -11.052495002746582 + ], + [ + "▁Market", + -11.05264949798584 + ], + [ + "▁sha", + -11.052837371826172 + ], + [ + "▁notion", + -11.052879333496094 + ], + [ + "▁Protestant", + -11.053037643432617 + ], + [ + "▁gods", + -11.053104400634766 + ], + [ + "▁platforms", + -11.053678512573242 + ], + [ + "▁clay", + -11.053709030151367 + ], + [ + "lation", + -11.053765296936035 + ], + [ + "▁Study", + -11.0537748336792 + ], + [ + "▁quiet", + -11.054275512695312 + ], + [ + "▁miss", + -11.054296493530273 + ], + [ + "▁uncertain", + -11.054388999938965 + ], + [ + "▁Fra", + -11.054986953735352 + ], + [ + "▁implement", + -11.055112838745117 + ], + [ + "▁rounds", + -11.055126190185547 + ], + [ + "▁Ce", + -11.055187225341797 + ], + [ + "▁depend", + -11.055275917053223 + ], + [ + "▁secretary", + -11.055829048156738 + ], + [ + "▁volumes", + -11.055927276611328 + ], + [ + "▁hydro", + -11.05597972869873 + ], + [ + "▁horizontal", + -11.056015968322754 + ], + [ + "▁1902", + -11.056097030639648 + ], + [ + "▁slight", + -11.056102752685547 + ], + [ + "500", + -11.056110382080078 + ], + [ + "dri", + -11.056111335754395 + ], + [ + "▁08", + -11.056259155273438 + ], + [ + "▁patrol", + -11.056300163269043 + ], + [ + "ugh", + -11.056350708007812 + ], + [ + "▁Turkey", + -11.056408882141113 + ], + [ + "lly", + -11.056574821472168 + ], + [ + "▁evaluation", + -11.056586265563965 + ], + [ + "▁generations", + -11.056617736816406 + ], + [ + "ister", + -11.05679988861084 + ], + [ + "▁threats", + -11.057029724121094 + ], + [ + "▁Cop", + -11.057066917419434 + ], + [ + "▁absorb", + -11.057246208190918 + ], + [ + "▁voting", + -11.057256698608398 + ], + [ + "IN", + -11.057414054870605 + ], + [ + "▁feedback", + -11.057564735412598 + ], + [ + "▁pole", + -11.057692527770996 + ], + [ + "▁CE", + -11.057738304138184 + ], + [ + "”,", + -11.0577974319458 + ], + [ + "oe", + -11.057841300964355 + ], + [ + "▁Indies", + -11.058088302612305 + ], + [ + "▁approaching", + -11.058268547058105 + ], + [ + "AP", + -11.058403015136719 + ], + [ + "▁Critics", + -11.058511734008789 + ], + [ + "ère", + -11.05876636505127 + ], + [ + "▁initiative", + -11.058966636657715 + ], + [ + "▁Gall", + -11.059203147888184 + ], + [ + "▁lung", + -11.059334754943848 + ], + [ + "▁offense", + -11.059595108032227 + ], + [ + "ema", + -11.059805870056152 + ], + [ + "▁steep", + -11.059922218322754 + ], + [ + "tail", + -11.060033798217773 + ], + [ + "▁strongest", + -11.060417175292969 + ], + [ + "logy", + -11.060498237609863 + ], + [ + "▁attending", + -11.060502052307129 + ], + [ + "aries", + -11.060510635375977 + ], + [ + "▁districts", + -11.060603141784668 + ], + [ + "▁Math", + -11.061248779296875 + ], + [ + "▁repeat", + -11.061306953430176 + ], + [ + "▁Murphy", + -11.061373710632324 + ], + [ + "▁ruler", + -11.061502456665039 + ], + [ + "▁heir", + -11.061578750610352 + ], + [ + "oy", + -11.061680793762207 + ], + [ + "▁Source", + -11.061688423156738 + ], + [ + "▁predecessor", + -11.06181812286377 + ], + [ + "▁armored", + -11.06240177154541 + ], + [ + "▁aerial", + -11.062555313110352 + ], + [ + "table", + -11.062647819519043 + ], + [ + "▁humanity", + -11.06290340423584 + ], + [ + "▁Rad", + -11.063170433044434 + ], + [ + "▁remix", + -11.06330680847168 + ], + [ + "▁doctrine", + -11.063392639160156 + ], + [ + "▁dental", + -11.06350326538086 + ], + [ + "▁chord", + -11.063711166381836 + ], + [ + "▁removing", + -11.064321517944336 + ], + [ + "▁cotton", + -11.064327239990234 + ], + [ + "▁strengthened", + -11.06438159942627 + ], + [ + "▁struggled", + -11.064495086669922 + ], + [ + "rm", + -11.06474494934082 + ], + [ + "▁exclusive", + -11.064753532409668 + ], + [ + "▁Lucas", + -11.0650053024292 + ], + [ + "▁gate", + -11.065321922302246 + ], + [ + "▁forget", + -11.065359115600586 + ], + [ + "▁documented", + -11.065573692321777 + ], + [ + "▁Pearl", + -11.065641403198242 + ], + [ + "aging", + -11.065752983093262 + ], + [ + "feld", + -11.065825462341309 + ], + [ + "▁favourite", + -11.066043853759766 + ], + [ + "▁Century", + -11.06618881225586 + ], + [ + "ova", + -11.066277503967285 + ], + [ + "▁scattered", + -11.066319465637207 + ], + [ + "▁Action", + -11.066786766052246 + ], + [ + "pel", + -11.06692886352539 + ], + [ + "▁Again", + -11.066954612731934 + ], + [ + "dit", + -11.06716251373291 + ], + [ + "▁Utah", + -11.067306518554688 + ], + [ + "▁drums", + -11.06745719909668 + ], + [ + "rom", + -11.06752872467041 + ], + [ + "▁guidelines", + -11.067530632019043 + ], + [ + "▁shares", + -11.06777572631836 + ], + [ + "▁fame", + -11.067862510681152 + ], + [ + "lac", + -11.068150520324707 + ], + [ + "▁knows", + -11.068163871765137 + ], + [ + "▁voyage", + -11.068984031677246 + ], + [ + "▁realize", + -11.069107055664062 + ], + [ + "▁camps", + -11.069197654724121 + ], + [ + "▁listening", + -11.06924819946289 + ], + [ + "▁Chamber", + -11.069252967834473 + ], + [ + "▁105", + -11.069488525390625 + ], + [ + "stri", + -11.069706916809082 + ], + [ + "▁Conservation", + -11.069731712341309 + ], + [ + "▁corporate", + -11.069731712341309 + ], + [ + "▁separation", + -11.069731712341309 + ], + [ + "rr", + -11.0701904296875 + ], + [ + "▁respective", + -11.070199966430664 + ], + [ + "▁Spe", + -11.070216178894043 + ], + [ + "box", + -11.07041072845459 + ], + [ + "▁spell", + -11.070462226867676 + ], + [ + "▁reporting", + -11.071188926696777 + ], + [ + "▁kW", + -11.071206092834473 + ], + [ + "▁linear", + -11.071433067321777 + ], + [ + "▁creates", + -11.071534156799316 + ], + [ + "▁Kill", + -11.071723937988281 + ], + [ + "▁pairs", + -11.071880340576172 + ], + [ + "▁typhoon", + -11.07235336303711 + ], + [ + "▁musician", + -11.072492599487305 + ], + [ + "▁specimen", + -11.072492599487305 + ], + [ + "▁Bird", + -11.072709083557129 + ], + [ + "▁witness", + -11.072725296020508 + ], + [ + "▁Soul", + -11.07275676727295 + ], + [ + "▁sisters", + -11.072799682617188 + ], + [ + "▁resist", + -11.072916984558105 + ], + [ + "▁Bla", + -11.073294639587402 + ], + [ + "▁insisted", + -11.07343578338623 + ], + [ + "▁Johnny", + -11.073592185974121 + ], + [ + "▁Express", + -11.073795318603516 + ], + [ + "zon", + -11.073845863342285 + ], + [ + "▁Province", + -11.073854446411133 + ], + [ + "▁cancelled", + -11.073884010314941 + ], + [ + "▁lion", + -11.07409954071045 + ], + [ + "set", + -11.074361801147461 + ], + [ + "▁advised", + -11.074400901794434 + ], + [ + "▁Oh", + -11.074403762817383 + ], + [ + "▁bath", + -11.074569702148438 + ], + [ + "èn", + -11.074699401855469 + ], + [ + "▁introduce", + -11.074853897094727 + ], + [ + "▁golden", + -11.074867248535156 + ], + [ + "▁variations", + -11.074882507324219 + ], + [ + "▁Fat", + -11.075095176696777 + ], + [ + "▁Shu", + -11.075100898742676 + ], + [ + "▁emerge", + -11.075312614440918 + ], + [ + "▁vegetation", + -11.075546264648438 + ], + [ + "free", + -11.075560569763184 + ], + [ + "▁Hit", + -11.075859069824219 + ], + [ + "▁Sho", + -11.075965881347656 + ], + [ + "nate", + -11.076380729675293 + ], + [ + "kov", + -11.076393127441406 + ], + [ + "▁rational", + -11.076643943786621 + ], + [ + "▁grows", + -11.076659202575684 + ], + [ + "▁Arnold", + -11.076687812805176 + ], + [ + "▁1860", + -11.076812744140625 + ], + [ + "▁Railroad", + -11.076866149902344 + ], + [ + "▁strange", + -11.076919555664062 + ], + [ + "yr", + -11.077017784118652 + ], + [ + "▁absolute", + -11.077486991882324 + ], + [ + "▁patent", + -11.077686309814453 + ], + [ + "[", + -11.077759742736816 + ], + [ + "US", + -11.07857608795166 + ], + [ + "▁Chapter", + -11.078653335571289 + ], + [ + "▁volunteers", + -11.078710556030273 + ], + [ + "▁banned", + -11.078811645507812 + ], + [ + "▁farming", + -11.078874588012695 + ], + [ + "▁Collection", + -11.079197883605957 + ], + [ + "▁Oak", + -11.079483985900879 + ], + [ + "▁fee", + -11.07955265045166 + ], + [ + "▁fabric", + -11.079601287841797 + ], + [ + "▁explosive", + -11.079693794250488 + ], + [ + "anda", + -11.080102920532227 + ], + [ + "Co", + -11.08012866973877 + ], + [ + "▁Cole", + -11.080162048339844 + ], + [ + "▁Village", + -11.080223083496094 + ], + [ + "▁Charlotte", + -11.08026123046875 + ], + [ + "▁files", + -11.080414772033691 + ], + [ + "▁Computer", + -11.080838203430176 + ], + [ + "zz", + -11.081165313720703 + ], + [ + "▁provincial", + -11.081206321716309 + ], + [ + "▁ste", + -11.081320762634277 + ], + [ + "▁Grove", + -11.081389427185059 + ], + [ + "▁helpful", + -11.08154296875 + ], + [ + "▁faces", + -11.081937789916992 + ], + [ + "▁guitarist", + -11.081993103027344 + ], + [ + "▁Philippe", + -11.082368850708008 + ], + [ + "▁beneficial", + -11.082531929016113 + ], + [ + "▁pursuit", + -11.082537651062012 + ], + [ + "▁pose", + -11.082576751708984 + ], + [ + "▁Jimmy", + -11.082645416259766 + ], + [ + "▁telephone", + -11.083117485046387 + ], + [ + "▁founding", + -11.083539009094238 + ], + [ + "▁attorney", + -11.083669662475586 + ], + [ + "▁interpreted", + -11.083686828613281 + ], + [ + "ía", + -11.083773612976074 + ], + [ + "▁Blues", + -11.083892822265625 + ], + [ + "oni", + -11.084209442138672 + ], + [ + "▁lanmè", + -11.084238052368164 + ], + [ + "▁Cra", + -11.084244728088379 + ], + [ + "ering", + -11.084315299987793 + ], + [ + "▁convince", + -11.084467887878418 + ], + [ + "fire", + -11.084620475769043 + ], + [ + "▁Buck", + -11.084856986999512 + ], + [ + "▁Indonesia", + -11.084943771362305 + ], + [ + "duc", + -11.084945678710938 + ], + [ + "▁Hope", + -11.085026741027832 + ], + [ + "▁Ob", + -11.08509635925293 + ], + [ + "▁casting", + -11.085227966308594 + ], + [ + "▁4.", + -11.085461616516113 + ], + [ + "▁creatures", + -11.085465431213379 + ], + [ + "tile", + -11.085808753967285 + ], + [ + "▁mod", + -11.086134910583496 + ], + [ + "▁Collins", + -11.086563110351562 + ], + [ + "▁Mau", + -11.086601257324219 + ], + [ + "82", + -11.08678913116455 + ], + [ + "▁Leslie", + -11.087000846862793 + ], + [ + "bli", + -11.087397575378418 + ], + [ + "▁pink", + -11.087471961975098 + ], + [ + "▁>", + -11.087554931640625 + ], + [ + "▁Roll", + -11.087681770324707 + ], + [ + "▁calculated", + -11.087919235229492 + ], + [ + "▁villain", + -11.088422775268555 + ], + [ + "▁surprised", + -11.08888053894043 + ], + [ + "▁lover", + -11.088936805725098 + ], + [ + "ô", + -11.088993072509766 + ], + [ + "serv", + -11.089129447937012 + ], + [ + "▁scholar", + -11.089156150817871 + ], + [ + "▁sur", + -11.089475631713867 + ], + [ + "▁employ", + -11.089487075805664 + ], + [ + "▁lawyer", + -11.089570999145508 + ], + [ + "▁monarch", + -11.089690208435059 + ], + [ + "▁09", + -11.08996295928955 + ], + [ + "▁patron", + -11.089997291564941 + ], + [ + "▁Luke", + -11.090060234069824 + ], + [ + "▁Card", + -11.09012508392334 + ], + [ + "rim", + -11.090153694152832 + ], + [ + "▁Sri", + -11.090234756469727 + ], + [ + "▁focusing", + -11.090275764465332 + ], + [ + "▁Lou", + -11.09065055847168 + ], + [ + "▁Hawaii", + -11.090690612792969 + ], + [ + "▁mathematics", + -11.09071159362793 + ], + [ + "▁brush", + -11.090890884399414 + ], + [ + "▁noticed", + -11.091025352478027 + ], + [ + "amp", + -11.091054916381836 + ], + [ + "tron", + -11.091408729553223 + ], + [ + "BA", + -11.091870307922363 + ], + [ + "▁reliable", + -11.092049598693848 + ], + [ + "▁dioxide", + -11.09206771850586 + ], + [ + "▁fed", + -11.092121124267578 + ], + [ + "▁dive", + -11.092162132263184 + ], + [ + "▁sang", + -11.092779159545898 + ], + [ + "▁bulk", + -11.092798233032227 + ], + [ + "▁EP", + -11.092939376831055 + ], + [ + "▁Potter", + -11.093154907226562 + ], + [ + "▁dinner", + -11.093199729919434 + ], + [ + "▁warming", + -11.093606948852539 + ], + [ + "▁dying", + -11.093656539916992 + ], + [ + "▁Hans", + -11.09375 + ], + [ + "type", + -11.094011306762695 + ], + [ + "illo", + -11.094284057617188 + ], + [ + "▁Sony", + -11.094338417053223 + ], + [ + "▁Pad", + -11.094411849975586 + ], + [ + "▁organised", + -11.094493865966797 + ], + [ + "cen", + -11.09494686126709 + ], + [ + "LE", + -11.094985008239746 + ], + [ + "rag", + -11.095261573791504 + ], + [ + "▁ekriven", + -11.095526695251465 + ], + [ + "▁les", + -11.095573425292969 + ], + [ + "▁Turner", + -11.095803260803223 + ], + [ + "▁realistic", + -11.096297264099121 + ], + [ + "▁impressive", + -11.096503257751465 + ], + [ + "▁myself", + -11.096540451049805 + ], + [ + "▁consciousness", + -11.096800804138184 + ], + [ + "roy", + -11.096858024597168 + ], + [ + "▁ga", + -11.097626686096191 + ], + [ + "▁remarked", + -11.097668647766113 + ], + [ + "ception", + -11.097939491271973 + ], + [ + "▁emerging", + -11.09799575805664 + ], + [ + "▁Apollo", + -11.09819221496582 + ], + [ + "▁restrictions", + -11.09842586517334 + ], + [ + "▁finger", + -11.098495483398438 + ], + [ + "▁Kil", + -11.098642349243164 + ], + [ + "kill", + -11.098776817321777 + ], + [ + "▁deeper", + -11.099127769470215 + ], + [ + "▁Survey", + -11.099160194396973 + ], + [ + "pes", + -11.099197387695312 + ], + [ + "▁Mol", + -11.099735260009766 + ], + [ + "▁Phoenix", + -11.100500106811523 + ], + [ + "▁subspecies", + -11.10051155090332 + ], + [ + "▁talks", + -11.1011323928833 + ], + [ + "▁scores", + -11.101242065429688 + ], + [ + "▁assembled", + -11.101372718811035 + ], + [ + "▁acoustic", + -11.101465225219727 + ], + [ + "lf", + -11.101521492004395 + ], + [ + "cit", + -11.101616859436035 + ], + [ + "▁strict", + -11.101630210876465 + ], + [ + "▁bears", + -11.10179615020752 + ], + [ + "▁lasting", + -11.101978302001953 + ], + [ + "▁Thi", + -11.102100372314453 + ], + [ + "▁assess", + -11.102153778076172 + ], + [ + "100", + -11.102232933044434 + ], + [ + "▁loud", + -11.10226058959961 + ], + [ + "▁Gabriel", + -11.102376937866211 + ], + [ + "▁Wayne", + -11.102409362792969 + ], + [ + "▁flagship", + -11.10244083404541 + ], + [ + "▁pwo", + -11.102540016174316 + ], + [ + "duct", + -11.102551460266113 + ], + [ + "▁devoted", + -11.102727890014648 + ], + [ + "▁depiction", + -11.102873802185059 + ], + [ + "most", + -11.103145599365234 + ], + [ + "2.", + -11.103198051452637 + ], + [ + "▁enlisted", + -11.103269577026367 + ], + [ + "▁je", + -11.103450775146484 + ], + [ + "▁hypothesis", + -11.103590965270996 + ], + [ + "▁Broadway", + -11.103819847106934 + ], + [ + "▁pitcher", + -11.103960990905762 + ], + [ + "▁objectives", + -11.104103088378906 + ], + [ + "▁Gary", + -11.104121208190918 + ], + [ + "▁Argentina", + -11.104191780090332 + ], + [ + "▁bowl", + -11.104328155517578 + ], + [ + "SC", + -11.104605674743652 + ], + [ + "▁armour", + -11.104713439941406 + ], + [ + "▁Works", + -11.104795455932617 + ], + [ + "▁competing", + -11.10513973236084 + ], + [ + "▁sto", + -11.105173110961914 + ], + [ + "▁reconnaissance", + -11.10533332824707 + ], + [ + "▁rely", + -11.105547904968262 + ], + [ + "▁Gate", + -11.105579376220703 + ], + [ + "▁Lost", + -11.105710983276367 + ], + [ + "▁Ang", + -11.105903625488281 + ], + [ + "▁donated", + -11.106083869934082 + ], + [ + "emia", + -11.106378555297852 + ], + [ + "▁youngest", + -11.106575965881348 + ], + [ + "▁surge", + -11.106579780578613 + ], + [ + "tif", + -11.106644630432129 + ], + [ + "▁riders", + -11.106663703918457 + ], + [ + "ensis", + -11.10693073272705 + ], + [ + "▁Upper", + -11.107078552246094 + ], + [ + "▁sat", + -11.107169151306152 + ], + [ + "▁define", + -11.107558250427246 + ], + [ + "▁inland", + -11.10773754119873 + ], + [ + "aya", + -11.107766151428223 + ], + [ + "▁paj", + -11.107940673828125 + ], + [ + "▁updated", + -11.107985496520996 + ], + [ + "▁dressed", + -11.108211517333984 + ], + [ + "▁backed", + -11.108277320861816 + ], + [ + "▁Shaw", + -11.108357429504395 + ], + [ + "▁125", + -11.108443260192871 + ], + [ + "NC", + -11.108448028564453 + ], + [ + "▁legislative", + -11.108633995056152 + ], + [ + "▁Maine", + -11.108874320983887 + ], + [ + "▁shaft", + -11.10888385772705 + ], + [ + "▁graduated", + -11.109395027160645 + ], + [ + "▁Rai", + -11.10951042175293 + ], + [ + "▁Beat", + -11.109910011291504 + ], + [ + "▁breathing", + -11.110042572021484 + ], + [ + "▁requirement", + -11.11005687713623 + ], + [ + "▁transported", + -11.110167503356934 + ], + [ + "▁Nicholas", + -11.11038589477539 + ], + [ + "▁acids", + -11.110440254211426 + ], + [ + "▁shadow", + -11.110580444335938 + ], + [ + "▁Hugh", + -11.110631942749023 + ], + [ + "▁Until", + -11.11075496673584 + ], + [ + "▁Keith", + -11.11097240447998 + ], + [ + "▁managing", + -11.111001968383789 + ], + [ + "▁Muhammad", + -11.111165046691895 + ], + [ + "▁circular", + -11.111165046691895 + ], + [ + "▁rifle", + -11.111361503601074 + ], + [ + "▁Engineering", + -11.111454963684082 + ], + [ + "▁wicket", + -11.111486434936523 + ], + [ + "▁amateur", + -11.11156177520752 + ], + [ + "▁curve", + -11.11161994934082 + ], + [ + "▁Wei", + -11.111837387084961 + ], + [ + "▁Barr", + -11.112058639526367 + ], + [ + "▁escort", + -11.11259651184082 + ], + [ + "▁Ancient", + -11.11282730102539 + ], + [ + "▁physically", + -11.112929344177246 + ], + [ + "▁Original", + -11.113042831420898 + ], + [ + "▁que", + -11.11319637298584 + ], + [ + "▁cord", + -11.113200187683105 + ], + [ + "▁Todd", + -11.113265037536621 + ], + [ + "bil", + -11.113384246826172 + ], + [ + "▁marry", + -11.11355972290039 + ], + [ + "▁Add", + -11.113718032836914 + ], + [ + "▁arrangements", + -11.114057540893555 + ], + [ + "▁Edition", + -11.114067077636719 + ], + [ + "▁acute", + -11.114168167114258 + ], + [ + "▁Eve", + -11.114413261413574 + ], + [ + "▁Mos", + -11.11442756652832 + ], + [ + "▁Motor", + -11.114542961120605 + ], + [ + "▁timber", + -11.114681243896484 + ], + [ + "tam", + -11.114850997924805 + ], + [ + "▁organs", + -11.115039825439453 + ], + [ + "▁velocity", + -11.115072250366211 + ], + [ + "▁spacecraft", + -11.11536979675293 + ], + [ + "▁proven", + -11.115399360656738 + ], + [ + "▁amazing", + -11.11546516418457 + ], + [ + "▁punishment", + -11.116003036499023 + ], + [ + "▁def", + -11.116073608398438 + ], + [ + "▁Metro", + -11.11617374420166 + ], + [ + "▁Wy", + -11.11637020111084 + ], + [ + "▁Oliver", + -11.116633415222168 + ], + [ + "▁targeted", + -11.116748809814453 + ], + [ + "▁André", + -11.116819381713867 + ], + [ + "ym", + -11.1168212890625 + ], + [ + "▁identification", + -11.11683464050293 + ], + [ + "▁elaborate", + -11.116925239562988 + ], + [ + "▁Together", + -11.11703109741211 + ], + [ + "▁random", + -11.117121696472168 + ], + [ + "▁displays", + -11.117265701293945 + ], + [ + "▁crest", + -11.117342948913574 + ], + [ + "▁harsh", + -11.11743450164795 + ], + [ + "▁arguments", + -11.11756420135498 + ], + [ + "▁absent", + -11.117620468139648 + ], + [ + "▁anlè", + -11.117694854736328 + ], + [ + "▁succeed", + -11.118496894836426 + ], + [ + "▁gathering", + -11.11877727508545 + ], + [ + "▁comfortable", + -11.119011878967285 + ], + [ + "logical", + -11.119140625 + ], + [ + "ain", + -11.119227409362793 + ], + [ + "▁achievement", + -11.119373321533203 + ], + [ + "▁Abbey", + -11.119386672973633 + ], + [ + "▁mammals", + -11.119830131530762 + ], + [ + "▁Devil", + -11.120015144348145 + ], + [ + "▁autumn", + -11.120369911193848 + ], + [ + "▁spaces", + -11.120489120483398 + ], + [ + "via", + -11.120691299438477 + ], + [ + "how", + -11.120713233947754 + ], + [ + "▁prim", + -11.120771408081055 + ], + [ + "SI", + -11.120782852172852 + ], + [ + "▁extract", + -11.120810508728027 + ], + [ + "▁backing", + -11.12091064453125 + ], + [ + "▁Movie", + -11.121039390563965 + ], + [ + "▁Years", + -11.121106147766113 + ], + [ + "▁Abu", + -11.121113777160645 + ], + [ + "rite", + -11.121150016784668 + ], + [ + "▁bias", + -11.12132453918457 + ], + [ + "▁fail", + -11.121491432189941 + ], + [ + "▁teknik", + -11.121551513671875 + ], + [ + "▁Hawk", + -11.121560096740723 + ], + [ + "▁THE", + -11.121569633483887 + ], + [ + "▁collapsed", + -11.121601104736328 + ], + [ + "▁mon", + -11.121735572814941 + ], + [ + "▁accuracy", + -11.121747970581055 + ], + [ + "▁defending", + -11.122098922729492 + ], + [ + "▁Mint", + -11.122636795043945 + ], + [ + "▁preference", + -11.122663497924805 + ], + [ + "▁Birmingham", + -11.122931480407715 + ], + [ + "▁Language", + -11.122931480407715 + ], + [ + "▁educated", + -11.123342514038086 + ], + [ + "▁mineral", + -11.123344421386719 + ], + [ + "▁mechanisms", + -11.123367309570312 + ], + [ + "▁alarm", + -11.123481750488281 + ], + [ + "▁honest", + -11.123526573181152 + ], + [ + "▁Sk", + -11.123751640319824 + ], + [ + "▁1850", + -11.12425708770752 + ], + [ + "▁cartoon", + -11.12431812286377 + ], + [ + "▁sheep", + -11.12434196472168 + ], + [ + "▁theatrical", + -11.125103950500488 + ], + [ + "▁cinema", + -11.125144958496094 + ], + [ + "▁virtual", + -11.125809669494629 + ], + [ + "PC", + -11.125925064086914 + ], + [ + "▁Classic", + -11.126096725463867 + ], + [ + "▁medications", + -11.126152038574219 + ], + [ + "▁truck", + -11.12620735168457 + ], + [ + "▁Championships", + -11.126441955566406 + ], + [ + "xe", + -11.126570701599121 + ], + [ + "▁hatch", + -11.126587867736816 + ], + [ + "▁measurements", + -11.126668930053711 + ], + [ + "▁Break", + -11.126726150512695 + ], + [ + "▁settings", + -11.126873016357422 + ], + [ + "▁bowling", + -11.126947402954102 + ], + [ + "▁belonging", + -11.12707805633545 + ], + [ + "▁predators", + -11.127355575561523 + ], + [ + "EN", + -11.127358436584473 + ], + [ + "▁cats", + -11.1275634765625 + ], + [ + "▁Kate", + -11.127572059631348 + ], + [ + "▁Wo", + -11.127593994140625 + ], + [ + "▁adds", + -11.127809524536133 + ], + [ + "▁Short", + -11.12786865234375 + ], + [ + "▁Ter", + -11.127873420715332 + ], + [ + "▁intake", + -11.127917289733887 + ], + [ + "▁saving", + -11.128658294677734 + ], + [ + "▁mèt", + -11.128806114196777 + ], + [ + "▁Liz", + -11.12885570526123 + ], + [ + "▁couldn", + -11.128913879394531 + ], + [ + "▁demolished", + -11.1290283203125 + ], + [ + "▁bitter", + -11.129351615905762 + ], + [ + "▁Craig", + -11.129447937011719 + ], + [ + "▁gather", + -11.1294527053833 + ], + [ + "▁elite", + -11.130332946777344 + ], + [ + "▁por", + -11.130512237548828 + ], + [ + "▁Jet", + -11.130614280700684 + ], + [ + "▁psycho", + -11.130670547485352 + ], + [ + "▁revised", + -11.130985260009766 + ], + [ + "č", + -11.131052017211914 + ], + [ + "▁Vancouver", + -11.131052017211914 + ], + [ + "▁cal", + -11.131298065185547 + ], + [ + "▁civilization", + -11.131388664245605 + ], + [ + "52", + -11.131409645080566 + ], + [ + "▁strain", + -11.131452560424805 + ], + [ + "ander", + -11.131525993347168 + ], + [ + "▁assets", + -11.131546974182129 + ], + [ + "▁extending", + -11.131772994995117 + ], + [ + "▁funny", + -11.131836891174316 + ], + [ + "▁Large", + -11.131858825683594 + ], + [ + "▁enabled", + -11.132107734680176 + ], + [ + "▁touring", + -11.132285118103027 + ], + [ + "▁Paper", + -11.13232135772705 + ], + [ + "ibility", + -11.132380485534668 + ], + [ + "▁hosts", + -11.132397651672363 + ], + [ + "▁server", + -11.132451057434082 + ], + [ + "▁ports", + -11.133049011230469 + ], + [ + "▁biographer", + -11.133075714111328 + ], + [ + "▁paying", + -11.13315486907959 + ], + [ + "link", + -11.133198738098145 + ], + [ + "▁item", + -11.133256912231445 + ], + [ + "▁tonnes", + -11.13330364227295 + ], + [ + "▁Fri", + -11.133541107177734 + ], + [ + "▁confirm", + -11.133584976196289 + ], + [ + "▁commentary", + -11.133590698242188 + ], + [ + "▁portrayal", + -11.133827209472656 + ], + [ + "▁tale", + -11.133979797363281 + ], + [ + "▁Muslims", + -11.134247779846191 + ], + [ + "▁Belgian", + -11.134438514709473 + ], + [ + "▁fiber", + -11.134655952453613 + ], + [ + "▁kiss", + -11.13481330871582 + ], + [ + "▁traditionally", + -11.13485336303711 + ], + [ + "▁shi", + -11.135441780090332 + ], + [ + "▁Henri", + -11.135562896728516 + ], + [ + "kes", + -11.135726928710938 + ], + [ + "RO", + -11.135870933532715 + ], + [ + "nier", + -11.13625431060791 + ], + [ + "▁Mind", + -11.136287689208984 + ], + [ + "▁350", + -11.136472702026367 + ], + [ + "▁Ran", + -11.136702537536621 + ], + [ + "▁Tru", + -11.137003898620605 + ], + [ + "▁jury", + -11.137266159057617 + ], + [ + "▁Cle", + -11.137377738952637 + ], + [ + "▁Near", + -11.137468338012695 + ], + [ + "▁gang", + -11.137908935546875 + ], + [ + "▁strengthen", + -11.137988090515137 + ], + [ + "▁electron", + -11.138035774230957 + ], + [ + "bon", + -11.13817024230957 + ], + [ + "Ch", + -11.13847827911377 + ], + [ + "▁scar", + -11.138622283935547 + ], + [ + "▁leak", + -11.138731956481934 + ], + [ + "ID", + -11.138938903808594 + ], + [ + "▁handled", + -11.139042854309082 + ], + [ + "▁Sc", + -11.139205932617188 + ], + [ + "▁riding", + -11.139436721801758 + ], + [ + "▁travels", + -11.139681816101074 + ], + [ + "aria", + -11.139997482299805 + ], + [ + "▁census", + -11.14004135131836 + ], + [ + "take", + -11.140503883361816 + ], + [ + "▁doors", + -11.140666961669922 + ], + [ + "▁crimes", + -11.140694618225098 + ], + [ + ".6", + -11.140772819519043 + ], + [ + "▁consumer", + -11.141136169433594 + ], + [ + "▁relatives", + -11.14124870300293 + ], + [ + "wl", + -11.141510009765625 + ], + [ + "▁Mason", + -11.14161205291748 + ], + [ + "bol", + -11.141831398010254 + ], + [ + "▁Iran", + -11.141839981079102 + ], + [ + "phi", + -11.141866683959961 + ], + [ + "scale", + -11.142179489135742 + ], + [ + "iest", + -11.14238166809082 + ], + [ + "▁cabinet", + -11.142416954040527 + ], + [ + "▁expectations", + -11.142597198486328 + ], + [ + "▁brilliant", + -11.14265251159668 + ], + [ + "lè", + -11.142707824707031 + ], + [ + "far", + -11.142751693725586 + ], + [ + "▁varying", + -11.142844200134277 + ], + [ + "▁Files", + -11.142916679382324 + ], + [ + "▁prevention", + -11.142956733703613 + ], + [ + "▁upset", + -11.143072128295898 + ], + [ + "▁regardless", + -11.143238067626953 + ], + [ + "▁athletic", + -11.143257141113281 + ], + [ + "▁destroying", + -11.143375396728516 + ], + [ + "▁Moscow", + -11.143458366394043 + ], + [ + "▁Ker", + -11.143523216247559 + ], + [ + "▁Swa", + -11.143696784973145 + ], + [ + "▁Conservative", + -11.144062042236328 + ], + [ + "▁1800", + -11.1441068649292 + ], + [ + "▁answers", + -11.14415168762207 + ], + [ + "▁breaks", + -11.144209861755371 + ], + [ + "▁Grace", + -11.144556999206543 + ], + [ + "▁consequence", + -11.144598007202148 + ], + [ + "▁seized", + -11.144739151000977 + ], + [ + "eck", + -11.144845962524414 + ], + [ + "▁debris", + -11.145506858825684 + ], + [ + "▁elect", + -11.145699501037598 + ], + [ + "▁eagle", + -11.145877838134766 + ], + [ + "TC", + -11.145915985107422 + ], + [ + "▁actively", + -11.14594841003418 + ], + [ + "▁Allies", + -11.145979881286621 + ], + [ + "▁bombs", + -11.1460542678833 + ], + [ + "té", + -11.146108627319336 + ], + [ + "▁Pet", + -11.146370887756348 + ], + [ + "▁succession", + -11.146583557128906 + ], + [ + "▁1898", + -11.146834373474121 + ], + [ + "▁Right", + -11.146841049194336 + ], + [ + "mir", + -11.146897315979004 + ], + [ + "▁duo", + -11.14708423614502 + ], + [ + "▁Swiss", + -11.147217750549316 + ], + [ + "▁adequate", + -11.147632598876953 + ], + [ + "cl", + -11.14771842956543 + ], + [ + "▁ticket", + -11.147789001464844 + ], + [ + "▁pur", + -11.148359298706055 + ], + [ + "▁flesh", + -11.148527145385742 + ], + [ + "holder", + -11.148598670959473 + ], + [ + "▁Ekip", + -11.148719787597656 + ], + [ + "▁immigrants", + -11.149057388305664 + ], + [ + "▁Online", + -11.149102210998535 + ], + [ + "▁versus", + -11.149123191833496 + ], + [ + "cious", + -11.149139404296875 + ], + [ + "▁Artist", + -11.149576187133789 + ], + [ + "▁followers", + -11.149822235107422 + ], + [ + "▁Ralph", + -11.149925231933594 + ], + [ + "▁graph", + -11.149972915649414 + ], + [ + "▁turret", + -11.149986267089844 + ], + [ + "▁publisher", + -11.150148391723633 + ], + [ + "▁battalions", + -11.150236129760742 + ], + [ + "▁Morrison", + -11.150243759155273 + ], + [ + "▁Judge", + -11.150440216064453 + ], + [ + "▁Rap", + -11.150486946105957 + ], + [ + "▁varies", + -11.150524139404297 + ], + [ + "▁explaining", + -11.150796890258789 + ], + [ + "▁Defense", + -11.150947570800781 + ], + [ + "▁charity", + -11.151005744934082 + ], + [ + "▁celebration", + -11.151049613952637 + ], + [ + "making", + -11.151106834411621 + ], + [ + "▁cow", + -11.151144981384277 + ], + [ + "▁guidance", + -11.151341438293457 + ], + [ + "▁accompanying", + -11.151788711547852 + ], + [ + "▁06", + -11.152045249938965 + ], + [ + "▁Defence", + -11.152217864990234 + ], + [ + "▁mathematical", + -11.152560234069824 + ], + [ + "▁interface", + -11.152617454528809 + ], + [ + "▁laugh", + -11.152713775634766 + ], + [ + "▁dual", + -11.15285873413086 + ], + [ + "▁divine", + -11.15305233001709 + ], + [ + "▁priority", + -11.153138160705566 + ], + [ + "▁inflammation", + -11.153169631958008 + ], + [ + "▁ph", + -11.153268814086914 + ], + [ + "▁medication", + -11.15326976776123 + ], + [ + "▁protecting", + -11.153767585754395 + ], + [ + "▁statistics", + -11.153973579406738 + ], + [ + "▁engaging", + -11.153983116149902 + ], + [ + "▁rejyon", + -11.153983116149902 + ], + [ + "▁View", + -11.154047012329102 + ], + [ + "▁Manuel", + -11.154109001159668 + ], + [ + "▁sudden", + -11.15414047241211 + ], + [ + "▁Est", + -11.154699325561523 + ], + [ + "▁voye", + -11.154728889465332 + ], + [ + "▁physician", + -11.154793739318848 + ], + [ + "▁Barb", + -11.154801368713379 + ], + [ + "▁consent", + -11.15482234954834 + ], + [ + "ote", + -11.155007362365723 + ], + [ + "▁blocked", + -11.155014038085938 + ], + [ + "▁Actor", + -11.15516471862793 + ], + [ + "▁Bun", + -11.155233383178711 + ], + [ + "▁quarterback", + -11.155335426330566 + ], + [ + "rov", + -11.155635833740234 + ], + [ + "leg", + -11.155786514282227 + ], + [ + "▁settle", + -11.155856132507324 + ], + [ + "▁creek", + -11.155867576599121 + ], + [ + "▁lights", + -11.155867576599121 + ], + [ + "▁judgment", + -11.156020164489746 + ], + [ + "▁sculpture", + -11.156064987182617 + ], + [ + "▁venue", + -11.156086921691895 + ], + [ + "▁1896", + -11.156167984008789 + ], + [ + "▁effectiveness", + -11.156207084655762 + ], + [ + "▁varieties", + -11.156224250793457 + ], + [ + "▁replied", + -11.156225204467773 + ], + [ + "▁movies", + -11.156756401062012 + ], + [ + "▁intent", + -11.157315254211426 + ], + [ + "key", + -11.157425880432129 + ], + [ + "▁Woman", + -11.157463073730469 + ], + [ + "rio", + -11.158025741577148 + ], + [ + "gor", + -11.158275604248047 + ], + [ + "▁feud", + -11.158294677734375 + ], + [ + "▁resident", + -11.158564567565918 + ], + [ + "▁Athletic", + -11.158674240112305 + ], + [ + "▁Talk", + -11.158841133117676 + ], + [ + "▁peaking", + -11.158893585205078 + ], + [ + "▁fold", + -11.158990859985352 + ], + [ + "▁ion", + -11.158994674682617 + ], + [ + "▁metric", + -11.159102439880371 + ], + [ + "lit", + -11.159151077270508 + ], + [ + "▁Tracy", + -11.159178733825684 + ], + [ + "▁Grey", + -11.15925121307373 + ], + [ + "▁tenure", + -11.159296035766602 + ], + [ + "▁aktè", + -11.159306526184082 + ], + [ + "▁hitting", + -11.159330368041992 + ], + [ + "thy", + -11.15934944152832 + ], + [ + "▁Did", + -11.159351348876953 + ], + [ + "▁columns", + -11.1593599319458 + ], + [ + "▁disk", + -11.159528732299805 + ], + [ + "▁dubbed", + -11.159706115722656 + ], + [ + "▁Edinburgh", + -11.160106658935547 + ], + [ + "▁calcium", + -11.160106658935547 + ], + [ + "▁interpret", + -11.160120964050293 + ], + [ + "▁gardens", + -11.16046142578125 + ], + [ + "▁Please", + -11.160538673400879 + ], + [ + "▁locally", + -11.160658836364746 + ], + [ + "▁Baron", + -11.160690307617188 + ], + [ + "▁Twitter", + -11.160720825195312 + ], + [ + "▁recommendations", + -11.1609525680542 + ], + [ + "▁kreyòl", + -11.161130905151367 + ], + [ + "▁payment", + -11.161800384521484 + ], + [ + "▁Harbor", + -11.162046432495117 + ], + [ + "▁harmful", + -11.162522315979004 + ], + [ + "loo", + -11.162603378295898 + ], + [ + "▁Come", + -11.162833213806152 + ], + [ + "▁Democrats", + -11.16288948059082 + ], + [ + "fr", + -11.163644790649414 + ], + [ + "▁wonderful", + -11.164055824279785 + ], + [ + "▁suspected", + -11.164140701293945 + ], + [ + "pet", + -11.164402961730957 + ], + [ + "▁theoretical", + -11.164623260498047 + ], + [ + "▁Sweet", + -11.164828300476074 + ], + [ + "▁loyal", + -11.165359497070312 + ], + [ + "▁Robin", + -11.165376663208008 + ], + [ + "▁Kal", + -11.165457725524902 + ], + [ + "▁Guinea", + -11.165459632873535 + ], + [ + "▁Campaign", + -11.1656494140625 + ], + [ + "▁consumers", + -11.165728569030762 + ], + [ + "▁faculty", + -11.165855407714844 + ], + [ + "▁Orange", + -11.165971755981445 + ], + [ + "▁Rihanna", + -11.166061401367188 + ], + [ + "▁warfare", + -11.166062355041504 + ], + [ + "▁ceased", + -11.166094779968262 + ], + [ + "▁Rus", + -11.166441917419434 + ], + [ + "*", + -11.166568756103516 + ], + [ + "CO", + -11.166765213012695 + ], + [ + "▁fantasy", + -11.166885375976562 + ], + [ + "▁transit", + -11.16689682006836 + ], + [ + "▁evacuated", + -11.166970252990723 + ], + [ + "▁Baseball", + -11.167330741882324 + ], + [ + "▁Helen", + -11.167372703552246 + ], + [ + "▁outcomes", + -11.167409896850586 + ], + [ + "ural", + -11.167680740356445 + ], + [ + "▁displaced", + -11.167710304260254 + ], + [ + "▁Female", + -11.167917251586914 + ], + [ + "ential", + -11.167963981628418 + ], + [ + "▁Finland", + -11.168046951293945 + ], + [ + "▁Newton", + -11.168163299560547 + ], + [ + "▁convey", + -11.168181419372559 + ], + [ + "▁resort", + -11.168551445007324 + ], + [ + "▁criteria", + -11.168742179870605 + ], + [ + "tting", + -11.168815612792969 + ], + [ + "Pa", + -11.168848037719727 + ], + [ + "view", + -11.168962478637695 + ], + [ + "▁gaining", + -11.169013977050781 + ], + [ + "▁everyday", + -11.169286727905273 + ], + [ + "▁conceived", + -11.16943645477295 + ], + [ + "▁hopes", + -11.16960620880127 + ], + [ + "▁regulation", + -11.16966724395752 + ], + [ + "▁summit", + -11.169720649719238 + ], + [ + "▁progressive", + -11.170178413391113 + ], + [ + "▁Hebrew", + -11.170188903808594 + ], + [ + "▁songwriter", + -11.170212745666504 + ], + [ + "▁anywhere", + -11.170215606689453 + ], + [ + "▁absorbed", + -11.170431137084961 + ], + [ + "▁cure", + -11.170480728149414 + ], + [ + "ulated", + -11.1705322265625 + ], + [ + "▁Armenian", + -11.171154022216797 + ], + [ + "▁tactics", + -11.171177864074707 + ], + [ + "▁Scout", + -11.171298027038574 + ], + [ + "▁Male", + -11.171353340148926 + ], + [ + "▁parks", + -11.171361923217773 + ], + [ + "▁Canterbury", + -11.171430587768555 + ], + [ + "▁transformation", + -11.171697616577148 + ], + [ + "▁Madagascar", + -11.172052383422852 + ], + [ + "mod", + -11.172235488891602 + ], + [ + "▁questioned", + -11.172554016113281 + ], + [ + "▁Official", + -11.172881126403809 + ], + [ + "▁Brad", + -11.172998428344727 + ], + [ + "▁qua", + -11.173215866088867 + ], + [ + "ule", + -11.173335075378418 + ], + [ + "▁plates", + -11.173382759094238 + ], + [ + "▁considerably", + -11.17342472076416 + ], + [ + "▁sphere", + -11.17350959777832 + ], + [ + "▁navy", + -11.17374038696289 + ], + [ + "▁provinces", + -11.17382526397705 + ], + [ + "▁stationed", + -11.17389965057373 + ], + [ + "▁stops", + -11.173956871032715 + ], + [ + "▁Queensland", + -11.174349784851074 + ], + [ + "nov", + -11.174485206604004 + ], + [ + "▁scholarship", + -11.17462158203125 + ], + [ + "▁crews", + -11.174639701843262 + ], + [ + "vor", + -11.174715042114258 + ], + [ + "▁meal", + -11.174967765808105 + ], + [ + "&", + -11.175043106079102 + ], + [ + "▁05", + -11.175174713134766 + ], + [ + "▁07", + -11.17520523071289 + ], + [ + "▁highlighted", + -11.175209999084473 + ], + [ + "▁hills", + -11.17541790008545 + ], + [ + "cra", + -11.175674438476562 + ], + [ + "Ma", + -11.175813674926758 + ], + [ + "▁amendment", + -11.17635726928711 + ], + [ + "▁Rama", + -11.176569938659668 + ], + [ + "▁Machine", + -11.176570892333984 + ], + [ + "▁joy", + -11.176592826843262 + ], + [ + "▁elevated", + -11.176743507385254 + ], + [ + "▁violation", + -11.176828384399414 + ], + [ + "▁Legend", + -11.176854133605957 + ], + [ + "▁Bobby", + -11.176923751831055 + ], + [ + "▁ranges", + -11.177265167236328 + ], + [ + "▁considers", + -11.177526473999023 + ], + [ + "▁responses", + -11.177652359008789 + ], + [ + "anna", + -11.178030014038086 + ], + [ + "▁abundant", + -11.178078651428223 + ], + [ + "ello", + -11.178314208984375 + ], + [ + "▁cleared", + -11.178350448608398 + ], + [ + "▁Salt", + -11.178380966186523 + ], + [ + "▁guarantee", + -11.178476333618164 + ], + [ + "?”", + -11.17850112915039 + ], + [ + "▁Lloyd", + -11.178913116455078 + ], + [ + "▁heaven", + -11.179136276245117 + ], + [ + "▁Stevens", + -11.179173469543457 + ], + [ + "▁confront", + -11.179239273071289 + ], + [ + "▁extensively", + -11.179313659667969 + ], + [ + "▁thirteen", + -11.179590225219727 + ], + [ + "BC", + -11.17983627319336 + ], + [ + "tics", + -11.18018627166748 + ], + [ + "▁Lan", + -11.180218696594238 + ], + [ + "▁Lower", + -11.18022632598877 + ], + [ + "▁lawsuit", + -11.180283546447754 + ], + [ + "▁Authority", + -11.180648803710938 + ], + [ + "ê", + -11.18077278137207 + ], + [ + "▁Executive", + -11.180791854858398 + ], + [ + "▁spots", + -11.181260108947754 + ], + [ + "▁errors", + -11.181501388549805 + ], + [ + "▁Kir", + -11.181859970092773 + ], + [ + "▁Freedom", + -11.181900978088379 + ], + [ + "tant", + -11.182138442993164 + ], + [ + "▁tract", + -11.182270050048828 + ], + [ + "▁conflicts", + -11.182342529296875 + ], + [ + "pit", + -11.182343482971191 + ], + [ + "▁1899", + -11.182516098022461 + ], + [ + "▁chase", + -11.18256664276123 + ], + [ + "▁flooded", + -11.183029174804688 + ], + [ + "lot", + -11.18320083618164 + ], + [ + "ancy", + -11.183426856994629 + ], + [ + "cial", + -11.18344783782959 + ], + [ + "▁illustrated", + -11.183627128601074 + ], + [ + "▁punk", + -11.183691024780273 + ], + [ + "▁photography", + -11.183786392211914 + ], + [ + "▁1893", + -11.183856010437012 + ], + [ + "▁Swift", + -11.183961868286133 + ], + [ + "▁Protection", + -11.184014320373535 + ], + [ + "▁sung", + -11.18468952178955 + ], + [ + "▁crystal", + -11.184815406799316 + ], + [ + "▁Celtic", + -11.184860229492188 + ], + [ + "▁expanding", + -11.185025215148926 + ], + [ + "▁panels", + -11.185050964355469 + ], + [ + "▁throat", + -11.18519115447998 + ], + [ + "▁directors", + -11.185440063476562 + ], + [ + "phor", + -11.18549633026123 + ], + [ + "lid", + -11.185515403747559 + ], + [ + "▁provision", + -11.185868263244629 + ], + [ + "én", + -11.185924530029297 + ], + [ + "▁Barry", + -11.185941696166992 + ], + [ + "▁Wallace", + -11.186095237731934 + ], + [ + "▁Gang", + -11.186346054077148 + ], + [ + "▁Met", + -11.18635368347168 + ], + [ + "mos", + -11.186795234680176 + ], + [ + "▁fortress", + -11.18691349029541 + ], + [ + "▁shade", + -11.187071800231934 + ], + [ + "▁avoided", + -11.187233924865723 + ], + [ + "▁dwarf", + -11.18750286102295 + ], + [ + "▁politicians", + -11.187642097473145 + ], + [ + "▁aside", + -11.188271522521973 + ], + [ + "▁provisions", + -11.188459396362305 + ], + [ + "▁scenario", + -11.188530921936035 + ], + [ + "▁Wrestling", + -11.188555717468262 + ], + [ + "▁Arctic", + -11.188666343688965 + ], + [ + "gil", + -11.188773155212402 + ], + [ + "▁cream", + -11.188868522644043 + ], + [ + "▁underwent", + -11.18897819519043 + ], + [ + "▁Ruth", + -11.189001083374023 + ], + [ + "▁dissipated", + -11.189196586608887 + ], + [ + "▁jilyen", + -11.189820289611816 + ], + [ + "▁Richmond", + -11.189836502075195 + ], + [ + "▁Stand", + -11.189837455749512 + ], + [ + "▁Girls", + -11.189967155456543 + ], + [ + "dig", + -11.189973831176758 + ], + [ + "▁streak", + -11.190241813659668 + ], + [ + "▁Hardy", + -11.190349578857422 + ], + [ + "aku", + -11.190401077270508 + ], + [ + "▁decorated", + -11.19066047668457 + ], + [ + "▁navigation", + -11.190664291381836 + ], + [ + "▁chicken", + -11.190836906433105 + ], + [ + "▁invention", + -11.191023826599121 + ], + [ + "▁contributing", + -11.1911039352417 + ], + [ + "▁rot", + -11.191147804260254 + ], + [ + "▁thrown", + -11.191155433654785 + ], + [ + "oi", + -11.191157341003418 + ], + [ + "lee", + -11.191425323486328 + ], + [ + "▁Marcel", + -11.191726684570312 + ], + [ + "▁Learn", + -11.191753387451172 + ], + [ + "▁innovative", + -11.192143440246582 + ], + [ + "▁mortality", + -11.192248344421387 + ], + [ + "▁nitrogen", + -11.19256591796875 + ], + [ + "▁Pine", + -11.192784309387207 + ], + [ + "▁extinct", + -11.192914009094238 + ], + [ + "▁differ", + -11.192987442016602 + ], + [ + "▁literally", + -11.19301986694336 + ], + [ + "-4", + -11.193071365356445 + ], + [ + "▁hunt", + -11.19309139251709 + ], + [ + "▁Carol", + -11.193266868591309 + ], + [ + "▁Leon", + -11.193310737609863 + ], + [ + "▁Brazilian", + -11.193540573120117 + ], + [ + "horn", + -11.193673133850098 + ], + [ + "ald", + -11.1940336227417 + ], + [ + "▁descent", + -11.194046974182129 + ], + [ + "▁zoo", + -11.19415283203125 + ], + [ + "RT", + -11.19468879699707 + ], + [ + "cio", + -11.194703102111816 + ], + [ + "rated", + -11.19472599029541 + ], + [ + "mble", + -11.19485092163086 + ], + [ + "▁abroad", + -11.195110321044922 + ], + [ + "▁worker", + -11.195141792297363 + ], + [ + "▁acclaim", + -11.19516658782959 + ], + [ + "▁Fleming", + -11.195320129394531 + ], + [ + "▁abstract", + -11.195377349853516 + ], + [ + "▁shifted", + -11.195473670959473 + ], + [ + "▁lord", + -11.195737838745117 + ], + [ + "phone", + -11.195738792419434 + ], + [ + "▁intelligent", + -11.195955276489258 + ], + [ + "▁collision", + -11.1961669921875 + ], + [ + "▁Orleans", + -11.196380615234375 + ], + [ + "▁Independence", + -11.1965913772583 + ], + [ + "▁killer", + -11.19659423828125 + ], + [ + "▁transform", + -11.196765899658203 + ], + [ + "▁Planet", + -11.19696044921875 + ], + [ + "tens", + -11.197465896606445 + ], + [ + "sley", + -11.197630882263184 + ], + [ + "▁kitchen", + -11.197675704956055 + ], + [ + "▁Commons", + -11.197676658630371 + ], + [ + "▁Help", + -11.197919845581055 + ], + [ + "▁Scientology", + -11.19871711730957 + ], + [ + "▁Poly", + -11.199013710021973 + ], + [ + "▁reinforced", + -11.199250221252441 + ], + [ + "▁cylinder", + -11.199356079101562 + ], + [ + "▁spectrum", + -11.199356079101562 + ], + [ + "▁ritual", + -11.199383735656738 + ], + [ + "▁topped", + -11.19943618774414 + ], + [ + "▁raids", + -11.19965648651123 + ], + [ + "▁garner", + -11.199908256530762 + ], + [ + "▁Look", + -11.2000093460083 + ], + [ + "▁cruise", + -11.200016021728516 + ], + [ + "▁Mayor", + -11.200494766235352 + ], + [ + "▁Brothers", + -11.200538635253906 + ], + [ + "▁YouTube", + -11.200634002685547 + ], + [ + "Grain", + -11.200684547424316 + ], + [ + "▁pine", + -11.20094108581543 + ], + [ + "▁indoor", + -11.200965881347656 + ], + [ + "▁consume", + -11.201325416564941 + ], + [ + "hold", + -11.201329231262207 + ], + [ + "▁Hughes", + -11.20136833190918 + ], + [ + "▁gar", + -11.201454162597656 + ], + [ + "▁Regional", + -11.201537132263184 + ], + [ + "▁epic", + -11.20166015625 + ], + [ + "▁alter", + -11.201704978942871 + ], + [ + "▁infant", + -11.201995849609375 + ], + [ + "▁Know", + -11.202003479003906 + ], + [ + "▁revolutionary", + -11.20214557647705 + ], + [ + "sville", + -11.202325820922852 + ], + [ + "▁remarkable", + -11.202448844909668 + ], + [ + "class", + -11.202460289001465 + ], + [ + "vic", + -11.202535629272461 + ], + [ + "▁Maurice", + -11.202580451965332 + ], + [ + "▁supports", + -11.202775001525879 + ], + [ + "bia", + -11.202884674072266 + ], + [ + "▁inherited", + -11.202889442443848 + ], + [ + "▁irregular", + -11.202981948852539 + ], + [ + "ject", + -11.20317554473877 + ], + [ + "▁Mega", + -11.203184127807617 + ], + [ + "▁Form", + -11.203326225280762 + ], + [ + "▁volcanic", + -11.203410148620605 + ], + [ + "OC", + -11.203441619873047 + ], + [ + "▁Fighter", + -11.203537940979004 + ], + [ + "▁Jerry", + -11.203737258911133 + ], + [ + "▁enhanced", + -11.203741073608398 + ], + [ + "▁independently", + -11.203786849975586 + ], + [ + "▁laser", + -11.203888893127441 + ], + [ + "▁Register", + -11.204071044921875 + ], + [ + "▁lots", + -11.204163551330566 + ], + [ + "▁Barbara", + -11.20451831817627 + ], + [ + "▁trace", + -11.204656600952148 + ], + [ + "▁Neil", + -11.20470905303955 + ], + [ + "▁Kings", + -11.204781532287598 + ], + [ + "▁kings", + -11.204788208007812 + ], + [ + "▁protective", + -11.205387115478516 + ], + [ + "pect", + -11.20557975769043 + ], + [ + "▁widow", + -11.205978393554688 + ], + [ + "awa", + -11.206207275390625 + ], + [ + "▁trailer", + -11.206229209899902 + ], + [ + "rac", + -11.20631217956543 + ], + [ + "VA", + -11.207100868225098 + ], + [ + "▁Image", + -11.207222938537598 + ], + [ + "hir", + -11.20749282836914 + ], + [ + "▁gravity", + -11.207554817199707 + ], + [ + "▁Voice", + -11.207599639892578 + ], + [ + "organ", + -11.207620620727539 + ], + [ + "▁drought", + -11.207913398742676 + ], + [ + "▁campaigns", + -11.208203315734863 + ], + [ + "rink", + -11.208230972290039 + ], + [ + "▁discovers", + -11.208256721496582 + ], + [ + "▁portrait", + -11.208373069763184 + ], + [ + "▁Track", + -11.208537101745605 + ], + [ + "▁Austin", + -11.208561897277832 + ], + [ + "▁swing", + -11.208587646484375 + ], + [ + "▁consistently", + -11.208640098571777 + ], + [ + "▁Pink", + -11.208714485168457 + ], + [ + "▁privilege", + -11.208768844604492 + ], + [ + "lings", + -11.208868026733398 + ], + [ + "ū", + -11.209198951721191 + ], + [ + "▁availability", + -11.209208488464355 + ], + [ + "▁(2", + -11.209373474121094 + ], + [ + "▁playoffs", + -11.209456443786621 + ], + [ + "▁drain", + -11.209478378295898 + ], + [ + "▁aren", + -11.209517478942871 + ], + [ + "▁MA", + -11.209595680236816 + ], + [ + "▁ultimate", + -11.209630966186523 + ], + [ + "▁Ernest", + -11.209633827209473 + ], + [ + "▁Boys", + -11.209709167480469 + ], + [ + "▁Beginning", + -11.20986270904541 + ], + [ + "▁Count", + -11.209871292114258 + ], + [ + "▁conquest", + -11.209943771362305 + ], + [ + "-5", + -11.209991455078125 + ], + [ + "▁healthcare", + -11.210399627685547 + ], + [ + "▁acquire", + -11.210518836975098 + ], + [ + "▁pour", + -11.210926055908203 + ], + [ + "▁ignored", + -11.211472511291504 + ], + [ + "▁telescope", + -11.211572647094727 + ], + [ + "▁affecting", + -11.21172046661377 + ], + [ + "▁RNA", + -11.211878776550293 + ], + [ + "▁Want", + -11.211957931518555 + ], + [ + "▁confused", + -11.212371826171875 + ], + [ + "▁pound", + -11.212388038635254 + ], + [ + "▁traded", + -11.212677955627441 + ], + [ + "▁Room", + -11.212691307067871 + ], + [ + "▁McCartney", + -11.212861061096191 + ], + [ + "▁cathedral", + -11.21286678314209 + ], + [ + "▁poster", + -11.212899208068848 + ], + [ + "▁Ever", + -11.213366508483887 + ], + [ + "▁trough", + -11.213739395141602 + ], + [ + "▁humor", + -11.214027404785156 + ], + [ + "Con", + -11.21414852142334 + ], + [ + "▁channels", + -11.21423625946045 + ], + [ + "▁dozen", + -11.214248657226562 + ], + [ + "▁Pas", + -11.2142972946167 + ], + [ + "olo", + -11.214309692382812 + ], + [ + "▁spine", + -11.2144136428833 + ], + [ + "onia", + -11.214529037475586 + ], + [ + "▁consist", + -11.21479606628418 + ], + [ + "▁Dwight", + -11.214805603027344 + ], + [ + "▁cooperation", + -11.214805603027344 + ], + [ + "▁moisture", + -11.215057373046875 + ], + [ + "ès", + -11.215479850769043 + ], + [ + "▁https", + -11.215600967407227 + ], + [ + "▁Zone", + -11.215843200683594 + ], + [ + "▁exciting", + -11.216103553771973 + ], + [ + "▁ver", + -11.216121673583984 + ], + [ + "▁Cou", + -11.216381072998047 + ], + [ + "▁Edwards", + -11.216753959655762 + ], + [ + "▁Quebec", + -11.216757774353027 + ], + [ + "▁syans", + -11.216777801513672 + ], + [ + "▁exploit", + -11.216853141784668 + ], + [ + "▁Indeed", + -11.217024803161621 + ], + [ + "▁Nation", + -11.217223167419434 + ], + [ + "itch", + -11.217893600463867 + ], + [ + "▁solely", + -11.218000411987305 + ], + [ + "▁Abraham", + -11.218053817749023 + ], + [ + "▁capabilities", + -11.218283653259277 + ], + [ + "active", + -11.218717575073242 + ], + [ + "▁farms", + -11.218925476074219 + ], + [ + "▁Urban", + -11.218975067138672 + ], + [ + "▁·", + -11.21898365020752 + ], + [ + "▁steal", + -11.219053268432617 + ], + [ + "▁reject", + -11.21908187866211 + ], + [ + "▁Dale", + -11.219292640686035 + ], + [ + "rik", + -11.21933650970459 + ], + [ + "▁qualities", + -11.219356536865234 + ], + [ + "run", + -11.219376564025879 + ], + [ + "▁divorce", + -11.219399452209473 + ], + [ + "▁arguing", + -11.219573974609375 + ], + [ + "▁Pala", + -11.219688415527344 + ], + [ + "▁angry", + -11.21982192993164 + ], + [ + "▁manuscript", + -11.219881057739258 + ], + [ + "▁interviews", + -11.21998119354248 + ], + [ + "eh", + -11.22012996673584 + ], + [ + "▁Yankees", + -11.220284461975098 + ], + [ + "▁segments", + -11.2205228805542 + ], + [ + "▁bigger", + -11.220860481262207 + ], + [ + "▁evacuation", + -11.220878601074219 + ], + [ + "law", + -11.220909118652344 + ], + [ + "▁upgrade", + -11.220914840698242 + ], + [ + "▁Joan", + -11.220924377441406 + ], + [ + "▁protests", + -11.221109390258789 + ], + [ + "etta", + -11.22121810913086 + ], + [ + "▁lit", + -11.221323013305664 + ], + [ + "▁Bennett", + -11.221346855163574 + ], + [ + ".7", + -11.221368789672852 + ], + [ + "▁Future", + -11.221369743347168 + ], + [ + "▁currency", + -11.22153091430664 + ], + [ + "▁salary", + -11.221536636352539 + ], + [ + "▁Bath", + -11.221570014953613 + ], + [ + "▁substances", + -11.221661567687988 + ], + [ + "▁receives", + -11.221757888793945 + ], + [ + "▁demographic", + -11.221977233886719 + ], + [ + "▁slide", + -11.222122192382812 + ], + [ + "lect", + -11.222253799438477 + ], + [ + "morph", + -11.222305297851562 + ], + [ + "▁Armstrong", + -11.222402572631836 + ], + [ + "▁detection", + -11.222684860229492 + ], + [ + "hor", + -11.222766876220703 + ], + [ + "▁Gas", + -11.22298812866211 + ], + [ + "▁heating", + -11.223647117614746 + ], + [ + "▁hi", + -11.223697662353516 + ], + [ + "▁blast", + -11.223777770996094 + ], + [ + "▁thermal", + -11.223979949951172 + ], + [ + "▁consumed", + -11.22413158416748 + ], + [ + "▁silent", + -11.22414779663086 + ], + [ + "▁bite", + -11.224275588989258 + ], + [ + "▁hardware", + -11.224276542663574 + ], + [ + "▁proceeded", + -11.224278450012207 + ], + [ + "▁Too", + -11.224296569824219 + ], + [ + "▁Pain", + -11.224804878234863 + ], + [ + "▁Yorkshire", + -11.224822998046875 + ], + [ + "▁Tang", + -11.225065231323242 + ], + [ + "char", + -11.225085258483887 + ], + [ + "▁Being", + -11.22514820098877 + ], + [ + "▁gum", + -11.225329399108887 + ], + [ + "oh", + -11.225637435913086 + ], + [ + "▁powder", + -11.225717544555664 + ], + [ + "▁similarities", + -11.22573471069336 + ], + [ + "▁Transportation", + -11.225858688354492 + ], + [ + "▁Buddhist", + -11.225894927978516 + ], + [ + "▁che", + -11.22596263885498 + ], + [ + "▁cuts", + -11.225967407226562 + ], + [ + "▁pm", + -11.226170539855957 + ], + [ + "▁1897", + -11.226278305053711 + ], + [ + "▁Reich", + -11.226319313049316 + ], + [ + "▁Televizyon", + -11.22633171081543 + ], + [ + "▁Dom", + -11.226533889770508 + ], + [ + "▁philosopher", + -11.226551055908203 + ], + [ + "▁gut", + -11.22673225402832 + ], + [ + "▁Picture", + -11.226813316345215 + ], + [ + "▁Outstanding", + -11.227005958557129 + ], + [ + "▁Capital", + -11.227022171020508 + ], + [ + "▁Players", + -11.227027893066406 + ], + [ + "▁mas", + -11.227102279663086 + ], + [ + "▁deposits", + -11.227155685424805 + ], + [ + "▁cluster", + -11.227252006530762 + ], + [ + "fri", + -11.227402687072754 + ], + [ + "tas", + -11.22745418548584 + ], + [ + "▁Ac", + -11.227473258972168 + ], + [ + "▁professionals", + -11.227509498596191 + ], + [ + "▁kilometers", + -11.227974891662598 + ], + [ + "▁magazines", + -11.22811222076416 + ], + [ + "▁AM", + -11.22816276550293 + ], + [ + "tsu", + -11.228461265563965 + ], + [ + ".8", + -11.228949546813965 + ], + [ + "▁Triple", + -11.229116439819336 + ], + [ + "▁burden", + -11.229238510131836 + ], + [ + "▁fourteen", + -11.229289054870605 + ], + [ + "▁habitats", + -11.229812622070312 + ], + [ + "▁Belle", + -11.229833602905273 + ], + [ + "▁min", + -11.229856491088867 + ], + [ + "▁Guitar", + -11.230295181274414 + ], + [ + "▁habits", + -11.230319023132324 + ], + [ + "pple", + -11.230513572692871 + ], + [ + "▁Johnston", + -11.230676651000977 + ], + [ + "▁Season", + -11.230718612670898 + ], + [ + "ground", + -11.230759620666504 + ], + [ + "▁Boat", + -11.230854988098145 + ], + [ + "▁prisoner", + -11.230875015258789 + ], + [ + "▁Kam", + -11.230914115905762 + ], + [ + "face", + -11.231351852416992 + ], + [ + "▁Wilhelm", + -11.231380462646484 + ], + [ + "▁reflection", + -11.23140811920166 + ], + [ + "▁fortune", + -11.231497764587402 + ], + [ + "▁Pittsburgh", + -11.231595993041992 + ], + [ + "▁burst", + -11.231696128845215 + ], + [ + "▁imposed", + -11.23185920715332 + ], + [ + "▁Kn", + -11.232248306274414 + ], + [ + "▁grandfather", + -11.232270240783691 + ], + [ + "▁Ground", + -11.232512474060059 + ], + [ + "▁operates", + -11.232583045959473 + ], + [ + "▁Malaysia", + -11.232611656188965 + ], + [ + "▁Steel", + -11.23277759552002 + ], + [ + "▁barrel", + -11.232802391052246 + ], + [ + "▁attractive", + -11.232897758483887 + ], + [ + "▁bottle", + -11.232912063598633 + ], + [ + "▁Globe", + -11.232983589172363 + ], + [ + "▁sponsored", + -11.233145713806152 + ], + [ + "▁sixteen", + -11.233247756958008 + ], + [ + "▁scope", + -11.233449935913086 + ], + [ + "▁voltage", + -11.233576774597168 + ], + [ + "▁Nova", + -11.233658790588379 + ], + [ + "star", + -11.233902931213379 + ], + [ + "vet", + -11.2339506149292 + ], + [ + "▁ur", + -11.234091758728027 + ], + [ + "▁outline", + -11.234105110168457 + ], + [ + "▁Costa", + -11.234126091003418 + ], + [ + "▁Howe", + -11.23414134979248 + ], + [ + "▁reforms", + -11.234429359436035 + ], + [ + "▁precise", + -11.234708786010742 + ], + [ + "▁CA", + -11.234742164611816 + ], + [ + "▁warnings", + -11.23508358001709 + ], + [ + "▁democracy", + -11.23512077331543 + ], + [ + "To", + -11.235173225402832 + ], + [ + "▁Minor", + -11.235252380371094 + ], + [ + "▁discrimination", + -11.23534107208252 + ], + [ + "dro", + -11.23537826538086 + ], + [ + "▁width", + -11.235563278198242 + ], + [ + "▁quantity", + -11.235782623291016 + ], + [ + "▁voices", + -11.23601245880127 + ], + [ + "▁viruses", + -11.236052513122559 + ], + [ + "uma", + -11.236286163330078 + ], + [ + "▁cave", + -11.236361503601074 + ], + [ + "mur", + -11.236403465270996 + ], + [ + "▁Site", + -11.236680030822754 + ], + [ + "▁anger", + -11.23679256439209 + ], + [ + "▁happening", + -11.236886978149414 + ], + [ + "▁Tell", + -11.236958503723145 + ], + [ + "oper", + -11.237189292907715 + ], + [ + "▁vector", + -11.237348556518555 + ], + [ + "▁Champion", + -11.237358093261719 + ], + [ + "loc", + -11.23751163482666 + ], + [ + "pop", + -11.237667083740234 + ], + [ + "▁Affairs", + -11.237971305847168 + ], + [ + "▁aftermath", + -11.238007545471191 + ], + [ + "▁healing", + -11.23806381225586 + ], + [ + "▁remembered", + -11.238260269165039 + ], + [ + "▁Dal", + -11.238646507263184 + ], + [ + "▁surrendered", + -11.238822937011719 + ], + [ + "▁quantities", + -11.238879203796387 + ], + [ + "▁tongue", + -11.238924026489258 + ], + [ + "FA", + -11.2389554977417 + ], + [ + "▁Given", + -11.238997459411621 + ], + [ + "erman", + -11.239096641540527 + ], + [ + "▁Zero", + -11.239384651184082 + ], + [ + "▁proposals", + -11.239533424377441 + ], + [ + "▁passion", + -11.239700317382812 + ], + [ + "▁transformed", + -11.239701271057129 + ], + [ + "▁Album", + -11.239880561828613 + ], + [ + "▁Falls", + -11.239914894104004 + ], + [ + "▁Scholar", + -11.239949226379395 + ], + [ + "▁Historical", + -11.239988327026367 + ], + [ + "▁societies", + -11.240208625793457 + ], + [ + "▁conducting", + -11.240227699279785 + ], + [ + "▁module", + -11.240370750427246 + ], + [ + "gas", + -11.240510940551758 + ], + [ + "▁Maha", + -11.240538597106934 + ], + [ + "pos", + -11.240559577941895 + ], + [ + "▁uranium", + -11.240653038024902 + ], + [ + "▁hu", + -11.24069595336914 + ], + [ + "▁1895", + -11.24087905883789 + ], + [ + "▁technological", + -11.241100311279297 + ], + [ + "▁resolved", + -11.24144172668457 + ], + [ + "▁clouds", + -11.24146842956543 + ], + [ + "▁Fin", + -11.24147891998291 + ], + [ + "▁painter", + -11.241485595703125 + ], + [ + "▁Danish", + -11.242033958435059 + ], + [ + "▁Try", + -11.24221420288086 + ], + [ + "▁Davies", + -11.242242813110352 + ], + [ + "▁978", + -11.242586135864258 + ], + [ + "▁comfort", + -11.242596626281738 + ], + [ + "▁companion", + -11.242648124694824 + ], + [ + "uit", + -11.242974281311035 + ], + [ + "mmer", + -11.243016242980957 + ], + [ + "▁exile", + -11.243070602416992 + ], + [ + "▁colored", + -11.24326229095459 + ], + [ + "▁readily", + -11.243419647216797 + ], + [ + "▁extratropical", + -11.243555068969727 + ], + [ + "▁copyright", + -11.243806838989258 + ], + [ + "▁directions", + -11.243925094604492 + ], + [ + "▁definitely", + -11.243990898132324 + ], + [ + "met", + -11.244010925292969 + ], + [ + "▁clinic", + -11.244366645812988 + ], + [ + "▁publish", + -11.244390487670898 + ], + [ + "fra", + -11.244611740112305 + ], + [ + "▁melody", + -11.244654655456543 + ], + [ + "ă", + -11.244877815246582 + ], + [ + "▁Pit", + -11.244901657104492 + ], + [ + "▁lighter", + -11.244909286499023 + ], + [ + "▁warned", + -11.244950294494629 + ], + [ + "▁Tin", + -11.245051383972168 + ], + [ + "▁participating", + -11.245100975036621 + ], + [ + "▁Performance", + -11.245125770568848 + ], + [ + "position", + -11.245168685913086 + ], + [ + "▁imagine", + -11.245182991027832 + ], + [ + "▁defences", + -11.24524211883545 + ], + [ + "▁clan", + -11.245259284973145 + ], + [ + "▁arrives", + -11.245402336120605 + ], + [ + "▁1861", + -11.245713233947754 + ], + [ + "with", + -11.245763778686523 + ], + [ + "PI", + -11.245952606201172 + ], + [ + "▁Pot", + -11.246052742004395 + ], + [ + "▁trapped", + -11.246063232421875 + ], + [ + "▁harbour", + -11.2462158203125 + ], + [ + "▁mock", + -11.246280670166016 + ], + [ + "▁Mall", + -11.246380805969238 + ], + [ + "▁texture", + -11.246384620666504 + ], + [ + "stead", + -11.246721267700195 + ], + [ + "▁Check", + -11.24691390991211 + ], + [ + "▁automatically", + -11.246964454650879 + ], + [ + "▁saint", + -11.247096061706543 + ], + [ + "▁Din", + -11.247349739074707 + ], + [ + "▁Impact", + -11.247408866882324 + ], + [ + "▁minerals", + -11.247739791870117 + ], + [ + "▁blade", + -11.248021125793457 + ], + [ + "▁positively", + -11.248113632202148 + ], + [ + "▁Norfolk", + -11.248449325561523 + ], + [ + "OL", + -11.248661041259766 + ], + [ + "ET", + -11.24875259399414 + ], + [ + "berry", + -11.248761177062988 + ], + [ + "▁highlight", + -11.24892807006836 + ], + [ + "▁Seri", + -11.249167442321777 + ], + [ + "▁Safety", + -11.249393463134766 + ], + [ + "▁Portugal", + -11.249568939208984 + ], + [ + "▁doi", + -11.24963665008545 + ], + [ + "▁Facebook", + -11.250263214111328 + ], + [ + "▁Case", + -11.250920295715332 + ], + [ + "▁rush", + -11.251060485839844 + ], + [ + "▁aesthetic", + -11.251367568969727 + ], + [ + "▁daughters", + -11.251690864562988 + ], + [ + "▁Montana", + -11.251749038696289 + ], + [ + "▁Stuart", + -11.251810073852539 + ], + [ + "▁Wonder", + -11.25184440612793 + ], + [ + "▁acquisition", + -11.252034187316895 + ], + [ + "▁bag", + -11.252086639404297 + ], + [ + "▁ST", + -11.252169609069824 + ], + [ + "hon", + -11.252523422241211 + ], + [ + "▁cooking", + -11.25259780883789 + ], + [ + "rey", + -11.25267505645752 + ], + [ + "▁civilians", + -11.252725601196289 + ], + [ + "gie", + -11.252761840820312 + ], + [ + "hem", + -11.25278377532959 + ], + [ + "▁sacred", + -11.252965927124023 + ], + [ + "▁Sara", + -11.252971649169922 + ], + [ + "▁eastward", + -11.25311279296875 + ], + [ + "▁beating", + -11.253151893615723 + ], + [ + "▁Diamond", + -11.253179550170898 + ], + [ + "▁barrier", + -11.253201484680176 + ], + [ + "lies", + -11.253278732299805 + ], + [ + "▁Cameron", + -11.253607749938965 + ], + [ + "▁undertaken", + -11.253619194030762 + ], + [ + "▁pleasure", + -11.25383186340332 + ], + [ + "▁anime", + -11.253968238830566 + ], + [ + "▁Production", + -11.254046440124512 + ], + [ + "▁symbols", + -11.254172325134277 + ], + [ + "▁Magic", + -11.254362106323242 + ], + [ + "nz", + -11.254437446594238 + ], + [ + "▁careful", + -11.254510879516602 + ], + [ + "▁nurse", + -11.254611015319824 + ], + [ + "▁configuration", + -11.254731178283691 + ], + [ + "SU", + -11.25478458404541 + ], + [ + "▁Sor", + -11.254850387573242 + ], + [ + "▁Unfortunately", + -11.255181312561035 + ], + [ + "▁flame", + -11.255460739135742 + ], + [ + "▁rebels", + -11.25564956665039 + ], + [ + "▁beats", + -11.255779266357422 + ], + [ + "▁sad", + -11.255890846252441 + ], + [ + "▁Gallery", + -11.25590705871582 + ], + [ + "▁Opera", + -11.255958557128906 + ], + [ + "▁Consider", + -11.256316184997559 + ], + [ + "▁Flying", + -11.256489753723145 + ], + [ + "▁authorized", + -11.256644248962402 + ], + [ + "▁opinions", + -11.2566499710083 + ], + [ + "▁Larry", + -11.256651878356934 + ], + [ + "▁controlling", + -11.256945610046387 + ], + [ + "▁resolve", + -11.257087707519531 + ], + [ + "▁presents", + -11.257441520690918 + ], + [ + "▁illustrate", + -11.257537841796875 + ], + [ + "▁accomplished", + -11.257735252380371 + ], + [ + "▁decisive", + -11.25788688659668 + ], + [ + "lands", + -11.258180618286133 + ], + [ + "▁aims", + -11.258251190185547 + ], + [ + "▁Harold", + -11.258257865905762 + ], + [ + "▁Half", + -11.258379936218262 + ], + [ + "▁Lab", + -11.258434295654297 + ], + [ + "▁ties", + -11.258723258972168 + ], + [ + "▁Indonesian", + -11.259079933166504 + ], + [ + "▁collections", + -11.259347915649414 + ], + [ + "▁zye", + -11.259390830993652 + ], + [ + "▁parody", + -11.259481430053711 + ], + [ + "▁adverse", + -11.259490013122559 + ], + [ + "rry", + -11.259519577026367 + ], + [ + "▁photos", + -11.259552955627441 + ], + [ + "▁pad", + -11.25989818572998 + ], + [ + "▁Micro", + -11.260026931762695 + ], + [ + "▁innovation", + -11.260101318359375 + ], + [ + "▁ir", + -11.260117530822754 + ], + [ + "▁acceptance", + -11.260133743286133 + ], + [ + "▁citizen", + -11.260200500488281 + ], + [ + "tone", + -11.26047420501709 + ], + [ + "▁biology", + -11.260529518127441 + ], + [ + "uz", + -11.260693550109863 + ], + [ + "IP", + -11.260936737060547 + ], + [ + "plo", + -11.26126480102539 + ], + [ + "▁prop", + -11.261417388916016 + ], + [ + "▁Need", + -11.261428833007812 + ], + [ + "▁Stock", + -11.261665344238281 + ], + [ + "▁feathers", + -11.261747360229492 + ], + [ + "▁Rich", + -11.261822700500488 + ], + [ + "▁Cathedral", + -11.261963844299316 + ], + [ + "roll", + -11.262103080749512 + ], + [ + "1.", + -11.262236595153809 + ], + [ + "▁Was", + -11.262304306030273 + ], + [ + "▁Click", + -11.262325286865234 + ], + [ + "▁Fun", + -11.262450218200684 + ], + [ + "▁elder", + -11.262495994567871 + ], + [ + "▁promotional", + -11.26285457611084 + ], + [ + "▁Afghanistan", + -11.262868881225586 + ], + [ + "▁Burton", + -11.26293659210205 + ], + [ + "onjitid", + -11.263092994689941 + ], + [ + "▁Detay", + -11.263097763061523 + ], + [ + "▁Pla", + -11.263401985168457 + ], + [ + "▁Latitid", + -11.263773918151855 + ], + [ + "▁Fourth", + -11.264181137084961 + ], + [ + "▁commenced", + -11.264259338378906 + ], + [ + "▁slip", + -11.264291763305664 + ], + [ + "▁towers", + -11.264302253723145 + ], + [ + "▁spur", + -11.264448165893555 + ], + [ + "▁lacking", + -11.264928817749023 + ], + [ + "▁voters", + -11.265059471130371 + ], + [ + "▁adjust", + -11.265181541442871 + ], + [ + "piece", + -11.265215873718262 + ], + [ + "▁occasional", + -11.26522445678711 + ], + [ + "▁wished", + -11.265564918518066 + ], + [ + "▁advancing", + -11.265819549560547 + ], + [ + "▁NCAA", + -11.266056060791016 + ], + [ + "▁TNA", + -11.266120910644531 + ], + [ + "▁Mann", + -11.266267776489258 + ], + [ + "▁hostile", + -11.266472816467285 + ], + [ + "▁spec", + -11.266561508178711 + ], + [ + "▁Cer", + -11.266623497009277 + ], + [ + "▁withdrawn", + -11.266677856445312 + ], + [ + "▁commercially", + -11.266769409179688 + ], + [ + "▁pupils", + -11.26688003540039 + ], + [ + "▁surfaces", + -11.266912460327148 + ], + [ + "▁fracture", + -11.267414093017578 + ], + [ + "▁Greater", + -11.267477035522461 + ], + [ + "rri", + -11.267516136169434 + ], + [ + "▁Thor", + -11.267609596252441 + ], + [ + "▁motivation", + -11.2676420211792 + ], + [ + "▁Zi", + -11.267782211303711 + ], + [ + "▁Support", + -11.267786979675293 + ], + [ + "posit", + -11.26790714263916 + ], + [ + "▁101", + -11.267987251281738 + ], + [ + "▁facilitate", + -11.267987251281738 + ], + [ + "▁bullet", + -11.268077850341797 + ], + [ + "▁Cancer", + -11.268228530883789 + ], + [ + "▁Ivan", + -11.268250465393066 + ], + [ + "▁refugees", + -11.268367767333984 + ], + [ + "itive", + -11.268376350402832 + ], + [ + "▁whale", + -11.268410682678223 + ], + [ + "▁metals", + -11.26867389678955 + ], + [ + "nen", + -11.268766403198242 + ], + [ + "▁safely", + -11.268806457519531 + ], + [ + "▁reinforcements", + -11.268810272216797 + ], + [ + "▁breach", + -11.269062995910645 + ], + [ + "▁feared", + -11.269126892089844 + ], + [ + "▁Spin", + -11.269152641296387 + ], + [ + "▁Oscar", + -11.269262313842773 + ], + [ + "▁sediment", + -11.269340515136719 + ], + [ + "▁viewing", + -11.269340515136719 + ], + [ + "▁Bow", + -11.26936149597168 + ], + [ + "▁roadway", + -11.26976490020752 + ], + [ + "▁searching", + -11.269775390625 + ], + [ + "▁client", + -11.269929885864258 + ], + [ + "▁smell", + -11.269953727722168 + ], + [ + "esh", + -11.270140647888184 + ], + [ + "▁archaeological", + -11.270153045654297 + ], + [ + "ense", + -11.270183563232422 + ], + [ + "▁boss", + -11.270283699035645 + ], + [ + "▁harvest", + -11.270298957824707 + ], + [ + "▁hoping", + -11.27066707611084 + ], + [ + "▁diplomatic", + -11.270735740661621 + ], + [ + "ø", + -11.270759582519531 + ], + [ + "▁Bern", + -11.270805358886719 + ], + [ + "▁Cricket", + -11.27106761932373 + ], + [ + "▁SA", + -11.271160125732422 + ], + [ + "▁icon", + -11.271281242370605 + ], + [ + "▁fra", + -11.271330833435059 + ], + [ + "▁discharge", + -11.271684646606445 + ], + [ + "▁ourselves", + -11.271753311157227 + ], + [ + "heim", + -11.272370338439941 + ], + [ + "▁Marge", + -11.272544860839844 + ], + [ + "media", + -11.27268123626709 + ], + [ + "Mo", + -11.272804260253906 + ], + [ + "▁115", + -11.27295207977295 + ], + [ + "De", + -11.273037910461426 + ], + [ + "tit", + -11.273159980773926 + ], + [ + "▁chances", + -11.273622512817383 + ], + [ + "nel", + -11.273763656616211 + ], + [ + "▁Hop", + -11.273788452148438 + ], + [ + "▁discussions", + -11.274173736572266 + ], + [ + "uli", + -11.274309158325195 + ], + [ + "▁intermediate", + -11.274504661560059 + ], + [ + "▁nutrition", + -11.274642944335938 + ], + [ + "▁pocket", + -11.27496337890625 + ], + [ + "eller", + -11.275004386901855 + ], + [ + "phan", + -11.275106430053711 + ], + [ + "▁SE", + -11.275303840637207 + ], + [ + "▁compromise", + -11.275322914123535 + ], + [ + "▁aggregate", + -11.275423049926758 + ], + [ + "pol", + -11.275482177734375 + ], + [ + "▁04", + -11.275586128234863 + ], + [ + "▁Marvel", + -11.275800704956055 + ], + [ + "ridge", + -11.276154518127441 + ], + [ + "IA", + -11.276176452636719 + ], + [ + "▁acre", + -11.276354789733887 + ], + [ + "▁Terry", + -11.276604652404785 + ], + [ + "▁greenhouse", + -11.276655197143555 + ], + [ + "▁Kit", + -11.27685546875 + ], + [ + "▁synthesis", + -11.27727222442627 + ], + [ + "atus", + -11.277484893798828 + ], + [ + "▁Bradman", + -11.277493476867676 + ], + [ + "▁creature", + -11.277626037597656 + ], + [ + "mut", + -11.278003692626953 + ], + [ + "▁worry", + -11.278196334838867 + ], + [ + "rating", + -11.2782621383667 + ], + [ + "▁scout", + -11.278546333312988 + ], + [ + "▁choosing", + -11.278644561767578 + ], + [ + "hole", + -11.27876091003418 + ], + [ + "▁DS", + -11.279379844665527 + ], + [ + "isyon", + -11.279428482055664 + ], + [ + "▁ramp", + -11.279463768005371 + ], + [ + "▁speculation", + -11.279589653015137 + ], + [ + "vil", + -11.27963924407959 + ], + [ + "▁goddess", + -11.27979850769043 + ], + [ + "▁Cass", + -11.279977798461914 + ], + [ + "▁historically", + -11.280007362365723 + ], + [ + "▁atmospheric", + -11.280028343200684 + ], + [ + "▁Joint", + -11.280177116394043 + ], + [ + "rah", + -11.280196189880371 + ], + [ + "mine", + -11.280267715454102 + ], + [ + "uda", + -11.280279159545898 + ], + [ + "▁Yes", + -11.28032112121582 + ], + [ + "▁invented", + -11.28032112121582 + ], + [ + "which", + -11.280468940734863 + ], + [ + "▁legacy", + -11.280564308166504 + ], + [ + "zar", + -11.280818939208984 + ], + [ + "▁Shiva", + -11.281149864196777 + ], + [ + "▁speaker", + -11.281428337097168 + ], + [ + "rb", + -11.281474113464355 + ], + [ + "▁quit", + -11.281718254089355 + ], + [ + "▁Dallas", + -11.281904220581055 + ], + [ + "▁Herald", + -11.282373428344727 + ], + [ + "▁Justin", + -11.282387733459473 + ], + [ + "▁drummer", + -11.282444953918457 + ], + [ + "▁Bryan", + -11.282607078552246 + ], + [ + "▁oversee", + -11.28269100189209 + ], + [ + "ulate", + -11.282696723937988 + ], + [ + "ope", + -11.2828369140625 + ], + [ + "▁Monday", + -11.282933235168457 + ], + [ + "▁fraction", + -11.283110618591309 + ], + [ + "▁highways", + -11.28315258026123 + ], + [ + "tti", + -11.283157348632812 + ], + [ + "▁matematisyen", + -11.283265113830566 + ], + [ + "▁wrestling", + -11.283265113830566 + ], + [ + "▁ecological", + -11.283507347106934 + ], + [ + "kel", + -11.283769607543945 + ], + [ + "igh", + -11.283965110778809 + ], + [ + "BS", + -11.284224510192871 + ], + [ + "tine", + -11.284333229064941 + ], + [ + "▁Isaac", + -11.284442901611328 + ], + [ + "▁maybe", + -11.284613609313965 + ], + [ + "▁fo", + -11.284626960754395 + ], + [ + "▁opposing", + -11.284655570983887 + ], + [ + "▁rendered", + -11.285470008850098 + ], + [ + "▁complement", + -11.285686492919922 + ], + [ + "▁colours", + -11.285810470581055 + ], + [ + "ied", + -11.28616714477539 + ], + [ + "▁Def", + -11.286368370056152 + ], + [ + "gro", + -11.286447525024414 + ], + [ + "▁settlements", + -11.286605834960938 + ], + [ + "▁spray", + -11.286628723144531 + ], + [ + "▁collecting", + -11.286717414855957 + ], + [ + "chu", + -11.28689193725586 + ], + [ + "▁Thunder", + -11.287041664123535 + ], + [ + "▁extinction", + -11.28705883026123 + ], + [ + "CR", + -11.287510871887207 + ], + [ + "▁Laura", + -11.287596702575684 + ], + [ + "fim", + -11.287943840026855 + ], + [ + "uni", + -11.288098335266113 + ], + [ + "lves", + -11.288220405578613 + ], + [ + "▁Metropolitan", + -11.288372993469238 + ], + [ + "▁Gau", + -11.288385391235352 + ], + [ + "▁correspond", + -11.288400650024414 + ], + [ + "▁confident", + -11.288532257080078 + ], + [ + "▁Hen", + -11.288558959960938 + ], + [ + "▁jo", + -11.288573265075684 + ], + [ + "▁cleaning", + -11.288628578186035 + ], + [ + "new", + -11.288673400878906 + ], + [ + "▁zones", + -11.288681030273438 + ], + [ + "▁tar", + -11.288700103759766 + ], + [ + "EC", + -11.288817405700684 + ], + [ + "▁Kane", + -11.288888931274414 + ], + [ + "vè", + -11.289300918579102 + ], + [ + "▁threatening", + -11.28947925567627 + ], + [ + "▁Por", + -11.289505004882812 + ], + [ + "▁Lie", + -11.289558410644531 + ], + [ + "▁closure", + -11.28964900970459 + ], + [ + "▁01", + -11.289726257324219 + ], + [ + "▁nickname", + -11.290157318115234 + ], + [ + "▁Electronic", + -11.290291786193848 + ], + [ + "▁Pur", + -11.290480613708496 + ], + [ + "▁trauma", + -11.290633201599121 + ], + [ + "MP", + -11.290751457214355 + ], + [ + "▁1889", + -11.290907859802246 + ], + [ + "▁relating", + -11.29094123840332 + ], + [ + "▁specialized", + -11.29099178314209 + ], + [ + "ord", + -11.291451454162598 + ], + [ + "▁reserved", + -11.29146671295166 + ], + [ + "▁Oslo", + -11.291695594787598 + ], + [ + "▁Bert", + -11.292034149169922 + ], + [ + "▁airfield", + -11.292054176330566 + ], + [ + "kon", + -11.292067527770996 + ], + [ + "▁mysterious", + -11.29210376739502 + ], + [ + "▁Bear", + -11.292145729064941 + ], + [ + "▁Saturn", + -11.292226791381836 + ], + [ + "▁fungus", + -11.292384147644043 + ], + [ + "▁traits", + -11.292397499084473 + ], + [ + "▁soap", + -11.292518615722656 + ], + [ + "▁Branch", + -11.29255485534668 + ], + [ + "▁recurring", + -11.292598724365234 + ], + [ + "ink", + -11.292871475219727 + ], + [ + "▁upcoming", + -11.293060302734375 + ], + [ + "▁reef", + -11.293195724487305 + ], + [ + "▁»", + -11.293197631835938 + ], + [ + "▁reconstruction", + -11.29335880279541 + ], + [ + "bach", + -11.293506622314453 + ], + [ + "mission", + -11.29360580444336 + ], + [ + "▁perfectly", + -11.293805122375488 + ], + [ + "▁Leo", + -11.293961524963379 + ], + [ + "▁lip", + -11.294218063354492 + ], + [ + "▁Kas", + -11.294437408447266 + ], + [ + "▁Rangers", + -11.29446029663086 + ], + [ + "▁bishop", + -11.294656753540039 + ], + [ + "0.", + -11.294891357421875 + ], + [ + "▁Fen", + -11.294942855834961 + ], + [ + "cular", + -11.295112609863281 + ], + [ + "▁judges", + -11.295180320739746 + ], + [ + "she", + -11.295661926269531 + ], + [ + "▁kills", + -11.295744895935059 + ], + [ + "▁Level", + -11.295835494995117 + ], + [ + "▁Sad", + -11.296117782592773 + ], + [ + "▁ingredients", + -11.296358108520508 + ], + [ + "▁mistake", + -11.296485900878906 + ], + [ + "CI", + -11.296551704406738 + ], + [ + "ña", + -11.296744346618652 + ], + [ + "▁boilers", + -11.296748161315918 + ], + [ + "▁Row", + -11.297062873840332 + ], + [ + "verse", + -11.297102928161621 + ], + [ + "▁Temp", + -11.29724407196045 + ], + [ + "▁Fur", + -11.297300338745117 + ], + [ + "▁anchor", + -11.297377586364746 + ], + [ + "cas", + -11.297432899475098 + ], + [ + "ont", + -11.297524452209473 + ], + [ + "▁Highland", + -11.297558784484863 + ], + [ + "▁Others", + -11.29763412475586 + ], + [ + "▁outstanding", + -11.297642707824707 + ], + [ + "cite", + -11.297697067260742 + ], + [ + "▁Junior", + -11.29772663116455 + ], + [ + "▁Wii", + -11.298018455505371 + ], + [ + "▁AC", + -11.298090934753418 + ], + [ + "any", + -11.298150062561035 + ], + [ + "▁overwhelming", + -11.298320770263672 + ], + [ + "▁conscious", + -11.298369407653809 + ], + [ + "▁sailing", + -11.298372268676758 + ], + [ + "▁juvenile", + -11.298431396484375 + ], + [ + "ologists", + -11.298436164855957 + ], + [ + "dh", + -11.298540115356445 + ], + [ + "▁declare", + -11.298602104187012 + ], + [ + "▁totally", + -11.298807144165039 + ], + [ + "▁collective", + -11.298813819885254 + ], + [ + "▁FBI", + -11.298872947692871 + ], + [ + "▁sentiment", + -11.298995971679688 + ], + [ + "▁knight", + -11.29919719696045 + ], + [ + "rup", + -11.299230575561523 + ], + [ + "▁lanes", + -11.299320220947266 + ], + [ + "▁proud", + -11.299578666687012 + ], + [ + "▁dies", + -11.299723625183105 + ], + [ + "tier", + -11.29983139038086 + ], + [ + "▁Nas", + -11.299835205078125 + ], + [ + "▁Rezime", + -11.299842834472656 + ], + [ + "▁erosion", + -11.299842834472656 + ], + [ + "▁Access", + -11.299883842468262 + ], + [ + "▁southeastern", + -11.299954414367676 + ], + [ + "▁Euro", + -11.299958229064941 + ], + [ + "ING", + -11.300028800964355 + ], + [ + "▁Rule", + -11.300044059753418 + ], + [ + "▁incorporate", + -11.300233840942383 + ], + [ + "▁destroyer", + -11.300328254699707 + ], + [ + "▁lakes", + -11.300806999206543 + ], + [ + "▁legitimate", + -11.301020622253418 + ], + [ + "▁tempo", + -11.301200866699219 + ], + [ + "▁comparing", + -11.301257133483887 + ], + [ + "py", + -11.301294326782227 + ], + [ + "▁compiled", + -11.301348686218262 + ], + [ + "▁reasonable", + -11.301350593566895 + ], + [ + "▁Nancy", + -11.301695823669434 + ], + [ + "▁oriented", + -11.301860809326172 + ], + [ + "ature", + -11.301915168762207 + ], + [ + "▁Against", + -11.30196475982666 + ], + [ + "▁champions", + -11.3020658493042 + ], + [ + "▁Ent", + -11.30212116241455 + ], + [ + "▁Av", + -11.302125930786133 + ], + [ + "ín", + -11.302192687988281 + ], + [ + "▁Athens", + -11.302221298217773 + ], + [ + "▁Que", + -11.302557945251465 + ], + [ + "▁Montgomery", + -11.302672386169434 + ], + [ + "▁stamp", + -11.303019523620605 + ], + [ + "▁revival", + -11.303144454956055 + ], + [ + "wal", + -11.30319595336914 + ], + [ + "▁mythology", + -11.303220748901367 + ], + [ + "▁Cut", + -11.303285598754883 + ], + [ + "▁geo", + -11.303442001342773 + ], + [ + "▁relocated", + -11.303531646728516 + ], + [ + "▁commit", + -11.303604125976562 + ], + [ + "▁estatistik", + -11.303616523742676 + ], + [ + "▁Testament", + -11.303617477416992 + ], + [ + "▁Alpha", + -11.30363941192627 + ], + [ + "itu", + -11.303892135620117 + ], + [ + "▁travelling", + -11.304031372070312 + ], + [ + "nam", + -11.30409049987793 + ], + [ + "▁disappear", + -11.304320335388184 + ], + [ + "oth", + -11.30445671081543 + ], + [ + ".|", + -11.304490089416504 + ], + [ + "▁Gay", + -11.304630279541016 + ], + [ + "gna", + -11.30469036102295 + ], + [ + "▁mystery", + -11.304800033569336 + ], + [ + "bat", + -11.304803848266602 + ], + [ + "▁guy", + -11.30494499206543 + ], + [ + "▁Gla", + -11.305074691772461 + ], + [ + "▁Body", + -11.305211067199707 + ], + [ + "▁Buffalo", + -11.305509567260742 + ], + [ + "▁Sid", + -11.30572509765625 + ], + [ + "uf", + -11.305767059326172 + ], + [ + "▁peninsula", + -11.305983543395996 + ], + [ + "No", + -11.305990219116211 + ], + [ + "craft", + -11.306083679199219 + ], + [ + "▁Cell", + -11.306382179260254 + ], + [ + "▁1894", + -11.306559562683105 + ], + [ + "kout", + -11.306696891784668 + ], + [ + "▁limitations", + -11.30685806274414 + ], + [ + "▁Labor", + -11.306920051574707 + ], + [ + "▁manifest", + -11.306987762451172 + ], + [ + "front", + -11.307381629943848 + ], + [ + "▁sized", + -11.307438850402832 + ], + [ + "▁dose", + -11.307570457458496 + ], + [ + "▁flavor", + -11.308116912841797 + ], + [ + "▁damaging", + -11.30814266204834 + ], + [ + "▁corruption", + -11.308464050292969 + ], + [ + "▁commanding", + -11.308493614196777 + ], + [ + "▁Rep", + -11.308905601501465 + ], + [ + "quest", + -11.308932304382324 + ], + [ + "▁verb", + -11.308959007263184 + ], + [ + "▁Adult", + -11.309133529663086 + ], + [ + "▁consensus", + -11.309305191040039 + ], + [ + "▁thickness", + -11.309345245361328 + ], + [ + "hel", + -11.309526443481445 + ], + [ + "pr", + -11.309526443481445 + ], + [ + "▁Pam", + -11.309907913208008 + ], + [ + "▁dome", + -11.310073852539062 + ], + [ + "mag", + -11.310096740722656 + ], + [ + "▁streams", + -11.310097694396973 + ], + [ + "▁scandal", + -11.310188293457031 + ], + [ + "▁nautical", + -11.310256004333496 + ], + [ + "pher", + -11.310464859008789 + ], + [ + "▁mud", + -11.310493469238281 + ], + [ + "▁explored", + -11.310596466064453 + ], + [ + "▁discussing", + -11.310733795166016 + ], + [ + "▁mice", + -11.31087589263916 + ], + [ + "ogen", + -11.310989379882812 + ], + [ + "▁memories", + -11.31120777130127 + ], + [ + "▁CBS", + -11.311264038085938 + ], + [ + "▁poison", + -11.311619758605957 + ], + [ + "▁correctly", + -11.31179141998291 + ], + [ + "NA", + -11.312129974365234 + ], + [ + "▁Czech", + -11.312161445617676 + ], + [ + "▁busy", + -11.312438011169434 + ], + [ + "▁Jar", + -11.312440872192383 + ], + [ + "▁tissues", + -11.312561988830566 + ], + [ + "▁disappeared", + -11.31257152557373 + ], + [ + "ér", + -11.31273078918457 + ], + [ + "▁Alliance", + -11.312877655029297 + ], + [ + "itude", + -11.312908172607422 + ], + [ + "▁175", + -11.313100814819336 + ], + [ + "▁Churchill", + -11.313109397888184 + ], + [ + "fort", + -11.313150405883789 + ], + [ + "▁Ages", + -11.313188552856445 + ], + [ + "▁Lock", + -11.313224792480469 + ], + [ + "nge", + -11.313427925109863 + ], + [ + "▁recall", + -11.313860893249512 + ], + [ + "▁anticipated", + -11.313982009887695 + ], + [ + "vit", + -11.314040184020996 + ], + [ + "▁ceiling", + -11.314069747924805 + ], + [ + "▁territorial", + -11.314069747924805 + ], + [ + "].", + -11.314162254333496 + ], + [ + "▁Prix", + -11.314417839050293 + ], + [ + "▁Clarke", + -11.314536094665527 + ], + [ + "SE", + -11.31466007232666 + ], + [ + "▁atoms", + -11.314667701721191 + ], + [ + "▁bin", + -11.314740180969238 + ], + [ + "een", + -11.315369606018066 + ], + [ + "▁depicts", + -11.3160400390625 + ], + [ + "▁Jun", + -11.316092491149902 + ], + [ + "▁pipe", + -11.316143035888672 + ], + [ + "▁housed", + -11.316161155700684 + ], + [ + "▁gu", + -11.316174507141113 + ], + [ + "▁skeleton", + -11.316460609436035 + ], + [ + "▁treating", + -11.316923141479492 + ], + [ + "▁renewed", + -11.316962242126465 + ], + [ + "▁beaten", + -11.317214965820312 + ], + [ + "▁elderly", + -11.317355155944824 + ], + [ + "▁silence", + -11.31742000579834 + ], + [ + "SD", + -11.317495346069336 + ], + [ + "NT", + -11.317590713500977 + ], + [ + "pra", + -11.317621231079102 + ], + [ + "▁Trophy", + -11.3179292678833 + ], + [ + "vant", + -11.317946434020996 + ], + [ + "▁Cher", + -11.318120956420898 + ], + [ + "▁Constantine", + -11.318235397338867 + ], + [ + "mini", + -11.3183012008667 + ], + [ + "slav", + -11.31840705871582 + ], + [ + "▁odd", + -11.318462371826172 + ], + [ + "▁Sega", + -11.318572044372559 + ], + [ + "▁María", + -11.318731307983398 + ], + [ + "▁Mé", + -11.318878173828125 + ], + [ + "▁identifying", + -11.318906784057617 + ], + [ + "cis", + -11.31900405883789 + ], + [ + "lea", + -11.319207191467285 + ], + [ + "▁Brooks", + -11.319231033325195 + ], + [ + "▁congregation", + -11.319336891174316 + ], + [ + "▁Nebraska", + -11.31957721710205 + ], + [ + "▁urged", + -11.319676399230957 + ], + [ + "▁Friends", + -11.319716453552246 + ], + [ + "▁Sign", + -11.319738388061523 + ], + [ + "cation", + -11.319955825805664 + ], + [ + "▁Jamaica", + -11.320058822631836 + ], + [ + "▁stake", + -11.320136070251465 + ], + [ + "▁Inside", + -11.320158004760742 + ], + [ + "▁rivalry", + -11.32019329071045 + ], + [ + "▁Studio", + -11.320263862609863 + ], + [ + "▁wage", + -11.320730209350586 + ], + [ + "▁recruit", + -11.32076358795166 + ], + [ + "▁Sultan", + -11.320821762084961 + ], + [ + "▁declaration", + -11.321019172668457 + ], + [ + "▁Total", + -11.321033477783203 + ], + [ + "▁capturing", + -11.321259498596191 + ], + [ + "▁receiver", + -11.321341514587402 + ], + [ + "▁progression", + -11.321396827697754 + ], + [ + "▁Return", + -11.321453094482422 + ], + [ + "▁recipient", + -11.321499824523926 + ], + [ + "▁Emmy", + -11.321586608886719 + ], + [ + "▁intersects", + -11.321710586547852 + ], + [ + "▁praising", + -11.321741104125977 + ], + [ + "▁dropping", + -11.321907043457031 + ], + [ + "MC", + -11.322115898132324 + ], + [ + "HL", + -11.322427749633789 + ], + [ + "▁employee", + -11.322786331176758 + ], + [ + "rea", + -11.323103904724121 + ], + [ + "▁cheap", + -11.323166847229004 + ], + [ + "Ro", + -11.323448181152344 + ], + [ + "tory", + -11.323497772216797 + ], + [ + "▁manual", + -11.323641777038574 + ], + [ + "▁renewable", + -11.323755264282227 + ], + [ + "▁undergo", + -11.32386589050293 + ], + [ + "▁stolen", + -11.324030876159668 + ], + [ + "▁harder", + -11.324286460876465 + ], + [ + "▁Yon", + -11.324544906616211 + ], + [ + "▁Attorney", + -11.32463264465332 + ], + [ + "▁Youth", + -11.32469367980957 + ], + [ + "▁boom", + -11.324786186218262 + ], + [ + "▁Shah", + -11.324792861938477 + ], + [ + "eon", + -11.324889183044434 + ], + [ + "▁insect", + -11.325013160705566 + ], + [ + "▁Pictures", + -11.325087547302246 + ], + [ + "....", + -11.325263977050781 + ], + [ + "▁plenty", + -11.325356483459473 + ], + [ + "life", + -11.32602596282959 + ], + [ + "▁millimeter", + -11.326085090637207 + ], + [ + "▁Bang", + -11.326249122619629 + ], + [ + "hil", + -11.32640552520752 + ], + [ + "▁OF", + -11.326509475708008 + ], + [ + "place", + -11.326586723327637 + ], + [ + "▁sketch", + -11.326868057250977 + ], + [ + "▁tender", + -11.32706069946289 + ], + [ + "▁pent", + -11.327066421508789 + ], + [ + "▁1891", + -11.327136993408203 + ], + [ + "▁arose", + -11.327157020568848 + ], + [ + "▁drag", + -11.327296257019043 + ], + [ + "▁eventual", + -11.327516555786133 + ], + [ + "lter", + -11.327648162841797 + ], + [ + "▁bombardment", + -11.327889442443848 + ], + [ + "▁administered", + -11.327973365783691 + ], + [ + "▁foster", + -11.328340530395508 + ], + [ + "sum", + -11.328474998474121 + ], + [ + "ily", + -11.328590393066406 + ], + [ + "▁reyalizatè", + -11.328743934631348 + ], + [ + "chin", + -11.328826904296875 + ], + [ + "ending", + -11.329123497009277 + ], + [ + "iki", + -11.329124450683594 + ], + [ + "▁suspension", + -11.329228401184082 + ], + [ + "▁Raymond", + -11.329277992248535 + ], + [ + "▁Amazon", + -11.329474449157715 + ], + [ + "▁Electric", + -11.329593658447266 + ], + [ + "▁relieve", + -11.32972240447998 + ], + [ + "▁biography", + -11.329790115356445 + ], + [ + "bank", + -11.329826354980469 + ], + [ + "shot", + -11.329971313476562 + ], + [ + "▁evolutionary", + -11.330041885375977 + ], + [ + "stro", + -11.330103874206543 + ], + [ + "He", + -11.330159187316895 + ], + [ + "▁instructor", + -11.330222129821777 + ], + [ + "num", + -11.33042049407959 + ], + [ + "▁104", + -11.330533027648926 + ], + [ + "▁tobacco", + -11.33068561553955 + ], + [ + "inus", + -11.330794334411621 + ], + [ + "▁merged", + -11.330830574035645 + ], + [ + "▁costume", + -11.330972671508789 + ], + [ + "▁Gan", + -11.331009864807129 + ], + [ + "▁Champions", + -11.331128120422363 + ], + [ + "▁caution", + -11.331202507019043 + ], + [ + "▁flee", + -11.331249237060547 + ], + [ + "▁«", + -11.331249237060547 + ], + [ + "▁Dublin", + -11.331273078918457 + ], + [ + "▁gauge", + -11.331415176391602 + ], + [ + "▁recruited", + -11.331548690795898 + ], + [ + "▁Cru", + -11.331803321838379 + ], + [ + "▁shed", + -11.331857681274414 + ], + [ + "▁experiencing", + -11.331899642944336 + ], + [ + "▁photograph", + -11.331936836242676 + ], + [ + "▁bulb", + -11.331942558288574 + ], + [ + "▁Fisher", + -11.332106590270996 + ], + [ + "▁harbor", + -11.332143783569336 + ], + [ + "▁absolutely", + -11.332311630249023 + ], + [ + "▁Arch", + -11.332773208618164 + ], + [ + "▁Kor", + -11.332931518554688 + ], + [ + "▁subtle", + -11.333017349243164 + ], + [ + "▁suggestion", + -11.333131790161133 + ], + [ + "▁volunteer", + -11.333295822143555 + ], + [ + "▁amino", + -11.333372116088867 + ], + [ + "agh", + -11.333385467529297 + ], + [ + "▁03", + -11.333390235900879 + ], + [ + "▁quoted", + -11.333913803100586 + ], + [ + "adi", + -11.33437442779541 + ], + [ + "▁Franco", + -11.334511756896973 + ], + [ + "▁Krist", + -11.334716796875 + ], + [ + "made", + -11.335070610046387 + ], + [ + "▁fulfill", + -11.33525562286377 + ], + [ + "SO", + -11.33617115020752 + ], + [ + "▁protocol", + -11.336297035217285 + ], + [ + "▁Leonard", + -11.336359977722168 + ], + [ + "▁throwing", + -11.336421966552734 + ], + [ + "▁Walt", + -11.336566925048828 + ], + [ + "▁advances", + -11.336673736572266 + ], + [ + "yne", + -11.336722373962402 + ], + [ + "▁complications", + -11.3367919921875 + ], + [ + "dam", + -11.336849212646484 + ], + [ + "uous", + -11.337050437927246 + ], + [ + "▁Rather", + -11.337079048156738 + ], + [ + "▁tourist", + -11.337313652038574 + ], + [ + "▁cloth", + -11.337353706359863 + ], + [ + "▁Mix", + -11.337449073791504 + ], + [ + "▁triumph", + -11.337506294250488 + ], + [ + "▁Resources", + -11.33757495880127 + ], + [ + "▁manga", + -11.337823867797852 + ], + [ + "▁Spider", + -11.337857246398926 + ], + [ + "▁measurement", + -11.338059425354004 + ], + [ + "▁Perhaps", + -11.338240623474121 + ], + [ + "ees", + -11.338351249694824 + ], + [ + "▁interfere", + -11.338550567626953 + ], + [ + "▁collector", + -11.338601112365723 + ], + [ + "▁municipal", + -11.338687896728516 + ], + [ + "yal", + -11.338834762573242 + ], + [ + "▁mast", + -11.338896751403809 + ], + [ + "mail", + -11.338913917541504 + ], + [ + "▁Climate", + -11.338973999023438 + ], + [ + "▁Eight", + -11.339073181152344 + ], + [ + "▁joke", + -11.339096069335938 + ], + [ + "▁nineteenth", + -11.339376449584961 + ], + [ + "▁acknowledge", + -11.339455604553223 + ], + [ + "▁eligible", + -11.33946418762207 + ], + [ + "▁silk", + -11.339543342590332 + ], + [ + "▁predominantly", + -11.339598655700684 + ], + [ + "▁achieving", + -11.339709281921387 + ], + [ + "pat", + -11.339876174926758 + ], + [ + "▁Credit", + -11.339993476867676 + ], + [ + "▁tracking", + -11.340286254882812 + ], + [ + "imp", + -11.34034252166748 + ], + [ + "iro", + -11.340361595153809 + ], + [ + "▁binding", + -11.340362548828125 + ], + [ + "▁240", + -11.340513229370117 + ], + [ + "▁1888", + -11.340654373168945 + ], + [ + "▁concentrations", + -11.340662002563477 + ], + [ + "▁Range", + -11.340958595275879 + ], + [ + "▁Cyrus", + -11.341468811035156 + ], + [ + "▁Flag", + -11.341552734375 + ], + [ + "▁magnet", + -11.341583251953125 + ], + [ + "▁1892", + -11.341747283935547 + ], + [ + "tiv", + -11.341989517211914 + ], + [ + "▁arena", + -11.342259407043457 + ], + [ + "▁valve", + -11.342484474182129 + ], + [ + "▁complained", + -11.342756271362305 + ], + [ + "▁realm", + -11.342878341674805 + ], + [ + "▁toured", + -11.34318733215332 + ], + [ + "▁Sou", + -11.343328475952148 + ], + [ + "▁Ir", + -11.343384742736816 + ], + [ + "wn", + -11.343621253967285 + ], + [ + "▁blame", + -11.343884468078613 + ], + [ + "▁peaceful", + -11.343960762023926 + ], + [ + "▁Burke", + -11.344159126281738 + ], + [ + "▁pursued", + -11.344301223754883 + ], + [ + "tical", + -11.344447135925293 + ], + [ + "▁persuaded", + -11.344747543334961 + ], + [ + "▁lesser", + -11.344866752624512 + ], + [ + "▁JTWC", + -11.345113754272461 + ], + [ + "▁welcome", + -11.345113754272461 + ], + [ + "▁thread", + -11.345121383666992 + ], + [ + "▁tear", + -11.345316886901855 + ], + [ + "▁exterior", + -11.345359802246094 + ], + [ + "▁specified", + -11.345399856567383 + ], + [ + "▁oxide", + -11.345763206481934 + ], + [ + "mot", + -11.345996856689453 + ], + [ + "▁Sheffield", + -11.346100807189941 + ], + [ + "lé", + -11.346210479736328 + ], + [ + "gus", + -11.346282005310059 + ], + [ + "▁releasing", + -11.346346855163574 + ], + [ + "ño", + -11.34634780883789 + ], + [ + "▁veteran", + -11.34647274017334 + ], + [ + "▁Wells", + -11.34669303894043 + ], + [ + "hall", + -11.346782684326172 + ], + [ + "▁sentenced", + -11.346904754638672 + ], + [ + "▁Chapel", + -11.346936225891113 + ], + [ + "▁submit", + -11.346982955932617 + ], + [ + "▁AS", + -11.34698486328125 + ], + [ + "▁Madison", + -11.347132682800293 + ], + [ + "EP", + -11.347227096557617 + ], + [ + "▁ancestors", + -11.347245216369629 + ], + [ + "now", + -11.3472900390625 + ], + [ + "▁customer", + -11.347710609436035 + ], + [ + "▁Cemetery", + -11.347826957702637 + ], + [ + "▁UEFA", + -11.347826957702637 + ], + [ + "▁manufactured", + -11.347994804382324 + ], + [ + "▁Roberts", + -11.348447799682617 + ], + [ + "▁Sex", + -11.348475456237793 + ], + [ + "▁Vas", + -11.34883975982666 + ], + [ + "▁Wu", + -11.34920597076416 + ], + [ + "▁Republicans", + -11.349227905273438 + ], + [ + "▁fossils", + -11.349411010742188 + ], + [ + "▁spite", + -11.349451065063477 + ], + [ + "hm", + -11.3495454788208 + ], + [ + "▁staying", + -11.349737167358398 + ], + [ + "▁reservoir", + -11.349804878234863 + ], + [ + "▁Bol", + -11.350157737731934 + ], + [ + "▁Does", + -11.350177764892578 + ], + [ + "▁wouldn", + -11.350208282470703 + ], + [ + "▁evaluate", + -11.35030746459961 + ], + [ + "▁mouse", + -11.350471496582031 + ], + [ + "OM", + -11.350533485412598 + ], + [ + "▁judicial", + -11.350789070129395 + ], + [ + "tag", + -11.35102653503418 + ], + [ + "bot", + -11.351564407348633 + ], + [ + "▁Transport", + -11.351691246032715 + ], + [ + "PR", + -11.351786613464355 + ], + [ + "▁wo", + -11.352062225341797 + ], + [ + "▁Find", + -11.352078437805176 + ], + [ + "▁hospitals", + -11.352749824523926 + ], + [ + "▁assessed", + -11.353445053100586 + ], + [ + "▁democratic", + -11.353479385375977 + ], + [ + "▁nevertheless", + -11.353524208068848 + ], + [ + "▁invaded", + -11.35385799407959 + ], + [ + "▁Burns", + -11.35387134552002 + ], + [ + "▁graphic", + -11.35389518737793 + ], + [ + "▁Cri", + -11.353962898254395 + ], + [ + "▁cook", + -11.354147911071777 + ], + [ + "▁genome", + -11.354171752929688 + ], + [ + "▁Reagan", + -11.354178428649902 + ], + [ + "▁tendency", + -11.354347229003906 + ], + [ + "▁sharks", + -11.354484558105469 + ], + [ + "▁Alberta", + -11.354584693908691 + ], + [ + "▁modest", + -11.354911804199219 + ], + [ + "▁drafted", + -11.355171203613281 + ], + [ + "▁Rou", + -11.355188369750977 + ], + [ + "▁1865", + -11.35533618927002 + ], + [ + "ume", + -11.355406761169434 + ], + [ + "▁strikes", + -11.35558032989502 + ], + [ + "▁masses", + -11.35597038269043 + ], + [ + "▁CEO", + -11.355992317199707 + ], + [ + "▁Schu", + -11.356053352355957 + ], + [ + "▁comprised", + -11.356287956237793 + ], + [ + "▁walked", + -11.356419563293457 + ], + [ + "▁posts", + -11.356571197509766 + ], + [ + "cip", + -11.356823921203613 + ], + [ + "▁True", + -11.356974601745605 + ], + [ + "▁Scots", + -11.357169151306152 + ], + [ + "▁constitute", + -11.357275009155273 + ], + [ + "▁Liberty", + -11.357617378234863 + ], + [ + "▁tout", + -11.357932090759277 + ], + [ + "▁bonds", + -11.358003616333008 + ], + [ + "▁170", + -11.358022689819336 + ], + [ + "▁Ship", + -11.358088493347168 + ], + [ + "▁NATO", + -11.358262062072754 + ], + [ + "▁nominations", + -11.35838794708252 + ], + [ + "▁Dur", + -11.358692169189453 + ], + [ + "▁bon", + -11.35871696472168 + ], + [ + "▁imprisoned", + -11.358721733093262 + ], + [ + "▁Lamb", + -11.358790397644043 + ], + [ + "▁Movement", + -11.35886001586914 + ], + [ + "▁expense", + -11.358936309814453 + ], + [ + "quin", + -11.359241485595703 + ], + [ + "▁Marco", + -11.359436988830566 + ], + [ + "▁struggling", + -11.359503746032715 + ], + [ + "▁dimensions", + -11.359517097473145 + ], + [ + "▁lunch", + -11.359867095947266 + ], + [ + "tive", + -11.359895706176758 + ], + [ + "▁eaten", + -11.360055923461914 + ], + [ + "corn", + -11.360127449035645 + ], + [ + "▁qualifying", + -11.36055850982666 + ], + [ + "▁landmark", + -11.360770225524902 + ], + [ + "▁Baptist", + -11.360777854919434 + ], + [ + "ago", + -11.36089038848877 + ], + [ + "▁Sherman", + -11.361191749572754 + ], + [ + "grad", + -11.36121940612793 + ], + [ + "▁steady", + -11.361261367797852 + ], + [ + "▁Mine", + -11.361321449279785 + ], + [ + "▁Yama", + -11.361473083496094 + ], + [ + "▁Chelsea", + -11.361505508422852 + ], + [ + "▁Nevada", + -11.361505508422852 + ], + [ + "▁senator", + -11.361581802368164 + ], + [ + "▁logo", + -11.362005233764648 + ], + [ + "▁virtue", + -11.362007141113281 + ], + [ + "▁Think", + -11.362130165100098 + ], + [ + "▁extends", + -11.362360000610352 + ], + [ + "▁Raj", + -11.362372398376465 + ], + [ + "▁Mercury", + -11.362516403198242 + ], + [ + "▁Crime", + -11.362557411193848 + ], + [ + "▁critically", + -11.362630844116211 + ], + [ + "▁massacre", + -11.362760543823242 + ], + [ + "▁rays", + -11.36295223236084 + ], + [ + "▁loaded", + -11.363009452819824 + ], + [ + "▁rebel", + -11.363056182861328 + ], + [ + "wy", + -11.36312484741211 + ], + [ + "▁complexity", + -11.363181114196777 + ], + [ + "▁bush", + -11.363207817077637 + ], + [ + "▁centered", + -11.36323356628418 + ], + [ + "▁quarters", + -11.363313674926758 + ], + [ + "▁viral", + -11.363338470458984 + ], + [ + "▁implications", + -11.363483428955078 + ], + [ + "▁Danny", + -11.36349105834961 + ], + [ + "▁Palestine", + -11.363511085510254 + ], + [ + "▁troop", + -11.36367416381836 + ], + [ + "▁hint", + -11.363703727722168 + ], + [ + "▁Serbian", + -11.363709449768066 + ], + [ + "▁Resident", + -11.363762855529785 + ], + [ + "▁den", + -11.363832473754883 + ], + [ + "▁pleased", + -11.363855361938477 + ], + [ + "▁millions", + -11.363865852355957 + ], + [ + "▁dia", + -11.363960266113281 + ], + [ + "▁ser", + -11.364213943481445 + ], + [ + "▁welfare", + -11.36451530456543 + ], + [ + "▁gases", + -11.364516258239746 + ], + [ + "▁corps", + -11.364542961120605 + ], + [ + "▁Julian", + -11.364585876464844 + ], + [ + "▁shapes", + -11.364721298217773 + ], + [ + "▁numbered", + -11.364897727966309 + ], + [ + "▁carved", + -11.36502456665039 + ], + [ + "nor", + -11.365341186523438 + ], + [ + "▁Turn", + -11.365374565124512 + ], + [ + "▁planted", + -11.365523338317871 + ], + [ + "ced", + -11.365873336791992 + ], + [ + "▁Riv", + -11.36599349975586 + ], + [ + "▁Arabic", + -11.366073608398438 + ], + [ + "-8", + -11.366106986999512 + ], + [ + "▁outfit", + -11.366135597229004 + ], + [ + "▁calendar", + -11.3662748336792 + ], + [ + "LC", + -11.366471290588379 + ], + [ + "▁02", + -11.366504669189453 + ], + [ + "▁orientation", + -11.366527557373047 + ], + [ + "▁Nat", + -11.366750717163086 + ], + [ + "ifies", + -11.366820335388184 + ], + [ + "▁radius", + -11.36682415008545 + ], + [ + "▁Chen", + -11.36693286895752 + ], + [ + "▁knocked", + -11.366974830627441 + ], + [ + "▁ballot", + -11.367260932922363 + ], + [ + "▁Bulgarian", + -11.367355346679688 + ], + [ + "▁weigh", + -11.367375373840332 + ], + [ + "DR", + -11.367521286010742 + ], + [ + "quet", + -11.367524147033691 + ], + [ + "gene", + -11.367655754089355 + ], + [ + "cum", + -11.367719650268555 + ], + [ + "▁lyrical", + -11.367929458618164 + ], + [ + "▁Representatives", + -11.367935180664062 + ], + [ + "▁promising", + -11.368037223815918 + ], + [ + "▁mere", + -11.368597030639648 + ], + [ + "▁whales", + -11.368644714355469 + ], + [ + "▁corridor", + -11.369297981262207 + ], + [ + "▁Monster", + -11.3693265914917 + ], + [ + "▁1862", + -11.369433403015137 + ], + [ + "▁1864", + -11.369503021240234 + ], + [ + "▁Parsons", + -11.369820594787598 + ], + [ + "mill", + -11.369900703430176 + ], + [ + "mé", + -11.370222091674805 + ], + [ + "east", + -11.370308876037598 + ], + [ + "▁jail", + -11.370532989501953 + ], + [ + "▁accidentally", + -11.37074089050293 + ], + [ + "▁Pete", + -11.37081527709961 + ], + [ + "▁Kids", + -11.370824813842773 + ], + [ + "▁distress", + -11.370843887329102 + ], + [ + "▁imagination", + -11.371066093444824 + ], + [ + "▁Region", + -11.371194839477539 + ], + [ + "▁enterprise", + -11.371318817138672 + ], + [ + "▁1885", + -11.371893882751465 + ], + [ + "▁Price", + -11.37199592590332 + ], + [ + "gli", + -11.37203598022461 + ], + [ + "▁profession", + -11.37206745147705 + ], + [ + "eries", + -11.372213363647461 + ], + [ + "▁adoption", + -11.372320175170898 + ], + [ + "▁AIDS", + -11.372337341308594 + ], + [ + "▁ecosystem", + -11.372337341308594 + ], + [ + "▁wheat", + -11.372356414794922 + ], + [ + "▁rescued", + -11.372360229492188 + ], + [ + "▁Baltic", + -11.372408866882324 + ], + [ + "▁Lind", + -11.372483253479004 + ], + [ + "▁Policy", + -11.372611045837402 + ], + [ + "▁boot", + -11.372679710388184 + ], + [ + "▁hypo", + -11.373087882995605 + ], + [ + "▁parking", + -11.37341022491455 + ], + [ + "▁Tyler", + -11.37374496459961 + ], + [ + "igan", + -11.373774528503418 + ], + [ + "▁Ry", + -11.373785972595215 + ], + [ + "▁manufacturers", + -11.373936653137207 + ], + [ + "▁warrant", + -11.374146461486816 + ], + [ + "▁tou", + -11.374176979064941 + ], + [ + "▁Len", + -11.374192237854004 + ], + [ + "▁commanders", + -11.37423038482666 + ], + [ + "▁Environment", + -11.374510765075684 + ], + [ + "▁Industrial", + -11.374518394470215 + ], + [ + "▁cooling", + -11.374577522277832 + ], + [ + "▁ears", + -11.374700546264648 + ], + [ + "▁oak", + -11.374839782714844 + ], + [ + "▁embarked", + -11.375018119812012 + ], + [ + "▁breeds", + -11.375344276428223 + ], + [ + "а", + -11.375372886657715 + ], + [ + "▁2021", + -11.37537956237793 + ], + [ + "▁enforcement", + -11.375510215759277 + ], + [ + "▁Cardiff", + -11.375661849975586 + ], + [ + "▁murdered", + -11.375713348388672 + ], + [ + "▁109", + -11.37572956085205 + ], + [ + "▁Gregory", + -11.37593936920166 + ], + [ + "▁Strait", + -11.37595272064209 + ], + [ + "▁reactor", + -11.37636661529541 + ], + [ + "▁turtle", + -11.376389503479004 + ], + [ + "▁Eye", + -11.376398086547852 + ], + [ + "▁finals", + -11.376482963562012 + ], + [ + "▁dragon", + -11.376524925231934 + ], + [ + "▁fragments", + -11.376543998718262 + ], + [ + "▁endangered", + -11.376862525939941 + ], + [ + "▁tin", + -11.37700080871582 + ], + [ + "▁AP", + -11.377091407775879 + ], + [ + "▁vicinity", + -11.37740707397461 + ], + [ + "▁Ei", + -11.377582550048828 + ], + [ + "▁dancers", + -11.37773609161377 + ], + [ + "▁Berg", + -11.377765655517578 + ], + [ + "▁permanently", + -11.377799034118652 + ], + [ + "▁indication", + -11.378013610839844 + ], + [ + "▁Additional", + -11.378114700317383 + ], + [ + "▁Py", + -11.378179550170898 + ], + [ + "▁insight", + -11.378304481506348 + ], + [ + "▁palm", + -11.378463745117188 + ], + [ + "▁Omar", + -11.37869644165039 + ], + [ + "▁jam", + -11.379252433776855 + ], + [ + "▁mutual", + -11.379389762878418 + ], + [ + "▁verses", + -11.37942123413086 + ], + [ + "▁carriage", + -11.379444122314453 + ], + [ + "▁reserves", + -11.380023956298828 + ], + [ + "New", + -11.380208969116211 + ], + [ + "phon", + -11.380221366882324 + ], + [ + "aver", + -11.38022518157959 + ], + [ + "▁py", + -11.380241394042969 + ], + [ + "▁borders", + -11.380252838134766 + ], + [ + "▁Chu", + -11.380521774291992 + ], + [ + "▁shopping", + -11.38056468963623 + ], + [ + "▁spill", + -11.380597114562988 + ], + [ + "hara", + -11.38066577911377 + ], + [ + "say", + -11.380703926086426 + ], + [ + "▁circles", + -11.380729675292969 + ], + [ + "▁girlfriend", + -11.380738258361816 + ], + [ + "▁Greatest", + -11.380870819091797 + ], + [ + "▁Sean", + -11.381101608276367 + ], + [ + "▁Ellis", + -11.381385803222656 + ], + [ + "etti", + -11.381468772888184 + ], + [ + "▁slot", + -11.381475448608398 + ], + [ + "▁steadily", + -11.381485939025879 + ], + [ + "▁Orthodox", + -11.381741523742676 + ], + [ + "▁monthly", + -11.381767272949219 + ], + [ + "▁Direct", + -11.38228702545166 + ], + [ + "mper", + -11.382413864135742 + ], + [ + "ctor", + -11.382429122924805 + ], + [ + "▁Delta", + -11.382530212402344 + ], + [ + "▁ward", + -11.382685661315918 + ], + [ + "▁contracts", + -11.382843017578125 + ], + [ + "▁Treatment", + -11.382918357849121 + ], + [ + "▁BCE", + -11.382925987243652 + ], + [ + "▁Viking", + -11.383176803588867 + ], + [ + "pl", + -11.383369445800781 + ], + [ + "▁Lau", + -11.383405685424805 + ], + [ + "▁Ton", + -11.383423805236816 + ], + [ + "▁ensuring", + -11.383538246154785 + ], + [ + "▁generator", + -11.383585929870605 + ], + [ + "▁conviction", + -11.384004592895508 + ], + [ + "zing", + -11.384054183959961 + ], + [ + "▁drainage", + -11.384231567382812 + ], + [ + "▁exceed", + -11.384488105773926 + ], + [ + "▁Ji", + -11.38455581665039 + ], + [ + "▁liner", + -11.38467025756836 + ], + [ + "court", + -11.385202407836914 + ], + [ + "nant", + -11.385794639587402 + ], + [ + "▁honey", + -11.385929107666016 + ], + [ + "▁1840", + -11.385930061340332 + ], + [ + "▁mold", + -11.386099815368652 + ], + [ + "▁Taiwan", + -11.38611125946045 + ], + [ + "▁111", + -11.386432647705078 + ], + [ + "▁Gill", + -11.386491775512695 + ], + [ + "▁fires", + -11.38660717010498 + ], + [ + "▁plaque", + -11.386865615844727 + ], + [ + "▁tracked", + -11.387012481689453 + ], + [ + "▁geographical", + -11.387080192565918 + ], + [ + "▁weakening", + -11.387219429016113 + ], + [ + "▁Princeton", + -11.387242317199707 + ], + [ + "▁cri", + -11.387274742126465 + ], + [ + "▁patch", + -11.387280464172363 + ], + [ + "▁clergy", + -11.387378692626953 + ], + [ + "▁intact", + -11.387444496154785 + ], + [ + "▁dialect", + -11.387650489807129 + ], + [ + "▁compact", + -11.38782787322998 + ], + [ + "▁disabled", + -11.387895584106445 + ], + [ + "▁AA", + -11.38796329498291 + ], + [ + "æ", + -11.387981414794922 + ], + [ + "▁reduces", + -11.388071060180664 + ], + [ + "post", + -11.388470649719238 + ], + [ + "▁emphasize", + -11.388472557067871 + ], + [ + "▁Pole", + -11.38874340057373 + ], + [ + "ui", + -11.38884162902832 + ], + [ + "▁Strong", + -11.388983726501465 + ], + [ + "state", + -11.389263153076172 + ], + [ + "▁conjunction", + -11.389456748962402 + ], + [ + "fold", + -11.389649391174316 + ], + [ + "▁respiratory", + -11.389694213867188 + ], + [ + "▁deployment", + -11.390191078186035 + ], + [ + "▁quest", + -11.390202522277832 + ], + [ + "▁learns", + -11.390347480773926 + ], + [ + "▁Leaf", + -11.390401840209961 + ], + [ + "▁determining", + -11.390467643737793 + ], + [ + "count", + -11.390682220458984 + ], + [ + "▁Yellow", + -11.390697479248047 + ], + [ + "clo", + -11.390777587890625 + ], + [ + "▁locate", + -11.390825271606445 + ], + [ + "▁gal", + -11.39084529876709 + ], + [ + "▁Continental", + -11.390849113464355 + ], + [ + "▁quantum", + -11.390982627868652 + ], + [ + "▁vent", + -11.391000747680664 + ], + [ + "▁integration", + -11.391044616699219 + ], + [ + "▁frontier", + -11.391206741333008 + ], + [ + "▁Whether", + -11.391241073608398 + ], + [ + "▁twentieth", + -11.391241073608398 + ], + [ + "▁rings", + -11.391529083251953 + ], + [ + "▁axis", + -11.391650199890137 + ], + [ + "▁Round", + -11.391732215881348 + ], + [ + "oke", + -11.39185619354248 + ], + [ + "▁Put", + -11.392038345336914 + ], + [ + "▁offshore", + -11.392043113708496 + ], + [ + "▁revision", + -11.392143249511719 + ], + [ + "▁insufficient", + -11.392255783081055 + ], + [ + "▁speeds", + -11.392375946044922 + ], + [ + "▁symbolic", + -11.392379760742188 + ], + [ + "imi", + -11.392524719238281 + ], + [ + "▁Beth", + -11.392532348632812 + ], + [ + "▁tasked", + -11.392695426940918 + ], + [ + "bet", + -11.393057823181152 + ], + [ + "▁neo", + -11.393060684204102 + ], + [ + "▁Remember", + -11.393136978149414 + ], + [ + "▁Weather", + -11.393308639526367 + ], + [ + "▁edges", + -11.393509864807129 + ], + [ + "▁ghost", + -11.39356517791748 + ], + [ + "▁ri", + -11.39367961883545 + ], + [ + "▁cubic", + -11.393753051757812 + ], + [ + "▁Genesis", + -11.394152641296387 + ], + [ + "▁mg", + -11.394309043884277 + ], + [ + "▁Mile", + -11.394371032714844 + ], + [ + "att", + -11.394399642944336 + ], + [ + "▁450", + -11.394416809082031 + ], + [ + "▁Stage", + -11.394593238830566 + ], + [ + "▁Rhodes", + -11.394707679748535 + ], + [ + "▁coordinate", + -11.394742965698242 + ], + [ + "▁addiction", + -11.394989013671875 + ], + [ + "CD", + -11.395188331604004 + ], + [ + "▁dissolved", + -11.395243644714355 + ], + [ + "▁Fear", + -11.395360946655273 + ], + [ + "▁Tip", + -11.39556884765625 + ], + [ + "▁witnessed", + -11.395634651184082 + ], + [ + "▁encouraging", + -11.395635604858398 + ], + [ + "▁trends", + -11.395881652832031 + ], + [ + "▁reflects", + -11.395925521850586 + ], + [ + "▁Style", + -11.395939826965332 + ], + [ + "▁Commissioner", + -11.396326065063477 + ], + [ + "▁Fre", + -11.39653491973877 + ], + [ + "▁Similar", + -11.396636962890625 + ], + [ + "▁advantages", + -11.396659851074219 + ], + [ + "CE", + -11.396757125854492 + ], + [ + "dle", + -11.396982192993164 + ], + [ + "ulating", + -11.397180557250977 + ], + [ + "▁machinery", + -11.397337913513184 + ], + [ + "bha", + -11.3974609375 + ], + [ + "▁mechanics", + -11.397643089294434 + ], + [ + "▁behaviors", + -11.397756576538086 + ], + [ + "▁Researchers", + -11.39799690246582 + ], + [ + "▁Bab", + -11.398131370544434 + ], + [ + "▁attachment", + -11.39824390411377 + ], + [ + "▁essays", + -11.398791313171387 + ], + [ + "kha", + -11.398880958557129 + ], + [ + "▁Miles", + -11.398916244506836 + ], + [ + "▁Bour", + -11.398924827575684 + ], + [ + "▁archive", + -11.398938179016113 + ], + [ + "▁guests", + -11.39914321899414 + ], + [ + "▁HD", + -11.399173736572266 + ], + [ + "amine", + -11.39918041229248 + ], + [ + "▁ambassador", + -11.399789810180664 + ], + [ + "▁Boeing", + -11.399819374084473 + ], + [ + "▁particle", + -11.39985466003418 + ], + [ + "▁sings", + -11.399922370910645 + ], + [ + "▁manufacture", + -11.400009155273438 + ], + [ + "▁Stalin", + -11.400056838989258 + ], + [ + "▁IP", + -11.400223731994629 + ], + [ + "▁PS", + -11.400382041931152 + ], + [ + "brook", + -11.400551795959473 + ], + [ + "▁Rogers", + -11.40081787109375 + ], + [ + "▁upward", + -11.400948524475098 + ], + [ + "▁Got", + -11.401391983032227 + ], + [ + "▁coral", + -11.401515007019043 + ], + [ + "▁connects", + -11.401691436767578 + ], + [ + "▁Lea", + -11.401769638061523 + ], + [ + "▁propose", + -11.401809692382812 + ], + [ + "▁admission", + -11.401899337768555 + ], + [ + "▁commenting", + -11.402335166931152 + ], + [ + "▁1863", + -11.402336120605469 + ], + [ + "▁Pol", + -11.402374267578125 + ], + [ + "о", + -11.40239429473877 + ], + [ + "▁multiplayer", + -11.402395248413086 + ], + [ + "▁preceding", + -11.402395248413086 + ], + [ + "uki", + -11.402586936950684 + ], + [ + "▁Hel", + -11.402628898620605 + ], + [ + "▁Dennis", + -11.4027099609375 + ], + [ + "▁helicopter", + -11.402888298034668 + ], + [ + "▁cement", + -11.4028902053833 + ], + [ + "▁Chester", + -11.402973175048828 + ], + [ + "▁Nou", + -11.402987480163574 + ], + [ + "▁Oct", + -11.403002738952637 + ], + [ + "▁writings", + -11.403046607971191 + ], + [ + "▁(2)", + -11.403111457824707 + ], + [ + "▁Hat", + -11.403223037719727 + ], + [ + "▁Living", + -11.403461456298828 + ], + [ + "stock", + -11.403600692749023 + ], + [ + "▁parliamentary", + -11.403627395629883 + ], + [ + "eli", + -11.403719902038574 + ], + [ + "▁u", + -11.40386962890625 + ], + [ + "▁Besides", + -11.403980255126953 + ], + [ + "▁opens", + -11.403985977172852 + ], + [ + "▁successive", + -11.404058456420898 + ], + [ + "@", + -11.40421199798584 + ], + [ + "▁Intelligence", + -11.40422248840332 + ], + [ + "▁Culture", + -11.404261589050293 + ], + [ + "▁Nobel", + -11.404497146606445 + ], + [ + "aur", + -11.40466594696045 + ], + [ + "▁controller", + -11.404733657836914 + ], + [ + "▁occurrence", + -11.404746055603027 + ], + [ + "▁Herbert", + -11.404763221740723 + ], + [ + "▁Java", + -11.404928207397461 + ], + [ + "▁crashed", + -11.404967308044434 + ], + [ + "▁Kur", + -11.405004501342773 + ], + [ + "▁triangle", + -11.40501880645752 + ], + [ + "▁blues", + -11.405030250549316 + ], + [ + "▁Emma", + -11.405083656311035 + ], + [ + "▁investigated", + -11.405184745788574 + ], + [ + "▁Things", + -11.405776977539062 + ], + [ + "▁Malcolm", + -11.405792236328125 + ], + [ + "▁livestock", + -11.405943870544434 + ], + [ + "▁Zoo", + -11.40667724609375 + ], + [ + "▁painful", + -11.406753540039062 + ], + [ + "▁Eddie", + -11.40694808959961 + ], + [ + "▁Solomon", + -11.407124519348145 + ], + [ + "▁continental", + -11.407160758972168 + ], + [ + "▁Barnes", + -11.407352447509766 + ], + [ + "▁Constantinople", + -11.407363891601562 + ], + [ + "gun", + -11.407614707946777 + ], + [ + "▁Andrea", + -11.40774917602539 + ], + [ + "▁suited", + -11.408186912536621 + ], + [ + "▁Caesar", + -11.40842056274414 + ], + [ + "▁isolation", + -11.408431053161621 + ], + [ + "▁variant", + -11.408514976501465 + ], + [ + "▁airing", + -11.408642768859863 + ], + [ + "rine", + -11.408882141113281 + ], + [ + "vir", + -11.408906936645508 + ], + [ + "▁Bha", + -11.408907890319824 + ], + [ + "▁Pac", + -11.40898609161377 + ], + [ + "▁choir", + -11.409132957458496 + ], + [ + "▁rider", + -11.409346580505371 + ], + [ + "▁convicted", + -11.409564018249512 + ], + [ + "▁Arkansas", + -11.4097261428833 + ], + [ + "▁Drake", + -11.409896850585938 + ], + [ + "▁remind", + -11.409950256347656 + ], + [ + "▁conductor", + -11.410015106201172 + ], + [ + "▁Edmund", + -11.410016059875488 + ], + [ + "esis", + -11.410429000854492 + ], + [ + "boy", + -11.410765647888184 + ], + [ + "▁Cavalry", + -11.410778045654297 + ], + [ + "▁Travel", + -11.411030769348145 + ], + [ + "▁courage", + -11.411042213439941 + ], + [ + "▁Circle", + -11.411053657531738 + ], + [ + "▁Rom", + -11.411334991455078 + ], + [ + "space", + -11.411420822143555 + ], + [ + "▁comparable", + -11.411567687988281 + ], + [ + "▁excited", + -11.411567687988281 + ], + [ + "▁rounded", + -11.411620140075684 + ], + [ + "lier", + -11.411649703979492 + ], + [ + "▁forth", + -11.411704063415527 + ], + [ + "▁Sep", + -11.41173267364502 + ], + [ + "▁blockade", + -11.411805152893066 + ], + [ + "eman", + -11.412181854248047 + ], + [ + "▁Kyle", + -11.41230583190918 + ], + [ + "▁Brooklyn", + -11.412368774414062 + ], + [ + "▁depicting", + -11.412437438964844 + ], + [ + "▁witnesses", + -11.412501335144043 + ], + [ + "▁preservation", + -11.412884712219238 + ], + [ + "▁ashore", + -11.412993431091309 + ], + [ + "▁Formation", + -11.413468360900879 + ], + [ + "▁speakers", + -11.41353702545166 + ], + [ + "▁administrator", + -11.413683891296387 + ], + [ + "▁contrary", + -11.413792610168457 + ], + [ + "▁Holland", + -11.413866996765137 + ], + [ + "▁Store", + -11.41404914855957 + ], + [ + "▁licensed", + -11.414369583129883 + ], + [ + "▁slower", + -11.414382934570312 + ], + [ + "▁romance", + -11.414468765258789 + ], + [ + "▁nationalist", + -11.414469718933105 + ], + [ + "▁merit", + -11.414568901062012 + ], + [ + "▁Sonic", + -11.414616584777832 + ], + [ + "▁1:", + -11.41463851928711 + ], + [ + "Mar", + -11.414639472961426 + ], + [ + "▁tickets", + -11.414722442626953 + ], + [ + "idi", + -11.414950370788574 + ], + [ + "▁chapters", + -11.415054321289062 + ], + [ + "▁profound", + -11.415063858032227 + ], + [ + "▁sinking", + -11.415085792541504 + ], + [ + "cel", + -11.41519546508789 + ], + [ + "▁plug", + -11.41519546508789 + ], + [ + "▁peer", + -11.41523265838623 + ], + [ + "▁belong", + -11.415657997131348 + ], + [ + "▁positioned", + -11.415664672851562 + ], + [ + "▁lecture", + -11.416014671325684 + ], + [ + "▁insist", + -11.416093826293945 + ], + [ + "▁lava", + -11.416421890258789 + ], + [ + "▁apple", + -11.416580200195312 + ], + [ + "dict", + -11.416679382324219 + ], + [ + "▁incidents", + -11.416922569274902 + ], + [ + "▁buying", + -11.417362213134766 + ], + [ + "▁knock", + -11.417413711547852 + ], + [ + "▁Volume", + -11.417444229125977 + ], + [ + "shed", + -11.417686462402344 + ], + [ + "page", + -11.41769027709961 + ], + [ + "▁analyze", + -11.417753219604492 + ], + [ + "mba", + -11.417786598205566 + ], + [ + "▁defect", + -11.418050765991211 + ], + [ + "▁Reed", + -11.418079376220703 + ], + [ + "▁Mai", + -11.418102264404297 + ], + [ + "▁heavier", + -11.418176651000977 + ], + [ + "▁ethical", + -11.418213844299316 + ], + [ + "▁Coll", + -11.418241500854492 + ], + [ + "gua", + -11.41837215423584 + ], + [ + "▁propaganda", + -11.418435096740723 + ], + [ + "▁Florence", + -11.418485641479492 + ], + [ + "▁tourists", + -11.418695449829102 + ], + [ + "▁pas", + -11.418758392333984 + ], + [ + "▁VIII", + -11.418814659118652 + ], + [ + "▁imported", + -11.418889999389648 + ], + [ + "▁interference", + -11.41899299621582 + ], + [ + "▁Ted", + -11.419024467468262 + ], + [ + "▁logic", + -11.419143676757812 + ], + [ + "▁~", + -11.41925048828125 + ], + [ + "▁Northwest", + -11.41928768157959 + ], + [ + "▁politician", + -11.419624328613281 + ], + [ + "▁literacy", + -11.419774055480957 + ], + [ + "▁monastery", + -11.420027732849121 + ], + [ + "▁norm", + -11.420092582702637 + ], + [ + "▁sink", + -11.420151710510254 + ], + [ + "SP", + -11.420162200927734 + ], + [ + "birds", + -11.420235633850098 + ], + [ + "▁Symphony", + -11.420292854309082 + ], + [ + "▁Kenneth", + -11.420293807983398 + ], + [ + "▁www", + -11.420321464538574 + ], + [ + "▁Days", + -11.42032241821289 + ], + [ + "▁Critical", + -11.420673370361328 + ], + [ + "▁Chile", + -11.421067237854004 + ], + [ + "▁Publishing", + -11.421090126037598 + ], + [ + "▁Working", + -11.421435356140137 + ], + [ + "dication", + -11.421623229980469 + ], + [ + "▁pioneer", + -11.42171859741211 + ], + [ + "▁MacArthur", + -11.421887397766113 + ], + [ + "▁Territory", + -11.421894073486328 + ], + [ + "▁seemingly", + -11.421897888183594 + ], + [ + "uel", + -11.421917915344238 + ], + [ + "▁naming", + -11.421952247619629 + ], + [ + "▁till", + -11.422019958496094 + ], + [ + "▁rains", + -11.422113418579102 + ], + [ + "▁screenplay", + -11.42226505279541 + ], + [ + "▁gla", + -11.422296524047852 + ], + [ + "▁₹", + -11.422444343566895 + ], + [ + "▁Face", + -11.422475814819336 + ], + [ + "▁editing", + -11.422540664672852 + ], + [ + "▁warships", + -11.422676086425781 + ], + [ + "▁Thames", + -11.422715187072754 + ], + [ + "alis", + -11.422724723815918 + ], + [ + "▁optical", + -11.423070907592773 + ], + [ + "▁Mini", + -11.423200607299805 + ], + [ + "rp", + -11.423431396484375 + ], + [ + "▁Ful", + -11.42361831665039 + ], + [ + "▁Pack", + -11.423624038696289 + ], + [ + "wel", + -11.423661231994629 + ], + [ + "▁COVID", + -11.423752784729004 + ], + [ + "▁progressed", + -11.423806190490723 + ], + [ + "▁demonstration", + -11.423973083496094 + ], + [ + "▁Oil", + -11.424402236938477 + ], + [ + "▁hum", + -11.425012588500977 + ], + [ + "▁AL", + -11.425214767456055 + ], + [ + "▁tourism", + -11.425370216369629 + ], + [ + "▁playoff", + -11.425430297851562 + ], + [ + "▁Cloud", + -11.42544937133789 + ], + [ + "▁dramatically", + -11.425541877746582 + ], + [ + "▁achievements", + -11.425568580627441 + ], + [ + "-20", + -11.425592422485352 + ], + [ + "▁McG", + -11.425888061523438 + ], + [ + "α", + -11.42589282989502 + ], + [ + "▁twist", + -11.4259614944458 + ], + [ + "▁Shadow", + -11.426420211791992 + ], + [ + "▁colon", + -11.42667007446289 + ], + [ + "▁condemned", + -11.426798820495605 + ], + [ + "lite", + -11.427056312561035 + ], + [ + "pla", + -11.427071571350098 + ], + [ + "yard", + -11.427457809448242 + ], + [ + "▁fake", + -11.427468299865723 + ], + [ + "▁Clara", + -11.427480697631836 + ], + [ + "▁overlap", + -11.427985191345215 + ], + [ + "▁transmitted", + -11.428364753723145 + ], + [ + "▁authentic", + -11.428593635559082 + ], + [ + "▁Isle", + -11.428729057312012 + ], + [ + "▁Wildlife", + -11.428848266601562 + ], + [ + "lyn", + -11.429340362548828 + ], + [ + "▁charted", + -11.42952823638916 + ], + [ + "▁wisdom", + -11.429631233215332 + ], + [ + "▁wise", + -11.429715156555176 + ], + [ + "▁tends", + -11.42981243133545 + ], + [ + "ographer", + -11.429983139038086 + ], + [ + "▁Historian", + -11.430102348327637 + ], + [ + "▁deliberately", + -11.43030071258545 + ], + [ + "▁listing", + -11.430529594421387 + ], + [ + "▁holy", + -11.430554389953613 + ], + [ + "DI", + -11.430767059326172 + ], + [ + "▁Rush", + -11.431108474731445 + ], + [ + "▁assassination", + -11.431196212768555 + ], + [ + "▁deputy", + -11.431242942810059 + ], + [ + "ocyt", + -11.43127727508545 + ], + [ + "▁Claire", + -11.431327819824219 + ], + [ + "▁wishes", + -11.4313325881958 + ], + [ + "▁reinforce", + -11.431449890136719 + ], + [ + "▁reporter", + -11.43148136138916 + ], + [ + "▁Orchestra", + -11.431509971618652 + ], + [ + "▁mess", + -11.431528091430664 + ], + [ + "osphere", + -11.431559562683105 + ], + [ + "known", + -11.431757926940918 + ], + [ + "▁rat", + -11.431838989257812 + ], + [ + "▁Curtis", + -11.431852340698242 + ], + [ + "▁220", + -11.431947708129883 + ], + [ + "▁Brand", + -11.432007789611816 + ], + [ + "▁phenomena", + -11.432046890258789 + ], + [ + "▁Various", + -11.432099342346191 + ], + [ + "llo", + -11.432282447814941 + ], + [ + "hun", + -11.432308197021484 + ], + [ + "▁swept", + -11.432315826416016 + ], + [ + "▁stern", + -11.432343482971191 + ], + [ + "▁Evil", + -11.43243408203125 + ], + [ + "▁seasonal", + -11.43248462677002 + ], + [ + "aro", + -11.432519912719727 + ], + [ + "pal", + -11.432672500610352 + ], + [ + "udi", + -11.432785987854004 + ], + [ + "▁accurately", + -11.432846069335938 + ], + [ + "▁treasure", + -11.432953834533691 + ], + [ + "▁Zu", + -11.43313217163086 + ], + [ + "▁determination", + -11.433456420898438 + ], + [ + "▁Renaissance", + -11.433660507202148 + ], + [ + "▁Sleep", + -11.43366527557373 + ], + [ + "▁differently", + -11.433670997619629 + ], + [ + "ienne", + -11.433714866638184 + ], + [ + "▁102", + -11.43426513671875 + ], + [ + "▁defenders", + -11.43432903289795 + ], + [ + "▁Venus", + -11.43435287475586 + ], + [ + "such", + -11.434401512145996 + ], + [ + "If", + -11.43443489074707 + ], + [ + "▁horn", + -11.434473991394043 + ], + [ + "▁Canyon", + -11.43485164642334 + ], + [ + "▁regulate", + -11.43487548828125 + ], + [ + "wind", + -11.434916496276855 + ], + [ + "▁extraordinary", + -11.435007095336914 + ], + [ + "script", + -11.435019493103027 + ], + [ + "▁cemetery", + -11.43527603149414 + ], + [ + "▁pyramid", + -11.43527603149414 + ], + [ + "▁floating", + -11.43531322479248 + ], + [ + "▁tornado", + -11.43543529510498 + ], + [ + "▁abundance", + -11.435545921325684 + ], + [ + "▁psychology", + -11.435567855834961 + ], + [ + "lick", + -11.435628890991211 + ], + [ + "▁hang", + -11.435630798339844 + ], + [ + "▁relay", + -11.435677528381348 + ], + [ + "▁underwater", + -11.435911178588867 + ], + [ + "▁Self", + -11.436037063598633 + ], + [ + "▁Lòt", + -11.436357498168945 + ], + [ + "▁chantè", + -11.436546325683594 + ], + [ + "▁indicator", + -11.436639785766602 + ], + [ + "▁avoiding", + -11.437148094177246 + ], + [ + "▁descendants", + -11.437211990356445 + ], + [ + "uan", + -11.437223434448242 + ], + [ + "▁sleeping", + -11.43750286102295 + ], + [ + "▁coastline", + -11.437517166137695 + ], + [ + "saw", + -11.437554359436035 + ], + [ + "▁acceptable", + -11.437777519226074 + ], + [ + "▁resemble", + -11.437861442565918 + ], + [ + "▁Wagner", + -11.437976837158203 + ], + [ + "St", + -11.437980651855469 + ], + [ + "▁weakness", + -11.43817138671875 + ], + [ + "▁compensation", + -11.438516616821289 + ], + [ + "▁routing", + -11.438518524169922 + ], + [ + "▁Hood", + -11.438599586486816 + ], + [ + "▁combine", + -11.438817977905273 + ], + [ + "▁darker", + -11.43898868560791 + ], + [ + "▁1830", + -11.439074516296387 + ], + [ + "▁plea", + -11.43907642364502 + ], + [ + "▁variables", + -11.43910026550293 + ], + [ + "▁Gran", + -11.439176559448242 + ], + [ + "▁Gr", + -11.439322471618652 + ], + [ + "▁asserted", + -11.439335823059082 + ], + [ + "▁antye", + -11.439393997192383 + ], + [ + "▁Santo", + -11.439482688903809 + ], + [ + "▁ambition", + -11.439600944519043 + ], + [ + "▁encounters", + -11.439759254455566 + ], + [ + "▁woodland", + -11.439905166625977 + ], + [ + "▁Brook", + -11.439949035644531 + ], + [ + "▁Airlines", + -11.44034194946289 + ], + [ + "▁neutron", + -11.440411567687988 + ], + [ + "▁proceed", + -11.440682411193848 + ], + [ + "▁balanced", + -11.440693855285645 + ], + [ + "▁ascend", + -11.440694808959961 + ], + [ + "▁Pel", + -11.440882682800293 + ], + [ + "▁automatic", + -11.440908432006836 + ], + [ + "▁Tribune", + -11.440953254699707 + ], + [ + "ress", + -11.441452026367188 + ], + [ + "▁guess", + -11.441815376281738 + ], + [ + "weight", + -11.441885948181152 + ], + [ + "▁Denis", + -11.441917419433594 + ], + [ + "5,000", + -11.44214916229248 + ], + [ + "▁Archbishop", + -11.442310333251953 + ], + [ + "▁ferry", + -11.442554473876953 + ], + [ + "▁deficit", + -11.442583084106445 + ], + [ + "▁rivals", + -11.442634582519531 + ], + [ + "▁rushing", + -11.442723274230957 + ], + [ + "▁flexible", + -11.442874908447266 + ], + [ + "▁darkness", + -11.442888259887695 + ], + [ + "▁sunlight", + -11.443000793457031 + ], + [ + "▁Eagle", + -11.44317626953125 + ], + [ + "▁pushing", + -11.443212509155273 + ], + [ + "▁marched", + -11.443352699279785 + ], + [ + "▁SP", + -11.443395614624023 + ], + [ + "▁fitting", + -11.44340991973877 + ], + [ + "▁rent", + -11.443462371826172 + ], + [ + "For", + -11.443646430969238 + ], + [ + "▁metre", + -11.444010734558105 + ], + [ + "▁cyclones", + -11.444052696228027 + ], + [ + "cover", + -11.444063186645508 + ], + [ + "▁Ky", + -11.444229125976562 + ], + [ + "got", + -11.444249153137207 + ], + [ + "▁sentences", + -11.444273948669434 + ], + [ + "EL", + -11.444488525390625 + ], + [ + "real", + -11.444512367248535 + ], + [ + "▁revealing", + -11.44455337524414 + ], + [ + "▁Ask", + -11.444680213928223 + ], + [ + "▁simulation", + -11.444756507873535 + ], + [ + "▁bowler", + -11.445006370544434 + ], + [ + "▁mixing", + -11.44520092010498 + ], + [ + "▁favored", + -11.44521713256836 + ], + [ + "▁Political", + -11.445311546325684 + ], + [ + "Be", + -11.445320129394531 + ], + [ + "▁ceremonies", + -11.445572853088379 + ], + [ + "▁juice", + -11.445651054382324 + ], + [ + "pil", + -11.445939064025879 + ], + [ + "▁conspiracy", + -11.446118354797363 + ], + [ + "▁nephew", + -11.446118354797363 + ], + [ + "▁informal", + -11.44615364074707 + ], + [ + "▁rope", + -11.446175575256348 + ], + [ + "▁pronounced", + -11.4462308883667 + ], + [ + "▁possessed", + -11.446290016174316 + ], + [ + "You", + -11.44629192352295 + ], + [ + "▁Marshal", + -11.446537971496582 + ], + [ + "maker", + -11.446660041809082 + ], + [ + "▁aft", + -11.446866989135742 + ], + [ + "▁keeps", + -11.446917533874512 + ], + [ + "▁globe", + -11.446937561035156 + ], + [ + "oci", + -11.447059631347656 + ], + [ + "▁secular", + -11.447153091430664 + ], + [ + "▁compositions", + -11.447284698486328 + ], + [ + "▁operator", + -11.447656631469727 + ], + [ + "responsibilities", + -11.447754859924316 + ], + [ + "▁Bran", + -11.447843551635742 + ], + [ + "▁Crystal", + -11.448029518127441 + ], + [ + "kins", + -11.448473930358887 + ], + [ + "▁immigration", + -11.44857406616211 + ], + [ + "▁decoration", + -11.448575019836426 + ], + [ + "anti", + -11.44859790802002 + ], + [ + "tig", + -11.44874382019043 + ], + [ + ".9", + -11.448893547058105 + ], + [ + "▁Morning", + -11.449021339416504 + ], + [ + "▁curved", + -11.449051856994629 + ], + [ + "▁Fran", + -11.449060440063477 + ], + [ + "▁relieved", + -11.449146270751953 + ], + [ + "▁Bradley", + -11.449305534362793 + ], + [ + "▁announce", + -11.449518203735352 + ], + [ + "▁abnormal", + -11.449616432189941 + ], + [ + "▁Consequently", + -11.449666976928711 + ], + [ + "▁Gibraltar", + -11.449666976928711 + ], + [ + "▁Friedrich", + -11.449676513671875 + ], + [ + "▁Devon", + -11.449793815612793 + ], + [ + "▁Than", + -11.449913024902344 + ], + [ + "fici", + -11.450014114379883 + ], + [ + "gio", + -11.450179100036621 + ], + [ + "▁belonged", + -11.450444221496582 + ], + [ + "▁Holocaust", + -11.450488090515137 + ], + [ + "▁Syn", + -11.450879096984863 + ], + [ + "ounce", + -11.450969696044922 + ], + [ + "▁cliff", + -11.451081275939941 + ], + [ + "▁Grave", + -11.451106071472168 + ], + [ + "▁----", + -11.451122283935547 + ], + [ + "▁digit", + -11.451250076293945 + ], + [ + "▁fatigue", + -11.451309204101562 + ], + [ + "▁Adrian", + -11.451459884643555 + ], + [ + "▁airborne", + -11.45146656036377 + ], + [ + "▁Sau", + -11.451506614685059 + ], + [ + "▁Draft", + -11.451617240905762 + ], + [ + "▁motif", + -11.451637268066406 + ], + [ + "▁ERA", + -11.45172119140625 + ], + [ + "▁DJ", + -11.4517822265625 + ], + [ + "▁IN", + -11.452116966247559 + ], + [ + "▁Miguel", + -11.452131271362305 + ], + [ + "▁monkey", + -11.452201843261719 + ], + [ + "▁Panzer", + -11.452216148376465 + ], + [ + "▁Photo", + -11.452325820922852 + ], + [ + "▁mentions", + -11.45236587524414 + ], + [ + "▁Ronald", + -11.45238208770752 + ], + [ + "its", + -11.452600479125977 + ], + [ + "▁tre", + -11.452646255493164 + ], + [ + "▁disability", + -11.452774047851562 + ], + [ + "▁defendant", + -11.45283031463623 + ], + [ + "▁separately", + -11.45289134979248 + ], + [ + "▁Milan", + -11.453069686889648 + ], + [ + "1,", + -11.45313835144043 + ], + [ + "▁Rear", + -11.45316219329834 + ], + [ + "▁comprising", + -11.453228950500488 + ], + [ + "▁projected", + -11.453242301940918 + ], + [ + "-18", + -11.453667640686035 + ], + [ + "▁confined", + -11.453866004943848 + ], + [ + "▁contacted", + -11.454819679260254 + ], + [ + "▁proximity", + -11.454876899719238 + ], + [ + "▁Liber", + -11.454893112182617 + ], + [ + "▁Diet", + -11.45529556274414 + ], + [ + "▁poisoning", + -11.455401420593262 + ], + [ + "▁Apart", + -11.455449104309082 + ], + [ + "èk", + -11.455577850341797 + ], + [ + "gui", + -11.455692291259766 + ], + [ + "▁Revolutionary", + -11.455810546875 + ], + [ + "▁headache", + -11.456014633178711 + ], + [ + "▁mac", + -11.456144332885742 + ], + [ + "▁Cad", + -11.456230163574219 + ], + [ + "▁applying", + -11.456321716308594 + ], + [ + "-6", + -11.456337928771973 + ], + [ + "Ar", + -11.456433296203613 + ], + [ + "▁pu", + -11.456435203552246 + ], + [ + "▁Watson", + -11.45661735534668 + ], + [ + "▁internationally", + -11.456751823425293 + ], + [ + "▁bout", + -11.457042694091797 + ], + [ + "▁blamed", + -11.457080841064453 + ], + [ + "▁accounting", + -11.457093238830566 + ], + [ + "▁accordance", + -11.45712661743164 + ], + [ + "▁grants", + -11.457541465759277 + ], + [ + "▁introducing", + -11.45763111114502 + ], + [ + "▁freely", + -11.457804679870605 + ], + [ + "▁Palestinian", + -11.457905769348145 + ], + [ + "▁finest", + -11.458029747009277 + ], + [ + "▁martial", + -11.458181381225586 + ], + [ + "▁namely", + -11.458374977111816 + ], + [ + "AA", + -11.458600044250488 + ], + [ + "▁battlefield", + -11.458783149719238 + ], + [ + "▁accommodation", + -11.459009170532227 + ], + [ + "▁Color", + -11.459076881408691 + ], + [ + "▁dealt", + -11.459436416625977 + ], + [ + "▁Gospel", + -11.459564208984375 + ], + [ + "gov", + -11.459980010986328 + ], + [ + "▁Boulevard", + -11.460113525390625 + ], + [ + "▁layout", + -11.46036148071289 + ], + [ + "▁Desert", + -11.46046257019043 + ], + [ + "▁electrons", + -11.460552215576172 + ], + [ + "http", + -11.460607528686523 + ], + [ + "uka", + -11.460684776306152 + ], + [ + "300", + -11.460833549499512 + ], + [ + "▁preliminary", + -11.460943222045898 + ], + [ + "▁Heaven", + -11.460951805114746 + ], + [ + "▁disappointed", + -11.46123218536377 + ], + [ + "▁Found", + -11.46142864227295 + ], + [ + "▁worried", + -11.461773872375488 + ], + [ + "▁Chamberlain", + -11.462064743041992 + ], + [ + "▁Olivia", + -11.462327003479004 + ], + [ + "▁Task", + -11.462445259094238 + ], + [ + "▁qualification", + -11.462604522705078 + ], + [ + "▁logical", + -11.46264362335205 + ], + [ + "hawk", + -11.462701797485352 + ], + [ + "oso", + -11.462701797485352 + ], + [ + "▁minimize", + -11.462897300720215 + ], + [ + "▁Blake", + -11.462908744812012 + ], + [ + "▁equality", + -11.463356018066406 + ], + [ + "▁Blanc", + -11.463532447814941 + ], + [ + "▁relied", + -11.463723182678223 + ], + [ + "▁Block", + -11.463724136352539 + ], + [ + "▁fears", + -11.463746070861816 + ], + [ + "dell", + -11.464011192321777 + ], + [ + "▁planting", + -11.4642972946167 + ], + [ + "eva", + -11.464561462402344 + ], + [ + "▁duck", + -11.464591979980469 + ], + [ + "▁temples", + -11.465312004089355 + ], + [ + "▁insulin", + -11.465387344360352 + ], + [ + "▁Ltd", + -11.4654541015625 + ], + [ + "▁teammate", + -11.465514183044434 + ], + [ + "throp", + -11.465641021728516 + ], + [ + "▁demanding", + -11.465702056884766 + ], + [ + "hin", + -11.465709686279297 + ], + [ + "▁highlights", + -11.465806007385254 + ], + [ + "▁Et", + -11.46631145477295 + ], + [ + "▁headline", + -11.466570854187012 + ], + [ + "▁tribal", + -11.466573715209961 + ], + [ + "▁fragment", + -11.466657638549805 + ], + [ + "▁dump", + -11.46672248840332 + ], + [ + "200", + -11.466801643371582 + ], + [ + "▁Eva", + -11.467029571533203 + ], + [ + "▁Actress", + -11.467434883117676 + ], + [ + "▁squadrons", + -11.467604637145996 + ], + [ + "ota", + -11.467778205871582 + ], + [ + "▁punch", + -11.467785835266113 + ], + [ + "▁Æthel", + -11.468158721923828 + ], + [ + "▁Meyer", + -11.468169212341309 + ], + [ + "▁CS", + -11.468214988708496 + ], + [ + "▁Caroline", + -11.468369483947754 + ], + [ + "▁obesity", + -11.468717575073242 + ], + [ + "▁fierce", + -11.468719482421875 + ], + [ + "▁proclaimed", + -11.468892097473145 + ], + [ + "▁slope", + -11.468923568725586 + ], + [ + "▁Berkeley", + -11.46899700164795 + ], + [ + "▁metaphor", + -11.469019889831543 + ], + [ + "▁wages", + -11.469098091125488 + ], + [ + "▁bomber", + -11.469130516052246 + ], + [ + "TM", + -11.469207763671875 + ], + [ + "sezon", + -11.469487190246582 + ], + [ + "▁Which", + -11.469554901123047 + ], + [ + "▁Train", + -11.469566345214844 + ], + [ + "orn", + -11.469599723815918 + ], + [ + "▁coalition", + -11.469911575317383 + ], + [ + "lk", + -11.470065116882324 + ], + [ + "▁val", + -11.470900535583496 + ], + [ + "▁Titan", + -11.47107219696045 + ], + [ + "▁Guild", + -11.471120834350586 + ], + [ + "▁Almost", + -11.471162796020508 + ], + [ + "▁Kaiser", + -11.471342086791992 + ], + [ + "▁escorted", + -11.471386909484863 + ], + [ + "level", + -11.471416473388672 + ], + [ + "▁arrow", + -11.471535682678223 + ], + [ + "▁Santiago", + -11.47178840637207 + ], + [ + "▁washed", + -11.471942901611328 + ], + [ + "▁Agriculture", + -11.472071647644043 + ], + [ + "▁Serbia", + -11.472268104553223 + ], + [ + "▁concentrate", + -11.472268104553223 + ], + [ + "▁Spi", + -11.472315788269043 + ], + [ + "-12", + -11.47242546081543 + ], + [ + "▁functioning", + -11.472846984863281 + ], + [ + "▁OS", + -11.472862243652344 + ], + [ + "▁babies", + -11.472908020019531 + ], + [ + "▁attributes", + -11.47311782836914 + ], + [ + "▁Beijing", + -11.473467826843262 + ], + [ + "▁FIFA", + -11.473467826843262 + ], + [ + "▁Hey", + -11.473517417907715 + ], + [ + "▁Systems", + -11.473784446716309 + ], + [ + "▁spark", + -11.473957061767578 + ], + [ + "▁lend", + -11.473966598510742 + ], + [ + "▁Butler", + -11.473981857299805 + ], + [ + "▁bike", + -11.474026679992676 + ], + [ + "▁accent", + -11.474045753479004 + ], + [ + "▁manufacturer", + -11.474066734313965 + ], + [ + "▁continuously", + -11.474203109741211 + ], + [ + "▁gains", + -11.474449157714844 + ], + [ + "▁1886", + -11.474678993225098 + ], + [ + "▁clause", + -11.474868774414062 + ], + [ + "▁Foster", + -11.475057601928711 + ], + [ + "rug", + -11.475093841552734 + ], + [ + "▁golf", + -11.475456237792969 + ], + [ + "▁Vic", + -11.475574493408203 + ], + [ + "ao", + -11.47579574584961 + ], + [ + "▁walks", + -11.47595500946045 + ], + [ + "word", + -11.476086616516113 + ], + [ + "▁Mou", + -11.476127624511719 + ], + [ + "▁Fanm", + -11.476163864135742 + ], + [ + "What", + -11.47636604309082 + ], + [ + "▁Otto", + -11.476588249206543 + ], + [ + "▁Member", + -11.47670841217041 + ], + [ + "▁regain", + -11.476740837097168 + ], + [ + "aut", + -11.476790428161621 + ], + [ + "▁Kid", + -11.476798057556152 + ], + [ + "▁turbines", + -11.476909637451172 + ], + [ + "▁tv", + -11.476996421813965 + ], + [ + "▁Eli", + -11.47708511352539 + ], + [ + "bell", + -11.477333068847656 + ], + [ + "▁productive", + -11.477388381958008 + ], + [ + "▁Fifth", + -11.477398872375488 + ], + [ + "▁hormone", + -11.478114128112793 + ], + [ + "had", + -11.478297233581543 + ], + [ + "▁Westminster", + -11.47829818725586 + ], + [ + "▁Stanford", + -11.478347778320312 + ], + [ + "fect", + -11.478415489196777 + ], + [ + "cop", + -11.478446960449219 + ], + [ + "▁rugby", + -11.478523254394531 + ], + [ + "▁Theodore", + -11.478652000427246 + ], + [ + "iter", + -11.47872257232666 + ], + [ + "glo", + -11.478778839111328 + ], + [ + "▁Newcastle", + -11.478803634643555 + ], + [ + "▁genera", + -11.478851318359375 + ], + [ + "▁1887", + -11.47893238067627 + ], + [ + "eno", + -11.479169845581055 + ], + [ + "IG", + -11.47920036315918 + ], + [ + "foot", + -11.479360580444336 + ], + [ + "▁Sox", + -11.479374885559082 + ], + [ + "▁persistent", + -11.479442596435547 + ], + [ + "▁dans", + -11.47956371307373 + ], + [ + "▁Path", + -11.47966480255127 + ], + [ + "▁filling", + -11.479949951171875 + ], + [ + "dog", + -11.479987144470215 + ], + [ + "▁Tr", + -11.48008918762207 + ], + [ + "▁ji", + -11.480090141296387 + ], + [ + "▁Bin", + -11.480246543884277 + ], + [ + "▁Gothic", + -11.480502128601074 + ], + [ + "▁Scientific", + -11.4807767868042 + ], + [ + "▁⁄", + -11.480842590332031 + ], + [ + "▁Bass", + -11.480961799621582 + ], + [ + "▁placement", + -11.481001853942871 + ], + [ + "▁contributor", + -11.481058120727539 + ], + [ + "▁threaten", + -11.481066703796387 + ], + [ + "lets", + -11.481125831604004 + ], + [ + "▁mansion", + -11.481225967407227 + ], + [ + "▁Mobile", + -11.481340408325195 + ], + [ + "tech", + -11.48134708404541 + ], + [ + "▁Him", + -11.48145580291748 + ], + [ + "▁utilize", + -11.48155689239502 + ], + [ + "▁oswa", + -11.481644630432129 + ], + [ + "▁instances", + -11.481742858886719 + ], + [ + "▁Gui", + -11.481913566589355 + ], + [ + "▁Jen", + -11.482063293457031 + ], + [ + "▁enrolled", + -11.482093811035156 + ], + [ + "▁Money", + -11.48210620880127 + ], + [ + "▁exploring", + -11.48218822479248 + ], + [ + "▁scales", + -11.482376098632812 + ], + [ + "▁equation", + -11.482452392578125 + ], + [ + "pul", + -11.48276138305664 + ], + [ + "▁Sci", + -11.48304271697998 + ], + [ + "▁Wang", + -11.483083724975586 + ], + [ + "▁bills", + -11.483148574829102 + ], + [ + "Do", + -11.483246803283691 + ], + [ + "▁intensive", + -11.48325252532959 + ], + [ + "▁panic", + -11.483269691467285 + ], + [ + "rance", + -11.483352661132812 + ], + [ + "▁prohibited", + -11.483461380004883 + ], + [ + "his", + -11.483672142028809 + ], + [ + "color", + -11.483759880065918 + ], + [ + "▁collaborated", + -11.48376750946045 + ], + [ + "▁spreading", + -11.483770370483398 + ], + [ + "▁volcano", + -11.483946800231934 + ], + [ + "▁Analysis", + -11.484189987182617 + ], + [ + "▁Comedy", + -11.4842529296875 + ], + [ + "▁laps", + -11.484400749206543 + ], + [ + "oun", + -11.484505653381348 + ], + [ + "▁CH", + -11.484539031982422 + ], + [ + "iko", + -11.484556198120117 + ], + [ + "▁bench", + -11.484600067138672 + ], + [ + "▁Corn", + -11.484687805175781 + ], + [ + "▁trunk", + -11.484880447387695 + ], + [ + "▁Allah", + -11.485014915466309 + ], + [ + "▁stunt", + -11.485027313232422 + ], + [ + "▁Mail", + -11.485066413879395 + ], + [ + "▁rulers", + -11.4851713180542 + ], + [ + "ific", + -11.485382080078125 + ], + [ + "ulator", + -11.485507011413574 + ], + [ + "hart", + -11.485539436340332 + ], + [ + "▁Marines", + -11.485641479492188 + ], + [ + "▁sufficiently", + -11.485712051391602 + ], + [ + "▁uprising", + -11.485876083374023 + ], + [ + "▁illustrations", + -11.486067771911621 + ], + [ + "▁hy", + -11.48692798614502 + ], + [ + "▁lamp", + -11.486949920654297 + ], + [ + "▁utilized", + -11.487069129943848 + ], + [ + "▁elementary", + -11.487288475036621 + ], + [ + "opa", + -11.48733139038086 + ], + [ + "▁NC", + -11.487395286560059 + ], + [ + "▁mortar", + -11.487421035766602 + ], + [ + "▁monster", + -11.487495422363281 + ], + [ + "▁shipped", + -11.487751007080078 + ], + [ + "ddle", + -11.487771034240723 + ], + [ + "▁vin", + -11.487860679626465 + ], + [ + "▁timing", + -11.48793888092041 + ], + [ + "▁Clear", + -11.488099098205566 + ], + [ + "▁Ottawa", + -11.488139152526855 + ], + [ + "chron", + -11.488459587097168 + ], + [ + "▁Bengal", + -11.488569259643555 + ], + [ + "▁Mercedes", + -11.48870849609375 + ], + [ + "▁implant", + -11.488738059997559 + ], + [ + "AF", + -11.488984107971191 + ], + [ + "▁Venice", + -11.489054679870605 + ], + [ + "mand", + -11.489145278930664 + ], + [ + "▁Chang", + -11.489320755004883 + ], + [ + "▁enzyme", + -11.489398956298828 + ], + [ + "▁showcase", + -11.489465713500977 + ], + [ + "▁Leader", + -11.490023612976074 + ], + [ + "▁barely", + -11.490189552307129 + ], + [ + "▁angel", + -11.490459442138672 + ], + [ + "flu", + -11.490626335144043 + ], + [ + "▁drives", + -11.490644454956055 + ], + [ + "▁mimic", + -11.490657806396484 + ], + [ + "▁ye", + -11.490687370300293 + ], + [ + "▁drift", + -11.490918159484863 + ], + [ + "▁Stop", + -11.491133689880371 + ], + [ + "▁onset", + -11.491201400756836 + ], + [ + "▁keen", + -11.491222381591797 + ], + [ + "▁statute", + -11.491279602050781 + ], + [ + "▁complaints", + -11.491283416748047 + ], + [ + "▁homeless", + -11.491464614868164 + ], + [ + "EM", + -11.491547584533691 + ], + [ + "▁Individual", + -11.491555213928223 + ], + [ + "▁latitude", + -11.491556167602539 + ], + [ + "▁inspection", + -11.491628646850586 + ], + [ + "▁Panama", + -11.491719245910645 + ], + [ + "▁loyalty", + -11.49172306060791 + ], + [ + "▁Rag", + -11.491739273071289 + ], + [ + "▁Denver", + -11.491986274719238 + ], + [ + "▁resignation", + -11.492415428161621 + ], + [ + "▁exhibited", + -11.492623329162598 + ], + [ + "▁autism", + -11.492719650268555 + ], + [ + "▁1876", + -11.492877960205078 + ], + [ + "▁wounds", + -11.492934226989746 + ], + [ + "▁bold", + -11.4931001663208 + ], + [ + "ente", + -11.493345260620117 + ], + [ + "▁reproduction", + -11.49339485168457 + ], + [ + "▁sponsor", + -11.493416786193848 + ], + [ + "▁reproductive", + -11.493553161621094 + ], + [ + "rina", + -11.493756294250488 + ], + [ + "▁disadvantage", + -11.493839263916016 + ], + [ + "▁bacterial", + -11.493892669677734 + ], + [ + "▁emotion", + -11.493905067443848 + ], + [ + "▁Steam", + -11.493978500366211 + ], + [ + "▁Cincinnati", + -11.494125366210938 + ], + [ + "won", + -11.494415283203125 + ], + [ + "▁epidemic", + -11.494553565979004 + ], + [ + "eff", + -11.494902610778809 + ], + [ + "▁Burn", + -11.494903564453125 + ], + [ + "▁advocate", + -11.494935035705566 + ], + [ + "▁$1", + -11.495100975036621 + ], + [ + "▁Anton", + -11.495118141174316 + ], + [ + "▁Scientists", + -11.49572467803955 + ], + [ + "▁pandemic", + -11.495841979980469 + ], + [ + "▁undergraduate", + -11.495841979980469 + ], + [ + "▁tro", + -11.496087074279785 + ], + [ + "TE", + -11.496418952941895 + ], + [ + "makers", + -11.496439933776855 + ], + [ + "▁Metal", + -11.49666976928711 + ], + [ + "▁broader", + -11.496705055236816 + ], + [ + "▁sodium", + -11.496838569641113 + ], + [ + "▁marginal", + -11.496875762939453 + ], + [ + "▁pulse", + -11.497025489807129 + ], + [ + "▁substantially", + -11.497090339660645 + ], + [ + "▁drill", + -11.497260093688965 + ], + [ + "▁Romney", + -11.497326850891113 + ], + [ + "Brien", + -11.497718811035156 + ], + [ + "▁surgeon", + -11.497827529907227 + ], + [ + "▁hate", + -11.498174667358398 + ], + [ + "▁unexpected", + -11.498209953308105 + ], + [ + "▁Yugoslavia", + -11.498285293579102 + ], + [ + "▁interactive", + -11.498456954956055 + ], + [ + "▁politically", + -11.498504638671875 + ], + [ + "▁agrees", + -11.498682975769043 + ], + [ + "▁boyfriend", + -11.49872875213623 + ], + [ + "▁diagram", + -11.498729705810547 + ], + [ + "▁probe", + -11.49884033203125 + ], + [ + "▁meals", + -11.49902057647705 + ], + [ + "▁Jin", + -11.499281883239746 + ], + [ + "▁invitation", + -11.499295234680176 + ], + [ + "▁Sav", + -11.499797821044922 + ], + [ + "▁Vegas", + -11.499897003173828 + ], + [ + "▁sailors", + -11.500170707702637 + ], + [ + "▁researcher", + -11.500359535217285 + ], + [ + "▁trips", + -11.500361442565918 + ], + [ + "note", + -11.500372886657715 + ], + [ + "▁sophisticated", + -11.500434875488281 + ], + [ + "▁peers", + -11.500686645507812 + ], + [ + "lag", + -11.500753402709961 + ], + [ + "▁urine", + -11.501800537109375 + ], + [ + "▁ambitious", + -11.501874923706055 + ], + [ + "▁Hence", + -11.501932144165039 + ], + [ + "▁rub", + -11.50227165222168 + ], + [ + "▁relate", + -11.502527236938477 + ], + [ + "buck", + -11.502777099609375 + ], + [ + "▁Mul", + -11.502852439880371 + ], + [ + "▁processed", + -11.502909660339355 + ], + [ + "▁Trinity", + -11.503028869628906 + ], + [ + "▁Romanian", + -11.503153800964355 + ], + [ + "uro", + -11.50344181060791 + ], + [ + "▁referee", + -11.503539085388184 + ], + [ + "▁fusion", + -11.503549575805664 + ], + [ + "▁Ghost", + -11.503894805908203 + ], + [ + "▁Sierra", + -11.503900527954102 + ], + [ + "▁incomplete", + -11.504273414611816 + ], + [ + "▁sensitivity", + -11.504682540893555 + ], + [ + "▁Banks", + -11.504698753356934 + ], + [ + "▁Marx", + -11.504766464233398 + ], + [ + "ingham", + -11.504780769348145 + ], + [ + "case", + -11.504823684692383 + ], + [ + "▁flown", + -11.505035400390625 + ], + [ + "IR", + -11.505121231079102 + ], + [ + "▁rubber", + -11.50513744354248 + ], + [ + "▁Colin", + -11.505196571350098 + ], + [ + "▁Challenge", + -11.505338668823242 + ], + [ + "▁Cab", + -11.5054349899292 + ], + [ + "▁rape", + -11.50547981262207 + ], + [ + "▁mentor", + -11.505501747131348 + ], + [ + "PO", + -11.50578498840332 + ], + [ + "iform", + -11.505874633789062 + ], + [ + "fre", + -11.5059175491333 + ], + [ + "version", + -11.505951881408691 + ], + [ + "▁clients", + -11.505985260009766 + ], + [ + "▁LP", + -11.506041526794434 + ], + [ + "▁Bloom", + -11.506209373474121 + ], + [ + "PD", + -11.5062837600708 + ], + [ + "▁Springfield", + -11.50636100769043 + ], + [ + "▁Crow", + -11.506428718566895 + ], + [ + "▁Pay", + -11.50672435760498 + ], + [ + "▁Esp", + -11.50677490234375 + ], + [ + "▁Louise", + -11.506956100463867 + ], + [ + "▁Comb", + -11.507068634033203 + ], + [ + "▁facial", + -11.507113456726074 + ], + [ + "▁deals", + -11.507519721984863 + ], + [ + "▁investors", + -11.507606506347656 + ], + [ + "▁cameras", + -11.507667541503906 + ], + [ + "exp", + -11.507779121398926 + ], + [ + "▁Martha", + -11.507841110229492 + ], + [ + "▁revenge", + -11.50794506072998 + ], + [ + "▁Brain", + -11.507981300354004 + ], + [ + "▁Members", + -11.5083646774292 + ], + [ + "▁Rh", + -11.508386611938477 + ], + [ + "▁accidents", + -11.50845718383789 + ], + [ + "▁swallow", + -11.508523941040039 + ], + [ + "▁halt", + -11.508990287780762 + ], + [ + "▁Ellen", + -11.5092191696167 + ], + [ + "▁1884", + -11.509356498718262 + ], + [ + "grade", + -11.509552001953125 + ], + [ + "cot", + -11.509557723999023 + ], + [ + "therapy", + -11.509598731994629 + ], + [ + "▁terrorist", + -11.509648323059082 + ], + [ + "tie", + -11.50971508026123 + ], + [ + "pass", + -11.509719848632812 + ], + [ + "▁galaxy", + -11.50997543334961 + ], + [ + "▁cheese", + -11.510021209716797 + ], + [ + "▁tired", + -11.510123252868652 + ], + [ + "▁chant", + -11.51014232635498 + ], + [ + "▁sustain", + -11.510207176208496 + ], + [ + "aux", + -11.510238647460938 + ], + [ + "▁float", + -11.510293960571289 + ], + [ + "▁wartime", + -11.510335922241211 + ], + [ + "▁termed", + -11.51047420501709 + ], + [ + "▁competitions", + -11.510595321655273 + ], + [ + "▁tire", + -11.510655403137207 + ], + [ + "issa", + -11.510700225830078 + ], + [ + "▁batted", + -11.511088371276855 + ], + [ + "▁Animal", + -11.511123657226562 + ], + [ + "▁Leicester", + -11.511137962341309 + ], + [ + "agon", + -11.511161804199219 + ], + [ + "tell", + -11.511385917663574 + ], + [ + "▁Columbus", + -11.511428833007812 + ], + [ + "TH", + -11.511493682861328 + ], + [ + "▁tables", + -11.511510848999023 + ], + [ + "▁resistant", + -11.511603355407715 + ], + [ + "nut", + -11.511724472045898 + ], + [ + "moto", + -11.51193904876709 + ], + [ + "▁Glass", + -11.51216983795166 + ], + [ + "▁dé", + -11.51224136352539 + ], + [ + "▁assert", + -11.512569427490234 + ], + [ + "▁dawn", + -11.512635231018066 + ], + [ + "▁Jake", + -11.512720108032227 + ], + [ + "▁gates", + -11.51301097869873 + ], + [ + "dian", + -11.51353645324707 + ], + [ + "▁pond", + -11.513996124267578 + ], + [ + "▁journalists", + -11.514120101928711 + ], + [ + "CL", + -11.514284133911133 + ], + [ + "▁attitudes", + -11.514439582824707 + ], + [ + "▁profits", + -11.514464378356934 + ], + [ + "▁RE", + -11.514482498168945 + ], + [ + "▁Comment", + -11.514717102050781 + ], + [ + "▁genuine", + -11.514727592468262 + ], + [ + "▁Lion", + -11.514742851257324 + ], + [ + "▁Adventure", + -11.51529598236084 + ], + [ + "▁inaugural", + -11.515509605407715 + ], + [ + "▁Southeast", + -11.515543937683105 + ], + [ + "▁Pick", + -11.51584529876709 + ], + [ + "▁Clan", + -11.515870094299316 + ], + [ + "▁Nam", + -11.515872955322266 + ], + [ + "▁switched", + -11.515941619873047 + ], + [ + "▁guided", + -11.515946388244629 + ], + [ + "▁strengthening", + -11.516180992126465 + ], + [ + "▁Drug", + -11.516651153564453 + ], + [ + "▁genres", + -11.516681671142578 + ], + [ + "▁suggestions", + -11.516777038574219 + ], + [ + "▁whenever", + -11.516778945922852 + ], + [ + "▁Student", + -11.517195701599121 + ], + [ + "linger", + -11.517241477966309 + ], + [ + "▁missile", + -11.517306327819824 + ], + [ + "tour", + -11.517375946044922 + ], + [ + "turn", + -11.517620086669922 + ], + [ + "ott", + -11.517722129821777 + ], + [ + "oka", + -11.517762184143066 + ], + [ + "bird", + -11.517783164978027 + ], + [ + "▁bars", + -11.51783561706543 + ], + [ + "▁remake", + -11.518143653869629 + ], + [ + "▁tolerance", + -11.518159866333008 + ], + [ + "lusion", + -11.51821517944336 + ], + [ + "▁veterans", + -11.518284797668457 + ], + [ + "cate", + -11.51853084564209 + ], + [ + "▁boxes", + -11.518613815307617 + ], + [ + "▁basically", + -11.51873779296875 + ], + [ + "▁aviation", + -11.518749237060547 + ], + [ + "▁Generation", + -11.518767356872559 + ], + [ + "▁trio", + -11.518774032592773 + ], + [ + "para", + -11.51891803741455 + ], + [ + "▁hind", + -11.518928527832031 + ], + [ + "▁feminist", + -11.519021034240723 + ], + [ + "▁allied", + -11.51911735534668 + ], + [ + "▁awake", + -11.519341468811035 + ], + [ + "▁nearest", + -11.519559860229492 + ], + [ + "▁cabin", + -11.519577026367188 + ], + [ + "▁thrust", + -11.519607543945312 + ], + [ + "▁publicity", + -11.519643783569336 + ], + [ + "▁Vin", + -11.519829750061035 + ], + [ + "и", + -11.519899368286133 + ], + [ + "▁Monument", + -11.519901275634766 + ], + [ + "▁northeastern", + -11.520059585571289 + ], + [ + "▁Vienna", + -11.520195007324219 + ], + [ + "Ba", + -11.520220756530762 + ], + [ + "▁capability", + -11.520364761352539 + ], + [ + "ality", + -11.52038288116455 + ], + [ + "▁SH", + -11.520580291748047 + ], + [ + "▁Swan", + -11.520625114440918 + ], + [ + "▁Single", + -11.520665168762207 + ], + [ + "▁delegates", + -11.52071762084961 + ], + [ + "▁Sue", + -11.520805358886719 + ], + [ + "▁Tommy", + -11.521020889282227 + ], + [ + "▁Ferdinand", + -11.521075248718262 + ], + [ + "▁philosophical", + -11.521075248718262 + ], + [ + "break", + -11.521260261535645 + ], + [ + "▁potassium", + -11.521368980407715 + ], + [ + "▁strings", + -11.521385192871094 + ], + [ + "cott", + -11.521574020385742 + ], + [ + "bur", + -11.521662712097168 + ], + [ + "▁united", + -11.522592544555664 + ], + [ + "core", + -11.522623062133789 + ], + [ + "▁une", + -11.522686958312988 + ], + [ + "▁drops", + -11.522744178771973 + ], + [ + "▁attain", + -11.52284049987793 + ], + [ + "▁heal", + -11.522909164428711 + ], + [ + "▁fitness", + -11.523031234741211 + ], + [ + "▁fond", + -11.523070335388184 + ], + [ + "▁tours", + -11.523576736450195 + ], + [ + "fight", + -11.523625373840332 + ], + [ + "▁scratch", + -11.523722648620605 + ], + [ + "▁unity", + -11.52381420135498 + ], + [ + "olog", + -11.523921966552734 + ], + [ + "▁Duncan", + -11.524109840393066 + ], + [ + "▁Hawaiian", + -11.524271011352539 + ], + [ + "▁Hispanic", + -11.524312019348145 + ], + [ + "▁Malta", + -11.524420738220215 + ], + [ + "tum", + -11.524883270263672 + ], + [ + "▁lengthy", + -11.524888038635254 + ], + [ + "▁Beyond", + -11.524901390075684 + ], + [ + "▁ash", + -11.525023460388184 + ], + [ + "OD", + -11.525031089782715 + ], + [ + "▁median", + -11.525214195251465 + ], + [ + "▁counsel", + -11.52524471282959 + ], + [ + "▁populated", + -11.525286674499512 + ], + [ + "▁canon", + -11.525352478027344 + ], + [ + "mount", + -11.525737762451172 + ], + [ + "▁injection", + -11.52578067779541 + ], + [ + "▁organisations", + -11.525935173034668 + ], + [ + "▁Glee", + -11.525973320007324 + ], + [ + "▁Alt", + -11.526328086853027 + ], + [ + "▁zinc", + -11.526676177978516 + ], + [ + "▁robust", + -11.526689529418945 + ], + [ + "▁Laurent", + -11.526710510253906 + ], + [ + "▁captive", + -11.52672290802002 + ], + [ + "▁Select", + -11.526725769042969 + ], + [ + "bl", + -11.526860237121582 + ], + [ + "▁Hearts", + -11.526907920837402 + ], + [ + "▁Hir", + -11.5269136428833 + ], + [ + "▁bro", + -11.527019500732422 + ], + [ + "▁retreated", + -11.5270357131958 + ], + [ + "▁develops", + -11.527118682861328 + ], + [ + "▁Clement", + -11.527289390563965 + ], + [ + "▁Julie", + -11.527299880981445 + ], + [ + "▁Richardson", + -11.527314186096191 + ], + [ + "▁delegation", + -11.527558326721191 + ], + [ + "▁dish", + -11.527701377868652 + ], + [ + "hoe", + -11.527892112731934 + ], + [ + "▁Give", + -11.5279541015625 + ], + [ + "▁grape", + -11.528156280517578 + ], + [ + "▁suppress", + -11.528321266174316 + ], + [ + "uld", + -11.528361320495605 + ], + [ + "inal", + -11.528440475463867 + ], + [ + "▁bleeding", + -11.52844524383545 + ], + [ + "▁unaware", + -11.528461456298828 + ], + [ + "▁provider", + -11.52846908569336 + ], + [ + "▁emphasized", + -11.528667449951172 + ], + [ + "▁mounts", + -11.528668403625488 + ], + [ + "text", + -11.528770446777344 + ], + [ + "▁pill", + -11.529440879821777 + ], + [ + "LO", + -11.529723167419434 + ], + [ + "▁Sco", + -11.529768943786621 + ], + [ + "▁pray", + -11.5298433303833 + ], + [ + "▁nursing", + -11.529926300048828 + ], + [ + "▁1875", + -11.530057907104492 + ], + [ + "▁stuck", + -11.530229568481445 + ], + [ + "\")", + -11.530259132385254 + ], + [ + "▁au", + -11.53032398223877 + ], + [ + "▁appoint", + -11.530330657958984 + ], + [ + "▁chromosome", + -11.530519485473633 + ], + [ + "▁probability", + -11.530816078186035 + ], + [ + "▁hanging", + -11.531057357788086 + ], + [ + "▁lifted", + -11.531188011169434 + ], + [ + "cla", + -11.531381607055664 + ], + [ + "▁Austro", + -11.531452178955078 + ], + [ + "achi", + -11.531624794006348 + ], + [ + "cephal", + -11.531661033630371 + ], + [ + "▁Josh", + -11.531695365905762 + ], + [ + "▁Often", + -11.531859397888184 + ], + [ + "▁cholesterol", + -11.532002449035645 + ], + [ + "▁imaging", + -11.532050132751465 + ], + [ + "zzi", + -11.5322265625 + ], + [ + "▁shrub", + -11.532299995422363 + ], + [ + "▁Universe", + -11.532353401184082 + ], + [ + "ł", + -11.532401084899902 + ], + [ + "oxy", + -11.532453536987305 + ], + [ + "▁motivated", + -11.532501220703125 + ], + [ + "▁Nothing", + -11.532658576965332 + ], + [ + "dos", + -11.532678604125977 + ], + [ + "▁Poll", + -11.532683372497559 + ], + [ + "ury", + -11.532700538635254 + ], + [ + "▁medals", + -11.532957077026367 + ], + [ + "▁Leeds", + -11.532992362976074 + ], + [ + "▁nucleus", + -11.533048629760742 + ], + [ + "▁Malay", + -11.533121109008789 + ], + [ + "EF", + -11.533310890197754 + ], + [ + "▁Principal", + -11.533318519592285 + ], + [ + "ggle", + -11.533483505249023 + ], + [ + "▁possibilities", + -11.533488273620605 + ], + [ + "trans", + -11.53352165222168 + ], + [ + "▁owing", + -11.533711433410645 + ], + [ + "pay", + -11.533823013305664 + ], + [ + "▁Aaron", + -11.533824920654297 + ], + [ + "zel", + -11.533843994140625 + ], + [ + "▁smallest", + -11.533881187438965 + ], + [ + "▁Bangladesh", + -11.534083366394043 + ], + [ + "▁atop", + -11.53419017791748 + ], + [ + "▁prone", + -11.534502983093262 + ], + [ + "▁bas", + -11.534516334533691 + ], + [ + "▁prompting", + -11.53464412689209 + ], + [ + "▁Hopkins", + -11.534696578979492 + ], + [ + "▁directing", + -11.534744262695312 + ], + [ + "▁aided", + -11.534817695617676 + ], + [ + "▁Hip", + -11.534887313842773 + ], + [ + "2)", + -11.534967422485352 + ], + [ + "▁balls", + -11.534990310668945 + ], + [ + "▁Hull", + -11.535248756408691 + ], + [ + "▁summary", + -11.535274505615234 + ], + [ + "▁Easter", + -11.535301208496094 + ], + [ + "▁productivity", + -11.535386085510254 + ], + [ + "ML", + -11.535537719726562 + ], + [ + "▁southwestern", + -11.535627365112305 + ], + [ + "▁onwards", + -11.535690307617188 + ], + [ + "▁pride", + -11.53584098815918 + ], + [ + "▁Merc", + -11.535988807678223 + ], + [ + "▁Cox", + -11.536126136779785 + ], + [ + "▁1881", + -11.536142349243164 + ], + [ + "▁installment", + -11.536147117614746 + ], + [ + "▁Glasgow", + -11.536169052124023 + ], + [ + "▁ram", + -11.536210060119629 + ], + [ + "▁posed", + -11.53631591796875 + ], + [ + "▁Normandy", + -11.536324501037598 + ], + [ + "▁pounder", + -11.536415100097656 + ], + [ + "▁vocalist", + -11.536437034606934 + ], + [ + "▁Kre", + -11.536471366882324 + ], + [ + "▁reluctant", + -11.53658676147461 + ], + [ + "▁gallery", + -11.536799430847168 + ], + [ + "▁antagonist", + -11.537067413330078 + ], + [ + "▁trademark", + -11.537200927734375 + ], + [ + "▁thank", + -11.53765869140625 + ], + [ + "▁Jennifer", + -11.537660598754883 + ], + [ + "NI", + -11.537700653076172 + ], + [ + "▁editions", + -11.538105964660645 + ], + [ + "▁developer", + -11.538538932800293 + ], + [ + "▁ensemble", + -11.538557052612305 + ], + [ + "▁Map", + -11.538614273071289 + ], + [ + "ished", + -11.538678169250488 + ], + [ + "▁restaurants", + -11.538884162902832 + ], + [ + "smith", + -11.538902282714844 + ], + [ + "▁coupled", + -11.53895092010498 + ], + [ + "▁Delhi", + -11.539115905761719 + ], + [ + "▁needle", + -11.539430618286133 + ], + [ + "rice", + -11.539505004882812 + ], + [ + "▁1871", + -11.539521217346191 + ], + [ + "▁lens", + -11.540308952331543 + ], + [ + "print", + -11.540313720703125 + ], + [ + "▁Edgar", + -11.54033088684082 + ], + [ + "asse", + -11.540340423583984 + ], + [ + "▁Choice", + -11.540434837341309 + ], + [ + "▁wool", + -11.540505409240723 + ], + [ + "▁editorial", + -11.540599822998047 + ], + [ + "evi", + -11.540794372558594 + ], + [ + "hab", + -11.540854454040527 + ], + [ + "▁Helm", + -11.540857315063477 + ], + [ + "▁coaches", + -11.540901184082031 + ], + [ + "▁contents", + -11.541132926940918 + ], + [ + "▁marble", + -11.541348457336426 + ], + [ + "▁larvae", + -11.541568756103516 + ], + [ + "▁distances", + -11.541581153869629 + ], + [ + "▁cope", + -11.541838645935059 + ], + [ + "▁René", + -11.541906356811523 + ], + [ + "lain", + -11.542179107666016 + ], + [ + "▁surgical", + -11.542452812194824 + ], + [ + "▁Gross", + -11.542484283447266 + ], + [ + "▁Cena", + -11.542497634887695 + ], + [ + "▁surprising", + -11.542577743530273 + ], + [ + "▁Theater", + -11.542741775512695 + ], + [ + "▁faction", + -11.542743682861328 + ], + [ + "▁eighteen", + -11.542831420898438 + ], + [ + "▁Sale", + -11.542878150939941 + ], + [ + "▁vocabulary", + -11.543050765991211 + ], + [ + "NG", + -11.543257713317871 + ], + [ + "pid", + -11.543301582336426 + ], + [ + "▁afraid", + -11.543354034423828 + ], + [ + "▁ruins", + -11.543394088745117 + ], + [ + "▁Albany", + -11.543416976928711 + ], + [ + "▁Twin", + -11.543450355529785 + ], + [ + "▁tide", + -11.543450355529785 + ], + [ + "▁cameo", + -11.543497085571289 + ], + [ + "▁canceled", + -11.543512344360352 + ], + [ + "▁crater", + -11.54366683959961 + ], + [ + "▁Millennium", + -11.543951988220215 + ], + [ + "▁Truth", + -11.544242858886719 + ], + [ + "▁1877", + -11.544280052185059 + ], + [ + "lop", + -11.54442024230957 + ], + [ + "▁Mongol", + -11.544514656066895 + ], + [ + "▁Tea", + -11.544525146484375 + ], + [ + "▁Powell", + -11.544584274291992 + ], + [ + "bby", + -11.544769287109375 + ], + [ + "▁anthem", + -11.544859886169434 + ], + [ + "▁Bears", + -11.544881820678711 + ], + [ + "▁advocated", + -11.544902801513672 + ], + [ + "▁hiding", + -11.544951438903809 + ], + [ + "▁infants", + -11.54505443572998 + ], + [ + "▁1869", + -11.54538345336914 + ], + [ + "▁Shield", + -11.54545783996582 + ], + [ + "▁Romans", + -11.545520782470703 + ], + [ + "▁mint", + -11.545607566833496 + ], + [ + "▁Cry", + -11.545726776123047 + ], + [ + "▁tier", + -11.545818328857422 + ], + [ + "▁Arena", + -11.545942306518555 + ], + [ + "▁Basin", + -11.546008110046387 + ], + [ + "▁Henderson", + -11.54605770111084 + ], + [ + "▁ministers", + -11.54606819152832 + ], + [ + "▁mad", + -11.546119689941406 + ], + [ + "▁translate", + -11.546156883239746 + ], + [ + "▁Pitt", + -11.54631519317627 + ], + [ + "▁Physical", + -11.546573638916016 + ], + [ + "▁1883", + -11.54658031463623 + ], + [ + "▁Heat", + -11.546673774719238 + ], + [ + "▁armoured", + -11.546857833862305 + ], + [ + "gos", + -11.54688549041748 + ], + [ + "▁fence", + -11.546965599060059 + ], + [ + "▁detachment", + -11.5470609664917 + ], + [ + "▁certificate", + -11.547263145446777 + ], + [ + "▁Screen", + -11.54727840423584 + ], + [ + "▁analyzed", + -11.547438621520996 + ], + [ + "vwa", + -11.547491073608398 + ], + [ + "▁stance", + -11.547630310058594 + ], + [ + "▁loading", + -11.547712326049805 + ], + [ + "▁sexually", + -11.547889709472656 + ], + [ + "▁projection", + -11.547931671142578 + ], + [ + "▁Poe", + -11.548029899597168 + ], + [ + "umi", + -11.548064231872559 + ], + [ + "▁Material", + -11.548168182373047 + ], + [ + "▁instructed", + -11.548232078552246 + ], + [ + "▁eu", + -11.548521995544434 + ], + [ + "▁asthma", + -11.548591613769531 + ], + [ + "▁inning", + -11.548888206481934 + ], + [ + "▁atis", + -11.549055099487305 + ], + [ + "▁Hugo", + -11.54916763305664 + ], + [ + "▁anonymous", + -11.549375534057617 + ], + [ + "keeper", + -11.549412727355957 + ], + [ + "▁lè", + -11.549628257751465 + ], + [ + "▁Typhoon", + -11.549678802490234 + ], + [ + "▁skilled", + -11.549678802490234 + ], + [ + "▁Marsh", + -11.54969310760498 + ], + [ + "SL", + -11.549854278564453 + ], + [ + "shore", + -11.549964904785156 + ], + [ + "▁Reform", + -11.550079345703125 + ], + [ + "usa", + -11.550419807434082 + ], + [ + "▁Thursday", + -11.550586700439453 + ], + [ + "▁breakdown", + -11.551392555236816 + ], + [ + "▁enabling", + -11.551493644714355 + ], + [ + "▁Heath", + -11.55153751373291 + ], + [ + "▁talked", + -11.5516939163208 + ], + [ + "▁Barcelona", + -11.551796913146973 + ], + [ + "▁glucose", + -11.551796913146973 + ], + [ + "emi", + -11.551986694335938 + ], + [ + "▁Stories", + -11.55211067199707 + ], + [ + "ended", + -11.552343368530273 + ], + [ + "▁comet", + -11.552388191223145 + ], + [ + "▁cre", + -11.552485466003418 + ], + [ + "▁uncertainty", + -11.552602767944336 + ], + [ + "ckle", + -11.552753448486328 + ], + [ + "called", + -11.5529203414917 + ], + [ + "▁pier", + -11.55354118347168 + ], + [ + "▁aktris", + -11.553544998168945 + ], + [ + "▁planes", + -11.553706169128418 + ], + [ + "▁fortifications", + -11.55370807647705 + ], + [ + "▁Angelou", + -11.553751945495605 + ], + [ + "▁explicitly", + -11.553913116455078 + ], + [ + "▁spike", + -11.554316520690918 + ], + [ + "▁runner", + -11.554342269897461 + ], + [ + "▁bubble", + -11.554526329040527 + ], + [ + "connect", + -11.554558753967285 + ], + [ + "▁noun", + -11.554916381835938 + ], + [ + "nard", + -11.555134773254395 + ], + [ + "▁1867", + -11.555164337158203 + ], + [ + "mbi", + -11.555845260620117 + ], + [ + "▁konesans", + -11.556046485900879 + ], + [ + "ike", + -11.556069374084473 + ], + [ + "▁Former", + -11.556209564208984 + ], + [ + "main", + -11.556341171264648 + ], + [ + "▁rapper", + -11.556397438049316 + ], + [ + "▁Shan", + -11.556642532348633 + ], + [ + "rod", + -11.556666374206543 + ], + [ + "▁Crusade", + -11.55696964263916 + ], + [ + "▁enables", + -11.557365417480469 + ], + [ + "elia", + -11.557682991027832 + ], + [ + "▁230", + -11.557707786560059 + ], + [ + "strat", + -11.55772876739502 + ], + [ + "▁designers", + -11.557744026184082 + ], + [ + "▁install", + -11.557748794555664 + ], + [ + "▁Castro", + -11.557859420776367 + ], + [ + "▁Practice", + -11.557872772216797 + ], + [ + "▁malaria", + -11.557912826538086 + ], + [ + "▁menu", + -11.558192253112793 + ], + [ + "▁refuses", + -11.558293342590332 + ], + [ + "beat", + -11.55836296081543 + ], + [ + "▁shoes", + -11.558422088623047 + ], + [ + "▁dye", + -11.558699607849121 + ], + [ + "▁photographer", + -11.558786392211914 + ], + [ + "▁Advance", + -11.55883502960205 + ], + [ + "▁mega", + -11.559065818786621 + ], + [ + "▁testimony", + -11.55909252166748 + ], + [ + "▁ambush", + -11.559112548828125 + ], + [ + "▁Foot", + -11.559203147888184 + ], + [ + "▁Circuit", + -11.559406280517578 + ], + [ + "▁forever", + -11.559591293334961 + ], + [ + "▁wreck", + -11.559618949890137 + ], + [ + "PP", + -11.55979061126709 + ], + [ + "▁roller", + -11.559859275817871 + ], + [ + "▁Full", + -11.560014724731445 + ], + [ + "range", + -11.560039520263672 + ], + [ + "▁Method", + -11.560088157653809 + ], + [ + "▁Spec", + -11.560121536254883 + ], + [ + "ür", + -11.560126304626465 + ], + [ + "▁mouri", + -11.560419082641602 + ], + [ + "▁Prison", + -11.560436248779297 + ], + [ + "▁activated", + -11.560503959655762 + ], + [ + "▁Springs", + -11.560630798339844 + ], + [ + "▁Alman", + -11.560739517211914 + ], + [ + "▁Examples", + -11.560874938964844 + ], + [ + "▁dreadnought", + -11.560924530029297 + ], + [ + "▁Monroe", + -11.560925483703613 + ], + [ + "▁shrine", + -11.56123161315918 + ], + [ + "▁balloon", + -11.561422348022461 + ], + [ + "▁Stars", + -11.561620712280273 + ], + [ + "▁Heavy", + -11.561836242675781 + ], + [ + "vision", + -11.562058448791504 + ], + [ + "▁assign", + -11.562141418457031 + ], + [ + "▁Senior", + -11.562150001525879 + ], + [ + "▁Cuban", + -11.562501907348633 + ], + [ + "▁Twenty", + -11.562760353088379 + ], + [ + "▁allocated", + -11.562779426574707 + ], + [ + "▁Complete", + -11.562782287597656 + ], + [ + "▁1866", + -11.562853813171387 + ], + [ + "ão", + -11.562864303588867 + ], + [ + "▁Lil", + -11.562926292419434 + ], + [ + "▁obscure", + -11.563459396362305 + ], + [ + "▁Torres", + -11.563514709472656 + ], + [ + "▁Damage", + -11.563570022583008 + ], + [ + "rra", + -11.563632011413574 + ], + [ + "▁lungs", + -11.563660621643066 + ], + [ + "lem", + -11.563756942749023 + ], + [ + "▁Petr", + -11.563794136047363 + ], + [ + "▁shout", + -11.564001083374023 + ], + [ + "American", + -11.564167976379395 + ], + [ + "▁vest", + -11.564186096191406 + ], + [ + "▁Kee", + -11.56420612335205 + ], + [ + "direct", + -11.564242362976074 + ], + [ + "▁Bosnia", + -11.564254760742188 + ], + [ + "▁Dictionary", + -11.564599990844727 + ], + [ + "▁utility", + -11.564599990844727 + ], + [ + "cke", + -11.564749717712402 + ], + [ + "▁parade", + -11.564895629882812 + ], + [ + "▁maneuver", + -11.56511116027832 + ], + [ + "▁submerged", + -11.565213203430176 + ], + [ + "▁Serb", + -11.565436363220215 + ], + [ + "▁Holmes", + -11.565563201904297 + ], + [ + "▁Ny", + -11.565771102905273 + ], + [ + "▁managers", + -11.565841674804688 + ], + [ + "▁Bruno", + -11.5659818649292 + ], + [ + "▁consequently", + -11.566163063049316 + ], + [ + "OP", + -11.566325187683105 + ], + [ + "▁Bed", + -11.56643009185791 + ], + [ + "▁shops", + -11.566502571105957 + ], + [ + "mbo", + -11.566655158996582 + ], + [ + "▁gifts", + -11.566709518432617 + ], + [ + "temp", + -11.566954612731934 + ], + [ + "▁laying", + -11.5673246383667 + ], + [ + "▁barriers", + -11.567365646362305 + ], + [ + "▁statistical", + -11.567367553710938 + ], + [ + "▁integrity", + -11.567672729492188 + ], + [ + "▁presidency", + -11.567672729492188 + ], + [ + "▁inflation", + -11.567679405212402 + ], + [ + "▁stiff", + -11.567683219909668 + ], + [ + "▁fails", + -11.567985534667969 + ], + [ + "eta", + -11.568156242370605 + ], + [ + "lene", + -11.568229675292969 + ], + [ + "▁Start", + -11.568231582641602 + ], + [ + "▁magical", + -11.568296432495117 + ], + [ + "▁pH", + -11.568402290344238 + ], + [ + "▁tumor", + -11.568452835083008 + ], + [ + "▁jumping", + -11.568501472473145 + ], + [ + "▁disputed", + -11.568571090698242 + ], + [ + "▁Kepler", + -11.568595886230469 + ], + [ + "▁Cultural", + -11.568601608276367 + ], + [ + "▁ja", + -11.56873607635498 + ], + [ + "å", + -11.568899154663086 + ], + [ + "▁Olivier", + -11.568998336791992 + ], + [ + "flo", + -11.569114685058594 + ], + [ + "▁ekri", + -11.569327354431152 + ], + [ + "▁dentist", + -11.569364547729492 + ], + [ + "▁dimensional", + -11.569411277770996 + ], + [ + "▁submarines", + -11.569491386413574 + ], + [ + "▁Appeal", + -11.5695219039917 + ], + [ + "▁Palm", + -11.569528579711914 + ], + [ + "dio", + -11.569615364074707 + ], + [ + "▁ce", + -11.569801330566406 + ], + [ + "▁prescribed", + -11.569812774658203 + ], + [ + "▁certification", + -11.569828987121582 + ], + [ + "▁Heavyweight", + -11.569839477539062 + ], + [ + "▁Close", + -11.570072174072266 + ], + [ + "▁Moses", + -11.570136070251465 + ], + [ + "▁Vel", + -11.570649147033691 + ], + [ + "▁transplant", + -11.570791244506836 + ], + [ + "▁Marcus", + -11.5712308883667 + ], + [ + "▁Hour", + -11.571292877197266 + ], + [ + "▁Institution", + -11.571372985839844 + ], + [ + "▁neighboring", + -11.571382522583008 + ], + [ + "▁calories", + -11.571383476257324 + ], + [ + "▁primitive", + -11.571391105651855 + ], + [ + "▁1882", + -11.571451187133789 + ], + [ + "▁tended", + -11.571452140808105 + ], + [ + "RD", + -11.57155704498291 + ], + [ + "▁750", + -11.57156753540039 + ], + [ + "▁comics", + -11.571677207946777 + ], + [ + "▁Beck", + -11.571863174438477 + ], + [ + "▁preparations", + -11.571954727172852 + ], + [ + "▁Dry", + -11.571966171264648 + ], + [ + "▁Tax", + -11.57221794128418 + ], + [ + "▁Tintin", + -11.572468757629395 + ], + [ + "▁bud", + -11.572524070739746 + ], + [ + "▁governing", + -11.572566032409668 + ], + [ + "▁physicist", + -11.572917938232422 + ], + [ + "▁deciding", + -11.572919845581055 + ], + [ + "▁Prevention", + -11.573002815246582 + ], + [ + "▁wh", + -11.573063850402832 + ], + [ + "▁Hil", + -11.57323932647705 + ], + [ + "▁subordinate", + -11.573273658752441 + ], + [ + "▁rolling", + -11.573346138000488 + ], + [ + "gation", + -11.573500633239746 + ], + [ + "▁grace", + -11.573535919189453 + ], + [ + "▁integral", + -11.57353687286377 + ], + [ + "▁stack", + -11.573549270629883 + ], + [ + "ried", + -11.57358169555664 + ], + [ + "TI", + -11.573888778686523 + ], + [ + "▁grades", + -11.574426651000977 + ], + [ + "▁XI", + -11.574430465698242 + ], + [ + "▁commerce", + -11.57446575164795 + ], + [ + "▁Essay", + -11.574479103088379 + ], + [ + "▁limestone", + -11.574485778808594 + ], + [ + "▁Đ", + -11.574511528015137 + ], + [ + "▁acclaimed", + -11.574690818786621 + ], + [ + "▁Acc", + -11.574788093566895 + ], + [ + "▁disabilities", + -11.574816703796387 + ], + [ + "▁enzymes", + -11.574952125549316 + ], + [ + "▁Origin", + -11.574955940246582 + ], + [ + "▁rid", + -11.575037002563477 + ], + [ + "▁inadequate", + -11.575085639953613 + ], + [ + "There", + -11.575159072875977 + ], + [ + "allIn", + -11.575204849243164 + ], + [ + "▁decree", + -11.575359344482422 + ], + [ + "▁piblikasyon", + -11.575401306152344 + ], + [ + "▁inquiry", + -11.575409889221191 + ], + [ + "▁electoral", + -11.575706481933594 + ], + [ + "ucci", + -11.575865745544434 + ], + [ + "▁ecosystems", + -11.576014518737793 + ], + [ + "▁Hubbard", + -11.576016426086426 + ], + [ + "▁weighed", + -11.57607650756836 + ], + [ + "GA", + -11.57616138458252 + ], + [ + "lab", + -11.576194763183594 + ], + [ + "eux", + -11.57656478881836 + ], + [ + "▁Citizen", + -11.576637268066406 + ], + [ + "▁momentum", + -11.577067375183105 + ], + [ + "▁respected", + -11.57715892791748 + ], + [ + "▁1873", + -11.577252388000488 + ], + [ + "▁McCarthy", + -11.577258110046387 + ], + [ + "▁torpedoes", + -11.577423095703125 + ], + [ + "▁NE", + -11.577624320983887 + ], + [ + "▁Volt", + -11.577661514282227 + ], + [ + "▁floods", + -11.577722549438477 + ], + [ + "▁presenting", + -11.577763557434082 + ], + [ + "▁chains", + -11.577850341796875 + ], + [ + "▁sperm", + -11.578139305114746 + ], + [ + "▁systematic", + -11.57814884185791 + ], + [ + "▁swim", + -11.578400611877441 + ], + [ + "▁flies", + -11.578690528869629 + ], + [ + "▁135", + -11.578761100769043 + ], + [ + "▁Primary", + -11.578812599182129 + ], + [ + "▁registration", + -11.578812599182129 + ], + [ + "▁fees", + -11.578868865966797 + ], + [ + "▁naked", + -11.579166412353516 + ], + [ + "▁dietary", + -11.579242706298828 + ], + [ + "▁MI", + -11.579395294189453 + ], + [ + "sim", + -11.579416275024414 + ], + [ + "▁NA", + -11.579544067382812 + ], + [ + "▁127", + -11.579564094543457 + ], + [ + "▁Starr", + -11.579565048217773 + ], + [ + "ught", + -11.579845428466797 + ], + [ + "psi", + -11.57986831665039 + ], + [ + "lou", + -11.579933166503906 + ], + [ + "lio", + -11.580262184143066 + ], + [ + "wyn", + -11.580292701721191 + ], + [ + "▁alloy", + -11.580370903015137 + ], + [ + "▁inducted", + -11.580425262451172 + ], + [ + "▁portray", + -11.580821990966797 + ], + [ + "▁plasma", + -11.581164360046387 + ], + [ + "▁Mit", + -11.58121109008789 + ], + [ + "▁parameters", + -11.581542015075684 + ], + [ + "▁kou", + -11.581552505493164 + ], + [ + "▁flaw", + -11.581574440002441 + ], + [ + "▁reversed", + -11.58161449432373 + ], + [ + "▁terrible", + -11.58161735534668 + ], + [ + "hop", + -11.581748008728027 + ], + [ + "▁aging", + -11.581927299499512 + ], + [ + "▁Search", + -11.582098007202148 + ], + [ + "▁addresses", + -11.582219123840332 + ], + [ + "▁Mull", + -11.582233428955078 + ], + [ + "à", + -11.582273483276367 + ], + [ + "worm", + -11.582282066345215 + ], + [ + "▁Sharp", + -11.5824556350708 + ], + [ + "▁influenza", + -11.58255386352539 + ], + [ + "▁cyber", + -11.582558631896973 + ], + [ + "▁Madrid", + -11.582736015319824 + ], + [ + "▁Manager", + -11.582738876342773 + ], + [ + "е", + -11.582865715026855 + ], + [ + "▁spare", + -11.58299732208252 + ], + [ + "▁expertise", + -11.583022117614746 + ], + [ + "▁warn", + -11.583189964294434 + ], + [ + "lessness", + -11.58338737487793 + ], + [ + "00,000", + -11.583441734313965 + ], + [ + "-10", + -11.583467483520508 + ], + [ + "▁lan", + -11.583758354187012 + ], + [ + "▁1878", + -11.583843231201172 + ], + [ + "ichi", + -11.583883285522461 + ], + [ + "▁robot", + -11.584112167358398 + ], + [ + "▁leather", + -11.584118843078613 + ], + [ + "▁Sus", + -11.584127426147461 + ], + [ + "▁mushroom", + -11.584163665771484 + ], + [ + "▁container", + -11.584229469299316 + ], + [ + "▁disbanded", + -11.584429740905762 + ], + [ + "▁Tests", + -11.584639549255371 + ], + [ + "▁lease", + -11.584775924682617 + ], + [ + "▁Starting", + -11.584814071655273 + ], + [ + "mul", + -11.58484935760498 + ], + [ + "▁roster", + -11.584920883178711 + ], + [ + "rad", + -11.58533763885498 + ], + [ + "▁grammar", + -11.585403442382812 + ], + [ + "agi", + -11.585417747497559 + ], + [ + "▁recommendation", + -11.585638046264648 + ], + [ + "▁subtropical", + -11.585716247558594 + ], + [ + "▁Nov", + -11.585792541503906 + ], + [ + "▁interviewed", + -11.58583927154541 + ], + [ + "▁Bak", + -11.585854530334473 + ], + [ + "▁Nash", + -11.585859298706055 + ], + [ + "▁pal", + -11.58592700958252 + ], + [ + "▁Percy", + -11.585951805114746 + ], + [ + "CH", + -11.586031913757324 + ], + [ + "that", + -11.586148262023926 + ], + [ + "game", + -11.586413383483887 + ], + [ + "▁spores", + -11.586447715759277 + ], + [ + "▁Process", + -11.58665657043457 + ], + [ + "▁gaming", + -11.586684226989746 + ], + [ + "▁holder", + -11.586874961853027 + ], + [ + "▁induced", + -11.586962699890137 + ], + [ + "igo", + -11.587101936340332 + ], + [ + "▁beds", + -11.587135314941406 + ], + [ + "▁everywhere", + -11.587394714355469 + ], + [ + "▁comprises", + -11.5874605178833 + ], + [ + "bir", + -11.587501525878906 + ], + [ + "▁invite", + -11.587514877319336 + ], + [ + "specific", + -11.587587356567383 + ], + [ + "▁Neo", + -11.587606430053711 + ], + [ + "▁screens", + -11.58773136138916 + ], + [ + "▁Spencer", + -11.587878227233887 + ], + [ + "▁tremendous", + -11.587878227233887 + ], + [ + "▁severity", + -11.587879180908203 + ], + [ + "rell", + -11.58793830871582 + ], + [ + "▁Telegraph", + -11.588007926940918 + ], + [ + "▁Wool", + -11.588062286376953 + ], + [ + "▁Concert", + -11.588214874267578 + ], + [ + "▁bark", + -11.588249206542969 + ], + [ + "▁expenses", + -11.588277816772461 + ], + [ + "▁Cruz", + -11.588398933410645 + ], + [ + "Me", + -11.588486671447754 + ], + [ + "▁mistakes", + -11.588788032531738 + ], + [ + "▁Double", + -11.589159965515137 + ], + [ + "▁fraud", + -11.58923053741455 + ], + [ + "▁Smart", + -11.589245796203613 + ], + [ + "▁Beau", + -11.589306831359863 + ], + [ + "isse", + -11.589639663696289 + ], + [ + "▁Sword", + -11.589698791503906 + ], + [ + "▁incentive", + -11.589770317077637 + ], + [ + "rium", + -11.589862823486328 + ], + [ + "tner", + -11.590181350708008 + ], + [ + "jun", + -11.590303421020508 + ], + [ + "style", + -11.59032154083252 + ], + [ + "night", + -11.59035873413086 + ], + [ + "▁inHg", + -11.590492248535156 + ], + [ + "▁refuge", + -11.590545654296875 + ], + [ + "▁openly", + -11.590703964233398 + ], + [ + "▁rib", + -11.590750694274902 + ], + [ + "▁descriptions", + -11.590763092041016 + ], + [ + "▁Ara", + -11.590886116027832 + ], + [ + "▁precisely", + -11.590982437133789 + ], + [ + "▁commissioner", + -11.591009140014648 + ], + [ + "▁satisfied", + -11.591023445129395 + ], + [ + "▁predator", + -11.591052055358887 + ], + [ + "▁departments", + -11.591236114501953 + ], + [ + "▁Peru", + -11.591585159301758 + ], + [ + "▁Sil", + -11.59164047241211 + ], + [ + "▁enforce", + -11.591684341430664 + ], + [ + "▁Yugoslav", + -11.591804504394531 + ], + [ + "▁Lance", + -11.591961860656738 + ], + [ + "name", + -11.591967582702637 + ], + [ + "▁tactical", + -11.592101097106934 + ], + [ + "▁phases", + -11.592107772827148 + ], + [ + "▁190", + -11.592201232910156 + ], + [ + "▁Leigh", + -11.592228889465332 + ], + [ + "▁Julia", + -11.592338562011719 + ], + [ + "▁restrict", + -11.592338562011719 + ], + [ + "▁Multi", + -11.592375755310059 + ], + [ + "yu", + -11.59256362915039 + ], + [ + "▁Tigers", + -11.592584609985352 + ], + [ + "▁Phillips", + -11.592845916748047 + ], + [ + "oz", + -11.592855453491211 + ], + [ + "▁manages", + -11.592889785766602 + ], + [ + "▁guards", + -11.592891693115234 + ], + [ + "▁rushed", + -11.592973709106445 + ], + [ + "▁Issue", + -11.593259811401367 + ], + [ + "▁coaching", + -11.593358039855957 + ], + [ + "▁asteroid", + -11.59357738494873 + ], + [ + "lov", + -11.593945503234863 + ], + [ + "cil", + -11.593948364257812 + ], + [ + "▁citizenship", + -11.593965530395508 + ], + [ + "plant", + -11.594022750854492 + ], + [ + "▁é", + -11.594109535217285 + ], + [ + "▁Pul", + -11.594169616699219 + ], + [ + "▁lesbian", + -11.594178199768066 + ], + [ + "▁behave", + -11.594183921813965 + ], + [ + "▁fantastic", + -11.594810485839844 + ], + [ + "▁Mean", + -11.594829559326172 + ], + [ + "▁olive", + -11.59484577178955 + ], + [ + "ifier", + -11.59487533569336 + ], + [ + "▁NL", + -11.595056533813477 + ], + [ + "▁curves", + -11.595060348510742 + ], + [ + "gia", + -11.595115661621094 + ], + [ + "▁await", + -11.595170021057129 + ], + [ + "▁orbital", + -11.595335006713867 + ], + [ + "▁kid", + -11.595377922058105 + ], + [ + "▁winners", + -11.595634460449219 + ], + [ + "▁beta", + -11.595768928527832 + ], + [ + "▁descended", + -11.595820426940918 + ], + [ + "▁Ultimately", + -11.59593677520752 + ], + [ + "▁faithful", + -11.596474647521973 + ], + [ + "▁surveys", + -11.596474647521973 + ], + [ + "rot", + -11.596726417541504 + ], + [ + "▁Nigeria", + -11.596759796142578 + ], + [ + "dock", + -11.596830368041992 + ], + [ + "▁Singh", + -11.596979141235352 + ], + [ + "▁customs", + -11.59704303741455 + ], + [ + "▁legally", + -11.597071647644043 + ], + [ + "▁sixty", + -11.597131729125977 + ], + [ + "É", + -11.59719181060791 + ], + [ + "▁matrix", + -11.597352981567383 + ], + [ + "▁Chuck", + -11.597405433654785 + ], + [ + "▁Lex", + -11.59744930267334 + ], + [ + "▁Imp", + -11.597461700439453 + ], + [ + "▁Viet", + -11.597492218017578 + ], + [ + "▁emission", + -11.597613334655762 + ], + [ + "▁stopping", + -11.597835540771484 + ], + [ + "▁modifications", + -11.597926139831543 + ], + [ + "▁prohibit", + -11.598100662231445 + ], + [ + "▁edit", + -11.598115921020508 + ], + [ + "▁Hold", + -11.598226547241211 + ], + [ + "▁draws", + -11.598251342773438 + ], + [ + "▁woods", + -11.598258018493652 + ], + [ + "▁Veronica", + -11.598295211791992 + ], + [ + "▁pointing", + -11.59836483001709 + ], + [ + "▁CT", + -11.598433494567871 + ], + [ + "icus", + -11.598442077636719 + ], + [ + "▁analyses", + -11.59855842590332 + ], + [ + "▁Fischer", + -11.598616600036621 + ], + [ + "flow", + -11.598917007446289 + ], + [ + "▁Gibson", + -11.598929405212402 + ], + [ + "▁Flood", + -11.598974227905273 + ], + [ + "▁resign", + -11.599125862121582 + ], + [ + "▁swamp", + -11.599224090576172 + ], + [ + "▁tensions", + -11.599409103393555 + ], + [ + "Po", + -11.599590301513672 + ], + [ + "▁auction", + -11.59961223602295 + ], + [ + "radi", + -11.599749565124512 + ], + [ + "▁1868", + -11.599832534790039 + ], + [ + "▁Truman", + -11.599903106689453 + ], + [ + "▁McKinley", + -11.600200653076172 + ], + [ + "$", + -11.600274085998535 + ], + [ + "▁reasoning", + -11.60029411315918 + ], + [ + "tip", + -11.600322723388672 + ], + [ + "▁modes", + -11.60040283203125 + ], + [ + "▁Andre", + -11.60059642791748 + ], + [ + "▁deficiency", + -11.600836753845215 + ], + [ + "▁pipeline", + -11.600844383239746 + ], + [ + "▁fingers", + -11.600899696350098 + ], + [ + "▁averaged", + -11.60091781616211 + ], + [ + "▁touchdowns", + -11.600982666015625 + ], + [ + "▁Greeks", + -11.601009368896484 + ], + [ + "▁Kara", + -11.601049423217773 + ], + [ + "▁McDonald", + -11.601155281066895 + ], + [ + "▁Wednesday", + -11.601155281066895 + ], + [ + "▁1872", + -11.601176261901855 + ], + [ + "▁Wellington", + -11.601221084594727 + ], + [ + "▁Spa", + -11.601466178894043 + ], + [ + "ometer", + -11.60152530670166 + ], + [ + "▁dried", + -11.60171127319336 + ], + [ + "▁sizes", + -11.601770401000977 + ], + [ + "▁confrontation", + -11.601802825927734 + ], + [ + "▁altogether", + -11.602109909057617 + ], + [ + "▁(1)", + -11.602113723754883 + ], + [ + "▁concludes", + -11.602388381958008 + ], + [ + "▁autobiography", + -11.602428436279297 + ], + [ + "▁backup", + -11.602493286132812 + ], + [ + "▁pigment", + -11.602602005004883 + ], + [ + "▁shirt", + -11.6029691696167 + ], + [ + "▁Blair", + -11.603002548217773 + ], + [ + "▁mobility", + -11.603076934814453 + ], + [ + "▁aquatic", + -11.60307788848877 + ], + [ + "▁bind", + -11.60322380065918 + ], + [ + "▁chocolate", + -11.603384971618652 + ], + [ + "▁borrow", + -11.603878021240234 + ], + [ + "▁Nik", + -11.603897094726562 + ], + [ + "▁borough", + -11.604174613952637 + ], + [ + "▁Print", + -11.604501724243164 + ], + [ + "▁hardly", + -11.604570388793945 + ], + [ + "▁Isles", + -11.604640007019043 + ], + [ + "▁Ski", + -11.60472297668457 + ], + [ + "under", + -11.60484790802002 + ], + [ + "▁thesis", + -11.604938507080078 + ], + [ + "▁computing", + -11.60498046875 + ], + [ + "▁Palmer", + -11.605228424072266 + ], + [ + "▁frozen", + -11.60530948638916 + ], + [ + "rc", + -11.60549545288086 + ], + [ + "▁lac", + -11.605642318725586 + ], + [ + "▁substrate", + -11.60599422454834 + ], + [ + "▁deer", + -11.606128692626953 + ], + [ + "▁Fol", + -11.606139183044434 + ], + [ + "▁update", + -11.606212615966797 + ], + [ + "▁purple", + -11.606289863586426 + ], + [ + "▁Tiger", + -11.606315612792969 + ], + [ + "▁climbing", + -11.60632038116455 + ], + [ + "▁generating", + -11.606749534606934 + ], + [ + "▁rad", + -11.606864929199219 + ], + [ + "▁Schumacher", + -11.60689926147461 + ], + [ + "▁Edwin", + -11.607015609741211 + ], + [ + "mie", + -11.607307434082031 + ], + [ + "▁thoroughly", + -11.607460021972656 + ], + [ + "▁Cecil", + -11.607473373413086 + ], + [ + "Ca", + -11.607595443725586 + ], + [ + "yle", + -11.607600212097168 + ], + [ + "▁drawings", + -11.607789039611816 + ], + [ + "▁shake", + -11.60814094543457 + ], + [ + "▁undertook", + -11.60818099975586 + ], + [ + "plane", + -11.608284950256348 + ], + [ + "▁Very", + -11.608379364013672 + ], + [ + "▁Norse", + -11.608624458312988 + ], + [ + "▁TO", + -11.608637809753418 + ], + [ + "▁Lev", + -11.60864543914795 + ], + [ + "gam", + -11.608723640441895 + ], + [ + "▁Esc", + -11.608819961547852 + ], + [ + "▁terrestrial", + -11.608820915222168 + ], + [ + "▁Tab", + -11.608826637268066 + ], + [ + "omb", + -11.608859062194824 + ], + [ + "▁pressed", + -11.609016418457031 + ], + [ + "▁spinal", + -11.609253883361816 + ], + [ + "▁servants", + -11.6095609664917 + ], + [ + "▁disrupt", + -11.609671592712402 + ], + [ + "▁Orton", + -11.609676361083984 + ], + [ + "html", + -11.609713554382324 + ], + [ + "▁Deb", + -11.6098051071167 + ], + [ + "▁hamlet", + -11.610111236572266 + ], + [ + "▁fatalities", + -11.610203742980957 + ], + [ + "web", + -11.610466957092285 + ], + [ + "TR", + -11.610488891601562 + ], + [ + "▁corrupt", + -11.610599517822266 + ], + [ + "▁Hai", + -11.61072826385498 + ], + [ + "meter", + -11.61086654663086 + ], + [ + "▁inhabit", + -11.610902786254883 + ], + [ + "assi", + -11.610966682434082 + ], + [ + "▁coloured", + -11.611029624938965 + ], + [ + "▁reflecting", + -11.611177444458008 + ], + [ + "▁providers", + -11.611366271972656 + ], + [ + "▁repaired", + -11.611471176147461 + ], + [ + "▁castles", + -11.611608505249023 + ], + [ + "▁batter", + -11.611632347106934 + ], + [ + "rier", + -11.611751556396484 + ], + [ + "metry", + -11.61206340789795 + ], + [ + "▁sprint", + -11.61245059967041 + ], + [ + "▁dispatched", + -11.612585067749023 + ], + [ + "lik", + -11.612619400024414 + ], + [ + "▁venues", + -11.612642288208008 + ], + [ + "▁bees", + -11.612763404846191 + ], + [ + "▁nail", + -11.612776756286621 + ], + [ + "fla", + -11.612794876098633 + ], + [ + "▁priests", + -11.612826347351074 + ], + [ + "▁Tha", + -11.613273620605469 + ], + [ + "▁maturity", + -11.613320350646973 + ], + [ + "▁MLB", + -11.613322257995605 + ], + [ + "▁rabbit", + -11.613451957702637 + ], + [ + "MO", + -11.613496780395508 + ], + [ + "▁Clay", + -11.613602638244629 + ], + [ + "▁attach", + -11.613626480102539 + ], + [ + "formation", + -11.613691329956055 + ], + [ + "▁flowing", + -11.613846778869629 + ], + [ + "▁snake", + -11.614090919494629 + ], + [ + "▁nano", + -11.614134788513184 + ], + [ + "▁dinosaurs", + -11.614201545715332 + ], + [ + "▁locomotives", + -11.614486694335938 + ], + [ + "▁Tucker", + -11.614838600158691 + ], + [ + "power", + -11.615017890930176 + ], + [ + "▁Neuro", + -11.615070343017578 + ], + [ + "▁proceeds", + -11.615154266357422 + ], + [ + "▁1)", + -11.615193367004395 + ], + [ + "▁Certain", + -11.615296363830566 + ], + [ + "IL", + -11.61545467376709 + ], + [ + "▁staged", + -11.615548133850098 + ], + [ + "▁underneath", + -11.615577697753906 + ], + [ + "▁Iceland", + -11.615591049194336 + ], + [ + "▁cry", + -11.615615844726562 + ], + [ + "▁inhabited", + -11.615713119506836 + ], + [ + "CT", + -11.615757942199707 + ], + [ + "▁recreational", + -11.615872383117676 + ], + [ + "▁happiness", + -11.61622428894043 + ], + [ + "▁Lanka", + -11.616393089294434 + ], + [ + "▁Tournament", + -11.616547584533691 + ], + [ + "▁meditation", + -11.616547584533691 + ], + [ + "▁Neu", + -11.61667537689209 + ], + [ + "▁Comics", + -11.616706848144531 + ], + [ + "odor", + -11.616715431213379 + ], + [ + "▁Rey", + -11.616984367370605 + ], + [ + "▁organism", + -11.617305755615234 + ], + [ + "▁websites", + -11.617335319519043 + ], + [ + "▁grip", + -11.617500305175781 + ], + [ + "òm", + -11.617506980895996 + ], + [ + "▁Rapid", + -11.617700576782227 + ], + [ + "phil", + -11.617996215820312 + ], + [ + "▁contracted", + -11.618010520935059 + ], + [ + "▁spelling", + -11.6180419921875 + ], + [ + "▁sweat", + -11.618188858032227 + ], + [ + "borough", + -11.61826229095459 + ], + [ + "▁Species", + -11.618289947509766 + ], + [ + "MD", + -11.618762016296387 + ], + [ + "▁Ré", + -11.619148254394531 + ], + [ + "▁disputes", + -11.619235038757324 + ], + [ + "comp", + -11.619583129882812 + ], + [ + "▁ignore", + -11.619928359985352 + ], + [ + "▁unveiled", + -11.620108604431152 + ], + [ + "illon", + -11.620170593261719 + ], + [ + "roid", + -11.620282173156738 + ], + [ + "▁eldest", + -11.620433807373047 + ], + [ + "▁ci", + -11.62067985534668 + ], + [ + "▁investigating", + -11.620757102966309 + ], + [ + "▁defining", + -11.620765686035156 + ], + [ + "▁quo", + -11.62085247039795 + ], + [ + "▁solving", + -11.621028900146484 + ], + [ + "human", + -11.621150016784668 + ], + [ + "▁appreciated", + -11.62117862701416 + ], + [ + "▁monks", + -11.621358871459961 + ], + [ + "▁Telenovela", + -11.621406555175781 + ], + [ + "▁triggered", + -11.621463775634766 + ], + [ + "▁cart", + -11.621542930603027 + ], + [ + "▁algorithm", + -11.621725082397461 + ], + [ + "▁Problem", + -11.62173843383789 + ], + [ + "▁labeled", + -11.621785163879395 + ], + [ + "▁automobile", + -11.622381210327148 + ], + [ + "▁Deputy", + -11.62270736694336 + ], + [ + "▁performers", + -11.62311840057373 + ], + [ + "ifi", + -11.623139381408691 + ], + [ + "▁prophet", + -11.623380661010742 + ], + [ + "▁activists", + -11.623427391052246 + ], + [ + "▁riot", + -11.623703956604004 + ], + [ + "▁nests", + -11.623729705810547 + ], + [ + "ility", + -11.623886108398438 + ], + [ + "▁infinite", + -11.624013900756836 + ], + [ + "▁merchants", + -11.624013900756836 + ], + [ + "iber", + -11.624165534973145 + ], + [ + "▁offspring", + -11.624333381652832 + ], + [ + "▁operators", + -11.624372482299805 + ], + [ + "▁absorption", + -11.624658584594727 + ], + [ + "▁forgotten", + -11.624659538269043 + ], + [ + "▁FM", + -11.624725341796875 + ], + [ + "▁Better", + -11.624871253967285 + ], + [ + "▁Newman", + -11.624922752380371 + ], + [ + "▁synthetic", + -11.624929428100586 + ], + [ + "▁Vis", + -11.625052452087402 + ], + [ + "▁investigations", + -11.625298500061035 + ], + [ + "▁immense", + -11.625310897827148 + ], + [ + "▁renovation", + -11.625310897827148 + ], + [ + "▁prose", + -11.625432968139648 + ], + [ + "Pro", + -11.625541687011719 + ], + [ + "▁answered", + -11.625598907470703 + ], + [ + "▁dairy", + -11.625638008117676 + ], + [ + "▁rally", + -11.625638008117676 + ], + [ + "aker", + -11.625718116760254 + ], + [ + "▁somewhere", + -11.625880241394043 + ], + [ + "ashi", + -11.625934600830078 + ], + [ + "▁Syrian", + -11.626104354858398 + ], + [ + "imo", + -11.626127243041992 + ], + [ + "IM", + -11.626265525817871 + ], + [ + "vari", + -11.626326560974121 + ], + [ + "▁Derby", + -11.626472473144531 + ], + [ + "example", + -11.626497268676758 + ], + [ + "▁agenda", + -11.626635551452637 + ], + [ + "▁drinks", + -11.626806259155273 + ], + [ + "▁accomplish", + -11.626815795898438 + ], + [ + "▁entity", + -11.626962661743164 + ], + [ + "▁Kel", + -11.627002716064453 + ], + [ + "▁IS", + -11.627055168151855 + ], + [ + "▁incorporating", + -11.62726879119873 + ], + [ + "▁JNA", + -11.627276420593262 + ], + [ + "▁pile", + -11.627342224121094 + ], + [ + "▁struggles", + -11.627408027648926 + ], + [ + "▁maintains", + -11.627596855163574 + ], + [ + "lton", + -11.627638816833496 + ], + [ + "▁delays", + -11.627732276916504 + ], + [ + "▁Turks", + -11.627799987792969 + ], + [ + "▁Emily", + -11.62781047821045 + ], + [ + "▁payments", + -11.6279878616333 + ], + [ + "▁Calvin", + -11.627997398376465 + ], + [ + "▁Une", + -11.628170013427734 + ], + [ + "▁contend", + -11.628207206726074 + ], + [ + "▁Phillies", + -11.628289222717285 + ], + [ + "▁explorer", + -11.628406524658203 + ], + [ + "▁revived", + -11.628408432006836 + ], + [ + "▁Ras", + -11.628429412841797 + ], + [ + "▁heroes", + -11.628450393676758 + ], + [ + "borne", + -11.62875747680664 + ], + [ + "▁Cabinet", + -11.62890338897705 + ], + [ + "▁González", + -11.62890338897705 + ], + [ + "virus", + -11.629121780395508 + ], + [ + "▁ensuing", + -11.629231452941895 + ], + [ + "▁exert", + -11.629354476928711 + ], + [ + "▁radioactive", + -11.629358291625977 + ], + [ + "▁persuade", + -11.629388809204102 + ], + [ + "▁1848", + -11.629537582397461 + ], + [ + "date", + -11.629552841186523 + ], + [ + "▁©", + -11.629678726196289 + ], + [ + "▁inhibit", + -11.62977123260498 + ], + [ + "▁Antoine", + -11.629790306091309 + ], + [ + "▁qualify", + -11.629814147949219 + ], + [ + "ush", + -11.629851341247559 + ], + [ + "▁Making", + -11.630013465881348 + ], + [ + "▁kont", + -11.630097389221191 + ], + [ + "▁Linda", + -11.630111694335938 + ], + [ + "▁wanting", + -11.630163192749023 + ], + [ + "▁Crawford", + -11.630212783813477 + ], + [ + "▁moist", + -11.63027572631836 + ], + [ + "▁observing", + -11.630550384521484 + ], + [ + "▁Michelle", + -11.630563735961914 + ], + [ + "▁subjected", + -11.630769729614258 + ], + [ + "▁106", + -11.630877494812012 + ], + [ + "▁stereotype", + -11.630877494812012 + ], + [ + "xton", + -11.63127326965332 + ], + [ + "▁regiments", + -11.631298065185547 + ], + [ + "▁speculated", + -11.63132381439209 + ], + [ + "▁fatty", + -11.631366729736328 + ], + [ + "▁thrive", + -11.631525993347168 + ], + [ + "▁Flanders", + -11.631854057312012 + ], + [ + "▁épisode", + -11.63185977935791 + ], + [ + "tica", + -11.63187026977539 + ], + [ + "▁cage", + -11.632129669189453 + ], + [ + "▁Fla", + -11.632274627685547 + ], + [ + "▁requests", + -11.632284164428711 + ], + [ + "found", + -11.632396697998047 + ], + [ + "▁Guatemala", + -11.632508277893066 + ], + [ + "▁unnecessary", + -11.632508277893066 + ], + [ + "than", + -11.63262939453125 + ], + [ + "being", + -11.632899284362793 + ], + [ + "▁haven", + -11.633082389831543 + ], + [ + "▁meaningful", + -11.633183479309082 + ], + [ + "▁trim", + -11.633223533630371 + ], + [ + "otic", + -11.63325023651123 + ], + [ + "▁athlete", + -11.633423805236816 + ], + [ + "amour", + -11.633440017700195 + ], + [ + "lysis", + -11.633452415466309 + ], + [ + "▁verbal", + -11.633493423461914 + ], + [ + "▁monuments", + -11.633855819702148 + ], + [ + "▁Headquarters", + -11.634151458740234 + ], + [ + "▁dug", + -11.634272575378418 + ], + [ + "rock", + -11.634364128112793 + ], + [ + "▁Alzheimer", + -11.634481430053711 + ], + [ + "▁essence", + -11.634482383728027 + ], + [ + "▁prosecution", + -11.634809494018555 + ], + [ + "▁paved", + -11.635072708129883 + ], + [ + "▁DO", + -11.635076522827148 + ], + [ + "▁2)", + -11.635178565979004 + ], + [ + "▁colleges", + -11.6354341506958 + ], + [ + "▁Mak", + -11.635668754577637 + ], + [ + "▁Nathan", + -11.635730743408203 + ], + [ + "▁EPA", + -11.635979652404785 + ], + [ + "▁surpassed", + -11.63607406616211 + ], + [ + "▁rats", + -11.636079788208008 + ], + [ + "▁archaeologist", + -11.636126518249512 + ], + [ + "▁(3", + -11.636266708374023 + ], + [ + "SM", + -11.636285781860352 + ], + [ + "▁cigarette", + -11.636301040649414 + ], + [ + "▁theaters", + -11.636468887329102 + ], + [ + "hurst", + -11.63649845123291 + ], + [ + "▁altar", + -11.63654613494873 + ], + [ + "▁Fil", + -11.636555671691895 + ], + [ + "CP", + -11.636590003967285 + ], + [ + "Ex", + -11.636637687683105 + ], + [ + "▁Should", + -11.636804580688477 + ], + [ + "▁Nicolas", + -11.636868476867676 + ], + [ + "▁commemorate", + -11.636956214904785 + ], + [ + "eus", + -11.636960983276367 + ], + [ + "▁sporting", + -11.636961936950684 + ], + [ + "guard", + -11.636980056762695 + ], + [ + "aged", + -11.637039184570312 + ], + [ + "ogram", + -11.63710880279541 + ], + [ + "▁prolonged", + -11.637115478515625 + ], + [ + "▁Annual", + -11.637215614318848 + ], + [ + "▁spatial", + -11.637449264526367 + ], + [ + "▁gospel", + -11.63745403289795 + ], + [ + "▁conquered", + -11.637540817260742 + ], + [ + "▁Maxim", + -11.637606620788574 + ], + [ + "▁Basketball", + -11.637775421142578 + ], + [ + "▁Gli", + -11.63784408569336 + ], + [ + "▁hub", + -11.637906074523926 + ], + [ + "▁Cyclone", + -11.638145446777344 + ], + [ + "▁interrupted", + -11.638468742370605 + ], + [ + "▁breakthrough", + -11.638473510742188 + ], + [ + "mouth", + -11.63852596282959 + ], + [ + "▁hire", + -11.63858699798584 + ], + [ + "▁UB", + -11.63870906829834 + ], + [ + "▁lobby", + -11.63913631439209 + ], + [ + "▁feat", + -11.639219284057617 + ], + [ + "▁Erik", + -11.639314651489258 + ], + [ + "▁unusually", + -11.639472007751465 + ], + [ + "blo", + -11.639582633972168 + ], + [ + "▁disagreement", + -11.639596939086914 + ], + [ + "▁appealed", + -11.639634132385254 + ], + [ + "rail", + -11.639697074890137 + ], + [ + "▁Haiti", + -11.6398286819458 + ], + [ + "▁gusts", + -11.639997482299805 + ], + [ + "▁Gru", + -11.640073776245117 + ], + [ + "▁Lancashire", + -11.64008903503418 + ], + [ + "▁custody", + -11.64008903503418 + ], + [ + "▁devastating", + -11.64008903503418 + ], + [ + "▁replica", + -11.640342712402344 + ], + [ + "lig", + -11.640345573425293 + ], + [ + "UN", + -11.640543937683105 + ], + [ + "▁Bul", + -11.640667915344238 + ], + [ + "▁retro", + -11.640678405761719 + ], + [ + "▁shortage", + -11.640695571899414 + ], + [ + "▁speeches", + -11.640869140625 + ], + [ + "▁Hag", + -11.641069412231445 + ], + [ + "▁Logan", + -11.641098976135254 + ], + [ + "▁valued", + -11.64122486114502 + ], + [ + "moor", + -11.641319274902344 + ], + [ + "▁Cambodia", + -11.6414155960083 + ], + [ + "▁applies", + -11.64145565032959 + ], + [ + "aceae", + -11.641536712646484 + ], + [ + "òl", + -11.641546249389648 + ], + [ + "▁chess", + -11.641717910766602 + ], + [ + "▁diary", + -11.641843795776367 + ], + [ + "▁Romania", + -11.641870498657227 + ], + [ + "rava", + -11.641949653625488 + ], + [ + "▁Visual", + -11.64211368560791 + ], + [ + "▁Bod", + -11.642162322998047 + ], + [ + "▁rows", + -11.642316818237305 + ], + [ + "▁dreams", + -11.642587661743164 + ], + [ + "sè", + -11.642708778381348 + ], + [ + "▁1879", + -11.642735481262207 + ], + [ + "▁loans", + -11.642743110656738 + ], + [ + "▁opined", + -11.642743110656738 + ], + [ + "▁reminiscent", + -11.642746925354004 + ], + [ + "▁privacy", + -11.642748832702637 + ], + [ + "▁everybody", + -11.642897605895996 + ], + [ + "▁minds", + -11.642901420593262 + ], + [ + "▁designing", + -11.643035888671875 + ], + [ + "▁haul", + -11.643046379089355 + ], + [ + "▁password", + -11.643155097961426 + ], + [ + "▁addressing", + -11.643160820007324 + ], + [ + "▁Chase", + -11.643170356750488 + ], + [ + "▁Colt", + -11.64343547821045 + ], + [ + "▁workplace", + -11.643450736999512 + ], + [ + "ril", + -11.643487930297852 + ], + [ + "ution", + -11.643561363220215 + ], + [ + "▁consultant", + -11.643852233886719 + ], + [ + "▁weaken", + -11.643891334533691 + ], + [ + "tia", + -11.64391803741455 + ], + [ + "▁Operations", + -11.643940925598145 + ], + [ + "▁captivity", + -11.644067764282227 + ], + [ + "▁jersey", + -11.644067764282227 + ], + [ + "▁detective", + -11.644773483276367 + ], + [ + "▁eager", + -11.644888877868652 + ], + [ + "▁Antarctic", + -11.645051002502441 + ], + [ + "▁Cause", + -11.645071983337402 + ], + [ + "▁Jeremy", + -11.645729064941406 + ], + [ + "▁conform", + -11.645794868469238 + ], + [ + "oria", + -11.645879745483398 + ], + [ + "▁Chemical", + -11.64594841003418 + ], + [ + "▁grandson", + -11.645977020263672 + ], + [ + "▁Expedition", + -11.646061897277832 + ], + [ + "ppy", + -11.646122932434082 + ], + [ + "▁strictly", + -11.646251678466797 + ], + [ + "▁securing", + -11.64639663696289 + ], + [ + "▁Annie", + -11.646538734436035 + ], + [ + "▁Baldwin", + -11.646743774414062 + ], + [ + "▁genius", + -11.646810531616211 + ], + [ + "▁sovereignty", + -11.646838188171387 + ], + [ + "pli", + -11.646994590759277 + ], + [ + "▁Walk", + -11.647025108337402 + ], + [ + "stat", + -11.64706802368164 + ], + [ + "ido", + -11.64711856842041 + ], + [ + "▁rod", + -11.647385597229004 + ], + [ + "▁dismiss", + -11.647400856018066 + ], + [ + "ept", + -11.647412300109863 + ], + [ + "▁yd", + -11.647504806518555 + ], + [ + "▁metropolitan", + -11.647727966308594 + ], + [ + "▁Cas", + -11.647880554199219 + ], + [ + "▁Ark", + -11.648088455200195 + ], + [ + "shaw", + -11.648149490356445 + ], + [ + "▁Adelaide", + -11.648394584655762 + ], + [ + "▁incidence", + -11.64872932434082 + ], + [ + "▁default", + -11.64875602722168 + ], + [ + "▁propeller", + -11.648784637451172 + ], + [ + "▁leap", + -11.64894962310791 + ], + [ + "iser", + -11.648964881896973 + ], + [ + "care", + -11.649003028869629 + ], + [ + "▁firms", + -11.649005889892578 + ], + [ + "▁maternal", + -11.649062156677246 + ], + [ + "▁compensate", + -11.649064064025879 + ], + [ + "gard", + -11.649091720581055 + ], + [ + "▁Myst", + -11.649127006530762 + ], + [ + "school", + -11.649285316467285 + ], + [ + "▁concession", + -11.649395942687988 + ], + [ + "▁spiral", + -11.649434089660645 + ], + [ + "▁Dawn", + -11.649479866027832 + ], + [ + "▁unsuccessfully", + -11.649589538574219 + ], + [ + "▁Krishna", + -11.649730682373047 + ], + [ + "▁innocent", + -11.649735450744629 + ], + [ + "▁governed", + -11.64976978302002 + ], + [ + "▁variants", + -11.649935722351074 + ], + [ + "ν", + -11.650398254394531 + ], + [ + "▁puzzle", + -11.650418281555176 + ], + [ + "▁intimate", + -11.650496482849121 + ], + [ + "▁Meta", + -11.650609970092773 + ], + [ + "▁farmer", + -11.65064811706543 + ], + [ + "▁frigate", + -11.65078353881836 + ], + [ + "▁fixture", + -11.650788307189941 + ], + [ + "ional", + -11.650888442993164 + ], + [ + "▁Mills", + -11.650914192199707 + ], + [ + "▁proceedings", + -11.650940895080566 + ], + [ + "▁Arabian", + -11.650959968566895 + ], + [ + "▁unemployment", + -11.651067733764648 + ], + [ + "▁Floyd", + -11.651068687438965 + ], + [ + "▁instrumentation", + -11.651274681091309 + ], + [ + "▁displacement", + -11.65140151977539 + ], + [ + "▁Tasmania", + -11.651406288146973 + ], + [ + "immer", + -11.651572227478027 + ], + [ + "▁germ", + -11.651607513427734 + ], + [ + "▁Personal", + -11.651656150817871 + ], + [ + "▁Combat", + -11.651670455932617 + ], + [ + "▁unlock", + -11.65175724029541 + ], + [ + "▁Harper", + -11.651776313781738 + ], + [ + "▁Boo", + -11.651847839355469 + ], + [ + "▁deadly", + -11.651961326599121 + ], + [ + "▁inscription", + -11.652009963989258 + ], + [ + "▁violin", + -11.652100563049316 + ], + [ + "▁surveillance", + -11.652406692504883 + ], + [ + "▁costumes", + -11.652408599853516 + ], + [ + "iac", + -11.652684211730957 + ], + [ + "▁locked", + -11.652746200561523 + ], + [ + "PL", + -11.652758598327637 + ], + [ + "DOT", + -11.652811050415039 + ], + [ + "iga", + -11.652934074401855 + ], + [ + "▁108", + -11.652975082397461 + ], + [ + "▁clusters", + -11.653007507324219 + ], + [ + "▁revelation", + -11.653077125549316 + ], + [ + "▁Lead", + -11.65345573425293 + ], + [ + "▁Quest", + -11.653509140014648 + ], + [ + "▁synth", + -11.653623580932617 + ], + [ + "▁Private", + -11.653746604919434 + ], + [ + "grass", + -11.653756141662598 + ], + [ + "▁competitors", + -11.653818130493164 + ], + [ + "▁formations", + -11.653929710388184 + ], + [ + "▁Professional", + -11.654082298278809 + ], + [ + "▁convincing", + -11.654082298278809 + ], + [ + "▁Aviation", + -11.654084205627441 + ], + [ + "▁salmon", + -11.654084205627441 + ], + [ + "▁Tal", + -11.654220581054688 + ], + [ + "▁Exp", + -11.654330253601074 + ], + [ + "▁neighbouring", + -11.654372215270996 + ], + [ + "▁Leave", + -11.654500961303711 + ], + [ + "▁113", + -11.654535293579102 + ], + [ + "▁Legion", + -11.654658317565918 + ], + [ + "▁Marty", + -11.654728889465332 + ], + [ + "▁incorporates", + -11.655112266540527 + ], + [ + "▁Doug", + -11.655134201049805 + ], + [ + "▁Scar", + -11.655182838439941 + ], + [ + "▁cellular", + -11.655325889587402 + ], + [ + "▁introduces", + -11.655367851257324 + ], + [ + "▁cop", + -11.65545654296875 + ], + [ + "▁Epi", + -11.655545234680176 + ], + [ + "▁helmet", + -11.655614852905273 + ], + [ + "▁advisor", + -11.655640602111816 + ], + [ + "▁donor", + -11.655649185180664 + ], + [ + "▁punt", + -11.655710220336914 + ], + [ + "▁excluded", + -11.655712127685547 + ], + [ + "▁112", + -11.656049728393555 + ], + [ + "▁entries", + -11.65610122680664 + ], + [ + "▁brake", + -11.656190872192383 + ], + [ + "▁Gustav", + -11.656441688537598 + ], + [ + "▁modify", + -11.656475067138672 + ], + [ + "▁lunar", + -11.656495094299316 + ], + [ + "▁bedroom", + -11.656510353088379 + ], + [ + "▁sortie", + -11.656518936157227 + ], + [ + "hur", + -11.656564712524414 + ], + [ + "▁privately", + -11.656579971313477 + ], + [ + "▁complimented", + -11.656725883483887 + ], + [ + "▁expressing", + -11.656744956970215 + ], + [ + "▁exceeded", + -11.656787872314453 + ], + [ + "▁purely", + -11.657008171081543 + ], + [ + "▁Tuesday", + -11.657443046569824 + ], + [ + "▁arrange", + -11.657517433166504 + ], + [ + "▁enacted", + -11.657689094543457 + ], + [ + "▁Core", + -11.657952308654785 + ], + [ + "▁brass", + -11.657953262329102 + ], + [ + "▁103", + -11.657983779907227 + ], + [ + "▁embedded", + -11.658116340637207 + ], + [ + "Qu", + -11.658496856689453 + ], + [ + "ugg", + -11.659021377563477 + ], + [ + "inated", + -11.659305572509766 + ], + [ + "▁Mala", + -11.65943717956543 + ], + [ + "▁rises", + -11.659595489501953 + ], + [ + "WA", + -11.659600257873535 + ], + [ + "▁devotion", + -11.660140037536621 + ], + [ + "▁rehearsal", + -11.660140037536621 + ], + [ + "▁liberty", + -11.660140991210938 + ], + [ + "▁nickel", + -11.660140991210938 + ], + [ + "▁Woods", + -11.660207748413086 + ], + [ + "kle", + -11.660252571105957 + ], + [ + "▁Gerald", + -11.660358428955078 + ], + [ + "▁Cardinals", + -11.660385131835938 + ], + [ + "▁toilet", + -11.66043758392334 + ], + [ + "▁occupy", + -11.660477638244629 + ], + [ + "▁alike", + -11.660500526428223 + ], + [ + "▁Prof", + -11.66055965423584 + ], + [ + "▁Lay", + -11.660603523254395 + ], + [ + "▁rebounds", + -11.660717010498047 + ], + [ + "▁Syans", + -11.660965919494629 + ], + [ + "▁Shelley", + -11.661211013793945 + ], + [ + "▁Lithuanian", + -11.661477088928223 + ], + [ + "tun", + -11.661831855773926 + ], + [ + "▁grains", + -11.661845207214355 + ], + [ + "▁paragraph", + -11.661865234375 + ], + [ + "dine", + -11.661922454833984 + ], + [ + "▁Lor", + -11.662029266357422 + ], + [ + "▁practiced", + -11.66215991973877 + ], + [ + "wè", + -11.662177085876465 + ], + [ + "▁Made", + -11.662336349487305 + ], + [ + "▁Chairman", + -11.662455558776855 + ], + [ + "▁pirate", + -11.662511825561523 + ], + [ + "▁Griffin", + -11.66252613067627 + ], + [ + "▁horsepower", + -11.662556648254395 + ], + [ + "lob", + -11.662564277648926 + ], + [ + "▁limiting", + -11.6628999710083 + ], + [ + "▁Fernando", + -11.662947654724121 + ], + [ + "tique", + -11.663102149963379 + ], + [ + "▁Rhode", + -11.663148880004883 + ], + [ + "▁clerk", + -11.663186073303223 + ], + [ + "▁Saudi", + -11.663322448730469 + ], + [ + "▁honorary", + -11.663357734680176 + ], + [ + "▁calculate", + -11.663397789001465 + ], + [ + "ige", + -11.663434982299805 + ], + [ + "▁fungi", + -11.663529396057129 + ], + [ + "▁erect", + -11.663724899291992 + ], + [ + "nock", + -11.663739204406738 + ], + [ + "▁disposal", + -11.663860321044922 + ], + [ + "▁Capitol", + -11.663861274719238 + ], + [ + "▁Job", + -11.663881301879883 + ], + [ + "▁Johann", + -11.663900375366211 + ], + [ + "PE", + -11.664041519165039 + ], + [ + "▁runway", + -11.664315223693848 + ], + [ + "▁cooler", + -11.664430618286133 + ], + [ + "▁Geoffrey", + -11.664883613586426 + ], + [ + "▁orchestral", + -11.6649808883667 + ], + [ + "izer", + -11.665029525756836 + ], + [ + "▁mall", + -11.66508674621582 + ], + [ + "HO", + -11.665170669555664 + ], + [ + "▁Raven", + -11.665199279785156 + ], + [ + "▁purchasing", + -11.665216445922852 + ], + [ + "▁declaring", + -11.665217399597168 + ], + [ + "▁Sul", + -11.66537857055664 + ], + [ + "▁pulp", + -11.665421485900879 + ], + [ + "▁Tel", + -11.665435791015625 + ], + [ + "▁165", + -11.665492057800293 + ], + [ + "ime", + -11.66581916809082 + ], + [ + "▁derivative", + -11.665894508361816 + ], + [ + "▁tennis", + -11.66594123840332 + ], + [ + "▁Rocky", + -11.666203498840332 + ], + [ + "▁championships", + -11.6664400100708 + ], + [ + "ñ", + -11.66645336151123 + ], + [ + "▁Text", + -11.666548728942871 + ], + [ + "▁Declaration", + -11.666574478149414 + ], + [ + "▁composers", + -11.666609764099121 + ], + [ + "▁bare", + -11.666751861572266 + ], + [ + "▁Pier", + -11.66685962677002 + ], + [ + "▁supporter", + -11.6669282913208 + ], + [ + "▁foundations", + -11.666997909545898 + ], + [ + "pac", + -11.667030334472656 + ], + [ + "▁Pont", + -11.667133331298828 + ], + [ + "▁soils", + -11.667257308959961 + ], + [ + "▁temp", + -11.667561531066895 + ], + [ + "▁embryo", + -11.667563438415527 + ], + [ + "▁Barrett", + -11.667571067810059 + ], + [ + "▁Ill", + -11.667572021484375 + ], + [ + "▁Different", + -11.66760540008545 + ], + [ + "trop", + -11.667734146118164 + ], + [ + "▁inferior", + -11.667933464050293 + ], + [ + "▁Essex", + -11.667936325073242 + ], + [ + "▁basement", + -11.667975425720215 + ], + [ + "▁Maj", + -11.668292045593262 + ], + [ + "▁discusses", + -11.668435096740723 + ], + [ + "▁Calgary", + -11.668954849243164 + ], + [ + "▁SmackDown", + -11.668954849243164 + ], + [ + "▁centres", + -11.669360160827637 + ], + [ + "▁heated", + -11.669477462768555 + ], + [ + "▁Cong", + -11.669577598571777 + ], + [ + "mil", + -11.669596672058105 + ], + [ + "shin", + -11.669652938842773 + ], + [ + "▁inability", + -11.66986083984375 + ], + [ + "ester", + -11.669928550720215 + ], + [ + "fusion", + -11.670159339904785 + ], + [ + "▁Squ", + -11.670337677001953 + ], + [ + "▁Pic", + -11.670358657836914 + ], + [ + "▁wagon", + -11.670421600341797 + ], + [ + "▁dominate", + -11.670547485351562 + ], + [ + "▁developmental", + -11.670563697814941 + ], + [ + "▁contested", + -11.670568466186523 + ], + [ + "gno", + -11.67056941986084 + ], + [ + "▁torture", + -11.670580863952637 + ], + [ + "▁ironclad", + -11.670659065246582 + ], + [ + "▁Spot", + -11.670663833618164 + ], + [ + "anga", + -11.670783042907715 + ], + [ + "▁dig", + -11.670985221862793 + ], + [ + "SR", + -11.671236991882324 + ], + [ + "▁mosque", + -11.67134952545166 + ], + [ + "▁merger", + -11.67138385772705 + ], + [ + "▁playable", + -11.671685218811035 + ], + [ + "▁mob", + -11.67182445526123 + ], + [ + "▁teenage", + -11.671853065490723 + ], + [ + "▁combining", + -11.672025680541992 + ], + [ + "▁Ost", + -11.67216968536377 + ], + [ + "▁Colombia", + -11.672369956970215 + ], + [ + "▁Dominican", + -11.672466278076172 + ], + [ + "▁baron", + -11.672470092773438 + ], + [ + "▁memorable", + -11.672708511352539 + ], + [ + "▁lengths", + -11.672724723815918 + ], + [ + "▁halted", + -11.672749519348145 + ], + [ + "▁Dé", + -11.672808647155762 + ], + [ + "▁Plymouth", + -11.673049926757812 + ], + [ + "kra", + -11.673059463500977 + ], + [ + "PM", + -11.673099517822266 + ], + [ + "▁Cinema", + -11.673105239868164 + ], + [ + "▁foul", + -11.673418998718262 + ], + [ + "▁RBI", + -11.673659324645996 + ], + [ + "▁ranged", + -11.673709869384766 + ], + [ + "lash", + -11.673799514770508 + ], + [ + "▁Ble", + -11.674055099487305 + ], + [ + "▁susceptible", + -11.674076080322266 + ], + [ + "AB", + -11.674172401428223 + ], + [ + "▁worthy", + -11.674517631530762 + ], + [ + "lian", + -11.674538612365723 + ], + [ + "▁generic", + -11.674670219421387 + ], + [ + "▁obviously", + -11.674714088439941 + ], + [ + "▁Clean", + -11.674954414367676 + ], + [ + "▁depot", + -11.675052642822266 + ], + [ + "uba", + -11.675061225891113 + ], + [ + "▁optimal", + -11.675108909606934 + ], + [ + "▁Musical", + -11.675163269042969 + ], + [ + "▁Southwest", + -11.675198554992676 + ], + [ + "▁stressed", + -11.675399780273438 + ], + [ + "▁spectators", + -11.675468444824219 + ], + [ + "▁Parkway", + -11.675561904907227 + ], + [ + "▁exhaust", + -11.675650596618652 + ], + [ + "▁Motion", + -11.675878524780273 + ], + [ + "▁chip", + -11.676009178161621 + ], + [ + "▁declining", + -11.676132202148438 + ], + [ + "▁counted", + -11.676189422607422 + ], + [ + "▁stems", + -11.676711082458496 + ], + [ + "▁correspondence", + -11.676924705505371 + ], + [ + "▁invest", + -11.677010536193848 + ], + [ + "1)", + -11.67711353302002 + ], + [ + "▁intercept", + -11.677237510681152 + ], + [ + "▁Grande", + -11.677490234375 + ], + [ + "▁socialist", + -11.677504539489746 + ], + [ + "▁Bermuda", + -11.677505493164062 + ], + [ + "▁Dudley", + -11.677507400512695 + ], + [ + "▁jou", + -11.678370475769043 + ], + [ + "▁unprecedented", + -11.678536415100098 + ], + [ + "▁Faith", + -11.678542137145996 + ], + [ + "▁lodge", + -11.678606033325195 + ], + [ + "▁associations", + -11.6786527633667 + ], + [ + "▁appreciate", + -11.678776741027832 + ], + [ + "▁Pap", + -11.678850173950195 + ], + [ + "▁Berry", + -11.678951263427734 + ], + [ + "▁insult", + -11.679112434387207 + ], + [ + "▁Sugar", + -11.679181098937988 + ], + [ + "▁pat", + -11.6793212890625 + ], + [ + "▁arcade", + -11.679327964782715 + ], + [ + "▁Newport", + -11.679535865783691 + ], + [ + "▁mari", + -11.679548263549805 + ], + [ + "▁Karen", + -11.680071830749512 + ], + [ + "▁sensors", + -11.680085182189941 + ], + [ + "▁Princip", + -11.680109977722168 + ], + [ + "▁rob", + -11.680229187011719 + ], + [ + "▁gesture", + -11.680256843566895 + ], + [ + "▁Joshua", + -11.680312156677246 + ], + [ + "▁tech", + -11.680460929870605 + ], + [ + "▁allegations", + -11.680601119995117 + ], + [ + "▁premye", + -11.68060302734375 + ], + [ + "▁Ari", + -11.6807861328125 + ], + [ + "ffin", + -11.680797576904297 + ], + [ + "▁northwestern", + -11.68101692199707 + ], + [ + "▁gro", + -11.681222915649414 + ], + [ + "▁tiger", + -11.681273460388184 + ], + [ + "▁abortion", + -11.681292533874512 + ], + [ + "▁prevalent", + -11.681387901306152 + ], + [ + "▁mbar", + -11.681429862976074 + ], + [ + "▁Lone", + -11.68147087097168 + ], + [ + "abi", + -11.6815824508667 + ], + [ + "▁Vir", + -11.68165397644043 + ], + [ + "▁Sala", + -11.681818962097168 + ], + [ + "HS", + -11.681831359863281 + ], + [ + "▁diving", + -11.682147026062012 + ], + [ + "▁iTunes", + -11.683015823364258 + ], + [ + "▁Chandler", + -11.683016777038574 + ], + [ + "▁sensation", + -11.683125495910645 + ], + [ + "hang", + -11.683130264282227 + ], + [ + "▁vault", + -11.683198928833008 + ], + [ + "▁behavioral", + -11.683269500732422 + ], + [ + "▁Canucks", + -11.683366775512695 + ], + [ + "gat", + -11.683423042297363 + ], + [ + "▁enthusiastic", + -11.68345832824707 + ], + [ + "activity", + -11.683548927307129 + ], + [ + "▁exceptional", + -11.684009552001953 + ], + [ + "▁Lancaster", + -11.684052467346191 + ], + [ + "▁Hau", + -11.684231758117676 + ], + [ + "▁Fig", + -11.684244155883789 + ], + [ + "▁bowled", + -11.684454917907715 + ], + [ + "▁speaks", + -11.684684753417969 + ], + [ + "esque", + -11.684868812561035 + ], + [ + "▁Enix", + -11.68502140045166 + ], + [ + "pack", + -11.685056686401367 + ], + [ + "▁Wikipedia", + -11.685093879699707 + ], + [ + "▁nationally", + -11.685233116149902 + ], + [ + "▁Pokémon", + -11.685436248779297 + ], + [ + "▁antibiotics", + -11.685477256774902 + ], + [ + "▁Shore", + -11.685606002807617 + ], + [ + "▁Maxwell", + -11.685608863830566 + ], + [ + "ddy", + -11.685919761657715 + ], + [ + "▁infectious", + -11.686150550842285 + ], + [ + "▁bicycle", + -11.686164855957031 + ], + [ + "▁jwe", + -11.686202049255371 + ], + [ + "last", + -11.686312675476074 + ], + [ + "▁Engineers", + -11.686600685119629 + ], + [ + "arrow", + -11.686838150024414 + ], + [ + "ider", + -11.687323570251465 + ], + [ + "Di", + -11.687503814697266 + ], + [ + "▁slopes", + -11.687597274780273 + ], + [ + "▁viable", + -11.687628746032715 + ], + [ + "▁southward", + -11.68765640258789 + ], + [ + "▁neurons", + -11.687698364257812 + ], + [ + "▁torn", + -11.68773078918457 + ], + [ + "▁2:", + -11.68777847290039 + ], + [ + "▁sectors", + -11.68784236907959 + ], + [ + "▁Chancellor", + -11.687862396240234 + ], + [ + "▁furniture", + -11.687862396240234 + ], + [ + "▁flexibility", + -11.687871932983398 + ], + [ + "▁Cohen", + -11.688166618347168 + ], + [ + "round", + -11.688462257385254 + ], + [ + "▁packed", + -11.688563346862793 + ], + [ + "▁stepped", + -11.688566207885742 + ], + [ + "▁caliber", + -11.688572883605957 + ], + [ + "sip", + -11.688641548156738 + ], + [ + "▁Tales", + -11.688812255859375 + ], + [ + "lib", + -11.688961029052734 + ], + [ + "▁vaccination", + -11.689251899719238 + ], + [ + "▁alphabet", + -11.689269065856934 + ], + [ + "▁encompass", + -11.689282417297363 + ], + [ + "▁honored", + -11.68932056427002 + ], + [ + "pression", + -11.68936824798584 + ], + [ + "▁gall", + -11.689458847045898 + ], + [ + "▁static", + -11.689531326293945 + ], + [ + "▁Pou", + -11.689606666564941 + ], + [ + "▁Jose", + -11.689785957336426 + ], + [ + "▁Rice", + -11.689850807189941 + ], + [ + "▁activist", + -11.689926147460938 + ], + [ + "▁Nonetheless", + -11.689947128295898 + ], + [ + "▁puppet", + -11.689947128295898 + ], + [ + "▁clever", + -11.690008163452148 + ], + [ + "bbing", + -11.690205574035645 + ], + [ + "▁Sister", + -11.690224647521973 + ], + [ + "▁precursor", + -11.69029426574707 + ], + [ + "▁117", + -11.690403938293457 + ], + [ + "▁Kap", + -11.690447807312012 + ], + [ + "▁platoon", + -11.69066333770752 + ], + [ + "▁savings", + -11.69073486328125 + ], + [ + "boat", + -11.690763473510742 + ], + [ + "▁commentators", + -11.690874099731445 + ], + [ + "HC", + -11.69115161895752 + ], + [ + "▁ditch", + -11.691164016723633 + ], + [ + "▁empower", + -11.691373825073242 + ], + [ + "▁exhibits", + -11.691411972045898 + ], + [ + "▁submission", + -11.691486358642578 + ], + [ + "wash", + -11.691500663757324 + ], + [ + "▁estates", + -11.691678047180176 + ], + [ + "▁motive", + -11.691742897033691 + ], + [ + "▁Petit", + -11.691770553588867 + ], + [ + "▁monarchy", + -11.691838264465332 + ], + [ + "UP", + -11.691853523254395 + ], + [ + "▁1874", + -11.691901206970215 + ], + [ + "▁Theory", + -11.692018508911133 + ], + [ + "▁intra", + -11.692094802856445 + ], + [ + "▁regulatory", + -11.692232131958008 + ], + [ + "▁regards", + -11.692293167114258 + ], + [ + "▁Fast", + -11.692627906799316 + ], + [ + "▁Riley", + -11.692669868469238 + ], + [ + "▁Newfoundland", + -11.692732810974121 + ], + [ + "▁Tunnel", + -11.692733764648438 + ], + [ + "▁suburb", + -11.692769050598145 + ], + [ + "▁Tara", + -11.692784309387207 + ], + [ + "▁Lucy", + -11.692792892456055 + ], + [ + "▁Janet", + -11.69334602355957 + ], + [ + "dou", + -11.693483352661133 + ], + [ + "LI", + -11.693493843078613 + ], + [ + "▁dys", + -11.693629264831543 + ], + [ + "▁Course", + -11.6936616897583 + ], + [ + "▁Busch", + -11.693856239318848 + ], + [ + "zh", + -11.693883895874023 + ], + [ + "▁CC", + -11.693951606750488 + ], + [ + "▁accepting", + -11.694062232971191 + ], + [ + "▁conclude", + -11.694092750549316 + ], + [ + "▁Contemporary", + -11.69412899017334 + ], + [ + "inter", + -11.694141387939453 + ], + [ + "▁negotiate", + -11.69439697265625 + ], + [ + "τ", + -11.694478034973145 + ], + [ + "-7", + -11.694549560546875 + ], + [ + "▁antibodies", + -11.694878578186035 + ], + [ + "▁nicknamed", + -11.6949462890625 + ], + [ + "▁270", + -11.69505500793457 + ], + [ + "▁sustainability", + -11.69522762298584 + ], + [ + "▁nationwide", + -11.695228576660156 + ], + [ + "▁Stoke", + -11.69532585144043 + ], + [ + "▁Hum", + -11.695402145385742 + ], + [ + "using", + -11.695432662963867 + ], + [ + "ops", + -11.695454597473145 + ], + [ + "▁Cow", + -11.695769309997559 + ], + [ + "▁accelerated", + -11.69616985321045 + ], + [ + "▁Advanced", + -11.696170806884766 + ], + [ + "▁Lynch", + -11.696198463439941 + ], + [ + "▁suspicion", + -11.696226119995117 + ], + [ + "▁esp", + -11.696290016174316 + ], + [ + "▁intend", + -11.696380615234375 + ], + [ + "▁Looking", + -11.696610450744629 + ], + [ + "▁WWF", + -11.696663856506348 + ], + [ + "▁Shar", + -11.69678020477295 + ], + [ + "▁chronicle", + -11.696805000305176 + ], + [ + "▁premier", + -11.697152137756348 + ], + [ + "▁Wake", + -11.697197914123535 + ], + [ + "▁molecule", + -11.697244644165039 + ], + [ + "▁gig", + -11.697249412536621 + ], + [ + "▁scenarios", + -11.697317123413086 + ], + [ + "▁Rosen", + -11.697461128234863 + ], + [ + "▁Editor", + -11.6978120803833 + ], + [ + "▁Gy", + -11.697815895080566 + ], + [ + "▁Rare", + -11.697840690612793 + ], + [ + "▁flip", + -11.69784927368164 + ], + [ + "▁resembles", + -11.697962760925293 + ], + [ + "▁indirect", + -11.698036193847656 + ], + [ + "▁reservation", + -11.698328971862793 + ], + [ + "▁shower", + -11.69861888885498 + ], + [ + "nat", + -11.69869327545166 + ], + [ + "▁Augustus", + -11.698702812194824 + ], + [ + "▁nutrient", + -11.698781967163086 + ], + [ + "▁linking", + -11.698827743530273 + ], + [ + "flower", + -11.698895454406738 + ], + [ + "▁Mani", + -11.699004173278809 + ], + [ + "▁passive", + -11.699197769165039 + ], + [ + "▁sensor", + -11.699564933776855 + ], + [ + "▁Left", + -11.699721336364746 + ], + [ + "▁Irving", + -11.699782371520996 + ], + [ + "▁Vermont", + -11.699878692626953 + ], + [ + "▁libraries", + -11.70008373260498 + ], + [ + "lau", + -11.700199127197266 + ], + [ + "▁garage", + -11.70035457611084 + ], + [ + "▁creativity", + -11.700434684753418 + ], + [ + "▁groove", + -11.700485229492188 + ], + [ + "▁midnight", + -11.700568199157715 + ], + [ + "▁executives", + -11.70090103149414 + ], + [ + "▁screw", + -11.701177597045898 + ], + [ + "▁dorsal", + -11.701178550720215 + ], + [ + "▁promises", + -11.701333045959473 + ], + [ + "▁socio", + -11.701495170593262 + ], + [ + "▁textile", + -11.701623916625977 + ], + [ + "▁airplane", + -11.701699256896973 + ], + [ + "iza", + -11.701739311218262 + ], + [ + "▁Written", + -11.701841354370117 + ], + [ + "▁limbs", + -11.701916694641113 + ], + [ + "▁Diana", + -11.702071189880371 + ], + [ + "▁conception", + -11.702136039733887 + ], + [ + "▁contractor", + -11.702147483825684 + ], + [ + "▁Plaza", + -11.70229721069336 + ], + [ + "▁Jeffrey", + -11.70258903503418 + ], + [ + "▁Treasury", + -11.702898025512695 + ], + [ + "▁Mana", + -11.703216552734375 + ], + [ + "▁mercury", + -11.70324993133545 + ], + [ + "▁Lyn", + -11.703266143798828 + ], + [ + "▁frames", + -11.703315734863281 + ], + [ + "▁Below", + -11.703519821166992 + ], + [ + "▁codes", + -11.703714370727539 + ], + [ + "▁Risk", + -11.703880310058594 + ], + [ + "▁successes", + -11.703890800476074 + ], + [ + "fon", + -11.7039794921875 + ], + [ + "▁preceded", + -11.703997611999512 + ], + [ + "▁enthusiasm", + -11.704307556152344 + ], + [ + "▁Kha", + -11.70439624786377 + ], + [ + "hou", + -11.704519271850586 + ], + [ + "metric", + -11.70452880859375 + ], + [ + "chem", + -11.704622268676758 + ], + [ + "▁passages", + -11.70467472076416 + ], + [ + "▁Taking", + -11.705012321472168 + ], + [ + "▁matched", + -11.705212593078613 + ], + [ + "▁Factor", + -11.705233573913574 + ], + [ + "▁dolphin", + -11.705367088317871 + ], + [ + "▁MC", + -11.705389022827148 + ], + [ + "▁pie", + -11.705520629882812 + ], + [ + "▁lady", + -11.705633163452148 + ], + [ + "formula", + -11.705743789672852 + ], + [ + "▁Current", + -11.706059455871582 + ], + [ + "▁mount", + -11.706421852111816 + ], + [ + "▁Formula", + -11.706450462341309 + ], + [ + "▁Kri", + -11.706518173217773 + ], + [ + "fur", + -11.706530570983887 + ], + [ + "▁Masters", + -11.706616401672363 + ], + [ + "▁diesel", + -11.706843376159668 + ], + [ + "▁counts", + -11.706986427307129 + ], + [ + "▁scarce", + -11.707063674926758 + ], + [ + "▁buses", + -11.707085609436035 + ], + [ + "FS", + -11.7070951461792 + ], + [ + "▁deceased", + -11.707134246826172 + ], + [ + "▁irrigation", + -11.707134246826172 + ], + [ + "▁una", + -11.707157135009766 + ], + [ + "yama", + -11.707164764404297 + ], + [ + "▁antenna", + -11.707215309143066 + ], + [ + "kal", + -11.70744514465332 + ], + [ + "▁Georgian", + -11.70745849609375 + ], + [ + "▁Armenia", + -11.707611083984375 + ], + [ + "▁starter", + -11.707663536071777 + ], + [ + "owski", + -11.707854270935059 + ], + [ + "▁stripped", + -11.708047866821289 + ], + [ + "nick", + -11.708243370056152 + ], + [ + "▁pretend", + -11.708312034606934 + ], + [ + "▁nominal", + -11.708335876464844 + ], + [ + "▁discontinued", + -11.708450317382812 + ], + [ + "▁rotate", + -11.708537101745605 + ], + [ + "▁Alejandro", + -11.708550453186035 + ], + [ + "▁Assistant", + -11.708550453186035 + ], + [ + "▁Period", + -11.708699226379395 + ], + [ + "rain", + -11.708863258361816 + ], + [ + "kri", + -11.70886516571045 + ], + [ + "▁constellation", + -11.708905220031738 + ], + [ + "▁Punk", + -11.708996772766113 + ], + [ + "▁Hon", + -11.709198951721191 + ], + [ + "▁Associated", + -11.709208488464355 + ], + [ + "▁AND", + -11.709249496459961 + ], + [ + "▁disappointment", + -11.709259033203125 + ], + [ + "▁Alexandria", + -11.70928955078125 + ], + [ + "▁impacted", + -11.709298133850098 + ], + [ + "wig", + -11.709554672241211 + ], + [ + "▁Neither", + -11.709613800048828 + ], + [ + "▁funnel", + -11.709735870361328 + ], + [ + "▁Rub", + -11.709769248962402 + ], + [ + "▁Lip", + -11.709782600402832 + ], + [ + "▁Paralympic", + -11.709968566894531 + ], + [ + "▁Buddha", + -11.709969520568848 + ], + [ + "▁Cul", + -11.710047721862793 + ], + [ + "▁wit", + -11.710204124450684 + ], + [ + "▁tears", + -11.710294723510742 + ], + [ + "▁rigid", + -11.710536003112793 + ], + [ + "▁Franse", + -11.710545539855957 + ], + [ + "▁dwelling", + -11.710655212402344 + ], + [ + "▁Surrey", + -11.710711479187012 + ], + [ + "▁consuming", + -11.711257934570312 + ], + [ + "writer", + -11.711396217346191 + ], + [ + "▁Fraser", + -11.711487770080566 + ], + [ + "▁floors", + -11.711514472961426 + ], + [ + "▁Patricia", + -11.711751937866211 + ], + [ + "▁melting", + -11.711812019348145 + ], + [ + "▁deposit", + -11.711823463439941 + ], + [ + "▁Nord", + -11.711981773376465 + ], + [ + "▁Preston", + -11.71200942993164 + ], + [ + "▁Rec", + -11.712065696716309 + ], + [ + "▁cease", + -11.712069511413574 + ], + [ + "▁deserve", + -11.71207046508789 + ], + [ + "▁Beautiful", + -11.7121000289917 + ], + [ + "▁opted", + -11.712235450744629 + ], + [ + "▁Net", + -11.712347030639648 + ], + [ + "▁seize", + -11.712395668029785 + ], + [ + "▁wireless", + -11.712467193603516 + ], + [ + "▁implies", + -11.712504386901855 + ], + [ + "▁Thailand", + -11.712539672851562 + ], + [ + "▁locomotive", + -11.712591171264648 + ], + [ + "▁linguistic", + -11.71259880065918 + ], + [ + "graph", + -11.71263599395752 + ], + [ + "▁sexuality", + -11.712712287902832 + ], + [ + "▁continually", + -11.712827682495117 + ], + [ + "▁Burger", + -11.712837219238281 + ], + [ + "▁litter", + -11.712907791137695 + ], + [ + "▁festivals", + -11.713038444519043 + ], + [ + "Cl", + -11.713722229003906 + ], + [ + "▁Eisenhower", + -11.713878631591797 + ], + [ + "▁Encyclopedia", + -11.713878631591797 + ], + [ + "xa", + -11.713899612426758 + ], + [ + "▁Hancock", + -11.71390151977539 + ], + [ + "▁crowned", + -11.714075088500977 + ], + [ + "▁brew", + -11.714093208312988 + ], + [ + "▁Catholics", + -11.71424388885498 + ], + [ + "▁Peak", + -11.714362144470215 + ], + [ + "▁dr", + -11.714400291442871 + ], + [ + "▁Cave", + -11.714756965637207 + ], + [ + "▁initiatives", + -11.7149019241333 + ], + [ + "▁warriors", + -11.715197563171387 + ], + [ + "▁Kay", + -11.715229034423828 + ], + [ + "▁allegedly", + -11.715387344360352 + ], + [ + "▁Gin", + -11.715487480163574 + ], + [ + "▁Tele", + -11.715561866760254 + ], + [ + "▁Brit", + -11.71558666229248 + ], + [ + "▁tunnels", + -11.715717315673828 + ], + [ + "▁155", + -11.71590805053711 + ], + [ + "▁adjustment", + -11.715943336486816 + ], + [ + "▁Swi", + -11.715971946716309 + ], + [ + "ī", + -11.716018676757812 + ], + [ + "▁Panyòl", + -11.716018676757812 + ], + [ + "▁emergence", + -11.716066360473633 + ], + [ + "bear", + -11.716339111328125 + ], + [ + "▁renowned", + -11.716375350952148 + ], + [ + "▁browser", + -11.716400146484375 + ], + [ + "▁contaminated", + -11.716593742370605 + ], + [ + "▁comb", + -11.716623306274414 + ], + [ + "▁Gérard", + -11.7167329788208 + ], + [ + "▁papa", + -11.716742515563965 + ], + [ + "▁Mach", + -11.71695327758789 + ], + [ + "ymp", + -11.717050552368164 + ], + [ + "▁ultra", + -11.717114448547363 + ], + [ + "▁crust", + -11.717198371887207 + ], + [ + "▁factories", + -11.717679023742676 + ], + [ + "▁vegetable", + -11.717698097229004 + ], + [ + "▁likelihood", + -11.717804908752441 + ], + [ + "▁racism", + -11.717806816101074 + ], + [ + "▁slowed", + -11.717875480651855 + ], + [ + "▁Negro", + -11.718175888061523 + ], + [ + "DP", + -11.718366622924805 + ], + [ + "▁bloom", + -11.718521118164062 + ], + [ + "▁nominee", + -11.718528747558594 + ], + [ + "▁Skinner", + -11.71860408782959 + ], + [ + "▁defenses", + -11.718697547912598 + ], + [ + "icle", + -11.718756675720215 + ], + [ + "odi", + -11.718852996826172 + ], + [ + "▁composite", + -11.719236373901367 + ], + [ + "▁Kenya", + -11.719282150268555 + ], + [ + "rig", + -11.719359397888184 + ], + [ + "▁brutal", + -11.719717979431152 + ], + [ + "▁surround", + -11.719842910766602 + ], + [ + "▁Tai", + -11.719890594482422 + ], + [ + "▁counterparts", + -11.719937324523926 + ], + [ + "▁narrator", + -11.719952583312988 + ], + [ + "▁Snake", + -11.719955444335938 + ], + [ + "fest", + -11.720053672790527 + ], + [ + "▁Rhine", + -11.720147132873535 + ], + [ + "▁textbook", + -11.720182418823242 + ], + [ + "amba", + -11.720282554626465 + ], + [ + "And", + -11.720295906066895 + ], + [ + "isi", + -11.720407485961914 + ], + [ + "▁Flu", + -11.720577239990234 + ], + [ + "centric", + -11.720590591430664 + ], + [ + "wich", + -11.720592498779297 + ], + [ + "▁Franz", + -11.720629692077637 + ], + [ + "▁obstacles", + -11.72063159942627 + ], + [ + "▁1851", + -11.720638275146484 + ], + [ + "▁vacuum", + -11.720669746398926 + ], + [ + "▁geographic", + -11.720739364624023 + ], + [ + "hum", + -11.721477508544922 + ], + [ + "▁corpse", + -11.721517562866211 + ], + [ + "▁macro", + -11.721596717834473 + ], + [ + "▁dip", + -11.721601486206055 + ], + [ + "▁evaluated", + -11.721735954284668 + ], + [ + "OT", + -11.721991539001465 + ], + [ + "por", + -11.722016334533691 + ], + [ + "NE", + -11.722131729125977 + ], + [ + "ologies", + -11.722270011901855 + ], + [ + "▁batsman", + -11.72227954864502 + ], + [ + "▁Pari", + -11.722296714782715 + ], + [ + "So", + -11.722390174865723 + ], + [ + "▁accumulated", + -11.722463607788086 + ], + [ + "▁dynamics", + -11.722668647766113 + ], + [ + "▁incredible", + -11.722824096679688 + ], + [ + "▁smile", + -11.722848892211914 + ], + [ + "▁handful", + -11.722906112670898 + ], + [ + "▁1859", + -11.7229642868042 + ], + [ + "▁Pie", + -11.722972869873047 + ], + [ + "storm", + -11.723033905029297 + ], + [ + "▁Protect", + -11.723078727722168 + ], + [ + "▁pillar", + -11.723105430603027 + ], + [ + "▁barn", + -11.723119735717773 + ], + [ + "Or", + -11.723305702209473 + ], + [ + "▁Fact", + -11.723326683044434 + ], + [ + "▁lowered", + -11.723734855651855 + ], + [ + "▁labels", + -11.723782539367676 + ], + [ + "▁seeks", + -11.723896026611328 + ], + [ + "▁analyst", + -11.723902702331543 + ], + [ + "▁metabolic", + -11.723913192749023 + ], + [ + "▁Terra", + -11.723986625671387 + ], + [ + "▁siblings", + -11.723986625671387 + ], + [ + "▁ranch", + -11.72411060333252 + ], + [ + "▁145", + -11.724139213562012 + ], + [ + "▁dirt", + -11.72457504272461 + ], + [ + "▁Introduction", + -11.724621772766113 + ], + [ + "▁explicit", + -11.724628448486328 + ], + [ + "▁Lac", + -11.724671363830566 + ], + [ + "▁Knights", + -11.725035667419434 + ], + [ + "▁boards", + -11.725170135498047 + ], + [ + "▁investments", + -11.72530460357666 + ], + [ + "step", + -11.725329399108887 + ], + [ + "base", + -11.725631713867188 + ], + [ + "▁enlarged", + -11.725703239440918 + ], + [ + "▁observers", + -11.725754737854004 + ], + [ + "▁maritime", + -11.725762367248535 + ], + [ + "▁neighborhoods", + -11.725805282592773 + ], + [ + "▁Outside", + -11.726036071777344 + ], + [ + "▁sic", + -11.726114273071289 + ], + [ + "▁Leg", + -11.726153373718262 + ], + [ + "▁disliked", + -11.726278305053711 + ], + [ + "▁Patriot", + -11.72642993927002 + ], + [ + "▁snap", + -11.72642993927002 + ], + [ + "?\"", + -11.726641654968262 + ], + [ + "doc", + -11.726678848266602 + ], + [ + "▁Nashville", + -11.726862907409668 + ], + [ + "▁reply", + -11.726896286010742 + ], + [ + "▁Rail", + -11.726957321166992 + ], + [ + "rud", + -11.727245330810547 + ], + [ + "▁ancestor", + -11.727275848388672 + ], + [ + "▁vigorous", + -11.727506637573242 + ], + [ + "RS", + -11.727749824523926 + ], + [ + "▁clearing", + -11.727774620056152 + ], + [ + "▁Mirror", + -11.72786808013916 + ], + [ + "▁belongs", + -11.728028297424316 + ], + [ + "▁spa", + -11.728074073791504 + ], + [ + "▁breakfast", + -11.728229522705078 + ], + [ + "▁Kol", + -11.728231430053711 + ], + [ + "▁atom", + -11.728358268737793 + ], + [ + "▁embrace", + -11.728557586669922 + ], + [ + "▁Drama", + -11.728586196899414 + ], + [ + "▁patrols", + -11.728667259216309 + ], + [ + "▁Cent", + -11.728846549987793 + ], + [ + "vie", + -11.728978157043457 + ], + [ + "▁intensify", + -11.72903060913086 + ], + [ + "▁Spy", + -11.729083061218262 + ], + [ + "▁fortified", + -11.72908878326416 + ], + [ + "▁colleague", + -11.729118347167969 + ], + [ + "▁Mack", + -11.729249954223633 + ], + [ + "▁Contact", + -11.729314804077148 + ], + [ + "▁dull", + -11.729437828063965 + ], + [ + "▁gasoline", + -11.729676246643066 + ], + [ + "▁recycling", + -11.729677200317383 + ], + [ + "▁pepper", + -11.729751586914062 + ], + [ + "▁Bulgaria", + -11.729930877685547 + ], + [ + "heart", + -11.729974746704102 + ], + [ + "rew", + -11.729981422424316 + ], + [ + "▁angles", + -11.730026245117188 + ], + [ + "▁hymn", + -11.73004150390625 + ], + [ + "rou", + -11.730154037475586 + ], + [ + "▁detached", + -11.73017406463623 + ], + [ + "▁inserted", + -11.730199813842773 + ], + [ + "▁disco", + -11.73047924041748 + ], + [ + "▁lined", + -11.730756759643555 + ], + [ + "crease", + -11.730818748474121 + ], + [ + "till", + -11.730830192565918 + ], + [ + "▁doubled", + -11.73095703125 + ], + [ + "▁sympathetic", + -11.731123924255371 + ], + [ + "▁periodic", + -11.731133460998535 + ], + [ + "▁caps", + -11.731771469116211 + ], + [ + "▁strand", + -11.731802940368652 + ], + [ + "▁freight", + -11.731931686401367 + ], + [ + "▁Finnish", + -11.732017517089844 + ], + [ + "▁Cara", + -11.7320556640625 + ], + [ + "▁Luftwaffe", + -11.73221206665039 + ], + [ + "▁trucks", + -11.732732772827148 + ], + [ + "ony", + -11.7327880859375 + ], + [ + "ivo", + -11.732854843139648 + ], + [ + "▁exceeding", + -11.733017921447754 + ], + [ + "even", + -11.733024597167969 + ], + [ + "▁interventions", + -11.733080863952637 + ], + [ + "anta", + -11.73309326171875 + ], + [ + "▁coordination", + -11.73330020904541 + ], + [ + "▁convenient", + -11.733301162719727 + ], + [ + "▁Popular", + -11.733397483825684 + ], + [ + "▁Mounted", + -11.733409881591797 + ], + [ + "▁hell", + -11.733550071716309 + ], + [ + "screen", + -11.7335844039917 + ], + [ + "▁entertaining", + -11.733603477478027 + ], + [ + "▁imprisonment", + -11.733691215515137 + ], + [ + "▁Farmer", + -11.733863830566406 + ], + [ + "▁pub", + -11.733868598937988 + ], + [ + "▁Ple", + -11.73419189453125 + ], + [ + "▁blown", + -11.734196662902832 + ], + [ + "rak", + -11.734309196472168 + ], + [ + "▁dominance", + -11.734391212463379 + ], + [ + "▁Tyr", + -11.73457145690918 + ], + [ + "▁muzzle", + -11.73475456237793 + ], + [ + "▁referendum", + -11.73475456237793 + ], + [ + "▁vampire", + -11.73475456237793 + ], + [ + "▁RPG", + -11.734764099121094 + ], + [ + "▁hollow", + -11.73511791229248 + ], + [ + "nail", + -11.735176086425781 + ], + [ + "▁Cool", + -11.73522663116455 + ], + [ + "▁deadline", + -11.735318183898926 + ], + [ + "▁PR", + -11.73541259765625 + ], + [ + "▁Soldier", + -11.735485076904297 + ], + [ + "▁antioxidant", + -11.735505104064941 + ], + [ + "▁whereby", + -11.735594749450684 + ], + [ + "▁gentle", + -11.735624313354492 + ], + [ + "▁owl", + -11.735673904418945 + ], + [ + "▁Moor", + -11.735712051391602 + ], + [ + "▁pursuing", + -11.735846519470215 + ], + [ + "jack", + -11.736215591430664 + ], + [ + "▁suite", + -11.736228942871094 + ], + [ + "▁Corner", + -11.736443519592285 + ], + [ + "▁destructive", + -11.736574172973633 + ], + [ + "unda", + -11.736844062805176 + ], + [ + "ctic", + -11.73685359954834 + ], + [ + "bee", + -11.737116813659668 + ], + [ + "▁Subsequently", + -11.737212181091309 + ], + [ + "▁delivering", + -11.737259864807129 + ], + [ + "▁Agreement", + -11.737303733825684 + ], + [ + "▁Warsaw", + -11.7374267578125 + ], + [ + "▁Broad", + -11.737648963928223 + ], + [ + "▁trout", + -11.737764358520508 + ], + [ + "▁Glenn", + -11.737825393676758 + ], + [ + "▁Metacritic", + -11.738033294677734 + ], + [ + "curr", + -11.738147735595703 + ], + [ + "▁dishes", + -11.738152503967285 + ], + [ + "▁costly", + -11.738163948059082 + ], + [ + "▁Manning", + -11.738495826721191 + ], + [ + "▁cycles", + -11.73868179321289 + ], + [ + "asa", + -11.738738059997559 + ], + [ + "▁carbohydrate", + -11.738762855529785 + ], + [ + "▁nobility", + -11.738762855529785 + ], + [ + "▁lawyers", + -11.738763809204102 + ], + [ + "▁Toy", + -11.738845825195312 + ], + [ + "▁PhD", + -11.73908519744873 + ], + [ + "▁Basic", + -11.739087104797363 + ], + [ + "▁farther", + -11.739184379577637 + ], + [ + "▁unconscious", + -11.739239692687988 + ], + [ + "▁dedication", + -11.73930835723877 + ], + [ + "▁tales", + -11.739797592163086 + ], + [ + "▁definitive", + -11.739858627319336 + ], + [ + "▁Waters", + -11.739873886108398 + ], + [ + "▁missiles", + -11.739925384521484 + ], + [ + "▁Engineer", + -11.73999309539795 + ], + [ + "▁refine", + -11.740097999572754 + ], + [ + "▁abolished", + -11.740113258361816 + ], + [ + "▁Porter", + -11.740230560302734 + ], + [ + "▁Stro", + -11.74025821685791 + ], + [ + "dé", + -11.74029541015625 + ], + [ + "wave", + -11.740389823913574 + ], + [ + "itor", + -11.74056339263916 + ], + [ + "▁grasp", + -11.740596771240234 + ], + [ + "▁physicians", + -11.740596771240234 + ], + [ + "▁opt", + -11.740653038024902 + ], + [ + "vik", + -11.740734100341797 + ], + [ + "FI", + -11.740827560424805 + ], + [ + "▁210", + -11.740900039672852 + ], + [ + "▁beaches", + -11.741275787353516 + ], + [ + "▁admit", + -11.741301536560059 + ], + [ + "▁assumption", + -11.741442680358887 + ], + [ + "▁nesting", + -11.741546630859375 + ], + [ + "▁immunity", + -11.741689682006836 + ], + [ + "▁Dame", + -11.741734504699707 + ], + [ + "▁Tool", + -11.741771697998047 + ], + [ + "▁ibn", + -11.742094993591309 + ], + [ + "▁Crane", + -11.742138862609863 + ], + [ + "▁inhibitor", + -11.742185592651367 + ], + [ + "▁Philippine", + -11.7422456741333 + ], + [ + "▁Admiralty", + -11.7422513961792 + ], + [ + "▁reside", + -11.7423677444458 + ], + [ + "▁regained", + -11.742547035217285 + ], + [ + "▁constraints", + -11.742788314819336 + ], + [ + "▁Til", + -11.743010520935059 + ], + [ + "▁Lyon", + -11.743146896362305 + ], + [ + "▁Technical", + -11.743163108825684 + ], + [ + "▁Ober", + -11.74317455291748 + ], + [ + "▁Geo", + -11.743364334106445 + ], + [ + "▁sovereign", + -11.743400573730469 + ], + [ + "▁trails", + -11.743452072143555 + ], + [ + "▁lyric", + -11.743478775024414 + ], + [ + "▁Lum", + -11.74367904663086 + ], + [ + "▁intentions", + -11.743880271911621 + ], + [ + "▁Nicole", + -11.743927001953125 + ], + [ + "city", + -11.744102478027344 + ], + [ + "▁deter", + -11.74413776397705 + ], + [ + "▁gran", + -11.744160652160645 + ], + [ + "▁resume", + -11.744267463684082 + ], + [ + "▁faint", + -11.74438762664795 + ], + [ + "▁Windsor", + -11.744645118713379 + ], + [ + "▁Gaza", + -11.74473762512207 + ], + [ + "▁wavelength", + -11.745000839233398 + ], + [ + "▁sweep", + -11.745201110839844 + ], + [ + "▁Munich", + -11.745415687561035 + ], + [ + "▁Speed", + -11.74569320678711 + ], + [ + "▁Monitor", + -11.745766639709473 + ], + [ + "▁fil", + -11.746237754821777 + ], + [ + "▁sends", + -11.746259689331055 + ], + [ + "▁nuts", + -11.74637508392334 + ], + [ + "▁invasive", + -11.746454238891602 + ], + [ + "▁elimination", + -11.746460914611816 + ], + [ + "▁Perth", + -11.746758460998535 + ], + [ + "▁Brigadier", + -11.74682903289795 + ], + [ + "▁Physics", + -11.746832847595215 + ], + [ + "▁colonel", + -11.746853828430176 + ], + [ + "▁Stre", + -11.746941566467285 + ], + [ + "▁Yale", + -11.747127532958984 + ], + [ + "mination", + -11.74714183807373 + ], + [ + "▁sheets", + -11.747163772583008 + ], + [ + "▁Sum", + -11.74727725982666 + ], + [ + "▁Arabia", + -11.747418403625488 + ], + [ + "▁Wol", + -11.74742603302002 + ], + [ + "▁Kun", + -11.747432708740234 + ], + [ + "▁servant", + -11.74747371673584 + ], + [ + "▁Jesse", + -11.747596740722656 + ], + [ + "▁suburban", + -11.747607231140137 + ], + [ + "▁precision", + -11.747668266296387 + ], + [ + "▁1820", + -11.747797966003418 + ], + [ + "▁necessity", + -11.747934341430664 + ], + [ + "▁percussion", + -11.747934341430664 + ], + [ + "▁dozens", + -11.748037338256836 + ], + [ + "▁Elder", + -11.748353004455566 + ], + [ + "▁countryside", + -11.748444557189941 + ], + [ + "▁Chapman", + -11.748558044433594 + ], + [ + "ifer", + -11.748559951782227 + ], + [ + "▁uncommon", + -11.748671531677246 + ], + [ + "pm", + -11.74876880645752 + ], + [ + "▁traces", + -11.748847961425781 + ], + [ + "ando", + -11.748976707458496 + ], + [ + "ht", + -11.749156951904297 + ], + [ + "▁Lat", + -11.7492036819458 + ], + [ + "bou", + -11.749300003051758 + ], + [ + "▁131", + -11.749391555786133 + ], + [ + "▁harmony", + -11.749438285827637 + ], + [ + "▁Present", + -11.74947738647461 + ], + [ + "▁landings", + -11.749551773071289 + ], + [ + "▁adviser", + -11.749717712402344 + ], + [ + "cz", + -11.749720573425293 + ], + [ + "▁freed", + -11.75009822845459 + ], + [ + "▁invested", + -11.750155448913574 + ], + [ + "dem", + -11.750167846679688 + ], + [ + "▁Liu", + -11.750739097595215 + ], + [ + "▁realised", + -11.750876426696777 + ], + [ + "▁stalk", + -11.750941276550293 + ], + [ + "▁retaining", + -11.751083374023438 + ], + [ + "▁Papa", + -11.75134563446045 + ], + [ + "▁doses", + -11.751431465148926 + ], + [ + "▁Sym", + -11.751482009887695 + ], + [ + "▁republic", + -11.751502990722656 + ], + [ + "eye", + -11.751598358154297 + ], + [ + "▁albeit", + -11.751626014709473 + ], + [ + "▁supervision", + -11.751678466796875 + ], + [ + "▁tutor", + -11.751694679260254 + ], + [ + "works", + -11.751709938049316 + ], + [ + "walk", + -11.751742362976074 + ], + [ + "▁borrowed", + -11.751795768737793 + ], + [ + "▁eco", + -11.751880645751953 + ], + [ + "gni", + -11.751995086669922 + ], + [ + "▁Vitamin", + -11.752071380615234 + ], + [ + "▁disturbed", + -11.752181053161621 + ], + [ + "▁trustee", + -11.752275466918945 + ], + [ + "▁Pil", + -11.752312660217285 + ], + [ + "▁Bois", + -11.752584457397461 + ], + [ + "▁chat", + -11.752591133117676 + ], + [ + "▁pulling", + -11.752715110778809 + ], + [ + "▁Product", + -11.752744674682617 + ], + [ + "▁SD", + -11.752808570861816 + ], + [ + "nation", + -11.752835273742676 + ], + [ + "other", + -11.75291633605957 + ], + [ + "quo", + -11.75298023223877 + ], + [ + "▁appreciation", + -11.753107070922852 + ], + [ + "▁obtaining", + -11.753344535827637 + ], + [ + "▁conclusions", + -11.753378868103027 + ], + [ + "cord", + -11.753457069396973 + ], + [ + "▁oppose", + -11.753500938415527 + ], + [ + "▁ankle", + -11.753673553466797 + ], + [ + "▁gravitational", + -11.7538480758667 + ], + [ + "▁Enter", + -11.753863334655762 + ], + [ + "▁Disc", + -11.753868103027344 + ], + [ + "▁motorway", + -11.754081726074219 + ], + [ + "▁Folk", + -11.754169464111328 + ], + [ + "▁Joy", + -11.754265785217285 + ], + [ + "▁binary", + -11.754796028137207 + ], + [ + "▁teens", + -11.755056381225586 + ], + [ + "edu", + -11.755237579345703 + ], + [ + "▁Adventures", + -11.755266189575195 + ], + [ + "traction", + -11.755330085754395 + ], + [ + "▁graduation", + -11.755331993103027 + ], + [ + "▁Vision", + -11.755552291870117 + ], + [ + "▁Petersburg", + -11.755600929260254 + ], + [ + "▁Sud", + -11.755603790283203 + ], + [ + "▁Joel", + -11.75586986541748 + ], + [ + "▁badge", + -11.755962371826172 + ], + [ + "▁Avoid", + -11.75612735748291 + ], + [ + "borg", + -11.75649356842041 + ], + [ + "▁shale", + -11.756579399108887 + ], + [ + "▁GDP", + -11.756877899169922 + ], + [ + "iah", + -11.757081031799316 + ], + [ + "▁Hoffman", + -11.757206916809082 + ], + [ + "oids", + -11.757391929626465 + ], + [ + "▁Pierce", + -11.75742244720459 + ], + [ + "▁Serge", + -11.757534980773926 + ], + [ + "▁Dynasty", + -11.757561683654785 + ], + [ + "▁MVP", + -11.757568359375 + ], + [ + "▁decreases", + -11.757604598999023 + ], + [ + "culture", + -11.757612228393555 + ], + [ + "▁Rocket", + -11.7576265335083 + ], + [ + "▁Argentine", + -11.757645606994629 + ], + [ + "ario", + -11.757706642150879 + ], + [ + "utter", + -11.758056640625 + ], + [ + "▁regret", + -11.758212089538574 + ], + [ + "▁Index", + -11.758342742919922 + ], + [ + "iger", + -11.758417129516602 + ], + [ + "Th", + -11.758614540100098 + ], + [ + "▁Kiss", + -11.75866985321045 + ], + [ + "▁graduating", + -11.758679389953613 + ], + [ + "▁metabolism", + -11.758679389953613 + ], + [ + "▁Basil", + -11.758848190307617 + ], + [ + "▁poetic", + -11.758941650390625 + ], + [ + "▁Rem", + -11.75895881652832 + ], + [ + "▁Angela", + -11.759076118469238 + ], + [ + "▁cake", + -11.759079933166504 + ], + [ + "▁Pig", + -11.7594575881958 + ], + [ + "▁dealer", + -11.7595796585083 + ], + [ + "▁Luther", + -11.759617805480957 + ], + [ + "▁deploy", + -11.759625434875488 + ], + [ + "▁Spartan", + -11.759649276733398 + ], + [ + "▁bend", + -11.759664535522461 + ], + [ + "▁frustrated", + -11.759797096252441 + ], + [ + "▁Lithuania", + -11.759812355041504 + ], + [ + "▁flock", + -11.760046005249023 + ], + [ + "▁negotiated", + -11.76025676727295 + ], + [ + "▁traced", + -11.760536193847656 + ], + [ + "▁selective", + -11.760610580444336 + ], + [ + "rog", + -11.760660171508789 + ], + [ + "▁seri", + -11.760682106018066 + ], + [ + "▁confronted", + -11.760866165161133 + ], + [ + "▁joins", + -11.760915756225586 + ], + [ + "▁Aguilera", + -11.760916709899902 + ], + [ + "▁Ferguson", + -11.760916709899902 + ], + [ + "▁stimulate", + -11.760931015014648 + ], + [ + "▁battlecruisers", + -11.760981559753418 + ], + [ + "vian", + -11.76102066040039 + ], + [ + "▁scrapped", + -11.761397361755371 + ], + [ + "||1", + -11.761427879333496 + ], + [ + "▁Phar", + -11.761469841003418 + ], + [ + "▁guaranteed", + -11.761697769165039 + ], + [ + "▁Raja", + -11.761835098266602 + ], + [ + "▁elephant", + -11.761909484863281 + ], + [ + "▁remarks", + -11.76210880279541 + ], + [ + "▁digestive", + -11.76217269897461 + ], + [ + "▁CF", + -11.76220703125 + ], + [ + "▁extraction", + -11.762285232543945 + ], + [ + "▁Mart", + -11.762324333190918 + ], + [ + "▁biodiversity", + -11.762411117553711 + ], + [ + "erson", + -11.762482643127441 + ], + [ + "▁manor", + -11.762618064880371 + ], + [ + "▁collaborator", + -11.762784957885742 + ], + [ + "▁Hergé", + -11.762785911560059 + ], + [ + "▁interception", + -11.76294994354248 + ], + [ + "▁Flower", + -11.76298999786377 + ], + [ + "▁Aug", + -11.763237953186035 + ], + [ + "woman", + -11.763399124145508 + ], + [ + "▁render", + -11.763439178466797 + ], + [ + "▁Rifle", + -11.763538360595703 + ], + [ + "▁Alien", + -11.763615608215332 + ], + [ + "▁Wheeler", + -11.763615608215332 + ], + [ + "istan", + -11.763771057128906 + ], + [ + "▁depict", + -11.76387882232666 + ], + [ + "▁Mei", + -11.763906478881836 + ], + [ + "▁Pearson", + -11.763907432556152 + ], + [ + "▁grandmother", + -11.763928413391113 + ], + [ + "TO", + -11.763993263244629 + ], + [ + "▁Eugene", + -11.764005661010742 + ], + [ + "▁LA", + -11.764121055603027 + ], + [ + "▁cardiovascular", + -11.7642822265625 + ], + [ + "▁Hale", + -11.764302253723145 + ], + [ + "you", + -11.764307022094727 + ], + [ + "▁judged", + -11.76439094543457 + ], + [ + "▁tab", + -11.764418601989746 + ], + [ + "▁silicon", + -11.76465892791748 + ], + [ + "▁Tsu", + -11.764691352844238 + ], + [ + "▁Scotia", + -11.764701843261719 + ], + [ + "▁patches", + -11.764904975891113 + ], + [ + "▁firmly", + -11.765186309814453 + ], + [ + "▁Planning", + -11.765302658081055 + ], + [ + "▁ought", + -11.765373229980469 + ], + [ + "▁Neptune", + -11.765406608581543 + ], + [ + "▁Eng", + -11.765706062316895 + ], + [ + "▁artifacts", + -11.765716552734375 + ], + [ + "▁Reynolds", + -11.76578140258789 + ], + [ + "▁Deal", + -11.766027450561523 + ], + [ + "pis", + -11.766035079956055 + ], + [ + "▁overnight", + -11.766117095947266 + ], + [ + "NO", + -11.766216278076172 + ], + [ + "▁mutations", + -11.766282081604004 + ], + [ + "▁sack", + -11.766343116760254 + ], + [ + "▁Emergency", + -11.766532897949219 + ], + [ + "▁frustration", + -11.766532897949219 + ], + [ + "▁overthrow", + -11.766536712646484 + ], + [ + "assa", + -11.766644477844238 + ], + [ + "▁suck", + -11.766897201538086 + ], + [ + "▁sits", + -11.766966819763184 + ], + [ + "fan", + -11.76698112487793 + ], + [ + "▁disruption", + -11.76708984375 + ], + [ + "▁cultivated", + -11.767110824584961 + ], + [ + "stick", + -11.767457962036133 + ], + [ + "▁jokes", + -11.767525672912598 + ], + [ + "él", + -11.767634391784668 + ], + [ + "▁pati", + -11.76770305633545 + ], + [ + "▁Kom", + -11.767792701721191 + ], + [ + "▁152", + -11.767827033996582 + ], + [ + "▁Singer", + -11.768028259277344 + ], + [ + "▁lemurs", + -11.768073081970215 + ], + [ + "▁quote", + -11.768417358398438 + ], + [ + "▁Joyce", + -11.768507957458496 + ], + [ + "▁iconic", + -11.768563270568848 + ], + [ + "treat", + -11.768657684326172 + ], + [ + "▁Character", + -11.768787384033203 + ], + [ + "▁Mut", + -11.76879596710205 + ], + [ + "▁dressing", + -11.768832206726074 + ], + [ + "▁pig", + -11.768884658813477 + ], + [ + "▁Fel", + -11.769095420837402 + ], + [ + "▁phones", + -11.76911449432373 + ], + [ + "▁crypt", + -11.769132614135742 + ], + [ + "ο", + -11.769159317016602 + ], + [ + "▁€", + -11.769538879394531 + ], + [ + "▁sulfur", + -11.769539833068848 + ], + [ + "▁sampling", + -11.76954174041748 + ], + [ + "▁Usher", + -11.769600868225098 + ], + [ + "▁diagnostic", + -11.769917488098145 + ], + [ + "▁Currently", + -11.76993179321289 + ], + [ + "ici", + -11.769977569580078 + ], + [ + "600", + -11.770094871520996 + ], + [ + "▁realizes", + -11.770150184631348 + ], + [ + "▁euro", + -11.770318984985352 + ], + [ + "▁Financial", + -11.770670890808105 + ], + [ + "▁Habana", + -11.770670890808105 + ], + [ + "lice", + -11.770776748657227 + ], + [ + "▁Ul", + -11.771001815795898 + ], + [ + "▁welcomed", + -11.771048545837402 + ], + [ + "▁homo", + -11.771114349365234 + ], + [ + "▁problematic", + -11.771282196044922 + ], + [ + "▁Municipal", + -11.771425247192383 + ], + [ + "ete", + -11.771427154541016 + ], + [ + "▁ID", + -11.771615028381348 + ], + [ + "▁Places", + -11.771626472473145 + ], + [ + "▁posture", + -11.771641731262207 + ], + [ + "▁Willis", + -11.771732330322266 + ], + [ + "▁galaxies", + -11.77180290222168 + ], + [ + "▁Gir", + -11.771832466125488 + ], + [ + "▁Sing", + -11.771924018859863 + ], + [ + "▁tram", + -11.772163391113281 + ], + [ + "▁Tradiksyon", + -11.77217960357666 + ], + [ + "▁Levi", + -11.772293090820312 + ], + [ + "▁revolve", + -11.772391319274902 + ], + [ + "▁shame", + -11.772529602050781 + ], + [ + "▁astronaut", + -11.772557258605957 + ], + [ + "▁vapor", + -11.772579193115234 + ], + [ + "▁odds", + -11.7726469039917 + ], + [ + "400", + -11.772820472717285 + ], + [ + "▁sac", + -11.77294635772705 + ], + [ + "▁accomplishment", + -11.772954940795898 + ], + [ + "▁Hamburg", + -11.773101806640625 + ], + [ + "▁relates", + -11.773111343383789 + ], + [ + "▁lectures", + -11.773275375366211 + ], + [ + "▁advise", + -11.77341079711914 + ], + [ + "▁swelling", + -11.773544311523438 + ], + [ + "▁Census", + -11.77369213104248 + ], + [ + "▁lineage", + -11.773716926574707 + ], + [ + "opho", + -11.773859977722168 + ], + [ + "▁fascinating", + -11.774069786071777 + ], + [ + "▁prosperity", + -11.774069786071777 + ], + [ + "▁fertilizer", + -11.77444839477539 + ], + [ + "▁Selena", + -11.774531364440918 + ], + [ + "zzo", + -11.774680137634277 + ], + [ + "▁municipality", + -11.774809837341309 + ], + [ + "▁compartment", + -11.774826049804688 + ], + [ + "▁Date", + -11.774903297424316 + ], + [ + "▁Chat", + -11.774991989135742 + ], + [ + "▁Tank", + -11.774994850158691 + ], + [ + "▁schemes", + -11.775005340576172 + ], + [ + "▁shifts", + -11.775136947631836 + ], + [ + "Pierre", + -11.775554656982422 + ], + [ + "▁Idaho", + -11.775586128234863 + ], + [ + "▁Moving", + -11.775614738464355 + ], + [ + "nica", + -11.775663375854492 + ], + [ + "▁Vid", + -11.7758150100708 + ], + [ + "▁phrases", + -11.776046752929688 + ], + [ + "enter", + -11.776147842407227 + ], + [ + "▁Hayes", + -11.776252746582031 + ], + [ + "▁Bowie", + -11.77633285522461 + ], + [ + "▁prevalence", + -11.776342391967773 + ], + [ + "▁supervisor", + -11.776342391967773 + ], + [ + "▁meantime", + -11.776816368103027 + ], + [ + "▁partition", + -11.777017593383789 + ], + [ + "▁Haven", + -11.777205467224121 + ], + [ + "bie", + -11.777292251586914 + ], + [ + "quer", + -11.777666091918945 + ], + [ + "▁wheels", + -11.778209686279297 + ], + [ + "▁identifies", + -11.778239250183105 + ], + [ + "▁straw", + -11.77829360961914 + ], + [ + "▁outlets", + -11.77839183807373 + ], + [ + "▁insert", + -11.77853775024414 + ], + [ + "cad", + -11.778935432434082 + ], + [ + "ego", + -11.779102325439453 + ], + [ + "ë", + -11.779117584228516 + ], + [ + "▁dim", + -11.779160499572754 + ], + [ + "logist", + -11.77918815612793 + ], + [ + "▁Flor", + -11.779848098754883 + ], + [ + "gne", + -11.779977798461914 + ], + [ + "▁popilasyon", + -11.78014087677002 + ], + [ + "EE", + -11.780224800109863 + ], + [ + "▁learners", + -11.780314445495605 + ], + [ + "▁LED", + -11.78033447265625 + ], + [ + "▁manuscripts", + -11.780363082885742 + ], + [ + "▁decreasing", + -11.780521392822266 + ], + [ + "▁trophy", + -11.780529022216797 + ], + [ + "▁extant", + -11.780669212341309 + ], + [ + "▁1200", + -11.781048774719238 + ], + [ + "▁tent", + -11.781143188476562 + ], + [ + "▁accompany", + -11.781206130981445 + ], + [ + "▁compelling", + -11.781283378601074 + ], + [ + "Ra", + -11.781322479248047 + ], + [ + "▁Roth", + -11.781351089477539 + ], + [ + "just", + -11.781413078308105 + ], + [ + "▁adaptations", + -11.781503677368164 + ], + [ + "▁bu", + -11.781702041625977 + ], + [ + "▁Rein", + -11.781739234924316 + ], + [ + "▁financially", + -11.781855583190918 + ], + [ + "▁consult", + -11.782072067260742 + ], + [ + "▁GameSpot", + -11.782073974609375 + ], + [ + "iche", + -11.782209396362305 + ], + [ + "▁Milton", + -11.782228469848633 + ], + [ + "▁refit", + -11.782417297363281 + ], + [ + "▁Salvador", + -11.782426834106445 + ], + [ + "▁warehouse", + -11.782430648803711 + ], + [ + "▁educators", + -11.78243637084961 + ], + [ + "▁alpha", + -11.782585144042969 + ], + [ + "▁viewer", + -11.782904624938965 + ], + [ + "▁reprise", + -11.78298282623291 + ], + [ + "▁exhausted", + -11.783196449279785 + ], + [ + "omi", + -11.783204078674316 + ], + [ + "▁endorsed", + -11.783402442932129 + ], + [ + "azi", + -11.783576965332031 + ], + [ + "▁strains", + -11.783876419067383 + ], + [ + "3%", + -11.783886909484863 + ], + [ + "▁1857", + -11.783949851989746 + ], + [ + "▁rookie", + -11.783953666687012 + ], + [ + "▁teen", + -11.78406810760498 + ], + [ + "chant", + -11.784102439880371 + ], + [ + "▁Hank", + -11.784518241882324 + ], + [ + "croft", + -11.784636497497559 + ], + [ + "▁contamination", + -11.78471851348877 + ], + [ + "▁Happy", + -11.784782409667969 + ], + [ + "▁urgent", + -11.784794807434082 + ], + [ + "▁inspect", + -11.785033226013184 + ], + [ + "▁Fletcher", + -11.785100936889648 + ], + [ + "▁ministry", + -11.785101890563965 + ], + [ + "▁sealed", + -11.785140991210938 + ], + [ + "▁Azerbaijan", + -11.785483360290527 + ], + [ + "▁HV", + -11.785490989685059 + ], + [ + "▁melt", + -11.78554916381836 + ], + [ + "▁PM", + -11.785624504089355 + ], + [ + "▁Giant", + -11.785636901855469 + ], + [ + "▁Lodge", + -11.785958290100098 + ], + [ + "▁Hanna", + -11.78601360321045 + ], + [ + "▁workshop", + -11.786107063293457 + ], + [ + "▁Episode", + -11.786249160766602 + ], + [ + "▁Parachute", + -11.786249160766602 + ], + [ + "▁knife", + -11.786249160766602 + ], + [ + "▁inflicted", + -11.786352157592773 + ], + [ + "▁fol", + -11.786384582519531 + ], + [ + "tris", + -11.786407470703125 + ], + [ + "▁Gat", + -11.78641128540039 + ], + [ + "▁rituals", + -11.786582946777344 + ], + [ + "▁broadly", + -11.78670597076416 + ], + [ + "▁liter", + -11.786784172058105 + ], + [ + "▁Month", + -11.786982536315918 + ], + [ + "▁SO", + -11.787397384643555 + ], + [ + "▁Associate", + -11.787452697753906 + ], + [ + "–19", + -11.787595748901367 + ], + [ + "▁Coach", + -11.788032531738281 + ], + [ + "▁Edmonton", + -11.788165092468262 + ], + [ + "▁prescription", + -11.788256645202637 + ], + [ + "▁hammer", + -11.788269996643066 + ], + [ + "▁corporation", + -11.788287162780762 + ], + [ + "may", + -11.788398742675781 + ], + [ + "▁Birds", + -11.788628578186035 + ], + [ + "▁Randy", + -11.78873348236084 + ], + [ + "▁collectively", + -11.788766860961914 + ], + [ + "▁lymph", + -11.78891372680664 + ], + [ + "▁Observer", + -11.788932800292969 + ], + [ + "rrell", + -11.788954734802246 + ], + [ + "bour", + -11.78897476196289 + ], + [ + "▁′", + -11.789158821105957 + ], + [ + "▁temper", + -11.789363861083984 + ], + [ + "▁metallic", + -11.789414405822754 + ], + [ + "▁bal", + -11.789536476135254 + ], + [ + "emon", + -11.789576530456543 + ], + [ + "▁negatively", + -11.789684295654297 + ], + [ + "▁Merri", + -11.789737701416016 + ], + [ + "icular", + -11.789833068847656 + ], + [ + "▁Cord", + -11.78989315032959 + ], + [ + "▁scorer", + -11.790077209472656 + ], + [ + "▁stretched", + -11.790078163146973 + ], + [ + "н", + -11.790084838867188 + ], + [ + "umble", + -11.790114402770996 + ], + [ + "▁McCain", + -11.790136337280273 + ], + [ + "▁Airborne", + -11.790218353271484 + ], + [ + "▁funk", + -11.790220260620117 + ], + [ + "ulus", + -11.790426254272461 + ], + [ + "▁Ilinwa", + -11.790472030639648 + ], + [ + "▁Agent", + -11.790475845336914 + ], + [ + "rish", + -11.790477752685547 + ], + [ + "▁banner", + -11.790491104125977 + ], + [ + "▁feast", + -11.790567398071289 + ], + [ + "▁vitamins", + -11.79060173034668 + ], + [ + "▁differs", + -11.790681838989258 + ], + [ + "▁Cornell", + -11.790726661682129 + ], + [ + "▁inspire", + -11.79074478149414 + ], + [ + "▁programmes", + -11.79075813293457 + ], + [ + "▁incredibly", + -11.790854454040527 + ], + [ + "▁Eco", + -11.791184425354004 + ], + [ + "▁Paramount", + -11.791263580322266 + ], + [ + "ules", + -11.791271209716797 + ], + [ + "▁kicked", + -11.791288375854492 + ], + [ + "▁enclosed", + -11.791624069213867 + ], + [ + "▁Omaha", + -11.7916259765625 + ], + [ + "▁Libya", + -11.791764259338379 + ], + [ + "▁gravel", + -11.791909217834473 + ], + [ + "▁Title", + -11.791925430297852 + ], + [ + "▁nu", + -11.791946411132812 + ], + [ + "▁Mick", + -11.792032241821289 + ], + [ + "▁touched", + -11.792195320129395 + ], + [ + "▁Pilot", + -11.792201042175293 + ], + [ + "▁None", + -11.792683601379395 + ], + [ + "▁Rhodesia", + -11.79273796081543 + ], + [ + "▁Concern", + -11.7927827835083 + ], + [ + "▁Trump", + -11.792895317077637 + ], + [ + "wald", + -11.793155670166016 + ], + [ + "▁jungle", + -11.79316520690918 + ], + [ + "▁Kai", + -11.79323959350586 + ], + [ + "▁Ukraine", + -11.793550491333008 + ], + [ + "▁Covenant", + -11.793557167053223 + ], + [ + "#", + -11.793618202209473 + ], + [ + "▁curse", + -11.793624877929688 + ], + [ + "▁offence", + -11.793702125549316 + ], + [ + "FL", + -11.793721199035645 + ], + [ + "▁assured", + -11.793730735778809 + ], + [ + "NP", + -11.793889045715332 + ], + [ + "▁efficiently", + -11.79389762878418 + ], + [ + "▁rectangular", + -11.793936729431152 + ], + [ + "▁governance", + -11.7940034866333 + ], + [ + "▁proto", + -11.794144630432129 + ], + [ + "▁spider", + -11.794252395629883 + ], + [ + "▁flags", + -11.794342994689941 + ], + [ + "▁maxim", + -11.794519424438477 + ], + [ + "▁supposedly", + -11.79458999633789 + ], + [ + "▁Warwick", + -11.79468059539795 + ], + [ + "▁institute", + -11.794784545898438 + ], + [ + "▁practitioners", + -11.79494857788086 + ], + [ + "▁Mode", + -11.795014381408691 + ], + [ + "▁Astro", + -11.795019149780273 + ], + [ + "▁Gab", + -11.795029640197754 + ], + [ + "▁Casa", + -11.795084953308105 + ], + [ + "▁pedestrian", + -11.79509449005127 + ], + [ + "▁cooperative", + -11.795166015625 + ], + [ + "▁induce", + -11.795208930969238 + ], + [ + "▁nutritional", + -11.795248031616211 + ], + [ + "▁diminished", + -11.795272827148438 + ], + [ + "▁lightning", + -11.795342445373535 + ], + [ + "urg", + -11.795480728149414 + ], + [ + "▁stabilize", + -11.795485496520996 + ], + [ + "WR", + -11.795747756958008 + ], + [ + "train", + -11.795859336853027 + ], + [ + "▁ceremonial", + -11.795867919921875 + ], + [ + "BE", + -11.796113967895508 + ], + [ + "▁114", + -11.796415328979492 + ], + [ + "8.", + -11.796477317810059 + ], + [ + "▁persecution", + -11.796768188476562 + ], + [ + "▁Brandon", + -11.79678726196289 + ], + [ + "▁mound", + -11.796828269958496 + ], + [ + "▁ruin", + -11.797059059143066 + ], + [ + "▁instant", + -11.79710865020752 + ], + [ + "▁gradual", + -11.79711627960205 + ], + [ + "body", + -11.797327995300293 + ], + [ + "▁280", + -11.79735279083252 + ], + [ + "▁tick", + -11.79769229888916 + ], + [ + "▁Barn", + -11.797813415527344 + ], + [ + "▁Whig", + -11.797831535339355 + ], + [ + "ducing", + -11.797880172729492 + ], + [ + "▁Flames", + -11.797932624816895 + ], + [ + "▁Norton", + -11.798083305358887 + ], + [ + "▁TH", + -11.798097610473633 + ], + [ + "▁supplier", + -11.798198699951172 + ], + [ + "▁Koreans", + -11.79822063446045 + ], + [ + "▁Vita", + -11.798295974731445 + ], + [ + "▁lean", + -11.798357963562012 + ], + [ + "▁Prussian", + -11.79841423034668 + ], + [ + "▁evolve", + -11.798650741577148 + ], + [ + "▁dimension", + -11.798687934875488 + ], + [ + "▁unofficial", + -11.798965454101562 + ], + [ + "▁Prophet", + -11.798968315124512 + ], + [ + "▁pigeon", + -11.798979759216309 + ], + [ + "▁chambers", + -11.799092292785645 + ], + [ + "▁Limited", + -11.799177169799805 + ], + [ + "▁reviewing", + -11.799193382263184 + ], + [ + "▁JG", + -11.799347877502441 + ], + [ + "▁unpopular", + -11.79935359954834 + ], + [ + "▁farmland", + -11.799508094787598 + ], + [ + "▁hormones", + -11.799528121948242 + ], + [ + "▁northwestward", + -11.799592971801758 + ], + [ + "▁likewise", + -11.799777030944824 + ], + [ + "▁persisted", + -11.799844741821289 + ], + [ + "▁107", + -11.799848556518555 + ], + [ + "▁Scr", + -11.79985237121582 + ], + [ + "▁deny", + -11.800646781921387 + ], + [ + "▁jacket", + -11.800827026367188 + ], + [ + "▁duet", + -11.80106258392334 + ], + [ + "taking", + -11.801226615905762 + ], + [ + "▁Volunteer", + -11.801295280456543 + ], + [ + "▁tolerate", + -11.801345825195312 + ], + [ + "▁Booth", + -11.801513671875 + ], + [ + "▁260", + -11.80178451538086 + ], + [ + "▁1845", + -11.801856994628906 + ], + [ + "▁voluntary", + -11.80207347869873 + ], + [ + "▁Arc", + -11.802151679992676 + ], + [ + "▁humidity", + -11.802239418029785 + ], + [ + "▁IX", + -11.802250862121582 + ], + [ + "▁illnesses", + -11.80231761932373 + ], + [ + "▁puzzles", + -11.802438735961914 + ], + [ + "▁assassin", + -11.802440643310547 + ], + [ + "▁Productions", + -11.802457809448242 + ], + [ + "▁eliminating", + -11.802462577819824 + ], + [ + "▁Diane", + -11.802618026733398 + ], + [ + "anne", + -11.802717208862305 + ], + [ + "▁secretly", + -11.80278205871582 + ], + [ + "▁Cock", + -11.802847862243652 + ], + [ + "▁autonomous", + -11.802851676940918 + ], + [ + "▁newer", + -11.802888870239258 + ], + [ + "▁expressions", + -11.802967071533203 + ], + [ + "▁premise", + -11.802985191345215 + ], + [ + "mbling", + -11.802997589111328 + ], + [ + "▁Wings", + -11.803321838378906 + ], + [ + "▁Flash", + -11.803394317626953 + ], + [ + "ité", + -11.803502082824707 + ], + [ + "▁Betty", + -11.803637504577637 + ], + [ + "escu", + -11.803679466247559 + ], + [ + "▁dinosaur", + -11.80373477935791 + ], + [ + "▁bats", + -11.803853988647461 + ], + [ + "▁downward", + -11.804037094116211 + ], + [ + "▁spy", + -11.804125785827637 + ], + [ + "▁ethics", + -11.804409980773926 + ], + [ + "▁Robertson", + -11.804420471191406 + ], + [ + "hap", + -11.804580688476562 + ], + [ + "▁supplements", + -11.80469036102295 + ], + [ + "▁recognise", + -11.804882049560547 + ], + [ + "▁genetically", + -11.804962158203125 + ], + [ + "▁conquer", + -11.805203437805176 + ], + [ + "▁thorough", + -11.805286407470703 + ], + [ + "▁pressing", + -11.805314064025879 + ], + [ + "▁screened", + -11.805723190307617 + ], + [ + "▁launching", + -11.805817604064941 + ], + [ + "NR", + -11.806106567382812 + ], + [ + "▁Gibb", + -11.806230545043945 + ], + [ + "▁preview", + -11.806253433227539 + ], + [ + "ogenic", + -11.806344985961914 + ], + [ + "▁García", + -11.806361198425293 + ], + [ + "▁celebrity", + -11.806361198425293 + ], + [ + "▁premature", + -11.806361198425293 + ], + [ + "▁slaughter", + -11.80636215209961 + ], + [ + "hra", + -11.806562423706055 + ], + [ + "▁toys", + -11.806588172912598 + ], + [ + "▁Jessica", + -11.806768417358398 + ], + [ + "mani", + -11.80683708190918 + ], + [ + "▁Jorge", + -11.806877136230469 + ], + [ + "ovich", + -11.807024955749512 + ], + [ + "▁Sicily", + -11.807144165039062 + ], + [ + "▁Garfield", + -11.807175636291504 + ], + [ + "onne", + -11.807243347167969 + ], + [ + "▁Dub", + -11.807294845581055 + ], + [ + "▁blocking", + -11.807698249816895 + ], + [ + "▁conceptual", + -11.807836532592773 + ], + [ + "▁spawned", + -11.807836532592773 + ], + [ + "▁bri", + -11.808052062988281 + ], + [ + "izz", + -11.808279991149902 + ], + [ + "▁Ferrari", + -11.808317184448242 + ], + [ + "▁advancement", + -11.808389663696289 + ], + [ + "▁stir", + -11.80869197845459 + ], + [ + "IF", + -11.808716773986816 + ], + [ + "▁integrate", + -11.80879020690918 + ], + [ + "6.", + -11.808914184570312 + ], + [ + "UR", + -11.808953285217285 + ], + [ + "▁persist", + -11.809000968933105 + ], + [ + "▁gem", + -11.80900764465332 + ], + [ + "▁bred", + -11.809053421020508 + ], + [ + "▁guilt", + -11.80923843383789 + ], + [ + "▁afterward", + -11.809271812438965 + ], + [ + "▁banking", + -11.809332847595215 + ], + [ + "gress", + -11.809382438659668 + ], + [ + "ène", + -11.809429168701172 + ], + [ + "▁digest", + -11.809453964233398 + ], + [ + "▁Athenian", + -11.809493064880371 + ], + [ + "▁employer", + -11.809494972229004 + ], + [ + "▁Attack", + -11.809497833251953 + ], + [ + "▁Fine", + -11.809556007385254 + ], + [ + "▁echo", + -11.809675216674805 + ], + [ + "oire", + -11.809818267822266 + ], + [ + "▁Cran", + -11.809873580932617 + ], + [ + "▁accounted", + -11.809943199157715 + ], + [ + "▁Brun", + -11.810104370117188 + ], + [ + "▁Direction", + -11.81025218963623 + ], + [ + "▁Chau", + -11.810406684875488 + ], + [ + "▁joints", + -11.81061840057373 + ], + [ + "▁Andalouzi", + -11.8106689453125 + ], + [ + "▁Chal", + -11.810750007629395 + ], + [ + "▁Sei", + -11.810968399047852 + ], + [ + "▁Manor", + -11.811026573181152 + ], + [ + "▁citation", + -11.811094284057617 + ], + [ + "▁eternal", + -11.811463356018066 + ], + [ + "▁surf", + -11.81148910522461 + ], + [ + "▁Bailey", + -11.811563491821289 + ], + [ + "▁Aid", + -11.811677932739258 + ], + [ + "yi", + -11.81180191040039 + ], + [ + "▁warmer", + -11.811830520629883 + ], + [ + "pton", + -11.81191635131836 + ], + [ + "▁demonstrates", + -11.811995506286621 + ], + [ + "▁Bag", + -11.812249183654785 + ], + [ + "▁expelled", + -11.81226634979248 + ], + [ + "▁aligned", + -11.812509536743164 + ], + [ + "▁eleventh", + -11.812578201293945 + ], + [ + "▁Indigenous", + -11.81263256072998 + ], + [ + "▁contingent", + -11.81263256072998 + ], + [ + "▁denomination", + -11.81263256072998 + ], + [ + "ulf", + -11.8126802444458 + ], + [ + "▁Strike", + -11.812928199768066 + ], + [ + "▁tragedy", + -11.81302547454834 + ], + [ + "▁Kind", + -11.8132963180542 + ], + [ + "▁beside", + -11.81335163116455 + ], + [ + "▁Jennings", + -11.813421249389648 + ], + [ + "▁pipes", + -11.813554763793945 + ], + [ + "▁ensured", + -11.813592910766602 + ], + [ + "▁Gardner", + -11.813814163208008 + ], + [ + "▁perimeter", + -11.813819885253906 + ], + [ + "▁MO", + -11.813915252685547 + ], + [ + "▁luck", + -11.814030647277832 + ], + [ + "▁Gates", + -11.81405258178711 + ], + [ + "▁specially", + -11.814085006713867 + ], + [ + "▁defines", + -11.81413459777832 + ], + [ + "▁Lebanon", + -11.81420612335205 + ], + [ + "▁navigate", + -11.81420612335205 + ], + [ + "▁accessed", + -11.814239501953125 + ], + [ + "▁colonists", + -11.814313888549805 + ], + [ + "▁cheaper", + -11.814361572265625 + ], + [ + "▁Methodist", + -11.81450080871582 + ], + [ + "▁Yoshi", + -11.814613342285156 + ], + [ + "▁unstable", + -11.814615249633789 + ], + [ + "▁contra", + -11.814621925354004 + ], + [ + "▁fanm", + -11.814644813537598 + ], + [ + "including", + -11.814654350280762 + ], + [ + "▁Charter", + -11.814743041992188 + ], + [ + "▁revenues", + -11.814754486083984 + ], + [ + "nton", + -11.81533432006836 + ], + [ + "▁vaccines", + -11.81534194946289 + ], + [ + "▁unhappy", + -11.815388679504395 + ], + [ + "▁Lynn", + -11.815879821777344 + ], + [ + "▁rendering", + -11.815906524658203 + ], + [ + "▁1854", + -11.81594467163086 + ], + [ + "▁expose", + -11.815959930419922 + ], + [ + "▁spectacular", + -11.816177368164062 + ], + [ + "OW", + -11.816590309143066 + ], + [ + "▁Grim", + -11.816802024841309 + ], + [ + "▁Gardens", + -11.816825866699219 + ], + [ + "▁plutonium", + -11.81696605682373 + ], + [ + "▁charm", + -11.817154884338379 + ], + [ + "▁Wait", + -11.817195892333984 + ], + [ + "▁comparisons", + -11.81731128692627 + ], + [ + "▁Poor", + -11.817338943481445 + ], + [ + "▁Chad", + -11.81734561920166 + ], + [ + "▁Dana", + -11.817514419555664 + ], + [ + "▁Hung", + -11.81759262084961 + ], + [ + "▁riff", + -11.817615509033203 + ], + [ + "▁Kaz", + -11.817702293395996 + ], + [ + "▁Success", + -11.817756652832031 + ], + [ + "▁landslide", + -11.817758560180664 + ], + [ + "▁Iraqi", + -11.817774772644043 + ], + [ + "▁Vick", + -11.817829132080078 + ], + [ + "▁Superman", + -11.817880630493164 + ], + [ + "▁Dai", + -11.817903518676758 + ], + [ + "GS", + -11.817937850952148 + ], + [ + "▁pagan", + -11.817975997924805 + ], + [ + "▁butter", + -11.818033218383789 + ], + [ + "▁Brave", + -11.818083763122559 + ], + [ + "▁matching", + -11.818114280700684 + ], + [ + "eter", + -11.818161010742188 + ], + [ + "▁sap", + -11.818242073059082 + ], + [ + "▁eighteenth", + -11.81827163696289 + ], + [ + "weed", + -11.818316459655762 + ], + [ + "▁Aqua", + -11.818381309509277 + ], + [ + "▁bishops", + -11.818399429321289 + ], + [ + "▁discoveries", + -11.818431854248047 + ], + [ + "▁Wyoming", + -11.818547248840332 + ], + [ + "▁Congo", + -11.81861686706543 + ], + [ + "▁Miner", + -11.818660736083984 + ], + [ + "ografi", + -11.81872844696045 + ], + [ + "7.", + -11.818748474121094 + ], + [ + "illard", + -11.818942070007324 + ], + [ + "▁Tall", + -11.819107055664062 + ], + [ + "▁symptom", + -11.819149017333984 + ], + [ + "▁Lad", + -11.819217681884766 + ], + [ + "▁Rhodesian", + -11.819279670715332 + ], + [ + "▁counterattack", + -11.81933879852295 + ], + [ + "▁crude", + -11.819467544555664 + ], + [ + "▁mating", + -11.819737434387207 + ], + [ + "▁touching", + -11.81979751586914 + ], + [ + "oto", + -11.81982707977295 + ], + [ + "▁lateral", + -11.819911003112793 + ], + [ + "▁orbits", + -11.82052230834961 + ], + [ + "▁Southampton", + -11.820527076721191 + ], + [ + "▁PDF", + -11.820554733276367 + ], + [ + "▁Senators", + -11.820611953735352 + ], + [ + "▁beef", + -11.82082748413086 + ], + [ + "▁Behind", + -11.8209228515625 + ], + [ + "▁grams", + -11.821212768554688 + ], + [ + "▁SC", + -11.821405410766602 + ], + [ + "▁Gol", + -11.821412086486816 + ], + [ + "▁1812", + -11.821609497070312 + ], + [ + "ager", + -11.821737289428711 + ], + [ + "▁Effects", + -11.821768760681152 + ], + [ + "▁Lightning", + -11.822078704833984 + ], + [ + "lang", + -11.822091102600098 + ], + [ + "▁architects", + -11.82210636138916 + ], + [ + "▁Experience", + -11.822113037109375 + ], + [ + "▁thriller", + -11.82229232788086 + ], + [ + "century", + -11.822373390197754 + ], + [ + "▁Evolution", + -11.82241439819336 + ], + [ + "▁Nazis", + -11.822474479675293 + ], + [ + "burgh", + -11.822587966918945 + ], + [ + "▁admired", + -11.822691917419434 + ], + [ + "▁predecessors", + -11.822699546813965 + ], + [ + "▁seventeen", + -11.822710990905762 + ], + [ + "▁thy", + -11.822816848754883 + ], + [ + "▁Democrat", + -11.822844505310059 + ], + [ + "®", + -11.822907447814941 + ], + [ + "▁Lopez", + -11.822907447814941 + ], + [ + "▁neural", + -11.822962760925293 + ], + [ + "▁Era", + -11.823100090026855 + ], + [ + "▁individually", + -11.823304176330566 + ], + [ + "▁monsoon", + -11.823305130004883 + ], + [ + "▁gaps", + -11.82332706451416 + ], + [ + "▁miniature", + -11.823339462280273 + ], + [ + "▁Monica", + -11.82334041595459 + ], + [ + "▁descend", + -11.823498725891113 + ], + [ + "▁examining", + -11.823704719543457 + ], + [ + "▁helium", + -11.82371711730957 + ], + [ + "pdf", + -11.823739051818848 + ], + [ + "▁fog", + -11.824054718017578 + ], + [ + "▁Aside", + -11.824159622192383 + ], + [ + "▁sandstone", + -11.824249267578125 + ], + [ + "▁jar", + -11.824270248413086 + ], + [ + "▁Manila", + -11.824304580688477 + ], + [ + "opter", + -11.824539184570312 + ], + [ + "▁Gwen", + -11.824545860290527 + ], + [ + "jar", + -11.824581146240234 + ], + [ + "▁Ref", + -11.824650764465332 + ], + [ + "▁Ox", + -11.824707984924316 + ], + [ + "▁pun", + -11.824877738952637 + ], + [ + "▁LGBT", + -11.824895858764648 + ], + [ + "▁beverage", + -11.824898719787598 + ], + [ + "dorf", + -11.824949264526367 + ], + [ + "wide", + -11.825287818908691 + ], + [ + "▁spore", + -11.825372695922852 + ], + [ + "▁exotic", + -11.825393676757812 + ], + [ + "▁watches", + -11.82544231414795 + ], + [ + "▁Academic", + -11.825691223144531 + ], + [ + "▁Approximately", + -11.825691223144531 + ], + [ + "▁Patton", + -11.825719833374023 + ], + [ + "▁sen", + -11.82589340209961 + ], + [ + "▁cough", + -11.825907707214355 + ], + [ + "▁Serbs", + -11.825998306274414 + ], + [ + "▁var", + -11.826096534729004 + ], + [ + "▁printer", + -11.826369285583496 + ], + [ + "▁concluding", + -11.826546669006348 + ], + [ + "force", + -11.826574325561523 + ], + [ + "▁Recent", + -11.8265962600708 + ], + [ + "▁isotopes", + -11.827007293701172 + ], + [ + "▁Witch", + -11.827080726623535 + ], + [ + "▁Marion", + -11.827162742614746 + ], + [ + "▁twelfth", + -11.827285766601562 + ], + [ + "two", + -11.827406883239746 + ], + [ + "▁honors", + -11.827473640441895 + ], + [ + "▁prominence", + -11.827685356140137 + ], + [ + "▁Weber", + -11.828004837036133 + ], + [ + "Lo", + -11.828068733215332 + ], + [ + "▁unnamed", + -11.828084945678711 + ], + [ + "▁Crisis", + -11.828125 + ], + [ + "cultural", + -11.828344345092773 + ], + [ + "Mi", + -11.828910827636719 + ], + [ + "▁Poli", + -11.829010963439941 + ], + [ + "▁coll", + -11.829276084899902 + ], + [ + "▁Sussex", + -11.82928466796875 + ], + [ + "▁Wen", + -11.829331398010254 + ], + [ + "▁Mara", + -11.829543113708496 + ], + [ + "▁Abd", + -11.829550743103027 + ], + [ + "р", + -11.829682350158691 + ], + [ + "▁Egg", + -11.829939842224121 + ], + [ + "▁Distinguish", + -11.830082893371582 + ], + [ + "▁cultivation", + -11.830082893371582 + ], + [ + "▁Nag", + -11.830196380615234 + ], + [ + "▁deposited", + -11.830406188964844 + ], + [ + "▁Ah", + -11.830427169799805 + ], + [ + "▁Stefani", + -11.83043384552002 + ], + [ + "▁Evidence", + -11.830883026123047 + ], + [ + "cid", + -11.830958366394043 + ], + [ + "▁Perfect", + -11.830981254577637 + ], + [ + "▁hung", + -11.831037521362305 + ], + [ + "▁Animals", + -11.831157684326172 + ], + [ + "▁outward", + -11.831542015075684 + ], + [ + "▁unwilling", + -11.831685066223145 + ], + [ + "▁sparse", + -11.831814765930176 + ], + [ + "▁BA", + -11.831842422485352 + ], + [ + "▁baptism", + -11.832085609436035 + ], + [ + "▁chaos", + -11.832101821899414 + ], + [ + "phen", + -11.832249641418457 + ], + [ + "▁steering", + -11.832611083984375 + ], + [ + "▁justify", + -11.832624435424805 + ], + [ + "▁Durham", + -11.832629203796387 + ], + [ + "▁runners", + -11.832703590393066 + ], + [ + "▁Trial", + -11.832791328430176 + ], + [ + "▁Saw", + -11.833057403564453 + ], + [ + "cine", + -11.833088874816895 + ], + [ + "▁ally", + -11.833115577697754 + ], + [ + "▁pneumonia", + -11.833288192749023 + ], + [ + "▁shortened", + -11.83331298828125 + ], + [ + "▁Dio", + -11.833470344543457 + ], + [ + "▁lawn", + -11.83358097076416 + ], + [ + "carbon", + -11.833663940429688 + ], + [ + "▁recreation", + -11.83372688293457 + ], + [ + "▁prompt", + -11.83381462097168 + ], + [ + "How", + -11.834003448486328 + ], + [ + "chel", + -11.834003448486328 + ], + [ + "▁accord", + -11.834075927734375 + ], + [ + "▁critique", + -11.834104537963867 + ], + [ + "▁Create", + -11.834184646606445 + ], + [ + "pose", + -11.834267616271973 + ], + [ + "where", + -11.834280014038086 + ], + [ + "▁poets", + -11.83436107635498 + ], + [ + "▁Jain", + -11.83436393737793 + ], + [ + "▁Mona", + -11.834468841552734 + ], + [ + "▁refusal", + -11.834493637084961 + ], + [ + "▁delicate", + -11.834494590759277 + ], + [ + "▁astronomers", + -11.834633827209473 + ], + [ + "▁organizing", + -11.834689140319824 + ], + [ + "▁Morton", + -11.834771156311035 + ], + [ + "▁Own", + -11.834775924682617 + ], + [ + "▁neighbour", + -11.834929466247559 + ], + [ + "▁121", + -11.83503532409668 + ], + [ + "▁modification", + -11.835037231445312 + ], + [ + "▁teammates", + -11.835160255432129 + ], + [ + "▁Border", + -11.835262298583984 + ], + [ + "-9", + -11.835683822631836 + ], + [ + "▁meksiken", + -11.835700035095215 + ], + [ + "▁devised", + -11.835803985595703 + ], + [ + "▁guides", + -11.835823059082031 + ], + [ + "▁homage", + -11.835834503173828 + ], + [ + "yèl", + -11.835993766784668 + ], + [ + "tol", + -11.836071014404297 + ], + [ + "▁Bir", + -11.836125373840332 + ], + [ + "▁rode", + -11.83619213104248 + ], + [ + "▁Duck", + -11.836312294006348 + ], + [ + "▁presumably", + -11.836504936218262 + ], + [ + "▁Yard", + -11.836631774902344 + ], + [ + "system", + -11.83680534362793 + ], + [ + "▁Communications", + -11.836835861206055 + ], + [ + "▁Generally", + -11.836865425109863 + ], + [ + "▁Austen", + -11.836919784545898 + ], + [ + "▁Bolton", + -11.837120056152344 + ], + [ + "▁Spielberg", + -11.837309837341309 + ], + [ + "2,000", + -11.837361335754395 + ], + [ + "▁govern", + -11.837374687194824 + ], + [ + "▁numerical", + -11.837569236755371 + ], + [ + "mund", + -11.837717056274414 + ], + [ + "▁originate", + -11.837955474853516 + ], + [ + "▁ceramic", + -11.838116645812988 + ], + [ + "▁sensory", + -11.838119506835938 + ], + [ + "▁Whitney", + -11.838229179382324 + ], + [ + "▁Buddhism", + -11.838520050048828 + ], + [ + "▁Broadcasting", + -11.839010238647461 + ], + [ + "▁Bud", + -11.839201927185059 + ], + [ + "▁Clu", + -11.83922290802002 + ], + [ + "bili", + -11.839288711547852 + ], + [ + "▁devil", + -11.8392915725708 + ], + [ + "▁thyroid", + -11.839336395263672 + ], + [ + "▁Forbes", + -11.839478492736816 + ], + [ + "eurs", + -11.839519500732422 + ], + [ + "tou", + -11.839577674865723 + ], + [ + "▁Gale", + -11.83961296081543 + ], + [ + "▁Minogue", + -11.839731216430664 + ], + [ + "▁neighbors", + -11.839841842651367 + ], + [ + "▁Presley", + -11.839879989624023 + ], + [ + "▁processor", + -11.840083122253418 + ], + [ + "▁Naka", + -11.840185165405273 + ], + [ + "▁bags", + -11.840188026428223 + ], + [ + "▁Oka", + -11.84052562713623 + ], + [ + "▁idol", + -11.840545654296875 + ], + [ + "▁helicopters", + -11.840584754943848 + ], + [ + "▁vein", + -11.840712547302246 + ], + [ + "▁shooter", + -11.840855598449707 + ], + [ + "▁correlation", + -11.840943336486816 + ], + [ + "▁eccentric", + -11.840944290161133 + ], + [ + "▁Armed", + -11.841004371643066 + ], + [ + "▁Quinn", + -11.841041564941406 + ], + [ + "▁regulated", + -11.841139793395996 + ], + [ + "▁Rum", + -11.841158866882324 + ], + [ + "▁Gone", + -11.841691017150879 + ], + [ + "▁spirits", + -11.841692924499512 + ], + [ + "▁Bomb", + -11.841753005981445 + ], + [ + "▁celebrations", + -11.841931343078613 + ], + [ + "▁Phase", + -11.841994285583496 + ], + [ + "▁cheek", + -11.842303276062012 + ], + [ + "▁hosting", + -11.842305183410645 + ], + [ + "▁ions", + -11.842314720153809 + ], + [ + "▁similarity", + -11.842473983764648 + ], + [ + "▁refuse", + -11.84255313873291 + ], + [ + "▁emotionally", + -11.842608451843262 + ], + [ + "▁diagnose", + -11.842704772949219 + ], + [ + "▁Chance", + -11.842767715454102 + ], + [ + "▁profitable", + -11.8429594039917 + ], + [ + "mura", + -11.843080520629883 + ], + [ + "▁employers", + -11.843122482299805 + ], + [ + "▁Audi", + -11.843192100524902 + ], + [ + "▁Hannah", + -11.843307495117188 + ], + [ + "6)", + -11.843460083007812 + ], + [ + "▁femme", + -11.843803405761719 + ], + [ + "▁intervals", + -11.843819618225098 + ], + [ + "▁contestant", + -11.843948364257812 + ], + [ + "▁370", + -11.84395980834961 + ], + [ + "▁rumors", + -11.8440580368042 + ], + [ + "▁emit", + -11.844071388244629 + ], + [ + "rrh", + -11.844552040100098 + ], + [ + "pole", + -11.844554901123047 + ], + [ + "▁offset", + -11.844600677490234 + ], + [ + "▁Hun", + -11.84499740600586 + ], + [ + "inder", + -11.845142364501953 + ], + [ + "▁hostage", + -11.845174789428711 + ], + [ + "▁Artillery", + -11.845402717590332 + ], + [ + "▁glory", + -11.845474243164062 + ], + [ + "▁nurses", + -11.845728874206543 + ], + [ + "▁eclipse", + -11.845808982849121 + ], + [ + "▁monetary", + -11.845808982849121 + ], + [ + "section", + -11.845839500427246 + ], + [ + "▁crystals", + -11.845870971679688 + ], + [ + "cci", + -11.845974922180176 + ], + [ + "▁Lem", + -11.846024513244629 + ], + [ + "▁structured", + -11.84613037109375 + ], + [ + "▁ornament", + -11.846700668334961 + ], + [ + "▁Symptoms", + -11.847028732299805 + ], + [ + "▁Flo", + -11.847084999084473 + ], + [ + "oga", + -11.84717082977295 + ], + [ + "▁insights", + -11.847232818603516 + ], + [ + "▁Junction", + -11.847485542297363 + ], + [ + "▁Kemp", + -11.847613334655762 + ], + [ + "▁vine", + -11.847622871398926 + ], + [ + "▁Software", + -11.84785270690918 + ], + [ + "▁heel", + -11.848187446594238 + ], + [ + "▁Allan", + -11.848342895507812 + ], + [ + "▁MIT", + -11.848542213439941 + ], + [ + "cet", + -11.848689079284668 + ], + [ + "▁1858", + -11.84875202178955 + ], + [ + "▁boiler", + -11.848864555358887 + ], + [ + "▁Speaker", + -11.849039077758789 + ], + [ + "▁Complex", + -11.849093437194824 + ], + [ + "▁complaint", + -11.849316596984863 + ], + [ + "▁Venezuela", + -11.849472999572754 + ], + [ + "▁drunk", + -11.84947681427002 + ], + [ + "▁catalog", + -11.849787712097168 + ], + [ + "▁suburbs", + -11.84986400604248 + ], + [ + "▁threshold", + -11.849881172180176 + ], + [ + "▁Balkan", + -11.849966049194336 + ], + [ + "▁shoulders", + -11.850170135498047 + ], + [ + "diction", + -11.850244522094727 + ], + [ + "▁Slo", + -11.850418090820312 + ], + [ + "▁dissent", + -11.850431442260742 + ], + [ + "▁homosexual", + -11.850470542907715 + ], + [ + "▁Derek", + -11.850476264953613 + ], + [ + "▁tyre", + -11.850764274597168 + ], + [ + "▁rejection", + -11.85086441040039 + ], + [ + "2%", + -11.851078033447266 + ], + [ + "▁itilize", + -11.851113319396973 + ], + [ + "leur", + -11.851304054260254 + ], + [ + "owitz", + -11.851359367370605 + ], + [ + "▁Vie", + -11.851401329040527 + ], + [ + "prop", + -11.851414680480957 + ], + [ + "▁Hundred", + -11.851923942565918 + ], + [ + "▁Indo", + -11.85209846496582 + ], + [ + "▁nobody", + -11.85214614868164 + ], + [ + "▁storey", + -11.852155685424805 + ], + [ + "▁precious", + -11.852229118347168 + ], + [ + "▁guerrilla", + -11.852333068847656 + ], + [ + "▁supreme", + -11.852333068847656 + ], + [ + "▁Duch", + -11.852520942687988 + ], + [ + "▁denote", + -11.852546691894531 + ], + [ + "asi", + -11.852608680725098 + ], + [ + "▁stretching", + -11.852627754211426 + ], + [ + "▁Christine", + -11.85291576385498 + ], + [ + "▁exceptions", + -11.852971076965332 + ], + [ + "▁corners", + -11.853038787841797 + ], + [ + "▁Kenny", + -11.853056907653809 + ], + [ + "quality", + -11.853069305419922 + ], + [ + "▁immuno", + -11.853142738342285 + ], + [ + "ə", + -11.853151321411133 + ], + [ + "▁subsidiary", + -11.853151321411133 + ], + [ + "▁mandatory", + -11.85315227508545 + ], + [ + "▁consultation", + -11.853263854980469 + ], + [ + "▁Pascal", + -11.853266716003418 + ], + [ + "▁retrieve", + -11.853312492370605 + ], + [ + "▁morality", + -11.853507041931152 + ], + [ + "▁collar", + -11.853596687316895 + ], + [ + "▁Cardinal", + -11.853703498840332 + ], + [ + "▁desperate", + -11.853715896606445 + ], + [ + "git", + -11.853816986083984 + ], + [ + "▁repetitive", + -11.853970527648926 + ], + [ + "▁illustration", + -11.854090690612793 + ], + [ + "▁undertake", + -11.854228973388672 + ], + [ + "action", + -11.854252815246582 + ], + [ + "▁1849", + -11.854337692260742 + ], + [ + "▁Sanskrit", + -11.85438060760498 + ], + [ + "▁marker", + -11.854681015014648 + ], + [ + "▁checked", + -11.854729652404785 + ], + [ + "EG", + -11.854804992675781 + ], + [ + "▁refined", + -11.85481071472168 + ], + [ + "▁scroll", + -11.854828834533691 + ], + [ + "▁Ned", + -11.855035781860352 + ], + [ + "▁Cay", + -11.855193138122559 + ], + [ + "▁sosyete", + -11.85520076751709 + ], + [ + "▁plural", + -11.855237007141113 + ], + [ + "▁catalogue", + -11.855294227600098 + ], + [ + "iste", + -11.855315208435059 + ], + [ + "▁IT", + -11.855481147766113 + ], + [ + "▁Variety", + -11.855610847473145 + ], + [ + "▁ineffective", + -11.855690002441406 + ], + [ + "▁SN", + -11.855820655822754 + ], + [ + "▁terror", + -11.855875015258789 + ], + [ + "▁shocked", + -11.855941772460938 + ], + [ + "▁posting", + -11.856001853942871 + ], + [ + "▁conversations", + -11.856039047241211 + ], + [ + "▁execute", + -11.856185913085938 + ], + [ + "person", + -11.85632610321045 + ], + [ + "▁Question", + -11.856364250183105 + ], + [ + "▁veto", + -11.856371879577637 + ], + [ + "▁carb", + -11.856565475463867 + ], + [ + "▁Fellow", + -11.856842041015625 + ], + [ + "▁bail", + -11.856908798217773 + ], + [ + "▁doll", + -11.856950759887695 + ], + [ + "▁mor", + -11.857008934020996 + ], + [ + "▁targeting", + -11.857015609741211 + ], + [ + "▁depressed", + -11.85706615447998 + ], + [ + "▁crushed", + -11.857151985168457 + ], + [ + "▁editors", + -11.857176780700684 + ], + [ + "▁probable", + -11.857254981994629 + ], + [ + "▁Partisan", + -11.857255935668945 + ], + [ + "▁energetic", + -11.857260704040527 + ], + [ + "▁Pirates", + -11.857284545898438 + ], + [ + "▁Assessment", + -11.857336044311523 + ], + [ + "▁Bacon", + -11.857446670532227 + ], + [ + "▁CM", + -11.857511520385742 + ], + [ + "▁Bil", + -11.857560157775879 + ], + [ + "▁endemic", + -11.857572555541992 + ], + [ + "▁Vince", + -11.857603073120117 + ], + [ + "▁Pon", + -11.857614517211914 + ], + [ + "▁loses", + -11.857657432556152 + ], + [ + "▁therapeutic", + -11.857665061950684 + ], + [ + "▁Concord", + -11.857789039611816 + ], + [ + "▁merge", + -11.857837677001953 + ], + [ + "▁miners", + -11.8580904006958 + ], + [ + "▁welding", + -11.858207702636719 + ], + [ + "from", + -11.8585786819458 + ], + [ + "▁downstream", + -11.858677864074707 + ], + [ + "▁dams", + -11.85873794555664 + ], + [ + "▁quad", + -11.858803749084473 + ], + [ + "▁McN", + -11.85883617401123 + ], + [ + "▁Eighth", + -11.858870506286621 + ], + [ + "▁rein", + -11.85890007019043 + ], + [ + "▁Sr", + -11.858926773071289 + ], + [ + "▁komin", + -11.858939170837402 + ], + [ + "▁Wick", + -11.858951568603516 + ], + [ + "▁Guards", + -11.858988761901855 + ], + [ + "▁corporations", + -11.859180450439453 + ], + [ + "▁Anglican", + -11.8593111038208 + ], + [ + "▁packaging", + -11.859360694885254 + ], + [ + "▁Borough", + -11.859399795532227 + ], + [ + "▁flashback", + -11.859414100646973 + ], + [ + "▁Plus", + -11.859535217285156 + ], + [ + "fore", + -11.859609603881836 + ], + [ + "▁morale", + -11.859621047973633 + ], + [ + "fè", + -11.859660148620605 + ], + [ + "▁Salisbury", + -11.859724044799805 + ], + [ + "▁Hammond", + -11.859783172607422 + ], + [ + "▁washing", + -11.85981273651123 + ], + [ + "▁Allmusic", + -11.860136032104492 + ], + [ + "▁cavity", + -11.860136032104492 + ], + [ + "▁Alma", + -11.860715866088867 + ], + [ + "▁bur", + -11.86083698272705 + ], + [ + "▁Valentine", + -11.860912322998047 + ], + [ + "▁Interior", + -11.8609619140625 + ], + [ + "▁Understanding", + -11.861006736755371 + ], + [ + "7%", + -11.861096382141113 + ], + [ + "▁goat", + -11.861204147338867 + ], + [ + "heat", + -11.861270904541016 + ], + [ + "▁shipyard", + -11.861281394958496 + ], + [ + "▁Tankou", + -11.861445426940918 + ], + [ + "▁Mk", + -11.862048149108887 + ], + [ + "▁Halloween", + -11.862199783325195 + ], + [ + "ART", + -11.862296104431152 + ], + [ + "hau", + -11.862445831298828 + ], + [ + "▁definitions", + -11.862485885620117 + ], + [ + "òd", + -11.862518310546875 + ], + [ + "hid", + -11.86276912689209 + ], + [ + "1%", + -11.862852096557617 + ], + [ + "biotic", + -11.862934112548828 + ], + [ + "▁Mata", + -11.862997055053711 + ], + [ + "▁Beast", + -11.863009452819824 + ], + [ + "▁Recreation", + -11.863025665283203 + ], + [ + "figure", + -11.8630952835083 + ], + [ + "▁reproduce", + -11.863201141357422 + ], + [ + "▁Midland", + -11.863266944885254 + ], + [ + "▁Aboriginal", + -11.863439559936523 + ], + [ + "▁1,000", + -11.863709449768066 + ], + [ + "nin", + -11.863738059997559 + ], + [ + "▁notorious", + -11.86385726928711 + ], + [ + "▁Jew", + -11.863870620727539 + ], + [ + "▁filters", + -11.86393928527832 + ], + [ + "▁bump", + -11.864192962646484 + ], + [ + "▁cadet", + -11.864289283752441 + ], + [ + "▁vie", + -11.86434268951416 + ], + [ + "▁amor", + -11.864517211914062 + ], + [ + "opia", + -11.864659309387207 + ], + [ + "hri", + -11.864789962768555 + ], + [ + "▁CP", + -11.864818572998047 + ], + [ + "▁Brod", + -11.864874839782715 + ], + [ + "▁shelters", + -11.865272521972656 + ], + [ + "▁Ethiopia", + -11.865509986877441 + ], + [ + "▁robotic", + -11.865716934204102 + ], + [ + "frame", + -11.865843772888184 + ], + [ + "▁UV", + -11.86591911315918 + ], + [ + "▁gland", + -11.866063117980957 + ], + [ + "▁lineup", + -11.86609172821045 + ], + [ + "▁Wheel", + -11.866262435913086 + ], + [ + "ogn", + -11.866311073303223 + ], + [ + "▁Kro", + -11.866312026977539 + ], + [ + "▁expenditure", + -11.866339683532715 + ], + [ + "▁Pinar", + -11.866369247436523 + ], + [ + "▁rocky", + -11.866507530212402 + ], + [ + "lah", + -11.866676330566406 + ], + [ + "▁tragic", + -11.866775512695312 + ], + [ + "▁(3)", + -11.866848945617676 + ], + [ + "▁planetary", + -11.866861343383789 + ], + [ + "▁justified", + -11.866881370544434 + ], + [ + "▁Maple", + -11.867026329040527 + ], + [ + "▁viv", + -11.86705207824707 + ], + [ + "asco", + -11.867168426513672 + ], + [ + "▁Carte", + -11.867268562316895 + ], + [ + "▁conserve", + -11.867311477661133 + ], + [ + "▁clone", + -11.867362976074219 + ], + [ + "▁crowds", + -11.867432594299316 + ], + [ + "▁moderately", + -11.867700576782227 + ], + [ + "▁Scho", + -11.867711067199707 + ], + [ + "▁Burg", + -11.86776065826416 + ], + [ + "▁freshwater", + -11.867788314819336 + ], + [ + "▁beans", + -11.867844581604004 + ], + [ + "▁gradient", + -11.868000030517578 + ], + [ + "▁ordering", + -11.868047714233398 + ], + [ + "▁geological", + -11.86806583404541 + ], + [ + "▁kote", + -11.868077278137207 + ], + [ + "▁Scha", + -11.868145942687988 + ], + [ + "▁favoured", + -11.868236541748047 + ], + [ + "▁importantly", + -11.868247985839844 + ], + [ + "peri", + -11.868277549743652 + ], + [ + "▁Lois", + -11.868353843688965 + ], + [ + "▁Progress", + -11.868661880493164 + ], + [ + "▁fountain", + -11.868831634521484 + ], + [ + "▁donations", + -11.86901569366455 + ], + [ + "▁affiliate", + -11.869016647338867 + ], + [ + "▁1856", + -11.869120597839355 + ], + [ + "shan", + -11.869141578674316 + ], + [ + "▁barracks", + -11.869248390197754 + ], + [ + "▁wives", + -11.869267463684082 + ], + [ + "▁loving", + -11.869429588317871 + ], + [ + "nit", + -11.869460105895996 + ], + [ + "▁tankou", + -11.869897842407227 + ], + [ + "▁Xi", + -11.869942665100098 + ], + [ + "ž", + -11.87007999420166 + ], + [ + "▁crazy", + -11.870080947875977 + ], + [ + "RP", + -11.870365142822266 + ], + [ + "▁ideology", + -11.870497703552246 + ], + [ + "iller", + -11.870570182800293 + ], + [ + "kil", + -11.870725631713867 + ], + [ + "▁hectares", + -11.870768547058105 + ], + [ + "▁Mumbai", + -11.8709135055542 + ], + [ + "▁Turnpike", + -11.8709135055542 + ], + [ + "▁reddish", + -11.870914459228516 + ], + [ + "▁boarding", + -11.871050834655762 + ], + [ + "▁Lambert", + -11.87105941772461 + ], + [ + "▁desk", + -11.87127685546875 + ], + [ + "▁factions", + -11.871291160583496 + ], + [ + "▁contender", + -11.871443748474121 + ], + [ + "▁Nile", + -11.871514320373535 + ], + [ + "▁makers", + -11.871582984924316 + ], + [ + "▁contemporaries", + -11.871747016906738 + ], + [ + "▁Fruit", + -11.87175178527832 + ], + [ + "▁Elliott", + -11.871760368347168 + ], + [ + "reach", + -11.871858596801758 + ], + [ + "ör", + -11.872008323669434 + ], + [ + "▁receptor", + -11.872079849243164 + ], + [ + "▁Rugby", + -11.872163772583008 + ], + [ + "circ", + -11.87229061126709 + ], + [ + "▁synonym", + -11.87247085571289 + ], + [ + "▁economically", + -11.872694969177246 + ], + [ + "vey", + -11.872787475585938 + ], + [ + "▁forts", + -11.872802734375 + ], + [ + "▁Einstein", + -11.873000144958496 + ], + [ + "▁waterline", + -11.873115539550781 + ], + [ + "▁affiliated", + -11.87322998046875 + ], + [ + "▁trainer", + -11.87341594696045 + ], + [ + "idium", + -11.873418807983398 + ], + [ + "▁assuming", + -11.87344741821289 + ], + [ + "order", + -11.873556137084961 + ], + [ + "▁fiscal", + -11.87357234954834 + ], + [ + "▁devote", + -11.873612403869629 + ], + [ + "▁civic", + -11.873852729797363 + ], + [ + "▁Sig", + -11.873856544494629 + ], + [ + "▁bundle", + -11.873900413513184 + ], + [ + "▁marsh", + -11.873910903930664 + ], + [ + "▁mapping", + -11.87424373626709 + ], + [ + "▁prejudice", + -11.874252319335938 + ], + [ + "agged", + -11.874290466308594 + ], + [ + "layer", + -11.874369621276855 + ], + [ + "lion", + -11.874382019042969 + ], + [ + "▁Georg", + -11.874646186828613 + ], + [ + "▁Buenos", + -11.874672889709473 + ], + [ + "▁mandate", + -11.874754905700684 + ], + [ + "▁robots", + -11.875033378601074 + ], + [ + "▁Oz", + -11.875117301940918 + ], + [ + "▁sharply", + -11.875182151794434 + ], + [ + "▁Ave", + -11.875194549560547 + ], + [ + "ket", + -11.875393867492676 + ], + [ + "▁yoga", + -11.875425338745117 + ], + [ + "▁beetle", + -11.875632286071777 + ], + [ + "▁(9", + -11.875641822814941 + ], + [ + "▁CIA", + -11.8756742477417 + ], + [ + "▁Jazz", + -11.875712394714355 + ], + [ + "▁Hick", + -11.8757963180542 + ], + [ + "▁gad", + -11.875882148742676 + ], + [ + "▁adventures", + -11.876062393188477 + ], + [ + "▁disrupted", + -11.876105308532715 + ], + [ + "uga", + -11.876380920410156 + ], + [ + "▁satellites", + -11.87646484375 + ], + [ + "▁Erie", + -11.87662124633789 + ], + [ + "▁Ace", + -11.876715660095215 + ], + [ + "▁unrest", + -11.876720428466797 + ], + [ + "▁Exchange", + -11.876802444458008 + ], + [ + "▁pest", + -11.877086639404297 + ], + [ + "▁Structure", + -11.87718391418457 + ], + [ + "▁averaging", + -11.87718677520752 + ], + [ + "▁meanwhile", + -11.877204895019531 + ], + [ + "9.", + -11.877398490905762 + ], + [ + "▁Sharon", + -11.877409934997559 + ], + [ + "▁Ultimate", + -11.877434730529785 + ], + [ + "wear", + -11.877504348754883 + ], + [ + "▁Cost", + -11.877532958984375 + ], + [ + "▁gambling", + -11.877620697021484 + ], + [ + "BI", + -11.877718925476074 + ], + [ + "▁Everything", + -11.878031730651855 + ], + [ + "▁neglect", + -11.878058433532715 + ], + [ + "earn", + -11.878264427185059 + ], + [ + "”)", + -11.87828540802002 + ], + [ + "apa", + -11.878451347351074 + ], + [ + "ozo", + -11.87850284576416 + ], + [ + "▁AU", + -11.878511428833008 + ], + [ + "▁somehow", + -11.878698348999023 + ], + [ + "▁Adolf", + -11.878867149353027 + ], + [ + "watt", + -11.878918647766113 + ], + [ + "▁Newark", + -11.878985404968262 + ], + [ + "▁rendition", + -11.87928295135498 + ], + [ + "▁Evan", + -11.879355430603027 + ], + [ + "▁soup", + -11.87942886352539 + ], + [ + "▁Sche", + -11.879475593566895 + ], + [ + "kind", + -11.879501342773438 + ], + [ + "▁Sandy", + -11.879560470581055 + ], + [ + "▁goalkeeper", + -11.879855155944824 + ], + [ + "▁sometime", + -11.880256652832031 + ], + [ + "wò", + -11.88032054901123 + ], + [ + "▁horizon", + -11.880473136901855 + ], + [ + "▁geometry", + -11.880560874938965 + ], + [ + "edge", + -11.88089656829834 + ], + [ + "▁uncomfortable", + -11.880965232849121 + ], + [ + "▁Canberra", + -11.880966186523438 + ], + [ + "▁hunger", + -11.881339073181152 + ], + [ + "▁Sebastian", + -11.881386756896973 + ], + [ + "code", + -11.881732940673828 + ], + [ + "▁Danube", + -11.881808280944824 + ], + [ + "▁Lindwall", + -11.8818359375 + ], + [ + "tler", + -11.8818941116333 + ], + [ + "viv", + -11.881922721862793 + ], + [ + "▁Lesser", + -11.882112503051758 + ], + [ + "▁frequencies", + -11.88222885131836 + ], + [ + "▁Alonso", + -11.882230758666992 + ], + [ + "▁118", + -11.88224983215332 + ], + [ + "▁Wave", + -11.882473945617676 + ], + [ + "ories", + -11.882485389709473 + ], + [ + "▁rehabilitation", + -11.882650375366211 + ], + [ + "Go", + -11.882698059082031 + ], + [ + "▁innovations", + -11.882743835449219 + ], + [ + "▁maneuvers", + -11.882790565490723 + ], + [ + "▁Must", + -11.882988929748535 + ], + [ + "▁Banksia", + -11.883041381835938 + ], + [ + "WS", + -11.883137702941895 + ], + [ + "ι", + -11.88349437713623 + ], + [ + "▁Guadalcanal", + -11.88349437713623 + ], + [ + "▁biblical", + -11.88349437713623 + ], + [ + "▁AllMusic", + -11.883552551269531 + ], + [ + "▁Letter", + -11.883601188659668 + ], + [ + "▁pathway", + -11.883618354797363 + ], + [ + "▁guardian", + -11.883631706237793 + ], + [ + "zin", + -11.883663177490234 + ], + [ + "▁compliance", + -11.883916854858398 + ], + [ + "▁jealous", + -11.883916854858398 + ], + [ + "▁pè", + -11.883977890014648 + ], + [ + "▁TB", + -11.884082794189453 + ], + [ + "▁snakes", + -11.884177207946777 + ], + [ + "▁IC", + -11.884225845336914 + ], + [ + "cken", + -11.884353637695312 + ], + [ + "▁Shawn", + -11.884465217590332 + ], + [ + "▁Savage", + -11.88465404510498 + ], + [ + "▁Reid", + -11.884799003601074 + ], + [ + "▁restart", + -11.884931564331055 + ], + [ + "amo", + -11.884976387023926 + ], + [ + "▁reconcile", + -11.885184288024902 + ], + [ + "▁explores", + -11.885250091552734 + ], + [ + "▁Carbon", + -11.885441780090332 + ], + [ + "lift", + -11.885598182678223 + ], + [ + "▁equity", + -11.885607719421387 + ], + [ + "▁Teaching", + -11.885626792907715 + ], + [ + "▁pets", + -11.88564395904541 + ], + [ + "▁119", + -11.8858060836792 + ], + [ + "▁SpongeBob", + -11.886030197143555 + ], + [ + "En", + -11.88616943359375 + ], + [ + "▁Alamo", + -11.88620662689209 + ], + [ + "▁candle", + -11.886320114135742 + ], + [ + "▁ancestry", + -11.886452674865723 + ], + [ + "claim", + -11.88677978515625 + ], + [ + "▁(17", + -11.88681411743164 + ], + [ + "▁jen", + -11.886859893798828 + ], + [ + "▁aggression", + -11.886879920959473 + ], + [ + "▁ladder", + -11.886882781982422 + ], + [ + "▁Coalition", + -11.886894226074219 + ], + [ + "tori", + -11.887120246887207 + ], + [ + "▁Consul", + -11.887323379516602 + ], + [ + "▁Mich", + -11.887413024902344 + ], + [ + "▁delegate", + -11.88743782043457 + ], + [ + "▁GM", + -11.887632369995117 + ], + [ + "▁nerves", + -11.887685775756836 + ], + [ + "▁320", + -11.887689590454102 + ], + [ + "▁Om", + -11.887792587280273 + ], + [ + "equi", + -11.887866973876953 + ], + [ + "▁FC", + -11.887887001037598 + ], + [ + "▁Tat", + -11.888082504272461 + ], + [ + "▁Numerous", + -11.888147354125977 + ], + [ + "▁Genetic", + -11.88841724395752 + ], + [ + "chet", + -11.888508796691895 + ], + [ + "▁Workers", + -11.888583183288574 + ], + [ + "TF", + -11.888822555541992 + ], + [ + "▁intercepted", + -11.888999938964844 + ], + [ + "▁cheer", + -11.889274597167969 + ], + [ + "worthy", + -11.88934326171875 + ], + [ + "▁shifting", + -11.889487266540527 + ], + [ + "▁freshman", + -11.889540672302246 + ], + [ + "▁makeup", + -11.889554023742676 + ], + [ + "▁operas", + -11.88967514038086 + ], + [ + "▁monsters", + -11.889699935913086 + ], + [ + "▁1847", + -11.889753341674805 + ], + [ + "▁compost", + -11.889854431152344 + ], + [ + "▁rebuilding", + -11.889867782592773 + ], + [ + "▁teaches", + -11.889941215515137 + ], + [ + "▁guys", + -11.89013957977295 + ], + [ + "▁aliens", + -11.890153884887695 + ], + [ + "▁legendary", + -11.890219688415527 + ], + [ + "▁Copyright", + -11.890270233154297 + ], + [ + "▁autonomy", + -11.890270233154297 + ], + [ + "▁surname", + -11.890292167663574 + ], + [ + "▁amid", + -11.890522956848145 + ], + [ + "▁Cau", + -11.89052963256836 + ], + [ + "rap", + -11.891075134277344 + ], + [ + "▁picking", + -11.891119003295898 + ], + [ + "▁singular", + -11.891204833984375 + ], + [ + "vio", + -11.891242027282715 + ], + [ + "EX", + -11.891481399536133 + ], + [ + "▁calculations", + -11.891596794128418 + ], + [ + "▁debated", + -11.891608238220215 + ], + [ + "▁thrill", + -11.891777038574219 + ], + [ + "hydr", + -11.891829490661621 + ], + [ + "▁Griffith", + -11.89197063446045 + ], + [ + "▁vowel", + -11.892570495605469 + ], + [ + "▁Alternative", + -11.892600059509277 + ], + [ + "▁Hack", + -11.89271354675293 + ], + [ + "▁Espay", + -11.892892837524414 + ], + [ + "▁Willie", + -11.892936706542969 + ], + [ + "plex", + -11.893294334411621 + ], + [ + "▁Rhys", + -11.893311500549316 + ], + [ + "▁Few", + -11.893418312072754 + ], + [ + "▁Avon", + -11.893454551696777 + ], + [ + "enti", + -11.89355182647705 + ], + [ + "▁mills", + -11.893555641174316 + ], + [ + "four", + -11.893561363220215 + ], + [ + "▁boast", + -11.89375114440918 + ], + [ + "▁performer", + -11.894017219543457 + ], + [ + "▁exploitation", + -11.894107818603516 + ], + [ + "▁NOK", + -11.894216537475586 + ], + [ + "▁Prussia", + -11.894280433654785 + ], + [ + "▁coaster", + -11.894350051879883 + ], + [ + "▁mould", + -11.894585609436035 + ], + [ + "éri", + -11.894702911376953 + ], + [ + "▁oath", + -11.894837379455566 + ], + [ + "▁midst", + -11.895029067993164 + ], + [ + "▁tidal", + -11.89507007598877 + ], + [ + "▁glands", + -11.895134925842285 + ], + [ + "▁instinct", + -11.895428657531738 + ], + [ + "jè", + -11.895511627197266 + ], + [ + "written", + -11.895613670349121 + ], + [ + "▁Reference", + -11.895809173583984 + ], + [ + "▁observer", + -11.89587116241455 + ], + [ + "risk", + -11.89603328704834 + ], + [ + "▁bassist", + -11.896177291870117 + ], + [ + "▁FDA", + -11.896251678466797 + ], + [ + "▁safer", + -11.896265983581543 + ], + [ + "▁wolf", + -11.896265983581543 + ], + [ + "▁lament", + -11.89629077911377 + ], + [ + "▁songwriting", + -11.89653205871582 + ], + [ + "▁turbine", + -11.896550178527832 + ], + [ + "icide", + -11.89704418182373 + ], + [ + "▁Winchester", + -11.89709186553955 + ], + [ + "▁nonetheless", + -11.89709186553955 + ], + [ + "▁administer", + -11.897167205810547 + ], + [ + "▁Guest", + -11.897359848022461 + ], + [ + "author", + -11.897479057312012 + ], + [ + "▁jointly", + -11.897527694702148 + ], + [ + "▁penalties", + -11.897533416748047 + ], + [ + "azar", + -11.89762020111084 + ], + [ + "▁Pike", + -11.897826194763184 + ], + [ + "him", + -11.897847175598145 + ], + [ + "▁Von", + -11.89793872833252 + ], + [ + "▁Kingston", + -11.89834976196289 + ], + [ + "▁precaution", + -11.898375511169434 + ], + [ + "wee", + -11.898469924926758 + ], + [ + "▁containers", + -11.898603439331055 + ], + [ + "▁Dover", + -11.898618698120117 + ], + [ + "▁Yang", + -11.898683547973633 + ], + [ + "▁Quick", + -11.898727416992188 + ], + [ + "▁Pepper", + -11.898866653442383 + ], + [ + "▁Honey", + -11.898871421813965 + ], + [ + "berger", + -11.898874282836914 + ], + [ + "hat", + -11.898935317993164 + ], + [ + "▁Boyd", + -11.898950576782227 + ], + [ + "4%", + -11.899014472961426 + ], + [ + "▁relax", + -11.899025917053223 + ], + [ + "▁favourable", + -11.899209976196289 + ], + [ + "▁Observatory", + -11.899232864379883 + ], + [ + "▁admits", + -11.899530410766602 + ], + [ + "▁128", + -11.899592399597168 + ], + [ + "▁Plain", + -11.899654388427734 + ], + [ + "▁vacation", + -11.899699211120605 + ], + [ + "▁northbound", + -11.899797439575195 + ], + [ + "▁Á", + -11.899969100952148 + ], + [ + "▁letting", + -11.900078773498535 + ], + [ + "▁Biology", + -11.900126457214355 + ], + [ + "▁Wash", + -11.900287628173828 + ], + [ + "8%", + -11.900765419006348 + ], + [ + "▁defects", + -11.900821685791016 + ], + [ + "▁worksheet", + -11.900870323181152 + ], + [ + "▁overview", + -11.901123046875 + ], + [ + "▁skip", + -11.901251792907715 + ], + [ + "atè", + -11.901360511779785 + ], + [ + "rack", + -11.901538848876953 + ], + [ + "▁monitored", + -11.9015474319458 + ], + [ + "▁shipments", + -11.901579856872559 + ], + [ + "▁deliberate", + -11.901594161987305 + ], + [ + "▁Creative", + -11.90162181854248 + ], + [ + "▁dining", + -11.901732444763184 + ], + [ + "▁oxidation", + -11.901808738708496 + ], + [ + "▁spoil", + -11.901809692382812 + ], + [ + "▁blessing", + -11.901812553405762 + ], + [ + "▁Likewise", + -11.901864051818848 + ], + [ + "II", + -11.901869773864746 + ], + [ + "▁202", + -11.901905059814453 + ], + [ + "▁Underground", + -11.901912689208984 + ], + [ + "▁Mono", + -11.901981353759766 + ], + [ + "▁Mental", + -11.902084350585938 + ], + [ + "escent", + -11.902122497558594 + ], + [ + "▁Nuclear", + -11.902238845825195 + ], + [ + "▁Gram", + -11.902243614196777 + ], + [ + "▁discovering", + -11.902334213256836 + ], + [ + "▁rodent", + -11.902477264404297 + ], + [ + "▁Pho", + -11.90257453918457 + ], + [ + "▁businessman", + -11.902636528015137 + ], + [ + "Ha", + -11.902653694152832 + ], + [ + "▁Lenin", + -11.902666091918945 + ], + [ + "▁Lim", + -11.902695655822754 + ], + [ + "▁deity", + -11.90280818939209 + ], + [ + "▁encourages", + -11.902812004089355 + ], + [ + "▁thumb", + -11.903111457824707 + ], + [ + "isco", + -11.90322208404541 + ], + [ + "▁narrowly", + -11.903512001037598 + ], + [ + "▁supernatural", + -11.903568267822266 + ], + [ + "▁Wire", + -11.903606414794922 + ], + [ + "▁Webster", + -11.903749465942383 + ], + [ + "dden", + -11.903876304626465 + ], + [ + "witch", + -11.904054641723633 + ], + [ + "▁fen", + -11.904138565063477 + ], + [ + "▁visitor", + -11.904213905334473 + ], + [ + "▁Yan", + -11.904308319091797 + ], + [ + "▁demolition", + -11.904390335083008 + ], + [ + "▁550", + -11.904703140258789 + ], + [ + "▁landowner", + -11.904827117919922 + ], + [ + "▁punish", + -11.905108451843262 + ], + [ + "toxic", + -11.905122756958008 + ], + [ + "▁Bot", + -11.905538558959961 + ], + [ + "▁Winston", + -11.905596733093262 + ], + [ + "▁comply", + -11.905750274658203 + ], + [ + "▁pitching", + -11.90610408782959 + ], + [ + "ε", + -11.906115531921387 + ], + [ + "▁sleeve", + -11.906116485595703 + ], + [ + "▁soccer", + -11.906120300292969 + ], + [ + "▁ofisyèl", + -11.906121253967285 + ], + [ + "▁glow", + -11.9061918258667 + ], + [ + "▁Ashley", + -11.906220436096191 + ], + [ + "▁Bradford", + -11.90625 + ], + [ + "òn", + -11.90639591217041 + ], + [ + "enburg", + -11.906402587890625 + ], + [ + "▁Stern", + -11.906425476074219 + ], + [ + "mere", + -11.906562805175781 + ], + [ + "▁GA", + -11.906630516052246 + ], + [ + "▁Axis", + -11.906681060791016 + ], + [ + "▁Greenland", + -11.906712532043457 + ], + [ + "▁princess", + -11.9069185256958 + ], + [ + "▁Document", + -11.90697956085205 + ], + [ + "▁Thanks", + -11.907011985778809 + ], + [ + "▁Wong", + -11.907357215881348 + ], + [ + "▁umpire", + -11.9074125289917 + ], + [ + "▁Robot", + -11.907483100891113 + ], + [ + "▁WA", + -11.907506942749023 + ], + [ + "▁terrace", + -11.907564163208008 + ], + [ + "akh", + -11.907567024230957 + ], + [ + "▁advertisement", + -11.907655715942383 + ], + [ + "▁AT", + -11.9076566696167 + ], + [ + "▁Penguin", + -11.907844543457031 + ], + [ + "▁magn", + -11.90795612335205 + ], + [ + "▁characterised", + -11.908129692077637 + ], + [ + "▁osi", + -11.908199310302734 + ], + [ + "▁Pradesh", + -11.908276557922363 + ], + [ + "▁wrapped", + -11.90832233428955 + ], + [ + "Bo", + -11.908467292785645 + ], + [ + "▁1846", + -11.9086332321167 + ], + [ + "▁sounded", + -11.90868854522705 + ], + [ + "▁flour", + -11.908742904663086 + ], + [ + "▁Holly", + -11.90885066986084 + ], + [ + "fulness", + -11.90888786315918 + ], + [ + "▁depart", + -11.908926010131836 + ], + [ + "▁Brighton", + -11.908928871154785 + ], + [ + "▁instantly", + -11.909045219421387 + ], + [ + "▁Fly", + -11.909120559692383 + ], + [ + "▁Ming", + -11.909183502197266 + ], + [ + "▁anyway", + -11.909536361694336 + ], + [ + "▁Believe", + -11.909599304199219 + ], + [ + "▁dangers", + -11.909601211547852 + ], + [ + "second", + -11.909890174865723 + ], + [ + "▁correction", + -11.909932136535645 + ], + [ + "▁glider", + -11.910035133361816 + ], + [ + "▁gwoup", + -11.910038948059082 + ], + [ + "LS", + -11.910143852233887 + ], + [ + "▁evacuate", + -11.910264015197754 + ], + [ + "▁cottage", + -11.910444259643555 + ], + [ + "vier", + -11.910551071166992 + ], + [ + "▁Carlo", + -11.910551071166992 + ], + [ + "product", + -11.91060733795166 + ], + [ + "▁Ramon", + -11.910720825195312 + ], + [ + "▁Socialist", + -11.910749435424805 + ], + [ + "▁Hendrix", + -11.910876274108887 + ], + [ + "▁Rise", + -11.911190032958984 + ], + [ + "▁inventor", + -11.911375999450684 + ], + [ + "▁compassion", + -11.911391258239746 + ], + [ + "▁bug", + -11.91161823272705 + ], + [ + "▁gallons", + -11.911675453186035 + ], + [ + "▁disciple", + -11.911744117736816 + ], + [ + "▁vibration", + -11.911744117736816 + ], + [ + "▁OK", + -11.91183853149414 + ], + [ + "▁uncovered", + -11.911893844604492 + ], + [ + "▁glove", + -11.911986351013184 + ], + [ + "î", + -11.912178039550781 + ], + [ + "λ", + -11.912178039550781 + ], + [ + "▁catches", + -11.912535667419434 + ], + [ + "▁hack", + -11.91253662109375 + ], + [ + "Li", + -11.912550926208496 + ], + [ + "▁hazards", + -11.91268539428711 + ], + [ + "▁Duchess", + -11.912765502929688 + ], + [ + "▁vir", + -11.912827491760254 + ], + [ + "▁weaker", + -11.912829399108887 + ], + [ + "▁Comic", + -11.91288948059082 + ], + [ + "▁Greene", + -11.913056373596191 + ], + [ + "▁pigs", + -11.913130760192871 + ], + [ + "lva", + -11.91318416595459 + ], + [ + "iver", + -11.913257598876953 + ], + [ + "El", + -11.913269996643066 + ], + [ + "vre", + -11.913317680358887 + ], + [ + "▁coordinated", + -11.913355827331543 + ], + [ + "▁Tir", + -11.913448333740234 + ], + [ + "▁adhere", + -11.91356372833252 + ], + [ + "▁mushrooms", + -11.913851737976074 + ], + [ + "▁122", + -11.913902282714844 + ], + [ + "▁teenager", + -11.914012908935547 + ], + [ + "▁parasites", + -11.914037704467773 + ], + [ + "bourne", + -11.91403865814209 + ], + [ + "▁outlined", + -11.914266586303711 + ], + [ + "▁portraits", + -11.914281845092773 + ], + [ + "!”", + -11.914298057556152 + ], + [ + "▁vague", + -11.91445255279541 + ], + [ + "▁Stru", + -11.914529800415039 + ], + [ + "▁Organ", + -11.914773941040039 + ], + [ + "▁surplus", + -11.914787292480469 + ], + [ + "▁Account", + -11.914810180664062 + ], + [ + "▁SM", + -11.914861679077148 + ], + [ + "▁Amor", + -11.914941787719727 + ], + [ + "▁compose", + -11.914966583251953 + ], + [ + "▁Chin", + -11.914972305297852 + ], + [ + "▁switching", + -11.915349006652832 + ], + [ + "▁conventions", + -11.915513038635254 + ], + [ + "▁receptors", + -11.915541648864746 + ], + [ + "▁Jer", + -11.915566444396973 + ], + [ + "▁cheat", + -11.91562557220459 + ], + [ + "ا", + -11.915658950805664 + ], + [ + "▁aluminum", + -11.915658950805664 + ], + [ + "▁pronunciation", + -11.915658950805664 + ], + [ + "▁socially", + -11.91576862335205 + ], + [ + "vul", + -11.915872573852539 + ], + [ + "▁coincide", + -11.915911674499512 + ], + [ + "▁limb", + -11.915922164916992 + ], + [ + "▁bust", + -11.915993690490723 + ], + [ + "▁116", + -11.916155815124512 + ], + [ + "▁conscience", + -11.916199684143066 + ], + [ + "▁traders", + -11.916290283203125 + ], + [ + "▁Bend", + -11.916414260864258 + ], + [ + "▁inevitable", + -11.91653060913086 + ], + [ + "▁resemblance", + -11.91653060913086 + ], + [ + "iana", + -11.916553497314453 + ], + [ + "▁Drew", + -11.916671752929688 + ], + [ + "▁disagreed", + -11.916678428649902 + ], + [ + "▁yes", + -11.916878700256348 + ], + [ + "▁Depending", + -11.916966438293457 + ], + [ + "▁collaborative", + -11.916967391967773 + ], + [ + "▁Portsmouth", + -11.91696834564209 + ], + [ + "On", + -11.916985511779785 + ], + [ + "▁Fey", + -11.917019844055176 + ], + [ + "▁Interest", + -11.917040824890137 + ], + [ + "▁dispersed", + -11.917350769042969 + ], + [ + "▁illusion", + -11.917405128479004 + ], + [ + "▁template", + -11.917427062988281 + ], + [ + "▁123", + -11.917502403259277 + ], + [ + "▁lemur", + -11.917503356933594 + ], + [ + "oco", + -11.917506217956543 + ], + [ + "▁interval", + -11.917713165283203 + ], + [ + "lish", + -11.917813301086426 + ], + [ + "▁economist", + -11.917840003967285 + ], + [ + "▁striker", + -11.917987823486328 + ], + [ + "▁inherent", + -11.918087005615234 + ], + [ + "▁plumage", + -11.918157577514648 + ], + [ + "▁technically", + -11.918233871459961 + ], + [ + "▁curious", + -11.918380737304688 + ], + [ + "▁pesticides", + -11.918401718139648 + ], + [ + "▁Extra", + -11.918526649475098 + ], + [ + "▁modeling", + -11.918593406677246 + ], + [ + "▁Writers", + -11.918636322021484 + ], + [ + "▁algae", + -11.918717384338379 + ], + [ + "▁Chain", + -11.918730735778809 + ], + [ + "▁leaked", + -11.91927719116211 + ], + [ + "▁horns", + -11.91955852508545 + ], + [ + "▁animator", + -11.919612884521484 + ], + [ + "▁tense", + -11.919649124145508 + ], + [ + "▁330", + -11.919662475585938 + ], + [ + "pound", + -11.919734954833984 + ], + [ + "pir", + -11.91992473602295 + ], + [ + "▁implementing", + -11.91994571685791 + ], + [ + "▁dirty", + -11.919975280761719 + ], + [ + "▁1855", + -11.919987678527832 + ], + [ + "▁visually", + -11.920050621032715 + ], + [ + "▁hazardous", + -11.920138359069824 + ], + [ + "▁counterpart", + -11.920160293579102 + ], + [ + "▁proton", + -11.92027473449707 + ], + [ + "▁heroic", + -11.920392990112305 + ], + [ + "▁undergoing", + -11.920393943786621 + ], + [ + "▁Vale", + -11.920527458190918 + ], + [ + "▁millimetres", + -11.92057991027832 + ], + [ + "▁Cata", + -11.920621871948242 + ], + [ + "▁pod", + -11.920844078063965 + ], + [ + "▁fairy", + -11.920858383178711 + ], + [ + "▁Commodore", + -11.920902252197266 + ], + [ + "▁stump", + -11.920905113220215 + ], + [ + "▁adjusted", + -11.92093276977539 + ], + [ + "▁Rochester", + -11.920966148376465 + ], + [ + "▁Multiple", + -11.92101001739502 + ], + [ + "▁nasal", + -11.921036720275879 + ], + [ + "about", + -11.921147346496582 + ], + [ + "▁Kip", + -11.921244621276855 + ], + [ + "▁abdomen", + -11.921339988708496 + ], + [ + "▁rhyme", + -11.921340942382812 + ], + [ + "▁synthesizer", + -11.921432495117188 + ], + [ + "▁seated", + -11.921504020690918 + ], + [ + "▁sore", + -11.921564102172852 + ], + [ + "riz", + -11.921683311462402 + ], + [ + "▁affection", + -11.921684265136719 + ], + [ + "▁inappropriate", + -11.921741485595703 + ], + [ + "▁Lombard", + -11.921780586242676 + ], + [ + "▁Benedict", + -11.921791076660156 + ], + [ + "▁brood", + -11.921941757202148 + ], + [ + "fit", + -11.92196273803711 + ], + [ + "CU", + -11.9220609664917 + ], + [ + "▁Save", + -11.92207145690918 + ], + [ + "▁Destiny", + -11.92221736907959 + ], + [ + "▁extracted", + -11.9224271774292 + ], + [ + "▁Flow", + -11.92246150970459 + ], + [ + "▁Brother", + -11.92259693145752 + ], + [ + "▁Tran", + -11.92261791229248 + ], + [ + "▁luxury", + -11.922656059265137 + ], + [ + "▁practicing", + -11.922656059265137 + ], + [ + "▁Brunswick", + -11.922657012939453 + ], + [ + "▁generous", + -11.922728538513184 + ], + [ + "▁Brock", + -11.922759056091309 + ], + [ + "▁plat", + -11.922791481018066 + ], + [ + "will", + -11.922914505004883 + ], + [ + "▁Mori", + -11.923409461975098 + ], + [ + "▁traverse", + -11.92359447479248 + ], + [ + "▁Satan", + -11.923661231994629 + ], + [ + "▁Aires", + -11.923690795898438 + ], + [ + "▁discount", + -11.923741340637207 + ], + [ + "▁wax", + -11.923934936523438 + ], + [ + "▁Harmon", + -11.923982620239258 + ], + [ + "▁Barber", + -11.924018859863281 + ], + [ + "▁Crazy", + -11.92403507232666 + ], + [ + "▁fins", + -11.92421817779541 + ], + [ + "▁archbishop", + -11.924412727355957 + ], + [ + "▁Maz", + -11.924637794494629 + ], + [ + "▁Sophie", + -11.924854278564453 + ], + [ + "▁Virtual", + -11.924854278564453 + ], + [ + "▁entities", + -11.924858093261719 + ], + [ + "▁entrepreneur", + -11.925138473510742 + ], + [ + "xia", + -11.925180435180664 + ], + [ + "▁climax", + -11.92529296875 + ], + [ + "▁kilograms", + -11.92538833618164 + ], + [ + "course", + -11.925468444824219 + ], + [ + "▁advent", + -11.92572021484375 + ], + [ + "▁Presidential", + -11.926016807556152 + ], + [ + "▁plague", + -11.926016807556152 + ], + [ + "▁decommissioned", + -11.92616081237793 + ], + [ + "▁satisfaction", + -11.926173210144043 + ], + [ + "▁Orlando", + -11.92617416381836 + ], + [ + "▁yields", + -11.926246643066406 + ], + [ + "▁Linux", + -11.926265716552734 + ], + [ + "▁frontal", + -11.926362991333008 + ], + [ + "▁Zin", + -11.926486015319824 + ], + [ + "▁crab", + -11.926559448242188 + ], + [ + "▁superstructure", + -11.926651000976562 + ], + [ + "LM", + -11.926664352416992 + ], + [ + "▁Programme", + -11.926755905151367 + ], + [ + "▁pension", + -11.926755905151367 + ], + [ + "▁appealing", + -11.926765441894531 + ], + [ + "bow", + -11.927003860473633 + ], + [ + "▁Nikola", + -11.92712116241455 + ], + [ + "▁geometric", + -11.927512168884277 + ], + [ + "▁cooked", + -11.927631378173828 + ], + [ + "▁Regard", + -11.927881240844727 + ], + [ + "▁sandwich", + -11.927976608276367 + ], + [ + "▁CDC", + -11.928030967712402 + ], + [ + "▁Siege", + -11.928403854370117 + ], + [ + "▁reclaim", + -11.928412437438965 + ], + [ + "▁Million", + -11.928420066833496 + ], + [ + "mme", + -11.928454399108887 + ], + [ + "▁Hou", + -11.928462982177734 + ], + [ + "▁Dayton", + -11.928680419921875 + ], + [ + "▁Cover", + -11.928825378417969 + ], + [ + "ennial", + -11.928985595703125 + ], + [ + "▁remnant", + -11.929049491882324 + ], + [ + "▁initiate", + -11.929128646850586 + ], + [ + "▁rolled", + -11.92922592163086 + ], + [ + "▁Thirty", + -11.929261207580566 + ], + [ + "▁Tina", + -11.929275512695312 + ], + [ + "▁ATP", + -11.929412841796875 + ], + [ + "▁sued", + -11.929579734802246 + ], + [ + "▁financing", + -11.929702758789062 + ], + [ + "glyc", + -11.92971420288086 + ], + [ + "▁Commun", + -11.929946899414062 + ], + [ + "▁comme", + -11.930039405822754 + ], + [ + "▁Moreno", + -11.930078506469727 + ], + [ + "▁López", + -11.930145263671875 + ], + [ + "▁weighing", + -11.930315017700195 + ], + [ + "▁compatible", + -11.930587768554688 + ], + [ + "▁Bahamas", + -11.930603981018066 + ], + [ + "▁biologist", + -11.930623054504395 + ], + [ + "▁relies", + -11.93065071105957 + ], + [ + "▁Cant", + -11.93077278137207 + ], + [ + "▁statues", + -11.931209564208984 + ], + [ + "▁XIII", + -11.931236267089844 + ], + [ + "▁Parents", + -11.931305885314941 + ], + [ + "▁activate", + -11.931323051452637 + ], + [ + "▁poles", + -11.931389808654785 + ], + [ + "т", + -11.931471824645996 + ], + [ + "▁disagree", + -11.931538581848145 + ], + [ + "▁curtain", + -11.931565284729004 + ], + [ + "▁sparked", + -11.931648254394531 + ], + [ + "▁Roma", + -11.931684494018555 + ], + [ + "▁Doll", + -11.931753158569336 + ], + [ + "▁solved", + -11.931777000427246 + ], + [ + "▁Blaine", + -11.9318208694458 + ], + [ + "▁taxi", + -11.93195915222168 + ], + [ + "▁185", + -11.932156562805176 + ], + [ + "▁rust", + -11.93220329284668 + ], + [ + "vat", + -11.932289123535156 + ], + [ + "▁documentation", + -11.932435035705566 + ], + [ + "▁publishers", + -11.932458877563477 + ], + [ + "TER", + -11.932551383972168 + ], + [ + "pine", + -11.932573318481445 + ], + [ + "▁2022", + -11.93260383605957 + ], + [ + "▁ego", + -11.932950019836426 + ], + [ + "▁inventory", + -11.932976722717285 + ], + [ + "▁1853", + -11.93298625946045 + ], + [ + "▁1832", + -11.933216094970703 + ], + [ + "▁1500", + -11.933238983154297 + ], + [ + "▁Bé", + -11.933382987976074 + ], + [ + "▁EC", + -11.933492660522461 + ], + [ + "▁deteriorated", + -11.933510780334473 + ], + [ + "shima", + -11.933545112609863 + ], + [ + "▁Iranian", + -11.933577537536621 + ], + [ + "▁obligations", + -11.933589935302734 + ], + [ + "▁Hindi", + -11.933624267578125 + ], + [ + "▁retiring", + -11.933690071105957 + ], + [ + "▁overhaul", + -11.933700561523438 + ], + [ + "▁friction", + -11.933714866638184 + ], + [ + "▁unified", + -11.933754920959473 + ], + [ + "▁portrays", + -11.933774948120117 + ], + [ + "▁Letters", + -11.933877944946289 + ], + [ + "▁Classical", + -11.933900833129883 + ], + [ + "▁invade", + -11.934011459350586 + ], + [ + "▁elevator", + -11.93413257598877 + ], + [ + "▁presumed", + -11.934133529663086 + ], + [ + "▁possessions", + -11.93427562713623 + ], + [ + "▁Lot", + -11.934389114379883 + ], + [ + "▁Sport", + -11.934493064880371 + ], + [ + "▁glasses", + -11.934768676757812 + ], + [ + "▁globally", + -11.934847831726074 + ], + [ + "▁650", + -11.934910774230957 + ], + [ + "▁hemisphere", + -11.93502140045166 + ], + [ + "▁recovering", + -11.935194969177246 + ], + [ + "6%", + -11.935358047485352 + ], + [ + "high", + -11.935386657714844 + ], + [ + "▁Crash", + -11.935529708862305 + ], + [ + "▁Rican", + -11.935641288757324 + ], + [ + "▁Jenna", + -11.935779571533203 + ], + [ + "▁combines", + -11.935871124267578 + ], + [ + "▁Commercial", + -11.93591022491455 + ], + [ + "▁Literature", + -11.93591022491455 + ], + [ + "▁advocates", + -11.935912132263184 + ], + [ + "▁weld", + -11.935914993286133 + ], + [ + "▁SAS", + -11.936033248901367 + ], + [ + "▁spiders", + -11.936047554016113 + ], + [ + "▁Gould", + -11.936059951782227 + ], + [ + "▁Fiction", + -11.93606185913086 + ], + [ + "▁resting", + -11.936070442199707 + ], + [ + "▁Terri", + -11.9363431930542 + ], + [ + "▁electromagnetic", + -11.93636417388916 + ], + [ + "▁charging", + -11.936382293701172 + ], + [ + "▁constructing", + -11.936482429504395 + ], + [ + "▁supportive", + -11.93653392791748 + ], + [ + "▁distribute", + -11.936705589294434 + ], + [ + "▁applicable", + -11.936800003051758 + ], + [ + "▁shrink", + -11.936800003051758 + ], + [ + "▁Wade", + -11.936835289001465 + ], + [ + "▁Jamie", + -11.936963081359863 + ], + [ + "kka", + -11.937023162841797 + ], + [ + "▁mantle", + -11.937322616577148 + ], + [ + "▁molar", + -11.937384605407715 + ], + [ + "▁Statistics", + -11.938136100769043 + ], + [ + "aster", + -11.938241004943848 + ], + [ + "▁Wan", + -11.938507080078125 + ], + [ + "▁1852", + -11.938554763793945 + ], + [ + "с", + -11.938582420349121 + ], + [ + "▁infrared", + -11.938584327697754 + ], + [ + "▁pleasant", + -11.938586235046387 + ], + [ + "▁Mormon", + -11.93859577178955 + ], + [ + "▁equations", + -11.93861198425293 + ], + [ + "▁chill", + -11.938727378845215 + ], + [ + "▁centimetres", + -11.938787460327148 + ], + [ + "natal", + -11.938804626464844 + ], + [ + "▁Federer", + -11.9390287399292 + ], + [ + "RM", + -11.939216613769531 + ], + [ + "EV", + -11.9395112991333 + ], + [ + "▁plantation", + -11.939520835876465 + ], + [ + "▁(4", + -11.939584732055664 + ], + [ + "mou", + -11.939826965332031 + ], + [ + "▁Agricultural", + -11.939924240112305 + ], + [ + "▁Application", + -11.939937591552734 + ], + [ + "▁relegated", + -11.940367698669434 + ], + [ + "▁overhead", + -11.94056510925293 + ], + [ + "▁passionate", + -11.940674781799316 + ], + [ + "▁Falcon", + -11.940816879272461 + ], + [ + "▁Something", + -11.940876007080078 + ], + [ + "▁weird", + -11.940902709960938 + ], + [ + "▁persona", + -11.94091796875 + ], + [ + "▁comedian", + -11.941060066223145 + ], + [ + "plication", + -11.9410982131958 + ], + [ + "▁resonance", + -11.941262245178223 + ], + [ + "▁visibility", + -11.941264152526855 + ], + [ + "▁Wie", + -11.941722869873047 + ], + [ + "▁impairment", + -11.941895484924316 + ], + [ + "▁intervene", + -11.942039489746094 + ], + [ + "▁cantata", + -11.942181587219238 + ], + [ + "▁Pluto", + -11.942279815673828 + ], + [ + "▁predictions", + -11.942309379577637 + ], + [ + ")|", + -11.942485809326172 + ], + [ + "▁trumpet", + -11.942604064941406 + ], + [ + "▁grat", + -11.942606925964355 + ], + [ + "▁Root", + -11.942631721496582 + ], + [ + "▁fig", + -11.942642211914062 + ], + [ + "▁Afterwards", + -11.942687034606934 + ], + [ + "▁niche", + -11.942898750305176 + ], + [ + "▁sake", + -11.942900657653809 + ], + [ + "▁teenagers", + -11.942903518676758 + ], + [ + "▁Usually", + -11.9430513381958 + ], + [ + "udge", + -11.943071365356445 + ], + [ + "▁Isabel", + -11.943097114562988 + ], + [ + "stand", + -11.943178176879883 + ], + [ + "▁warrior", + -11.943187713623047 + ], + [ + "▁skiing", + -11.9433012008667 + ], + [ + "▁1776", + -11.943374633789062 + ], + [ + "graphic", + -11.94338321685791 + ], + [ + "cru", + -11.943527221679688 + ], + [ + "TP", + -11.943628311157227 + ], + [ + "▁freeze", + -11.94367504119873 + ], + [ + "▁Gore", + -11.943683624267578 + ], + [ + "▁exchanged", + -11.943921089172363 + ], + [ + "▁Cott", + -11.943938255310059 + ], + [ + "▁testified", + -11.944085121154785 + ], + [ + "cour", + -11.944258689880371 + ], + [ + "▁Reyalizatè", + -11.944396018981934 + ], + [ + "▁commended", + -11.944396018981934 + ], + [ + "▁Answer", + -11.944413185119629 + ], + [ + "▁gust", + -11.944483757019043 + ], + [ + "▁ré", + -11.944547653198242 + ], + [ + "▁Aircraft", + -11.944612503051758 + ], + [ + "beck", + -11.944620132446289 + ], + [ + "▁Carpenter", + -11.944845199584961 + ], + [ + "▁Immediately", + -11.944845199584961 + ], + [ + "▁intestine", + -11.944863319396973 + ], + [ + "▁concurrent", + -11.945189476013184 + ], + [ + "▁therapist", + -11.945225715637207 + ], + [ + "▁mizisyen", + -11.945293426513672 + ], + [ + "▁peripheral", + -11.945293426513672 + ], + [ + "abad", + -11.94532585144043 + ], + [ + "meric", + -11.945460319519043 + ], + [ + "solving", + -11.945490837097168 + ], + [ + "▁ballet", + -11.945555686950684 + ], + [ + "▁besides", + -11.945588111877441 + ], + [ + "sworth", + -11.94559383392334 + ], + [ + "▁meteor", + -11.945603370666504 + ], + [ + "▁overlooked", + -11.945779800415039 + ], + [ + "▁rotating", + -11.945930480957031 + ], + [ + "▁blank", + -11.946100234985352 + ], + [ + "pedia", + -11.946352005004883 + ], + [ + "▁surprisingly", + -11.946452140808105 + ], + [ + "▁markers", + -11.94650650024414 + ], + [ + "▁furnish", + -11.946646690368652 + ], + [ + "▁evoke", + -11.946649551391602 + ], + [ + "▁intentionally", + -11.946741104125977 + ], + [ + "▁morph", + -11.946870803833008 + ], + [ + "enstein", + -11.94690227508545 + ], + [ + "▁Hur", + -11.946989059448242 + ], + [ + "▁nou", + -11.947000503540039 + ], + [ + "▁totaled", + -11.947012901306152 + ], + [ + "▁southbound", + -11.94718074798584 + ], + [ + "▁inflammatory", + -11.947272300720215 + ], + [ + "Neill", + -11.947379112243652 + ], + [ + "jin", + -11.94743537902832 + ], + [ + "▁stanza", + -11.947543144226074 + ], + [ + "kara", + -11.947969436645508 + ], + [ + "▁fox", + -11.948283195495605 + ], + [ + "▁Edit", + -11.948290824890137 + ], + [ + "lean", + -11.94839859008789 + ], + [ + "▁fertility", + -11.948441505432129 + ], + [ + "oda", + -11.948569297790527 + ], + [ + "▁enjoyable", + -11.948625564575195 + ], + [ + "▁deleted", + -11.948713302612305 + ], + [ + "▁Donna", + -11.948729515075684 + ], + [ + "▁Jeanne", + -11.948847770690918 + ], + [ + "▁Sunderland", + -11.948891639709473 + ], + [ + "▁prestigious", + -11.948891639709473 + ], + [ + "▁Giro", + -11.949101448059082 + ], + [ + "▁Halifax", + -11.949341773986816 + ], + [ + "▁hygiene", + -11.949341773986816 + ], + [ + "▁Spo", + -11.949420928955078 + ], + [ + "▁Plains", + -11.94942569732666 + ], + [ + "static", + -11.949448585510254 + ], + [ + "▁bog", + -11.950201034545898 + ], + [ + "▁iPhone", + -11.950243949890137 + ], + [ + "rol", + -11.950359344482422 + ], + [ + "▁Carroll", + -11.950384140014648 + ], + [ + "▁Echo", + -11.950407981872559 + ], + [ + "▁educate", + -11.950571060180664 + ], + [ + "▁counting", + -11.950606346130371 + ], + [ + "▁Hyper", + -11.95076847076416 + ], + [ + "▁Verde", + -11.950784683227539 + ], + [ + "berries", + -11.950993537902832 + ], + [ + "▁cuisine", + -11.951147079467773 + ], + [ + "▁Belt", + -11.951268196105957 + ], + [ + "▁ruined", + -11.951294898986816 + ], + [ + "▁brave", + -11.951441764831543 + ], + [ + "▁satisfy", + -11.951493263244629 + ], + [ + "▁somebody", + -11.95196533203125 + ], + [ + "▁Evening", + -11.952004432678223 + ], + [ + "onym", + -11.952370643615723 + ], + [ + "▁RIAA", + -11.952502250671387 + ], + [ + "▁Conf", + -11.9525785446167 + ], + [ + "keeping", + -11.952606201171875 + ], + [ + "trib", + -11.952624320983887 + ], + [ + "▁advisory", + -11.952994346618652 + ], + [ + "▁hierarchy", + -11.953407287597656 + ], + [ + "▁Download", + -11.953495025634766 + ], + [ + "▁urging", + -11.953512191772461 + ], + [ + "group", + -11.95361614227295 + ], + [ + "▁sculptures", + -11.953781127929688 + ], + [ + "▁diplomat", + -11.95388126373291 + ], + [ + "enko", + -11.953947067260742 + ], + [ + "odont", + -11.954084396362305 + ], + [ + "▁refusing", + -11.954313278198242 + ], + [ + "▁Dow", + -11.954316139221191 + ], + [ + "▁pistol", + -11.954316139221191 + ], + [ + "▁overtime", + -11.954628944396973 + ], + [ + "empt", + -11.954684257507324 + ], + [ + "anto", + -11.955046653747559 + ], + [ + "▁Locke", + -11.95516300201416 + ], + [ + "spire", + -11.955215454101562 + ], + [ + "▁ESPN", + -11.955221176147461 + ], + [ + "tir", + -11.95527172088623 + ], + [ + "▁Cour", + -11.955429077148438 + ], + [ + "▁Dot", + -11.955460548400879 + ], + [ + "▁steer", + -11.955489158630371 + ], + [ + "source", + -11.955681800842285 + ], + [ + "▁fare", + -11.955804824829102 + ], + [ + "▁governmental", + -11.955915451049805 + ], + [ + "▁damp", + -11.955979347229004 + ], + [ + "▁penetrate", + -11.956008911132812 + ], + [ + "hua", + -11.95602798461914 + ], + [ + "▁censor", + -11.956507682800293 + ], + [ + "emp", + -11.956645965576172 + ], + [ + "▁underway", + -11.956648826599121 + ], + [ + "▁pollen", + -11.957178115844727 + ], + [ + "uter", + -11.95734691619873 + ], + [ + "raja", + -11.957473754882812 + ], + [ + "▁awkward", + -11.957489013671875 + ], + [ + "▁solitary", + -11.957489013671875 + ], + [ + "▁smash", + -11.957511901855469 + ], + [ + "▁Feature", + -11.957548141479492 + ], + [ + "wise", + -11.957562446594238 + ], + [ + "opo", + -11.957681655883789 + ], + [ + "▁gale", + -11.95771312713623 + ], + [ + "cient", + -11.957796096801758 + ], + [ + "MT", + -11.957923889160156 + ], + [ + "▁synagogue", + -11.957942962646484 + ], + [ + "▁132", + -11.958383560180664 + ], + [ + "▁superhero", + -11.958398818969727 + ], + [ + "▁Rafael", + -11.958399772644043 + ], + [ + "▁Cedar", + -11.958504676818848 + ], + [ + "▁font", + -11.958693504333496 + ], + [ + "green", + -11.958695411682129 + ], + [ + "▁degradation", + -11.958852767944336 + ], + [ + "▁plaza", + -11.958854675292969 + ], + [ + "▁inheritance", + -11.958908081054688 + ], + [ + "DC", + -11.958949089050293 + ], + [ + "▁mole", + -11.959717750549316 + ], + [ + "▁relijyon", + -11.959763526916504 + ], + [ + "▁wrist", + -11.959770202636719 + ], + [ + "▁Ode", + -11.959955215454102 + ], + [ + "gul", + -11.960132598876953 + ], + [ + "▁masterpiece", + -11.960317611694336 + ], + [ + "ark", + -11.960432052612305 + ], + [ + "VE", + -11.960617065429688 + ], + [ + "tree", + -11.960673332214355 + ], + [ + "▁Touch", + -11.960869789123535 + ], + [ + "▁Amar", + -11.960880279541016 + ], + [ + "dress", + -11.961136817932129 + ], + [ + "▁victorious", + -11.961145401000977 + ], + [ + "▁Geographic", + -11.961247444152832 + ], + [ + "▁Fresh", + -11.961292266845703 + ], + [ + "▁lining", + -11.961504936218262 + ], + [ + "ï", + -11.961525917053223 + ], + [ + "▁Producer", + -11.961587905883789 + ], + [ + "▁cock", + -11.96170711517334 + ], + [ + "suit", + -11.961715698242188 + ], + [ + "▁barge", + -11.961746215820312 + ], + [ + "▁backdrop", + -11.961834907531738 + ], + [ + "▁Lesson", + -11.961962699890137 + ], + [ + "rise", + -11.96198844909668 + ], + [ + "ctive", + -11.961989402770996 + ], + [ + "▁Webber", + -11.962003707885742 + ], + [ + "ilo", + -11.96203899383545 + ], + [ + "▁whip", + -11.96216869354248 + ], + [ + "▁Kali", + -11.96217155456543 + ], + [ + "hee", + -11.96225357055664 + ], + [ + "▁cancel", + -11.962584495544434 + ], + [ + "▁missionaries", + -11.96264934539795 + ], + [ + "▁Visit", + -11.962672233581543 + ], + [ + "▁moth", + -11.962738037109375 + ], + [ + "▁Teachers", + -11.962803840637207 + ], + [ + "hear", + -11.962865829467773 + ], + [ + "▁Fuller", + -11.962934494018555 + ], + [ + "▁Rutherford", + -11.962957382202148 + ], + [ + "▁accumulation", + -11.962957382202148 + ], + [ + "stad", + -11.96300220489502 + ], + [ + "Au", + -11.963081359863281 + ], + [ + "white", + -11.963113784790039 + ], + [ + "lund", + -11.96336841583252 + ], + [ + "▁Doktè", + -11.963516235351562 + ], + [ + "pod", + -11.963520050048828 + ], + [ + "oxin", + -11.963723182678223 + ], + [ + "▁updates", + -11.963984489440918 + ], + [ + "PT", + -11.963985443115234 + ], + [ + "phin", + -11.964113235473633 + ], + [ + "▁Troy", + -11.964158058166504 + ], + [ + "▁promptly", + -11.964179039001465 + ], + [ + "▁Wolverine", + -11.96432876586914 + ], + [ + "▁feather", + -11.96435832977295 + ], + [ + "▁pathways", + -11.964489936828613 + ], + [ + "▁seminar", + -11.964550018310547 + ], + [ + "▁Harbour", + -11.964632987976074 + ], + [ + "▁reunited", + -11.964773178100586 + ], + [ + "▁McMahon", + -11.964786529541016 + ], + [ + "▁constituent", + -11.964786529541016 + ], + [ + "▁magnesium", + -11.964786529541016 + ], + [ + "▁col", + -11.964792251586914 + ], + [ + "sexual", + -11.964838027954102 + ], + [ + "3)", + -11.964999198913574 + ], + [ + "▁Term", + -11.96500015258789 + ], + [ + "▁Hind", + -11.965228080749512 + ], + [ + "▁Beauty", + -11.965422630310059 + ], + [ + "▁Mod", + -11.96564769744873 + ], + [ + "▁geography", + -11.965713500976562 + ], + [ + "When", + -11.965864181518555 + ], + [ + "▁MW", + -11.965987205505371 + ], + [ + "▁urge", + -11.965991020202637 + ], + [ + "▁constituted", + -11.966129302978516 + ], + [ + "▁lizard", + -11.96616268157959 + ], + [ + "▁bathroom", + -11.96621036529541 + ], + [ + "▁Geneva", + -11.966229438781738 + ], + [ + "▁toxicity", + -11.96635627746582 + ], + [ + "▁Discovery", + -11.966444969177246 + ], + [ + "father", + -11.966446876525879 + ], + [ + "▁ple", + -11.966489791870117 + ], + [ + "▁^", + -11.966498374938965 + ], + [ + "▁Always", + -11.96658992767334 + ], + [ + "▁cone", + -11.966597557067871 + ], + [ + "▁bounce", + -11.966814041137695 + ], + [ + "▁Away", + -11.96699047088623 + ], + [ + "▁psychiatric", + -11.96707820892334 + ], + [ + "BL", + -11.96709156036377 + ], + [ + "aï", + -11.967129707336426 + ], + [ + "▁confession", + -11.967227935791016 + ], + [ + "▁spans", + -11.967324256896973 + ], + [ + "▁noir", + -11.967366218566895 + ], + [ + "▁Proto", + -11.967385292053223 + ], + [ + "▁semifinal", + -11.967536926269531 + ], + [ + "▁discarded", + -11.967538833618164 + ], + [ + "▁tumors", + -11.967569351196289 + ], + [ + "▁141", + -11.96796989440918 + ], + [ + "▁ADHD", + -11.967995643615723 + ], + [ + "▁Sudan", + -11.96800422668457 + ], + [ + "omer", + -11.96812915802002 + ], + [ + "▁postponed", + -11.968170166015625 + ], + [ + "▁Sergeant", + -11.968175888061523 + ], + [ + "▁drowned", + -11.968183517456055 + ], + [ + "▁manned", + -11.968445777893066 + ], + [ + "AG", + -11.96845531463623 + ], + [ + "▁Clinical", + -11.968608856201172 + ], + [ + "▁canvas", + -11.96887493133545 + ], + [ + "▁gills", + -11.968905448913574 + ], + [ + "▁Wizard", + -11.968914985656738 + ], + [ + "▁continuation", + -11.968914985656738 + ], + [ + "▁invisible", + -11.968917846679688 + ], + [ + "▁Nico", + -11.969001770019531 + ], + [ + "▁duct", + -11.969043731689453 + ], + [ + "▁hometown", + -11.969070434570312 + ], + [ + "▁fibers", + -11.96908950805664 + ], + [ + "▁mankind", + -11.969155311584473 + ], + [ + "▁humorous", + -11.969184875488281 + ], + [ + "▁Cope", + -11.969230651855469 + ], + [ + "▁Investigation", + -11.969374656677246 + ], + [ + "▁economies", + -11.969374656677246 + ], + [ + "▁issuing", + -11.969440460205078 + ], + [ + "chon", + -11.969658851623535 + ], + [ + "▁compression", + -11.969754219055176 + ], + [ + "▁Adriatic", + -11.969834327697754 + ], + [ + "▁1844", + -11.969871520996094 + ], + [ + "shaped", + -11.969928741455078 + ], + [ + "▁obey", + -11.970069885253906 + ], + [ + "▁skate", + -11.970130920410156 + ], + [ + "▁Humphrey", + -11.970294952392578 + ], + [ + "anger", + -11.970579147338867 + ], + [ + "▁Mam", + -11.970633506774902 + ], + [ + "▁Britney", + -11.970815658569336 + ], + [ + "▁considerations", + -11.970869064331055 + ], + [ + "Fi", + -11.97091293334961 + ], + [ + "▁Archives", + -11.970943450927734 + ], + [ + "pati", + -11.97095012664795 + ], + [ + "▁Custom", + -11.971222877502441 + ], + [ + "▁Stockholm", + -11.971224784851074 + ], + [ + "national", + -11.971246719360352 + ], + [ + "allow", + -11.971627235412598 + ], + [ + "▁caves", + -11.971636772155762 + ], + [ + "▁Holden", + -11.971704483032227 + ], + [ + "▁shy", + -11.971800804138184 + ], + [ + "▁Gunn", + -11.97212028503418 + ], + [ + "▁congressional", + -11.972146987915039 + ], + [ + "▁1837", + -11.972270011901855 + ], + [ + "▁jan", + -11.972293853759766 + ], + [ + "▁temperate", + -11.972299575805664 + ], + [ + "▁claw", + -11.972532272338867 + ], + [ + "▁algorithms", + -11.972606658935547 + ], + [ + "▁repeal", + -11.972609519958496 + ], + [ + "▁Pill", + -11.972612380981445 + ], + [ + "▁charting", + -11.972762107849121 + ], + [ + "▁basal", + -11.972993850708008 + ], + [ + "▁daylight", + -11.973027229309082 + ], + [ + "▁Indianapolis", + -11.973062515258789 + ], + [ + "▁cancellation", + -11.973077774047852 + ], + [ + "neur", + -11.973187446594238 + ], + [ + "▁practically", + -11.973219871520996 + ], + [ + "▁dash", + -11.97339153289795 + ], + [ + "▁Fuji", + -11.973498344421387 + ], + [ + "▁embassy", + -11.973522186279297 + ], + [ + "▁1836", + -11.973550796508789 + ], + [ + "▁upstream", + -11.973602294921875 + ], + [ + "▁Div", + -11.973745346069336 + ], + [ + "▁sect", + -11.973797798156738 + ], + [ + "▁hunter", + -11.973934173583984 + ], + [ + "inate", + -11.973983764648438 + ], + [ + "▁resembling", + -11.973983764648438 + ], + [ + "▁technician", + -11.973983764648438 + ], + [ + "▁Knox", + -11.974512100219727 + ], + [ + "▁acquiring", + -11.974908828735352 + ], + [ + "▁Gandhi", + -11.9749116897583 + ], + [ + "▁Nearly", + -11.975081443786621 + ], + [ + "large", + -11.975295066833496 + ], + [ + "▁Lions", + -11.975374221801758 + ], + [ + "ologic", + -11.975489616394043 + ], + [ + "▁diminish", + -11.97562026977539 + ], + [ + "▁Dad", + -11.975665092468262 + ], + [ + "▁divorced", + -11.975744247436523 + ], + [ + "▁Minneapolis", + -11.975833892822266 + ], + [ + "▁opener", + -11.97584342956543 + ], + [ + "▁analog", + -11.975846290588379 + ], + [ + "▁Castell", + -11.975977897644043 + ], + [ + "▁NME", + -11.976069450378418 + ], + [ + "▁grab", + -11.976114273071289 + ], + [ + "wit", + -11.976139068603516 + ], + [ + "▁forbidden", + -11.976761817932129 + ], + [ + "ović", + -11.977070808410645 + ], + [ + "▁Roland", + -11.977235794067383 + ], + [ + "▁rebuild", + -11.977250099182129 + ], + [ + "▁replicate", + -11.97730827331543 + ], + [ + "science", + -11.977356910705566 + ], + [ + "▁recalls", + -11.977518081665039 + ], + [ + "▁Nest", + -11.977636337280273 + ], + [ + "▁Lafayette", + -11.977686882019043 + ], + [ + "▁excitement", + -11.977686882019043 + ], + [ + "▁Dodgers", + -11.977775573730469 + ], + [ + "▁Bala", + -11.977903366088867 + ], + [ + "▁Dorothy", + -11.978150367736816 + ], + [ + "▁clad", + -11.978241920471191 + ], + [ + "▁Fight", + -11.978251457214355 + ], + [ + "▁Estate", + -11.978475570678711 + ], + [ + "▁Communication", + -11.978696823120117 + ], + [ + "▁listeners", + -11.978717803955078 + ], + [ + "▁Gamb", + -11.978933334350586 + ], + [ + "anj", + -11.979043006896973 + ], + [ + "▁desirable", + -11.979079246520996 + ], + [ + "▁Literary", + -11.979080200195312 + ], + [ + "▁pitit", + -11.979156494140625 + ], + [ + "▁carving", + -11.979286193847656 + ], + [ + "▁Dre", + -11.979325294494629 + ], + [ + "▁accusations", + -11.979480743408203 + ], + [ + "ør", + -11.97962760925293 + ], + [ + "▁oz", + -11.979799270629883 + ], + [ + "▁Extension", + -11.980033874511719 + ], + [ + "▁±", + -11.98023509979248 + ], + [ + "▁advertisements", + -11.980320930480957 + ], + [ + "▁Employ", + -11.980472564697266 + ], + [ + "▁IUCN", + -11.980473518371582 + ], + [ + "▁Hampton", + -11.980502128601074 + ], + [ + "▁Archer", + -11.980707168579102 + ], + [ + "▁pasture", + -11.980768203735352 + ], + [ + "▁Wesley", + -11.980772972106934 + ], + [ + "▁Chesapeake", + -11.980937957763672 + ], + [ + "▁salvage", + -11.980941772460938 + ], + [ + "▁Myth", + -11.98101806640625 + ], + [ + "max", + -11.981229782104492 + ], + [ + "generation", + -11.98125171661377 + ], + [ + "▁incorrect", + -11.98172664642334 + ], + [ + "▁rage", + -11.981812477111816 + ], + [ + "▁culminated", + -11.981822967529297 + ], + [ + "▁reliability", + -11.981868743896484 + ], + [ + "ggy", + -11.981887817382812 + ], + [ + "▁polymer", + -11.981941223144531 + ], + [ + "ledge", + -11.981974601745605 + ], + [ + "▁odor", + -11.982417106628418 + ], + [ + "pathy", + -11.982553482055664 + ], + [ + "▁AN", + -11.982643127441406 + ], + [ + "▁northeastward", + -11.982645988464355 + ], + [ + "▁Julius", + -11.982800483703613 + ], + [ + "▁straightforward", + -11.982800483703613 + ], + [ + "▁excluding", + -11.982848167419434 + ], + [ + "agno", + -11.982956886291504 + ], + [ + "▁deities", + -11.983033180236816 + ], + [ + "▁crusade", + -11.983269691467285 + ], + [ + "▁companions", + -11.983274459838867 + ], + [ + "▁Bess", + -11.983359336853027 + ], + [ + "▁Brig", + -11.983509063720703 + ], + [ + "▁Maybe", + -11.983614921569824 + ], + [ + "▁frigates", + -11.983687400817871 + ], + [ + "▁UC", + -11.983710289001465 + ], + [ + "▁chloride", + -11.983734130859375 + ], + [ + "▁potent", + -11.983885765075684 + ], + [ + "▁asset", + -11.9839448928833 + ], + [ + "▁stain", + -11.98397445678711 + ], + [ + "▁Grass", + -11.984162330627441 + ], + [ + "▁disastrous", + -11.984200477600098 + ], + [ + "▁stellar", + -11.984200477600098 + ], + [ + "inae", + -11.984214782714844 + ], + [ + "▁excuse", + -11.984251022338867 + ], + [ + "▁Ivy", + -11.984289169311523 + ], + [ + "CM", + -11.984560012817383 + ], + [ + "▁hunters", + -11.984601020812988 + ], + [ + "▁apologize", + -11.984668731689453 + ], + [ + "▁instability", + -11.984703063964844 + ], + [ + "▁1790", + -11.98475456237793 + ], + [ + "▁stall", + -11.984764099121094 + ], + [ + "▁Across", + -11.984857559204102 + ], + [ + "▁tornadoes", + -11.984885215759277 + ], + [ + "▁mountainous", + -11.984930038452148 + ], + [ + "▁Jackie", + -11.984993934631348 + ], + [ + "▁Guam", + -11.985032081604004 + ], + [ + "▁questioning", + -11.985123634338379 + ], + [ + "▁transparent", + -11.985156059265137 + ], + [ + "▁Tampa", + -11.985241889953613 + ], + [ + "▁tailed", + -11.985296249389648 + ], + [ + "DL", + -11.985597610473633 + ], + [ + "▁amounted", + -11.98598861694336 + ], + [ + "▁trilogy", + -11.9861478805542 + ], + [ + "genic", + -11.986211776733398 + ], + [ + "ih", + -11.98625373840332 + ], + [ + "nomic", + -11.986437797546387 + ], + [ + "▁butterfly", + -11.986544609069824 + ], + [ + "race", + -11.986658096313477 + ], + [ + "▁Timberlake", + -11.987004280090332 + ], + [ + "▁Scouting", + -11.987197875976562 + ], + [ + "▁glaciers", + -11.987260818481445 + ], + [ + "▁stranger", + -11.987357139587402 + ], + [ + "mph", + -11.987504959106445 + ], + [ + "▁sparrow", + -11.987547874450684 + ], + [ + "▁paired", + -11.98803997039795 + ], + [ + "▁Divine", + -11.98811149597168 + ], + [ + "▁mutation", + -11.988348960876465 + ], + [ + "▁devastated", + -11.988409996032715 + ], + [ + "ête", + -11.988516807556152 + ], + [ + "▁capsule", + -11.988578796386719 + ], + [ + "▁sè", + -11.988863945007324 + ], + [ + "▁transmit", + -11.988889694213867 + ], + [ + "▁Disorder", + -11.988931655883789 + ], + [ + "▁neighbor", + -11.98918342590332 + ], + [ + "▁mounting", + -11.989263534545898 + ], + [ + "▁decorative", + -11.989347457885742 + ], + [ + "natural", + -11.989633560180664 + ], + [ + "▁Fitz", + -11.989664077758789 + ], + [ + "▁Rebecca", + -11.989816665649414 + ], + [ + "▁Vladimir", + -11.989816665649414 + ], + [ + "▁equilibrium", + -11.989816665649414 + ], + [ + "▁psychologist", + -11.989834785461426 + ], + [ + "▁sounding", + -11.990209579467773 + ], + [ + "▁Middlesex", + -11.990296363830566 + ], + [ + "▁talented", + -11.99035358428955 + ], + [ + "▁SI", + -11.990561485290527 + ], + [ + "atur", + -11.990667343139648 + ], + [ + "▁workshops", + -11.99067211151123 + ], + [ + "▁coined", + -11.990699768066406 + ], + [ + "▁humanitarian", + -11.990756034851074 + ], + [ + "▁milestone", + -11.990825653076172 + ], + [ + "▁tit", + -11.990973472595215 + ], + [ + "▁Turk", + -11.991093635559082 + ], + [ + "▁Scale", + -11.991129875183105 + ], + [ + "▁Lauren", + -11.991166114807129 + ], + [ + "▁NO", + -11.991321563720703 + ], + [ + "▁Pond", + -11.991501808166504 + ], + [ + "ija", + -11.991774559020996 + ], + [ + "▁organise", + -11.991820335388184 + ], + [ + "▁oval", + -11.991832733154297 + ], + [ + "hana", + -11.991938591003418 + ], + [ + "chlor", + -11.992169380187988 + ], + [ + "▁Louisville", + -11.992323875427246 + ], + [ + "▁metro", + -11.992925643920898 + ], + [ + "▁Gaelic", + -11.993108749389648 + ], + [ + "▁Higher", + -11.99317741394043 + ], + [ + "olin", + -11.993321418762207 + ], + [ + "▁Questions", + -11.993422508239746 + ], + [ + "▁1⁄2", + -11.993578910827637 + ], + [ + "jur", + -11.993794441223145 + ], + [ + "▁burnt", + -11.993794441223145 + ], + [ + "▁void", + -11.993928909301758 + ], + [ + "▁Gai", + -11.994032859802246 + ], + [ + "▁skirmish", + -11.994050979614258 + ], + [ + "zzy", + -11.994478225708008 + ], + [ + "▁audit", + -11.99452018737793 + ], + [ + "▁partisan", + -11.994536399841309 + ], + [ + "▁Alberto", + -11.994672775268555 + ], + [ + "▁Hyde", + -11.994977951049805 + ], + [ + "▁Journey", + -11.994993209838867 + ], + [ + "▁Legal", + -11.995165824890137 + ], + [ + "▁casual", + -11.99532699584961 + ], + [ + "▁militant", + -11.995344161987305 + ], + [ + "▁Herman", + -11.995421409606934 + ], + [ + "▁Leopold", + -11.995465278625488 + ], + [ + "▁confusing", + -11.995465278625488 + ], + [ + "▁Sanders", + -11.995599746704102 + ], + [ + "né", + -11.995647430419922 + ], + [ + "▁Kle", + -11.995695114135742 + ], + [ + "▁sketches", + -11.995818138122559 + ], + [ + "nett", + -11.995895385742188 + ], + [ + "▁Rita", + -11.995923042297363 + ], + [ + "▁Thank", + -11.995985984802246 + ], + [ + "▁Bronze", + -11.995987892150879 + ], + [ + "LL", + -11.996020317077637 + ], + [ + "▁impose", + -11.996109008789062 + ], + [ + "▁unrelated", + -11.996161460876465 + ], + [ + "▁Messi", + -11.996288299560547 + ], + [ + "▁thunderstorms", + -11.996489524841309 + ], + [ + "▁manifestation", + -11.996768951416016 + ], + [ + "▁slate", + -11.996850967407227 + ], + [ + "▁Gazette", + -11.996882438659668 + ], + [ + "▁televised", + -11.996882438659668 + ], + [ + "▁bullying", + -11.9968900680542 + ], + [ + "▁precedent", + -11.99689769744873 + ], + [ + "DE", + -11.996969223022461 + ], + [ + "▁programmer", + -11.996976852416992 + ], + [ + "▁abdominal", + -11.997355461120605 + ], + [ + "▁Rig", + -11.997401237487793 + ], + [ + "▁basket", + -11.997814178466797 + ], + [ + "▁Ear", + -11.997848510742188 + ], + [ + "▁Matanzas", + -11.99830150604248 + ], + [ + "èv", + -11.998336791992188 + ], + [ + "▁humour", + -11.998370170593262 + ], + [ + "▁emblem", + -11.998466491699219 + ], + [ + "▁Compton", + -11.99868106842041 + ], + [ + "▁inscriptions", + -11.998970985412598 + ], + [ + "▁ACC", + -11.99905776977539 + ], + [ + "▁glad", + -11.99905776977539 + ], + [ + "▁née", + -11.999261856079102 + ], + [ + "▁Rivera", + -11.999342918395996 + ], + [ + "ð", + -11.999423027038574 + ], + [ + "▁portraying", + -11.999519348144531 + ], + [ + "▁bou", + -11.999542236328125 + ], + [ + "▁crossover", + -11.999584197998047 + ], + [ + "▁rig", + -11.999698638916016 + ], + [ + "▁climbed", + -11.999726295471191 + ], + [ + "▁grassland", + -12.000066757202148 + ], + [ + "▁immigrant", + -12.000324249267578 + ], + [ + "▁dependence", + -12.000382423400879 + ], + [ + "▁excavated", + -12.000480651855469 + ], + [ + "comb", + -12.000597953796387 + ], + [ + "▁Amsterdam", + -12.00067138671875 + ], + [ + "▁breathe", + -12.000739097595215 + ], + [ + "▁courtyard", + -12.000859260559082 + ], + [ + "▁institutional", + -12.000950813293457 + ], + [ + "▁Zimbabwe", + -12.001145362854004 + ], + [ + "▁comprise", + -12.001269340515137 + ], + [ + "▁congress", + -12.00127124786377 + ], + [ + "▁broadcasting", + -12.001314163208008 + ], + [ + "1/", + -12.001337051391602 + ], + [ + "▁photon", + -12.001424789428711 + ], + [ + "▁iPad", + -12.001620292663574 + ], + [ + "▁cycling", + -12.001653671264648 + ], + [ + "▁pupil", + -12.001810073852539 + ], + [ + "Un", + -12.00238037109375 + ], + [ + "baum", + -12.002405166625977 + ], + [ + "▁trench", + -12.00243091583252 + ], + [ + "▁stealing", + -12.002497673034668 + ], + [ + "▁teknoloji", + -12.002571105957031 + ], + [ + "▁restoring", + -12.00258731842041 + ], + [ + "▁Silva", + -12.002762794494629 + ], + [ + "▁edible", + -12.002785682678223 + ], + [ + "▁Yar", + -12.002904891967773 + ], + [ + "▁Meg", + -12.003000259399414 + ], + [ + "▁CI", + -12.003073692321777 + ], + [ + "▁minorities", + -12.003096580505371 + ], + [ + "▁enlist", + -12.003424644470215 + ], + [ + "▁implied", + -12.003522872924805 + ], + [ + "▁selecting", + -12.003833770751953 + ], + [ + "▁Worth", + -12.00403118133545 + ], + [ + "▁Regular", + -12.004072189331055 + ], + [ + "▁Population", + -12.004100799560547 + ], + [ + "▁sitcom", + -12.004105567932129 + ], + [ + "▁Person", + -12.004255294799805 + ], + [ + "▁arthritis", + -12.004474639892578 + ], + [ + "▁mentally", + -12.004547119140625 + ], + [ + "▁Barton", + -12.00456714630127 + ], + [ + "▁novelist", + -12.005234718322754 + ], + [ + "▁Brett", + -12.005274772644043 + ], + [ + "▁Galveston", + -12.005427360534668 + ], + [ + "▁pseudo", + -12.005431175231934 + ], + [ + "▁trusted", + -12.005544662475586 + ], + [ + "tang", + -12.005555152893066 + ], + [ + "▁trenches", + -12.005617141723633 + ], + [ + "▁Loch", + -12.00566291809082 + ], + [ + "▁GE", + -12.005699157714844 + ], + [ + "9%", + -12.005830764770508 + ], + [ + "▁Eleanor", + -12.005904197692871 + ], + [ + "▁Lexington", + -12.005938529968262 + ], + [ + "▁scholarly", + -12.006202697753906 + ], + [ + "▁Sit", + -12.006205558776855 + ], + [ + "▁realise", + -12.00622272491455 + ], + [ + "cup", + -12.006254196166992 + ], + [ + "▁Rand", + -12.006295204162598 + ], + [ + "▁occupying", + -12.006380081176758 + ], + [ + "▁derives", + -12.006444931030273 + ], + [ + "▁peri", + -12.006475448608398 + ], + [ + "▁Nie", + -12.006511688232422 + ], + [ + "▁1841", + -12.00674819946289 + ], + [ + "▁grief", + -12.006858825683594 + ], + [ + "▁nave", + -12.007054328918457 + ], + [ + "▁Everyone", + -12.007108688354492 + ], + [ + "▁boil", + -12.007256507873535 + ], + [ + "▁Phantom", + -12.007336616516113 + ], + [ + "▁Eyes", + -12.00733757019043 + ], + [ + "▁settling", + -12.007347106933594 + ], + [ + "▁126", + -12.007603645324707 + ], + [ + "▁Guerrero", + -12.007814407348633 + ], + [ + "building", + -12.008223533630371 + ], + [ + "▁vomiting", + -12.008292198181152 + ], + [ + "▁lauded", + -12.008296966552734 + ], + [ + "▁Hair", + -12.008569717407227 + ], + [ + "▁dismissal", + -12.008681297302246 + ], + [ + "▁enclosure", + -12.008832931518555 + ], + [ + "▁differed", + -12.009123802185059 + ], + [ + "än", + -12.009175300598145 + ], + [ + "▁Publisher", + -12.009248733520508 + ], + [ + "▁additionally", + -12.009325981140137 + ], + [ + "▁jack", + -12.009406089782715 + ], + [ + "▁objected", + -12.009448051452637 + ], + [ + "They", + -12.00944995880127 + ], + [ + "▁Provide", + -12.009673118591309 + ], + [ + "▁camouflage", + -12.009727478027344 + ], + [ + "▁Bahrain", + -12.00972843170166 + ], + [ + "▁anxious", + -12.009730339050293 + ], + [ + "trin", + -12.009895324707031 + ], + [ + "▁impaired", + -12.010066032409668 + ], + [ + "▁pamphlet", + -12.01020622253418 + ], + [ + "▁Jesuit", + -12.010234832763672 + ], + [ + "▁realism", + -12.010350227355957 + ], + [ + "▁sculptor", + -12.010496139526367 + ], + [ + "rav", + -12.010589599609375 + ], + [ + "▁Augustine", + -12.010693550109863 + ], + [ + "▁Spitfire", + -12.010697364807129 + ], + [ + "fly", + -12.010743141174316 + ], + [ + "lev", + -12.010934829711914 + ], + [ + "▁Dawson", + -12.011164665222168 + ], + [ + "▁imèn", + -12.011240005493164 + ], + [ + "scape", + -12.011270523071289 + ], + [ + "▁affordable", + -12.011336326599121 + ], + [ + "▁Tomb", + -12.01152229309082 + ], + [ + "▁defender", + -12.011650085449219 + ], + [ + "▁Relations", + -12.011656761169434 + ], + [ + "▁138", + -12.01167106628418 + ], + [ + "▁remark", + -12.011931419372559 + ], + [ + "▁calculation", + -12.012065887451172 + ], + [ + "▁Transit", + -12.012101173400879 + ], + [ + "▁Hutton", + -12.012323379516602 + ], + [ + "cco", + -12.012446403503418 + ], + [ + "▁Trinidad", + -12.012604713439941 + ], + [ + "▁astronomy", + -12.012604713439941 + ], + [ + "▁Wyatt", + -12.01263427734375 + ], + [ + "▁Rovers", + -12.012856483459473 + ], + [ + "▁50%", + -12.01294994354248 + ], + [ + "▁boring", + -12.012967109680176 + ], + [ + "▁Qa", + -12.013014793395996 + ], + [ + "▁neglected", + -12.013044357299805 + ], + [ + "▁troubled", + -12.013184547424316 + ], + [ + "▁naturalist", + -12.013415336608887 + ], + [ + "▁grazing", + -12.013565063476562 + ], + [ + "CG", + -12.013659477233887 + ], + [ + "▁Ibn", + -12.013689041137695 + ], + [ + "▁prediction", + -12.013751983642578 + ], + [ + "▁BL", + -12.013846397399902 + ], + [ + "▁personalities", + -12.013925552368164 + ], + [ + "▁discomfort", + -12.014045715332031 + ], + [ + "▁microphone", + -12.014137268066406 + ], + [ + "▁prominently", + -12.014388084411621 + ], + [ + "agne", + -12.014456748962402 + ], + [ + "value", + -12.014493942260742 + ], + [ + "▁Philosophy", + -12.014527320861816 + ], + [ + "▁Racing", + -12.014759063720703 + ], + [ + "▁celebrating", + -12.015007972717285 + ], + [ + "▁motorcycle", + -12.015044212341309 + ], + [ + "▁yeast", + -12.015082359313965 + ], + [ + "▁bottles", + -12.015084266662598 + ], + [ + "▁Juliet", + -12.01513385772705 + ], + [ + "▁waited", + -12.015257835388184 + ], + [ + "▁Pall", + -12.015406608581543 + ], + [ + "▁asylum", + -12.015518188476562 + ], + [ + "▁erupted", + -12.015545845031738 + ], + [ + "▁Ek", + -12.01559066772461 + ], + [ + "▁Vernon", + -12.015665054321289 + ], + [ + "ouche", + -12.01594066619873 + ], + [ + "All", + -12.015976905822754 + ], + [ + "▁dent", + -12.016026496887207 + ], + [ + "▁portal", + -12.016050338745117 + ], + [ + "▁Grenad", + -12.016080856323242 + ], + [ + "▁Kea", + -12.016179084777832 + ], + [ + "▁toxins", + -12.016290664672852 + ], + [ + "▁Gha", + -12.01634693145752 + ], + [ + "▁hydraulic", + -12.01645278930664 + ], + [ + "▁Finance", + -12.016609191894531 + ], + [ + "▁Lili", + -12.016722679138184 + ], + [ + "TION", + -12.016777992248535 + ], + [ + "▁trop", + -12.016839027404785 + ], + [ + "▁lifelong", + -12.017203330993652 + ], + [ + "Reilly", + -12.017253875732422 + ], + [ + "▁Slam", + -12.017278671264648 + ], + [ + "▁bankruptcy", + -12.017444610595703 + ], + [ + "▁clearance", + -12.017525672912598 + ], + [ + "▁transactions", + -12.017682075500488 + ], + [ + "due", + -12.017729759216309 + ], + [ + "▁Election", + -12.017901420593262 + ], + [ + "bone", + -12.018027305603027 + ], + [ + "▁Pav", + -12.018060684204102 + ], + [ + "▁continuity", + -12.018383026123047 + ], + [ + "▁Rupert", + -12.018385887145996 + ], + [ + "▁referenced", + -12.018620491027832 + ], + [ + "▁condom", + -12.01884651184082 + ], + [ + "▁inflict", + -12.018863677978516 + ], + [ + "▁composing", + -12.018867492675781 + ], + [ + "▁methane", + -12.018871307373047 + ], + [ + "▁burrow", + -12.018902778625488 + ], + [ + "▁Sixth", + -12.018908500671387 + ], + [ + "▁obligation", + -12.018982887268066 + ], + [ + "▁tetra", + -12.019193649291992 + ], + [ + "▁Drink", + -12.019207000732422 + ], + [ + "RNA", + -12.019221305847168 + ], + [ + "▁interim", + -12.019248008728027 + ], + [ + "▁accordingly", + -12.019271850585938 + ], + [ + "BO", + -12.019281387329102 + ], + [ + "▁Initiative", + -12.0193510055542 + ], + [ + "scribed", + -12.019364356994629 + ], + [ + "▁rejoined", + -12.01965618133545 + ], + [ + "illi", + -12.019844055175781 + ], + [ + "▁Rin", + -12.019908905029297 + ], + [ + "▁fluoride", + -12.019919395446777 + ], + [ + "▁granite", + -12.019981384277344 + ], + [ + "▁spanning", + -12.02000617980957 + ], + [ + "▁Eugen", + -12.020013809204102 + ], + [ + "cycle", + -12.020185470581055 + ], + [ + "800", + -12.020254135131836 + ], + [ + "▁Ultra", + -12.02039909362793 + ], + [ + "▁lenses", + -12.02043342590332 + ], + [ + "▁Slave", + -12.0204439163208 + ], + [ + "▁Knowles", + -12.020486831665039 + ], + [ + "▁Vent", + -12.020745277404785 + ], + [ + "▁wrap", + -12.02076530456543 + ], + [ + "▁allergic", + -12.02080249786377 + ], + [ + "▁progresses", + -12.020829200744629 + ], + [ + "▁entirety", + -12.020854949951172 + ], + [ + "▁applicant", + -12.021285057067871 + ], + [ + "▁Battery", + -12.021322250366211 + ], + [ + "dec", + -12.02151107788086 + ], + [ + "▁newborn", + -12.021845817565918 + ], + [ + "▁Follow", + -12.021876335144043 + ], + [ + "!)", + -12.022048950195312 + ], + [ + "▁lobe", + -12.022144317626953 + ], + [ + "▁Cage", + -12.022147178649902 + ], + [ + "▁retrospective", + -12.022300720214844 + ], + [ + "▁portable", + -12.022381782531738 + ], + [ + "▁confirmation", + -12.0224027633667 + ], + [ + "▁lent", + -12.022442817687988 + ], + [ + "mbre", + -12.022491455078125 + ], + [ + "easterly", + -12.022581100463867 + ], + [ + "▁enforced", + -12.022589683532715 + ], + [ + "▁mortal", + -12.022672653198242 + ], + [ + "ρ", + -12.02273941040039 + ], + [ + "▁fibre", + -12.022891998291016 + ], + [ + "▁Representative", + -12.02293586730957 + ], + [ + "vig", + -12.022961616516113 + ], + [ + "▁anpil", + -12.02302074432373 + ], + [ + "▁Critic", + -12.023040771484375 + ], + [ + "chal", + -12.023052215576172 + ], + [ + "▁Damascus", + -12.023224830627441 + ], + [ + "▁announcing", + -12.023224830627441 + ], + [ + "▁dinò", + -12.023226737976074 + ], + [ + "▁Mort", + -12.023639678955078 + ], + [ + "▁Nutrition", + -12.024195671081543 + ], + [ + "▁Resolution", + -12.024309158325195 + ], + [ + "▁stationary", + -12.024625778198242 + ], + [ + "▁slice", + -12.024657249450684 + ], + [ + "▁prosecutor", + -12.02468204498291 + ], + [ + "TT", + -12.024707794189453 + ], + [ + "wr", + -12.024815559387207 + ], + [ + "▁nuclei", + -12.024819374084473 + ], + [ + "▁Vocal", + -12.024883270263672 + ], + [ + "▁kn", + -12.025164604187012 + ], + [ + "▁Sang", + -12.025172233581543 + ], + [ + "▁chips", + -12.02519416809082 + ], + [ + "▁tilt", + -12.025336265563965 + ], + [ + "enne", + -12.025422096252441 + ], + [ + "▁spinning", + -12.0254487991333 + ], + [ + "▁Timothy", + -12.025654792785645 + ], + [ + "▁gregoryen", + -12.025654792785645 + ], + [ + "▁entertain", + -12.025702476501465 + ], + [ + "▁reporters", + -12.025704383850098 + ], + [ + "▁discourse", + -12.025757789611816 + ], + [ + "▁Rei", + -12.02579116821289 + ], + [ + "▁Bella", + -12.025923728942871 + ], + [ + "▁violated", + -12.026193618774414 + ], + [ + "▁adolescents", + -12.026321411132812 + ], + [ + "▁Eat", + -12.026382446289062 + ], + [ + "▁Julien", + -12.026564598083496 + ], + [ + "▁superiority", + -12.026586532592773 + ], + [ + "▁leisure", + -12.026628494262695 + ], + [ + "▁amalgam", + -12.026629447937012 + ], + [ + "▁Nina", + -12.026633262634277 + ], + [ + "▁capitalist", + -12.026719093322754 + ], + [ + "ME", + -12.02674674987793 + ], + [ + "▁Supporting", + -12.02680492401123 + ], + [ + "manship", + -12.026907920837402 + ], + [ + "▁anchored", + -12.027010917663574 + ], + [ + "▁Sz", + -12.027040481567383 + ], + [ + "▁maiden", + -12.027073860168457 + ], + [ + "▁Bergen", + -12.027276039123535 + ], + [ + "▁bugs", + -12.027429580688477 + ], + [ + "divi", + -12.027472496032715 + ], + [ + "▁earl", + -12.027539253234863 + ], + [ + "▁Kiel", + -12.027584075927734 + ], + [ + "▁Pennsilvani", + -12.027602195739746 + ], + [ + "▁Webb", + -12.027856826782227 + ], + [ + "OH", + -12.027861595153809 + ], + [ + "▁Abdul", + -12.02802562713623 + ], + [ + "anus", + -12.028083801269531 + ], + [ + "▁Malaya", + -12.028098106384277 + ], + [ + "▁Oakland", + -12.02845573425293 + ], + [ + "▁catching", + -12.028557777404785 + ], + [ + "▁wilderness", + -12.028578758239746 + ], + [ + "▁Borg", + -12.028828620910645 + ], + [ + "▁Shepherd", + -12.029067039489746 + ], + [ + "▁lumber", + -12.029069900512695 + ], + [ + "▁converting", + -12.02911376953125 + ], + [ + "▁overwhelmed", + -12.029230117797852 + ], + [ + "▁wetlands", + -12.029640197753906 + ], + [ + "▁Stark", + -12.029659271240234 + ], + [ + "▁loosely", + -12.029693603515625 + ], + [ + "▁beak", + -12.02973461151123 + ], + [ + "▁lamb", + -12.029808044433594 + ], + [ + "▁timeline", + -12.029911994934082 + ], + [ + "▁riots", + -12.02997875213623 + ], + [ + "▁Brisbane", + -12.03004264831543 + ], + [ + "▁supernova", + -12.030043601989746 + ], + [ + "▁snack", + -12.030045509338379 + ], + [ + "▁verdict", + -12.030067443847656 + ], + [ + "▁Rest", + -12.0300874710083 + ], + [ + "▁124", + -12.030216217041016 + ], + [ + "▁Cherry", + -12.030497550964355 + ], + [ + "▁reel", + -12.030525207519531 + ], + [ + "▁peculiar", + -12.03053092956543 + ], + [ + "▁refresh", + -12.03053092956543 + ], + [ + "▁Tsar", + -12.030807495117188 + ], + [ + "▁utter", + -12.030923843383789 + ], + [ + "▁Vishnu", + -12.031020164489746 + ], + [ + "child", + -12.031048774719238 + ], + [ + "▁Norwich", + -12.03105354309082 + ], + [ + "▁workforce", + -12.031168937683105 + ], + [ + "▁electrode", + -12.031193733215332 + ], + [ + "▁hazard", + -12.031301498413086 + ], + [ + "▁Horror", + -12.031511306762695 + ], + [ + "▁hay", + -12.031644821166992 + ], + [ + "▁perfection", + -12.031729698181152 + ], + [ + "▁Buckingham", + -12.032025337219238 + ], + [ + "▁canyon", + -12.032027244567871 + ], + [ + "▁staple", + -12.032063484191895 + ], + [ + "▁Pablo", + -12.032087326049805 + ], + [ + "▁Minute", + -12.03210163116455 + ], + [ + "▁activation", + -12.032256126403809 + ], + [ + "▁surveyed", + -12.032308578491211 + ], + [ + "▁Cretaceous", + -12.032488822937012 + ], + [ + "▁residue", + -12.032488822937012 + ], + [ + "ummy", + -12.032649040222168 + ], + [ + "▁Glo", + -12.032848358154297 + ], + [ + "▁Albanian", + -12.032882690429688 + ], + [ + "▁Ferry", + -12.032902717590332 + ], + [ + "▁simpler", + -12.03294849395752 + ], + [ + "▁Fringe", + -12.03304672241211 + ], + [ + "▁spear", + -12.033069610595703 + ], + [ + "▁Strip", + -12.033106803894043 + ], + [ + "50,000", + -12.033348083496094 + ], + [ + "▁Elementary", + -12.033469200134277 + ], + [ + "-15", + -12.033562660217285 + ], + [ + "▁Wise", + -12.033917427062988 + ], + [ + "▁Flat", + -12.033951759338379 + ], + [ + "▁plateau", + -12.034012794494629 + ], + [ + "▁displaying", + -12.034014701843262 + ], + [ + "▁distill", + -12.034112930297852 + ], + [ + "▁Hib", + -12.034333229064941 + ], + [ + "▁WrestleMania", + -12.034449577331543 + ], + [ + "▁Heinrich", + -12.034451484680176 + ], + [ + "▁Hastings", + -12.034460067749023 + ], + [ + "▁Johan", + -12.034496307373047 + ], + [ + ")||", + -12.034558296203613 + ], + [ + "▁frog", + -12.034603118896484 + ], + [ + "▁(“", + -12.034645080566406 + ], + [ + "▁consolidated", + -12.034797668457031 + ], + [ + "▁cater", + -12.035059928894043 + ], + [ + "▁Gloucester", + -12.035409927368164 + ], + [ + "vac", + -12.035515785217285 + ], + [ + "mile", + -12.036117553710938 + ], + [ + "mol", + -12.036282539367676 + ], + [ + "▁Finding", + -12.03631591796875 + ], + [ + "▁vulnerability", + -12.036415100097656 + ], + [ + "▁Sept", + -12.036476135253906 + ], + [ + "technology", + -12.036508560180664 + ], + [ + "▁perceive", + -12.036602973937988 + ], + [ + "▁Reader", + -12.036735534667969 + ], + [ + "▁immortal", + -12.036906242370605 + ], + [ + "▁Towards", + -12.036966323852539 + ], + [ + "▁Hydro", + -12.037221908569336 + ], + [ + "▁Gerard", + -12.037236213684082 + ], + [ + "▁Gul", + -12.037378311157227 + ], + [ + "▁Essential", + -12.037399291992188 + ], + [ + "▁Parkinson", + -12.03740119934082 + ], + [ + "▁ethanol", + -12.037423133850098 + ], + [ + "-17", + -12.037492752075195 + ], + [ + "▁shirts", + -12.037603378295898 + ], + [ + "▁veins", + -12.0376558303833 + ], + [ + "▁obsolete", + -12.037891387939453 + ], + [ + "▁Jenny", + -12.038003921508789 + ], + [ + "▁Quarter", + -12.03801155090332 + ], + [ + "▁Nolan", + -12.038164138793945 + ], + [ + "▁allegiance", + -12.038384437561035 + ], + [ + "cilia", + -12.038758277893066 + ], + [ + "▁accumulate", + -12.038877487182617 + ], + [ + "▁Amazing", + -12.038878440856934 + ], + [ + "▁lightly", + -12.039173126220703 + ], + [ + "▁Circ", + -12.039203643798828 + ], + [ + "▁Stur", + -12.039356231689453 + ], + [ + "▁Diệm", + -12.039369583129883 + ], + [ + "▁astronomical", + -12.039369583129883 + ], + [ + "▁Traditional", + -12.03955078125 + ], + [ + "▁Germanic", + -12.039600372314453 + ], + [ + "leigh", + -12.03966999053955 + ], + [ + "▁wrestlers", + -12.039704322814941 + ], + [ + "▁Located", + -12.039865493774414 + ], + [ + "▁heroine", + -12.039909362792969 + ], + [ + "▁Vit", + -12.039922714233398 + ], + [ + "MI", + -12.039978981018066 + ], + [ + "▁creep", + -12.039983749389648 + ], + [ + "▁Rough", + -12.04000186920166 + ], + [ + "▁Garcia", + -12.040119171142578 + ], + [ + "▁attracting", + -12.040525436401367 + ], + [ + "▁Isabella", + -12.040535926818848 + ], + [ + "▁Sec", + -12.040678977966309 + ], + [ + "firm", + -12.040767669677734 + ], + [ + "▁Commerce", + -12.040850639343262 + ], + [ + "▁correspondent", + -12.041071891784668 + ], + [ + "bill", + -12.041210174560547 + ], + [ + "▁Write", + -12.041251182556152 + ], + [ + "▁township", + -12.041341781616211 + ], + [ + "▁auxiliary", + -12.04134464263916 + ], + [ + "▁Shark", + -12.04144287109375 + ], + [ + "▁Miz", + -12.041544914245605 + ], + [ + "lich", + -12.041585922241211 + ], + [ + "▁spontaneous", + -12.041753768920898 + ], + [ + "▁Hokie", + -12.041873931884766 + ], + [ + "▁marketed", + -12.041891098022461 + ], + [ + "▁attribute", + -12.041897773742676 + ], + [ + "affe", + -12.041979789733887 + ], + [ + "▁McM", + -12.04218578338623 + ], + [ + "▁pause", + -12.042213439941406 + ], + [ + "ride", + -12.042214393615723 + ], + [ + "▁monk", + -12.042393684387207 + ], + [ + "▁spice", + -12.042452812194824 + ], + [ + "▁Warning", + -12.042457580566406 + ], + [ + "▁drone", + -12.04265022277832 + ], + [ + "▁modeled", + -12.04283332824707 + ], + [ + "▁Baja", + -12.042875289916992 + ], + [ + "▁integer", + -12.042892456054688 + ], + [ + "▁1838", + -12.042924880981445 + ], + [ + "▁circulated", + -12.043066024780273 + ], + [ + "▁broadside", + -12.043145179748535 + ], + [ + "▁ulcer", + -12.043325424194336 + ], + [ + "▁dysfunction", + -12.043328285217285 + ], + [ + "▁demonstrations", + -12.043405532836914 + ], + [ + "▁137", + -12.04342269897461 + ], + [ + "▁sauce", + -12.043427467346191 + ], + [ + "▁bride", + -12.04344654083252 + ], + [ + "▁Mortal", + -12.043472290039062 + ], + [ + "uber", + -12.043488502502441 + ], + [ + "▁flourish", + -12.043832778930664 + ], + [ + "▁expresses", + -12.04397964477539 + ], + [ + "▁keeper", + -12.044028282165527 + ], + [ + "▁vivid", + -12.044163703918457 + ], + [ + "▁congestion", + -12.04431438446045 + ], + [ + "▁abbey", + -12.044321060180664 + ], + [ + "▁tides", + -12.044321060180664 + ], + [ + "▁wholly", + -12.04434871673584 + ], + [ + "▁Alexandra", + -12.044438362121582 + ], + [ + "▁seventy", + -12.044543266296387 + ], + [ + "▁Bai", + -12.044581413269043 + ], + [ + "augh", + -12.044732093811035 + ], + [ + "▁propulsion", + -12.04481029510498 + ], + [ + "▁Antarctica", + -12.044845581054688 + ], + [ + "▁Psycho", + -12.044862747192383 + ], + [ + "▁Stay", + -12.045007705688477 + ], + [ + "▁yielded", + -12.045063972473145 + ], + [ + "eira", + -12.045366287231445 + ], + [ + "▁satire", + -12.045378684997559 + ], + [ + "▁Zen", + -12.045380592346191 + ], + [ + "▁bribe", + -12.045719146728516 + ], + [ + "mara", + -12.045758247375488 + ], + [ + "▁vacant", + -12.045804023742676 + ], + [ + "▁municipalities", + -12.045907020568848 + ], + [ + "▁Cornwall", + -12.046126365661621 + ], + [ + "▁Taka", + -12.046216011047363 + ], + [ + "▁Conversely", + -12.04629898071289 + ], + [ + "▁recruiting", + -12.04669189453125 + ], + [ + "▁Religion", + -12.046795845031738 + ], + [ + "▁cardinal", + -12.046857833862305 + ], + [ + "▁Capcom", + -12.046981811523438 + ], + [ + "▁Conrad", + -12.0469970703125 + ], + [ + "yèm", + -12.047236442565918 + ], + [ + "▁divètisman", + -12.047292709350586 + ], + [ + "▁proponent", + -12.047292709350586 + ], + [ + "▁syllable", + -12.047292709350586 + ], + [ + "▁medley", + -12.047320365905762 + ], + [ + "▁Notre", + -12.047378540039062 + ], + [ + "▁Coal", + -12.047500610351562 + ], + [ + "▁demonstrating", + -12.047789573669434 + ], + [ + "▁Persona", + -12.047825813293457 + ], + [ + "week", + -12.047876358032227 + ], + [ + "▁consul", + -12.04808521270752 + ], + [ + "▁missionary", + -12.048123359680176 + ], + [ + "▁Ambassador", + -12.048287391662598 + ], + [ + "▁Jag", + -12.048332214355469 + ], + [ + "IE", + -12.048477172851562 + ], + [ + "tab", + -12.048479080200195 + ], + [ + "▁Noble", + -12.048523902893066 + ], + [ + "self", + -12.048583984375 + ], + [ + "▁premium", + -12.048786163330078 + ], + [ + "▁Jill", + -12.048918724060059 + ], + [ + "posed", + -12.04908561706543 + ], + [ + "▁Arrow", + -12.049087524414062 + ], + [ + "▁isotope", + -12.049135208129883 + ], + [ + "▁Yankovic", + -12.049283027648926 + ], + [ + "▁mathematician", + -12.049283027648926 + ], + [ + "▁quotes", + -12.049312591552734 + ], + [ + "▁pianist", + -12.04931640625 + ], + [ + "▁Zhang", + -12.049418449401855 + ], + [ + "▁Harding", + -12.049793243408203 + ], + [ + "▁Log", + -12.049871444702148 + ], + [ + "▁Chip", + -12.049941062927246 + ], + [ + "▁exploded", + -12.050028800964355 + ], + [ + "homme", + -12.050066947937012 + ], + [ + "▁sided", + -12.050189971923828 + ], + [ + "▁grenade", + -12.05027961730957 + ], + [ + "▁sermon", + -12.05037784576416 + ], + [ + "iman", + -12.050619125366211 + ], + [ + "▁cyto", + -12.050638198852539 + ], + [ + "nea", + -12.050981521606445 + ], + [ + "chemical", + -12.051241874694824 + ], + [ + "▁Shanghai", + -12.051278114318848 + ], + [ + "▁Oldham", + -12.051289558410645 + ], + [ + "▁Midwest", + -12.051294326782227 + ], + [ + "FR", + -12.051421165466309 + ], + [ + "▁Jude", + -12.051539421081543 + ], + [ + "▁conceded", + -12.05171012878418 + ], + [ + "▁labelled", + -12.051715850830078 + ], + [ + "▁approve", + -12.051797866821289 + ], + [ + "▁ecology", + -12.051932334899902 + ], + [ + "▁consulting", + -12.051989555358887 + ], + [ + "▁Whatever", + -12.052000045776367 + ], + [ + "▁Beta", + -12.05208683013916 + ], + [ + "▁summoned", + -12.052214622497559 + ], + [ + "▁dissipating", + -12.052276611328125 + ], + [ + "▁marijuana", + -12.052276611328125 + ], + [ + "▁Kahn", + -12.05228042602539 + ], + [ + "▁Above", + -12.05228328704834 + ], + [ + "▁asleep", + -12.052289009094238 + ], + [ + "▁adopting", + -12.052336692810059 + ], + [ + "▁Felix", + -12.052350044250488 + ], + [ + "HT", + -12.052358627319336 + ], + [ + "▁1835", + -12.052462577819824 + ], + [ + "▁Hut", + -12.05250072479248 + ], + [ + "▁Jump", + -12.052663803100586 + ], + [ + "But", + -12.052685737609863 + ], + [ + "▁travay", + -12.052786827087402 + ], + [ + "ć", + -12.052864074707031 + ], + [ + "▁Heights", + -12.05291748046875 + ], + [ + "▁capitalism", + -12.052926063537598 + ], + [ + "▁patronage", + -12.053196907043457 + ], + [ + "▁Meredith", + -12.053276062011719 + ], + [ + "▁dignity", + -12.053277015686035 + ], + [ + "▁Reyes", + -12.053393363952637 + ], + [ + "▁banana", + -12.053590774536133 + ], + [ + "▁Wald", + -12.053592681884766 + ], + [ + "▁arches", + -12.053699493408203 + ], + [ + "ktè", + -12.053709983825684 + ], + [ + "▁Adel", + -12.053834915161133 + ], + [ + "▁indirectly", + -12.053848266601562 + ], + [ + "▁WHO", + -12.054096221923828 + ], + [ + "▁expecting", + -12.054121017456055 + ], + [ + "kou", + -12.054169654846191 + ], + [ + "▁McKe", + -12.054268836975098 + ], + [ + "▁appetite", + -12.054277420043945 + ], + [ + "▁authored", + -12.054286003112793 + ], + [ + "▁potatoes", + -12.054287910461426 + ], + [ + "▁procession", + -12.054618835449219 + ], + [ + "▁backwards", + -12.05473518371582 + ], + [ + "attle", + -12.05475902557373 + ], + [ + "▁desimal", + -12.05499267578125 + ], + [ + "▁belly", + -12.055131912231445 + ], + [ + "▁Breath", + -12.055181503295898 + ], + [ + "▁proportional", + -12.05518913269043 + ], + [ + "▁distract", + -12.055303573608398 + ], + [ + "▁Hook", + -12.055307388305664 + ], + [ + "▁fauna", + -12.055440902709961 + ], + [ + "▁withstand", + -12.055656433105469 + ], + [ + "▁Mao", + -12.055694580078125 + ], + [ + "▁seating", + -12.055865287780762 + ], + [ + "▁jumped", + -12.055939674377441 + ], + [ + "▁specify", + -12.056076049804688 + ], + [ + "▁stud", + -12.056118965148926 + ], + [ + "▁supervised", + -12.056441307067871 + ], + [ + "▁pardon", + -12.056583404541016 + ], + [ + "▁Copenhagen", + -12.056783676147461 + ], + [ + "▁Rodríguez", + -12.056783676147461 + ], + [ + "▁segregation", + -12.056783676147461 + ], + [ + "▁Python", + -12.056784629821777 + ], + [ + "▁crawl", + -12.056793212890625 + ], + [ + "▁reminder", + -12.056963920593262 + ], + [ + "▁Coup", + -12.057055473327637 + ], + [ + "▁hitter", + -12.057284355163574 + ], + [ + "▁Oppenheimer", + -12.05728530883789 + ], + [ + "▁bachelor", + -12.05728530883789 + ], + [ + "▁omni", + -12.057311058044434 + ], + [ + "▁Nau", + -12.057501792907715 + ], + [ + "▁Darren", + -12.057511329650879 + ], + [ + "▁peasants", + -12.057639122009277 + ], + [ + "▁reconstructed", + -12.05777645111084 + ], + [ + "<", + -12.058180809020996 + ], + [ + "▁Experiment", + -12.058459281921387 + ], + [ + "watch", + -12.058760643005371 + ], + [ + "▁Typically", + -12.058780670166016 + ], + [ + "▁imminent", + -12.058793067932129 + ], + [ + "▁participant", + -12.058866500854492 + ], + [ + "▁granting", + -12.058897972106934 + ], + [ + "ador", + -12.058908462524414 + ], + [ + "▁infect", + -12.05925464630127 + ], + [ + "Google", + -12.05949878692627 + ], + [ + "▁Victory", + -12.059516906738281 + ], + [ + "▁worsen", + -12.059554100036621 + ], + [ + "▁Till", + -12.059770584106445 + ], + [ + "▁recapture", + -12.059799194335938 + ], + [ + "▁1839", + -12.059800148010254 + ], + [ + "▁bun", + -12.059803009033203 + ], + [ + "▁sixteenth", + -12.060051918029785 + ], + [ + "▁Cyber", + -12.060214042663574 + ], + [ + "▁shortages", + -12.060250282287598 + ], + [ + "▁endless", + -12.06025505065918 + ], + [ + "▁coronation", + -12.060319900512695 + ], + [ + "FP", + -12.060354232788086 + ], + [ + "▁tablets", + -12.060667037963867 + ], + [ + "▁Witt", + -12.060683250427246 + ], + [ + "▁Thousand", + -12.060806274414062 + ], + [ + "▁flare", + -12.060823440551758 + ], + [ + "plan", + -12.060965538024902 + ], + [ + "▁batsmen", + -12.060996055603027 + ], + [ + "▁cookie", + -12.061141014099121 + ], + [ + "▁messenger", + -12.061310768127441 + ], + [ + "▁rip", + -12.061362266540527 + ], + [ + "andan", + -12.061367988586426 + ], + [ + "▁Pakistani", + -12.061399459838867 + ], + [ + "▁Thorpe", + -12.061468124389648 + ], + [ + "▁Monk", + -12.061481475830078 + ], + [ + "▁tiles", + -12.06179141998291 + ], + [ + "serving", + -12.061802864074707 + ], + [ + "▁spectral", + -12.06181526184082 + ], + [ + "▁dementia", + -12.061820030212402 + ], + [ + "▁filmmakers", + -12.061978340148926 + ], + [ + "▁Erin", + -12.062117576599121 + ], + [ + "▁transcription", + -12.062201499938965 + ], + [ + "uta", + -12.062265396118164 + ], + [ + "▁migrants", + -12.062320709228516 + ], + [ + "odon", + -12.062455177307129 + ], + [ + "▁Š", + -12.062463760375977 + ], + [ + "▁risen", + -12.062518119812012 + ], + [ + "▁AG", + -12.062532424926758 + ], + [ + "▁stained", + -12.062540054321289 + ], + [ + "▁responding", + -12.062593460083008 + ], + [ + "▁Haw", + -12.062627792358398 + ], + [ + "▁EMI", + -12.062784194946289 + ], + [ + "▁ARIA", + -12.06284236907959 + ], + [ + "▁sanction", + -12.062868118286133 + ], + [ + "▁fertile", + -12.062899589538574 + ], + [ + "▁Coastal", + -12.063106536865234 + ], + [ + "▁SMS", + -12.063170433044434 + ], + [ + "▁NOT", + -12.063203811645508 + ], + [ + "▁inclined", + -12.063328742980957 + ], + [ + "▁melodies", + -12.063328742980957 + ], + [ + "▁ventilation", + -12.063328742980957 + ], + [ + "nai", + -12.06344223022461 + ], + [ + "▁Seth", + -12.063545227050781 + ], + [ + "▁coating", + -12.063576698303223 + ], + [ + "Figure", + -12.06410026550293 + ], + [ + "▁Parent", + -12.064229965209961 + ], + [ + "One", + -12.064245223999023 + ], + [ + "▁Matematisyen", + -12.064339637756348 + ], + [ + "▁surely", + -12.064557075500488 + ], + [ + "▁pope", + -12.064675331115723 + ], + [ + "▁Published", + -12.06484603881836 + ], + [ + "▁lifespan", + -12.064882278442383 + ], + [ + "▁Wid", + -12.065013885498047 + ], + [ + "emic", + -12.065226554870605 + ], + [ + "Art", + -12.065351486206055 + ], + [ + "▁Medieval", + -12.065351486206055 + ], + [ + "▁Dixon", + -12.065353393554688 + ], + [ + "▁129", + -12.065397262573242 + ], + [ + "▁differing", + -12.0654296875 + ], + [ + "ometric", + -12.065766334533691 + ], + [ + "▁suspicious", + -12.065858840942383 + ], + [ + "tention", + -12.066266059875488 + ], + [ + "glass", + -12.066352844238281 + ], + [ + "▁Stewie", + -12.066365242004395 + ], + [ + "▁lure", + -12.066393852233887 + ], + [ + "▁abduct", + -12.066423416137695 + ], + [ + "▁Hamlet", + -12.066608428955078 + ], + [ + "▁inscribed", + -12.066706657409668 + ], + [ + "▁bladder", + -12.066871643066406 + ], + [ + "▁sacked", + -12.067164421081543 + ], + [ + "▁Mansfield", + -12.067425727844238 + ], + [ + "▁Colonial", + -12.067428588867188 + ], + [ + "▁hiring", + -12.067580223083496 + ], + [ + "▁Kla", + -12.067648887634277 + ], + [ + "ought", + -12.067712783813477 + ], + [ + "▁Fork", + -12.067739486694336 + ], + [ + "▁Berger", + -12.067755699157715 + ], + [ + "change", + -12.067837715148926 + ], + [ + "▁melodic", + -12.067886352539062 + ], + [ + "vu", + -12.067903518676758 + ], + [ + "▁Expert", + -12.067920684814453 + ], + [ + "▁Gaul", + -12.068046569824219 + ], + [ + "▁Eagles", + -12.068300247192383 + ], + [ + "▁Trent", + -12.068324089050293 + ], + [ + "▁cautious", + -12.06839370727539 + ], + [ + "▁miracle", + -12.06839370727539 + ], + [ + "▁colorful", + -12.068572998046875 + ], + [ + "▁Providence", + -12.068928718566895 + ], + [ + "▁1831", + -12.068942070007324 + ], + [ + "▁tightly", + -12.06899356842041 + ], + [ + "▁173", + -12.069283485412598 + ], + [ + "▁maker", + -12.069308280944824 + ], + [ + "▁Forever", + -12.069424629211426 + ], + [ + "▁Secondary", + -12.069454193115234 + ], + [ + "▁Quality", + -12.069961547851562 + ], + [ + "▁antibody", + -12.070067405700684 + ], + [ + "▁halfway", + -12.070107460021973 + ], + [ + "▁Nero", + -12.07020092010498 + ], + [ + "▁Mika", + -12.07063102722168 + ], + [ + "▁Treat", + -12.070648193359375 + ], + [ + "▁stranded", + -12.070778846740723 + ], + [ + "▁detector", + -12.07082748413086 + ], + [ + "▁engineered", + -12.070897102355957 + ], + [ + "▁Cliff", + -12.070923805236816 + ], + [ + "▁Trafford", + -12.070935249328613 + ], + [ + "▁prolific", + -12.070935249328613 + ], + [ + "▁liberation", + -12.07093620300293 + ], + [ + "▁terminated", + -12.070968627929688 + ], + [ + "▁recycled", + -12.071175575256348 + ], + [ + "▁viewpoint", + -12.071293830871582 + ], + [ + "▁treason", + -12.071444511413574 + ], + [ + "▁Bottom", + -12.071465492248535 + ], + [ + "▁inequality", + -12.0714750289917 + ], + [ + "▁frost", + -12.071487426757812 + ], + [ + "▁Paleo", + -12.071638107299805 + ], + [ + "▁Fill", + -12.071720123291016 + ], + [ + "▁alleviate", + -12.071971893310547 + ], + [ + "▁3000", + -12.07197380065918 + ], + [ + "rip", + -12.072039604187012 + ], + [ + "▁Leonardo", + -12.07204532623291 + ], + [ + "▁Cairo", + -12.072132110595703 + ], + [ + "▁aiming", + -12.072466850280762 + ], + [ + "▁Gloria", + -12.07252025604248 + ], + [ + "▁Bonn", + -12.07262134552002 + ], + [ + "▁Carmen", + -12.072632789611816 + ], + [ + "▁Internal", + -12.072731971740723 + ], + [ + "▁clade", + -12.07274055480957 + ], + [ + "▁Pir", + -12.072945594787598 + ], + [ + "RN", + -12.07295036315918 + ], + [ + "▁frogs", + -12.072985649108887 + ], + [ + "▁stereo", + -12.073055267333984 + ], + [ + "tsch", + -12.073199272155762 + ], + [ + "▁grounded", + -12.073210716247559 + ], + [ + "uti", + -12.073458671569824 + ], + [ + "▁employing", + -12.07365608215332 + ], + [ + "▁bunch", + -12.07370376586914 + ], + [ + "▁antigen", + -12.073705673217773 + ], + [ + "▁alterations", + -12.073930740356445 + ], + [ + "▁Seymour", + -12.073994636535645 + ], + [ + "▁slogan", + -12.073995590209961 + ], + [ + "▁volcanoes", + -12.074172973632812 + ], + [ + "`", + -12.074278831481934 + ], + [ + "shoot", + -12.074350357055664 + ], + [ + "▁automated", + -12.074504852294922 + ], + [ + "▁Shak", + -12.074531555175781 + ], + [ + "camp", + -12.074660301208496 + ], + [ + "▁kilometre", + -12.074969291687012 + ], + [ + "▁Worcester", + -12.074994087219238 + ], + [ + "▁tariff", + -12.0750732421875 + ], + [ + "-11", + -12.075139999389648 + ], + [ + "▁Dig", + -12.075173377990723 + ], + [ + "▁1842", + -12.07535457611084 + ], + [ + "▁Campus", + -12.075472831726074 + ], + [ + "▁coil", + -12.075482368469238 + ], + [ + "▁distributor", + -12.07552719116211 + ], + [ + "▁Buy", + -12.07555103302002 + ], + [ + "▁Davidson", + -12.075687408447266 + ], + [ + "▁plantations", + -12.075725555419922 + ], + [ + "structure", + -12.075727462768555 + ], + [ + "▁Fowler", + -12.07603931427002 + ], + [ + "lytic", + -12.076082229614258 + ], + [ + "HI", + -12.076086044311523 + ], + [ + "▁Naga", + -12.076213836669922 + ], + [ + "▁Kang", + -12.076271057128906 + ], + [ + "▁Fernand", + -12.07642650604248 + ], + [ + "▁Quint", + -12.076457023620605 + ], + [ + "▁Wilde", + -12.076476097106934 + ], + [ + "▁Dexter", + -12.07655143737793 + ], + [ + "▁refrain", + -12.07655143737793 + ], + [ + "▁storytelling", + -12.07655143737793 + ], + [ + "▁excavation", + -12.076557159423828 + ], + [ + "▁safeguard", + -12.076622009277344 + ], + [ + "▁trait", + -12.076675415039062 + ], + [ + "▁Chandra", + -12.076739311218262 + ], + [ + "▁Troop", + -12.07691478729248 + ], + [ + "▁Carson", + -12.077116966247559 + ], + [ + "▁freestyle", + -12.07730484008789 + ], + [ + "▁khi", + -12.07738208770752 + ], + [ + "▁pow", + -12.077394485473633 + ], + [ + "▁UNESCO", + -12.077574729919434 + ], + [ + "▁blanket", + -12.077680587768555 + ], + [ + "▁Madanm", + -12.078088760375977 + ], + [ + "▁Scene", + -12.078203201293945 + ], + [ + "▁Benefit", + -12.079115867614746 + ], + [ + "▁Pha", + -12.079180717468262 + ], + [ + "rump", + -12.079319953918457 + ], + [ + "▁assumptions", + -12.079458236694336 + ], + [ + "▁Aristotle", + -12.07962703704834 + ], + [ + "▁Sé", + -12.079638481140137 + ], + [ + "▁prohibition", + -12.079681396484375 + ], + [ + "▁replay", + -12.0800199508667 + ], + [ + "▁papal", + -12.080025672912598 + ], + [ + "▁Electro", + -12.08004379272461 + ], + [ + "▁Belarus", + -12.080140113830566 + ], + [ + "▁Hemisphere", + -12.080140113830566 + ], + [ + "▁Presbyterian", + -12.080140113830566 + ], + [ + "▁incumbent", + -12.080140113830566 + ], + [ + "▁Haz", + -12.08018684387207 + ], + [ + "▁unto", + -12.080297470092773 + ], + [ + "▁trash", + -12.080362319946289 + ], + [ + "▁thermo", + -12.080575942993164 + ], + [ + "▁therapies", + -12.080658912658691 + ], + [ + "guchi", + -12.080682754516602 + ], + [ + "▁expired", + -12.080838203430176 + ], + [ + "▁downloadable", + -12.080853462219238 + ], + [ + "▁Gear", + -12.080887794494629 + ], + [ + "RL", + -12.081127166748047 + ], + [ + "▁swell", + -12.081147193908691 + ], + [ + "UC", + -12.08115291595459 + ], + [ + "▁hiatus", + -12.081198692321777 + ], + [ + "▁Maur", + -12.081330299377441 + ], + [ + "good", + -12.081512451171875 + ], + [ + "▁Sher", + -12.081769943237305 + ], + [ + "kowski", + -12.081799507141113 + ], + [ + "▁Massa", + -12.081818580627441 + ], + [ + "▁discharged", + -12.08191967010498 + ], + [ + "▁Crew", + -12.081947326660156 + ], + [ + "▁fri", + -12.081958770751953 + ], + [ + "▁Skin", + -12.082136154174805 + ], + [ + "▁simplicity", + -12.082197189331055 + ], + [ + "▁bowel", + -12.082364082336426 + ], + [ + "IV", + -12.08250617980957 + ], + [ + "▁Imagine", + -12.08271312713623 + ], + [ + "▁Klein", + -12.082748413085938 + ], + [ + "▁tying", + -12.08303165435791 + ], + [ + "rh", + -12.08310604095459 + ], + [ + "▁preserving", + -12.083381652832031 + ], + [ + "gren", + -12.083518981933594 + ], + [ + "▁relying", + -12.083552360534668 + ], + [ + "▁routed", + -12.083934783935547 + ], + [ + "ATION", + -12.083993911743164 + ], + [ + "contin", + -12.084155082702637 + ], + [ + "▁chin", + -12.084248542785645 + ], + [ + "lut", + -12.0842924118042 + ], + [ + "▁parrot", + -12.084318161010742 + ], + [ + "▁rebound", + -12.084372520446777 + ], + [ + "▁Sparta", + -12.084502220153809 + ], + [ + "tero", + -12.084598541259766 + ], + [ + "▁Priest", + -12.084693908691406 + ], + [ + "▁Freeway", + -12.084714889526367 + ], + [ + "▁Treasure", + -12.0847749710083 + ], + [ + "▁posthumously", + -12.084776878356934 + ], + [ + "▁censorship", + -12.084858894348145 + ], + [ + "hiro", + -12.085147857666016 + ], + [ + "▁constituency", + -12.085290908813477 + ], + [ + "▁Magnus", + -12.085297584533691 + ], + [ + "▁undertaking", + -12.085420608520508 + ], + [ + "▁centimeter", + -12.085807800292969 + ], + [ + "▁unfair", + -12.085807800292969 + ], + [ + "▁Olympia", + -12.085811614990234 + ], + [ + "think", + -12.085862159729004 + ], + [ + "▁Clare", + -12.085963249206543 + ], + [ + "▁Lionel", + -12.086044311523438 + ], + [ + "▁transaction", + -12.08608627319336 + ], + [ + "▁recipes", + -12.086477279663086 + ], + [ + "Yves", + -12.086677551269531 + ], + [ + "▁Terror", + -12.086841583251953 + ], + [ + "▁slender", + -12.08684253692627 + ], + [ + "▁Maggie", + -12.086895942687988 + ], + [ + "▁Barrow", + -12.08695125579834 + ], + [ + "▁Constant", + -12.08715534210205 + ], + [ + "▁Parish", + -12.087249755859375 + ], + [ + "▁Kou", + -12.087289810180664 + ], + [ + "▁Glacier", + -12.087359428405762 + ], + [ + "▁elephants", + -12.087535858154297 + ], + [ + "▁upright", + -12.08761215209961 + ], + [ + "▁Roche", + -12.088134765625 + ], + [ + "▁beast", + -12.088468551635742 + ], + [ + "▁exclude", + -12.088469505310059 + ], + [ + "▁Thur", + -12.088747024536133 + ], + [ + "▁Boot", + -12.088764190673828 + ], + [ + "▁buffer", + -12.08890438079834 + ], + [ + "▁racist", + -12.08891773223877 + ], + [ + "▁144", + -12.089054107666016 + ], + [ + "▁reopened", + -12.089215278625488 + ], + [ + "▁Warrior", + -12.089227676391602 + ], + [ + "▁objections", + -12.089241981506348 + ], + [ + "brow", + -12.089385032653809 + ], + [ + "▁Bac", + -12.089391708374023 + ], + [ + "voca", + -12.089408874511719 + ], + [ + "yang", + -12.089489936828613 + ], + [ + "▁Wide", + -12.089553833007812 + ], + [ + "▁Frost", + -12.089592933654785 + ], + [ + "▁Marina", + -12.089712142944336 + ], + [ + "▁Cumberland", + -12.089949607849121 + ], + [ + "▁Thomson", + -12.090075492858887 + ], + [ + "▁(6", + -12.09013843536377 + ], + [ + "slated", + -12.090200424194336 + ], + [ + "aph", + -12.090399742126465 + ], + [ + "▁anatomy", + -12.090470314025879 + ], + [ + "▁Lester", + -12.090615272521973 + ], + [ + "▁Phi", + -12.090720176696777 + ], + [ + "▁outrage", + -12.090763092041016 + ], + [ + "▁boxing", + -12.09086799621582 + ], + [ + "▁unchanged", + -12.090988159179688 + ], + [ + "inator", + -12.091289520263672 + ], + [ + "▁seizure", + -12.091352462768555 + ], + [ + "▁trafficking", + -12.091507911682129 + ], + [ + "▁Known", + -12.091519355773926 + ], + [ + "also", + -12.091536521911621 + ], + [ + "▁seizures", + -12.091662406921387 + ], + [ + "grove", + -12.091678619384766 + ], + [ + "▁Herb", + -12.091757774353027 + ], + [ + "▁coffin", + -12.09177017211914 + ], + [ + "▁Fit", + -12.092016220092773 + ], + [ + "▁AR", + -12.092066764831543 + ], + [ + "▁worms", + -12.092217445373535 + ], + [ + "▁seventeenth", + -12.09228515625 + ], + [ + "aq", + -12.092288970947266 + ], + [ + "▁freezing", + -12.092342376708984 + ], + [ + "DF", + -12.092547416687012 + ], + [ + "▁Behavior", + -12.092547416687012 + ], + [ + "▁goaltender", + -12.092547416687012 + ], + [ + "▁whistle", + -12.092549324035645 + ], + [ + "▁Kumar", + -12.092947959899902 + ], + [ + "▁Tau", + -12.093001365661621 + ], + [ + "▁excavations", + -12.093061447143555 + ], + [ + "▁intermittent", + -12.093067169189453 + ], + [ + "▁academy", + -12.09306812286377 + ], + [ + "escence", + -12.093358993530273 + ], + [ + "▁Dust", + -12.09345817565918 + ], + [ + "▁Tolkien", + -12.093587875366211 + ], + [ + "▁catalyst", + -12.093587875366211 + ], + [ + "▁symbolize", + -12.09378433227539 + ], + [ + "▁Ok", + -12.093796730041504 + ], + [ + "▁sexes", + -12.09382152557373 + ], + [ + "▁crane", + -12.093963623046875 + ], + [ + "▁premises", + -12.09398078918457 + ], + [ + "▁dissolution", + -12.094170570373535 + ], + [ + "▁accelerate", + -12.094193458557129 + ], + [ + "▁procure", + -12.09422492980957 + ], + [ + "▁chemist", + -12.094465255737305 + ], + [ + "uca", + -12.094473838806152 + ], + [ + "▁Tonight", + -12.094625473022461 + ], + [ + "▁Psychology", + -12.094687461853027 + ], + [ + "▁otter", + -12.094732284545898 + ], + [ + "▁satisfying", + -12.09475040435791 + ], + [ + "▁Stefan", + -12.094757080078125 + ], + [ + "▁enjoying", + -12.094874382019043 + ], + [ + "▁Pé", + -12.094931602478027 + ], + [ + "▁flush", + -12.095218658447266 + ], + [ + "▁mural", + -12.095649719238281 + ], + [ + "▁Fro", + -12.095664978027344 + ], + [ + "▁parachute", + -12.095673561096191 + ], + [ + "▁omitted", + -12.0957670211792 + ], + [ + "“", + -12.09587287902832 + ], + [ + "▁preach", + -12.095916748046875 + ], + [ + "▁Poul", + -12.096136093139648 + ], + [ + "▁hailed", + -12.096158027648926 + ], + [ + "▁Galaxy", + -12.096195220947266 + ], + [ + "▁bunker", + -12.096260070800781 + ], + [ + "▁footprint", + -12.096314430236816 + ], + [ + "film", + -12.09652042388916 + ], + [ + "▁restrain", + -12.096535682678223 + ], + [ + "▁relaxed", + -12.096620559692383 + ], + [ + "▁enduring", + -12.096632957458496 + ], + [ + "▁Ukrainian", + -12.09671688079834 + ], + [ + "▁reacted", + -12.096896171569824 + ], + [ + "▁Bone", + -12.097024917602539 + ], + [ + "▁Barack", + -12.097046852111816 + ], + [ + "▁Welles", + -12.097099304199219 + ], + [ + "Ho", + -12.097225189208984 + ], + [ + "▁Sinclair", + -12.09723949432373 + ], + [ + "▁separating", + -12.09723949432373 + ], + [ + "▁harmonic", + -12.097381591796875 + ], + [ + "lew", + -12.097528457641602 + ], + [ + "œ", + -12.097762107849121 + ], + [ + "▁Sánchez", + -12.097762107849121 + ], + [ + "▁ambient", + -12.09776782989502 + ], + [ + "▁licence", + -12.09776782989502 + ], + [ + "▁cosmic", + -12.097777366638184 + ], + [ + "▁Tudor", + -12.09801959991455 + ], + [ + "▁Shane", + -12.09805965423584 + ], + [ + "▁consulted", + -12.098088264465332 + ], + [ + "▁complexes", + -12.098268508911133 + ], + [ + "cub", + -12.09835433959961 + ], + [ + "▁sting", + -12.098381996154785 + ], + [ + "third", + -12.098567008972168 + ], + [ + "▁Blade", + -12.098630905151367 + ], + [ + "▁comeback", + -12.098775863647461 + ], + [ + "▁Solution", + -12.098845481872559 + ], + [ + "▁recreate", + -12.098899841308594 + ], + [ + "▁solicit", + -12.098907470703125 + ], + [ + "▁compress", + -12.098976135253906 + ], + [ + "▁intricate", + -12.099332809448242 + ], + [ + "motion", + -12.099464416503906 + ], + [ + "▁Brussels", + -12.099855422973633 + ], + [ + "▁Canadiens", + -12.100379943847656 + ], + [ + "▁Reason", + -12.100387573242188 + ], + [ + "▁Joker", + -12.10038948059082 + ], + [ + "▁ME", + -12.100479125976562 + ], + [ + "▁disappearance", + -12.10053539276123 + ], + [ + "▁Going", + -12.100621223449707 + ], + [ + "iano", + -12.100822448730469 + ], + [ + "lett", + -12.100842475891113 + ], + [ + "▁Legislature", + -12.10090446472168 + ], + [ + "▁hepatitis", + -12.10090446472168 + ], + [ + "▁magnificent", + -12.10090446472168 + ], + [ + "▁Spur", + -12.100953102111816 + ], + [ + "bé", + -12.101181983947754 + ], + [ + "▁Moh", + -12.10128402709961 + ], + [ + "▁allergies", + -12.101428985595703 + ], + [ + "▁exclusion", + -12.101428985595703 + ], + [ + "▁Shannon", + -12.101463317871094 + ], + [ + "▁Fighting", + -12.101483345031738 + ], + [ + "▁nodes", + -12.101625442504883 + ], + [ + "▁reformed", + -12.101898193359375 + ], + [ + "standing", + -12.101953506469727 + ], + [ + "▁angular", + -12.10196590423584 + ], + [ + "▁Trouble", + -12.101990699768066 + ], + [ + "▁temporal", + -12.102041244506836 + ], + [ + "eger", + -12.102078437805176 + ], + [ + "▁approximate", + -12.102456092834473 + ], + [ + "▁Important", + -12.102479934692383 + ], + [ + "▁methodology", + -12.10260009765625 + ], + [ + "▁Via", + -12.102703094482422 + ], + [ + "▁validity", + -12.102751731872559 + ], + [ + "ovny", + -12.102849960327148 + ], + [ + "▁dire", + -12.10296630859375 + ], + [ + "▁elegant", + -12.103004455566406 + ], + [ + "▁GR", + -12.103264808654785 + ], + [ + "fil", + -12.103503227233887 + ], + [ + "▁salvation", + -12.103530883789062 + ], + [ + "▁Metroid", + -12.103561401367188 + ], + [ + "▁steamer", + -12.103611946105957 + ], + [ + "▁pests", + -12.10387134552002 + ], + [ + "▁shelf", + -12.103900909423828 + ], + [ + "▁bloody", + -12.103914260864258 + ], + [ + "▁marching", + -12.104024887084961 + ], + [ + "▁flowering", + -12.104043960571289 + ], + [ + "▁Dartmouth", + -12.104056358337402 + ], + [ + "▁Xavier", + -12.104057312011719 + ], + [ + "phobia", + -12.105027198791504 + ], + [ + "mother", + -12.105171203613281 + ], + [ + "▁hail", + -12.105280876159668 + ], + [ + "▁adulthood", + -12.1052885055542 + ], + [ + "▁venom", + -12.10533332824707 + ], + [ + "▁impart", + -12.105424880981445 + ], + [ + "stral", + -12.105572700500488 + ], + [ + "▁Legislative", + -12.105636596679688 + ], + [ + "▁cylindrical", + -12.105636596679688 + ], + [ + "EST", + -12.105756759643555 + ], + [ + "▁lighthouse", + -12.105891227722168 + ], + [ + "▁outflow", + -12.106012344360352 + ], + [ + "MB", + -12.106035232543945 + ], + [ + "▁quietly", + -12.106074333190918 + ], + [ + "▁resisted", + -12.106162071228027 + ], + [ + "▁Nottingham", + -12.106163024902344 + ], + [ + "▁sanctuary", + -12.106163024902344 + ], + [ + "saurus", + -12.106231689453125 + ], + [ + "▁Beatty", + -12.106492042541504 + ], + [ + "▁1843", + -12.106571197509766 + ], + [ + "▁Zelda", + -12.106691360473633 + ], + [ + "▁decent", + -12.106888771057129 + ], + [ + "▁vertebrae", + -12.106912612915039 + ], + [ + "PU", + -12.106995582580566 + ], + [ + "▁User", + -12.107040405273438 + ], + [ + "▁SK", + -12.10706901550293 + ], + [ + "patient", + -12.10708999633789 + ], + [ + "▁RF", + -12.10710620880127 + ], + [ + "▁wrestler", + -12.107114791870117 + ], + [ + "▁Randolph", + -12.107218742370605 + ], + [ + "▁stunning", + -12.107218742370605 + ], + [ + "▁wheelchair", + -12.107218742370605 + ], + [ + "▁Pioneer", + -12.107220649719238 + ], + [ + "▁Clyde", + -12.107242584228516 + ], + [ + "▁Bret", + -12.10767650604248 + ], + [ + "▁milit", + -12.10773754119873 + ], + [ + "▁Pérez", + -12.107746124267578 + ], + [ + "▁Shackleton", + -12.107746124267578 + ], + [ + "▁disappointing", + -12.107746124267578 + ], + [ + "▁merchandise", + -12.107746124267578 + ], + [ + "в", + -12.107747077941895 + ], + [ + "▁Bates", + -12.107763290405273 + ], + [ + "▁buoy", + -12.107771873474121 + ], + [ + "▁fringe", + -12.107950210571289 + ], + [ + "▁leased", + -12.108133316040039 + ], + [ + "oux", + -12.10822582244873 + ], + [ + "esse", + -12.108244895935059 + ], + [ + "▁Sheriff", + -12.108302116394043 + ], + [ + "hwa", + -12.108396530151367 + ], + [ + "▁Wig", + -12.108460426330566 + ], + [ + "▁willingness", + -12.108467102050781 + ], + [ + "▁Cities", + -12.108549118041992 + ], + [ + "ERS", + -12.108768463134766 + ], + [ + "▁inconsistent", + -12.108803749084473 + ], + [ + "▁sympathy", + -12.108803749084473 + ], + [ + "▁Brewer", + -12.109000205993652 + ], + [ + "▁diarrhea", + -12.109332084655762 + ], + [ + "▁obliged", + -12.109365463256836 + ], + [ + "▁Colbert", + -12.10953140258789 + ], + [ + "▁JMA", + -12.109570503234863 + ], + [ + "▁obli", + -12.10960578918457 + ], + [ + "▁healthier", + -12.109643936157227 + ], + [ + "▁1815", + -12.109663963317871 + ], + [ + "▁Ranch", + -12.109724998474121 + ], + [ + "▁Voyager", + -12.109807014465332 + ], + [ + "\\", + -12.109861373901367 + ], + [ + "▁anticipation", + -12.109861373901367 + ], + [ + "▁mwa", + -12.1099271774292 + ], + [ + "▁Freeman", + -12.109945297241211 + ], + [ + "▁Sidney", + -12.109967231750488 + ], + [ + "▁batch", + -12.110038757324219 + ], + [ + "▁envelope", + -12.110092163085938 + ], + [ + "▁Monthly", + -12.110297203063965 + ], + [ + "▁cartridge", + -12.110411643981934 + ], + [ + "~", + -12.110418319702148 + ], + [ + "▁anarchist", + -12.110431671142578 + ], + [ + "▁swap", + -12.110457420349121 + ], + [ + "▁195", + -12.110677719116211 + ], + [ + "▁Estonia", + -12.110740661621094 + ], + [ + "UD", + -12.110774993896484 + ], + [ + "▁thirteenth", + -12.110788345336914 + ], + [ + "′′", + -12.110851287841797 + ], + [ + "▁α", + -12.110906600952148 + ], + [ + "▁Animation", + -12.110920906066895 + ], + [ + "▁shine", + -12.111019134521484 + ], + [ + "▁Host", + -12.111087799072266 + ], + [ + "ARS", + -12.111289978027344 + ], + [ + "▁Summit", + -12.111490249633789 + ], + [ + "▁Content", + -12.111592292785645 + ], + [ + "▁coached", + -12.111721992492676 + ], + [ + "▁lemon", + -12.111732482910156 + ], + [ + "▁Seed", + -12.111750602722168 + ], + [ + "▁Lack", + -12.111852645874023 + ], + [ + "▁boo", + -12.111931800842285 + ], + [ + "social", + -12.111964225769043 + ], + [ + "▁Hemingway", + -12.111980438232422 + ], + [ + "▁remedy", + -12.111985206604004 + ], + [ + "▁Meteorological", + -12.112009048461914 + ], + [ + "▁amphibious", + -12.112237930297852 + ], + [ + "▁Expo", + -12.1123046875 + ], + [ + "data", + -12.112401008605957 + ], + [ + "▁stretches", + -12.11243724822998 + ], + [ + "▁disarm", + -12.112454414367676 + ], + [ + "▁Match", + -12.112465858459473 + ], + [ + "▁Forum", + -12.112509727478027 + ], + [ + "▁Sophia", + -12.11251163482666 + ], + [ + "▁Proc", + -12.112547874450684 + ], + [ + "▁Cubs", + -12.11263656616211 + ], + [ + "▁Warriors", + -12.11272144317627 + ], + [ + "▁Phillip", + -12.112725257873535 + ], + [ + "▁clot", + -12.112801551818848 + ], + [ + "▁Colony", + -12.112811088562012 + ], + [ + "rob", + -12.11284065246582 + ], + [ + "▁Speaking", + -12.11284351348877 + ], + [ + "▁Europa", + -12.112874984741211 + ], + [ + "▁Kannada", + -12.113041877746582 + ], + [ + "▁advocacy", + -12.113041877746582 + ], + [ + "▁celebrities", + -12.113041877746582 + ], + [ + "▁pencil", + -12.113083839416504 + ], + [ + "▁herbs", + -12.11315631866455 + ], + [ + "Cube", + -12.113415718078613 + ], + [ + "▁pap", + -12.113425254821777 + ], + [ + "▁Wat", + -12.113442420959473 + ], + [ + "qa", + -12.113540649414062 + ], + [ + "▁Knowledge", + -12.113588333129883 + ], + [ + "▁rooted", + -12.113808631896973 + ], + [ + "▁carpet", + -12.113914489746094 + ], + [ + "▁Returning", + -12.114009857177734 + ], + [ + "▁definite", + -12.114094734191895 + ], + [ + "▁Criminal", + -12.114104270935059 + ], + [ + "▁swimmer", + -12.114234924316406 + ], + [ + "▁rash", + -12.114246368408203 + ], + [ + "▁investigators", + -12.114285469055176 + ], + [ + "▁accession", + -12.11441421508789 + ], + [ + "▁Holiday", + -12.114635467529297 + ], + [ + "▁alternating", + -12.114635467529297 + ], + [ + "▁folded", + -12.114680290222168 + ], + [ + ":10.1", + -12.114683151245117 + ], + [ + "▁Milky", + -12.114688873291016 + ], + [ + "▁spokesman", + -12.114692687988281 + ], + [ + "▁tallest", + -12.114694595336914 + ], + [ + "▁coincided", + -12.114843368530273 + ], + [ + "▁Ride", + -12.114924430847168 + ], + [ + "▁rewarded", + -12.114936828613281 + ], + [ + "▁fuselage", + -12.115167617797852 + ], + [ + "▁financed", + -12.11525821685791 + ], + [ + "▁villagers", + -12.115262031555176 + ], + [ + "▁Congressional", + -12.11527156829834 + ], + [ + "▁clash", + -12.11539077758789 + ], + [ + "▁crowded", + -12.115557670593262 + ], + [ + "▁reminded", + -12.115619659423828 + ], + [ + "▁transcend", + -12.115706443786621 + ], + [ + "▁gag", + -12.115784645080566 + ], + [ + "▁flora", + -12.115857124328613 + ], + [ + "▁Idol", + -12.11594295501709 + ], + [ + "▁Cycl", + -12.11601734161377 + ], + [ + "▁summon", + -12.116025924682617 + ], + [ + "▁Herzegovina", + -12.116231918334961 + ], + [ + "▁canopy", + -12.116247177124023 + ], + [ + "cou", + -12.116303443908691 + ], + [ + "▁exercised", + -12.116474151611328 + ], + [ + "von", + -12.11655330657959 + ], + [ + "valent", + -12.116620063781738 + ], + [ + "▁protesters", + -12.116744041442871 + ], + [ + "▁hampered", + -12.116765022277832 + ], + [ + "▁franc", + -12.116780281066895 + ], + [ + "▁cardiac", + -12.116814613342285 + ], + [ + "▁migrate", + -12.1168851852417 + ], + [ + "▁Glory", + -12.116958618164062 + ], + [ + "▁ecclesiastical", + -12.116972923278809 + ], + [ + "▁grasses", + -12.117070198059082 + ], + [ + "▁prostitute", + -12.117298126220703 + ], + [ + "▁physiological", + -12.11730670928955 + ], + [ + "▁Shakira", + -12.117319107055664 + ], + [ + "vious", + -12.117358207702637 + ], + [ + "▁plaster", + -12.117435455322266 + ], + [ + "▁Walsh", + -12.117470741271973 + ], + [ + "▁demise", + -12.117809295654297 + ], + [ + "▁Northumbria", + -12.117836952209473 + ], + [ + "▁boycott", + -12.117897033691406 + ], + [ + "▁asserts", + -12.118280410766602 + ], + [ + "lead", + -12.1182861328125 + ], + [ + "▁martyr", + -12.118367195129395 + ], + [ + "▁Alf", + -12.118439674377441 + ], + [ + "finger", + -12.118489265441895 + ], + [ + "▁Boul", + -12.118674278259277 + ], + [ + "▁entail", + -12.118736267089844 + ], + [ + "▁mosaic", + -12.118900299072266 + ], + [ + "▁scent", + -12.119034767150879 + ], + [ + "▁exaggerated", + -12.119112968444824 + ], + [ + "▁Gou", + -12.11928653717041 + ], + [ + "▁Include", + -12.119434356689453 + ], + [ + "dimensional", + -12.1194429397583 + ], + [ + "▁gaze", + -12.119475364685059 + ], + [ + "yat", + -12.11948013305664 + ], + [ + "▁Laurence", + -12.11954116821289 + ], + [ + "▁Pun", + -12.119585990905762 + ], + [ + "▁overlooking", + -12.119638442993164 + ], + [ + "▁Said", + -12.119674682617188 + ], + [ + "▁possesses", + -12.119832992553711 + ], + [ + "▁manipulation", + -12.119967460632324 + ], + [ + "▁reappear", + -12.119967460632324 + ], + [ + "▁Saga", + -12.120064735412598 + ], + [ + "▁tutorial", + -12.120081901550293 + ], + [ + "▁Siberia", + -12.120135307312012 + ], + [ + "▁terrorism", + -12.120226860046387 + ], + [ + "member", + -12.12028980255127 + ], + [ + "RB", + -12.12038803100586 + ], + [ + "▁cube", + -12.120489120483398 + ], + [ + "▁Antilles", + -12.12051010131836 + ], + [ + "▁protested", + -12.12056827545166 + ], + [ + "▁Teen", + -12.120616912841797 + ], + [ + "tale", + -12.120926856994629 + ], + [ + "▁searched", + -12.120936393737793 + ], + [ + "▁arguably", + -12.121037483215332 + ], + [ + "▁diocese", + -12.121037483215332 + ], + [ + "ddington", + -12.12119197845459 + ], + [ + "▁1829", + -12.121221542358398 + ], + [ + "▁Batt", + -12.121399879455566 + ], + [ + "▁Hutchinson", + -12.121572494506836 + ], + [ + "▁Survivor", + -12.121572494506836 + ], + [ + "▁pharmaceutical", + -12.121572494506836 + ], + [ + "▁Educational", + -12.121654510498047 + ], + [ + "▁Fau", + -12.121699333190918 + ], + [ + "▁Solo", + -12.121919631958008 + ], + [ + "▁empirical", + -12.122108459472656 + ], + [ + "▁shuttle", + -12.122235298156738 + ], + [ + "▁flex", + -12.122270584106445 + ], + [ + "▁Coming", + -12.12230396270752 + ], + [ + "▁aspirin", + -12.122363090515137 + ], + [ + "▁admiral", + -12.122644424438477 + ], + [ + "▁lifting", + -12.122661590576172 + ], + [ + "▁Prayer", + -12.122719764709473 + ], + [ + "▁provoked", + -12.12302303314209 + ], + [ + "▁harness", + -12.123188972473145 + ], + [ + "▁vinyl", + -12.123275756835938 + ], + [ + "electric", + -12.123598098754883 + ], + [ + "▁envisioned", + -12.123717308044434 + ], + [ + "▁repertoire", + -12.123717308044434 + ], + [ + "▁histories", + -12.123734474182129 + ], + [ + "▁Lucia", + -12.12404727935791 + ], + [ + "cision", + -12.124099731445312 + ], + [ + "▁Okinawa", + -12.12425422668457 + ], + [ + "▁digging", + -12.124322891235352 + ], + [ + "▁inspiring", + -12.124387741088867 + ], + [ + "▁Role", + -12.124432563781738 + ], + [ + "Car", + -12.124794960021973 + ], + [ + "▁tweet", + -12.124795913696289 + ], + [ + "▁prevailing", + -12.125005722045898 + ], + [ + "▁hood", + -12.125244140625 + ], + [ + "▁charitable", + -12.125328063964844 + ], + [ + "▁digitally", + -12.125364303588867 + ], + [ + "▁shoe", + -12.125659942626953 + ], + [ + "▁mistaken", + -12.125661849975586 + ], + [ + "▁Yi", + -12.125672340393066 + ], + [ + "ograph", + -12.12582015991211 + ], + [ + "▁embraced", + -12.125914573669434 + ], + [ + "▁Madame", + -12.125969886779785 + ], + [ + "tow", + -12.126020431518555 + ], + [ + "▁scripture", + -12.126022338867188 + ], + [ + "season", + -12.126202583312988 + ], + [ + "▁bolt", + -12.126402854919434 + ], + [ + "▁Slav", + -12.126420021057129 + ], + [ + "▁capita", + -12.126425743103027 + ], + [ + "▁microscope", + -12.126437187194824 + ], + [ + "▁Romantic", + -12.126480102539062 + ], + [ + "Frans", + -12.126604080200195 + ], + [ + "LP", + -12.126710891723633 + ], + [ + "▁pediatric", + -12.126941680908203 + ], + [ + "▁consistency", + -12.12700366973877 + ], + [ + "oku", + -12.12738037109375 + ], + [ + "erate", + -12.127416610717773 + ], + [ + ":00", + -12.127442359924316 + ], + [ + "▁vanish", + -12.12746524810791 + ], + [ + "▁Chetnik", + -12.127480506896973 + ], + [ + "▁supplemented", + -12.12756633758545 + ], + [ + "teri", + -12.127641677856445 + ], + [ + "▁proposition", + -12.12768840789795 + ], + [ + "▁Carnegie", + -12.128019332885742 + ], + [ + "▁hostilities", + -12.128019332885742 + ], + [ + "▁Doggett", + -12.128042221069336 + ], + [ + "▁dancer", + -12.128067016601562 + ], + [ + "▁echoed", + -12.12816333770752 + ], + [ + "▁Christina", + -12.128192901611328 + ], + [ + "▁MB", + -12.128680229187012 + ], + [ + "▁Kant", + -12.128778457641602 + ], + [ + "▁Uncle", + -12.128894805908203 + ], + [ + "▁lucky", + -12.128901481628418 + ], + [ + "▁medicinal", + -12.129097938537598 + ], + [ + "▁Ernst", + -12.129098892211914 + ], + [ + "▁denial", + -12.129283905029297 + ], + [ + "olar", + -12.1295804977417 + ], + [ + "▁overweight", + -12.129829406738281 + ], + [ + "▁Bard", + -12.130061149597168 + ], + [ + "▁homeland", + -12.130324363708496 + ], + [ + "▁witch", + -12.130364418029785 + ], + [ + "vé", + -12.130463600158691 + ], + [ + "▁Value", + -12.13049030303955 + ], + [ + "▁Neg", + -12.130562782287598 + ], + [ + "▁1789", + -12.130603790283203 + ], + [ + "▁Ricardo", + -12.130717277526855 + ], + [ + "▁Telugu", + -12.130717277526855 + ], + [ + "brand", + -12.130837440490723 + ], + [ + "▁slim", + -12.131011962890625 + ], + [ + "MG", + -12.13119888305664 + ], + [ + "▁rigorous", + -12.131258010864258 + ], + [ + "▁1.5", + -12.131498336791992 + ], + [ + "▁contradict", + -12.131570816040039 + ], + [ + "volution", + -12.13170051574707 + ], + [ + "▁Gur", + -12.131762504577637 + ], + [ + "▁Vatican", + -12.131803512573242 + ], + [ + "▁Speech", + -12.13185977935791 + ], + [ + "▁Irene", + -12.131909370422363 + ], + [ + "▁XII", + -12.132081031799316 + ], + [ + "▁Milk", + -12.13211727142334 + ], + [ + "▁tub", + -12.132133483886719 + ], + [ + "▁Goldman", + -12.132214546203613 + ], + [ + "▁cinematic", + -12.132234573364258 + ], + [ + "▁Waste", + -12.132554054260254 + ], + [ + "▁cruel", + -12.132847785949707 + ], + [ + "▁archipelago", + -12.132881164550781 + ], + [ + "▁Belgrade", + -12.132926940917969 + ], + [ + "▁Auburn", + -12.132966995239258 + ], + [ + "▁proving", + -12.133408546447754 + ], + [ + "▁furnace", + -12.133423805236816 + ], + [ + "▁mitigate", + -12.133426666259766 + ], + [ + "▁Silvia", + -12.133459091186523 + ], + [ + "▁jewel", + -12.133679389953613 + ], + [ + "▁Lowe", + -12.13381576538086 + ], + [ + "proof", + -12.133919715881348 + ], + [ + "▁Exercise", + -12.133965492248535 + ], + [ + "▁repetition", + -12.133965492248535 + ], + [ + "ː", + -12.134054183959961 + ], + [ + "▁Willy", + -12.134058952331543 + ], + [ + "▁Bono", + -12.134261131286621 + ], + [ + "▁owed", + -12.134477615356445 + ], + [ + "▁Syracuse", + -12.134507179260254 + ], + [ + "▁fragile", + -12.134507179260254 + ], + [ + "▁Alain", + -12.134517669677734 + ], + [ + "▁Zach", + -12.134636878967285 + ], + [ + "▁hatred", + -12.134678840637207 + ], + [ + "▁Rib", + -12.134925842285156 + ], + [ + "▁besieged", + -12.135013580322266 + ], + [ + "▁unfold", + -12.135035514831543 + ], + [ + "▁bombarded", + -12.135063171386719 + ], + [ + "ikh", + -12.135160446166992 + ], + [ + "▁Wheat", + -12.135342597961426 + ], + [ + "▁checking", + -12.13538646697998 + ], + [ + "▁460", + -12.135432243347168 + ], + [ + "▁Coco", + -12.135506629943848 + ], + [ + "▁Memphis", + -12.13559341430664 + ], + [ + "▁reunion", + -12.135595321655273 + ], + [ + "▁furious", + -12.135721206665039 + ], + [ + "raw", + -12.135851860046387 + ], + [ + "▁Lara", + -12.136059761047363 + ], + [ + "▁Polar", + -12.136068344116211 + ], + [ + "▁Eden", + -12.136128425598145 + ], + [ + "▁ideological", + -12.136137962341309 + ], + [ + "▁→", + -12.136431694030762 + ], + [ + "▁Thing", + -12.136665344238281 + ], + [ + "PubMed", + -12.136679649353027 + ], + [ + "▁endorsement", + -12.136929512023926 + ], + [ + "▁cites", + -12.137170791625977 + ], + [ + "▁Dou", + -12.137212753295898 + ], + [ + "▁clues", + -12.137425422668457 + ], + [ + "▁Brooke", + -12.137516975402832 + ], + [ + "TL", + -12.13763427734375 + ], + [ + "file", + -12.13772201538086 + ], + [ + "▁Wimbledon", + -12.137767791748047 + ], + [ + "▁suffrage", + -12.137767791748047 + ], + [ + "▁alcoholic", + -12.137778282165527 + ], + [ + "▁elbow", + -12.137809753417969 + ], + [ + "hav", + -12.138049125671387 + ], + [ + "▁dividing", + -12.138312339782715 + ], + [ + "▁conceal", + -12.138428688049316 + ], + [ + "kawa", + -12.138516426086426 + ], + [ + "▁ingredient", + -12.138762474060059 + ], + [ + "rama", + -12.138835906982422 + ], + [ + "▁Sca", + -12.1388578414917 + ], + [ + "▁stigma", + -12.13886547088623 + ], + [ + "▁Bombay", + -12.138907432556152 + ], + [ + "▁Silent", + -12.13905143737793 + ], + [ + "▁hungry", + -12.139095306396484 + ], + [ + "▁plank", + -12.139361381530762 + ], + [ + "▁Chemistry", + -12.13940143585205 + ], + [ + "▁Nepal", + -12.139583587646484 + ], + [ + "▁1819", + -12.139631271362305 + ], + [ + "▁1804", + -12.13967514038086 + ], + [ + "▁Tide", + -12.139863014221191 + ], + [ + "▁antibiotic", + -12.140031814575195 + ], + [ + "▁restriction", + -12.140104293823242 + ], + [ + "▁differentiate", + -12.140118598937988 + ], + [ + "zil", + -12.140213966369629 + ], + [ + "3,000", + -12.140327453613281 + ], + [ + "▁lethal", + -12.140384674072266 + ], + [ + "▁eks", + -12.140523910522461 + ], + [ + "▁terminate", + -12.140803337097168 + ], + [ + "▁groom", + -12.141006469726562 + ], + [ + "▁spawn", + -12.141191482543945 + ], + [ + "MM", + -12.141515731811523 + ], + [ + "▁Matilda", + -12.141584396362305 + ], + [ + "▁memoirs", + -12.141626358032227 + ], + [ + "▁endured", + -12.141694068908691 + ], + [ + "▁Hole", + -12.14179801940918 + ], + [ + "lax", + -12.141942977905273 + ], + [ + "dè", + -12.141971588134766 + ], + [ + "▁MGM", + -12.141983032226562 + ], + [ + "▁Clarkson", + -12.142023086547852 + ], + [ + "▁tuned", + -12.1420316696167 + ], + [ + "▁shouldn", + -12.142271995544434 + ], + [ + "▁justification", + -12.14228343963623 + ], + [ + "▁assertion", + -12.142598152160645 + ], + [ + "▁Katherine", + -12.142677307128906 + ], + [ + "▁Goodman", + -12.142857551574707 + ], + [ + "▁Cobb", + -12.142921447753906 + ], + [ + "Pre", + -12.143193244934082 + ], + [ + "▁Watts", + -12.143481254577637 + ], + [ + "PF", + -12.143503189086914 + ], + [ + "▁sage", + -12.14352035522461 + ], + [ + "▁Boone", + -12.14381217956543 + ], + [ + "▁Hoo", + -12.143969535827637 + ], + [ + "▁exploited", + -12.14405632019043 + ], + [ + "▁Goal", + -12.144177436828613 + ], + [ + "▁folklore", + -12.144319534301758 + ], + [ + "▁utilizing", + -12.144319534301758 + ], + [ + "▁morphology", + -12.144380569458008 + ], + [ + "▁manipulate", + -12.144484519958496 + ], + [ + "eaux", + -12.144498825073242 + ], + [ + "▁Pauline", + -12.144529342651367 + ], + [ + "stroke", + -12.144638061523438 + ], + [ + "▁fleeing", + -12.144718170166016 + ], + [ + "▁Mercy", + -12.14478874206543 + ], + [ + "▁Combined", + -12.144869804382324 + ], + [ + "▁humid", + -12.145036697387695 + ], + [ + "▁highlighting", + -12.145174026489258 + ], + [ + "▁assisting", + -12.145329475402832 + ], + [ + "establish", + -12.14557933807373 + ], + [ + "▁seller", + -12.145625114440918 + ], + [ + "▁Could", + -12.145663261413574 + ], + [ + "phra", + -12.145746231079102 + ], + [ + "▁Blackburn", + -12.145822525024414 + ], + [ + "▁routinely", + -12.145953178405762 + ], + [ + "▁Khrushchev", + -12.145964622497559 + ], + [ + "▁analyzing", + -12.145964622497559 + ], + [ + "▁Duff", + -12.146073341369629 + ], + [ + "▁Trip", + -12.146136283874512 + ], + [ + "▁weaknesses", + -12.14621639251709 + ], + [ + "▁Zagreb", + -12.146512985229492 + ], + [ + "▁Historically", + -12.146759986877441 + ], + [ + "▁Liv", + -12.146856307983398 + ], + [ + "▁McLaren", + -12.147062301635742 + ], + [ + "▁disregard", + -12.147062301635742 + ], + [ + "▁stupid", + -12.147062301635742 + ], + [ + "▁muscular", + -12.147064208984375 + ], + [ + "▁fade", + -12.147237777709961 + ], + [ + "▁outpost", + -12.147260665893555 + ], + [ + "▁Sandra", + -12.147736549377441 + ], + [ + "▁205", + -12.147811889648438 + ], + [ + "▁gel", + -12.147927284240723 + ], + [ + "▁hunted", + -12.148027420043945 + ], + [ + "Man", + -12.148165702819824 + ], + [ + "▁invalid", + -12.148191452026367 + ], + [ + "▁crush", + -12.148211479187012 + ], + [ + "▁Android", + -12.1484375 + ], + [ + "▁Meeting", + -12.148500442504883 + ], + [ + "▁Orkney", + -12.148711204528809 + ], + [ + "▁optimistic", + -12.148711204528809 + ], + [ + "▁nut", + -12.148775100708008 + ], + [ + "▁outlaw", + -12.14881420135498 + ], + [ + "ivat", + -12.148881912231445 + ], + [ + "security", + -12.148881912231445 + ], + [ + "friend", + -12.149200439453125 + ], + [ + "▁ensued", + -12.149263381958008 + ], + [ + "▁Townsend", + -12.149269104003906 + ], + [ + "▁virgin", + -12.149295806884766 + ], + [ + "▁Miranda", + -12.149312973022461 + ], + [ + "flat", + -12.149321556091309 + ], + [ + "▁conning", + -12.14941120147705 + ], + [ + "▁gym", + -12.149489402770996 + ], + [ + "▁Matsu", + -12.149625778198242 + ], + [ + "▁Hammer", + -12.149628639221191 + ], + [ + "▁Brittany", + -12.149812698364258 + ], + [ + "▁magistrate", + -12.149812698364258 + ], + [ + "▁Roe", + -12.149853706359863 + ], + [ + "▁ortho", + -12.150318145751953 + ], + [ + "▁Aberdeen", + -12.15036392211914 + ], + [ + "▁heaviest", + -12.150364875793457 + ], + [ + "▁donation", + -12.150473594665527 + ], + [ + "▁cyst", + -12.150558471679688 + ], + [ + "▁305", + -12.150797843933105 + ], + [ + "▁forgive", + -12.151110649108887 + ], + [ + "▁oubyen", + -12.151466369628906 + ], + [ + "hom", + -12.151595115661621 + ], + [ + "▁isolate", + -12.15174388885498 + ], + [ + "▁gason", + -12.151782989501953 + ], + [ + "store", + -12.15178394317627 + ], + [ + "▁foremost", + -12.152044296264648 + ], + [ + "▁saga", + -12.152165412902832 + ], + [ + "▁Seventh", + -12.152325630187988 + ], + [ + "▁1801", + -12.152445793151855 + ], + [ + "▁Brent", + -12.152454376220703 + ], + [ + "▁Thorn", + -12.152560234069824 + ], + [ + "▁senaris", + -12.152573585510254 + ], + [ + "▁Strange", + -12.152701377868652 + ], + [ + "▁Arist", + -12.152750968933105 + ], + [ + "▁Elvis", + -12.152803421020508 + ], + [ + "Gu", + -12.152861595153809 + ], + [ + "▁imagined", + -12.152920722961426 + ], + [ + "▁lipid", + -12.152957916259766 + ], + [ + "▁dictator", + -12.153051376342773 + ], + [ + "▁Tit", + -12.153064727783203 + ], + [ + "▁difize", + -12.153122901916504 + ], + [ + "▁prestige", + -12.153122901916504 + ], + [ + "▁intensification", + -12.153124809265137 + ], + [ + "▁subscription", + -12.153210639953613 + ], + [ + "▁numer", + -12.153271675109863 + ], + [ + "hour", + -12.15336799621582 + ], + [ + "▁retreating", + -12.15336799621582 + ], + [ + "fat", + -12.15339469909668 + ], + [ + "atta", + -12.153412818908691 + ], + [ + "▁Northeast", + -12.153465270996094 + ], + [ + "▁BR", + -12.15347957611084 + ], + [ + "▁milli", + -12.15351676940918 + ], + [ + "▁neurological", + -12.153741836547852 + ], + [ + "flies", + -12.153783798217773 + ], + [ + "jima", + -12.15381145477295 + ], + [ + "friendly", + -12.153840065002441 + ], + [ + "▁imitate", + -12.154265403747559 + ], + [ + "▁longtime", + -12.154284477233887 + ], + [ + "▁scatter", + -12.15438175201416 + ], + [ + "▁Midway", + -12.15446949005127 + ], + [ + "LR", + -12.154627799987793 + ], + [ + "▁caregiver", + -12.15478229522705 + ], + [ + "▁sheriff", + -12.15478515625 + ], + [ + "▁Wer", + -12.15488338470459 + ], + [ + "▁Listen", + -12.155014038085938 + ], + [ + "opha", + -12.155036926269531 + ], + [ + "▁Aston", + -12.155377388000488 + ], + [ + "▁Joey", + -12.155426025390625 + ], + [ + "▁pathogen", + -12.155720710754395 + ], + [ + "▁gently", + -12.155932426452637 + ], + [ + "▁Exeter", + -12.155960083007812 + ], + [ + "▁Naples", + -12.155966758728027 + ], + [ + "▁Shell", + -12.156055450439453 + ], + [ + "▁deposition", + -12.156137466430664 + ], + [ + "▁Safe", + -12.156192779541016 + ], + [ + "▁Sally", + -12.156355857849121 + ], + [ + "▁suppressed", + -12.156429290771484 + ], + [ + "▁Dynamic", + -12.156444549560547 + ], + [ + "▁Leipzig", + -12.156444549560547 + ], + [ + "▁pran", + -12.156506538391113 + ], + [ + "▁Dock", + -12.156630516052246 + ], + [ + "▁Bede", + -12.156777381896973 + ], + [ + "▁Carn", + -12.15682601928711 + ], + [ + "▁pottery", + -12.156999588012695 + ], + [ + "▁Rainbow", + -12.157021522521973 + ], + [ + "▁ladies", + -12.157032012939453 + ], + [ + "▁gamma", + -12.15705680847168 + ], + [ + "▁pase", + -12.157111167907715 + ], + [ + "▁specifications", + -12.157115936279297 + ], + [ + "▁searches", + -12.15711784362793 + ], + [ + "▁Rot", + -12.157119750976562 + ], + [ + "▁rented", + -12.157350540161133 + ], + [ + "▁astronomer", + -12.15735912322998 + ], + [ + "▁Giovanni", + -12.157553672790527 + ], + [ + "▁Booker", + -12.157665252685547 + ], + [ + "▁dispatch", + -12.157713890075684 + ], + [ + "▁billed", + -12.157727241516113 + ], + [ + "▁discern", + -12.157734870910645 + ], + [ + "▁Whale", + -12.157858848571777 + ], + [ + "▁sneak", + -12.15811538696289 + ], + [ + "▁Honour", + -12.158171653747559 + ], + [ + "▁Trevor", + -12.158182144165039 + ], + [ + "▁recipe", + -12.158503532409668 + ], + [ + "▁Mom", + -12.158697128295898 + ], + [ + "▁smartphone", + -12.158707618713379 + ], + [ + "▁invoke", + -12.159077644348145 + ], + [ + "def", + -12.15909194946289 + ], + [ + "mite", + -12.159109115600586 + ], + [ + "▁Killer", + -12.159287452697754 + ], + [ + "pòt", + -12.159311294555664 + ], + [ + "▁Boris", + -12.15936279296875 + ], + [ + "▁Span", + -12.159565925598145 + ], + [ + "▁Sinatra", + -12.159777641296387 + ], + [ + "▁Condition", + -12.159778594970703 + ], + [ + "▁superficial", + -12.159778594970703 + ], + [ + "▁PD", + -12.15994930267334 + ], + [ + "▁Kapoor", + -12.160333633422852 + ], + [ + "▁ancestral", + -12.160333633422852 + ], + [ + "▁480", + -12.16034984588623 + ], + [ + "▁Empress", + -12.16042709350586 + ], + [ + "▁Dunn", + -12.160501480102539 + ], + [ + "▁fisheries", + -12.161044120788574 + ], + [ + "▁resembled", + -12.161149024963379 + ], + [ + "▁improper", + -12.161447525024414 + ], + [ + "▁Regardless", + -12.161602020263672 + ], + [ + "▁unexpectedly", + -12.161860466003418 + ], + [ + "imal", + -12.161945343017578 + ], + [ + "lav", + -12.162008285522461 + ], + [ + "▁laptop", + -12.162140846252441 + ], + [ + "▁1809", + -12.16222095489502 + ], + [ + "▁upheld", + -12.16223430633545 + ], + [ + "▁Fry", + -12.162282943725586 + ], + [ + "▁listened", + -12.162483215332031 + ], + [ + "▁universally", + -12.1625394821167 + ], + [ + "▁Achievement", + -12.162562370300293 + ], + [ + "▁wolves", + -12.162590980529785 + ], + [ + "▁Titanic", + -12.162683486938477 + ], + [ + "▁puff", + -12.162790298461914 + ], + [ + "‘", + -12.162810325622559 + ], + [ + "bay", + -12.162811279296875 + ], + [ + "▁fishermen", + -12.163122177124023 + ], + [ + "market", + -12.16312313079834 + ], + [ + "▁Barker", + -12.16316032409668 + ], + [ + "MR", + -12.163213729858398 + ], + [ + "▁Bald", + -12.16321849822998 + ], + [ + "▁Manual", + -12.163484573364258 + ], + [ + "▁foliage", + -12.163678169250488 + ], + [ + "▁otonòm", + -12.163678169250488 + ], + [ + "▁Venetian", + -12.163679122924805 + ], + [ + "▁Built", + -12.163742065429688 + ], + [ + "▁greeted", + -12.1640043258667 + ], + [ + "▁recession", + -12.164054870605469 + ], + [ + "▁detention", + -12.164142608642578 + ], + [ + "▁reasonably", + -12.164204597473145 + ], + [ + "▁convenience", + -12.164237022399902 + ], + [ + "▁Simple", + -12.164310455322266 + ], + [ + "▁Focus", + -12.16434383392334 + ], + [ + "▁bent", + -12.164617538452148 + ], + [ + "▁machin", + -12.164647102355957 + ], + [ + "▁Cotton", + -12.164684295654297 + ], + [ + "▁ridiculous", + -12.164796829223633 + ], + [ + "▁Albion", + -12.16479778289795 + ], + [ + "▁Factory", + -12.164809226989746 + ], + [ + "▁Prague", + -12.16491985321045 + ], + [ + "▁lime", + -12.165279388427734 + ], + [ + "▁absurd", + -12.16535472869873 + ], + [ + "▁wherever", + -12.165441513061523 + ], + [ + "▁delight", + -12.165512084960938 + ], + [ + "▁sezon", + -12.165563583374023 + ], + [ + "▁mosquito", + -12.165809631347656 + ], + [ + "▁Byron", + -12.165894508361816 + ], + [ + "ß", + -12.165914535522461 + ], + [ + "▁Everglades", + -12.165915489196777 + ], + [ + "▁janvye", + -12.165915489196777 + ], + [ + "▁diverted", + -12.165929794311523 + ], + [ + "▁Helena", + -12.166192054748535 + ], + [ + "▁stronghold", + -12.166265487670898 + ], + [ + "▁Object", + -12.166272163391113 + ], + [ + "root", + -12.166282653808594 + ], + [ + "▁Una", + -12.166441917419434 + ], + [ + "▁cockpit", + -12.166492462158203 + ], + [ + "ummer", + -12.166511535644531 + ], + [ + "dry", + -12.166707038879395 + ], + [ + "▁remaster", + -12.166748046875 + ], + [ + "▁hangar", + -12.166950225830078 + ], + [ + "▁differential", + -12.166975021362305 + ], + [ + "▁drilling", + -12.167168617248535 + ], + [ + "▁Alba", + -12.167204856872559 + ], + [ + "AU", + -12.167277336120605 + ], + [ + "▁Noah", + -12.167539596557617 + ], + [ + "GE", + -12.16754150390625 + ], + [ + "▁align", + -12.167545318603516 + ], + [ + "fjord", + -12.167613983154297 + ], + [ + "▁pinned", + -12.167744636535645 + ], + [ + "▁cer", + -12.168076515197754 + ], + [ + "▁1799", + -12.168098449707031 + ], + [ + "GB", + -12.168118476867676 + ], + [ + "▁Matter", + -12.168139457702637 + ], + [ + "▁seldom", + -12.168158531188965 + ], + [ + "▁Crosby", + -12.168168067932129 + ], + [ + "who", + -12.168293952941895 + ], + [ + "ça", + -12.168546676635742 + ], + [ + "▁outskirts", + -12.168717384338379 + ], + [ + "▁parental", + -12.168725967407227 + ], + [ + "▁glyco", + -12.168883323669434 + ], + [ + "▁Charleston", + -12.169301986694336 + ], + [ + "▁gloss", + -12.169307708740234 + ], + [ + "▁Initial", + -12.169339179992676 + ], + [ + "stadt", + -12.169764518737793 + ], + [ + "▁Rie", + -12.170148849487305 + ], + [ + "▁1775", + -12.170159339904785 + ], + [ + "▁manman", + -12.170194625854492 + ], + [ + "▁turnpike", + -12.170403480529785 + ], + [ + "▁Alder", + -12.170537948608398 + ], + [ + "▁Holt", + -12.170692443847656 + ], + [ + "orum", + -12.170771598815918 + ], + [ + "▁Shop", + -12.170785903930664 + ], + [ + "▁Rising", + -12.170821189880371 + ], + [ + "▁Spike", + -12.17087459564209 + ], + [ + "yèn", + -12.170947074890137 + ], + [ + "▁pavilion", + -12.170965194702148 + ], + [ + "▁1814", + -12.170978546142578 + ], + [ + "▁Protocol", + -12.170990943908691 + ], + [ + "▁Join", + -12.171335220336914 + ], + [ + "▁harass", + -12.171367645263672 + ], + [ + "▁Raz", + -12.1714448928833 + ], + [ + "▁outlook", + -12.171531677246094 + ], + [ + "▁Soundtrack", + -12.171557426452637 + ], + [ + "▁Remix", + -12.17159366607666 + ], + [ + "▁staging", + -12.171688079833984 + ], + [ + "▁Cannon", + -12.171819686889648 + ], + [ + "▁Patients", + -12.172053337097168 + ], + [ + "▁SW", + -12.17220401763916 + ], + [ + "▁peasant", + -12.172257423400879 + ], + [ + "derm", + -12.172268867492676 + ], + [ + "combe", + -12.17227840423584 + ], + [ + "zhou", + -12.172343254089355 + ], + [ + "ل", + -12.17265510559082 + ], + [ + "▁Randall", + -12.172718048095703 + ], + [ + "▁suppression", + -12.172916412353516 + ], + [ + "▁lowland", + -12.173063278198242 + ], + [ + "▁Veterans", + -12.173218727111816 + ], + [ + "uto", + -12.173297882080078 + ], + [ + "▁Lutheran", + -12.17344856262207 + ], + [ + "▁Doc", + -12.173469543457031 + ], + [ + "▁artery", + -12.173534393310547 + ], + [ + "▁simplified", + -12.173782348632812 + ], + [ + "TU", + -12.173786163330078 + ], + [ + "▁beloved", + -12.173797607421875 + ], + [ + "▁homosexuality", + -12.174105644226074 + ], + [ + "▁Leng", + -12.17411994934082 + ], + [ + "▁Airways", + -12.174192428588867 + ], + [ + "▁Smoking", + -12.174346923828125 + ], + [ + "▁Reformation", + -12.17449951171875 + ], + [ + "▁facto", + -12.174504280090332 + ], + [ + "▁teyat", + -12.174591064453125 + ], + [ + "▁chef", + -12.174654006958008 + ], + [ + "fam", + -12.174684524536133 + ], + [ + "▁recruitment", + -12.174750328063965 + ], + [ + "▁reliance", + -12.174912452697754 + ], + [ + "▁lithium", + -12.174917221069336 + ], + [ + "▁foraging", + -12.174934387207031 + ], + [ + "▁coordinator", + -12.17547607421875 + ], + [ + "▁waist", + -12.175569534301758 + ], + [ + "▁10%", + -12.175983428955078 + ], + [ + "▁Shock", + -12.175985336303711 + ], + [ + "▁Eliot", + -12.176023483276367 + ], + [ + "▁exported", + -12.17602825164795 + ], + [ + "▁apparatus", + -12.176041603088379 + ], + [ + "▁pathogens", + -12.17605972290039 + ], + [ + "▁copied", + -12.176068305969238 + ], + [ + "▁quotation", + -12.176107406616211 + ], + [ + "▁Zhou", + -12.176467895507812 + ], + [ + "▁coinage", + -12.17659854888916 + ], + [ + "▁dictionary", + -12.176608085632324 + ], + [ + "▁Reflect", + -12.176644325256348 + ], + [ + "▁Dorset", + -12.176748275756836 + ], + [ + "▁literal", + -12.177041053771973 + ], + [ + "▁Panthers", + -12.17720890045166 + ], + [ + "▁Humber", + -12.177300453186035 + ], + [ + "health", + -12.177328109741211 + ], + [ + "bio", + -12.177684783935547 + ], + [ + "▁Chrys", + -12.177797317504883 + ], + [ + "▁Wiki", + -12.178084373474121 + ], + [ + "▁chimney", + -12.178305625915527 + ], + [ + "▁Traffic", + -12.178306579589844 + ], + [ + "▁soda", + -12.178759574890137 + ], + [ + "▁Filipino", + -12.178901672363281 + ], + [ + "▁Jab", + -12.179108619689941 + ], + [ + "▁amphibian", + -12.179439544677734 + ], + [ + "▁compelled", + -12.17944049835205 + ], + [ + "▁Serv", + -12.17944622039795 + ], + [ + "▁Aero", + -12.17959976196289 + ], + [ + "▁surfaced", + -12.179614067077637 + ], + [ + "▁starboard", + -12.179620742797852 + ], + [ + "▁Eleven", + -12.179651260375977 + ], + [ + "block", + -12.179701805114746 + ], + [ + "▁setup", + -12.179898262023926 + ], + [ + "ahu", + -12.1799898147583 + ], + [ + "▁Instrument", + -12.180007934570312 + ], + [ + "▁mortgage", + -12.180007934570312 + ], + [ + "▁tuberculosis", + -12.180007934570312 + ], + [ + "▁benefited", + -12.18022346496582 + ], + [ + "▁gunfire", + -12.180286407470703 + ], + [ + "▁augmented", + -12.18036937713623 + ], + [ + "▁Frédéric", + -12.180575370788574 + ], + [ + "▁convex", + -12.180577278137207 + ], + [ + "▁anybody", + -12.180672645568848 + ], + [ + "▁conditioning", + -12.180768966674805 + ], + [ + "▁Monkey", + -12.1807861328125 + ], + [ + "▁rejoin", + -12.18079948425293 + ], + [ + "▁buff", + -12.180913925170898 + ], + [ + "▁Morocco", + -12.181143760681152 + ], + [ + "▁recognizing", + -12.181143760681152 + ], + [ + "▁alumni", + -12.181150436401367 + ], + [ + "▁impulse", + -12.181159973144531 + ], + [ + "tology", + -12.181185722351074 + ], + [ + "▁Creation", + -12.181581497192383 + ], + [ + "▁portfolio", + -12.18171215057373 + ], + [ + "▁bolster", + -12.181713104248047 + ], + [ + "▁respondents", + -12.18172550201416 + ], + [ + "▁compute", + -12.181934356689453 + ], + [ + "▁Arn", + -12.182013511657715 + ], + [ + "ár", + -12.182099342346191 + ], + [ + "▁149", + -12.182116508483887 + ], + [ + "▁146", + -12.182169914245605 + ], + [ + "▁pixel", + -12.182283401489258 + ], + [ + "interest", + -12.182293891906738 + ], + [ + "▁Cath", + -12.1823091506958 + ], + [ + "▁Interactive", + -12.182358741760254 + ], + [ + "▁genital", + -12.182485580444336 + ], + [ + "▁proclaim", + -12.182608604431152 + ], + [ + "▁licensing", + -12.182849884033203 + ], + [ + "▁Blind", + -12.182897567749023 + ], + [ + "▁fòm", + -12.183082580566406 + ], + [ + "▁retina", + -12.183305740356445 + ], + [ + "opathy", + -12.183321952819824 + ], + [ + "▁Bit", + -12.18344783782959 + ], + [ + "▁Stanton", + -12.18358325958252 + ], + [ + "inch", + -12.183634757995605 + ], + [ + "arium", + -12.18366813659668 + ], + [ + "▁Landing", + -12.183802604675293 + ], + [ + "▁kilogram", + -12.183877944946289 + ], + [ + "▁dislike", + -12.184286117553711 + ], + [ + "▁Romeo", + -12.1843843460083 + ], + [ + "▁shoreline", + -12.184399604797363 + ], + [ + "▁glue", + -12.184598922729492 + ], + [ + "▁Slayer", + -12.184682846069336 + ], + [ + "▁pandan", + -12.184896469116211 + ], + [ + "▁eighty", + -12.184931755065918 + ], + [ + "▁Théâtre", + -12.18513011932373 + ], + [ + "▁Ruby", + -12.185132026672363 + ], + [ + "▁134", + -12.185153007507324 + ], + [ + "▁deaf", + -12.185385704040527 + ], + [ + "ophy", + -12.185480117797852 + ], + [ + "▁1825", + -12.185650825500488 + ], + [ + "▁flap", + -12.185684204101562 + ], + [ + "▁Parliamentary", + -12.185696601867676 + ], + [ + "▁treaties", + -12.185744285583496 + ], + [ + "▁judgement", + -12.1858491897583 + ], + [ + "article", + -12.185905456542969 + ], + [ + "▁1810", + -12.186182022094727 + ], + [ + "ʻ", + -12.186271667480469 + ], + [ + "▁fool", + -12.186565399169922 + ], + [ + "▁10.1", + -12.186647415161133 + ], + [ + "▁1794", + -12.186776161193848 + ], + [ + "Adapt", + -12.18697738647461 + ], + [ + "▁MCC", + -12.187009811401367 + ], + [ + "▁collaborate", + -12.187080383300781 + ], + [ + "process", + -12.187237739562988 + ], + [ + "▁refugee", + -12.187606811523438 + ], + [ + "▁stricken", + -12.187987327575684 + ], + [ + "▁168", + -12.188243865966797 + ], + [ + "▁graphical", + -12.188379287719727 + ], + [ + "▁strained", + -12.18846321105957 + ], + [ + "▁exceptionally", + -12.18851375579834 + ], + [ + "▁Available", + -12.188559532165527 + ], + [ + "▁phylogenetic", + -12.188559532165527 + ], + [ + "▁packet", + -12.188616752624512 + ], + [ + "▁Reviewers", + -12.188755989074707 + ], + [ + "idia", + -12.188826560974121 + ], + [ + "▁Scan", + -12.188909530639648 + ], + [ + "rone", + -12.189098358154297 + ], + [ + "▁Relief", + -12.189132690429688 + ], + [ + "▁culminating", + -12.189132690429688 + ], + [ + "▁mercy", + -12.189139366149902 + ], + [ + "▁forensic", + -12.18921947479248 + ], + [ + "▁embark", + -12.189362525939941 + ], + [ + "ragon", + -12.189436912536621 + ], + [ + "▁Bug", + -12.189447402954102 + ], + [ + "▁finite", + -12.189455032348633 + ], + [ + "▁outright", + -12.189461708068848 + ], + [ + "▁Tak", + -12.189576148986816 + ], + [ + "lance", + -12.189753532409668 + ], + [ + "▁Georgetown", + -12.189769744873047 + ], + [ + "▁Wear", + -12.189996719360352 + ], + [ + "▁exiled", + -12.190083503723145 + ], + [ + "▁850", + -12.190621376037598 + ], + [ + "▁elongated", + -12.190852165222168 + ], + [ + "▁ligament", + -12.19085693359375 + ], + [ + "▁piercing", + -12.190892219543457 + ], + [ + "▁restraint", + -12.19100570678711 + ], + [ + "▁shutout", + -12.191147804260254 + ], + [ + "▁columnist", + -12.19121265411377 + ], + [ + "▁contraction", + -12.191344261169434 + ], + [ + "▁Photograph", + -12.191352844238281 + ], + [ + "▁trillion", + -12.191427230834961 + ], + [ + "▁Chor", + -12.191452026367188 + ], + [ + "fill", + -12.191482543945312 + ], + [ + "▁coli", + -12.19160270690918 + ], + [ + "▁photographed", + -12.19169807434082 + ], + [ + "▁mol", + -12.191719055175781 + ], + [ + "writing", + -12.191866874694824 + ], + [ + "activated", + -12.191876411437988 + ], + [ + "▁chicks", + -12.191978454589844 + ], + [ + "▁Champ", + -12.192129135131836 + ], + [ + "▁cricketer", + -12.192278861999512 + ], + [ + "shell", + -12.192394256591797 + ], + [ + "economic", + -12.19240665435791 + ], + [ + "▁Wine", + -12.192496299743652 + ], + [ + "▁apprentice", + -12.19250202178955 + ], + [ + "▁retention", + -12.192519187927246 + ], + [ + "▁unfinished", + -12.192575454711914 + ], + [ + "▁countless", + -12.192622184753418 + ], + [ + "▁anymore", + -12.192696571350098 + ], + [ + "▁Expressway", + -12.193365097045898 + ], + [ + "nucleotide", + -12.19372844696045 + ], + [ + "▁telegraph", + -12.193838119506836 + ], + [ + "▁functionality", + -12.194120407104492 + ], + [ + "▁Comet", + -12.194318771362305 + ], + [ + "▁Hiro", + -12.194379806518555 + ], + [ + "▁TR", + -12.194470405578613 + ], + [ + "▁concurrently", + -12.194527626037598 + ], + [ + "▁preschool", + -12.194559097290039 + ], + [ + "▁greet", + -12.19456672668457 + ], + [ + "▁diversion", + -12.194585800170898 + ], + [ + "▁Primetime", + -12.194681167602539 + ], + [ + "▁Boom", + -12.194750785827637 + ], + [ + "▁tactic", + -12.19482707977295 + ], + [ + "▁ambiguous", + -12.194877624511719 + ], + [ + "▁incarnation", + -12.1948823928833 + ], + [ + "▁Thanksgiving", + -12.194884300231934 + ], + [ + "▁133", + -12.19511604309082 + ], + [ + "▁Mariana", + -12.19529914855957 + ], + [ + "▁410", + -12.195365905761719 + ], + [ + "▁10,000", + -12.195398330688477 + ], + [ + "▁denounced", + -12.195454597473145 + ], + [ + "▁endeavor", + -12.195454597473145 + ], + [ + "▁Petro", + -12.195469856262207 + ], + [ + "▁♭", + -12.195576667785645 + ], + [ + "▁Woo", + -12.196014404296875 + ], + [ + "▁escaping", + -12.196030616760254 + ], + [ + "▁Weston", + -12.196147918701172 + ], + [ + "▁competent", + -12.196237564086914 + ], + [ + "▁crashes", + -12.196463584899902 + ], + [ + "▁Cel", + -12.196586608886719 + ], + [ + "▁Shirley", + -12.196608543395996 + ], + [ + "cost", + -12.196690559387207 + ], + [ + "▁fevriye", + -12.197185516357422 + ], + [ + "▁sandy", + -12.197280883789062 + ], + [ + "▁Antioch", + -12.197343826293945 + ], + [ + "▁NW", + -12.197397232055664 + ], + [ + "hō", + -12.197735786437988 + ], + [ + "▁Wisden", + -12.19777774810791 + ], + [ + "▁Bog", + -12.19821548461914 + ], + [ + "▁rumours", + -12.19825267791748 + ], + [ + "▁1833", + -12.198497772216797 + ], + [ + "LD", + -12.19859504699707 + ], + [ + "cade", + -12.198638916015625 + ], + [ + "▁Everett", + -12.198877334594727 + ], + [ + "▁Paradise", + -12.198919296264648 + ], + [ + "▁Rockefeller", + -12.198919296264648 + ], + [ + "yòk", + -12.199012756347656 + ], + [ + "▁advisories", + -12.199078559875488 + ], + [ + "▁inherit", + -12.19923210144043 + ], + [ + "▁disturbing", + -12.199334144592285 + ], + [ + "▁Cunningham", + -12.199498176574707 + ], + [ + "▁cerebral", + -12.199498176574707 + ], + [ + "▁Mira", + -12.19950008392334 + ], + [ + "▁164", + -12.199620246887207 + ], + [ + "▁homework", + -12.199804306030273 + ], + [ + "▁foe", + -12.199936866760254 + ], + [ + "nine", + -12.19995403289795 + ], + [ + "▁Move", + -12.200050354003906 + ], + [ + "oud", + -12.200065612792969 + ], + [ + "▁Ahmad", + -12.200084686279297 + ], + [ + "▁Broken", + -12.20022964477539 + ], + [ + "▁converge", + -12.200238227844238 + ], + [ + "▁morphological", + -12.200704574584961 + ], + [ + "▁Uganda", + -12.200718879699707 + ], + [ + "▁Bosnian", + -12.200740814208984 + ], + [ + "▁Catholicism", + -12.200828552246094 + ], + [ + "▁Fitzgerald", + -12.201236724853516 + ], + [ + "▁Gua", + -12.201486587524414 + ], + [ + "spiration", + -12.201539039611816 + ], + [ + "▁Rah", + -12.201549530029297 + ], + [ + "▁Afghan", + -12.201807975769043 + ], + [ + "▁cooperate", + -12.201824188232422 + ], + [ + "▁harvested", + -12.20182991027832 + ], + [ + "▁nude", + -12.20186710357666 + ], + [ + "▁1793", + -12.201884269714355 + ], + [ + "▁Mae", + -12.201944351196289 + ], + [ + "▁affirm", + -12.20201587677002 + ], + [ + "▁rack", + -12.202118873596191 + ], + [ + "▁nun", + -12.202343940734863 + ], + [ + "urus", + -12.20236587524414 + ], + [ + "Éric", + -12.202889442443848 + ], + [ + "ctus", + -12.20306396484375 + ], + [ + "▁Clarence", + -12.203069686889648 + ], + [ + "▁lone", + -12.203205108642578 + ], + [ + "▁setback", + -12.203536987304688 + ], + [ + "▁paradox", + -12.203557968139648 + ], + [ + "▁quantitative", + -12.203557968139648 + ], + [ + "▁Bismarck", + -12.203558921813965 + ], + [ + "▁Psalm", + -12.203560829162598 + ], + [ + "▁DM", + -12.203622817993164 + ], + [ + "▁fro", + -12.203675270080566 + ], + [ + "▁Mercia", + -12.203838348388672 + ], + [ + "▁cues", + -12.20385456085205 + ], + [ + "▁Geological", + -12.203893661499023 + ], + [ + "▁1821", + -12.204222679138184 + ], + [ + "▁Chess", + -12.204541206359863 + ], + [ + "▁gotten", + -12.204606056213379 + ], + [ + "▁Northumberland", + -12.204721450805664 + ], + [ + "▁Hubble", + -12.204752922058105 + ], + [ + "AV", + -12.204811096191406 + ], + [ + "▁Nun", + -12.204853057861328 + ], + [ + "▁Levine", + -12.204854011535645 + ], + [ + "▁1798", + -12.204864501953125 + ], + [ + "▁iOS", + -12.204980850219727 + ], + [ + "▁rhythmic", + -12.205062866210938 + ], + [ + "iq", + -12.205106735229492 + ], + [ + "▁Rabbi", + -12.205245018005371 + ], + [ + "kun", + -12.205259323120117 + ], + [ + "▁Galileo", + -12.205304145812988 + ], + [ + "▁volatile", + -12.205304145812988 + ], + [ + "▁Sesame", + -12.20531177520752 + ], + [ + "▁380", + -12.20534610748291 + ], + [ + "▁Feed", + -12.20536994934082 + ], + [ + "▁focal", + -12.205389022827148 + ], + [ + "NL", + -12.205419540405273 + ], + [ + "▁noon", + -12.205430030822754 + ], + [ + "lope", + -12.205484390258789 + ], + [ + "001", + -12.205608367919922 + ], + [ + "▁magma", + -12.205842971801758 + ], + [ + "▁subplot", + -12.205885887145996 + ], + [ + "sboro", + -12.206199645996094 + ], + [ + "▁Active", + -12.206292152404785 + ], + [ + "▁142", + -12.206376075744629 + ], + [ + "▁Twilight", + -12.20646858215332 + ], + [ + "▁Manitoba", + -12.206469535827637 + ], + [ + "▁Limit", + -12.206582069396973 + ], + [ + "▁fuck", + -12.206599235534668 + ], + [ + "▁Tex", + -12.206796646118164 + ], + [ + "▁Undertaker", + -12.207052230834961 + ], + [ + "ardo", + -12.207077980041504 + ], + [ + "physics", + -12.207123756408691 + ], + [ + "▁blew", + -12.20716667175293 + ], + [ + "▁Mickey", + -12.207185745239258 + ], + [ + "▁Rouge", + -12.207212448120117 + ], + [ + "▁Ladies", + -12.20724105834961 + ], + [ + "▁criticizing", + -12.207439422607422 + ], + [ + "▁optic", + -12.207575798034668 + ], + [ + "▁Wanderers", + -12.207634925842285 + ], + [ + "▁dopamine", + -12.207634925842285 + ], + [ + "▁hyphae", + -12.207634925842285 + ], + [ + "▁staircase", + -12.207634925842285 + ], + [ + "▁Twelve", + -12.207636833190918 + ], + [ + "▁noticeable", + -12.207734107971191 + ], + [ + "▁Madras", + -12.207791328430176 + ], + [ + "▁Dear", + -12.207877159118652 + ], + [ + "▁theorem", + -12.2079439163208 + ], + [ + "▁Advisory", + -12.208052635192871 + ], + [ + "▁Rank", + -12.208075523376465 + ], + [ + "▁competitor", + -12.208096504211426 + ], + [ + "scribing", + -12.208163261413574 + ], + [ + "▁Were", + -12.208239555358887 + ], + [ + "▁hom", + -12.208379745483398 + ], + [ + "▁likened", + -12.20848274230957 + ], + [ + "▁barrage", + -12.208858489990234 + ], + [ + "▁bulkhead", + -12.208944320678711 + ], + [ + "▁harvesting", + -12.208999633789062 + ], + [ + "▁Soil", + -12.209108352661133 + ], + [ + "▁groundwater", + -12.209256172180176 + ], + [ + "▁predictable", + -12.209336280822754 + ], + [ + "dhar", + -12.209477424621582 + ], + [ + "FO", + -12.209480285644531 + ], + [ + "▁Frontier", + -12.209736824035645 + ], + [ + "▁Taft", + -12.209879875183105 + ], + [ + "▁prospective", + -12.209884643554688 + ], + [ + "▁bizarre", + -12.209972381591797 + ], + [ + "▁Hama", + -12.210040092468262 + ], + [ + "▁sickness", + -12.210156440734863 + ], + [ + "▁runoff", + -12.210294723510742 + ], + [ + "▁framed", + -12.210390090942383 + ], + [ + "vell", + -12.210497856140137 + ], + [ + "▁impedance", + -12.210558891296387 + ], + [ + "▁intrinsic", + -12.210577964782715 + ], + [ + "▁strive", + -12.210591316223145 + ], + [ + "▁mort", + -12.210807800292969 + ], + [ + "▁Bound", + -12.210927963256836 + ], + [ + "nomi", + -12.211020469665527 + ], + [ + "▁Kab", + -12.211106300354004 + ], + [ + "control", + -12.211111068725586 + ], + [ + "▁Winnipeg", + -12.211143493652344 + ], + [ + "▁Corinth", + -12.211151123046875 + ], + [ + "▁Thai", + -12.211270332336426 + ], + [ + "▁1824", + -12.211432456970215 + ], + [ + "▁Bachelor", + -12.211729049682617 + ], + [ + "▁Getting", + -12.211858749389648 + ], + [ + "▁priorities", + -12.21190071105957 + ], + [ + "▁Weight", + -12.212233543395996 + ], + [ + "▁MacDonald", + -12.212315559387207 + ], + [ + "▁slam", + -12.212492942810059 + ], + [ + "▁Moment", + -12.212736129760742 + ], + [ + "▁Mess", + -12.21278190612793 + ], + [ + "▁Rodriguez", + -12.212902069091797 + ], + [ + "▁conspicuous", + -12.212902069091797 + ], + [ + "▁divisional", + -12.212966918945312 + ], + [ + "▁liv", + -12.213077545166016 + ], + [ + "▁treatise", + -12.213345527648926 + ], + [ + "morphic", + -12.213403701782227 + ], + [ + "▁mizik", + -12.21349048614502 + ], + [ + "▁225", + -12.213491439819336 + ], + [ + "▁Albania", + -12.213521957397461 + ], + [ + "▁Whereas", + -12.213537216186523 + ], + [ + "0.0", + -12.213768005371094 + ], + [ + "▁assemble", + -12.213775634765625 + ], + [ + "▁canoe", + -12.213794708251953 + ], + [ + "▁235", + -12.214009284973145 + ], + [ + "▁Sabbath", + -12.214076042175293 + ], + [ + "▁concurrency", + -12.214076042175293 + ], + [ + "▁nausea", + -12.214089393615723 + ], + [ + "öl", + -12.214417457580566 + ], + [ + "▁Birth", + -12.214534759521484 + ], + [ + "grave", + -12.214691162109375 + ], + [ + "▁cereal", + -12.214692115783691 + ], + [ + "endra", + -12.214693069458008 + ], + [ + "▁Noel", + -12.215153694152832 + ], + [ + "kti", + -12.215208053588867 + ], + [ + "▁Extreme", + -12.215250968933105 + ], + [ + "▁Dahl", + -12.215269088745117 + ], + [ + "▁151", + -12.215277671813965 + ], + [ + "▁Bryant", + -12.21530818939209 + ], + [ + "▁traumatic", + -12.215734481811523 + ], + [ + "▁Dominic", + -12.215765953063965 + ], + [ + "▁endurance", + -12.215840339660645 + ], + [ + "▁transferring", + -12.215841293334961 + ], + [ + "▁Grammar", + -12.215930938720703 + ], + [ + "▁simultaneous", + -12.2159423828125 + ], + [ + "▁Milwaukee", + -12.21642780303955 + ], + [ + "▁plum", + -12.21687126159668 + ], + [ + "▁overflow", + -12.216948509216309 + ], + [ + "▁Detective", + -12.21701717376709 + ], + [ + "▁depleted", + -12.21701717376709 + ], + [ + "▁eponymous", + -12.21701717376709 + ], + [ + "▁evolving", + -12.21701717376709 + ], + [ + "▁tendon", + -12.217071533203125 + ], + [ + "▁unsure", + -12.217086791992188 + ], + [ + "▁recur", + -12.217138290405273 + ], + [ + "▁coding", + -12.21729850769043 + ], + [ + "▁SEC", + -12.217357635498047 + ], + [ + "▁Version", + -12.217387199401855 + ], + [ + "ambo", + -12.21747875213623 + ], + [ + "▁Cromwell", + -12.217606544494629 + ], + [ + "▁pollutants", + -12.217606544494629 + ], + [ + "▁triangular", + -12.217606544494629 + ], + [ + "▁tributary", + -12.217606544494629 + ], + [ + "ondo", + -12.217652320861816 + ], + [ + "▁verify", + -12.217679023742676 + ], + [ + "▁symbolism", + -12.217687606811523 + ], + [ + "▁sighted", + -12.21768856048584 + ], + [ + "▁depended", + -12.217703819274902 + ], + [ + "▁elastic", + -12.217755317687988 + ], + [ + "▁adequately", + -12.217789649963379 + ], + [ + "▁caste", + -12.217894554138184 + ], + [ + "▁subsidies", + -12.218195915222168 + ], + [ + "▁relegation", + -12.21827507019043 + ], + [ + "▁Peggy", + -12.218276023864746 + ], + [ + "▁realizing", + -12.21834945678711 + ], + [ + "▁Coral", + -12.218414306640625 + ], + [ + "▁Quaker", + -12.218453407287598 + ], + [ + "▁1780", + -12.21847152709961 + ], + [ + "▁Plate", + -12.21851921081543 + ], + [ + "▁hardship", + -12.21854019165039 + ], + [ + "charge", + -12.218564987182617 + ], + [ + "▁MR", + -12.218670845031738 + ], + [ + "▁Shot", + -12.218770980834961 + ], + [ + "▁Restoration", + -12.218785285949707 + ], + [ + "▁efficacy", + -12.218785285949707 + ], + [ + "ATE", + -12.218844413757324 + ], + [ + "▁Quar", + -12.21894359588623 + ], + [ + "▁Cornwallis", + -12.219025611877441 + ], + [ + "▁radial", + -12.219040870666504 + ], + [ + "▁backward", + -12.21933650970459 + ], + [ + "▁Continuing", + -12.219375610351562 + ], + [ + "▁Definition", + -12.219375610351562 + ], + [ + "▁garbage", + -12.219375610351562 + ], + [ + "▁variability", + -12.219377517700195 + ], + [ + "▁damn", + -12.21950626373291 + ], + [ + "▁fulfilled", + -12.219670295715332 + ], + [ + "▁provisional", + -12.21967601776123 + ], + [ + "igen", + -12.219770431518555 + ], + [ + "▁discretion", + -12.219965934753418 + ], + [ + "▁Majesty", + -12.219966888427734 + ], + [ + "-16", + -12.220052719116211 + ], + [ + "▁hetero", + -12.22005844116211 + ], + [ + "▁acidic", + -12.220353126525879 + ], + [ + "▁intersecting", + -12.2204008102417 + ], + [ + "▁supp", + -12.220558166503906 + ], + [ + "▁Would", + -12.220586776733398 + ], + [ + "▁analogy", + -12.220719337463379 + ], + [ + "GO", + -12.220884323120117 + ], + [ + "▁monopoly", + -12.221149444580078 + ], + [ + "▁spherical", + -12.221149444580078 + ], + [ + "▁AIF", + -12.221175193786621 + ], + [ + "bourg", + -12.22126293182373 + ], + [ + "▁lesions", + -12.221292495727539 + ], + [ + "▁hPa", + -12.221543312072754 + ], + [ + "▁instituted", + -12.221643447875977 + ], + [ + "▁celestial", + -12.22174072265625 + ], + [ + "▁compulsory", + -12.22174072265625 + ], + [ + "▁Connect", + -12.221868515014648 + ], + [ + "▁Reporter", + -12.221895217895508 + ], + [ + "strom", + -12.221912384033203 + ], + [ + "▁explode", + -12.222039222717285 + ], + [ + "▁169", + -12.222128868103027 + ], + [ + "roma", + -12.222143173217773 + ], + [ + "▁1792", + -12.222146987915039 + ], + [ + "strate", + -12.22217845916748 + ], + [ + "▁Companies", + -12.222332954406738 + ], + [ + "▁Wemble", + -12.222721099853516 + ], + [ + "▁Nap", + -12.222771644592285 + ], + [ + "▁extinguish", + -12.222925186157227 + ], + [ + "▁Rebellion", + -12.222931861877441 + ], + [ + "▁fal", + -12.223048210144043 + ], + [ + "▁compromised", + -12.223183631896973 + ], + [ + "CF", + -12.223203659057617 + ], + [ + "▁stalled", + -12.22338581085205 + ], + [ + "▁ambulance", + -12.223518371582031 + ], + [ + "▁Compared", + -12.223604202270508 + ], + [ + "▁distortion", + -12.223713874816895 + ], + [ + "▁martin", + -12.223734855651855 + ], + [ + "uate", + -12.223928451538086 + ], + [ + "▁Results", + -12.224111557006836 + ], + [ + "▁skirt", + -12.224200248718262 + ], + [ + "▁ˈ", + -12.224397659301758 + ], + [ + "▁Malaysian", + -12.224401473999023 + ], + [ + "cyclic", + -12.224684715270996 + ], + [ + "▁sporadic", + -12.224703788757324 + ], + [ + "▁Illustrated", + -12.22470474243164 + ], + [ + "▁bargain", + -12.22470474243164 + ], + [ + "▁connector", + -12.224738121032715 + ], + [ + "▁Playing", + -12.22481918334961 + ], + [ + "oche", + -12.224891662597656 + ], + [ + "▁stripes", + -12.225031852722168 + ], + [ + "▁millennium", + -12.225298881530762 + ], + [ + "▁anthology", + -12.225327491760254 + ], + [ + "▁dissolve", + -12.225603103637695 + ], + [ + "▁1805", + -12.225687026977539 + ], + [ + "horse", + -12.225706100463867 + ], + [ + "▁Rao", + -12.225723266601562 + ], + [ + "▁Bf", + -12.225767135620117 + ], + [ + "κ", + -12.225893020629883 + ], + [ + "▁catastrophic", + -12.225893020629883 + ], + [ + "▁psychedelic", + -12.225893020629883 + ], + [ + "▁Himalaya", + -12.2258939743042 + ], + [ + "▁Paraguay", + -12.2258939743042 + ], + [ + "▁Memory", + -12.225894927978516 + ], + [ + "▁stint", + -12.225909233093262 + ], + [ + "▁logging", + -12.226115226745605 + ], + [ + "▁Conan", + -12.22644329071045 + ], + [ + "▁wrought", + -12.226487159729004 + ], + [ + "▁Smithsonian", + -12.22648811340332 + ], + [ + "▁biomass", + -12.226493835449219 + ], + [ + "▁geology", + -12.226534843444824 + ], + [ + "spor", + -12.226741790771484 + ], + [ + "▁revive", + -12.22675609588623 + ], + [ + "▁Nigel", + -12.226794242858887 + ], + [ + "what", + -12.226948738098145 + ], + [ + "▁contempt", + -12.227082252502441 + ], + [ + "▁blunt", + -12.227083206176758 + ], + [ + "▁airway", + -12.22730541229248 + ], + [ + "astic", + -12.227350234985352 + ], + [ + "▁taxation", + -12.227417945861816 + ], + [ + "▁Heroes", + -12.22746467590332 + ], + [ + "▁repeating", + -12.227520942687988 + ], + [ + "▁worm", + -12.227563858032227 + ], + [ + "▁centred", + -12.227593421936035 + ], + [ + "▁republican", + -12.2275972366333 + ], + [ + "▁impress", + -12.227605819702148 + ], + [ + "▁Bright", + -12.227620124816895 + ], + [ + "▁Mathematics", + -12.227677345275879 + ], + [ + "▁pilgrimage", + -12.227677345275879 + ], + [ + "filtration", + -12.227682113647461 + ], + [ + "▁swift", + -12.227794647216797 + ], + [ + "▁standardized", + -12.22801399230957 + ], + [ + "▁Eurasian", + -12.228021621704102 + ], + [ + "▁pseudonym", + -12.228273391723633 + ], + [ + "▁attendant", + -12.228555679321289 + ], + [ + "HR", + -12.228670120239258 + ], + [ + "▁$2", + -12.228677749633789 + ], + [ + "▁Anglia", + -12.228754043579102 + ], + [ + "▁symmetry", + -12.22886848449707 + ], + [ + "zie", + -12.228882789611816 + ], + [ + "▁Zam", + -12.229095458984375 + ], + [ + "▁Natal", + -12.229103088378906 + ], + [ + "▁Kana", + -12.229218482971191 + ], + [ + "▁landfill", + -12.229290962219238 + ], + [ + "▁Olga", + -12.229320526123047 + ], + [ + "▁nursery", + -12.229331970214844 + ], + [ + "к", + -12.22946548461914 + ], + [ + "▁Dominique", + -12.22946548461914 + ], + [ + "patri", + -12.229493141174316 + ], + [ + "▁Plato", + -12.229680061340332 + ], + [ + "▁duel", + -12.229745864868164 + ], + [ + "▁Bench", + -12.229928970336914 + ], + [ + "▁Door", + -12.229948043823242 + ], + [ + "▁Dominion", + -12.230062484741211 + ], + [ + "▁cleaner", + -12.230085372924805 + ], + [ + "▁enamel", + -12.230664253234863 + ], + [ + "DD", + -12.230682373046875 + ], + [ + "▁promoter", + -12.230688095092773 + ], + [ + "▁liability", + -12.230951309204102 + ], + [ + "▁acceleration", + -12.231256484985352 + ], + [ + "▁excerpt", + -12.231256484985352 + ], + [ + "▁identities", + -12.231256484985352 + ], + [ + "▁legislator", + -12.231256484985352 + ], + [ + "▁glacial", + -12.231287956237793 + ], + [ + "kò", + -12.231565475463867 + ], + [ + "▁Peck", + -12.2316255569458 + ], + [ + "▁Walton", + -12.231657028198242 + ], + [ + "▁Ludwig", + -12.231853485107422 + ], + [ + "▁hereditary", + -12.231853485107422 + ], + [ + "▁stimulation", + -12.231853485107422 + ], + [ + "▁petroleum", + -12.231854438781738 + ], + [ + "▁USSR", + -12.232056617736816 + ], + [ + "▁Watt", + -12.232093811035156 + ], + [ + "▁Alexandre", + -12.232330322265625 + ], + [ + "▁Judith", + -12.232453346252441 + ], + [ + "▁superb", + -12.232522964477539 + ], + [ + "▁Function", + -12.232528686523438 + ], + [ + "▁cleric", + -12.232645034790039 + ], + [ + "▁amended", + -12.23292350769043 + ], + [ + "▁torch", + -12.233057975769043 + ], + [ + "▁Teacher", + -12.23320484161377 + ], + [ + "jon", + -12.233314514160156 + ], + [ + "▁Perform", + -12.23338794708252 + ], + [ + "▁deception", + -12.233542442321777 + ], + [ + "▁battlecruiser", + -12.233545303344727 + ], + [ + "▁sewer", + -12.233551025390625 + ], + [ + "▁requesting", + -12.23361873626709 + ], + [ + "▁Habsburg", + -12.233649253845215 + ], + [ + "4)", + -12.233799934387207 + ], + [ + "▁100%", + -12.233806610107422 + ], + [ + "▁flux", + -12.23392105102539 + ], + [ + "▁motto", + -12.233926773071289 + ], + [ + "cock", + -12.2339506149292 + ], + [ + "▁Orion", + -12.234137535095215 + ], + [ + "▁britanik", + -12.234248161315918 + ], + [ + "▁paternal", + -12.234249114990234 + ], + [ + "▁Nurse", + -12.234417915344238 + ], + [ + "▁blowing", + -12.234457015991211 + ], + [ + "▁pumping", + -12.234607696533203 + ], + [ + "▁Tap", + -12.234618186950684 + ], + [ + "blast", + -12.23479175567627 + ], + [ + "▁microscopic", + -12.234848022460938 + ], + [ + "▁Easy", + -12.234861373901367 + ], + [ + "▁imply", + -12.23491382598877 + ], + [ + "▁Regulation", + -12.234922409057617 + ], + [ + "zone", + -12.23496150970459 + ], + [ + "▁Squad", + -12.235032081604004 + ], + [ + "▁Casey", + -12.235116004943848 + ], + [ + "▁algebra", + -12.23544692993164 + ], + [ + "▁Lindsay", + -12.235477447509766 + ], + [ + "▁collided", + -12.235542297363281 + ], + [ + "▁rowing", + -12.235557556152344 + ], + [ + "▁Wilkinson", + -12.235586166381836 + ], + [ + "▁Payne", + -12.235620498657227 + ], + [ + "▁perennial", + -12.235795974731445 + ], + [ + "▁gifted", + -12.235993385314941 + ], + [ + "▁kidnapped", + -12.23608684539795 + ], + [ + "▁Medina", + -12.236445426940918 + ], + [ + "▁incoming", + -12.236529350280762 + ], + [ + "▁Sitwèb", + -12.236648559570312 + ], + [ + "▁Atlas", + -12.236660957336426 + ], + [ + "ivist", + -12.23674488067627 + ], + [ + "uria", + -12.236964225769043 + ], + [ + "▁unanimously", + -12.237065315246582 + ], + [ + "fran", + -12.237207412719727 + ], + [ + "lette", + -12.237285614013672 + ], + [ + "▁inclusive", + -12.237405776977539 + ], + [ + "lux", + -12.237430572509766 + ], + [ + "▁Tate", + -12.237539291381836 + ], + [ + "▁finishes", + -12.237628936767578 + ], + [ + "▁Sabin", + -12.237887382507324 + ], + [ + "▁Cub", + -12.237937927246094 + ], + [ + "▁136", + -12.238037109375 + ], + [ + "glyph", + -12.238167762756348 + ], + [ + "▁dwell", + -12.23823070526123 + ], + [ + "Our", + -12.238337516784668 + ], + [ + "▁avenue", + -12.238458633422852 + ], + [ + "▁Sexual", + -12.23853874206543 + ], + [ + "▁reigning", + -12.238578796386719 + ], + [ + "▁Myers", + -12.238811492919922 + ], + [ + "▁suppose", + -12.238821983337402 + ], + [ + "▁Chap", + -12.239023208618164 + ], + [ + "▁Borneo", + -12.239151954650879 + ], + [ + "BT", + -12.239282608032227 + ], + [ + "▁156", + -12.239330291748047 + ], + [ + "▁addict", + -12.239374160766602 + ], + [ + "▁equator", + -12.23958683013916 + ], + [ + "▁Eminem", + -12.239659309387207 + ], + [ + "▁rematch", + -12.239662170410156 + ], + [ + "▁Macdonald", + -12.240260124206543 + ], + [ + "▁feasible", + -12.240260124206543 + ], + [ + "held", + -12.240293502807617 + ], + [ + "hausen", + -12.240365982055664 + ], + [ + "▁Chaplin", + -12.240426063537598 + ], + [ + "▁Clayton", + -12.240639686584473 + ], + [ + "▁Mitch", + -12.240656852722168 + ], + [ + "▁Lund", + -12.240702629089355 + ], + [ + "▁condemn", + -12.240842819213867 + ], + [ + "▁Bertrand", + -12.240862846374512 + ], + [ + "▁Marlborough", + -12.240862846374512 + ], + [ + "▁Patterson", + -12.240862846374512 + ], + [ + "▁Sarawak", + -12.240862846374512 + ], + [ + "▁Superior", + -12.24087905883789 + ], + [ + "▁mascot", + -12.240893363952637 + ], + [ + "▁complain", + -12.240903854370117 + ], + [ + "▁comparative", + -12.240995407104492 + ], + [ + "▁Bedford", + -12.241005897521973 + ], + [ + "▁nineteen", + -12.241080284118652 + ], + [ + "▁Fram", + -12.241095542907715 + ], + [ + "qi", + -12.241118431091309 + ], + [ + "▁Transylvania", + -12.241466522216797 + ], + [ + "▁stakeholders", + -12.241467475891113 + ], + [ + "government", + -12.241561889648438 + ], + [ + "▁Alec", + -12.242104530334473 + ], + [ + "▁encouragement", + -12.242344856262207 + ], + [ + "▁distraction", + -12.242433547973633 + ], + [ + "▁Salmon", + -12.242753028869629 + ], + [ + "▁148", + -12.242782592773438 + ], + [ + "See", + -12.243002891540527 + ], + [ + "▁Krusty", + -12.243282318115234 + ], + [ + "▁casino", + -12.243293762207031 + ], + [ + "▁localized", + -12.243305206298828 + ], + [ + "▁tile", + -12.243306159973145 + ], + [ + "▁gill", + -12.243311882019043 + ], + [ + "▁barometric", + -12.243353843688965 + ], + [ + "▁Novel", + -12.243358612060547 + ], + [ + "▁appropriately", + -12.24338150024414 + ], + [ + "raj", + -12.24339771270752 + ], + [ + "▁Bron", + -12.2434720993042 + ], + [ + "▁Masa", + -12.243473052978516 + ], + [ + "▁Jou", + -12.243478775024414 + ], + [ + "(1)", + -12.243546485900879 + ], + [ + "corp", + -12.243741035461426 + ], + [ + "▁Horizon", + -12.243884086608887 + ], + [ + "▁diffusion", + -12.243884086608887 + ], + [ + "▁sophomore", + -12.243884086608887 + ], + [ + "▁gonna", + -12.243896484375 + ], + [ + "▁Gain", + -12.243918418884277 + ], + [ + "▁optional", + -12.24399471282959 + ], + [ + "▁trunkline", + -12.244176864624023 + ], + [ + "▁enrich", + -12.244261741638184 + ], + [ + "giving", + -12.244364738464355 + ], + [ + "▁Delgado", + -12.244489669799805 + ], + [ + "▁Dante", + -12.244566917419434 + ], + [ + "▁Milne", + -12.244648933410645 + ], + [ + "▁underside", + -12.244832992553711 + ], + [ + "▁Canon", + -12.244867324829102 + ], + [ + "▁‐", + -12.24505615234375 + ], + [ + "▁turkey", + -12.245095252990723 + ], + [ + "▁Smash", + -12.245102882385254 + ], + [ + "▁reintroduc", + -12.245105743408203 + ], + [ + "▁Pound", + -12.245180130004883 + ], + [ + "▁Valve", + -12.24521541595459 + ], + [ + "▁Beaver", + -12.245394706726074 + ], + [ + "▁stallion", + -12.2454833984375 + ], + [ + "▁sync", + -12.245490074157715 + ], + [ + "▁Vulcan", + -12.24570083618164 + ], + [ + "▁scr", + -12.245704650878906 + ], + [ + "▁Terminal", + -12.245716094970703 + ], + [ + "▁swarm", + -12.245718955993652 + ], + [ + "anza", + -12.245806694030762 + ], + [ + "▁Picard", + -12.245918273925781 + ], + [ + "▁travelers", + -12.245983123779297 + ], + [ + "▁volunteered", + -12.245984077453613 + ], + [ + "▁nowhere", + -12.246003150939941 + ], + [ + "▁insulation", + -12.246171951293945 + ], + [ + "pressed", + -12.24618148803711 + ], + [ + "▁Except", + -12.246238708496094 + ], + [ + "▁stylistic", + -12.246307373046875 + ], + [ + "▁Hamm", + -12.24632453918457 + ], + [ + "▁Middleton", + -12.246442794799805 + ], + [ + "▁randomly", + -12.246596336364746 + ], + [ + "▁cosmetic", + -12.24691390991211 + ], + [ + "▁Bolshevik", + -12.246914863586426 + ], + [ + "▁Revival", + -12.246914863586426 + ], + [ + "▁enhancing", + -12.246914863586426 + ], + [ + "▁enlighten", + -12.246914863586426 + ], + [ + "▁semester", + -12.246916770935059 + ], + [ + "▁additive", + -12.24703598022461 + ], + [ + "▁foam", + -12.247255325317383 + ], + [ + "PH", + -12.247784614562988 + ], + [ + "Gra", + -12.24789047241211 + ], + [ + "▁RCA", + -12.247987747192383 + ], + [ + "▁Macedonia", + -12.248078346252441 + ], + [ + "▁Telescope", + -12.248136520385742 + ], + [ + "eval", + -12.248147964477539 + ], + [ + "▁Gel", + -12.248576164245605 + ], + [ + "▁unbeaten", + -12.248737335205078 + ], + [ + "▁Macbeth", + -12.248738288879395 + ], + [ + "▁dub", + -12.248740196228027 + ], + [ + "▁clutch", + -12.24874210357666 + ], + [ + "▁Luna", + -12.248747825622559 + ], + [ + "▁ribbon", + -12.24876594543457 + ], + [ + "▁assessing", + -12.248876571655273 + ], + [ + "▁tanker", + -12.2489652633667 + ], + [ + "▁Writer", + -12.249024391174316 + ], + [ + "▁215", + -12.249030113220215 + ], + [ + "▁1834", + -12.249296188354492 + ], + [ + "▁Consumer", + -12.249346733093262 + ], + [ + "▁Slant", + -12.249364852905273 + ], + [ + "▁subjective", + -12.249457359313965 + ], + [ + "▁Diva", + -12.249519348144531 + ], + [ + "fel", + -12.24963092803955 + ], + [ + "▁Graf", + -12.249674797058105 + ], + [ + "breaker", + -12.249767303466797 + ], + [ + "imon", + -12.249821662902832 + ], + [ + "mala", + -12.249902725219727 + ], + [ + "forth", + -12.249946594238281 + ], + [ + "▁Dickinson", + -12.249954223632812 + ], + [ + "▁Kawolin", + -12.249954223632812 + ], + [ + "▁Dav", + -12.249961853027344 + ], + [ + "▁Latino", + -12.250051498413086 + ], + [ + "iggs", + -12.250313758850098 + ], + [ + "▁splitting", + -12.250382423400879 + ], + [ + "▁Raf", + -12.250734329223633 + ], + [ + "▁convict", + -12.251030921936035 + ], + [ + "▁Excel", + -12.251058578491211 + ], + [ + "▁Alcohol", + -12.251172065734863 + ], + [ + "▁inaccurate", + -12.25117301940918 + ], + [ + "▁optimize", + -12.251180648803711 + ], + [ + "▁neighbourhood", + -12.251202583312988 + ], + [ + "Connor", + -12.251359939575195 + ], + [ + "love", + -12.251359939575195 + ], + [ + "▁divert", + -12.251405715942383 + ], + [ + "▁Hubert", + -12.25146770477295 + ], + [ + "èz", + -12.251468658447266 + ], + [ + "▁IOC", + -12.251555442810059 + ], + [ + "▁Keynes", + -12.252069473266602 + ], + [ + "▁protector", + -12.252086639404297 + ], + [ + "▁peat", + -12.252283096313477 + ], + [ + "iente", + -12.252285957336426 + ], + [ + "ody", + -12.252585411071777 + ], + [ + "▁Coleman", + -12.252615928649902 + ], + [ + "▁lessen", + -12.252650260925293 + ], + [ + "▁Pratt", + -12.25295352935791 + ], + [ + "▁153", + -12.25296688079834 + ], + [ + "▁communal", + -12.253003120422363 + ], + [ + "▁Allison", + -12.253155708312988 + ], + [ + "▁Chrono", + -12.253466606140137 + ], + [ + "▁deprived", + -12.25348949432373 + ], + [ + "▁patriarch", + -12.253613471984863 + ], + [ + "▁Oswald", + -12.25362491607666 + ], + [ + "▁journalism", + -12.253625869750977 + ], + [ + "▁hypertension", + -12.253628730773926 + ], + [ + "▁Mina", + -12.25363826751709 + ], + [ + "▁expectation", + -12.253803253173828 + ], + [ + "▁1806", + -12.253976821899414 + ], + [ + "▁Ariel", + -12.254122734069824 + ], + [ + "▁congratulat", + -12.254225730895996 + ], + [ + "▁neat", + -12.254298210144043 + ], + [ + "▁Persia", + -12.254302978515625 + ], + [ + "bah", + -12.254400253295898 + ], + [ + "▁Sinai", + -12.25473690032959 + ], + [ + "▁convened", + -12.254837989807129 + ], + [ + "▁Paula", + -12.254910469055176 + ], + [ + "rach", + -12.254922866821289 + ], + [ + "▁accidental", + -12.255040168762207 + ], + [ + "▁environmentally", + -12.25505256652832 + ], + [ + "▁Trou", + -12.255057334899902 + ], + [ + "▁Pomp", + -12.25536060333252 + ], + [ + "▁Offensive", + -12.255448341369629 + ], + [ + "▁Sergio", + -12.25550365447998 + ], + [ + "▁Amanda", + -12.255685806274414 + ], + [ + "▁Friend", + -12.255781173706055 + ], + [ + "▁Nut", + -12.255956649780273 + ], + [ + "euil", + -12.25598430633545 + ], + [ + "▁tributaries", + -12.256060600280762 + ], + [ + "kai", + -12.256101608276367 + ], + [ + "▁ingest", + -12.256232261657715 + ], + [ + "▁crying", + -12.256290435791016 + ], + [ + "▁Cove", + -12.256490707397461 + ], + [ + "▁Benson", + -12.256707191467285 + ], + [ + "▁Alta", + -12.256711959838867 + ], + [ + "▁deflect", + -12.256760597229004 + ], + [ + "▁Tale", + -12.256988525390625 + ], + [ + "UL", + -12.257142066955566 + ], + [ + "▁Feeling", + -12.257147789001465 + ], + [ + "▁summarized", + -12.257149696350098 + ], + [ + "▁Salem", + -12.257158279418945 + ], + [ + "л", + -12.25728702545166 + ], + [ + "▁Kho", + -12.257314682006836 + ], + [ + "▁salad", + -12.257362365722656 + ], + [ + "AI", + -12.257391929626465 + ], + [ + "▁Subsequent", + -12.257439613342285 + ], + [ + "urban", + -12.257486343383789 + ], + [ + "bolic", + -12.257672309875488 + ], + [ + "▁periodically", + -12.257841110229492 + ], + [ + "▁Reverend", + -12.25790023803711 + ], + [ + "▁Peterson", + -12.258051872253418 + ], + [ + "▁HM", + -12.258493423461914 + ], + [ + "▁Guillaume", + -12.258514404296875 + ], + [ + "▁unfamiliar", + -12.258514404296875 + ], + [ + "ecki", + -12.258928298950195 + ], + [ + "▁concealed", + -12.258999824523926 + ], + [ + "▁nucle", + -12.259055137634277 + ], + [ + "▁distorted", + -12.25939655303955 + ], + [ + "▁Platinum", + -12.259742736816406 + ], + [ + "▁Harald", + -12.259902954101562 + ], + [ + "▁Pitchfork", + -12.260357856750488 + ], + [ + "▁paradigm", + -12.260363578796387 + ], + [ + "▁influx", + -12.260368347167969 + ], + [ + "▁facade", + -12.260387420654297 + ], + [ + "▁rim", + -12.260418891906738 + ], + [ + "▁outlet", + -12.26076889038086 + ], + [ + "▁Rex", + -12.260797500610352 + ], + [ + "▁Psych", + -12.260798454284668 + ], + [ + "▁Brady", + -12.260847091674805 + ], + [ + "▁desanm", + -12.26097583770752 + ], + [ + "▁Gaming", + -12.261220932006836 + ], + [ + "▁Confederation", + -12.261589050292969 + ], + [ + "▁hawk", + -12.26171875 + ], + [ + "▁fuse", + -12.261768341064453 + ], + [ + "▁Terre", + -12.261880874633789 + ], + [ + "▁CNN", + -12.262210845947266 + ], + [ + "▁Roc", + -12.262243270874023 + ], + [ + "▁rainforest", + -12.262246131896973 + ], + [ + "▁impending", + -12.262285232543945 + ], + [ + "graphy", + -12.262563705444336 + ], + [ + "▁1828", + -12.262923240661621 + ], + [ + "▁bagay", + -12.26292610168457 + ], + [ + "track", + -12.26301383972168 + ], + [ + "▁Aztec", + -12.263023376464844 + ], + [ + "▁Standing", + -12.263178825378418 + ], + [ + "▁Vig", + -12.26325798034668 + ], + [ + "▁Nicaragua", + -12.263439178466797 + ], + [ + "▁prosecute", + -12.263479232788086 + ], + [ + "efficient", + -12.2634859085083 + ], + [ + "▁turbo", + -12.263579368591309 + ], + [ + "▁Bean", + -12.263676643371582 + ], + [ + "▁node", + -12.263677597045898 + ], + [ + "home", + -12.263687133789062 + ], + [ + "▁139", + -12.263691902160645 + ], + [ + "▁Hipper", + -12.263691902160645 + ], + [ + "▁chronicler", + -12.263705253601074 + ], + [ + "▁Running", + -12.263729095458984 + ], + [ + "▁uncover", + -12.263795852661133 + ], + [ + "▁Martín", + -12.264028549194336 + ], + [ + "▁Niagara", + -12.264056205749512 + ], + [ + "▁Equi", + -12.2642822265625 + ], + [ + "▁descending", + -12.264639854431152 + ], + [ + "▁ROK", + -12.264676094055176 + ], + [ + "▁Notable", + -12.264720916748047 + ], + [ + "▁1795", + -12.265053749084473 + ], + [ + "-14", + -12.265076637268066 + ], + [ + "▁174", + -12.265300750732422 + ], + [ + "▁quarry", + -12.265331268310547 + ], + [ + "▁Chun", + -12.265556335449219 + ], + [ + "▁gram", + -12.265660285949707 + ], + [ + "▁simulate", + -12.265667915344238 + ], + [ + "▁obstacle", + -12.265975952148438 + ], + [ + "▁Kerr", + -12.26598834991455 + ], + [ + "▁drained", + -12.266276359558105 + ], + [ + "▁Tao", + -12.266278266906738 + ], + [ + "▁Paulo", + -12.266283988952637 + ], + [ + "▁communicating", + -12.266529083251953 + ], + [ + "▁dragged", + -12.266626358032227 + ], + [ + "▁Å", + -12.266695976257324 + ], + [ + "▁USAF", + -12.266861915588379 + ], + [ + "ı", + -12.2671480178833 + ], + [ + "▁transporting", + -12.267261505126953 + ], + [ + "▁Prem", + -12.267265319824219 + ], + [ + "▁Coke", + -12.267358779907227 + ], + [ + "▁Maritime", + -12.267364501953125 + ], + [ + "▁compile", + -12.267449378967285 + ], + [ + "▁Neville", + -12.267538070678711 + ], + [ + "zia", + -12.267723083496094 + ], + [ + "▁Potomac", + -12.267767906188965 + ], + [ + "▁Harriet", + -12.267773628234863 + ], + [ + "▁intrigue", + -12.267773628234863 + ], + [ + "▁kominote", + -12.267789840698242 + ], + [ + "▁pastor", + -12.26788330078125 + ], + [ + "VI", + -12.268040657043457 + ], + [ + "▁Semi", + -12.268128395080566 + ], + [ + "▁Viol", + -12.268281936645508 + ], + [ + "▁Reconstruction", + -12.268387794494629 + ], + [ + "▁Wollstonecraft", + -12.268387794494629 + ], + [ + "▁imbalance", + -12.268387794494629 + ], + [ + "▁proclamation", + -12.268387794494629 + ], + [ + "▁renumbering", + -12.268388748168945 + ], + [ + "▁amidships", + -12.268390655517578 + ], + [ + "▁pledge", + -12.268391609191895 + ], + [ + "▁touches", + -12.268430709838867 + ], + [ + "jen", + -12.268460273742676 + ], + [ + "▁Qur", + -12.268856048583984 + ], + [ + "▁Shoot", + -12.268898963928223 + ], + [ + "▁spectacle", + -12.269007682800293 + ], + [ + "▁spar", + -12.269156455993652 + ], + [ + "▁167", + -12.269624710083008 + ], + [ + "▁encircle", + -12.269631385803223 + ], + [ + "▁truce", + -12.269633293151855 + ], + [ + "▁raft", + -12.269699096679688 + ], + [ + "▁maximize", + -12.269758224487305 + ], + [ + "-13", + -12.269769668579102 + ], + [ + "▁Won", + -12.269776344299316 + ], + [ + "▁circum", + -12.269925117492676 + ], + [ + "▁stresses", + -12.269998550415039 + ], + [ + "▁saturated", + -12.270090103149414 + ], + [ + "▁Honduras", + -12.27025032043457 + ], + [ + "▁Atomic", + -12.270259857177734 + ], + [ + "▁158", + -12.270317077636719 + ], + [ + "▁Stor", + -12.270501136779785 + ], + [ + "▁reprinted", + -12.27052116394043 + ], + [ + "▁comparatively", + -12.270734786987305 + ], + [ + "▁Cartoon", + -12.270873069763184 + ], + [ + "▁Martínez", + -12.270919799804688 + ], + [ + "▁Biden", + -12.270950317382812 + ], + [ + "▁Flint", + -12.270965576171875 + ], + [ + "▁Hari", + -12.27111530303955 + ], + [ + "▁nationalism", + -12.271153450012207 + ], + [ + "▁Outer", + -12.271333694458008 + ], + [ + "▁owe", + -12.271509170532227 + ], + [ + "▁Bolivia", + -12.271512031555176 + ], + [ + "▁Doom", + -12.271514892578125 + ], + [ + "kirk", + -12.271784782409668 + ], + [ + "▁attackers", + -12.271888732910156 + ], + [ + "▁Morales", + -12.272066116333008 + ], + [ + "▁useless", + -12.27209186553955 + ], + [ + "▁Jurassic", + -12.272115707397461 + ], + [ + "▁Mozambique", + -12.272115707397461 + ], + [ + "▁humble", + -12.272183418273926 + ], + [ + "▁Janeiro", + -12.272184371948242 + ], + [ + "▁McCoy", + -12.272208213806152 + ], + [ + "▁evade", + -12.272210121154785 + ], + [ + "▁Hanover", + -12.272367477416992 + ], + [ + "▁prostate", + -12.272590637207031 + ], + [ + "σ", + -12.272738456726074 + ], + [ + "▁Ekriven", + -12.272738456726074 + ], + [ + "▁consonant", + -12.272741317749023 + ], + [ + "Paul", + -12.27280330657959 + ], + [ + "▁progressively", + -12.272859573364258 + ], + [ + "▁GB", + -12.273056983947754 + ], + [ + "▁rabbi", + -12.2731351852417 + ], + [ + "▁Recently", + -12.273172378540039 + ], + [ + "▁SG", + -12.27319049835205 + ], + [ + "▁Confederacy", + -12.273361206054688 + ], + [ + "▁envoy", + -12.27336311340332 + ], + [ + "▁avril", + -12.273364067077637 + ], + [ + "▁Mead", + -12.273839950561523 + ], + [ + "▁gateway", + -12.273977279663086 + ], + [ + "▁Belfast", + -12.273984909057617 + ], + [ + "opsis", + -12.274036407470703 + ], + [ + "▁Macedonian", + -12.27438735961914 + ], + [ + "élé", + -12.274418830871582 + ], + [ + "▁Heather", + -12.27459716796875 + ], + [ + "isha", + -12.274616241455078 + ], + [ + "▁epithet", + -12.274629592895508 + ], + [ + "▁Rider", + -12.27466106414795 + ], + [ + "▁raiding", + -12.274683952331543 + ], + [ + "▁Biblical", + -12.275232315063477 + ], + [ + "▁cervical", + -12.275232315063477 + ], + [ + "▁flattened", + -12.275233268737793 + ], + [ + "▁Lana", + -12.275266647338867 + ], + [ + "▁stairs", + -12.275315284729004 + ], + [ + "▁Casino", + -12.275365829467773 + ], + [ + "▁1797", + -12.275412559509277 + ], + [ + "▁prehistoric", + -12.275856971740723 + ], + [ + "▁pwodui", + -12.275857925415039 + ], + [ + "▁revisit", + -12.275859832763672 + ], + [ + "▁Ranger", + -12.276285171508789 + ], + [ + "▁assure", + -12.276352882385254 + ], + [ + "UM", + -12.27636432647705 + ], + [ + "▁uneven", + -12.276397705078125 + ], + [ + "▁Cherokee", + -12.276482582092285 + ], + [ + "▁IBM", + -12.276511192321777 + ], + [ + "▁(4)", + -12.276599884033203 + ], + [ + "▁Duran", + -12.276748657226562 + ], + [ + "▁interacting", + -12.277046203613281 + ], + [ + "▁Solid", + -12.277081489562988 + ], + [ + "▁Nadu", + -12.27724552154541 + ], + [ + "▁contention", + -12.277440071105957 + ], + [ + "opus", + -12.2775239944458 + ], + [ + "▁booklet", + -12.277548789978027 + ], + [ + "▁Shankar", + -12.277647972106934 + ], + [ + "▁stole", + -12.2777738571167 + ], + [ + "scription", + -12.277817726135254 + ], + [ + "GM", + -12.278120994567871 + ], + [ + "▁occupant", + -12.278359413146973 + ], + [ + "▁squirrel", + -12.278359413146973 + ], + [ + "▁exposing", + -12.278360366821289 + ], + [ + "▁Legacy", + -12.27839183807373 + ], + [ + "▁Cyril", + -12.278414726257324 + ], + [ + "▁Prinz", + -12.27842903137207 + ], + [ + "▁steward", + -12.278536796569824 + ], + [ + "▁Bayern", + -12.278687477111816 + ], + [ + "▁Politics", + -12.279012680053711 + ], + [ + "▁Publications", + -12.279367446899414 + ], + [ + "▁adolescent", + -12.279380798339844 + ], + [ + "open", + -12.27955436706543 + ], + [ + "▁Earlier", + -12.279583930969238 + ], + [ + "ambi", + -12.279763221740723 + ], + [ + "▁carbonate", + -12.280057907104492 + ], + [ + "▁Mik", + -12.280113220214844 + ], + [ + "▁Salford", + -12.280121803283691 + ], + [ + "▁lump", + -12.280197143554688 + ], + [ + "▁choreography", + -12.280241012573242 + ], + [ + "▁combustion", + -12.280241012573242 + ], + [ + "▁Batista", + -12.28024959564209 + ], + [ + "▁keel", + -12.280339241027832 + ], + [ + "▁Murder", + -12.280641555786133 + ], + [ + "▁psychiatrist", + -12.280868530273438 + ], + [ + "▁infamous", + -12.28087043762207 + ], + [ + "▁widened", + -12.281038284301758 + ], + [ + "▁Feel", + -12.28128433227539 + ], + [ + "▁Moffat", + -12.281498908996582 + ], + [ + "▁ignite", + -12.28153133392334 + ], + [ + "▁scare", + -12.281558990478516 + ], + [ + "trust", + -12.281848907470703 + ], + [ + "▁Mud", + -12.281982421875 + ], + [ + "▁parasite", + -12.281986236572266 + ], + [ + "▁McClellan", + -12.282125473022461 + ], + [ + "▁Resource", + -12.282200813293457 + ], + [ + "▁Loop", + -12.28228759765625 + ], + [ + "▁digestion", + -12.282371520996094 + ], + [ + "▁Nasser", + -12.282402992248535 + ], + [ + "▁emitted", + -12.282424926757812 + ], + [ + "▁Metallica", + -12.282754898071289 + ], + [ + "▁slash", + -12.282858848571777 + ], + [ + "▁Nicola", + -12.28312873840332 + ], + [ + "▁coconut", + -12.2833833694458 + ], + [ + "▁Aurora", + -12.283390998840332 + ], + [ + "▁succeeding", + -12.283401489257812 + ], + [ + "etto", + -12.283467292785645 + ], + [ + "▁Rescue", + -12.283472061157227 + ], + [ + "▁147", + -12.28369140625 + ], + [ + "▁sewage", + -12.284016609191895 + ], + [ + "addy", + -12.284028053283691 + ], + [ + "▁Stevenson", + -12.28433609008789 + ], + [ + "▁signaling", + -12.28442096710205 + ], + [ + "▁Istanbul", + -12.284643173217773 + ], + [ + "▁grateful", + -12.284647941589355 + ], + [ + "▁Elements", + -12.284661293029785 + ], + [ + "▁enrollment", + -12.284839630126953 + ], + [ + "▁Previously", + -12.284883499145508 + ], + [ + "▁classify", + -12.284913063049316 + ], + [ + "▁airplay", + -12.284933090209961 + ], + [ + "▁feudal", + -12.2854585647583 + ], + [ + "▁Effect", + -12.28567886352539 + ], + [ + "▁Fried", + -12.285737991333008 + ], + [ + "amphetamine", + -12.285904884338379 + ], + [ + "▁Amber", + -12.2859525680542 + ], + [ + "▁catcher", + -12.286142349243164 + ], + [ + "▁Slow", + -12.28623104095459 + ], + [ + "▁Describe", + -12.286245346069336 + ], + [ + "▁tablet", + -12.286310195922852 + ], + [ + "▁swear", + -12.286483764648438 + ], + [ + "▁Davenport", + -12.28653621673584 + ], + [ + "▁adaptive", + -12.286584854125977 + ], + [ + "▁purity", + -12.286636352539062 + ], + [ + "▁pledged", + -12.286779403686523 + ], + [ + "▁experimentation", + -12.286782264709473 + ], + [ + "▁disguise", + -12.286952018737793 + ], + [ + "▁Related", + -12.2871732711792 + ], + [ + "▁propelled", + -12.287213325500488 + ], + [ + "▁Plum", + -12.287217140197754 + ], + [ + "▁derive", + -12.287224769592285 + ], + [ + "▁escorting", + -12.287230491638184 + ], + [ + "▁Religious", + -12.287799835205078 + ], + [ + "▁Rip", + -12.287899017333984 + ], + [ + "▁Valle", + -12.288591384887695 + ], + [ + "▁kan", + -12.288697242736816 + ], + [ + "▁Canning", + -12.288712501525879 + ], + [ + "forest", + -12.28896427154541 + ], + [ + "▁Llan", + -12.289169311523438 + ], + [ + "oscope", + -12.289274215698242 + ], + [ + "▁Thought", + -12.289427757263184 + ], + [ + "▁arising", + -12.289436340332031 + ], + [ + "▁enthusiast", + -12.28951644897461 + ], + [ + "▁Schneider", + -12.289698600769043 + ], + [ + "▁Guil", + -12.289749145507812 + ], + [ + "▁Smyth", + -12.28989315032959 + ], + [ + "▁Measure", + -12.290215492248535 + ], + [ + "▁rhetoric", + -12.290254592895508 + ], + [ + "▁hostility", + -12.290419578552246 + ], + [ + "▁Kawa", + -12.290512084960938 + ], + [ + "▁theorist", + -12.290557861328125 + ], + [ + "▁redesigned", + -12.290841102600098 + ], + [ + "▁nectar", + -12.290968894958496 + ], + [ + "▁Cowboy", + -12.290985107421875 + ], + [ + "▁Emerson", + -12.291016578674316 + ], + [ + "IST", + -12.291121482849121 + ], + [ + "▁unanimous", + -12.29116153717041 + ], + [ + "▁fishes", + -12.291358947753906 + ], + [ + "RF", + -12.291459083557129 + ], + [ + "ENT", + -12.291557312011719 + ], + [ + "lach", + -12.291760444641113 + ], + [ + "▁Burma", + -12.291998863220215 + ], + [ + "river", + -12.292040824890137 + ], + [ + "▁speculate", + -12.292061805725098 + ], + [ + "idio", + -12.292316436767578 + ], + [ + "▁turnover", + -12.292362213134766 + ], + [ + "▁Clair", + -12.292722702026367 + ], + [ + "▁Epstein", + -12.292871475219727 + ], + [ + "▁pulmonary", + -12.292871475219727 + ], + [ + "▁disgust", + -12.292878150939941 + ], + [ + "▁Orient", + -12.292886734008789 + ], + [ + "▁orijin", + -12.292940139770508 + ], + [ + "LT", + -12.292967796325684 + ], + [ + "▁Godwin", + -12.293034553527832 + ], + [ + "▁committing", + -12.293180465698242 + ], + [ + "▁Fell", + -12.293269157409668 + ], + [ + "▁undermine", + -12.293437004089355 + ], + [ + "▁priv", + -12.293449401855469 + ], + [ + "▁compressed", + -12.29347038269043 + ], + [ + "▁Judaism", + -12.293506622314453 + ], + [ + "▁chemotherapy", + -12.293506622314453 + ], + [ + "▁pending", + -12.293606758117676 + ], + [ + "▁Example", + -12.293611526489258 + ], + [ + "▁mistress", + -12.293624877929688 + ], + [ + "▁1600", + -12.293768882751465 + ], + [ + "▁manoeuvre", + -12.293818473815918 + ], + [ + "▁angered", + -12.293835639953613 + ], + [ + "▁Tibetan", + -12.294022560119629 + ], + [ + "▁commuter", + -12.29411506652832 + ], + [ + "▁Target", + -12.29428482055664 + ], + [ + "▁NES", + -12.294346809387207 + ], + [ + "▁wander", + -12.294461250305176 + ], + [ + "▁aisle", + -12.294562339782715 + ], + [ + "bru", + -12.294573783874512 + ], + [ + "psych", + -12.294605255126953 + ], + [ + "bag", + -12.294782638549805 + ], + [ + "▁Scandinavian", + -12.294841766357422 + ], + [ + "▁Crowley", + -12.295088768005371 + ], + [ + "▁Rica", + -12.295211791992188 + ], + [ + "▁Cooke", + -12.295286178588867 + ], + [ + "▁Lemon", + -12.29532527923584 + ], + [ + "▁corrosion", + -12.295416831970215 + ], + [ + "▁relinquish", + -12.295416831970215 + ], + [ + "▁sci", + -12.29543685913086 + ], + [ + "▁Sioux", + -12.295482635498047 + ], + [ + "▁leverage", + -12.29556655883789 + ], + [ + "▁warship", + -12.29557991027832 + ], + [ + "▁Constitutional", + -12.29565143585205 + ], + [ + "▁Concept", + -12.295656204223633 + ], + [ + "▁kite", + -12.2957124710083 + ], + [ + "enthal", + -12.29572582244873 + ], + [ + "▁customary", + -12.296051025390625 + ], + [ + "▁concussion", + -12.296053886413574 + ], + [ + "▁scrutiny", + -12.296053886413574 + ], + [ + "▁undoubtedly", + -12.296053886413574 + ], + [ + "▁strikeouts", + -12.296069145202637 + ], + [ + "▁Kala", + -12.296110153198242 + ], + [ + "▁Gut", + -12.296210289001465 + ], + [ + "UT", + -12.296286582946777 + ], + [ + "aceous", + -12.296440124511719 + ], + [ + "▁wield", + -12.296693801879883 + ], + [ + "litz", + -12.296722412109375 + ], + [ + "▁indulge", + -12.29674243927002 + ], + [ + "hari", + -12.296839714050293 + ], + [ + "▁Pride", + -12.296920776367188 + ], + [ + "▁1816", + -12.296926498413086 + ], + [ + "▁hardest", + -12.297194480895996 + ], + [ + "▁Fiji", + -12.297283172607422 + ], + [ + "▁gunnery", + -12.297334671020508 + ], + [ + "after", + -12.29733943939209 + ], + [ + "▁fifteenth", + -12.297449111938477 + ], + [ + "4,000", + -12.298009872436523 + ], + [ + "▁203", + -12.298094749450684 + ], + [ + "vous", + -12.29837703704834 + ], + [ + "▁regeneration", + -12.298592567443848 + ], + [ + "▁arbitrary", + -12.298606872558594 + ], + [ + "▁lavish", + -12.298613548278809 + ], + [ + "▁slug", + -12.298672676086426 + ], + [ + "▁Canton", + -12.298765182495117 + ], + [ + "sheet", + -12.298843383789062 + ], + [ + "amus", + -12.29893684387207 + ], + [ + "▁Christophe", + -12.299148559570312 + ], + [ + "ς", + -12.299238204956055 + ], + [ + "▁Mauritius", + -12.299246788024902 + ], + [ + "▁innocence", + -12.299246788024902 + ], + [ + "▁occupies", + -12.299246788024902 + ], + [ + "▁Regina", + -12.299250602722168 + ], + [ + "▁monastic", + -12.299263000488281 + ], + [ + "▁154", + -12.29936695098877 + ], + [ + "▁null", + -12.299446105957031 + ], + [ + "▁famine", + -12.299482345581055 + ], + [ + "oloji", + -12.299527168273926 + ], + [ + "▁Discover", + -12.299654006958008 + ], + [ + "▁Brest", + -12.299759864807129 + ], + [ + "▁Hepburn", + -12.299887657165527 + ], + [ + "▁Drop", + -12.3002347946167 + ], + [ + "phonic", + -12.3003511428833 + ], + [ + "▁punished", + -12.300403594970703 + ], + [ + "▁Ö", + -12.300432205200195 + ], + [ + "▁acquaintance", + -12.30052661895752 + ], + [ + "▁fission", + -12.300532341003418 + ], + [ + "▁Eddy", + -12.300538063049316 + ], + [ + "▁Jerome", + -12.300569534301758 + ], + [ + "▁detailing", + -12.300585746765137 + ], + [ + "▁Pent", + -12.3006010055542 + ], + [ + "▁Lore", + -12.300666809082031 + ], + [ + "▁340", + -12.30091381072998 + ], + [ + "▁Deco", + -12.30105972290039 + ], + [ + "▁pioneering", + -12.301091194152832 + ], + [ + "▁177", + -12.301146507263184 + ], + [ + "▁telenovela", + -12.301167488098145 + ], + [ + "▁anterior", + -12.301168441772461 + ], + [ + "▁slab", + -12.301336288452148 + ], + [ + "▁Thé", + -12.301464080810547 + ], + [ + "▁facilitated", + -12.30147647857666 + ], + [ + "▁apology", + -12.301508903503418 + ], + [ + "▁commentator", + -12.30162239074707 + ], + [ + "▁275", + -12.30171012878418 + ], + [ + "▁Rodgers", + -12.301815032958984 + ], + [ + "▁coarse", + -12.30185317993164 + ], + [ + "▁allusion", + -12.302197456359863 + ], + [ + "▁opioid", + -12.302450180053711 + ], + [ + "▁deviation", + -12.302457809448242 + ], + [ + "▁Becket", + -12.302471160888672 + ], + [ + "▁Calder", + -12.302655220031738 + ], + [ + "through", + -12.302825927734375 + ], + [ + "naut", + -12.302873611450195 + ], + [ + "▁Nice", + -12.303112983703613 + ], + [ + "▁Tibet", + -12.303323745727539 + ], + [ + "▁obstruct", + -12.303343772888184 + ], + [ + "▁operative", + -12.303584098815918 + ], + [ + "▁microwave", + -12.303803443908691 + ], + [ + "▁Eduardo", + -12.30394172668457 + ], + [ + "▁bald", + -12.303975105285645 + ], + [ + "▁GPS", + -12.304224967956543 + ], + [ + "▁spokesperson", + -12.304377555847168 + ], + [ + "▁coherent", + -12.30501937866211 + ], + [ + "▁fined", + -12.3050537109375 + ], + [ + "▁Rotten", + -12.30511474609375 + ], + [ + "▁Fortress", + -12.305166244506836 + ], + [ + "▁Gateway", + -12.305278778076172 + ], + [ + "That", + -12.305374145507812 + ], + [ + "▁Berk", + -12.305383682250977 + ], + [ + "▁quiz", + -12.305489540100098 + ], + [ + "▁broadcaster", + -12.305526733398438 + ], + [ + "▁bot", + -12.305594444274902 + ], + [ + "▁Anatomy", + -12.305663108825684 + ], + [ + "▁Elephant", + -12.305663108825684 + ], + [ + "▁Refuge", + -12.305663108825684 + ], + [ + "▁longitudinal", + -12.305663108825684 + ], + [ + "▁assurance", + -12.305665016174316 + ], + [ + "▁drastically", + -12.305728912353516 + ], + [ + "▁Suffolk", + -12.306306838989258 + ], + [ + "▁diffuse", + -12.306309700012207 + ], + [ + "▁Architecture", + -12.306360244750977 + ], + [ + "▁socialism", + -12.306570053100586 + ], + [ + "▁Corona", + -12.306875228881836 + ], + [ + "▁adjective", + -12.306951522827148 + ], + [ + "▁postseason", + -12.307111740112305 + ], + [ + "▁Sacramento", + -12.307178497314453 + ], + [ + "▁Jules", + -12.30736255645752 + ], + [ + "▁Phys", + -12.307435989379883 + ], + [ + "▁Whilst", + -12.307596206665039 + ], + [ + "▁Faust", + -12.30799674987793 + ], + [ + "▁Elena", + -12.308428764343262 + ], + [ + "quant", + -12.308722496032715 + ], + [ + "▁undergone", + -12.308764457702637 + ], + [ + "▁bombed", + -12.30878734588623 + ], + [ + "▁receipt", + -12.308886528015137 + ], + [ + "▁rift", + -12.309024810791016 + ], + [ + "▁emulate", + -12.309189796447754 + ], + [ + "▁Como", + -12.309327125549316 + ], + [ + "▁draught", + -12.309532165527344 + ], + [ + "▁Fortunately", + -12.30953311920166 + ], + [ + "▁switches", + -12.30954647064209 + ], + [ + "▁distracted", + -12.309610366821289 + ], + [ + "▁ODI", + -12.309635162353516 + ], + [ + "▁reflective", + -12.309715270996094 + ], + [ + "▁abolition", + -12.309721946716309 + ], + [ + "▁Megan", + -12.309966087341309 + ], + [ + "▁Polo", + -12.309983253479004 + ], + [ + "⁄", + -12.310027122497559 + ], + [ + "▁Saskatchewan", + -12.310178756713867 + ], + [ + "▁foil", + -12.310190200805664 + ], + [ + "▁Drum", + -12.310210227966309 + ], + [ + "▁Reach", + -12.310223579406738 + ], + [ + "▁Nordic", + -12.310261726379395 + ], + [ + "▁VHS", + -12.31035327911377 + ], + [ + "▁Chronic", + -12.310386657714844 + ], + [ + "▁scream", + -12.310405731201172 + ], + [ + "▁redevelopment", + -12.310577392578125 + ], + [ + "▁Activity", + -12.310579299926758 + ], + [ + "▁143", + -12.310632705688477 + ], + [ + "▁destined", + -12.31082820892334 + ], + [ + "▁gratitude", + -12.310843467712402 + ], + [ + "▁plunder", + -12.310860633850098 + ], + [ + "▁remarkably", + -12.310873985290527 + ], + [ + "▁injected", + -12.310924530029297 + ], + [ + "▁conifer", + -12.311029434204102 + ], + [ + "▁mourn", + -12.311091423034668 + ], + [ + "▁Hansen", + -12.311182975769043 + ], + [ + "▁Bring", + -12.311457633972168 + ], + [ + "▁Buchanan", + -12.31147289276123 + ], + [ + "▁Daughter", + -12.311473846435547 + ], + [ + "▁Ahmed", + -12.31155014038086 + ], + [ + "▁screenwriter", + -12.311573028564453 + ], + [ + "number", + -12.311580657958984 + ], + [ + "▁substituted", + -12.311707496643066 + ], + [ + "▁Engine", + -12.311784744262695 + ], + [ + "scope", + -12.311809539794922 + ], + [ + "Sha", + -12.311845779418945 + ], + [ + "▁renewal", + -12.312061309814453 + ], + [ + "▁Sustainable", + -12.31212043762207 + ], + [ + "▁genocide", + -12.31212043762207 + ], + [ + "▁161", + -12.312185287475586 + ], + [ + "▁mom", + -12.312201499938965 + ], + [ + "eastern", + -12.312211990356445 + ], + [ + "▁NWA", + -12.31221866607666 + ], + [ + "▁Gillian", + -12.31241512298584 + ], + [ + "▁1818", + -12.312536239624023 + ], + [ + "▁Yoga", + -12.312541961669922 + ], + [ + "▁poultry", + -12.312768936157227 + ], + [ + "▁MRI", + -12.312783241271973 + ], + [ + "▁NK", + -12.313069343566895 + ], + [ + "▁Elle", + -12.313169479370117 + ], + [ + "▁Geoff", + -12.313265800476074 + ], + [ + "▁Baroque", + -12.3134183883667 + ], + [ + "lapse", + -12.313709259033203 + ], + [ + "▁157", + -12.313817024230957 + ], + [ + "▁densely", + -12.31387710571289 + ], + [ + "▁Bram", + -12.313957214355469 + ], + [ + "▁objection", + -12.314016342163086 + ], + [ + "▁kindergarten", + -12.314066886901855 + ], + [ + "▁tsunami", + -12.314066886901855 + ], + [ + "▁courtesy", + -12.314082145690918 + ], + [ + "▁tentative", + -12.314175605773926 + ], + [ + "▁descendant", + -12.314204216003418 + ], + [ + "endi", + -12.314586639404297 + ], + [ + "▁Activities", + -12.314715385437012 + ], + [ + "▁certainty", + -12.314918518066406 + ], + [ + "▁chiefly", + -12.314924240112305 + ], + [ + "▁Georgie", + -12.315267562866211 + ], + [ + "▁reconciliation", + -12.3153657913208 + ], + [ + "▁survivor", + -12.315389633178711 + ], + [ + "fli", + -12.31539249420166 + ], + [ + "▁whisk", + -12.315421104431152 + ], + [ + "▁Organisation", + -12.315423965454102 + ], + [ + "lington", + -12.31550121307373 + ], + [ + "▁Copper", + -12.315582275390625 + ], + [ + "▁Released", + -12.315645217895508 + ], + [ + "▁sweeping", + -12.315645217895508 + ], + [ + "▁NHC", + -12.315826416015625 + ], + [ + "▁potato", + -12.316113471984863 + ], + [ + "▁Clinic", + -12.316459655761719 + ], + [ + "▁Wilmington", + -12.316666603088379 + ], + [ + "▁unite", + -12.316695213317871 + ], + [ + "▁shipment", + -12.316963195800781 + ], + [ + "▁Hartford", + -12.31702995300293 + ], + [ + "westerly", + -12.317169189453125 + ], + [ + "▁archaeology", + -12.317317008972168 + ], + [ + "▁unavailable", + -12.317317008972168 + ], + [ + "present", + -12.317400932312012 + ], + [ + "▁storyboard", + -12.317462921142578 + ], + [ + "▁lust", + -12.317543029785156 + ], + [ + "phus", + -12.31772232055664 + ], + [ + "▁skeletal", + -12.31796932220459 + ], + [ + "▁fumble", + -12.318133354187012 + ], + [ + "▁Claudia", + -12.318626403808594 + ], + [ + "▁sponsorship", + -12.318788528442383 + ], + [ + "▁Chair", + -12.31895923614502 + ], + [ + "▁veil", + -12.318981170654297 + ], + [ + "gong", + -12.319000244140625 + ], + [ + "▁Sava", + -12.319128036499023 + ], + [ + "▁Jaw", + -12.31924819946289 + ], + [ + "▁Confession", + -12.319272994995117 + ], + [ + "▁admiration", + -12.319272994995117 + ], + [ + "▁oktòb", + -12.319272994995117 + ], + [ + "▁Talbot", + -12.319296836853027 + ], + [ + "▁mutant", + -12.31938648223877 + ], + [ + "▁Gilles", + -12.319408416748047 + ], + [ + "▁buzz", + -12.31946086883545 + ], + [ + "ubi", + -12.319491386413574 + ], + [ + "▁Doyle", + -12.31951904296875 + ], + [ + "▁arteries", + -12.319570541381836 + ], + [ + "▁advertised", + -12.319779396057129 + ], + [ + "▁insane", + -12.319862365722656 + ], + [ + "▁boiling", + -12.319881439208984 + ], + [ + "▁Lanmò", + -12.319926261901855 + ], + [ + "▁appliance", + -12.319926261901855 + ], + [ + "▁Therapy", + -12.319940567016602 + ], + [ + "▁Yellowstone", + -12.32001781463623 + ], + [ + "physiology", + -12.320182800292969 + ], + [ + "hoff", + -12.320213317871094 + ], + [ + "▁cannabis", + -12.320578575134277 + ], + [ + "▁curiosity", + -12.320578575134277 + ], + [ + "▁Punjab", + -12.320581436157227 + ], + [ + "▁posterior", + -12.320584297180176 + ], + [ + "controlled", + -12.321200370788574 + ], + [ + "▁confiscated", + -12.321232795715332 + ], + [ + "▁slap", + -12.321266174316406 + ], + [ + "▁Weaver", + -12.321285247802734 + ], + [ + "▁seismic", + -12.321422576904297 + ], + [ + "▁federation", + -12.321887969970703 + ], + [ + "▁butterflies", + -12.321894645690918 + ], + [ + "▁Taunton", + -12.32189655303955 + ], + [ + "▁detained", + -12.321898460388184 + ], + [ + "location", + -12.32197380065918 + ], + [ + "▁Vega", + -12.322152137756348 + ], + [ + "▁Hermann", + -12.322342872619629 + ], + [ + "▁Oriental", + -12.322426795959473 + ], + [ + "income", + -12.322474479675293 + ], + [ + "▁Vickers", + -12.32252311706543 + ], + [ + "▁Rwanda", + -12.322572708129883 + ], + [ + "▁transforming", + -12.32262134552002 + ], + [ + "▁stipe", + -12.32276439666748 + ], + [ + "▁disposition", + -12.32281494140625 + ], + [ + "▁skeptical", + -12.322982788085938 + ], + [ + "▁resilience", + -12.323195457458496 + ], + [ + "▁formidable", + -12.323197364807129 + ], + [ + "▁Kombat", + -12.323219299316406 + ], + [ + "▁characterize", + -12.32322883605957 + ], + [ + "▁Hornet", + -12.323714256286621 + ], + [ + "▁Slovenia", + -12.323856353759766 + ], + [ + "▁Voyage", + -12.323919296264648 + ], + [ + "▁Address", + -12.323952674865723 + ], + [ + "▁raven", + -12.324151992797852 + ], + [ + "▁cocaine", + -12.324507713317871 + ], + [ + "▁midfielder", + -12.324512481689453 + ], + [ + "▁Session", + -12.324533462524414 + ], + [ + "▁Weiss", + -12.324545860290527 + ], + [ + "▁Carmel", + -12.324702262878418 + ], + [ + "▁confer", + -12.324904441833496 + ], + [ + "▁fransèz", + -12.325162887573242 + ], + [ + "logue", + -12.325321197509766 + ], + [ + "▁recess", + -12.32561206817627 + ], + [ + "▁Clifton", + -12.325819969177246 + ], + [ + "▁Flotilla", + -12.325819969177246 + ], + [ + "▁Khmer", + -12.325821876525879 + ], + [ + "▁Severe", + -12.32594108581543 + ], + [ + "▁Ronnie", + -12.325942993164062 + ], + [ + "▁Timor", + -12.325943946838379 + ], + [ + "▁litre", + -12.325971603393555 + ], + [ + "▁Scarlet", + -12.325983047485352 + ], + [ + "▁overrun", + -12.326001167297363 + ], + [ + "mata", + -12.326041221618652 + ], + [ + "▁esteem", + -12.32604694366455 + ], + [ + "▁spun", + -12.326201438903809 + ], + [ + "▁guarded", + -12.326342582702637 + ], + [ + "▁Corb", + -12.32645320892334 + ], + [ + "▁Himmler", + -12.32647705078125 + ], + [ + "▁inexpensive", + -12.32647705078125 + ], + [ + "▁eroded", + -12.326478958129883 + ], + [ + "▁Khal", + -12.326903343200684 + ], + [ + "Ph", + -12.327005386352539 + ], + [ + "▁improvised", + -12.327006340026855 + ], + [ + "ordinate", + -12.327019691467285 + ], + [ + "▁Earp", + -12.327027320861816 + ], + [ + "gastrointestinal", + -12.327134132385254 + ], + [ + "▁clarify", + -12.327141761779785 + ], + [ + "▁STEM", + -12.327165603637695 + ], + [ + "▁Improve", + -12.327208518981934 + ], + [ + "▁Meet", + -12.327615737915039 + ], + [ + "▁Hogan", + -12.327709197998047 + ], + [ + "▁Counsel", + -12.327792167663574 + ], + [ + "▁monasteries", + -12.327792167663574 + ], + [ + "▁sticky", + -12.327983856201172 + ], + [ + "▁glacier", + -12.328089714050293 + ], + [ + "▁290", + -12.328106880187988 + ], + [ + "▁hut", + -12.328324317932129 + ], + [ + "▁Spark", + -12.328391075134277 + ], + [ + "▁Crete", + -12.328450202941895 + ], + [ + "▁meadow", + -12.328450202941895 + ], + [ + "▁Hassett", + -12.328454971313477 + ], + [ + "▁Progressive", + -12.328676223754883 + ], + [ + "▁Holl", + -12.328754425048828 + ], + [ + "▁Dress", + -12.328996658325195 + ], + [ + "▁Kashmir", + -12.329109191894531 + ], + [ + "▁feminine", + -12.329109191894531 + ], + [ + "▁Omega", + -12.329110145568848 + ], + [ + "▁allergy", + -12.32911491394043 + ], + [ + "▁righteous", + -12.329118728637695 + ], + [ + "VR", + -12.329302787780762 + ], + [ + "▁fearing", + -12.329334259033203 + ], + [ + "▁Capt", + -12.329340934753418 + ], + [ + "▁Elsa", + -12.329378128051758 + ], + [ + "▁departing", + -12.32942008972168 + ], + [ + "▁Reef", + -12.329742431640625 + ], + [ + "▁perpendicular", + -12.329768180847168 + ], + [ + "▁clarity", + -12.329769134521484 + ], + [ + "▁savage", + -12.329782485961914 + ], + [ + "▁Tribe", + -12.329825401306152 + ], + [ + "▁Demon", + -12.329894065856934 + ], + [ + "azza", + -12.330041885375977 + ], + [ + "▁Audio", + -12.33016300201416 + ], + [ + "▁flute", + -12.330211639404297 + ], + [ + "▁outages", + -12.33051586151123 + ], + [ + "Gen", + -12.330596923828125 + ], + [ + "▁Samantha", + -12.331088066101074 + ], + [ + "▁septanm", + -12.331088066101074 + ], + [ + "▁Sikh", + -12.331466674804688 + ], + [ + "▁Nobody", + -12.331504821777344 + ], + [ + "▁satirical", + -12.331748962402344 + ], + [ + "▁plume", + -12.33189868927002 + ], + [ + "bug", + -12.332014083862305 + ], + [ + "west", + -12.33210563659668 + ], + [ + "▁Homo", + -12.33211612701416 + ], + [ + "▁Rowland", + -12.332226753234863 + ], + [ + "▁migrated", + -12.332261085510254 + ], + [ + "▁legitimacy", + -12.332409858703613 + ], + [ + "▁Nassau", + -12.332415580749512 + ], + [ + "▁proceeding", + -12.332472801208496 + ], + [ + "▁toddler", + -12.332520484924316 + ], + [ + "▁Zack", + -12.332836151123047 + ], + [ + "▁Ebert", + -12.332863807678223 + ], + [ + "▁injustice", + -12.3330717086792 + ], + [ + "▁Northwestern", + -12.333114624023438 + ], + [ + "▁20%", + -12.333534240722656 + ], + [ + "interpret", + -12.333698272705078 + ], + [ + "▁Response", + -12.333732604980469 + ], + [ + "▁circulating", + -12.333732604980469 + ], + [ + "typical", + -12.333736419677734 + ], + [ + "▁Explain", + -12.333751678466797 + ], + [ + "▁Purana", + -12.333951950073242 + ], + [ + "▁erupt", + -12.334359169006348 + ], + [ + "▁aluminium", + -12.334395408630371 + ], + [ + "▁engraving", + -12.334395408630371 + ], + [ + "▁murderer", + -12.334396362304688 + ], + [ + "ç", + -12.334477424621582 + ], + [ + "▁Rebel", + -12.334532737731934 + ], + [ + "▁Toll", + -12.334654808044434 + ], + [ + "éné", + -12.334840774536133 + ], + [ + "▁vegetarian", + -12.335057258605957 + ], + [ + "▁Waterloo", + -12.335222244262695 + ], + [ + "▁regulator", + -12.335346221923828 + ], + [ + "▁1700", + -12.335411071777344 + ], + [ + "▁Portrait", + -12.335721015930176 + ], + [ + "▁unpleasant", + -12.335721015930176 + ], + [ + "▁Devi", + -12.335783958435059 + ], + [ + "▁plagued", + -12.335958480834961 + ], + [ + "▁commemorated", + -12.336041450500488 + ], + [ + "▁Torah", + -12.336243629455566 + ], + [ + "▁Kerry", + -12.336379051208496 + ], + [ + "▁Bonnie", + -12.336413383483887 + ], + [ + "•", + -12.336426734924316 + ], + [ + "▁deserted", + -12.336553573608398 + ], + [ + "Book", + -12.336594581604004 + ], + [ + "▁shocking", + -12.336827278137207 + ], + [ + "▁Mariah", + -12.336921691894531 + ], + [ + "▁deterioration", + -12.337048530578613 + ], + [ + "▁Teresa", + -12.337054252624512 + ], + [ + "▁spelled", + -12.337061882019043 + ], + [ + "▁disid", + -12.337084770202637 + ], + [ + "nitz", + -12.337154388427734 + ], + [ + "▁heroin", + -12.337159156799316 + ], + [ + "▁abnormalities", + -12.337174415588379 + ], + [ + "▁coefficient", + -12.337235450744629 + ], + [ + "▁Travis", + -12.337244987487793 + ], + [ + "ethyl", + -12.337276458740234 + ], + [ + "▁§", + -12.337616920471191 + ], + [ + "▁Hang", + -12.337623596191406 + ], + [ + "▁Approach", + -12.337712287902832 + ], + [ + "▁Inspector", + -12.337713241577148 + ], + [ + "▁replenish", + -12.337713241577148 + ], + [ + "▁charming", + -12.337729454040527 + ], + [ + "▁silly", + -12.337862014770508 + ], + [ + "▁mesh", + -12.337940216064453 + ], + [ + "▁halo", + -12.338018417358398 + ], + [ + "2018", + -12.338109016418457 + ], + [ + "▁cutter", + -12.338165283203125 + ], + [ + "▁corrected", + -12.338257789611816 + ], + [ + "▁ITV", + -12.33839225769043 + ], + [ + "▁ACT", + -12.338563919067383 + ], + [ + "▁terra", + -12.338590621948242 + ], + [ + "▁comedic", + -12.338591575622559 + ], + [ + "▁phosphate", + -12.338976860046387 + ], + [ + "▁renovated", + -12.339042663574219 + ], + [ + "▁strap", + -12.33918571472168 + ], + [ + "AY", + -12.339685440063477 + ], + [ + "▁statutory", + -12.339709281921387 + ], + [ + "▁synthesized", + -12.339766502380371 + ], + [ + "▁Specifically", + -12.339802742004395 + ], + [ + "▁Dodd", + -12.339818954467773 + ], + [ + "▁abruptly", + -12.339883804321289 + ], + [ + "▁Passion", + -12.340197563171387 + ], + [ + "flam", + -12.340251922607422 + ], + [ + "▁interrupt", + -12.340289115905762 + ], + [ + "▁curl", + -12.340362548828125 + ], + [ + "▁Matematik", + -12.340374946594238 + ], + [ + "▁Glu", + -12.340522766113281 + ], + [ + "▁Gilli", + -12.340535163879395 + ], + [ + "▁Brill", + -12.340567588806152 + ], + [ + "ción", + -12.340577125549316 + ], + [ + "▁thigh", + -12.340600967407227 + ], + [ + "▁Seg", + -12.34062671661377 + ], + [ + "▁Golf", + -12.340713500976562 + ], + [ + "▁Kru", + -12.340773582458496 + ], + [ + "check", + -12.340897560119629 + ], + [ + "▁cleaned", + -12.340943336486816 + ], + [ + "▁encompasses", + -12.340982437133789 + ], + [ + "▁memoir", + -12.340991973876953 + ], + [ + "▁Lakers", + -12.340995788574219 + ], + [ + "▁Bonaparte", + -12.341041564941406 + ], + [ + "▁Garrett", + -12.341041564941406 + ], + [ + "▁Pyramid", + -12.341041564941406 + ], + [ + "▁smallpox", + -12.341043472290039 + ], + [ + "▁Jenkins", + -12.341072082519531 + ], + [ + "▁Hawke", + -12.341081619262695 + ], + [ + "▁Léon", + -12.341100692749023 + ], + [ + "▁agreeing", + -12.34113597869873 + ], + [ + "▁wildfire", + -12.341196060180664 + ], + [ + "▁Mora", + -12.341215133666992 + ], + [ + "▁Vine", + -12.341338157653809 + ], + [ + "▁glee", + -12.341484069824219 + ], + [ + "moral", + -12.34160327911377 + ], + [ + "▁soluble", + -12.341666221618652 + ], + [ + "▁flotilla", + -12.34170913696289 + ], + [ + "▁Button", + -12.341743469238281 + ], + [ + "▁overlapping", + -12.341851234436035 + ], + [ + "▁Dental", + -12.341890335083008 + ], + [ + "▁renew", + -12.342154502868652 + ], + [ + "▁grav", + -12.342334747314453 + ], + [ + "▁Tomatoes", + -12.342376708984375 + ], + [ + "▁rupture", + -12.342376708984375 + ], + [ + "▁authenticity", + -12.342960357666016 + ], + [ + "▁CPU", + -12.343198776245117 + ], + [ + "▁Thu", + -12.343474388122559 + ], + [ + "▁Judy", + -12.343530654907227 + ], + [ + "▁Industries", + -12.34371280670166 + ], + [ + "▁succumb", + -12.34371280670166 + ], + [ + "▁forthcoming", + -12.343713760375977 + ], + [ + "▁310", + -12.343816757202148 + ], + [ + "▁Landmark", + -12.34386920928955 + ], + [ + "▁incorrectly", + -12.343917846679688 + ], + [ + "▁Commando", + -12.343989372253418 + ], + [ + "▁principally", + -12.344344139099121 + ], + [ + "▁Pilgrim", + -12.344381332397461 + ], + [ + "▁Ulysses", + -12.344381332397461 + ], + [ + "▁amplifier", + -12.344381332397461 + ], + [ + "▁ignorance", + -12.344381332397461 + ], + [ + "éra", + -12.344595909118652 + ], + [ + "▁crafted", + -12.344653129577637 + ], + [ + "atsu", + -12.344841003417969 + ], + [ + "▁inspector", + -12.344857215881348 + ], + [ + "▁RAR", + -12.344908714294434 + ], + [ + "▁polio", + -12.344937324523926 + ], + [ + "▁Architect", + -12.344980239868164 + ], + [ + "▁1803", + -12.345144271850586 + ], + [ + "▁Dent", + -12.345161437988281 + ], + [ + "▁Nur", + -12.34516716003418 + ], + [ + "▁marvel", + -12.345415115356445 + ], + [ + "▁Saka", + -12.34553050994873 + ], + [ + "▁Neal", + -12.345669746398926 + ], + [ + "▁ordinance", + -12.345722198486328 + ], + [ + "▁saliva", + -12.345727920532227 + ], + [ + "wheel", + -12.34575080871582 + ], + [ + "▁Braun", + -12.34583568572998 + ], + [ + "▁phosphorus", + -12.345974922180176 + ], + [ + "▁Zion", + -12.346000671386719 + ], + [ + "▁polished", + -12.346077919006348 + ], + [ + "▁Liberation", + -12.346223831176758 + ], + [ + "▁sponge", + -12.346426010131836 + ], + [ + "▁dread", + -12.34648609161377 + ], + [ + "▁chasing", + -12.346689224243164 + ], + [ + "ceive", + -12.346758842468262 + ], + [ + "utobiographical", + -12.347062110900879 + ], + [ + "▁Vaughan", + -12.347062110900879 + ], + [ + "▁nitrate", + -12.347062110900879 + ], + [ + "▁Apache", + -12.347139358520508 + ], + [ + "▁formulation", + -12.34717082977295 + ], + [ + "speed", + -12.347342491149902 + ], + [ + "▁coloration", + -12.347526550292969 + ], + [ + "▁porch", + -12.347553253173828 + ], + [ + "▁Grin", + -12.347728729248047 + ], + [ + "▁Ambrose", + -12.347732543945312 + ], + [ + "▁Thirteen", + -12.347732543945312 + ], + [ + "stress", + -12.347759246826172 + ], + [ + "▁scary", + -12.347772598266602 + ], + [ + "▁jiyè", + -12.347779273986816 + ], + [ + "▁Trojan", + -12.34782886505127 + ], + [ + "genetic", + -12.34784984588623 + ], + [ + "▁notified", + -12.347867965698242 + ], + [ + "▁transcript", + -12.34788990020752 + ], + [ + "▁plas", + -12.348224639892578 + ], + [ + "▁secretion", + -12.348274230957031 + ], + [ + "▁Mesopotamia", + -12.348404884338379 + ], + [ + "▁adjoining", + -12.348404884338379 + ], + [ + "▁eminent", + -12.348405838012695 + ], + [ + "▁Lyrical", + -12.348495483398438 + ], + [ + "▁greed", + -12.348495483398438 + ], + [ + "▁harassment", + -12.348612785339355 + ], + [ + "▁divin", + -12.348783493041992 + ], + [ + "▁hinder", + -12.34882640838623 + ], + [ + "▁fused", + -12.348907470703125 + ], + [ + "▁Zan", + -12.348963737487793 + ], + [ + "▁Spit", + -12.349007606506348 + ], + [ + "▁invertebrates", + -12.349432945251465 + ], + [ + "▁Clause", + -12.349609375 + ], + [ + "▁discouraged", + -12.3496675491333 + ], + [ + "▁Kitchen", + -12.349811553955078 + ], + [ + "▁redesignated", + -12.349834442138672 + ], + [ + "▁exempt", + -12.349895477294922 + ], + [ + "▁cab", + -12.350091934204102 + ], + [ + "▁Contra", + -12.350132942199707 + ], + [ + "▁Rural", + -12.350378036499023 + ], + [ + "▁beautifully", + -12.350388526916504 + ], + [ + "▁Continue", + -12.350421905517578 + ], + [ + "▁flavour", + -12.350421905517578 + ], + [ + "▁headquartered", + -12.350421905517578 + ], + [ + "▁multitude", + -12.350421905517578 + ], + [ + "▁schizophrenia", + -12.350421905517578 + ], + [ + "▁smuggle", + -12.350421905517578 + ], + [ + "▁Savoy", + -12.350479125976562 + ], + [ + "▁sampled", + -12.350512504577637 + ], + [ + "rash", + -12.350712776184082 + ], + [ + "▁1791", + -12.350933074951172 + ], + [ + "▁Gad", + -12.350937843322754 + ], + [ + "▁Higgins", + -12.351095199584961 + ], + [ + "▁Byrne", + -12.35110855102539 + ], + [ + "▁oppression", + -12.351133346557617 + ], + [ + "▁forehead", + -12.351192474365234 + ], + [ + "holm", + -12.35124683380127 + ], + [ + "▁Boer", + -12.351923942565918 + ], + [ + "▁rumor", + -12.3519926071167 + ], + [ + "▁Royalist", + -12.352034568786621 + ], + [ + "▁foreigners", + -12.35213565826416 + ], + [ + "▁minus", + -12.352421760559082 + ], + [ + "▁rendezvous", + -12.35244369506836 + ], + [ + "▁Auckland", + -12.352445602416992 + ], + [ + "▁gentleman", + -12.352534294128418 + ], + [ + "▁Specific", + -12.352578163146973 + ], + [ + "▁contradiction", + -12.352721214294434 + ], + [ + "▁encode", + -12.352753639221191 + ], + [ + "▁epidemi", + -12.352785110473633 + ], + [ + "▁orbiting", + -12.35281753540039 + ], + [ + "▁Atlantis", + -12.353117942810059 + ], + [ + "▁Camaguey", + -12.353117942810059 + ], + [ + "▁despair", + -12.353117942810059 + ], + [ + "▁ultraviolet", + -12.353117942810059 + ], + [ + "▁raided", + -12.353167533874512 + ], + [ + "▁Connor", + -12.353238105773926 + ], + [ + "▁footballer", + -12.353389739990234 + ], + [ + "▁chased", + -12.353426933288574 + ], + [ + "▁Topic", + -12.35367488861084 + ], + [ + "▁communism", + -12.353793144226074 + ], + [ + "▁glimpse", + -12.35379409790039 + ], + [ + "▁Prevent", + -12.353995323181152 + ], + [ + "▁Clar", + -12.354007720947266 + ], + [ + "▁Fortune", + -12.354119300842285 + ], + [ + "▁ethno", + -12.354147911071777 + ], + [ + "ECT", + -12.354293823242188 + ], + [ + "▁Burr", + -12.354310035705566 + ], + [ + "▁HR", + -12.354328155517578 + ], + [ + "▁PopMatters", + -12.354469299316406 + ], + [ + "▁Scripture", + -12.354469299316406 + ], + [ + "▁excellence", + -12.354469299316406 + ], + [ + "cology", + -12.354554176330566 + ], + [ + "▁Arbor", + -12.35469913482666 + ], + [ + "▁HBO", + -12.354837417602539 + ], + [ + "Donnell", + -12.354949951171875 + ], + [ + "▁Cash", + -12.355064392089844 + ], + [ + "rrington", + -12.355072021484375 + ], + [ + "▁Elsewhere", + -12.355145454406738 + ], + [ + "▁Fourteen", + -12.355145454406738 + ], + [ + "▁storing", + -12.355396270751953 + ], + [ + "▁Healthy", + -12.355669975280762 + ], + [ + "▁retaliation", + -12.35582160949707 + ], + [ + "▁prairie", + -12.355822563171387 + ], + [ + "▁commissioning", + -12.355883598327637 + ], + [ + "▁1796", + -12.355978012084961 + ], + [ + "▁hike", + -12.356048583984375 + ], + [ + "▁1827", + -12.356145858764648 + ], + [ + "▁Marseille", + -12.356498718261719 + ], + [ + "▁Feb", + -12.356688499450684 + ], + [ + "▁kickoff", + -12.35676383972168 + ], + [ + "▁tenor", + -12.356764793395996 + ], + [ + "▁Plateau", + -12.356860160827637 + ], + [ + "chroma", + -12.357006072998047 + ], + [ + "▁affiliation", + -12.357176780700684 + ], + [ + "▁ratified", + -12.357270240783691 + ], + [ + "mack", + -12.357797622680664 + ], + [ + "▁relevance", + -12.357854843139648 + ], + [ + "▁multiply", + -12.357856750488281 + ], + [ + "bler", + -12.357994079589844 + ], + [ + "▁hover", + -12.358277320861816 + ], + [ + "▁mourning", + -12.358296394348145 + ], + [ + "pool", + -12.358413696289062 + ], + [ + "▁Minh", + -12.358480453491211 + ], + [ + "▁Stéphane", + -12.358532905578613 + ], + [ + "▁USDA", + -12.358626365661621 + ], + [ + "2010", + -12.358697891235352 + ], + [ + "▁voter", + -12.359111785888672 + ], + [ + "η", + -12.359211921691895 + ], + [ + "▁blessed", + -12.359217643737793 + ], + [ + "▁pedal", + -12.359574317932129 + ], + [ + "▁realization", + -12.359803199768066 + ], + [ + "▁Grad", + -12.359807968139648 + ], + [ + "▁Meteor", + -12.35987663269043 + ], + [ + "▁Panel", + -12.359902381896973 + ], + [ + "▁brightness", + -12.360316276550293 + ], + [ + "▁Karnataka", + -12.360570907592773 + ], + [ + "▁nightclub", + -12.360570907592773 + ], + [ + "▁unwanted", + -12.360570907592773 + ], + [ + "done", + -12.360600471496582 + ], + [ + "▁Chopra", + -12.360636711120605 + ], + [ + "▁Explorer", + -12.360809326171875 + ], + [ + "▁π", + -12.361105918884277 + ], + [ + "▁Forrest", + -12.361119270324707 + ], + [ + "▁Trap", + -12.361249923706055 + ], + [ + "▁commemorative", + -12.361250877380371 + ], + [ + "▁Tunisia", + -12.361273765563965 + ], + [ + "▁Meadow", + -12.361315727233887 + ], + [ + "▁Mask", + -12.36179256439209 + ], + [ + "▁Peel", + -12.361872673034668 + ], + [ + "▁eligibility", + -12.361931800842285 + ], + [ + "▁intestinal", + -12.361932754516602 + ], + [ + "érie", + -12.361997604370117 + ], + [ + "▁Mystery", + -12.362016677856445 + ], + [ + "▁scrub", + -12.362019538879395 + ], + [ + "▁Buzz", + -12.36211109161377 + ], + [ + "▁Used", + -12.362157821655273 + ], + [ + "▁retrieved", + -12.362347602844238 + ], + [ + "▁610", + -12.362492561340332 + ], + [ + "▁cooled", + -12.362576484680176 + ], + [ + "▁attaining", + -12.362683296203613 + ], + [ + "▁daytime", + -12.363131523132324 + ], + [ + "sound", + -12.363190650939941 + ], + [ + "▁crocodile", + -12.36329460144043 + ], + [ + "▁sanitation", + -12.36329460144043 + ], + [ + "▁societal", + -12.36329460144043 + ], + [ + "▁soprano", + -12.36329460144043 + ], + [ + "▁originating", + -12.363371849060059 + ], + [ + "▁mammal", + -12.363540649414062 + ], + [ + "▁Lamp", + -12.363720893859863 + ], + [ + "▁installing", + -12.363809585571289 + ], + [ + "▁analytical", + -12.36390495300293 + ], + [ + "▁Avatar", + -12.363981246948242 + ], + [ + "▁marshal", + -12.363985061645508 + ], + [ + "▁Cartman", + -12.36398983001709 + ], + [ + "▁Kitty", + -12.36434268951416 + ], + [ + "▁berries", + -12.36456298828125 + ], + [ + "▁vibrant", + -12.364659309387207 + ], + [ + "▁Saigon", + -12.36466121673584 + ], + [ + "▁Purple", + -12.364715576171875 + ], + [ + "▁Walking", + -12.364873886108398 + ], + [ + "▁bombard", + -12.364945411682129 + ], + [ + "nose", + -12.365069389343262 + ], + [ + "▁deposed", + -12.365257263183594 + ], + [ + "▁Vu", + -12.365301132202148 + ], + [ + "▁maple", + -12.365426063537598 + ], + [ + "▁neutrality", + -12.365620613098145 + ], + [ + "▁1826", + -12.365708351135254 + ], + [ + "▁drowning", + -12.365761756896973 + ], + [ + "▁ejected", + -12.365824699401855 + ], + [ + "▁Hoy", + -12.365893363952637 + ], + [ + "▁silt", + -12.36589527130127 + ], + [ + "▁catchy", + -12.365959167480469 + ], + [ + "▁syndicate", + -12.366029739379883 + ], + [ + "▁empathy", + -12.366063117980957 + ], + [ + "▁transverse", + -12.366133689880371 + ], + [ + "▁jewelry", + -12.366247177124023 + ], + [ + "▁Choose", + -12.366255760192871 + ], + [ + "▁reluctantly", + -12.366436004638672 + ], + [ + "▁thunderstorm", + -12.366601943969727 + ], + [ + "▁Pagan", + -12.366676330566406 + ], + [ + "▁sexy", + -12.367090225219727 + ], + [ + "▁Emil", + -12.367178916931152 + ], + [ + "▁Navigation", + -12.36739444732666 + ], + [ + "▁Vampire", + -12.36739444732666 + ], + [ + "▁infiltrate", + -12.36739444732666 + ], + [ + "▁Frankfurt", + -12.367396354675293 + ], + [ + "▁novanm", + -12.367398262023926 + ], + [ + "▁workout", + -12.367451667785645 + ], + [ + "neck", + -12.367841720581055 + ], + [ + "▁dots", + -12.368002891540527 + ], + [ + "atum", + -12.368032455444336 + ], + [ + "▁ammonia", + -12.368081092834473 + ], + [ + "dev", + -12.368088722229004 + ], + [ + "▁invading", + -12.368096351623535 + ], + [ + "▁dad", + -12.368119239807129 + ], + [ + "▁Afrik", + -12.368496894836426 + ], + [ + "▁Laurie", + -12.368608474731445 + ], + [ + "▁Resistance", + -12.368764877319336 + ], + [ + "▁subdivision", + -12.368764877319336 + ], + [ + "▁AAA", + -12.36902904510498 + ], + [ + "▁crow", + -12.369267463684082 + ], + [ + "▁criticize", + -12.369279861450195 + ], + [ + "▁penetration", + -12.369450569152832 + ], + [ + "▁predation", + -12.369465827941895 + ], + [ + "^", + -12.36963176727295 + ], + [ + "▁FOR", + -12.369701385498047 + ], + [ + "▁saddle", + -12.36971378326416 + ], + [ + "▁440", + -12.369872093200684 + ], + [ + "ş", + -12.370136260986328 + ], + [ + "▁gunpowder", + -12.370137214660645 + ], + [ + "▁implicit", + -12.370138168334961 + ], + [ + "▁candy", + -12.370155334472656 + ], + [ + "▁clinch", + -12.370197296142578 + ], + [ + "valuation", + -12.370285034179688 + ], + [ + "▁endure", + -12.370327949523926 + ], + [ + "▁Crist", + -12.37035846710205 + ], + [ + "▁Visitor", + -12.370368957519531 + ], + [ + "trial", + -12.370553970336914 + ], + [ + "▁herbal", + -12.370617866516113 + ], + [ + "▁File", + -12.370644569396973 + ], + [ + "▁Archaeological", + -12.370823860168457 + ], + [ + "▁Cyprus", + -12.370823860168457 + ], + [ + "▁Felipe", + -12.370823860168457 + ], + [ + "▁cortex", + -12.370823860168457 + ], + [ + "▁prevailed", + -12.370890617370605 + ], + [ + "▁Rho", + -12.371191024780273 + ], + [ + "▁Companion", + -12.371511459350586 + ], + [ + "▁Armoured", + -12.371512413024902 + ], + [ + "▁Mama", + -12.371725082397461 + ], + [ + "▁Whitehead", + -12.37185001373291 + ], + [ + "▁Sap", + -12.371886253356934 + ], + [ + "▁reinforcement", + -12.371932983398438 + ], + [ + "▁Phelps", + -12.372199058532715 + ], + [ + "▁snout", + -12.37220573425293 + ], + [ + "▁Kerala", + -12.37230396270752 + ], + [ + "▁Rabbit", + -12.372325897216797 + ], + [ + "▁utterly", + -12.372344970703125 + ], + [ + "▁Craft", + -12.372385025024414 + ], + [ + "▁insistence", + -12.37238597869873 + ], + [ + "▁breakaway", + -12.37247085571289 + ], + [ + "▁resin", + -12.372712135314941 + ], + [ + "▁organizational", + -12.372862815856934 + ], + [ + "▁aforementioned", + -12.373576164245605 + ], + [ + "Italia", + -12.373924255371094 + ], + [ + "▁Dion", + -12.374032974243164 + ], + [ + "▁curb", + -12.374235153198242 + ], + [ + "▁Contreras", + -12.37426471710205 + ], + [ + "▁blond", + -12.374337196350098 + ], + [ + "▁Lowell", + -12.37436294555664 + ], + [ + "▁mitochondrial", + -12.374490737915039 + ], + [ + "otto", + -12.374495506286621 + ], + [ + "current", + -12.374659538269043 + ], + [ + "▁skier", + -12.374784469604492 + ], + [ + "▁lame", + -12.374841690063477 + ], + [ + "▁Cele", + -12.374937057495117 + ], + [ + "▁playwright", + -12.374955177307129 + ], + [ + "aldo", + -12.374971389770508 + ], + [ + "▁nightmare", + -12.374979019165039 + ], + [ + "trap", + -12.375 + ], + [ + "▁imprint", + -12.37502384185791 + ], + [ + "acci", + -12.37513542175293 + ], + [ + "▁wrecked", + -12.37547779083252 + ], + [ + "▁deeds", + -12.37551498413086 + ], + [ + "▁Occupation", + -12.375643730163574 + ], + [ + "▁Uruguay", + -12.37564468383789 + ], + [ + "▁Eccles", + -12.375645637512207 + ], + [ + "▁Saffir", + -12.375648498535156 + ], + [ + "▁supermarket", + -12.37569808959961 + ], + [ + "▁Cruise", + -12.375920295715332 + ], + [ + "▁moss", + -12.376123428344727 + ], + [ + "▁bamboo", + -12.376335144042969 + ], + [ + "▁confluence", + -12.376335144042969 + ], + [ + "▁exercising", + -12.376335144042969 + ], + [ + "▁Seal", + -12.376502990722656 + ], + [ + "▁dismay", + -12.376508712768555 + ], + [ + "▁Algeria", + -12.376520156860352 + ], + [ + "▁Finch", + -12.376707077026367 + ], + [ + "▁commence", + -12.37680721282959 + ], + [ + "▁Bower", + -12.37687873840332 + ], + [ + "opods", + -12.376909255981445 + ], + [ + "▁tattoo", + -12.377026557922363 + ], + [ + "▁outnumbered", + -12.377028465270996 + ], + [ + "▁Toyota", + -12.37704849243164 + ], + [ + "▁Mongolia", + -12.377124786376953 + ], + [ + "biology", + -12.377232551574707 + ], + [ + "▁imposing", + -12.377720832824707 + ], + [ + "dependent", + -12.3778715133667 + ], + [ + "crypt", + -12.3779296875 + ], + [ + "▁Score", + -12.377959251403809 + ], + [ + "▁predominant", + -12.378028869628906 + ], + [ + "▁Salon", + -12.378131866455078 + ], + [ + "▁equip", + -12.37820053100586 + ], + [ + "▁Begin", + -12.378396987915039 + ], + [ + "▁hiking", + -12.378582000732422 + ], + [ + "gawa", + -12.378583908081055 + ], + [ + "cule", + -12.379039764404297 + ], + [ + "▁utilise", + -12.379209518432617 + ], + [ + "▁parameter", + -12.379331588745117 + ], + [ + "▁manually", + -12.379420280456543 + ], + [ + "▁reconstruct", + -12.379554748535156 + ], + [ + "▁meso", + -12.379556655883789 + ], + [ + "▁Hoover", + -12.379605293273926 + ], + [ + "▁Goes", + -12.37961483001709 + ], + [ + "▁Equal", + -12.379717826843262 + ], + [ + "▁traveller", + -12.379782676696777 + ], + [ + "▁roam", + -12.379793167114258 + ], + [ + "▁Autumn", + -12.379796028137207 + ], + [ + "▁Observation", + -12.379796028137207 + ], + [ + "▁taxonomic", + -12.379796028137207 + ], + [ + "▁Ricky", + -12.380518913269043 + ], + [ + "▁Bohemia", + -12.380524635314941 + ], + [ + "▁marrying", + -12.38055419921875 + ], + [ + "▁Edith", + -12.380616188049316 + ], + [ + "▁hoist", + -12.380749702453613 + ], + [ + "▁Stress", + -12.380887985229492 + ], + [ + "▁cub", + -12.380953788757324 + ], + [ + "▁Thom", + -12.381033897399902 + ], + [ + "▁Strategic", + -12.381182670593262 + ], + [ + "▁comrade", + -12.381183624267578 + ], + [ + "▁detrimental", + -12.381803512573242 + ], + [ + "▁Sosyete", + -12.381877899169922 + ], + [ + "▁Wenger", + -12.382003784179688 + ], + [ + "▁Parade", + -12.38211441040039 + ], + [ + "▁Carlisle", + -12.382573127746582 + ], + [ + "▁Odin", + -12.382573127746582 + ], + [ + "▁analogous", + -12.38276195526123 + ], + [ + "▁Pipe", + -12.383075714111328 + ], + [ + "▁Dodge", + -12.383078575134277 + ], + [ + "▁POW", + -12.383191108703613 + ], + [ + "đ", + -12.383267402648926 + ], + [ + "▁PMID", + -12.383295059204102 + ], + [ + "▁obese", + -12.383393287658691 + ], + [ + "▁206", + -12.383590698242188 + ], + [ + "▁Circus", + -12.383744239807129 + ], + [ + "▁freighter", + -12.383806228637695 + ], + [ + "cross", + -12.383816719055176 + ], + [ + "▁Provincial", + -12.383963584899902 + ], + [ + "्", + -12.383964538574219 + ], + [ + "▁mare", + -12.383964538574219 + ], + [ + "▁Triangle", + -12.384007453918457 + ], + [ + "▁enhancement", + -12.384088516235352 + ], + [ + ":30", + -12.38418197631836 + ], + [ + "imer", + -12.384537696838379 + ], + [ + "▁vassal", + -12.384662628173828 + ], + [ + "▁Dubai", + -12.384770393371582 + ], + [ + "uku", + -12.384783744812012 + ], + [ + "▁quicker", + -12.384800910949707 + ], + [ + "ALL", + -12.385117530822754 + ], + [ + "▁Blond", + -12.38515567779541 + ], + [ + "ivism", + -12.385162353515625 + ], + [ + "unch", + -12.38524341583252 + ], + [ + "▁Haitian", + -12.385260581970215 + ], + [ + "▁imitation", + -12.385357856750488 + ], + [ + "▁2.5", + -12.385562896728516 + ], + [ + "▁NJ", + -12.385713577270508 + ], + [ + "▁Franc", + -12.385844230651855 + ], + [ + "▁Sham", + -12.385869026184082 + ], + [ + "▁Whedon", + -12.386054039001465 + ], + [ + "▁dilemma", + -12.386054039001465 + ], + [ + "▁zombie", + -12.386054039001465 + ], + [ + "▁fungal", + -12.386275291442871 + ], + [ + "modern", + -12.386370658874512 + ], + [ + "▁preferring", + -12.386409759521484 + ], + [ + "▁fashioned", + -12.386427879333496 + ], + [ + "▁Alexis", + -12.386704444885254 + ], + [ + "▁intriguing", + -12.386752128601074 + ], + [ + "▁formulated", + -12.386792182922363 + ], + [ + "▁yellowish", + -12.386890411376953 + ], + [ + "▁shaping", + -12.386971473693848 + ], + [ + "▁photographic", + -12.387007713317871 + ], + [ + "▁mangrove", + -12.387042999267578 + ], + [ + "drop", + -12.387056350708008 + ], + [ + "▁vertically", + -12.387347221374512 + ], + [ + "▁Sheet", + -12.387351036071777 + ], + [ + "▁gull", + -12.387422561645508 + ], + [ + "▁Share", + -12.38742446899414 + ], + [ + "▁Groening", + -12.38755989074707 + ], + [ + "▁experimented", + -12.387643814086914 + ], + [ + "▁ripe", + -12.388143539428711 + ], + [ + "▁Baghdad", + -12.38814926147461 + ], + [ + "▁Syndrome", + -12.38814926147461 + ], + [ + "▁Sora", + -12.388412475585938 + ], + [ + "rgic", + -12.388418197631836 + ], + [ + "▁Didier", + -12.388449668884277 + ], + [ + "phr", + -12.388547897338867 + ], + [ + "filled", + -12.388639450073242 + ], + [ + "▁Clifford", + -12.388867378234863 + ], + [ + "▁subway", + -12.389122009277344 + ], + [ + "▁1777", + -12.389162063598633 + ], + [ + "▁Thereafter", + -12.389182090759277 + ], + [ + "▁178", + -12.389235496520996 + ], + [ + "▁bait", + -12.389344215393066 + ], + [ + "▁Keller", + -12.389406204223633 + ], + [ + "powered", + -12.389411926269531 + ], + [ + "▁100,000", + -12.3895263671875 + ], + [ + "▁196", + -12.389569282531738 + ], + [ + "▁Flynn", + -12.389582633972168 + ], + [ + "▁taxa", + -12.390151023864746 + ], + [ + "▁reactive", + -12.390168190002441 + ], + [ + "▁domination", + -12.390467643737793 + ], + [ + "lateral", + -12.39046859741211 + ], + [ + "▁Soft", + -12.390631675720215 + ], + [ + "▁violate", + -12.390872955322266 + ], + [ + "▁Leone", + -12.390884399414062 + ], + [ + "▁botanist", + -12.390950202941895 + ], + [ + "▁transistor", + -12.390952110290527 + ], + [ + "▁affinity", + -12.39095687866211 + ], + [ + "▁Workshop", + -12.390984535217285 + ], + [ + "▁edisyon", + -12.391040802001953 + ], + [ + "▁1808", + -12.391092300415039 + ], + [ + "hé", + -12.391107559204102 + ], + [ + "▁Flora", + -12.391280174255371 + ], + [ + "rub", + -12.391530990600586 + ], + [ + "▁Buffy", + -12.391656875610352 + ], + [ + "abilities", + -12.391860008239746 + ], + [ + "amma", + -12.391894340515137 + ], + [ + "wara", + -12.39202880859375 + ], + [ + "▁earnest", + -12.39216423034668 + ], + [ + "▁182", + -12.3926362991333 + ], + [ + "▁alkali", + -12.392701148986816 + ], + [ + "▁390", + -12.392848014831543 + ], + [ + "▁Norris", + -12.392850875854492 + ], + [ + "gill", + -12.392910957336426 + ], + [ + "▁Rubin", + -12.39303970336914 + ], + [ + "▁erroneous", + -12.393054962158203 + ], + [ + "▁Protein", + -12.393058776855469 + ], + [ + "▁graded", + -12.393078804016113 + ], + [ + "▁Cain", + -12.39321231842041 + ], + [ + "▁Rud", + -12.393481254577637 + ], + [ + "▁Waugh", + -12.39350414276123 + ], + [ + "▁authorised", + -12.39369010925293 + ], + [ + "▁fraternity", + -12.393757820129395 + ], + [ + "▁undefeated", + -12.393757820129395 + ], + [ + "▁skating", + -12.393768310546875 + ], + [ + "▁Virgil", + -12.39378833770752 + ], + [ + "▁Thy", + -12.393868446350098 + ], + [ + "coat", + -12.3939790725708 + ], + [ + "▁Odd", + -12.394349098205566 + ], + [ + "▁evaluating", + -12.394460678100586 + ], + [ + "▁incorporation", + -12.394460678100586 + ], + [ + "COM", + -12.394587516784668 + ], + [ + "▁Gala", + -12.394794464111328 + ], + [ + "metal", + -12.394929885864258 + ], + [ + "**", + -12.395122528076172 + ], + [ + "▁negotiating", + -12.395164489746094 + ], + [ + "▁baseline", + -12.39522933959961 + ], + [ + "▁trailing", + -12.39541244506836 + ], + [ + "▁poisonous", + -12.395538330078125 + ], + [ + "▁Nichols", + -12.395566940307617 + ], + [ + "▁investing", + -12.395793914794922 + ], + [ + "/4", + -12.395956039428711 + ], + [ + "glu", + -12.396119117736816 + ], + [ + "▁Guru", + -12.396263122558594 + ], + [ + "▁Collier", + -12.396306037902832 + ], + [ + "▁Josef", + -12.396343231201172 + ], + [ + "▁pitches", + -12.396434783935547 + ], + [ + "▁Tail", + -12.396505355834961 + ], + [ + "▁sour", + -12.396537780761719 + ], + [ + "▁201", + -12.396563529968262 + ], + [ + "▁Stafford", + -12.396615028381348 + ], + [ + "▁wondered", + -12.396839141845703 + ], + [ + "▁Romance", + -12.39687728881836 + ], + [ + "▁Normal", + -12.397067070007324 + ], + [ + "▁Militia", + -12.397278785705566 + ], + [ + "▁galleries", + -12.397302627563477 + ], + [ + "▁uphold", + -12.397405624389648 + ], + [ + "▁camel", + -12.39783763885498 + ], + [ + "▁internally", + -12.397868156433105 + ], + [ + "▁duke", + -12.397954940795898 + ], + [ + "▁niece", + -12.397994995117188 + ], + [ + "▁Peng", + -12.39815902709961 + ], + [ + "DNA", + -12.39826774597168 + ], + [ + "▁minefield", + -12.39842700958252 + ], + [ + "▁Vehicle", + -12.398690223693848 + ], + [ + "▁shrimp", + -12.398690223693848 + ], + [ + "▁hedge", + -12.398811340332031 + ], + [ + "▁Fanny", + -12.398970603942871 + ], + [ + "▁dwe", + -12.399069786071777 + ], + [ + "▁1811", + -12.399175643920898 + ], + [ + "▁Cochrane", + -12.399396896362305 + ], + [ + "▁Batavia", + -12.399456977844238 + ], + [ + "hydrate", + -12.399933815002441 + ], + [ + "▁char", + -12.39999771118164 + ], + [ + "▁substitution", + -12.400104522705078 + ], + [ + "▁musket", + -12.400107383728027 + ], + [ + "▁awesome", + -12.400108337402344 + ], + [ + "▁brace", + -12.400137901306152 + ], + [ + "▁Yong", + -12.400726318359375 + ], + [ + "▁Lung", + -12.400779724121094 + ], + [ + "▁prefix", + -12.400812149047852 + ], + [ + "▁sworn", + -12.400812149047852 + ], + [ + "▁Mecca", + -12.401009559631348 + ], + [ + "▁legion", + -12.401015281677246 + ], + [ + "▁Minaj", + -12.401163101196289 + ], + [ + "▁fourteenth", + -12.4011812210083 + ], + [ + "▁programmed", + -12.401427268981934 + ], + [ + "▁diabetic", + -12.401520729064941 + ], + [ + "▁Domestic", + -12.40152645111084 + ], + [ + "nip", + -12.401552200317383 + ], + [ + "▁Exhibition", + -12.401588439941406 + ], + [ + "▁Toby", + -12.402568817138672 + ], + [ + "▁profess", + -12.402606010437012 + ], + [ + "▁Michele", + -12.402753829956055 + ], + [ + "▁doorway", + -12.402789115905762 + ], + [ + "unconstitutional", + -12.402937889099121 + ], + [ + "▁Malagasy", + -12.402938842773438 + ], + [ + "▁repel", + -12.402952194213867 + ], + [ + "▁Leno", + -12.403032302856445 + ], + [ + "▁Melissa", + -12.403032302856445 + ], + [ + "▁intentional", + -12.40356731414795 + ], + [ + "γ", + -12.403647422790527 + ], + [ + "▁Satellite", + -12.403648376464844 + ], + [ + "▁multiplication", + -12.403725624084473 + ], + [ + "▁ozone", + -12.403820037841797 + ], + [ + "▁Kamp", + -12.404138565063477 + ], + [ + "▁comprehension", + -12.40435791015625 + ], + [ + "▁Signal", + -12.405064582824707 + ], + [ + "▁Episcopal", + -12.405068397521973 + ], + [ + "▁Harlem", + -12.405193328857422 + ], + [ + "▁allocation", + -12.405243873596191 + ], + [ + "▁culturally", + -12.405698776245117 + ], + [ + "▁bucket", + -12.405786514282227 + ], + [ + "▁heightened", + -12.405790328979492 + ], + [ + "▁pleaded", + -12.40584945678711 + ], + [ + "rff", + -12.405884742736816 + ], + [ + "May", + -12.40603256225586 + ], + [ + "▁Pure", + -12.406360626220703 + ], + [ + "(2)", + -12.406376838684082 + ], + [ + "▁Malone", + -12.406425476074219 + ], + [ + "▁1823", + -12.406509399414062 + ], + [ + "▁Fei", + -12.406743049621582 + ], + [ + "▁Czechoslovakia", + -12.406757354736328 + ], + [ + "▁Russo", + -12.406774520874023 + ], + [ + "▁Push", + -12.406831741333008 + ], + [ + "▁tally", + -12.407072067260742 + ], + [ + "▁Revenge", + -12.407206535339355 + ], + [ + "ˈ", + -12.407574653625488 + ], + [ + "▁dungeon", + -12.407917022705078 + ], + [ + "▁Sakura", + -12.407917976379395 + ], + [ + "▁Barney", + -12.407958030700684 + ], + [ + "▁chaotic", + -12.407968521118164 + ], + [ + "▁Julio", + -12.40803050994873 + ], + [ + "▁slipped", + -12.40807819366455 + ], + [ + "▁worsened", + -12.408169746398926 + ], + [ + "▁Zhu", + -12.408285140991211 + ], + [ + "park", + -12.408421516418457 + ], + [ + "▁inaugurated", + -12.40863037109375 + ], + [ + "▁precipitate", + -12.408634185791016 + ], + [ + "▁barred", + -12.408707618713379 + ], + [ + "▁delta", + -12.40877914428711 + ], + [ + "▁Simone", + -12.408867835998535 + ], + [ + "▁ninety", + -12.409016609191895 + ], + [ + "▁Erlewine", + -12.409343719482422 + ], + [ + "pec", + -12.40938949584961 + ], + [ + "▁Acid", + -12.409773826599121 + ], + [ + "▁Scheer", + -12.409788131713867 + ], + [ + "▁laboratories", + -12.41005802154541 + ], + [ + "▁Shepard", + -12.410064697265625 + ], + [ + "▁Demo", + -12.410250663757324 + ], + [ + "▁Napoleonic", + -12.410734176635742 + ], + [ + "▁Réunion", + -12.410773277282715 + ], + [ + "▁symphony", + -12.410773277282715 + ], + [ + "▁incurred", + -12.410839080810547 + ], + [ + "▁Christie", + -12.410892486572266 + ], + [ + "▁Williamson", + -12.410982131958008 + ], + [ + "▁redeem", + -12.411060333251953 + ], + [ + "▁poured", + -12.411114692687988 + ], + [ + "▁directive", + -12.411362648010254 + ], + [ + "▁Regent", + -12.411457061767578 + ], + [ + "▁VH", + -12.411462783813477 + ], + [ + "▁Mycena", + -12.411491394042969 + ], + [ + "▁Sabre", + -12.411781311035156 + ], + [ + "normal", + -12.411946296691895 + ], + [ + "lima", + -12.412053108215332 + ], + [ + "▁Trondheim", + -12.41220474243164 + ], + [ + "▁Coin", + -12.412226676940918 + ], + [ + "▁theologian", + -12.412311553955078 + ], + [ + "▁Nicol", + -12.412461280822754 + ], + [ + "▁Avery", + -12.412679672241211 + ], + [ + "▁Glastonbury", + -12.412920951843262 + ], + [ + "▁Jarrett", + -12.412920951843262 + ], + [ + "▁Sheridan", + -12.412921905517578 + ], + [ + "▁fortunate", + -12.412923812866211 + ], + [ + "wire", + -12.412983894348145 + ], + [ + "vertebrate", + -12.4130277633667 + ], + [ + "▁verified", + -12.413046836853027 + ], + [ + "▁filmmaker", + -12.413052558898926 + ], + [ + "▁drifted", + -12.413091659545898 + ], + [ + "▁brighter", + -12.413166046142578 + ], + [ + "chrome", + -12.413344383239746 + ], + [ + "▁640", + -12.413390159606934 + ], + [ + "▁Molina", + -12.413400650024414 + ], + [ + "iš", + -12.413429260253906 + ], + [ + "▁Bollywood", + -12.413637161254883 + ], + [ + "▁migraine", + -12.413637161254883 + ], + [ + "▁imperative", + -12.4136381149292 + ], + [ + "▁unused", + -12.413681983947754 + ], + [ + "map", + -12.413774490356445 + ], + [ + "▁Slavic", + -12.413917541503906 + ], + [ + "▁Huron", + -12.414012908935547 + ], + [ + "▁Vista", + -12.414042472839355 + ], + [ + "▁migratory", + -12.414355278015137 + ], + [ + "▁prosperous", + -12.414355278015137 + ], + [ + "▁Wessex", + -12.41435718536377 + ], + [ + "▁duplicate", + -12.414416313171387 + ], + [ + "▁hanged", + -12.414856910705566 + ], + [ + "▁translator", + -12.415074348449707 + ], + [ + "▁Cascade", + -12.415085792541504 + ], + [ + "▁microbes", + -12.415104866027832 + ], + [ + "▁sociology", + -12.415105819702148 + ], + [ + "▁unfortunate", + -12.415435791015625 + ], + [ + "▁widening", + -12.415783882141113 + ], + [ + "▁vascular", + -12.415792465209961 + ], + [ + "▁Vettel", + -12.415793418884277 + ], + [ + "▁counseling", + -12.415799140930176 + ], + [ + "▁chalk", + -12.41589641571045 + ], + [ + "▁Johannes", + -12.416013717651367 + ], + [ + "zur", + -12.416361808776855 + ], + [ + "▁unhealthy", + -12.416509628295898 + ], + [ + "▁awful", + -12.416520118713379 + ], + [ + "▁choral", + -12.416861534118652 + ], + [ + "▁lonely", + -12.417132377624512 + ], + [ + "▁compliment", + -12.417195320129395 + ], + [ + "▁propagate", + -12.417234420776367 + ], + [ + "▁liquor", + -12.417235374450684 + ], + [ + "▁Privy", + -12.417346000671387 + ], + [ + "▁viewership", + -12.417369842529297 + ], + [ + "▁Hereford", + -12.417503356933594 + ], + [ + "2015", + -12.417570114135742 + ], + [ + "▁Maker", + -12.417616844177246 + ], + [ + "▁Charge", + -12.417752265930176 + ], + [ + "▁Bomber", + -12.41777229309082 + ], + [ + "▁Lorenzo", + -12.4177885055542 + ], + [ + "▁Invest", + -12.417859077453613 + ], + [ + "▁Baba", + -12.4179105758667 + ], + [ + "▁credibility", + -12.417949676513672 + ], + [ + "!\"", + -12.418111801147461 + ], + [ + "▁overdose", + -12.41817855834961 + ], + [ + "▁favorably", + -12.418219566345215 + ], + [ + "▁Bolt", + -12.41824722290039 + ], + [ + "inflammatory", + -12.418379783630371 + ], + [ + "▁conced", + -12.4185791015625 + ], + [ + "▁Montenegro", + -12.418669700622559 + ], + [ + "▁Ángel", + -12.418670654296875 + ], + [ + "▁Innovation", + -12.418673515319824 + ], + [ + "berht", + -12.418877601623535 + ], + [ + "▁`", + -12.418990135192871 + ], + [ + "▁Henrik", + -12.419191360473633 + ], + [ + "▁broaden", + -12.419248580932617 + ], + [ + "▁helm", + -12.419292449951172 + ], + [ + "▁circus", + -12.419395446777344 + ], + [ + "▁Calais", + -12.419407844543457 + ], + [ + "▁Goddess", + -12.41942024230957 + ], + [ + "▁erotic", + -12.419437408447266 + ], + [ + "▁causal", + -12.419449806213379 + ], + [ + "▁Colon", + -12.419905662536621 + ], + [ + "▁nominate", + -12.420080184936523 + ], + [ + "▁Diabetes", + -12.420112609863281 + ], + [ + "▁quadruple", + -12.420112609863281 + ], + [ + "▁vulture", + -12.420112609863281 + ], + [ + "▁presided", + -12.42011547088623 + ], + [ + "▁penned", + -12.420336723327637 + ], + [ + "▁Samoa", + -12.420512199401855 + ], + [ + "▁Isla", + -12.420515060424805 + ], + [ + "stream", + -12.420525550842285 + ], + [ + "▁Franck", + -12.420533180236816 + ], + [ + "Malley", + -12.420584678649902 + ], + [ + "ushi", + -12.42072868347168 + ], + [ + "▁90%", + -12.420729637145996 + ], + [ + "▁Everton", + -12.420792579650879 + ], + [ + "ceratops", + -12.420833587646484 + ], + [ + "▁Schmidt", + -12.4208345413208 + ], + [ + "▁occult", + -12.420842170715332 + ], + [ + "▁Lisbon", + -12.420853614807129 + ], + [ + "▁Kanye", + -12.42089557647705 + ], + [ + "▁Xeno", + -12.420917510986328 + ], + [ + "▁compass", + -12.420961380004883 + ], + [ + "▁maid", + -12.42098617553711 + ], + [ + "▁coma", + -12.421024322509766 + ], + [ + "2013", + -12.421454429626465 + ], + [ + "▁2030", + -12.421494483947754 + ], + [ + "▁obsession", + -12.42155647277832 + ], + [ + "▁umbrella", + -12.42155647277832 + ], + [ + "▁inclination", + -12.421557426452637 + ], + [ + "▁Sumatra", + -12.421579360961914 + ], + [ + "▁fortification", + -12.421609878540039 + ], + [ + "▁denying", + -12.42166519165039 + ], + [ + "▁Nicholson", + -12.421868324279785 + ], + [ + "ploid", + -12.422146797180176 + ], + [ + "▁Katrina", + -12.422322273254395 + ], + [ + "▁patience", + -12.422419548034668 + ], + [ + "▁yell", + -12.422630310058594 + ], + [ + "▁Pull", + -12.422680854797363 + ], + [ + "▁Rab", + -12.422708511352539 + ], + [ + "▁relocation", + -12.422784805297852 + ], + [ + "strict", + -12.422785758972168 + ], + [ + "▁Biological", + -12.422881126403809 + ], + [ + "▁annexed", + -12.422921180725098 + ], + [ + "▁Reservoir", + -12.423003196716309 + ], + [ + "▁abused", + -12.423140525817871 + ], + [ + "▁fried", + -12.423251152038574 + ], + [ + "▁Kell", + -12.423343658447266 + ], + [ + "▁reflex", + -12.423436164855957 + ], + [ + "RR", + -12.423452377319336 + ], + [ + "▁Piper", + -12.423640251159668 + ], + [ + "▁vain", + -12.42365550994873 + ], + [ + "▁erratic", + -12.423744201660156 + ], + [ + "ossi", + -12.423993110656738 + ], + [ + "▁ashes", + -12.424060821533203 + ], + [ + "▁monumental", + -12.42406940460205 + ], + [ + "▁conveyed", + -12.42444896697998 + ], + [ + "▁Sovereign", + -12.424452781677246 + ], + [ + "▁stimulus", + -12.424452781677246 + ], + [ + "▁Toledo", + -12.424457550048828 + ], + [ + "▁Rumble", + -12.42452335357666 + ], + [ + "▁hive", + -12.424772262573242 + ], + [ + "▁Toro", + -12.424818992614746 + ], + [ + "▁Pius", + -12.424952507019043 + ], + [ + "tooth", + -12.424969673156738 + ], + [ + "▁1813", + -12.425152778625488 + ], + [ + "▁Hitchcock", + -12.425177574157715 + ], + [ + "▁remixed", + -12.425202369689941 + ], + [ + "▁McCay", + -12.425414085388184 + ], + [ + "▁counselor", + -12.425776481628418 + ], + [ + "oscopic", + -12.426093101501465 + ], + [ + "▁solvent", + -12.426117897033691 + ], + [ + "▁simulated", + -12.426186561584473 + ], + [ + "▁accessibility", + -12.426270484924316 + ], + [ + "▁consort", + -12.42655086517334 + ], + [ + "▁clashes", + -12.426810264587402 + ], + [ + "▁Zeus", + -12.42724609375 + ], + [ + "▁Elliot", + -12.427331924438477 + ], + [ + "▁Sense", + -12.427449226379395 + ], + [ + "▁rental", + -12.427532196044922 + ], + [ + "▁confidential", + -12.427607536315918 + ], + [ + "▁loom", + -12.428046226501465 + ], + [ + "▁Jericho", + -12.428083419799805 + ], + [ + "▁Proceedings", + -12.428083419799805 + ], + [ + "▁afflict", + -12.428084373474121 + ], + [ + "▁downgraded", + -12.428086280822754 + ], + [ + "▁Instruction", + -12.428120613098145 + ], + [ + "▁Keats", + -12.428174018859863 + ], + [ + "▁Leadership", + -12.428271293640137 + ], + [ + "▁Barrier", + -12.428535461425781 + ], + [ + "▁1817", + -12.42858600616455 + ], + [ + "▁coated", + -12.428634643554688 + ], + [ + "▁Benz", + -12.42874813079834 + ], + [ + "▁Scream", + -12.428812980651855 + ], + [ + "angle", + -12.428987503051758 + ], + [ + "▁transformer", + -12.429224967956543 + ], + [ + "▁rewrite", + -12.429386138916016 + ], + [ + "▁computational", + -12.429516792297363 + ], + [ + "2012", + -12.429533958435059 + ], + [ + "▁reused", + -12.429587364196777 + ], + [ + "▁interpreter", + -12.429659843444824 + ], + [ + "▁295", + -12.429718017578125 + ], + [ + "▁vle", + -12.429906845092773 + ], + [ + "▁Dane", + -12.430004119873047 + ], + [ + "ubli", + -12.430086135864258 + ], + [ + "▁Jaguar", + -12.430268287658691 + ], + [ + "▁β", + -12.43038272857666 + ], + [ + "▁vicious", + -12.430408477783203 + ], + [ + "▁tug", + -12.43055248260498 + ], + [ + "▁Barre", + -12.430877685546875 + ], + [ + "▁Sure", + -12.430920600891113 + ], + [ + "▁Yucatán", + -12.430997848510742 + ], + [ + "▁satisfactory", + -12.430997848510742 + ], + [ + "▁PRO", + -12.431035041809082 + ], + [ + "▁wedge", + -12.431095123291016 + ], + [ + "▁Hazard", + -12.43112850189209 + ], + [ + "▁Gallipoli", + -12.431727409362793 + ], + [ + "▁stool", + -12.432122230529785 + ], + [ + "▁Gem", + -12.432229995727539 + ], + [ + "▁WW", + -12.432358741760254 + ], + [ + "▁Baden", + -12.432454109191895 + ], + [ + "▁deficiencies", + -12.43245792388916 + ], + [ + "▁ignoring", + -12.43245792388916 + ], + [ + "▁introductory", + -12.43245792388916 + ], + [ + "▁À", + -12.432604789733887 + ], + [ + "▁Friedman", + -12.432787895202637 + ], + [ + "▁Hinduism", + -12.432857513427734 + ], + [ + "▁Archie", + -12.433021545410156 + ], + [ + "▁populace", + -12.433189392089844 + ], + [ + "111", + -12.433194160461426 + ], + [ + "ectomy", + -12.433479309082031 + ], + [ + "▁Conway", + -12.433521270751953 + ], + [ + "▁Alternatively", + -12.433570861816406 + ], + [ + "wiki", + -12.433585166931152 + ], + [ + "▁Molecular", + -12.433920860290527 + ], + [ + "▁accuse", + -12.43393611907959 + ], + [ + "▁Ulster", + -12.434069633483887 + ], + [ + "▁Bury", + -12.434110641479492 + ], + [ + "fact", + -12.434185028076172 + ], + [ + "pub", + -12.434398651123047 + ], + [ + "▁Quad", + -12.434405326843262 + ], + [ + "▁bankrupt", + -12.434612274169922 + ], + [ + "▁Increasing", + -12.434652328491211 + ], + [ + "▁Malvern", + -12.434653282165527 + ], + [ + "▁microbial", + -12.434653282165527 + ], + [ + "▁filament", + -12.43465518951416 + ], + [ + "▁Nursing", + -12.434718132019043 + ], + [ + "▁Dinosaur", + -12.434896469116211 + ], + [ + "▁1802", + -12.435044288635254 + ], + [ + "road", + -12.435101509094238 + ], + [ + "▁methyl", + -12.435113906860352 + ], + [ + "▁hated", + -12.435368537902832 + ], + [ + "▁Ibrahim", + -12.435385704040527 + ], + [ + "▁Pediatric", + -12.435385704040527 + ], + [ + "▁remedies", + -12.435385704040527 + ], + [ + "700", + -12.435386657714844 + ], + [ + "▁diagonal", + -12.435389518737793 + ], + [ + "▁ransom", + -12.435436248779297 + ], + [ + "2014", + -12.435883522033691 + ], + [ + "▁OCLC", + -12.436118125915527 + ], + [ + "▁Pleasant", + -12.436118125915527 + ], + [ + "▁747", + -12.436410903930664 + ], + [ + "▁elaborated", + -12.436514854431152 + ], + [ + "obble", + -12.436517715454102 + ], + [ + "▁larva", + -12.43686580657959 + ], + [ + "▁Mesa", + -12.437049865722656 + ], + [ + "▁pronoun", + -12.437334060668945 + ], + [ + "Har", + -12.437376976013184 + ], + [ + "chemistry", + -12.437393188476562 + ], + [ + "▁pivotal", + -12.437419891357422 + ], + [ + "▁antiquity", + -12.437586784362793 + ], + [ + "▁Crescent", + -12.437590599060059 + ], + [ + "▁Identify", + -12.437601089477539 + ], + [ + "▁rainy", + -12.43769359588623 + ], + [ + "▁unfortunately", + -12.437949180603027 + ], + [ + "▁Hav", + -12.438084602355957 + ], + [ + "▁Dirty", + -12.438323974609375 + ], + [ + "▁Beverly", + -12.438326835632324 + ], + [ + "▁merging", + -12.438329696655273 + ], + [ + "▁nm", + -12.438374519348145 + ], + [ + "▁penetrated", + -12.43851089477539 + ], + [ + "▁calf", + -12.438570976257324 + ], + [ + "▁melted", + -12.438617706298828 + ], + [ + "▁Schwartz", + -12.439056396484375 + ], + [ + "▁mistakenly", + -12.439058303833008 + ], + [ + "▁Dresden", + -12.43906307220459 + ], + [ + "▁Marxist", + -12.439072608947754 + ], + [ + "▁Congressman", + -12.439265251159668 + ], + [ + "▁Patrol", + -12.439390182495117 + ], + [ + "▁Damon", + -12.439403533935547 + ], + [ + "▁Enrique", + -12.43979263305664 + ], + [ + "▁fundraising", + -12.43979263305664 + ], + [ + "▁Split", + -12.439935684204102 + ], + [ + "▁synonymous", + -12.44001579284668 + ], + [ + "▁redesign", + -12.44014835357666 + ], + [ + "▁Chilean", + -12.440333366394043 + ], + [ + "▁Harvest", + -12.440555572509766 + ], + [ + "▁deserved", + -12.440653800964355 + ], + [ + "▁Subject", + -12.44077205657959 + ], + [ + "▁Lima", + -12.440805435180664 + ], + [ + "paw", + -12.440911293029785 + ], + [ + "20,000", + -12.440937995910645 + ], + [ + "▁Jac", + -12.441166877746582 + ], + [ + "▁Rhythm", + -12.441266059875488 + ], + [ + "▁Judah", + -12.441267967224121 + ], + [ + "▁Linares", + -12.44127082824707 + ], + [ + "▁Duchy", + -12.4413480758667 + ], + [ + "lastname", + -12.441509246826172 + ], + [ + "▁grit", + -12.441825866699219 + ], + [ + "▁Significant", + -12.44200325012207 + ], + [ + "▁tomorrow", + -12.44200611114502 + ], + [ + "▁Organic", + -12.442046165466309 + ], + [ + "▁Stream", + -12.442270278930664 + ], + [ + "profit", + -12.442418098449707 + ], + [ + "▁capped", + -12.442527770996094 + ], + [ + "2000", + -12.442546844482422 + ], + [ + "▁penis", + -12.442617416381836 + ], + [ + "▁nourish", + -12.442782402038574 + ], + [ + "▁expressway", + -12.442794799804688 + ], + [ + "▁Willow", + -12.442806243896484 + ], + [ + "diktè", + -12.442912101745605 + ], + [ + "▁Horace", + -12.442959785461426 + ], + [ + "▁writ", + -12.443299293518066 + ], + [ + "▁Chicken", + -12.443366050720215 + ], + [ + "▁confirming", + -12.443367004394531 + ], + [ + "▁orchard", + -12.443504333496094 + ], + [ + "▁Midnight", + -12.443523406982422 + ], + [ + "▁Infant", + -12.443916320800781 + ], + [ + "▁Welcome", + -12.444218635559082 + ], + [ + "▁fashionable", + -12.444474220275879 + ], + [ + "▁affirmed", + -12.444629669189453 + ], + [ + "▁resurrect", + -12.444793701171875 + ], + [ + "▁Rookie", + -12.444958686828613 + ], + [ + "▁Neolithic", + -12.444968223571777 + ], + [ + "LF", + -12.445052146911621 + ], + [ + "▁Poet", + -12.445632934570312 + ], + [ + "Â", + -12.445698738098145 + ], + [ + "▁epilepsy", + -12.445698738098145 + ], + [ + "▁bleach", + -12.445704460144043 + ], + [ + "▁spouse", + -12.445713996887207 + ], + [ + "chain", + -12.445714950561523 + ], + [ + "▁1783", + -12.44579029083252 + ], + [ + "▁Gamer", + -12.446224212646484 + ], + [ + "▁Blanche", + -12.446236610412598 + ], + [ + "▁Chem", + -12.446372985839844 + ], + [ + "▁Hyderabad", + -12.446439743041992 + ], + [ + "▁rerouted", + -12.446439743041992 + ], + [ + "▁veterinarian", + -12.446439743041992 + ], + [ + "▁Pixar", + -12.446440696716309 + ], + [ + "▁proposing", + -12.446441650390625 + ], + [ + "trophic", + -12.446447372436523 + ], + [ + "▁Merit", + -12.446549415588379 + ], + [ + "▁Piano", + -12.446562767028809 + ], + [ + "Fig", + -12.446608543395996 + ], + [ + "▁complementary", + -12.44685173034668 + ], + [ + "▁Gerry", + -12.44697093963623 + ], + [ + "▁cache", + -12.44710636138916 + ], + [ + "▁suffix", + -12.44718074798584 + ], + [ + "▁Prairie", + -12.447181701660156 + ], + [ + "▁terminology", + -12.447181701660156 + ], + [ + "▁Poole", + -12.4472074508667 + ], + [ + "▁Knowing", + -12.447232246398926 + ], + [ + "▁Airbus", + -12.447688102722168 + ], + [ + "lithic", + -12.447854995727539 + ], + [ + "▁turmoil", + -12.447922706604004 + ], + [ + "▁Shelby", + -12.447925567626953 + ], + [ + "▁Uttar", + -12.448004722595215 + ], + [ + "▁regent", + -12.448089599609375 + ], + [ + "▁assassinated", + -12.448100090026855 + ], + [ + "▁lance", + -12.44829273223877 + ], + [ + "grin", + -12.448335647583008 + ], + [ + "▁Rabi", + -12.448378562927246 + ], + [ + "▁Yemen", + -12.448486328125 + ], + [ + "▁Ruiz", + -12.44853401184082 + ], + [ + "▁gestation", + -12.448665618896484 + ], + [ + "▁Counter", + -12.448920249938965 + ], + [ + "▁Ske", + -12.449111938476562 + ], + [ + "ocratic", + -12.449322700500488 + ], + [ + "ān", + -12.44938850402832 + ], + [ + "▁reggae", + -12.449407577514648 + ], + [ + "▁Mouse", + -12.449740409851074 + ], + [ + "▁fundamentally", + -12.450011253356934 + ], + [ + "▁aristocracy", + -12.450151443481445 + ], + [ + "▁Insurance", + -12.450152397155762 + ], + [ + "▁1822", + -12.450214385986328 + ], + [ + "gression", + -12.450403213500977 + ], + [ + "▁Gap", + -12.450455665588379 + ], + [ + "▁simplest", + -12.450627326965332 + ], + [ + "▁cumulative", + -12.450895309448242 + ], + [ + "▁orthodox", + -12.45090103149414 + ], + [ + "▁Kappa", + -12.450967788696289 + ], + [ + "▁nap", + -12.450977325439453 + ], + [ + "▁flourished", + -12.451035499572754 + ], + [ + "▁Perkins", + -12.451088905334473 + ], + [ + "▁serum", + -12.45130443572998 + ], + [ + "▁candidacy", + -12.451640129089355 + ], + [ + "▁easiest", + -12.451640129089355 + ], + [ + "▁reorganized", + -12.451640129089355 + ], + [ + "▁ruthless", + -12.451640129089355 + ], + [ + "▁urinary", + -12.451640129089355 + ], + [ + "▁overturned", + -12.451644897460938 + ], + [ + "▁testify", + -12.451723098754883 + ], + [ + "▁Wigan", + -12.45174503326416 + ], + [ + "▁trapping", + -12.452021598815918 + ], + [ + "▁genuinely", + -12.45214557647705 + ], + [ + "▁pesticide", + -12.45218276977539 + ], + [ + "▁pioneered", + -12.452203750610352 + ], + [ + "▁1807", + -12.4522123336792 + ], + [ + "▁Hazel", + -12.452376365661621 + ], + [ + "▁Stirling", + -12.452385902404785 + ], + [ + "▁salaries", + -12.452387809753418 + ], + [ + "▁Rory", + -12.452459335327148 + ], + [ + "▁Torre", + -12.452601432800293 + ], + [ + "▁sunset", + -12.45263385772705 + ], + [ + "oodle", + -12.452723503112793 + ], + [ + "▁Magna", + -12.453131675720215 + ], + [ + "▁Thierry", + -12.453131675720215 + ], + [ + "▁regulating", + -12.453131675720215 + ], + [ + "▁Housing", + -12.45337963104248 + ], + [ + "▁Agnes", + -12.453450202941895 + ], + [ + "▁drunken", + -12.453869819641113 + ], + [ + "▁Pòtoprens", + -12.453877449035645 + ], + [ + "▁altering", + -12.454055786132812 + ], + [ + "▁preseason", + -12.454085350036621 + ], + [ + "▁cusp", + -12.454434394836426 + ], + [ + "▁Sutherland", + -12.45462417602539 + ], + [ + "▁stark", + -12.45486068725586 + ], + [ + "▁430", + -12.454997062683105 + ], + [ + "▁loris", + -12.455262184143066 + ], + [ + "extraterrestrial", + -12.455370903015137 + ], + [ + "▁Supplement", + -12.455370903015137 + ], + [ + "▁Versailles", + -12.455370903015137 + ], + [ + "▁dismantled", + -12.455370903015137 + ], + [ + "▁skyscraper", + -12.455370903015137 + ], + [ + "▁660", + -12.455875396728516 + ], + [ + "▁delighted", + -12.455904960632324 + ], + [ + "▁Anniversary", + -12.456119537353516 + ], + [ + "▁inauguration", + -12.456119537353516 + ], + [ + "growth", + -12.456795692443848 + ], + [ + "▁kernel", + -12.456868171691895 + ], + [ + "▁berth", + -12.457416534423828 + ], + [ + "▁relativity", + -12.457616806030273 + ], + [ + "▁420", + -12.457672119140625 + ], + [ + "▁relaxation", + -12.457999229431152 + ], + [ + "▁Pwo", + -12.458109855651855 + ], + [ + "bau", + -12.458161354064941 + ], + [ + "▁mutiny", + -12.458366394042969 + ], + [ + "▁Crimson", + -12.458367347717285 + ], + [ + "▁stitch", + -12.458396911621094 + ], + [ + "▁warmth", + -12.458489418029785 + ], + [ + "▁scenery", + -12.458542823791504 + ], + [ + "▁tortured", + -12.4586181640625 + ], + [ + "▁Maiden", + -12.458673477172852 + ], + [ + "▁tuning", + -12.458691596984863 + ], + [ + "esthesia", + -12.45911693572998 + ], + [ + "▁reunite", + -12.45914363861084 + ], + [ + "▁nuance", + -12.459261894226074 + ], + [ + "▁Countries", + -12.459290504455566 + ], + [ + "ghan", + -12.459492683410645 + ], + [ + "▁Eaton", + -12.459630966186523 + ], + [ + "▁refract", + -12.459664344787598 + ], + [ + "▁listener", + -12.459799766540527 + ], + [ + "▁Oval", + -12.459860801696777 + ], + [ + "▁commodity", + -12.459867477416992 + ], + [ + "▁Mandela", + -12.459870338439941 + ], + [ + "▁Magdalen", + -12.459890365600586 + ], + [ + "▁Gong", + -12.459896087646484 + ], + [ + "||2", + -12.460280418395996 + ], + [ + "▁periodical", + -12.460339546203613 + ], + [ + "▁royalty", + -12.460583686828613 + ], + [ + "▁contemplate", + -12.46061897277832 + ], + [ + "▁wicked", + -12.460671424865723 + ], + [ + "▁secession", + -12.461370468139648 + ], + [ + "▁thunder", + -12.46137523651123 + ], + [ + "▁Eating", + -12.461491584777832 + ], + [ + "▁resurrection", + -12.46153736114502 + ], + [ + "▁rites", + -12.461589813232422 + ], + [ + "▁newcomer", + -12.461636543273926 + ], + [ + "▁Blow", + -12.461638450622559 + ], + [ + "▁Lava", + -12.461737632751465 + ], + [ + "▁Mansion", + -12.4619140625 + ], + [ + "▁Lydia", + -12.461943626403809 + ], + [ + "▁advocating", + -12.462122917175293 + ], + [ + "▁swollen", + -12.462122917175293 + ], + [ + "▁unreleased", + -12.462122917175293 + ], + [ + "▁Reduce", + -12.462193489074707 + ], + [ + "▁Effective", + -12.462291717529297 + ], + [ + "▁mandated", + -12.462536811828613 + ], + [ + "▁sorry", + -12.462822914123535 + ], + [ + "▁blur", + -12.462851524353027 + ], + [ + "▁Suzuki", + -12.462876319885254 + ], + [ + "▁façade", + -12.462876319885254 + ], + [ + "▁Lecture", + -12.46287727355957 + ], + [ + "▁Avila", + -12.4629487991333 + ], + [ + "▁leaning", + -12.462991714477539 + ], + [ + "LAN", + -12.463079452514648 + ], + [ + "▁Dash", + -12.463154792785645 + ], + [ + "RG", + -12.463420867919922 + ], + [ + "▁twisted", + -12.463421821594238 + ], + [ + "▁Merchant", + -12.4636812210083 + ], + [ + "▁Kylie", + -12.463691711425781 + ], + [ + "▁XIV", + -12.46378231048584 + ], + [ + "▁Unknown", + -12.463851928710938 + ], + [ + "▁harmless", + -12.463982582092285 + ], + [ + "▁versa", + -12.464106559753418 + ], + [ + "odic", + -12.464275360107422 + ], + [ + "▁Stick", + -12.464306831359863 + ], + [ + "▁inevitably", + -12.464384078979492 + ], + [ + "▁Porto", + -12.464582443237305 + ], + [ + "▁Hooper", + -12.464683532714844 + ], + [ + "NET", + -12.4647798538208 + ], + [ + "igny", + -12.464790344238281 + ], + [ + "▁clashed", + -12.465045928955078 + ], + [ + "▁Mifflin", + -12.46513843536377 + ], + [ + "▁grocery", + -12.46513843536377 + ], + [ + "▁incapable", + -12.465156555175781 + ], + [ + "runner", + -12.465249061584473 + ], + [ + "▁nmi", + -12.465261459350586 + ], + [ + "▁Britten", + -12.465303421020508 + ], + [ + "PDF", + -12.465383529663086 + ], + [ + "▁disguised", + -12.465394973754883 + ], + [ + "2009", + -12.465435028076172 + ], + [ + "houser", + -12.46546459197998 + ], + [ + "▁†", + -12.465582847595215 + ], + [ + "▁Abbott", + -12.465622901916504 + ], + [ + "▁MacFarlane", + -12.465893745422363 + ], + [ + "▁liberties", + -12.465893745422363 + ], + [ + "▁bodily", + -12.46589469909668 + ], + [ + "▁guinea", + -12.46589469909668 + ], + [ + "▁AFC", + -12.466010093688965 + ], + [ + "▁Dong", + -12.466172218322754 + ], + [ + "▁differentiated", + -12.466437339782715 + ], + [ + "▁mined", + -12.4664945602417 + ], + [ + "▁Siva", + -12.466495513916016 + ], + [ + "▁clarified", + -12.466650009155273 + ], + [ + "▁cartoonist", + -12.466697692871094 + ], + [ + "▁truss", + -12.466697692871094 + ], + [ + "▁Marilyn", + -12.466730117797852 + ], + [ + "▁Growing", + -12.466750144958496 + ], + [ + "▁alpine", + -12.466912269592285 + ], + [ + "▁Comme", + -12.467025756835938 + ], + [ + "▁enact", + -12.467192649841309 + ], + [ + "▁80%", + -12.467265129089355 + ], + [ + "View", + -12.467370986938477 + ], + [ + "▁sustaining", + -12.46750545501709 + ], + [ + "▁Guidelines", + -12.467538833618164 + ], + [ + "▁Blog", + -12.46802806854248 + ], + [ + "▁stride", + -12.46810245513916 + ], + [ + "▁balancing", + -12.468162536621094 + ], + [ + "▁Meat", + -12.46835994720459 + ], + [ + "▁Manson", + -12.468673706054688 + ], + [ + "▁Stephanie", + -12.468920707702637 + ], + [ + "▁voluntarily", + -12.468920707702637 + ], + [ + "▁Dungeon", + -12.468921661376953 + ], + [ + "▁interred", + -12.468997955322266 + ], + [ + "analysis", + -12.46906852722168 + ], + [ + "▁colonization", + -12.469182968139648 + ], + [ + "▁1770", + -12.469359397888184 + ], + [ + "▁Drawing", + -12.469381332397461 + ], + [ + "▁reuse", + -12.469426155090332 + ], + [ + "▁instructional", + -12.469464302062988 + ], + [ + "ulla", + -12.46958065032959 + ], + [ + "▁Dangerous", + -12.46967887878418 + ], + [ + "▁imperfect", + -12.46967887878418 + ], + [ + "▁amusement", + -12.469681739807129 + ], + [ + "▁Hawkins", + -12.4698486328125 + ], + [ + "appa", + -12.470293045043945 + ], + [ + "shack", + -12.470301628112793 + ], + [ + "▁paced", + -12.470341682434082 + ], + [ + "▁String", + -12.4703950881958 + ], + [ + "▁Mozart", + -12.470438003540039 + ], + [ + "▁repulsed", + -12.470438003540039 + ], + [ + "▁kinetic", + -12.470446586608887 + ], + [ + "▁handicap", + -12.470459938049316 + ], + [ + "▁Disaster", + -12.47052001953125 + ], + [ + "▁Wendy", + -12.470563888549805 + ], + [ + "▁Valentin", + -12.470577239990234 + ], + [ + "▁Werner", + -12.470613479614258 + ], + [ + "▁polygon", + -12.470617294311523 + ], + [ + "▁discontinu", + -12.47065544128418 + ], + [ + "▁invaders", + -12.470664978027344 + ], + [ + "δ", + -12.471196174621582 + ], + [ + "▁Breckinridge", + -12.471197128295898 + ], + [ + "▁Māori", + -12.471197128295898 + ], + [ + "▁recognizable", + -12.471197128295898 + ], + [ + "▁stimuli", + -12.471197128295898 + ], + [ + "fused", + -12.471388816833496 + ], + [ + "▁Cava", + -12.471467018127441 + ], + [ + "▁pawn", + -12.471529960632324 + ], + [ + "cham", + -12.471680641174316 + ], + [ + "evich", + -12.471822738647461 + ], + [ + "▁handsome", + -12.47186279296875 + ], + [ + "liter", + -12.471955299377441 + ], + [ + "▁unemployed", + -12.471956253051758 + ], + [ + "robe", + -12.472159385681152 + ], + [ + "▁Leading", + -12.472336769104004 + ], + [ + "▁glorious", + -12.47271728515625 + ], + [ + "▁Growth", + -12.47290325164795 + ], + [ + "▁obstruction", + -12.473260879516602 + ], + [ + "These", + -12.473278999328613 + ], + [ + "▁ornamental", + -12.473403930664062 + ], + [ + "▁Faculty", + -12.473478317260742 + ], + [ + "▁sequencing", + -12.473478317260742 + ], + [ + "▁analytic", + -12.473567008972168 + ], + [ + "▁activism", + -12.473579406738281 + ], + [ + "Pri", + -12.474135398864746 + ], + [ + "▁Chick", + -12.474164009094238 + ], + [ + "▁preacher", + -12.474321365356445 + ], + [ + "▁Haynes", + -12.474516868591309 + ], + [ + "cluding", + -12.474547386169434 + ], + [ + "▁carrot", + -12.47456169128418 + ], + [ + "gha", + -12.474669456481934 + ], + [ + "▁Kubrick", + -12.47500228881836 + ], + [ + "▁cruising", + -12.47500228881836 + ], + [ + "▁horrible", + -12.475764274597168 + ], + [ + "▁covenant", + -12.475765228271484 + ], + [ + "▁Hercules", + -12.47576904296875 + ], + [ + "▁coronavirus", + -12.475769996643066 + ], + [ + "▁quarrel", + -12.475997924804688 + ], + [ + "▁490", + -12.476351737976074 + ], + [ + "▁tomatoes", + -12.476387023925781 + ], + [ + "6,000", + -12.476496696472168 + ], + [ + "▁Kosovo", + -12.47652816772461 + ], + [ + "▁irritation", + -12.47652816772461 + ], + [ + "▁parasitic", + -12.47652816772461 + ], + [ + "▁Alicia", + -12.476652145385742 + ], + [ + "▁Monarch", + -12.476713180541992 + ], + [ + "▁penal", + -12.476743698120117 + ], + [ + "Homme", + -12.476752281188965 + ], + [ + "Col", + -12.47677993774414 + ], + [ + "▁halftime", + -12.476899147033691 + ], + [ + "▁Volk", + -12.4772367477417 + ], + [ + "▁Appalachian", + -12.47729206085205 + ], + [ + "▁Holguin", + -12.47729206085205 + ], + [ + "▁Tomorrow", + -12.47729206085205 + ], + [ + "▁politik", + -12.477293014526367 + ], + [ + "▁abbot", + -12.477315902709961 + ], + [ + "▁Marvin", + -12.47752857208252 + ], + [ + "ignon", + -12.477532386779785 + ], + [ + "▁Allow", + -12.477557182312012 + ], + [ + "▁Holm", + -12.477697372436523 + ], + [ + "flex", + -12.477797508239746 + ], + [ + "▁Epic", + -12.477975845336914 + ], + [ + "▁Quatermas", + -12.478056907653809 + ], + [ + "▁lucrative", + -12.478056907653809 + ], + [ + "▁sprout", + -12.478057861328125 + ], + [ + "▁shortest", + -12.478311538696289 + ], + [ + "▁Whole", + -12.478354454040527 + ], + [ + "▁Soap", + -12.47877025604248 + ], + [ + "▁Tottenham", + -12.478821754455566 + ], + [ + "vention", + -12.478947639465332 + ], + [ + "▁301", + -12.478997230529785 + ], + [ + "plastic", + -12.47900104522705 + ], + [ + "▁abolish", + -12.479061126708984 + ], + [ + "▁preaching", + -12.479232788085938 + ], + [ + "▁scientifically", + -12.479427337646484 + ], + [ + "▁maize", + -12.479430198669434 + ], + [ + "▁eject", + -12.479453086853027 + ], + [ + "▁Fermi", + -12.479491233825684 + ], + [ + "▁subtitle", + -12.47952651977539 + ], + [ + "▁serpent", + -12.47959041595459 + ], + [ + "▁Musk", + -12.479619026184082 + ], + [ + "▁Banner", + -12.479918479919434 + ], + [ + "▁Hub", + -12.479990005493164 + ], + [ + "▁Suez", + -12.48008918762207 + ], + [ + "▁patrolling", + -12.480167388916016 + ], + [ + "iscus", + -12.480277061462402 + ], + [ + "▁gorge", + -12.480319023132324 + ], + [ + "▁titanium", + -12.480353355407715 + ], + [ + "▁RKO", + -12.480354309082031 + ], + [ + "▁Cabo", + -12.480801582336426 + ], + [ + "▁Camden", + -12.480907440185547 + ], + [ + "clus", + -12.480998039245605 + ], + [ + "▁Wish", + -12.481048583984375 + ], + [ + "▁brownish", + -12.48128604888916 + ], + [ + "▁frank", + -12.481289863586426 + ], + [ + "▁midway", + -12.481698989868164 + ], + [ + "▁packaged", + -12.481766700744629 + ], + [ + "▁newsletter", + -12.481887817382812 + ], + [ + "close", + -12.481897354125977 + ], + [ + "▁peptide", + -12.481904983520508 + ], + [ + "wang", + -12.482159614562988 + ], + [ + "▁Jacksonville", + -12.482321739196777 + ], + [ + "▁spit", + -12.482476234436035 + ], + [ + "▁1778", + -12.482638359069824 + ], + [ + "▁Property", + -12.482656478881836 + ], + [ + "▁bilingual", + -12.482656478881836 + ], + [ + "▁utilities", + -12.482656478881836 + ], + [ + "▁Femme", + -12.482709884643555 + ], + [ + "conduct", + -12.482931137084961 + ], + [ + "▁intending", + -12.483325958251953 + ], + [ + "▁Levy", + -12.483379364013672 + ], + [ + "▁Shō", + -12.483558654785156 + ], + [ + "▁Hume", + -12.48361587524414 + ], + [ + "▁allowance", + -12.483620643615723 + ], + [ + "NU", + -12.484054565429688 + ], + [ + "▁implying", + -12.484169960021973 + ], + [ + "▁Linnaeus", + -12.484193801879883 + ], + [ + "▁resided", + -12.484231948852539 + ], + [ + "hair", + -12.484240531921387 + ], + [ + "▁Charlton", + -12.484256744384766 + ], + [ + "▁Burnham", + -12.484436988830566 + ], + [ + "▁Lamar", + -12.484963417053223 + ], + [ + "▁imaginative", + -12.484963417053223 + ], + [ + "▁Azores", + -12.484967231750488 + ], + [ + "▁Tay", + -12.485028266906738 + ], + [ + "▁Jonas", + -12.485372543334961 + ], + [ + "▁kidnap", + -12.485639572143555 + ], + [ + "▁descriptive", + -12.485733985900879 + ], + [ + "▁robbery", + -12.485733985900879 + ], + [ + "▁transparency", + -12.485733985900879 + ], + [ + "▁prequel", + -12.485734939575195 + ], + [ + "▁differentiation", + -12.485746383666992 + ], + [ + "▁surreal", + -12.485780715942383 + ], + [ + "▁Contest", + -12.486176490783691 + ], + [ + "àn", + -12.486268043518066 + ], + [ + "▁ACE", + -12.486357688903809 + ], + [ + "▁sinus", + -12.48641300201416 + ], + [ + "▁decompression", + -12.486505508422852 + ], + [ + "▁ordained", + -12.486505508422852 + ], + [ + "▁chariot", + -12.48651123046875 + ], + [ + "▁Charity", + -12.486571311950684 + ], + [ + "andra", + -12.486599922180176 + ], + [ + "uration", + -12.486784934997559 + ], + [ + "▁subscribe", + -12.486812591552734 + ], + [ + "▁oven", + -12.487335205078125 + ], + [ + "▁Rainfall", + -12.487360954284668 + ], + [ + "cranial", + -12.487369537353516 + ], + [ + "▁annexation", + -12.487458229064941 + ], + [ + "defined", + -12.48790168762207 + ], + [ + "▁enjoyment", + -12.487943649291992 + ], + [ + "▁inexperienced", + -12.488048553466797 + ], + [ + "▁mitigation", + -12.488048553466797 + ], + [ + "▁uplift", + -12.488052368164062 + ], + [ + "eater", + -12.48807144165039 + ], + [ + "▁emigrated", + -12.488471031188965 + ], + [ + "▁flawed", + -12.488504409790039 + ], + [ + "2017", + -12.488508224487305 + ], + [ + "▁quota", + -12.488646507263184 + ], + [ + "▁trajectory", + -12.488821983337402 + ], + [ + "▁unidentified", + -12.488821983337402 + ], + [ + "▁turf", + -12.488829612731934 + ], + [ + "▁roost", + -12.488907814025879 + ], + [ + "▁Pasha", + -12.489062309265137 + ], + [ + "▁Maud", + -12.4890775680542 + ], + [ + "▁peel", + -12.4890775680542 + ], + [ + "▁mixes", + -12.489117622375488 + ], + [ + "▁modernization", + -12.489201545715332 + ], + [ + "▁Dalton", + -12.489690780639648 + ], + [ + "▁Baez", + -12.48971939086914 + ], + [ + "▁Truck", + -12.489884376525879 + ], + [ + "▁correlated", + -12.490056037902832 + ], + [ + "▁misleading", + -12.490368843078613 + ], + [ + "▁enroll", + -12.490822792053223 + ], + [ + "▁pho", + -12.490880966186523 + ], + [ + "▁takeover", + -12.491122245788574 + ], + [ + "▁Odyssey", + -12.491144180297852 + ], + [ + "▁Anzac", + -12.4911470413208 + ], + [ + "▁discontent", + -12.49119758605957 + ], + [ + "▁Perl", + -12.491339683532715 + ], + [ + "▁passport", + -12.491344451904297 + ], + [ + "▁Kink", + -12.491366386413574 + ], + [ + "▁nonprofit", + -12.49136734008789 + ], + [ + "TOR", + -12.49167251586914 + ], + [ + "▁XX", + -12.491813659667969 + ], + [ + "▁Bren", + -12.491898536682129 + ], + [ + "▁nocturnal", + -12.491918563842773 + ], + [ + "▁penguin", + -12.491918563842773 + ], + [ + "▁botanical", + -12.49191951751709 + ], + [ + "▁marshes", + -12.492380142211914 + ], + [ + "▁Jedi", + -12.49246597290039 + ], + [ + "▁Graphic", + -12.492474555969238 + ], + [ + "▁Titus", + -12.492680549621582 + ], + [ + "▁Sanchez", + -12.492694854736328 + ], + [ + "▁artefacts", + -12.492694854736328 + ], + [ + "▁crises", + -12.49277400970459 + ], + [ + "plate", + -12.492874145507812 + ], + [ + "▁Construct", + -12.493051528930664 + ], + [ + "ön", + -12.493106842041016 + ], + [ + "▁chaplain", + -12.493471145629883 + ], + [ + "▁conclusive", + -12.493571281433105 + ], + [ + "▁Discuss", + -12.4937162399292 + ], + [ + "▁stat", + -12.494158744812012 + ], + [ + "▁plizyè", + -12.494248390197754 + ], + [ + "▁pwodiktè", + -12.494264602661133 + ], + [ + "▁ethnicity", + -12.49426555633545 + ], + [ + "▁NOAA", + -12.494266510009766 + ], + [ + "▁Ghana", + -12.494462013244629 + ], + [ + "helm", + -12.49477767944336 + ], + [ + "▁Previous", + -12.494817733764648 + ], + [ + "▁Conflict", + -12.495025634765625 + ], + [ + "▁Emanuel", + -12.495026588439941 + ], + [ + "▁Soler", + -12.495050430297852 + ], + [ + "▁Cristina", + -12.495123863220215 + ], + [ + "▁Alison", + -12.495172500610352 + ], + [ + "▁ample", + -12.495255470275879 + ], + [ + "▁Cheshire", + -12.495278358459473 + ], + [ + "▁Esther", + -12.495308876037598 + ], + [ + "▁interrogat", + -12.49547004699707 + ], + [ + "▁Babylon", + -12.495506286621094 + ], + [ + "▁Kick", + -12.49554443359375 + ], + [ + "▁chewing", + -12.495644569396973 + ], + [ + "parent", + -12.495697975158691 + ], + [ + "▁Isis", + -12.495711326599121 + ], + [ + "▁frustrating", + -12.495803833007812 + ], + [ + "▁Gettysburg", + -12.495818138122559 + ], + [ + "mori", + -12.495830535888672 + ], + [ + "▁crushing", + -12.496034622192383 + ], + [ + "▁Patriarch", + -12.496582984924316 + ], + [ + "▁Presidency", + -12.496582984924316 + ], + [ + "▁filing", + -12.496635437011719 + ], + [ + "depressant", + -12.49666690826416 + ], + [ + "▁donate", + -12.496789932250977 + ], + [ + "▁annul", + -12.497283935546875 + ], + [ + "▁cavities", + -12.49736213684082 + ], + [ + "▁chronological", + -12.497363090515137 + ], + [ + "▁Exposition", + -12.497525215148926 + ], + [ + "▁stepping", + -12.497568130493164 + ], + [ + "▁Fountain", + -12.49814224243164 + ], + [ + "▁residual", + -12.49814224243164 + ], + [ + "▁reversal", + -12.49814510345459 + ], + [ + "olith", + -12.498159408569336 + ], + [ + "▁specification", + -12.498176574707031 + ], + [ + "▁questionable", + -12.498272895812988 + ], + [ + "▁codename", + -12.498464584350586 + ], + [ + "▁kreye", + -12.498924255371094 + ], + [ + "▁Garland", + -12.498946189880371 + ], + [ + "▁Freud", + -12.498978614807129 + ], + [ + "▁Violence", + -12.499015808105469 + ], + [ + "▁Lotus", + -12.49929141998291 + ], + [ + "▁transmitter", + -12.499612808227539 + ], + [ + "▁narration", + -12.49970531463623 + ], + [ + "▁Bruins", + -12.499885559082031 + ], + [ + "▁stature", + -12.499911308288574 + ], + [ + "solution", + -12.499946594238281 + ], + [ + "▁councillor", + -12.50000286102295 + ], + [ + "▁patriotic", + -12.500102043151855 + ], + [ + "▁Ashton", + -12.50032901763916 + ], + [ + "Meksik", + -12.500349998474121 + ], + [ + "▁Congregation", + -12.50048542022705 + ], + [ + "▁Spectrum", + -12.500486373901367 + ], + [ + "▁masculine", + -12.500486373901367 + ], + [ + "▁doubling", + -12.500487327575684 + ], + [ + "▁oyster", + -12.500489234924316 + ], + [ + "ieux", + -12.500490188598633 + ], + [ + "▁allele", + -12.500500679016113 + ], + [ + "▁surpassing", + -12.500569343566895 + ], + [ + "▁Description", + -12.500739097595215 + ], + [ + "▁augment", + -12.500795364379883 + ], + [ + "▁Cycle", + -12.500899314880371 + ], + [ + "▁Frog", + -12.50119400024414 + ], + [ + "▁disorganized", + -12.50126838684082 + ], + [ + "▁Recovery", + -12.501269340515137 + ], + [ + "▁Sterling", + -12.501282691955566 + ], + [ + "▁Seneca", + -12.501309394836426 + ], + [ + "▁Mott", + -12.501352310180664 + ], + [ + "Christ", + -12.501433372497559 + ], + [ + "▁AFL", + -12.50148868560791 + ], + [ + "▁reiterat", + -12.501557350158691 + ], + [ + "▁mechanic", + -12.501753807067871 + ], + [ + "ogenesis", + -12.501814842224121 + ], + [ + "▁Alfonso", + -12.50205135345459 + ], + [ + "▁Economy", + -12.50205135345459 + ], + [ + "▁squeeze", + -12.50205135345459 + ], + [ + "▁unacceptable", + -12.50205135345459 + ], + [ + "▁dilute", + -12.502184867858887 + ], + [ + "▁Haas", + -12.50224781036377 + ], + [ + "▁hardcore", + -12.502330780029297 + ], + [ + "▁konsè", + -12.502408027648926 + ], + [ + "är", + -12.502424240112305 + ], + [ + "titled", + -12.502467155456543 + ], + [ + "▁biographical", + -12.502835273742676 + ], + [ + "▁attested", + -12.502869606018066 + ], + [ + "▁Lucky", + -12.503029823303223 + ], + [ + "▁booth", + -12.50309944152832 + ], + [ + "▁Reuter", + -12.503199577331543 + ], + [ + "lake", + -12.503218650817871 + ], + [ + "▁preventive", + -12.50327205657959 + ], + [ + "▁Moran", + -12.503303527832031 + ], + [ + "▁Perse", + -12.503460884094238 + ], + [ + "▁Darkness", + -12.503463745117188 + ], + [ + "▁plaintiff", + -12.503619194030762 + ], + [ + "▁rainbow", + -12.503695487976074 + ], + [ + "été", + -12.50377082824707 + ], + [ + "▁Boyle", + -12.503776550292969 + ], + [ + "▁gluten", + -12.504000663757324 + ], + [ + "▁Amir", + -12.504021644592285 + ], + [ + "▁hp", + -12.504108428955078 + ], + [ + "▁occupational", + -12.504220962524414 + ], + [ + "▁Escape", + -12.50429630279541 + ], + [ + "▁Díaz", + -12.504404067993164 + ], + [ + "▁caffeine", + -12.504404067993164 + ], + [ + "▁Río", + -12.504413604736328 + ], + [ + "▁Everybody", + -12.5044527053833 + ], + [ + "▁hobby", + -12.504463195800781 + ], + [ + "▁specialize", + -12.504608154296875 + ], + [ + "▁dataset", + -12.504960060119629 + ], + [ + "phenol", + -12.505040168762207 + ], + [ + "▁leopard", + -12.505189895629883 + ], + [ + "▁thrash", + -12.505197525024414 + ], + [ + "recht", + -12.505267143249512 + ], + [ + "▁pastoral", + -12.50565242767334 + ], + [ + "▁Flores", + -12.50566291809082 + ], + [ + "▁guiding", + -12.505977630615234 + ], + [ + "▁initiation", + -12.506000518798828 + ], + [ + "▁steroid", + -12.506037712097168 + ], + [ + "▁Hurley", + -12.506221771240234 + ], + [ + "▁Pool", + -12.506279945373535 + ], + [ + "▁redevelop", + -12.506567001342773 + ], + [ + "▁Santana", + -12.506660461425781 + ], + [ + "bodies", + -12.506678581237793 + ], + [ + "▁Applied", + -12.506763458251953 + ], + [ + "▁thwart", + -12.50676441192627 + ], + [ + "▁discourage", + -12.506858825683594 + ], + [ + "▁Ashes", + -12.507048606872559 + ], + [ + "▁unjust", + -12.507279396057129 + ], + [ + "▁inadvertently", + -12.507550239562988 + ], + [ + "▁exacerbated", + -12.507599830627441 + ], + [ + "▁disperse", + -12.507739067077637 + ], + [ + "▁birthplace", + -12.50775146484375 + ], + [ + "▁Etty", + -12.50792407989502 + ], + [ + "▁categorized", + -12.508070945739746 + ], + [ + "▁Mughal", + -12.508339881896973 + ], + [ + "▁Chili", + -12.50845718383789 + ], + [ + "▁Random", + -12.508530616760254 + ], + [ + "▁breakup", + -12.50859260559082 + ], + [ + "▁fanmi", + -12.508816719055176 + ], + [ + "▁lightweight", + -12.508856773376465 + ], + [ + "▁Goldberg", + -12.508962631225586 + ], + [ + "▁Icelandic", + -12.50903034210205 + ], + [ + "scler", + -12.509038925170898 + ], + [ + "▁neon", + -12.509122848510742 + ], + [ + "▁Puritan", + -12.509127616882324 + ], + [ + "▁shepherd", + -12.509139060974121 + ], + [ + "▁QF", + -12.50922966003418 + ], + [ + "øy", + -12.509255409240723 + ], + [ + "▁Greenwich", + -12.50928020477295 + ], + [ + "▁systematically", + -12.509369850158691 + ], + [ + "▁Birk", + -12.509796142578125 + ], + [ + "▁fancy", + -12.509872436523438 + ], + [ + "lix", + -12.51024055480957 + ], + [ + "▁readiness", + -12.510451316833496 + ], + [ + "▁delicious", + -12.51070785522461 + ], + [ + "ibble", + -12.511091232299805 + ], + [ + "▁pinch", + -12.511147499084473 + ], + [ + "▁Supply", + -12.51150131225586 + ], + [ + "▁infancy", + -12.511509895324707 + ], + [ + "▁Eck", + -12.51159954071045 + ], + [ + "▁mash", + -12.511613845825195 + ], + [ + "cipit", + -12.511630058288574 + ], + [ + "▁bracket", + -12.512288093566895 + ], + [ + "▁Increased", + -12.512295722961426 + ], + [ + "▁expectancy", + -12.51237964630127 + ], + [ + "▁splash", + -12.512385368347168 + ], + [ + "▁Arlington", + -12.512389183044434 + ], + [ + "▁Alpine", + -12.512551307678223 + ], + [ + "▁slit", + -12.51269245147705 + ], + [ + "▁Müller", + -12.513079643249512 + ], + [ + "▁destiny", + -12.513080596923828 + ], + [ + "▁Mysore", + -12.513096809387207 + ], + [ + "▁Toxic", + -12.513132095336914 + ], + [ + "▁Havana", + -12.51315975189209 + ], + [ + "▁Option", + -12.513409614562988 + ], + [ + "▁manpower", + -12.51361083984375 + ], + [ + "▁breeders", + -12.513635635375977 + ], + [ + "▁Teach", + -12.513778686523438 + ], + [ + "axis", + -12.513840675354004 + ], + [ + "▁Jacqueline", + -12.513872146606445 + ], + [ + "▁Pleistocene", + -12.513872146606445 + ], + [ + "▁scheduling", + -12.513872146606445 + ], + [ + "▁Ciego", + -12.51392650604248 + ], + [ + "vill", + -12.513934135437012 + ], + [ + "▁dictate", + -12.513989448547363 + ], + [ + "▁lecturer", + -12.514065742492676 + ], + [ + "▁sentimental", + -12.514362335205078 + ], + [ + "▁rediscover", + -12.514664649963379 + ], + [ + "▁Innocent", + -12.514666557312012 + ], + [ + "▁Hiroshima", + -12.514674186706543 + ], + [ + "▁Winner", + -12.514801979064941 + ], + [ + "▁foxes", + -12.515045166015625 + ], + [ + "▁Hamel", + -12.515053749084473 + ], + [ + "▁Unable", + -12.515180587768555 + ], + [ + "▁Hide", + -12.515185356140137 + ], + [ + "▁unreliable", + -12.515459060668945 + ], + [ + "▁Bieber", + -12.515462875366211 + ], + [ + "▁Sawyer", + -12.515497207641602 + ], + [ + "▁Nguy", + -12.515536308288574 + ], + [ + "▁competence", + -12.515620231628418 + ], + [ + "▁Atari", + -12.5156888961792 + ], + [ + "girl", + -12.515702247619629 + ], + [ + "▁́", + -12.515721321105957 + ], + [ + "▁Isaiah", + -12.516252517700195 + ], + [ + "▁illegitimate", + -12.516252517700195 + ], + [ + "▁Platt", + -12.51633358001709 + ], + [ + "Net", + -12.516413688659668 + ], + [ + "▁Mosley", + -12.516456604003906 + ], + [ + "▁homolog", + -12.516610145568848 + ], + [ + "▁Darius", + -12.516732215881348 + ], + [ + "▁Yankee", + -12.51683235168457 + ], + [ + "▁millimetre", + -12.516836166381836 + ], + [ + "▁disposed", + -12.516857147216797 + ], + [ + "▁stealth", + -12.51689338684082 + ], + [ + "▁Beethoven", + -12.517047882080078 + ], + [ + "▁cultivar", + -12.517047882080078 + ], + [ + "▁livelihood", + -12.517047882080078 + ], + [ + "▁zebra", + -12.517049789428711 + ], + [ + "▁conferred", + -12.517109870910645 + ], + [ + "▁broker", + -12.517130851745605 + ], + [ + "▁Downtown", + -12.517362594604492 + ], + [ + "▁Lyme", + -12.517536163330078 + ], + [ + "▁parcel", + -12.51758098602295 + ], + [ + "▁Robb", + -12.517643928527832 + ], + [ + "▁exemption", + -12.517813682556152 + ], + [ + "ा", + -12.517843246459961 + ], + [ + "▁Iroquois", + -12.517843246459961 + ], + [ + "▁prezidan", + -12.517843246459961 + ], + [ + "▁spacing", + -12.517895698547363 + ], + [ + "▁thou", + -12.517895698547363 + ], + [ + "graf", + -12.517951011657715 + ], + [ + "▁betrayed", + -12.518020629882812 + ], + [ + "AND", + -12.518021583557129 + ], + [ + "▁chancel", + -12.518041610717773 + ], + [ + "▁jour", + -12.518102645874023 + ], + [ + "▁Wulf", + -12.51842212677002 + ], + [ + "▁bang", + -12.518592834472656 + ], + [ + "▁truncated", + -12.518614768981934 + ], + [ + "▁pelvic", + -12.51863956451416 + ], + [ + "▁harp", + -12.51907730102539 + ], + [ + "▁Establish", + -12.519206047058105 + ], + [ + "▁planners", + -12.519535064697266 + ], + [ + "2011", + -12.519536972045898 + ], + [ + "▁intercourse", + -12.519548416137695 + ], + [ + "▁Engel", + -12.519640922546387 + ], + [ + "▁Traditionally", + -12.519646644592285 + ], + [ + "▁limitation", + -12.519686698913574 + ], + [ + "▁Rowling", + -12.51992130279541 + ], + [ + "▁Kendrick", + -12.520234107971191 + ], + [ + "▁responsive", + -12.520234107971191 + ], + [ + "▁nebula", + -12.520247459411621 + ], + [ + "▁courthouse", + -12.520270347595215 + ], + [ + "▁lever", + -12.520357131958008 + ], + [ + "bacterium", + -12.520392417907715 + ], + [ + "▁Lori", + -12.520978927612305 + ], + [ + "▁adrenal", + -12.521032333374023 + ], + [ + "▁Revelation", + -12.52103328704834 + ], + [ + "▁ECW", + -12.521280288696289 + ], + [ + "▁Audrey", + -12.521830558776855 + ], + [ + "▁Havilland", + -12.521830558776855 + ], + [ + "▁unlimited", + -12.521830558776855 + ], + [ + "▁Edison", + -12.522027015686035 + ], + [ + "▁Thornton", + -12.522151947021484 + ], + [ + "▁thorn", + -12.522302627563477 + ], + [ + "▁imaginary", + -12.522629737854004 + ], + [ + "▁uterus", + -12.522634506225586 + ], + [ + "▁reopen", + -12.522797584533691 + ], + [ + "▁Cornish", + -12.522870063781738 + ], + [ + "▁Dickens", + -12.522878646850586 + ], + [ + "▁illegally", + -12.52315902709961 + ], + [ + "Ó", + -12.523428916931152 + ], + [ + "ー", + -12.523428916931152 + ], + [ + "▁unsafe", + -12.523429870605469 + ], + [ + "▁Vanessa", + -12.523432731628418 + ], + [ + "▁CGI", + -12.523446083068848 + ], + [ + "▁oversight", + -12.523615837097168 + ], + [ + "▁XVI", + -12.523656845092773 + ], + [ + "▁Budapest", + -12.52423095703125 + ], + [ + "▁octave", + -12.52423095703125 + ], + [ + "▁undivided", + -12.52423095703125 + ], + [ + "▁SQL", + -12.5242338180542 + ], + [ + "▁bony", + -12.524282455444336 + ], + [ + "IDE", + -12.524373054504395 + ], + [ + "▁Mysterio", + -12.524392127990723 + ], + [ + "▁scanning", + -12.52451229095459 + ], + [ + "▁calibre", + -12.525032043457031 + ], + [ + "▁cartilage", + -12.525032043457031 + ], + [ + "▁crewmen", + -12.525225639343262 + ], + [ + "▁Grow", + -12.52529239654541 + ], + [ + "▁pork", + -12.5255126953125 + ], + [ + "▁Ville", + -12.525642395019531 + ], + [ + "▁osteo", + -12.525694847106934 + ], + [ + "five", + -12.525766372680664 + ], + [ + "▁Fernández", + -12.525834083557129 + ], + [ + "▁techno", + -12.525845527648926 + ], + [ + "glio", + -12.52627944946289 + ], + [ + "III", + -12.526577949523926 + ], + [ + "▁commodities", + -12.526636123657227 + ], + [ + "▁Sacred", + -12.526638984680176 + ], + [ + "▁reinstated", + -12.526668548583984 + ], + [ + "▁Hector", + -12.526918411254883 + ], + [ + "▁560", + -12.52700138092041 + ], + [ + "▁comprehend", + -12.527440071105957 + ], + [ + "▁concentrating", + -12.527440071105957 + ], + [ + "▁peloton", + -12.527440071105957 + ], + [ + "▁purported", + -12.527440071105957 + ], + [ + "▁accusing", + -12.527441024780273 + ], + [ + "▁Schedule", + -12.527447700500488 + ], + [ + "▁Blame", + -12.527678489685059 + ], + [ + "▁1788", + -12.527847290039062 + ], + [ + "▁Seward", + -12.52786922454834 + ], + [ + "▁Bride", + -12.527907371520996 + ], + [ + "▁specialised", + -12.528183937072754 + ], + [ + "▁faded", + -12.52820110321045 + ], + [ + "▁cabbage", + -12.528243064880371 + ], + [ + "▁fascinated", + -12.528243064880371 + ], + [ + "▁improvisation", + -12.528243064880371 + ], + [ + "▁License", + -12.528251647949219 + ], + [ + "▁waterfall", + -12.528461456298828 + ], + [ + "▁witches", + -12.528494834899902 + ], + [ + "▁Experimental", + -12.528778076171875 + ], + [ + "▁Paw", + -12.52888011932373 + ], + [ + "▁pearl", + -12.528894424438477 + ], + [ + "▁glut", + -12.528924942016602 + ], + [ + "phyll", + -12.529029846191406 + ], + [ + "▁Destroyer", + -12.529047966003418 + ], + [ + "▁reconsider", + -12.529047966003418 + ], + [ + "▁aggressively", + -12.529098510742188 + ], + [ + "▁energies", + -12.529107093811035 + ], + [ + "▁Carrier", + -12.529437065124512 + ], + [ + "▁soften", + -12.529744148254395 + ], + [ + "▁Partnership", + -12.529852867126465 + ], + [ + "oxide", + -12.529947280883789 + ], + [ + "▁illuminated", + -12.529999732971191 + ], + [ + "▁Haifa", + -12.530003547668457 + ], + [ + "▁Stamp", + -12.530559539794922 + ], + [ + "▁Gallagher", + -12.530658721923828 + ], + [ + "▁rebellious", + -12.530658721923828 + ], + [ + "▁Massacre", + -12.5307035446167 + ], + [ + "first", + -12.530978202819824 + ], + [ + "▁Archived", + -12.531259536743164 + ], + [ + "▁parodies", + -12.531465530395508 + ], + [ + "▁contradictory", + -12.531511306762695 + ], + [ + "▁grill", + -12.531560897827148 + ], + [ + "▁Gavin", + -12.531923294067383 + ], + [ + "1-2", + -12.53206729888916 + ], + [ + "û", + -12.532272338867188 + ], + [ + "▁Atmospheric", + -12.532272338867188 + ], + [ + "▁weaving", + -12.532288551330566 + ], + [ + "▁Smoke", + -12.532363891601562 + ], + [ + "▁Mosque", + -12.532599449157715 + ], + [ + "▁Abbasid", + -12.532613754272461 + ], + [ + "▁fist", + -12.532638549804688 + ], + [ + "(3)", + -12.532773971557617 + ], + [ + "▁sadness", + -12.532963752746582 + ], + [ + "▁consecrated", + -12.533080101013184 + ], + [ + "▁recounted", + -12.533082962036133 + ], + [ + "▁Hogg", + -12.533093452453613 + ], + [ + "rive", + -12.533236503601074 + ], + [ + "dynamic", + -12.533405303955078 + ], + [ + "▁Wilder", + -12.533405303955078 + ], + [ + "μ", + -12.533406257629395 + ], + [ + "002", + -12.53349494934082 + ], + [ + "▁mystic", + -12.533534049987793 + ], + [ + "▁Assyrian", + -12.533888816833496 + ], + [ + "▁Balzac", + -12.533888816833496 + ], + [ + "▁Upanishad", + -12.533888816833496 + ], + [ + "▁Wolfgang", + -12.533888816833496 + ], + [ + "▁unsuitable", + -12.533888816833496 + ], + [ + "▁supervising", + -12.533889770507812 + ], + [ + "▁intuitive", + -12.533891677856445 + ], + [ + "cribe", + -12.534150123596191 + ], + [ + "▁confessed", + -12.534270286560059 + ], + [ + "▁hose", + -12.534407615661621 + ], + [ + "▁vicar", + -12.534440994262695 + ], + [ + "aille", + -12.534461975097656 + ], + [ + "▁Zeppelin", + -12.534697532653809 + ], + [ + "▁blossom", + -12.534697532653809 + ], + [ + "▁Sloan", + -12.534810066223145 + ], + [ + "▁usurp", + -12.534857749938965 + ], + [ + "▁Mersey", + -12.534878730773926 + ], + [ + "John", + -12.535032272338867 + ], + [ + "▁Kirby", + -12.535045623779297 + ], + [ + "▁Suite", + -12.535099029541016 + ], + [ + "▁flick", + -12.535120964050293 + ], + [ + "▁Thatcher", + -12.53538703918457 + ], + [ + "▁1/2", + -12.535402297973633 + ], + [ + "▁Agri", + -12.535446166992188 + ], + [ + "▁Phone", + -12.535508155822754 + ], + [ + "▁Sylvia", + -12.535508155822754 + ], + [ + "▁egz", + -12.53557014465332 + ], + [ + "▁junk", + -12.535670280456543 + ], + [ + "MU", + -12.535677909851074 + ], + [ + "▁Sample", + -12.535898208618164 + ], + [ + "▁Radical", + -12.535999298095703 + ], + [ + "▁Newspaper", + -12.536317825317383 + ], + [ + "▁whitish", + -12.536317825317383 + ], + [ + "▁Cosmo", + -12.536397933959961 + ], + [ + "▁Ramsay", + -12.536417961120605 + ], + [ + "▁spared", + -12.536491394042969 + ], + [ + "▁Natalie", + -12.53659439086914 + ], + [ + "kamp", + -12.536646842956543 + ], + [ + "▁187", + -12.536717414855957 + ], + [ + "▁garde", + -12.537033081054688 + ], + [ + "▁encroach", + -12.537128448486328 + ], + [ + "▁(2010)", + -12.537215232849121 + ], + [ + "▁bending", + -12.537251472473145 + ], + [ + "iku", + -12.537516593933105 + ], + [ + "▁roast", + -12.53753662109375 + ], + [ + "▁254", + -12.537603378295898 + ], + [ + "▁amend", + -12.537703514099121 + ], + [ + "▁fò", + -12.537714004516602 + ], + [ + "▁tolerant", + -12.537904739379883 + ], + [ + "▁masonry", + -12.537940979003906 + ], + [ + "▁indicative", + -12.537945747375488 + ], + [ + "▁Afro", + -12.538700103759766 + ], + [ + "▁Invincible", + -12.538752555847168 + ], + [ + "▁deforestation", + -12.538752555847168 + ], + [ + "▁sabotage", + -12.5387544631958 + ], + [ + "▁thinner", + -12.538923263549805 + ], + [ + "▁handheld", + -12.53895092010498 + ], + [ + "topic", + -12.5391206741333 + ], + [ + "▁coping", + -12.5391206741333 + ], + [ + "▁Lunar", + -12.539362907409668 + ], + [ + "▁Improvement", + -12.53950309753418 + ], + [ + "2016", + -12.539555549621582 + ], + [ + "▁lattice", + -12.539566040039062 + ], + [ + "▁Meridian", + -12.539566993713379 + ], + [ + "▁landlord", + -12.539567947387695 + ], + [ + "▁Camille", + -12.539809226989746 + ], + [ + "▁brig", + -12.540125846862793 + ], + [ + "▁reverted", + -12.540388107299805 + ], + [ + "▁Dalmatia", + -12.540398597717285 + ], + [ + "▁Advent", + -12.54057502746582 + ], + [ + "▁curator", + -12.540811538696289 + ], + [ + "▁bureaucrat", + -12.5411958694458 + ], + [ + "▁jeneral", + -12.541197776794434 + ], + [ + "▁1787", + -12.5412015914917 + ], + [ + "▁playground", + -12.541226387023926 + ], + [ + "▁Inspired", + -12.541227340698242 + ], + [ + "▁noisy", + -12.541229248046875 + ], + [ + "▁Handbook", + -12.541325569152832 + ], + [ + "▁grim", + -12.54145622253418 + ], + [ + "▁ceded", + -12.54148006439209 + ], + [ + "▁oceanic", + -12.541572570800781 + ], + [ + "▁polish", + -12.541635513305664 + ], + [ + "▁robin", + -12.541648864746094 + ], + [ + "▁reassigned", + -12.542008399963379 + ], + [ + "▁Informer", + -12.542034149169922 + ], + [ + "▁Investment", + -12.542534828186035 + ], + [ + "▁apex", + -12.542562484741211 + ], + [ + "▁Shetland", + -12.542850494384766 + ], + [ + "▁Farrell", + -12.54304027557373 + ], + [ + "▁Sporting", + -12.54310131072998 + ], + [ + "▁firstname", + -12.543176651000977 + ], + [ + "▁404", + -12.5432767868042 + ], + [ + "▁raiders", + -12.543303489685059 + ], + [ + "▁indefinitely", + -12.543428421020508 + ], + [ + "▁Brahmin", + -12.543641090393066 + ], + [ + "▁Temperature", + -12.543641090393066 + ], + [ + "▁kapab", + -12.543641090393066 + ], + [ + "▁takeoff", + -12.543869018554688 + ], + [ + "▁tomato", + -12.544154167175293 + ], + [ + "▁MFR", + -12.544290542602539 + ], + [ + "▁Plastic", + -12.544323921203613 + ], + [ + "▁statewide", + -12.544355392456055 + ], + [ + "▁caterpillar", + -12.54445743560791 + ], + [ + "▁resentment", + -12.54445743560791 + ], + [ + "▁unconventional", + -12.54445743560791 + ], + [ + "▁ascertain", + -12.544459342956543 + ], + [ + "▁atlèt", + -12.544487953186035 + ], + [ + "trained", + -12.54464340209961 + ], + [ + "mitted", + -12.544901847839355 + ], + [ + "▁Shrewsbury", + -12.545275688171387 + ], + [ + "▁convective", + -12.545275688171387 + ], + [ + "▁residing", + -12.545276641845703 + ], + [ + "▁pricing", + -12.545286178588867 + ], + [ + "▁farewell", + -12.545369148254395 + ], + [ + "▁bailey", + -12.545452117919922 + ], + [ + "▁Khalid", + -12.545844078063965 + ], + [ + "▁Crush", + -12.54594612121582 + ], + [ + "▁Katy", + -12.546063423156738 + ], + [ + "▁Auschwitz", + -12.546093940734863 + ], + [ + "▁biofuel", + -12.546093940734863 + ], + [ + "▁Uranus", + -12.546130180358887 + ], + [ + "▁Greco", + -12.54621696472168 + ], + [ + "▁Robson", + -12.5463285446167 + ], + [ + "aël", + -12.546651840209961 + ], + [ + "▁vulgar", + -12.54691219329834 + ], + [ + "▁influencing", + -12.546913146972656 + ], + [ + "▁doctorate", + -12.546953201293945 + ], + [ + "sthetic", + -12.546981811523438 + ], + [ + "▁(2009)", + -12.546992301940918 + ], + [ + "▁Giles", + -12.54699420928955 + ], + [ + "▁Tavern", + -12.547036170959473 + ], + [ + "conscious", + -12.547073364257812 + ], + [ + "▁Rodney", + -12.547127723693848 + ], + [ + "▁Anyone", + -12.547253608703613 + ], + [ + "▁Travers", + -12.547637939453125 + ], + [ + "▁emphasizing", + -12.54773235321045 + ], + [ + "▁supremacy", + -12.54773235321045 + ], + [ + "▁Ideal", + -12.547760963439941 + ], + [ + "▁Henson", + -12.54837703704834 + ], + [ + "▁Elias", + -12.54842758178711 + ], + [ + "▁Marriage", + -12.548552513122559 + ], + [ + "▁expulsion", + -12.548552513122559 + ], + [ + "▁prophecy", + -12.548552513122559 + ], + [ + "▁Animated", + -12.548553466796875 + ], + [ + "▁Tunas", + -12.548664093017578 + ], + [ + "▁woven", + -12.548715591430664 + ], + [ + "▁Frey", + -12.548781394958496 + ], + [ + "▁Juno", + -12.54887580871582 + ], + [ + "ESS", + -12.548985481262207 + ], + [ + "▁tendencies", + -12.549373626708984 + ], + [ + "▁Sigma", + -12.549511909484863 + ], + [ + "▁symmetrical", + -12.549710273742676 + ], + [ + "▁Spector", + -12.549774169921875 + ], + [ + "▁actresses", + -12.54983139038086 + ], + [ + "▁modelling", + -12.549858093261719 + ], + [ + "▁ponder", + -12.550155639648438 + ], + [ + "▁asbestos", + -12.550195693969727 + ], + [ + "▁Campo", + -12.550239562988281 + ], + [ + "▁Either", + -12.550342559814453 + ], + [ + "▁Ceres", + -12.550368309020996 + ], + [ + "torial", + -12.550806999206543 + ], + [ + "brun", + -12.550949096679688 + ], + [ + "▁Settlement", + -12.551017761230469 + ], + [ + "▁elicit", + -12.551021575927734 + ], + [ + "▁malfunction", + -12.551033020019531 + ], + [ + "▁paralysis", + -12.551088333129883 + ], + [ + "▁Entry", + -12.551101684570312 + ], + [ + "ische", + -12.551159858703613 + ], + [ + "▁Katz", + -12.551206588745117 + ], + [ + "▁Notice", + -12.551703453063965 + ], + [ + "▁Ecuador", + -12.551840782165527 + ], + [ + "▁Philharmonic", + -12.551840782165527 + ], + [ + "▁obsessed", + -12.551840782165527 + ], + [ + "▁squash", + -12.55184268951416 + ], + [ + "▁bestowed", + -12.551851272583008 + ], + [ + "▁flirt", + -12.55186653137207 + ], + [ + "▁mythological", + -12.55203914642334 + ], + [ + "▁reproduced", + -12.552534103393555 + ], + [ + "ù", + -12.552664756774902 + ], + [ + "▁embodied", + -12.552664756774902 + ], + [ + "▁scène", + -12.55270767211914 + ], + [ + "▁tuition", + -12.552777290344238 + ], + [ + "▁chif", + -12.552888870239258 + ], + [ + "▁plunge", + -12.552892684936523 + ], + [ + "−", + -12.553102493286133 + ], + [ + "▁Colour", + -12.553140640258789 + ], + [ + "wulf", + -12.553336143493652 + ], + [ + "▁melano", + -12.553417205810547 + ], + [ + "▁boulder", + -12.553489685058594 + ], + [ + "▁scalp", + -12.553589820861816 + ], + [ + "▁Danielle", + -12.553650856018066 + ], + [ + "▁Alps", + -12.553702354431152 + ], + [ + "▁Brief", + -12.553834915161133 + ], + [ + "▁Argent", + -12.553850173950195 + ], + [ + "▁establishes", + -12.553916931152344 + ], + [ + "▁amidst", + -12.554158210754395 + ], + [ + "▁Lockheed", + -12.554314613342285 + ], + [ + "▁Luxembourg", + -12.554314613342285 + ], + [ + "▁Jutland", + -12.554317474365234 + ], + [ + "▁situ", + -12.554405212402344 + ], + [ + "▁expressive", + -12.554427146911621 + ], + [ + "▁Rene", + -12.55443286895752 + ], + [ + "▁bruise", + -12.554505348205566 + ], + [ + "▁recurrent", + -12.554861068725586 + ], + [ + "▁Gorge", + -12.55500316619873 + ], + [ + "▁deepest", + -12.555004119873047 + ], + [ + "▁Pony", + -12.555025100708008 + ], + [ + "▁Fasci", + -12.555072784423828 + ], + [ + "▁Räikkönen", + -12.555139541625977 + ], + [ + "▁cliché", + -12.555139541625977 + ], + [ + "▁ridicule", + -12.555139541625977 + ], + [ + "▁picnic", + -12.555143356323242 + ], + [ + "voir", + -12.555342674255371 + ], + [ + "▁Ravi", + -12.55573844909668 + ], + [ + "▁sway", + -12.555742263793945 + ], + [ + "▁graft", + -12.556150436401367 + ], + [ + "▁Connie", + -12.556153297424316 + ], + [ + "▁Arcade", + -12.556163787841797 + ], + [ + "▁Cadet", + -12.556324005126953 + ], + [ + "▁McGill", + -12.556378364562988 + ], + [ + "depend", + -12.556622505187988 + ], + [ + "▁Spokane", + -12.556793212890625 + ], + [ + "▁Clive", + -12.556807518005371 + ], + [ + "▁kindness", + -12.556836128234863 + ], + [ + "rü", + -12.557042121887207 + ], + [ + "▁Granma", + -12.557272911071777 + ], + [ + "▁Papua", + -12.557332038879395 + ], + [ + "▁wetland", + -12.557511329650879 + ], + [ + "▁Kalifòni", + -12.557621002197266 + ], + [ + "▁microorganisms", + -12.557621002197266 + ], + [ + "▁Caledonia", + -12.557621955871582 + ], + [ + "▁Tulsa", + -12.557629585266113 + ], + [ + "▁hyena", + -12.55773639678955 + ], + [ + "sensitive", + -12.558101654052734 + ], + [ + "▁Hello", + -12.558205604553223 + ], + [ + "née", + -12.558266639709473 + ], + [ + "Day", + -12.558347702026367 + ], + [ + "▁Flemish", + -12.558449745178223 + ], + [ + "▁ultrasound", + -12.558459281921387 + ], + [ + "poze", + -12.558465957641602 + ], + [ + "▁Module", + -12.55854320526123 + ], + [ + "▁Penny", + -12.558764457702637 + ], + [ + "▁(2007)", + -12.559343338012695 + ], + [ + "▁mule", + -12.559510231018066 + ], + [ + "tension", + -12.5595703125 + ], + [ + "▁Roh", + -12.559937477111816 + ], + [ + "▁Jakarta", + -12.56010913848877 + ], + [ + "▁Influence", + -12.560110092163086 + ], + [ + "▁realigned", + -12.560111999511719 + ], + [ + "▁sunny", + -12.560121536254883 + ], + [ + "▁Stella", + -12.560555458068848 + ], + [ + "▁wiped", + -12.560691833496094 + ], + [ + "▁parishes", + -12.560917854309082 + ], + [ + "blood", + -12.560933113098145 + ], + [ + "▁divergence", + -12.56093978881836 + ], + [ + "▁chlorine", + -12.560940742492676 + ], + [ + "▁pertaining", + -12.560944557189941 + ], + [ + "phobic", + -12.560954093933105 + ], + [ + "surface", + -12.561511993408203 + ], + [ + "▁popularized", + -12.561548233032227 + ], + [ + "▁Braathen", + -12.56177043914795 + ], + [ + "▁untreated", + -12.561772346496582 + ], + [ + "▁regenerate", + -12.561775207519531 + ], + [ + "▁Universities", + -12.561792373657227 + ], + [ + "▁tractor", + -12.561915397644043 + ], + [ + "wou", + -12.561935424804688 + ], + [ + "▁Dollar", + -12.562067031860352 + ], + [ + "▁Yeah", + -12.562142372131348 + ], + [ + "▁Thin", + -12.56251335144043 + ], + [ + "▁Cruiser", + -12.562520980834961 + ], + [ + "▁advertise", + -12.562591552734375 + ], + [ + "▁Competition", + -12.562602996826172 + ], + [ + "▁unpredictable", + -12.562602996826172 + ], + [ + "▁polite", + -12.562761306762695 + ], + [ + "▁summarize", + -12.562788963317871 + ], + [ + "▁reset", + -12.562882423400879 + ], + [ + "brain", + -12.563081741333008 + ], + [ + "▁Flav", + -12.56326675415039 + ], + [ + "▁Peach", + -12.563291549682617 + ], + [ + "▁abandonment", + -12.563413619995117 + ], + [ + "υ", + -12.563435554504395 + ], + [ + "▁Torchwood", + -12.563435554504395 + ], + [ + "▁dehydration", + -12.563435554504395 + ], + [ + "▁banquet", + -12.563521385192871 + ], + [ + "▁stray", + -12.563674926757812 + ], + [ + "▁spotlight", + -12.563797950744629 + ], + [ + "Ø", + -12.564268112182617 + ], + [ + "▁deciduous", + -12.564269065856934 + ], + [ + "▁superintendent", + -12.564269065856934 + ], + [ + "▁Maru", + -12.56438159942627 + ], + [ + "▁mutually", + -12.564445495605469 + ], + [ + "▁Exit", + -12.564471244812012 + ], + [ + "▁287", + -12.564504623413086 + ], + [ + "▁beads", + -12.564810752868652 + ], + [ + "▁Jung", + -12.564812660217285 + ], + [ + "▁hilarious", + -12.565102577209473 + ], + [ + "▁Sejm", + -12.565105438232422 + ], + [ + "▁Lazo", + -12.565159797668457 + ], + [ + "▁spinner", + -12.56527042388916 + ], + [ + "▁Anime", + -12.565337181091309 + ], + [ + "▁confess", + -12.565441131591797 + ], + [ + "encia", + -12.565464973449707 + ], + [ + "▁Luka", + -12.5656099319458 + ], + [ + "▁Hobbs", + -12.565949440002441 + ], + [ + "▁basalt", + -12.56612777709961 + ], + [ + "▁subset", + -12.566465377807617 + ], + [ + "▁McKi", + -12.566521644592285 + ], + [ + "▁NHS", + -12.566533088684082 + ], + [ + "▁acquitted", + -12.5667724609375 + ], + [ + "▁elliptical", + -12.5667724609375 + ], + [ + "▁provocative", + -12.5667724609375 + ], + [ + "▁longevity", + -12.566773414611816 + ], + [ + "▁monoxide", + -12.566788673400879 + ], + [ + "blow", + -12.566862106323242 + ], + [ + "asser", + -12.566960334777832 + ], + [ + "▁Brownlee", + -12.56711196899414 + ], + [ + "▁XXI", + -12.56713581085205 + ], + [ + "Alain", + -12.567289352416992 + ], + [ + "▁retake", + -12.56729793548584 + ], + [ + "▁Eurogamer", + -12.567608833312988 + ], + [ + "▁implicated", + -12.567608833312988 + ], + [ + "▁reluctance", + -12.567608833312988 + ], + [ + "▁Luigi", + -12.56761360168457 + ], + [ + "▁spearhead", + -12.567688941955566 + ], + [ + "food", + -12.567693710327148 + ], + [ + "▁bloodstream", + -12.567757606506348 + ], + [ + "▁Gaston", + -12.568070411682129 + ], + [ + "▁strategically", + -12.568115234375 + ], + [ + "▁complaining", + -12.568376541137695 + ], + [ + "▁Moral", + -12.568384170532227 + ], + [ + "▁qualitative", + -12.568445205688477 + ], + [ + "▁accolade", + -12.568446159362793 + ], + [ + "▁plausible", + -12.568446159362793 + ], + [ + "LY", + -12.568554878234863 + ], + [ + "▁screaming", + -12.56899356842041 + ], + [ + "▁30%", + -12.569071769714355 + ], + [ + "▁commemorating", + -12.569283485412598 + ], + [ + "▁Huntington", + -12.569398880004883 + ], + [ + "▁exposition", + -12.569578170776367 + ], + [ + "▁exhaustion", + -12.569605827331543 + ], + [ + "▁hacker", + -12.569693565368652 + ], + [ + "▁Belize", + -12.569792747497559 + ], + [ + "▁entè", + -12.569828033447266 + ], + [ + "▁replication", + -12.570239067077637 + ], + [ + "▁194", + -12.57028579711914 + ], + [ + "▁selfish", + -12.57028865814209 + ], + [ + "▁tailored", + -12.570367813110352 + ], + [ + "▁Monaco", + -12.570441246032715 + ], + [ + "▁Badge", + -12.570586204528809 + ], + [ + "▁(2002)", + -12.57096004486084 + ], + [ + "▁Loyalist", + -12.57096004486084 + ], + [ + "▁futuristic", + -12.57096004486084 + ], + [ + "▁Technique", + -12.570960998535156 + ], + [ + "▁decimal", + -12.570960998535156 + ], + [ + "▁lodging", + -12.570961952209473 + ], + [ + "▁Dramatic", + -12.571046829223633 + ], + [ + "▁Updated", + -12.571200370788574 + ], + [ + "▁discrete", + -12.571803092956543 + ], + [ + "▁sorrow", + -12.57180404663086 + ], + [ + "▁chancellor", + -12.571831703186035 + ], + [ + "▁Quant", + -12.571928024291992 + ], + [ + "▁spurred", + -12.571990966796875 + ], + [ + "▁stab", + -12.572077751159668 + ], + [ + "▁imen", + -12.57225227355957 + ], + [ + "▁Bavaria", + -12.572420120239258 + ], + [ + "▁nuit", + -12.572454452514648 + ], + [ + "▁phosphor", + -12.572495460510254 + ], + [ + "▁Sylvester", + -12.572640419006348 + ], + [ + "▁syrup", + -12.572641372680664 + ], + [ + "▁alligator", + -12.572647094726562 + ], + [ + "▁Amid", + -12.573375701904297 + ], + [ + "▁brightest", + -12.573440551757812 + ], + [ + "▁Somalia", + -12.573463439941406 + ], + [ + "▁Tchaikovsky", + -12.573481559753418 + ], + [ + "▁starvation", + -12.573482513427734 + ], + [ + "▁Holloway", + -12.57351303100586 + ], + [ + "clock", + -12.573543548583984 + ], + [ + "▁Irwin", + -12.57357120513916 + ], + [ + "▁fetus", + -12.573659896850586 + ], + [ + "▁localization", + -12.573807716369629 + ], + [ + "▁Slovakia", + -12.5738525390625 + ], + [ + "▁rugged", + -12.574323654174805 + ], + [ + "▁Guinness", + -12.574324607849121 + ], + [ + "▁Anatolia", + -12.574336051940918 + ], + [ + "▁infestation", + -12.574349403381348 + ], + [ + "▁Mercer", + -12.574396133422852 + ], + [ + "loch", + -12.574488639831543 + ], + [ + "▁Sita", + -12.574689865112305 + ], + [ + "▁Pré", + -12.574795722961426 + ], + [ + "▁theropod", + -12.57495403289795 + ], + [ + "▁stove", + -12.574969291687012 + ], + [ + "▁mystical", + -12.574994087219238 + ], + [ + "▁Calcutta", + -12.575165748596191 + ], + [ + "▁HTML", + -12.575165748596191 + ], + [ + "çon", + -12.5753173828125 + ], + [ + "▁stainless", + -12.575457572937012 + ], + [ + "▁Biography", + -12.575464248657227 + ], + [ + "▁Cult", + -12.57552719116211 + ], + [ + "▁perished", + -12.575899124145508 + ], + [ + "▁realities", + -12.576150894165039 + ], + [ + "▁Raoul", + -12.576615333557129 + ], + [ + "▁Democracy", + -12.576852798461914 + ], + [ + "▁Scharnhorst", + -12.576852798461914 + ], + [ + "▁liaison", + -12.576855659484863 + ], + [ + "▁Elaine", + -12.576863288879395 + ], + [ + "▁Taliban", + -12.57686996459961 + ], + [ + "▁Kesha", + -12.577138900756836 + ], + [ + "pyr", + -12.577369689941406 + ], + [ + "▁Wanna", + -12.57742691040039 + ], + [ + "▁Strategy", + -12.57769775390625 + ], + [ + "▁backstage", + -12.577703475952148 + ], + [ + "▁semantic", + -12.577718734741211 + ], + [ + "▁Strauss", + -12.577743530273438 + ], + [ + "▁sanctioned", + -12.577771186828613 + ], + [ + "▁Francesco", + -12.577836036682129 + ], + [ + "▁Milo", + -12.578048706054688 + ], + [ + "▁gait", + -12.578051567077637 + ], + [ + "▁Greenwood", + -12.578170776367188 + ], + [ + "▁shattered", + -12.578239440917969 + ], + [ + "Louis", + -12.578291893005371 + ], + [ + "▁Texian", + -12.578404426574707 + ], + [ + "ethylene", + -12.578478813171387 + ], + [ + "▁oneself", + -12.578511238098145 + ], + [ + "▁#1", + -12.57852840423584 + ], + [ + "▁Activision", + -12.578542709350586 + ], + [ + "immun", + -12.578564643859863 + ], + [ + "▁geologist", + -12.578624725341797 + ], + [ + "▁Surface", + -12.578638076782227 + ], + [ + "▁paddle", + -12.578958511352539 + ], + [ + "André", + -12.57919979095459 + ], + [ + "▁Gott", + -12.579215049743652 + ], + [ + "▁dictated", + -12.579276084899902 + ], + [ + "▁César", + -12.579388618469238 + ], + [ + "▁Mikhail", + -12.579388618469238 + ], + [ + "▁obedience", + -12.579388618469238 + ], + [ + "▁Loud", + -12.579864501953125 + ], + [ + "▁reissue", + -12.579955101013184 + ], + [ + "▁Fifteen", + -12.580235481262207 + ], + [ + "▁cassette", + -12.580235481262207 + ], + [ + "▁rudder", + -12.580236434936523 + ], + [ + "▁renounce", + -12.58023738861084 + ], + [ + "▁prosthetic", + -12.580324172973633 + ], + [ + "▁busiest", + -12.580344200134277 + ], + [ + "▁Cody", + -12.580517768859863 + ], + [ + "▁Archive", + -12.58060359954834 + ], + [ + "▁tèt", + -12.580705642700195 + ], + [ + "▁desperately", + -12.58076286315918 + ], + [ + "▁fireplace", + -12.580820083618164 + ], + [ + "▁Fashion", + -12.581083297729492 + ], + [ + "▁Territorial", + -12.58108901977539 + ], + [ + "▁scenic", + -12.58108901977539 + ], + [ + "▁Graduate", + -12.581090927124023 + ], + [ + "▁Harrier", + -12.581233024597168 + ], + [ + "0°", + -12.581343650817871 + ], + [ + "2008", + -12.581592559814453 + ], + [ + "start", + -12.581720352172852 + ], + [ + "producing", + -12.581771850585938 + ], + [ + "▁accompaniment", + -12.581931114196777 + ], + [ + "▁climatic", + -12.581931114196777 + ], + [ + "▁Barbados", + -12.58193302154541 + ], + [ + "▁reprint", + -12.582008361816406 + ], + [ + "▁topography", + -12.582109451293945 + ], + [ + "▁Dyer", + -12.582127571105957 + ], + [ + "▁Dancing", + -12.582195281982422 + ], + [ + "▁investigator", + -12.582489013671875 + ], + [ + "▁Trenton", + -12.582500457763672 + ], + [ + "▁Sarajevo", + -12.582779884338379 + ], + [ + "▁calculating", + -12.582779884338379 + ], + [ + "▁sèvi", + -12.582941055297852 + ], + [ + "▁Ethan", + -12.583529472351074 + ], + [ + "▁Endangered", + -12.583629608154297 + ], + [ + "▁Labrador", + -12.583629608154297 + ], + [ + "▁relentless", + -12.583629608154297 + ], + [ + "▁Hussein", + -12.583630561828613 + ], + [ + "▁Severn", + -12.583663940429688 + ], + [ + "▁shaking", + -12.583871841430664 + ], + [ + "plicate", + -12.58389949798584 + ], + [ + "▁Hurt", + -12.583968162536621 + ], + [ + "▁abrupt", + -12.584258079528809 + ], + [ + "▁Panic", + -12.58436393737793 + ], + [ + "▁immature", + -12.584480285644531 + ], + [ + "▁mammoth", + -12.584480285644531 + ], + [ + "▁Bengali", + -12.584487915039062 + ], + [ + "▁(2005)", + -12.584537506103516 + ], + [ + "hof", + -12.584583282470703 + ], + [ + "▁dictatorship", + -12.584593772888184 + ], + [ + "▁entre", + -12.584639549255371 + ], + [ + "▁Olaf", + -12.584659576416016 + ], + [ + "▁Gogh", + -12.585016250610352 + ], + [ + "▁Eastwood", + -12.58519172668457 + ], + [ + "▁calculator", + -12.585330963134766 + ], + [ + "▁socket", + -12.585341453552246 + ], + [ + "▁Kratos", + -12.585402488708496 + ], + [ + "oscopy", + -12.585549354553223 + ], + [ + "▁weave", + -12.585780143737793 + ], + [ + "IVE", + -12.586087226867676 + ], + [ + "▁Diocese", + -12.586182594299316 + ], + [ + "▁accustomed", + -12.586182594299316 + ], + [ + "▁catapult", + -12.586182594299316 + ], + [ + "▁thrombo", + -12.586186408996582 + ], + [ + "▁Saunders", + -12.586194038391113 + ], + [ + "▁rector", + -12.586230278015137 + ], + [ + "▁notebook", + -12.586562156677246 + ], + [ + "▁EastEnders", + -12.587035179138184 + ], + [ + "▁Preservation", + -12.587035179138184 + ], + [ + "▁unsigned", + -12.587035179138184 + ], + [ + "▁slept", + -12.5870361328125 + ], + [ + "ifolia", + -12.58710765838623 + ], + [ + "▁NGO", + -12.58737850189209 + ], + [ + "▁mites", + -12.587591171264648 + ], + [ + "▁linebacker", + -12.587898254394531 + ], + [ + "tribute", + -12.587985038757324 + ], + [ + "▁Poetry", + -12.588147163391113 + ], + [ + "▁Clock", + -12.588224411010742 + ], + [ + "▁MLS", + -12.588251113891602 + ], + [ + "polar", + -12.588391304016113 + ], + [ + "▁Hillary", + -12.588396072387695 + ], + [ + "▁Cannes", + -12.588738441467285 + ], + [ + "▁mysteries", + -12.58874225616455 + ], + [ + "▁Pretty", + -12.588747024536133 + ], + [ + "▁Fool", + -12.58879566192627 + ], + [ + "ometri", + -12.589136123657227 + ], + [ + "▁Violet", + -12.589374542236328 + ], + [ + "▁quasi", + -12.589639663696289 + ], + [ + "gall", + -12.589642524719238 + ], + [ + "▁rubble", + -12.589719772338867 + ], + [ + "▁Strand", + -12.589776992797852 + ], + [ + "OUR", + -12.589802742004395 + ], + [ + "▁intervened", + -12.589859008789062 + ], + [ + "▁bravery", + -12.589930534362793 + ], + [ + "▁Wehrmacht", + -12.590452194213867 + ], + [ + "▁malicious", + -12.590452194213867 + ], + [ + "▁Fantastic", + -12.590453147888184 + ], + [ + "▁charities", + -12.5905179977417 + ], + [ + "▁Robbie", + -12.590677261352539 + ], + [ + "magnetic", + -12.591100692749023 + ], + [ + "▁Samar", + -12.591230392456055 + ], + [ + "▁Difference", + -12.59130859375 + ], + [ + "▁Powder", + -12.591310501098633 + ], + [ + "▁durable", + -12.591313362121582 + ], + [ + "▁Centaur", + -12.59139633178711 + ], + [ + "8,000", + -12.59144401550293 + ], + [ + "▁sensing", + -12.59146785736084 + ], + [ + "public", + -12.59157657623291 + ], + [ + "▁wastewater", + -12.591789245605469 + ], + [ + "izasyon", + -12.59180736541748 + ], + [ + "▁Nadal", + -12.591899871826172 + ], + [ + "▁wandering", + -12.591920852661133 + ], + [ + "▁Recommend", + -12.59216594696045 + ], + [ + "▁acknowledging", + -12.59216594696045 + ], + [ + "▁annoying", + -12.59216594696045 + ], + [ + "▁Hobart", + -12.592166900634766 + ], + [ + "▁liberated", + -12.592166900634766 + ], + [ + "▁lifeboat", + -12.592179298400879 + ], + [ + "▁Martian", + -12.592193603515625 + ], + [ + "▁cyclo", + -12.592238426208496 + ], + [ + "ión", + -12.59255599975586 + ], + [ + "▁soybean", + -12.593023300170898 + ], + [ + "▁Forward", + -12.593147277832031 + ], + [ + "odium", + -12.593199729919434 + ], + [ + "▁Frei", + -12.593433380126953 + ], + [ + "▁acne", + -12.593490600585938 + ], + [ + "▁Creating", + -12.593710899353027 + ], + [ + "▁educator", + -12.593860626220703 + ], + [ + "▁denoting", + -12.593899726867676 + ], + [ + "▁mapped", + -12.594426155090332 + ], + [ + "▁outset", + -12.594518661499023 + ], + [ + "Comm", + -12.594537734985352 + ], + [ + "protein", + -12.594561576843262 + ], + [ + "▁encryption", + -12.594740867614746 + ], + [ + "▁fizik", + -12.594740867614746 + ], + [ + "▁Marathon", + -12.594741821289062 + ], + [ + "▁Seoul", + -12.594742774963379 + ], + [ + "▁NSB", + -12.594765663146973 + ], + [ + "▁Somme", + -12.595112800598145 + ], + [ + "ovirus", + -12.595149993896484 + ], + [ + "▁Terrace", + -12.595282554626465 + ], + [ + "▁betrayal", + -12.595300674438477 + ], + [ + "▁Tourism", + -12.595376014709473 + ], + [ + "ché", + -12.595396995544434 + ], + [ + "▁dusk", + -12.595475196838379 + ], + [ + "▁Enemy", + -12.595602989196777 + ], + [ + "▁corpus", + -12.59560489654541 + ], + [ + "▁Apostle", + -12.595610618591309 + ], + [ + "▁chestnut", + -12.59565544128418 + ], + [ + "▁Gemini", + -12.595826148986816 + ], + [ + "▁Symbol", + -12.596419334411621 + ], + [ + "▁Nirvana", + -12.596461296081543 + ], + [ + "▁outdated", + -12.596504211425781 + ], + [ + "▁Throne", + -12.596515655517578 + ], + [ + "▁Favre", + -12.596548080444336 + ], + [ + "▁falcon", + -12.596580505371094 + ], + [ + "▁Scapa", + -12.596750259399414 + ], + [ + "▁HMA", + -12.596753120422363 + ], + [ + "▁versatile", + -12.597338676452637 + ], + [ + "▁Rosenberg", + -12.597407341003418 + ], + [ + "▁Gender", + -12.597743034362793 + ], + [ + "▁glance", + -12.597854614257812 + ], + [ + "▁buildup", + -12.598050117492676 + ], + [ + "▁VanDerWe", + -12.598182678222656 + ], + [ + "▁Rodrigues", + -12.598184585571289 + ], + [ + "▁charcoal", + -12.598184585571289 + ], + [ + "▁Sutton", + -12.598191261291504 + ], + [ + "▁Javier", + -12.598262786865234 + ], + [ + "jö", + -12.598353385925293 + ], + [ + "▁Passage", + -12.598859786987305 + ], + [ + "▁wellbeing", + -12.598898887634277 + ], + [ + "▁timeslot", + -12.599021911621094 + ], + [ + "▁Favorite", + -12.599047660827637 + ], + [ + "▁Mangalore", + -12.599047660827637 + ], + [ + "▁Sanctuary", + -12.599047660827637 + ], + [ + "▁dissatisfied", + -12.599047660827637 + ], + [ + "▁sergeant", + -12.599047660827637 + ], + [ + "▁Barkley", + -12.599048614501953 + ], + [ + "▁intersect", + -12.599095344543457 + ], + [ + "▁Predator", + -12.599114418029785 + ], + [ + "▁hindered", + -12.599114418029785 + ], + [ + "have", + -12.599117279052734 + ], + [ + "▁royalist", + -12.599143981933594 + ], + [ + "▁equate", + -12.59914493560791 + ], + [ + "▁diploma", + -12.599233627319336 + ], + [ + "▁stressful", + -12.599634170532227 + ], + [ + "clusive", + -12.5996732711792 + ], + [ + "▁executing", + -12.599910736083984 + ], + [ + "▁Katie", + -12.600040435791016 + ], + [ + "▁Camera", + -12.600192070007324 + ], + [ + "▁purge", + -12.600194931030273 + ], + [ + "▁Becker", + -12.600713729858398 + ], + [ + "▁semiconductor", + -12.600775718688965 + ], + [ + "▁Kiev", + -12.600831985473633 + ], + [ + "▁Kami", + -12.601320266723633 + ], + [ + "▁persecut", + -12.601357460021973 + ], + [ + "▁Contract", + -12.601483345031738 + ], + [ + "▁capacities", + -12.601640701293945 + ], + [ + "▁hypothetical", + -12.601640701293945 + ], + [ + "▁integrating", + -12.601640701293945 + ], + [ + "▁Reginald", + -12.601642608642578 + ], + [ + "▁guild", + -12.601642608642578 + ], + [ + "▁Infection", + -12.601644515991211 + ], + [ + "▁hallucinat", + -12.601651191711426 + ], + [ + "▁consolidate", + -12.601892471313477 + ], + [ + "▁Bulletin", + -12.602151870727539 + ], + [ + "▁magnate", + -12.602328300476074 + ], + [ + "▁Laurel", + -12.602402687072754 + ], + [ + "▁Ellie", + -12.60244083404541 + ], + [ + "▁Archibald", + -12.602505683898926 + ], + [ + "▁registry", + -12.602505683898926 + ], + [ + "▁tectonic", + -12.602505683898926 + ], + [ + "▁Tornado", + -12.602506637573242 + ], + [ + "▁(2006)", + -12.602570533752441 + ], + [ + "▁Bain", + -12.602598190307617 + ], + [ + "▁negotiation", + -12.602694511413574 + ], + [ + "▁CAP", + -12.602705001831055 + ], + [ + "▁provoke", + -12.602761268615723 + ], + [ + "▁warbler", + -12.60290241241455 + ], + [ + "▁courtship", + -12.603063583374023 + ], + [ + "▁abusive", + -12.603384017944336 + ], + [ + "▁witchcraft", + -12.603392601013184 + ], + [ + "▁Mathew", + -12.60348892211914 + ], + [ + "▁Khar", + -12.603615760803223 + ], + [ + "▁kilo", + -12.603718757629395 + ], + [ + "▁Ridd", + -12.604049682617188 + ], + [ + "▁Creator", + -12.604225158691406 + ], + [ + "▁Irvine", + -12.604240417480469 + ], + [ + "▁Walpole", + -12.604276657104492 + ], + [ + "▁Vijay", + -12.604283332824707 + ], + [ + "▁Database", + -12.604293823242188 + ], + [ + "▁connectivity", + -12.604369163513184 + ], + [ + "▁Turtle", + -12.60446548461914 + ], + [ + "▁mammalian", + -12.604496955871582 + ], + [ + "▁Angola", + -12.60457992553711 + ], + [ + "agging", + -12.605354309082031 + ], + [ + "▁Kuala", + -12.605441093444824 + ], + [ + "▁Bethlehem", + -12.605977058410645 + ], + [ + "▁cohort", + -12.605978012084961 + ], + [ + "▁Offer", + -12.60606575012207 + ], + [ + "▁mosquitoes", + -12.60614013671875 + ], + [ + "▁alteration", + -12.606224060058594 + ], + [ + "volved", + -12.606268882751465 + ], + [ + "▁Electrical", + -12.606437683105469 + ], + [ + "▁Owl", + -12.606476783752441 + ], + [ + "▁Veda", + -12.606480598449707 + ], + [ + "▁citadel", + -12.606846809387207 + ], + [ + "▁mandible", + -12.606852531433105 + ], + [ + "▁amassed", + -12.606854438781738 + ], + [ + "▁garlic", + -12.607074737548828 + ], + [ + "▁Castillo", + -12.607551574707031 + ], + [ + "▁Hippo", + -12.607562065124512 + ], + [ + "▁skies", + -12.607563018798828 + ], + [ + "▁1781", + -12.607614517211914 + ], + [ + "▁Historia", + -12.607623100280762 + ], + [ + "▁Tape", + -12.607662200927734 + ], + [ + "▁troupe", + -12.6077241897583 + ], + [ + "▁0.5", + -12.607908248901367 + ], + [ + "▁undermined", + -12.608024597167969 + ], + [ + "▁Federalist", + -12.608415603637695 + ], + [ + "RU", + -12.608433723449707 + ], + [ + "▁scaffold", + -12.608588218688965 + ], + [ + "▁credible", + -12.608589172363281 + ], + [ + "Read", + -12.608599662780762 + ], + [ + "▁(2008)", + -12.608663558959961 + ], + [ + "▁Monmouth", + -12.608691215515137 + ], + [ + "▁weaponry", + -12.608863830566406 + ], + [ + "▁Classification", + -12.608875274658203 + ], + [ + "▁wipe", + -12.608922004699707 + ], + [ + "▁PCB", + -12.60905933380127 + ], + [ + "especially", + -12.60936164855957 + ], + [ + "▁Summary", + -12.60945987701416 + ], + [ + "▁hospitalized", + -12.609658241271973 + ], + [ + "▁Pattern", + -12.609718322753906 + ], + [ + "ē", + -12.610331535339355 + ], + [ + "▁Emerald", + -12.610332489013672 + ], + [ + "▁clarinet", + -12.610332489013672 + ], + [ + "▁temperament", + -12.610332489013672 + ], + [ + "▁Paterson", + -12.610405921936035 + ], + [ + "▁Manga", + -12.610837936401367 + ], + [ + "▁grinding", + -12.610918998718262 + ], + [ + "▁Coulthard", + -12.6112060546875 + ], + [ + "▁worries", + -12.6112060546875 + ], + [ + "▁adherence", + -12.611255645751953 + ], + [ + "▁reissued", + -12.611858367919922 + ], + [ + "▁Riverside", + -12.612044334411621 + ], + [ + "▁lobbied", + -12.612079620361328 + ], + [ + "▁Cindy", + -12.61208438873291 + ], + [ + "▁(2004)", + -12.612135887145996 + ], + [ + "▁hopefully", + -12.612347602844238 + ], + [ + "▁Drag", + -12.612761497497559 + ], + [ + "▁deteriorating", + -12.612954139709473 + ], + [ + "▁terrific", + -12.612954139709473 + ], + [ + "▁Coffee", + -12.612955093383789 + ], + [ + "▁zanmi", + -12.612957000732422 + ], + [ + "▁ventral", + -12.613086700439453 + ], + [ + "▁specialty", + -12.613109588623047 + ], + [ + "▁bridgehead", + -12.613151550292969 + ], + [ + "▁mindset", + -12.613191604614258 + ], + [ + "▁vibe", + -12.613821983337402 + ], + [ + "▁feasibility", + -12.61383056640625 + ], + [ + "▁litigation", + -12.61383056640625 + ], + [ + "political", + -12.6138334274292 + ], + [ + "▁desktop", + -12.613877296447754 + ], + [ + "jection", + -12.613914489746094 + ], + [ + "▁disclosure", + -12.613914489746094 + ], + [ + "lecommunications", + -12.613973617553711 + ], + [ + "▁interstate", + -12.614046096801758 + ], + [ + "▁curving", + -12.61405086517334 + ], + [ + "▁flor", + -12.614324569702148 + ], + [ + "▁Pocket", + -12.614706993103027 + ], + [ + "▁biographies", + -12.614707946777344 + ], + [ + "▁hesitate", + -12.614774703979492 + ], + [ + "▁exponential", + -12.61478042602539 + ], + [ + "christ", + -12.614960670471191 + ], + [ + "▁gatehouse", + -12.614977836608887 + ], + [ + "▁PBS", + -12.615191459655762 + ], + [ + "▁topical", + -12.615405082702637 + ], + [ + "induced", + -12.615520477294922 + ], + [ + "▁Occasionally", + -12.615583419799805 + ], + [ + "▁Savannah", + -12.615583419799805 + ], + [ + "▁bourgeois", + -12.615583419799805 + ], + [ + "▁populous", + -12.615583419799805 + ], + [ + "▁vintage", + -12.615584373474121 + ], + [ + "▁Piece", + -12.615594863891602 + ], + [ + "service", + -12.615689277648926 + ], + [ + "▁Device", + -12.6157808303833 + ], + [ + "▁baking", + -12.615899085998535 + ], + [ + "▁mythical", + -12.616352081298828 + ], + [ + "▁choreographed", + -12.616461753845215 + ], + [ + "▁manganese", + -12.616461753845215 + ], + [ + "▁inviting", + -12.616628646850586 + ], + [ + "▁pear", + -12.616923332214355 + ], + [ + "Claude", + -12.617281913757324 + ], + [ + "▁Cienfuegos", + -12.617341041564941 + ], + [ + "▁forcibly", + -12.617341041564941 + ], + [ + "▁PHP", + -12.61734676361084 + ], + [ + "▁clam", + -12.617730140686035 + ], + [ + "▁Brendan", + -12.618179321289062 + ], + [ + "Édouard", + -12.618220329284668 + ], + [ + "▁Ustaše", + -12.618220329284668 + ], + [ + "▁aquarium", + -12.6182222366333 + ], + [ + "▁Fairbanks", + -12.618223190307617 + ], + [ + "▁omega", + -12.618224143981934 + ], + [ + "▁Otherwise", + -12.618428230285645 + ], + [ + "▁motivate", + -12.618501663208008 + ], + [ + "▁Jess", + -12.61878776550293 + ], + [ + "▁stimulated", + -12.619065284729004 + ], + [ + "▁Dunder", + -12.61909008026123 + ], + [ + "▁pitted", + -12.619098663330078 + ], + [ + "▁overshadowed", + -12.619100570678711 + ], + [ + "▁grandchildren", + -12.619122505187988 + ], + [ + "▁distributing", + -12.61916446685791 + ], + [ + "▁Brass", + -12.619315147399902 + ], + [ + "▁jug", + -12.619532585144043 + ], + [ + "▁Horton", + -12.619571685791016 + ], + [ + "▁statistically", + -12.619601249694824 + ], + [ + "▁aspirations", + -12.619665145874023 + ], + [ + "Angelo", + -12.619821548461914 + ], + [ + "▁vertebrates", + -12.6201753616333 + ], + [ + "▁Lincolnshire", + -12.620203018188477 + ], + [ + "▁chew", + -12.620349884033203 + ], + [ + "▁Counties", + -12.620359420776367 + ], + [ + "▁Croft", + -12.620474815368652 + ], + [ + "minute", + -12.62048053741455 + ], + [ + "▁Fairfax", + -12.62086296081543 + ], + [ + "▁chunk", + -12.620869636535645 + ], + [ + "▁verge", + -12.620904922485352 + ], + [ + "▁admitting", + -12.621139526367188 + ], + [ + "▁suspend", + -12.621448516845703 + ], + [ + "▁honorable", + -12.621609687805176 + ], + [ + "▁disapprove", + -12.621746063232422 + ], + [ + "▁lacrosse", + -12.621746063232422 + ], + [ + "▁idle", + -12.621894836425781 + ], + [ + "▁analysed", + -12.621992111206055 + ], + [ + "crest", + -12.622405052185059 + ], + [ + "▁injunction", + -12.62263011932373 + ], + [ + "energy", + -12.622674942016602 + ], + [ + "▁Martinez", + -12.62282657623291 + ], + [ + "▁aristocratic", + -12.622936248779297 + ], + [ + "▁Olive", + -12.622976303100586 + ], + [ + "▁Stranger", + -12.62320613861084 + ], + [ + "▁Rogue", + -12.62326431274414 + ], + [ + "▁Connection", + -12.623384475708008 + ], + [ + "▁regimental", + -12.623461723327637 + ], + [ + "▁Rudolf", + -12.623513221740723 + ], + [ + "▁Wilhelmshaven", + -12.623513221740723 + ], + [ + "▁Jardine", + -12.623546600341797 + ], + [ + "▁distrust", + -12.623644828796387 + ], + [ + "▁renal", + -12.623669624328613 + ], + [ + "▁Malawi", + -12.623684883117676 + ], + [ + "▁Yel", + -12.623763084411621 + ], + [ + "▁Camel", + -12.623767852783203 + ], + [ + "▁grind", + -12.623817443847656 + ], + [ + "▁deliveries", + -12.624199867248535 + ], + [ + "rigg", + -12.624210357666016 + ], + [ + "▁syntax", + -12.624398231506348 + ], + [ + "▁Twist", + -12.624449729919434 + ], + [ + "▁forgiveness", + -12.624693870544434 + ], + [ + "▁alias", + -12.62491226196289 + ], + [ + "▁mRNA", + -12.624961853027344 + ], + [ + "physical", + -12.62507152557373 + ], + [ + "▁Blitz", + -12.625089645385742 + ], + [ + "▁irrelevant", + -12.625284194946289 + ], + [ + "▁syphilis", + -12.625284194946289 + ], + [ + "▁solidarity", + -12.625285148620605 + ], + [ + "ddling", + -12.625304222106934 + ], + [ + "▁drip", + -12.625737190246582 + ], + [ + "▁Billie", + -12.625813484191895 + ], + [ + "ɪ", + -12.62617015838623 + ], + [ + "▁collaborating", + -12.626171112060547 + ], + [ + "▁periphery", + -12.626171112060547 + ], + [ + "▁questionnaire", + -12.626171112060547 + ], + [ + "▁Ninja", + -12.626173973083496 + ], + [ + "▁Kensington", + -12.626176834106445 + ], + [ + "▁(2011)", + -12.626255989074707 + ], + [ + "▁enriched", + -12.626527786254883 + ], + [ + "MENT", + -12.626784324645996 + ], + [ + "▁iodine", + -12.627058982849121 + ], + [ + "▁Pour", + -12.627090454101562 + ], + [ + "▁Ninth", + -12.62710952758789 + ], + [ + "▁dumb", + -12.62712574005127 + ], + [ + "▁excel", + -12.627398490905762 + ], + [ + "▁Barlow", + -12.627537727355957 + ], + [ + "▁Evaluation", + -12.627589225769043 + ], + [ + "▁Bharat", + -12.627676010131836 + ], + [ + "▁Tig", + -12.627704620361328 + ], + [ + "▁Larkin", + -12.627730369567871 + ], + [ + "▁persuasive", + -12.627945899963379 + ], + [ + "▁quartet", + -12.627945899963379 + ], + [ + "▁arterial", + -12.627948760986328 + ], + [ + "▁forestry", + -12.627979278564453 + ], + [ + "driven", + -12.628180503845215 + ], + [ + "▁backyard", + -12.628321647644043 + ], + [ + "▁Mimi", + -12.62833023071289 + ], + [ + "▁Hatch", + -12.628336906433105 + ], + [ + "▁fascist", + -12.62883472442627 + ], + [ + "€", + -12.628837585449219 + ], + [ + "▁sultan", + -12.628838539123535 + ], + [ + "▁inundated", + -12.628853797912598 + ], + [ + "▁Handle", + -12.629165649414062 + ], + [ + "▁Hamlin", + -12.629340171813965 + ], + [ + "▁Luzon", + -12.629408836364746 + ], + [ + "▁deprivation", + -12.629724502563477 + ], + [ + "resistant", + -12.629732131958008 + ], + [ + "▁Baha", + -12.629859924316406 + ], + [ + "▁Brom", + -12.630005836486816 + ], + [ + "▁León", + -12.630497932434082 + ], + [ + "▁Antony", + -12.630590438842773 + ], + [ + "▁consolidation", + -12.630615234375 + ], + [ + "Craft", + -12.630626678466797 + ], + [ + "▁logistical", + -12.630634307861328 + ], + [ + "▁ugly", + -12.630656242370605 + ], + [ + "▁Domingo", + -12.631514549255371 + ], + [ + "▁Scranton", + -12.63239860534668 + ], + [ + "▁discredit", + -12.63239860534668 + ], + [ + "▁Yahoo", + -12.632399559020996 + ], + [ + "▁degraded", + -12.63240909576416 + ], + [ + "▁Birthday", + -12.632461547851562 + ], + [ + "||0", + -12.632538795471191 + ], + [ + "grown", + -12.632640838623047 + ], + [ + "▁cardboard", + -12.6326904296875 + ], + [ + "▁podium", + -12.632750511169434 + ], + [ + "umbo", + -12.63292407989502 + ], + [ + "▁knot", + -12.633031845092773 + ], + [ + "▁pushes", + -12.6331787109375 + ], + [ + "▁Encourage", + -12.633291244506836 + ], + [ + "▁Uematsu", + -12.633291244506836 + ], + [ + "▁estuary", + -12.633291244506836 + ], + [ + "▁Fossil", + -12.633292198181152 + ], + [ + "▁Gomez", + -12.633293151855469 + ], + [ + "▁Simply", + -12.633296012878418 + ], + [ + "▁eradicate", + -12.63330078125 + ], + [ + "▁McCall", + -12.633301734924316 + ], + [ + "▁Amphi", + -12.633522987365723 + ], + [ + "West", + -12.633654594421387 + ], + [ + "▁Falkland", + -12.6336669921875 + ], + [ + "▁Radiohead", + -12.633723258972168 + ], + [ + "▁Isabelle", + -12.633787155151367 + ], + [ + "▁richest", + -12.63399600982666 + ], + [ + "▁perpetrator", + -12.634184837341309 + ], + [ + "▁Simmons", + -12.634193420410156 + ], + [ + "▁propel", + -12.634793281555176 + ], + [ + "▁abolitionist", + -12.634818077087402 + ], + [ + "▁culprit", + -12.635079383850098 + ], + [ + "▁sniper", + -12.635086059570312 + ], + [ + "▁anatomical", + -12.635117530822754 + ], + [ + "▁dormant", + -12.635188102722168 + ], + [ + "▁Desmond", + -12.635261535644531 + ], + [ + "▁teaser", + -12.635512351989746 + ], + [ + "▁Manufacturing", + -12.635974884033203 + ], + [ + "▁cannibal", + -12.635974884033203 + ], + [ + "▁Caldwell", + -12.63597583770752 + ], + [ + "qué", + -12.636137008666992 + ], + [ + "▁Courage", + -12.636290550231934 + ], + [ + "▁Spock", + -12.636303901672363 + ], + [ + "▁centralized", + -12.636480331420898 + ], + [ + "▁Nomura", + -12.636517524719238 + ], + [ + "▁König", + -12.636868476867676 + ], + [ + "▁Technologies", + -12.636870384216309 + ], + [ + "▁entrusted", + -12.636870384216309 + ], + [ + "▁Feu", + -12.636893272399902 + ], + [ + "fruit", + -12.636975288391113 + ], + [ + "▁spontaneously", + -12.637025833129883 + ], + [ + "Rankings", + -12.637516021728516 + ], + [ + "▁avec", + -12.637654304504395 + ], + [ + "▁pavement", + -12.63776969909668 + ], + [ + "▁telegram", + -12.637862205505371 + ], + [ + "▁replies", + -12.637874603271484 + ], + [ + "▁Germain", + -12.6378755569458 + ], + [ + "▁manure", + -12.637939453125 + ], + [ + "▁Carlton", + -12.638197898864746 + ], + [ + "▁Verdi", + -12.63871955871582 + ], + [ + "▁Journalist", + -12.638886451721191 + ], + [ + "▁wholesale", + -12.638895034790039 + ], + [ + "▁Fuel", + -12.638923645019531 + ], + [ + "▁Hof", + -12.639081954956055 + ], + [ + "▁40%", + -12.639152526855469 + ], + [ + "▁Rudy", + -12.63939380645752 + ], + [ + "▁granddaughter", + -12.63956356048584 + ], + [ + "▁illustrator", + -12.63956356048584 + ], + [ + "▁proprietor", + -12.63956356048584 + ], + [ + "▁Guillermo", + -12.639564514160156 + ], + [ + "▁anthropologist", + -12.639565467834473 + ], + [ + "▁Sellers", + -12.639644622802734 + ], + [ + "▁millennia", + -12.63982105255127 + ], + [ + "éro", + -12.639931678771973 + ], + [ + "▁Hypo", + -12.640151977539062 + ], + [ + "▁clap", + -12.640260696411133 + ], + [ + "▁atheist", + -12.640365600585938 + ], + [ + "▁Frequent", + -12.640462875366211 + ], + [ + "▁segregated", + -12.640462875366211 + ], + [ + "▁disgrace", + -12.640464782714844 + ], + [ + "▁deluxe", + -12.64046573638916 + ], + [ + "▁Spaniel", + -12.640498161315918 + ], + [ + "▁1779", + -12.640721321105957 + ], + [ + "▁gallon", + -12.640725135803223 + ], + [ + "▁Speak", + -12.641084671020508 + ], + [ + "▁bosses", + -12.641288757324219 + ], + [ + "▁loft", + -12.641297340393066 + ], + [ + "▁Abyss", + -12.64132022857666 + ], + [ + "ن", + -12.641363143920898 + ], + [ + "▁dispersal", + -12.641363143920898 + ], + [ + "▁prostitution", + -12.641363143920898 + ], + [ + "▁Philipp", + -12.64139461517334 + ], + [ + "▁Decade", + -12.64147663116455 + ], + [ + "▁spanned", + -12.641568183898926 + ], + [ + "grand", + -12.641627311706543 + ], + [ + "▁Server", + -12.641666412353516 + ], + [ + "▁Conduct", + -12.641818046569824 + ], + [ + "▁misuse", + -12.642024040222168 + ], + [ + "brush", + -12.6420316696167 + ], + [ + "gold", + -12.642183303833008 + ], + [ + "▁autoimmune", + -12.642264366149902 + ], + [ + "▁hypotheses", + -12.642264366149902 + ], + [ + "▁Tanzania", + -12.642267227172852 + ], + [ + "▁Chong", + -12.642278671264648 + ], + [ + "▁Beatrice", + -12.642308235168457 + ], + [ + "▁Kramer", + -12.642667770385742 + ], + [ + "▁Scandinavia", + -12.643077850341797 + ], + [ + "▁Relijyon", + -12.643165588378906 + ], + [ + "▁procedural", + -12.643165588378906 + ], + [ + "▁thirst", + -12.643166542053223 + ], + [ + "▁Famous", + -12.643171310424805 + ], + [ + "▁unseen", + -12.643194198608398 + ], + [ + "▁Kidd", + -12.6432523727417 + ], + [ + "▁paperback", + -12.643264770507812 + ], + [ + "▁relocate", + -12.643491744995117 + ], + [ + "▁spoon", + -12.643497467041016 + ], + [ + "▁adorned", + -12.643534660339355 + ], + [ + "factor", + -12.643664360046387 + ], + [ + "▁necessitated", + -12.643826484680176 + ], + [ + "▁daring", + -12.64400577545166 + ], + [ + "▁ACLU", + -12.644067764282227 + ], + [ + "▁BAFTA", + -12.644067764282227 + ], + [ + "▁Perspective", + -12.644067764282227 + ], + [ + "▁Tirpitz", + -12.644067764282227 + ], + [ + "▁estimation", + -12.644067764282227 + ], + [ + "▁feminism", + -12.644067764282227 + ], + [ + "▁herbivore", + -12.644067764282227 + ], + [ + "▁proliferation", + -12.644067764282227 + ], + [ + "▁forfeit", + -12.644098281860352 + ], + [ + "▁hydrocarbon", + -12.64410400390625 + ], + [ + "▁gown", + -12.644240379333496 + ], + [ + "▁Ramsey", + -12.64428997039795 + ], + [ + "▁tailor", + -12.644431114196777 + ], + [ + "INE", + -12.644503593444824 + ], + [ + "▁Lucien", + -12.64470100402832 + ], + [ + "▁Provisional", + -12.64497184753418 + ], + [ + "▁Timbaland", + -12.64497184753418 + ], + [ + "▁jewellery", + -12.64497184753418 + ], + [ + "▁optimism", + -12.64497184753418 + ], + [ + "▁paleontologist", + -12.64497184753418 + ], + [ + "▁grandparents", + -12.644972801208496 + ], + [ + "trophy", + -12.645005226135254 + ], + [ + "▁tabak", + -12.645195007324219 + ], + [ + "▁practitioner", + -12.645315170288086 + ], + [ + "▁Franciscan", + -12.645316123962402 + ], + [ + "leutnant", + -12.645875930786133 + ], + [ + "▁peanut", + -12.645875930786133 + ], + [ + "▁sulfate", + -12.64587688446045 + ], + [ + "▁Chennai", + -12.645896911621094 + ], + [ + "▁Eliza", + -12.646212577819824 + ], + [ + "▁Emeterio", + -12.646780967712402 + ], + [ + "▁substantive", + -12.646780967712402 + ], + [ + "▁Baxter", + -12.646781921386719 + ], + [ + "condition", + -12.646868705749512 + ], + [ + "effect", + -12.646885871887207 + ], + [ + "▁Amerik", + -12.646893501281738 + ], + [ + "▁pharmaco", + -12.647059440612793 + ], + [ + "▁anticipate", + -12.647113800048828 + ], + [ + "▁Abbot", + -12.64725399017334 + ], + [ + "▁Portable", + -12.647394180297852 + ], + [ + "▁Angus", + -12.647687911987305 + ], + [ + "minster", + -12.648309707641602 + ], + [ + "▁Jeremiah", + -12.648592948913574 + ], + [ + "▁violating", + -12.648592948913574 + ], + [ + "▁grammatical", + -12.64859390258789 + ], + [ + "▁retard", + -12.648639678955078 + ], + [ + "▁Morse", + -12.648808479309082 + ], + [ + "▁prescribe", + -12.648933410644531 + ], + [ + "▁Teddy", + -12.648940086364746 + ], + [ + "▁applauded", + -12.64947509765625 + ], + [ + "д", + -12.64950180053711 + ], + [ + "▁Threat", + -12.64950180053711 + ], + [ + "▁whaling", + -12.649506568908691 + ], + [ + "▁Edmond", + -12.649730682373047 + ], + [ + "▁Draw", + -12.649813652038574 + ], + [ + "Marie", + -12.650331497192383 + ], + [ + "▁misconception", + -12.650408744812012 + ], + [ + "▁seamless", + -12.65042495727539 + ], + [ + "▁pennant", + -12.650496482849121 + ], + [ + "With", + -12.65057373046875 + ], + [ + "▁PSP", + -12.6505765914917 + ], + [ + "▁Radi", + -12.65064811706543 + ], + [ + "▁Handel", + -12.650997161865234 + ], + [ + "▁preface", + -12.651029586791992 + ], + [ + "▁unfavorable", + -12.651317596435547 + ], + [ + "▁Brick", + -12.652114868164062 + ], + [ + "wild", + -12.652185440063477 + ], + [ + "▁Cynthia", + -12.652227401733398 + ], + [ + "▁arthropod", + -12.652227401733398 + ], + [ + "▁interspersed", + -12.652227401733398 + ], + [ + "▁stimulating", + -12.652227401733398 + ], + [ + "▁prensipal", + -12.652228355407715 + ], + [ + "▁diplomacy", + -12.652270317077637 + ], + [ + "▁Whitman", + -12.6522855758667 + ], + [ + "▁axle", + -12.652400016784668 + ], + [ + "▁Kelley", + -12.652729034423828 + ], + [ + "▁Brezhnev", + -12.653138160705566 + ], + [ + "▁Excellence", + -12.653138160705566 + ], + [ + "▁Guevara", + -12.653138160705566 + ], + [ + "▁libretto", + -12.653138160705566 + ], + [ + "▁Passenger", + -12.653139114379883 + ], + [ + "▁Invasion", + -12.653141021728516 + ], + [ + "▁irritate", + -12.653141021728516 + ], + [ + "ucker", + -12.65317153930664 + ], + [ + "people", + -12.653242111206055 + ], + [ + "▁Quran", + -12.65336799621582 + ], + [ + "▁articulated", + -12.653387069702148 + ], + [ + "▁inverted", + -12.653441429138184 + ], + [ + "▁Becky", + -12.653470039367676 + ], + [ + "▁sculpted", + -12.653718948364258 + ], + [ + "lastic", + -12.653748512268066 + ], + [ + "▁1774", + -12.65381908416748 + ], + [ + "▁Participants", + -12.65404987335205 + ], + [ + "▁Willamette", + -12.65404987335205 + ], + [ + "▁Cumming", + -12.654051780700684 + ], + [ + "▁Mutual", + -12.654131889343262 + ], + [ + "▁Bakshi", + -12.654172897338867 + ], + [ + "▁bastion", + -12.654180526733398 + ], + [ + "▁Yuan", + -12.654296875 + ], + [ + "▁Decision", + -12.65439510345459 + ], + [ + "▁Schwe", + -12.65470027923584 + ], + [ + "▁clue", + -12.654911994934082 + ], + [ + "▁Bowman", + -12.65494441986084 + ], + [ + "▁Veracruz", + -12.654962539672852 + ], + [ + "▁Nails", + -12.655085563659668 + ], + [ + "▁royalties", + -12.655332565307617 + ], + [ + "▁Keating", + -12.655491828918457 + ], + [ + "▁Dolphin", + -12.655876159667969 + ], + [ + "▁Gujarat", + -12.655876159667969 + ], + [ + "▁Jérôme", + -12.655876159667969 + ], + [ + "genesis", + -12.65595531463623 + ], + [ + "▁Enough", + -12.656378746032715 + ], + [ + "▁Verse", + -12.6565523147583 + ], + [ + "▁query", + -12.656732559204102 + ], + [ + "▁Sigismund", + -12.656789779663086 + ], + [ + "▁photosynthesis", + -12.656789779663086 + ], + [ + "▁saxophone", + -12.656789779663086 + ], + [ + "▁scramble", + -12.656789779663086 + ], + [ + "▁dispense", + -12.656821250915527 + ], + [ + "▁benchmark", + -12.656843185424805 + ], + [ + "▁1660", + -12.657482147216797 + ], + [ + "▁Skip", + -12.65748405456543 + ], + [ + "▁revolver", + -12.657495498657227 + ], + [ + "7,000", + -12.657554626464844 + ], + [ + "▁Kraków", + -12.65770435333252 + ], + [ + "▁sunshine", + -12.65770435333252 + ], + [ + "▁interlude", + -12.657705307006836 + ], + [ + "▁devoid", + -12.657709121704102 + ], + [ + "▁namesake", + -12.658079147338867 + ], + [ + "ðr", + -12.658282279968262 + ], + [ + "▁monde", + -12.658465385437012 + ], + [ + "▁Hebrides", + -12.658620834350586 + ], + [ + "▁taxpayer", + -12.658621788024902 + ], + [ + "▁Chirino", + -12.658622741699219 + ], + [ + "▁battling", + -12.658622741699219 + ], + [ + "▁artisan", + -12.65863037109375 + ], + [ + "▁Valencia", + -12.658656120300293 + ], + [ + "▁Bungie", + -12.658681869506836 + ], + [ + "▁Lansing", + -12.658895492553711 + ], + [ + "▁Embassy", + -12.659537315368652 + ], + [ + "▁engraved", + -12.659537315368652 + ], + [ + "▁Permanent", + -12.65954303741455 + ], + [ + "▁modelled", + -12.659627914428711 + ], + [ + "effective", + -12.65967082977295 + ], + [ + "▁Buddy", + -12.659771919250488 + ], + [ + "▁Livingstone", + -12.659820556640625 + ], + [ + "▁prank", + -12.659835815429688 + ], + [ + "▁inherently", + -12.659956932067871 + ], + [ + "▁Marquis", + -12.66036319732666 + ], + [ + "▁Ramírez", + -12.660454750061035 + ], + [ + "▁cholera", + -12.660454750061035 + ], + [ + "▁lettuce", + -12.660454750061035 + ], + [ + "▁Variation", + -12.660463333129883 + ], + [ + "▁benign", + -12.660481452941895 + ], + [ + "▁Childhood", + -12.660578727722168 + ], + [ + "▁Priestley", + -12.6607027053833 + ], + [ + "▁gangster", + -12.660836219787598 + ], + [ + "▁manipulated", + -12.661096572875977 + ], + [ + "▁NASCAR", + -12.661373138427734 + ], + [ + "▁Seminole", + -12.661373138427734 + ], + [ + "▁adolescence", + -12.661373138427734 + ], + [ + "▁redemption", + -12.661373138427734 + ], + [ + "▁Interestingly", + -12.661378860473633 + ], + [ + "▁Kuwait", + -12.661381721496582 + ], + [ + "▁jelly", + -12.661450386047363 + ], + [ + "▁Evelyn", + -12.66148567199707 + ], + [ + "▁Johor", + -12.661615371704102 + ], + [ + "▁Catch", + -12.661845207214355 + ], + [ + "▁chorale", + -12.662025451660156 + ], + [ + "▁disinfect", + -12.662078857421875 + ], + [ + "▁trek", + -12.662150382995605 + ], + [ + "▁Curriculum", + -12.662291526794434 + ], + [ + "▁Deborah", + -12.662291526794434 + ], + [ + "▁perpetual", + -12.662291526794434 + ], + [ + "▁uploaded", + -12.66230297088623 + ], + [ + "▁fluent", + -12.662332534790039 + ], + [ + "▁Gateshead", + -12.662405967712402 + ], + [ + "▁Clown", + -12.662421226501465 + ], + [ + "900", + -12.662579536437988 + ], + [ + "▁narrated", + -12.662647247314453 + ], + [ + "▁CAS", + -12.662710189819336 + ], + [ + "▁UBS", + -12.662781715393066 + ], + [ + "▁Romero", + -12.662900924682617 + ], + [ + "leave", + -12.662934303283691 + ], + [ + "▁hoard", + -12.662940979003906 + ], + [ + "▁fulfil", + -12.662955284118652 + ], + [ + "▁Steelers", + -12.662956237792969 + ], + [ + "2020", + -12.663040161132812 + ], + [ + "htm", + -12.663040161132812 + ], + [ + "▁drastic", + -12.663129806518555 + ], + [ + "misunderstanding", + -12.663211822509766 + ], + [ + "▁vernacular", + -12.663211822509766 + ], + [ + "▁cutscene", + -12.663213729858398 + ], + [ + "▁freak", + -12.663216590881348 + ], + [ + "▁Welch", + -12.663249015808105 + ], + [ + "▁alcoholism", + -12.66331672668457 + ], + [ + "▁consortium", + -12.66332721710205 + ], + [ + "AGE", + -12.663498878479004 + ], + [ + "▁impede", + -12.663581848144531 + ], + [ + "left", + -12.663813591003418 + ], + [ + "م", + -12.664133071899414 + ], + [ + "▁melodrama", + -12.664133071899414 + ], + [ + "▁breech", + -12.66413688659668 + ], + [ + "▁framing", + -12.664244651794434 + ], + [ + "▁Reaction", + -12.66453742980957 + ], + [ + "▁regression", + -12.664697647094727 + ], + [ + "▁Bubbl", + -12.664713859558105 + ], + [ + "▁outspoken", + -12.665054321289062 + ], + [ + "▁residency", + -12.665054321289062 + ], + [ + "▁pectoral", + -12.665055274963379 + ], + [ + "▁trivial", + -12.665057182312012 + ], + [ + "▁subfamily", + -12.665138244628906 + ], + [ + "▁Alexandr", + -12.665155410766602 + ], + [ + "▁hopeless", + -12.665196418762207 + ], + [ + "▁Hulk", + -12.665234565734863 + ], + [ + "}", + -12.665976524353027 + ], + [ + "▁Anonymous", + -12.665976524353027 + ], + [ + "▁yesterday", + -12.665976524353027 + ], + [ + "▁squid", + -12.665987014770508 + ], + [ + "▁Evangel", + -12.66604232788086 + ], + [ + "▁Millwall", + -12.666107177734375 + ], + [ + "▁summed", + -12.666343688964844 + ], + [ + "▁expel", + -12.66637897491455 + ], + [ + "Amour", + -12.66675090789795 + ], + [ + "▁Antwerp", + -12.666900634765625 + ], + [ + "▁atrocities", + -12.666900634765625 + ], + [ + "▁deputies", + -12.666901588439941 + ], + [ + "▁groundbreaking", + -12.666901588439941 + ], + [ + "▁pizza", + -12.666901588439941 + ], + [ + "▁entertainer", + -12.666916847229004 + ], + [ + "▁Tripoli", + -12.667255401611328 + ], + [ + "▁soloist", + -12.66773796081543 + ], + [ + "▁Nickelodeon", + -12.667824745178223 + ], + [ + "▁Prospect", + -12.667834281921387 + ], + [ + "▁titular", + -12.667878150939941 + ], + [ + "▁Rockwell", + -12.667900085449219 + ], + [ + "▁Opposition", + -12.667937278747559 + ], + [ + "▁attendees", + -12.667951583862305 + ], + [ + "hopper", + -12.667997360229492 + ], + [ + "trip", + -12.668033599853516 + ], + [ + "▁Bronx", + -12.668071746826172 + ], + [ + "▁deteriorate", + -12.668195724487305 + ], + [ + "▁bodyguard", + -12.668445587158203 + ], + [ + "▁escalated", + -12.668558120727539 + ], + [ + "▁migrant", + -12.668747901916504 + ], + [ + "▁Saratoga", + -12.668749809265137 + ], + [ + "▁Wiggins", + -12.668750762939453 + ], + [ + "▁Ajete", + -12.668755531311035 + ], + [ + "▁indictment", + -12.668773651123047 + ], + [ + "▁ceasefire", + -12.668789863586426 + ], + [ + "▁worshipped", + -12.669110298156738 + ], + [ + "▁Virus", + -12.669599533081055 + ], + [ + "▁brawl", + -12.669788360595703 + ], + [ + "central", + -12.670097351074219 + ], + [ + "▁penultimate", + -12.670601844787598 + ], + [ + "▁tortoise", + -12.670601844787598 + ], + [ + "zong", + -12.670634269714355 + ], + [ + "▁(2012)", + -12.670697212219238 + ], + [ + "▁Palma", + -12.670766830444336 + ], + [ + "▁transient", + -12.670804977416992 + ], + [ + "▁Location", + -12.670943260192871 + ], + [ + "▁Danys", + -12.671003341674805 + ], + [ + "▁Kathy", + -12.671061515808105 + ], + [ + "▁Javl", + -12.671087265014648 + ], + [ + "distinguishable", + -12.671133041381836 + ], + [ + "▁Crater", + -12.671269416809082 + ], + [ + "▁Enlightenment", + -12.671529769897461 + ], + [ + "▁Madeleine", + -12.671529769897461 + ], + [ + "▁Pembroke", + -12.671529769897461 + ], + [ + "▁Strength", + -12.671529769897461 + ], + [ + "▁Superintendent", + -12.671529769897461 + ], + [ + "▁treasury", + -12.671529769897461 + ], + [ + "▁Corpus", + -12.671541213989258 + ], + [ + "▁Freak", + -12.671639442443848 + ], + [ + "▁Civic", + -12.671642303466797 + ], + [ + "▁betray", + -12.67175579071045 + ], + [ + "▁Worm", + -12.671894073486328 + ], + [ + "▁swiftly", + -12.672276496887207 + ], + [ + "▁barley", + -12.672454833984375 + ], + [ + "▁fluorescent", + -12.67245864868164 + ], + [ + "▁heterosexual", + -12.672468185424805 + ], + [ + "▁parkway", + -12.67270565032959 + ], + [ + "▁Béla", + -12.672823905944824 + ], + [ + "inski", + -12.67282772064209 + ], + [ + "▁Repeat", + -12.67284870147705 + ], + [ + "▁Guantanamo", + -12.67338752746582 + ], + [ + "▁Göring", + -12.673389434814453 + ], + [ + "▁Ticket", + -12.673389434814453 + ], + [ + "▁forefront", + -12.673422813415527 + ], + [ + "▁Briggs", + -12.673454284667969 + ], + [ + "▁Vargas", + -12.673477172851562 + ], + [ + "▁addictive", + -12.673606872558594 + ], + [ + "▁confuse", + -12.6737699508667 + ], + [ + "▁elevate", + -12.6737699508667 + ], + [ + "▁Slovak", + -12.673908233642578 + ], + [ + "▁Tamar", + -12.673924446105957 + ], + [ + "▁Jade", + -12.67419147491455 + ], + [ + "▁Surgery", + -12.674318313598633 + ], + [ + "▁collegiate", + -12.674318313598633 + ], + [ + "▁librarian", + -12.674318313598633 + ], + [ + "▁scuttled", + -12.674318313598633 + ], + [ + "▁Scenic", + -12.674320220947266 + ], + [ + "▁Mitsu", + -12.674569129943848 + ], + [ + "charya", + -12.674642562866211 + ], + [ + "▁authoritarian", + -12.675249099731445 + ], + [ + "▁zeal", + -12.675349235534668 + ], + [ + "▁Interview", + -12.675381660461426 + ], + [ + "franchi", + -12.675406455993652 + ], + [ + "▁Florid", + -12.675687789916992 + ], + [ + "▁Worldwide", + -12.675963401794434 + ], + [ + "▁crustaceans", + -12.676180839538574 + ], + [ + "▁backstory", + -12.676216125488281 + ], + [ + "▁Amelia", + -12.676374435424805 + ], + [ + "▁Silence", + -12.67640209197998 + ], + [ + "▁empowerment", + -12.676624298095703 + ], + [ + "▁posing", + -12.67678165435791 + ], + [ + "▁sèn", + -12.677075386047363 + ], + [ + "ả", + -12.677112579345703 + ], + [ + "▁exemplified", + -12.67711353302002 + ], + [ + "▁judiciary", + -12.67711353302002 + ], + [ + "▁underestimate", + -12.677114486694336 + ], + [ + "▁stumble", + -12.677119255065918 + ], + [ + "▁kòmanse", + -12.67712116241455 + ], + [ + "▁grabbed", + -12.677162170410156 + ], + [ + "▁Birch", + -12.67722225189209 + ], + [ + "▁casualty", + -12.67735481262207 + ], + [ + "▁Trigger", + -12.67740249633789 + ], + [ + "–18", + -12.678031921386719 + ], + [ + "θ", + -12.678048133850098 + ], + [ + "▁incursion", + -12.678051948547363 + ], + [ + "▁coincidence", + -12.678102493286133 + ], + [ + "▁Vivian", + -12.67816162109375 + ], + [ + "▁delete", + -12.678281784057617 + ], + [ + "▁Candy", + -12.678354263305664 + ], + [ + "▁Conquest", + -12.67844009399414 + ], + [ + "▁Choir", + -12.67853832244873 + ], + [ + "▁Sunset", + -12.678565979003906 + ], + [ + "▁Royce", + -12.678653717041016 + ], + [ + "▁Whenever", + -12.678839683532715 + ], + [ + "▁sailor", + -12.678947448730469 + ], + [ + "▁thriving", + -12.67898178100586 + ], + [ + "▁Rufus", + -12.67898941040039 + ], + [ + "▁rogue", + -12.679214477539062 + ], + [ + "▁Tyne", + -12.679290771484375 + ], + [ + "▁banning", + -12.679458618164062 + ], + [ + "▁Richie", + -12.67947006225586 + ], + [ + "▁Falk", + -12.679645538330078 + ], + [ + "▁Avalanche", + -12.679917335510254 + ], + [ + "▁fugitive", + -12.679917335510254 + ], + [ + "▁quarterfinal", + -12.679917335510254 + ], + [ + "▁okay", + -12.679940223693848 + ], + [ + "▁UCLA", + -12.679999351501465 + ], + [ + "clar", + -12.68006420135498 + ], + [ + "▁choke", + -12.680087089538574 + ], + [ + "▁Floor", + -12.680092811584473 + ], + [ + "▁cruelty", + -12.68012809753418 + ], + [ + "▁allergen", + -12.680570602416992 + ], + [ + "▁Spice", + -12.680821418762207 + ], + [ + "▁Cologne", + -12.680854797363281 + ], + [ + "▁Anselm", + -12.680922508239746 + ], + [ + "▁dialog", + -12.681610107421875 + ], + [ + "▁Pavilion", + -12.681791305541992 + ], + [ + "▁observatory", + -12.681791305541992 + ], + [ + "▁hydroelectric", + -12.681818008422852 + ], + [ + "▁Ballad", + -12.681851387023926 + ], + [ + "▁investor", + -12.681971549987793 + ], + [ + "▁interrogation", + -12.682222366333008 + ], + [ + "pipe", + -12.682402610778809 + ], + [ + "Star", + -12.682449340820312 + ], + [ + "▁attire", + -12.682792663574219 + ], + [ + "▁seafood", + -12.682886123657227 + ], + [ + "»", + -12.683028221130371 + ], + [ + "▁familia", + -12.683135032653809 + ], + [ + "▁admirer", + -12.683280944824219 + ], + [ + "▁Mohammed", + -12.68366813659668 + ], + [ + "▁nonsense", + -12.683691024780273 + ], + [ + "▁Drummond", + -12.683693885803223 + ], + [ + "▁bipolar", + -12.68371868133545 + ], + [ + "▁gorgeous", + -12.683822631835938 + ], + [ + "▁Depot", + -12.683927536010742 + ], + [ + "▁toxin", + -12.683975219726562 + ], + [ + "▁Duval", + -12.684150695800781 + ], + [ + "▁Launch", + -12.68422794342041 + ], + [ + "▁Gift", + -12.684298515319824 + ], + [ + "▁Honda", + -12.684326171875 + ], + [ + "▁commemoration", + -12.684608459472656 + ], + [ + "ICE", + -12.684649467468262 + ], + [ + "aylor", + -12.684651374816895 + ], + [ + "▁youthful", + -12.684829711914062 + ], + [ + "▁dispose", + -12.6852388381958 + ], + [ + "▁Cognitive", + -12.685548782348633 + ], + [ + "▁fiancé", + -12.685548782348633 + ], + [ + "▁standout", + -12.685993194580078 + ], + [ + "util", + -12.686549186706543 + ], + [ + "World", + -12.686812400817871 + ], + [ + "▁marketplace", + -12.686820983886719 + ], + [ + "▁Ecology", + -12.687105178833008 + ], + [ + "▁Hilton", + -12.687174797058105 + ], + [ + "▁intellect", + -12.687402725219727 + ], + [ + "▁expansive", + -12.687433242797852 + ], + [ + "▁harmonies", + -12.687433242797852 + ], + [ + "evangeli", + -12.687564849853516 + ], + [ + "tropical", + -12.687579154968262 + ], + [ + "▁0.1", + -12.687647819519043 + ], + [ + "operative", + -12.687685012817383 + ], + [ + "▁amusing", + -12.687928199768066 + ], + [ + "▁Flyers", + -12.688311576843262 + ], + [ + "▁Carrie", + -12.688370704650879 + ], + [ + "▁Distribution", + -12.688376426696777 + ], + [ + "▁abbreviated", + -12.688376426696777 + ], + [ + "м", + -12.688377380371094 + ], + [ + "▁intrusion", + -12.688380241394043 + ], + [ + "▁yacht", + -12.688382148742676 + ], + [ + "▁Rudd", + -12.68840503692627 + ], + [ + "▁Gloucestershire", + -12.688419342041016 + ], + [ + "▁baked", + -12.688509941101074 + ], + [ + "▁confinement", + -12.68852424621582 + ], + [ + "▁avoidance", + -12.689030647277832 + ], + [ + "▁degenerated", + -12.689125061035156 + ], + [ + "ophile", + -12.6892728805542 + ], + [ + "▁Rousseau", + -12.68932056427002 + ], + [ + "▁tribunal", + -12.68932056427002 + ], + [ + "▁Dundee", + -12.689323425292969 + ], + [ + "▁kidnapping", + -12.689390182495117 + ], + [ + "▁Hearing", + -12.689537048339844 + ], + [ + "▁fetch", + -12.689613342285156 + ], + [ + "▁senate", + -12.689925193786621 + ], + [ + "▁congenital", + -12.690265655517578 + ], + [ + "▁happily", + -12.690265655517578 + ], + [ + "▁Constance", + -12.690266609191895 + ], + [ + "▁bayonet", + -12.690269470214844 + ], + [ + "▁reputed", + -12.690274238586426 + ], + [ + "▁Velvet", + -12.690308570861816 + ], + [ + "▁psychic", + -12.690325736999512 + ], + [ + "▁Carell", + -12.690335273742676 + ], + [ + "▁Ramirez", + -12.691211700439453 + ], + [ + "▁plentiful", + -12.691211700439453 + ], + [ + "▁Bahá", + -12.69121265411377 + ], + [ + "▁Selection", + -12.691333770751953 + ], + [ + "catch", + -12.691522598266602 + ], + [ + "stasis", + -12.691585540771484 + ], + [ + "▁hastily", + -12.692224502563477 + ], + [ + "▁accessories", + -12.692387580871582 + ], + [ + "▁dyo", + -12.692465782165527 + ], + [ + "▁disclosed", + -12.692543983459473 + ], + [ + "ostom", + -12.692739486694336 + ], + [ + "▁Plata", + -12.692750930786133 + ], + [ + "▁Plot", + -12.692930221557617 + ], + [ + "▁Archaeology", + -12.693106651306152 + ], + [ + "▁astonishing", + -12.693106651306152 + ], + [ + "▁foresee", + -12.693124771118164 + ], + [ + "▁Pamela", + -12.693184852600098 + ], + [ + "▁Prepare", + -12.693520545959473 + ], + [ + "▁payload", + -12.693662643432617 + ], + [ + "resumption", + -12.694055557250977 + ], + [ + "▁Artificial", + -12.694055557250977 + ], + [ + "▁Kathleen", + -12.694055557250977 + ], + [ + "▁computation", + -12.694085121154785 + ], + [ + "▁eyewall", + -12.694464683532715 + ], + [ + "▁laughter", + -12.694626808166504 + ], + [ + "▁Polk", + -12.695001602172852 + ], + [ + "▁Dwarf", + -12.695005416870117 + ], + [ + "▁Homicide", + -12.695005416870117 + ], + [ + "▁Natasha", + -12.695005416870117 + ], + [ + "▁NDH", + -12.695008277893066 + ], + [ + "▁paranormal", + -12.695042610168457 + ], + [ + "▁deceive", + -12.695387840270996 + ], + [ + "Arnaud", + -12.695950508117676 + ], + [ + "▁decipher", + -12.695955276489258 + ], + [ + "▁Clash", + -12.6959867477417 + ], + [ + "▁jwenn", + -12.696008682250977 + ], + [ + "▁Rollins", + -12.696150779724121 + ], + [ + "▁Luz", + -12.696159362792969 + ], + [ + "▁Ripley", + -12.69616985321045 + ], + [ + "▁seduce", + -12.696194648742676 + ], + [ + "▁gunboat", + -12.696208953857422 + ], + [ + "▁Talent", + -12.696514129638672 + ], + [ + "▁Universi", + -12.69667911529541 + ], + [ + "▁cemeteries", + -12.696907043457031 + ], + [ + "▁endeavour", + -12.696907043457031 + ], + [ + "▁fellowship", + -12.696940422058105 + ], + [ + "▁stemmed", + -12.697227478027344 + ], + [ + "amide", + -12.697324752807617 + ], + [ + "▁plotting", + -12.697493553161621 + ], + [ + "▁detonated", + -12.6978178024292 + ], + [ + "▁Advocate", + -12.697859764099121 + ], + [ + "▁Elijah", + -12.697859764099121 + ], + [ + "▁sant", + -12.697887420654297 + ], + [ + "▁Klaus", + -12.698650360107422 + ], + [ + "▁Funk", + -12.6987943649292 + ], + [ + "▁Félix", + -12.698812484741211 + ], + [ + "▁Pawnee", + -12.698813438415527 + ], + [ + "▁Quentin", + -12.698813438415527 + ], + [ + "▁estrogen", + -12.69881820678711 + ], + [ + "▁Breast", + -12.698902130126953 + ], + [ + "▁practised", + -12.698982238769531 + ], + [ + "▁Underwood", + -12.698989868164062 + ], + [ + "▁locus", + -12.699227333068848 + ], + [ + "†", + -12.699563026428223 + ], + [ + "____", + -12.699735641479492 + ], + [ + "▁infringement", + -12.699767112731934 + ], + [ + "▁enslaved", + -12.69976806640625 + ], + [ + "▁Clerk", + -12.700064659118652 + ], + [ + "▁assemblies", + -12.700721740722656 + ], + [ + "▁excursion", + -12.700721740722656 + ], + [ + "▁ignorant", + -12.700721740722656 + ], + [ + "ław", + -12.701351165771484 + ], + [ + "▁Families", + -12.701678276062012 + ], + [ + "▁appropriation", + -12.701678276062012 + ], + [ + "▁Landis", + -12.70173454284668 + ], + [ + "commissioned", + -12.702117919921875 + ], + [ + "▁Adler", + -12.702136039733887 + ], + [ + "▁Trick", + -12.702569007873535 + ], + [ + "▁munitions", + -12.702634811401367 + ], + [ + "▁haunted", + -12.702635765075684 + ], + [ + "▁physio", + -12.70263957977295 + ], + [ + "▁Quarterly", + -12.70280933380127 + ], + [ + "▁Rhino", + -12.703385353088379 + ], + [ + "ś", + -12.703593254089355 + ], + [ + "▁baptized", + -12.703593254089355 + ], + [ + "▁carpenter", + -12.703593254089355 + ], + [ + "▁fermentation", + -12.703593254089355 + ], + [ + "▁Nagasaki", + -12.703594207763672 + ], + [ + "▁Chloe", + -12.703595161437988 + ], + [ + "▁Rutgers", + -12.703597068786621 + ], + [ + "▁Average", + -12.703604698181152 + ], + [ + "▁traitor", + -12.703618049621582 + ], + [ + "▁tandem", + -12.703640937805176 + ], + [ + "▁Mechanical", + -12.703784942626953 + ], + [ + "▁cultivate", + -12.704031944274902 + ], + [ + "Intercontinental", + -12.704551696777344 + ], + [ + "▁Ipswich", + -12.704551696777344 + ], + [ + "▁Shuttle", + -12.704551696777344 + ], + [ + "▁accelerating", + -12.704551696777344 + ], + [ + "▁Deutsche", + -12.70455265045166 + ], + [ + "▁polluted", + -12.704553604125977 + ], + [ + "▁marrow", + -12.704618453979492 + ], + [ + "▁Setting", + -12.70463752746582 + ], + [ + "▁Maw", + -12.70500659942627 + ], + [ + "▁endorse", + -12.70518970489502 + ], + [ + "▁echoes", + -12.705221176147461 + ], + [ + "ARC", + -12.705374717712402 + ], + [ + "▁Logic", + -12.705409049987793 + ], + [ + "▁leukemia", + -12.705511093139648 + ], + [ + "▁nomadic", + -12.705512046813965 + ], + [ + "leaf", + -12.705768585205078 + ], + [ + "function", + -12.705910682678223 + ], + [ + "2007", + -12.705918312072754 + ], + [ + "▁denies", + -12.70609188079834 + ], + [ + "acid", + -12.70658016204834 + ], + [ + "▁superstar", + -12.706668853759766 + ], + [ + "▁Radiation", + -12.706701278686523 + ], + [ + "▁blanc", + -12.706744194030762 + ], + [ + "▁alkaline", + -12.706745147705078 + ], + [ + "remixes", + -12.70688533782959 + ], + [ + "significant", + -12.706908226013184 + ], + [ + "▁dosage", + -12.707074165344238 + ], + [ + "▁flea", + -12.70721435546875 + ], + [ + "ación", + -12.707371711730957 + ], + [ + "▁colloquial", + -12.707433700561523 + ], + [ + "▁caretaker", + -12.70743465423584 + ], + [ + "▁McCool", + -12.707440376281738 + ], + [ + "▁injuring", + -12.707534790039062 + ], + [ + "▁Peyi", + -12.707622528076172 + ], + [ + "▁conductivity", + -12.707646369934082 + ], + [ + "▁omission", + -12.707680702209473 + ], + [ + "▁Maximum", + -12.707862854003906 + ], + [ + "▁Yoko", + -12.707954406738281 + ], + [ + "▁Peruvian", + -12.708419799804688 + ], + [ + "▁Psychological", + -12.70848274230957 + ], + [ + "▁blindness", + -12.70851993560791 + ], + [ + "chondr", + -12.708649635314941 + ], + [ + "depth", + -12.708880424499512 + ], + [ + "▁shipwreck", + -12.709359169006348 + ], + [ + "▁Sgt", + -12.709454536437988 + ], + [ + "soft", + -12.709710121154785 + ], + [ + "oriented", + -12.709753036499023 + ], + [ + "▁identifiable", + -12.710323333740234 + ], + [ + "▁Ethics", + -12.71032428741455 + ], + [ + "▁chick", + -12.710348129272461 + ], + [ + "▁lounge", + -12.710357666015625 + ], + [ + "▁standpoint", + -12.710681915283203 + ], + [ + "▁YOU", + -12.710865020751953 + ], + [ + "▁Ballard", + -12.711039543151855 + ], + [ + "▁Stargate", + -12.711134910583496 + ], + [ + "▁Melville", + -12.711174964904785 + ], + [ + "▁naive", + -12.711249351501465 + ], + [ + "kiewicz", + -12.711289405822754 + ], + [ + "▁Byzantium", + -12.711289405822754 + ], + [ + "▁Gentlemen", + -12.711289405822754 + ], + [ + "▁Pentecost", + -12.711289405822754 + ], + [ + "▁renumbered", + -12.71129035949707 + ], + [ + "▁Cobain", + -12.711291313171387 + ], + [ + "▁electrolyte", + -12.711295127868652 + ], + [ + "▁Buster", + -12.711308479309082 + ], + [ + "▁Habitat", + -12.711312294006348 + ], + [ + "▁Neumann", + -12.711419105529785 + ], + [ + "winter", + -12.711440086364746 + ], + [ + "▁Poison", + -12.711650848388672 + ], + [ + "▁Novak", + -12.711711883544922 + ], + [ + "▁couch", + -12.712611198425293 + ], + [ + "axial", + -12.712918281555176 + ], + [ + "uddle", + -12.713106155395508 + ], + [ + "▁disembark", + -12.71322250366211 + ], + [ + "▁meticulous", + -12.71322250366211 + ], + [ + "▁ostensibly", + -12.71322250366211 + ], + [ + "▁Valuable", + -12.713223457336426 + ], + [ + "▁Soccer", + -12.713225364685059 + ], + [ + "▁Doubt", + -12.71323013305664 + ], + [ + "▁decompose", + -12.713276863098145 + ], + [ + "▁Silk", + -12.713554382324219 + ], + [ + "▁aloud", + -12.713598251342773 + ], + [ + "▁Milford", + -12.713637351989746 + ], + [ + "▁Aegean", + -12.714190483093262 + ], + [ + "▁wardrobe", + -12.71420669555664 + ], + [ + "▁Brandenburg", + -12.714215278625488 + ], + [ + "▁Pressure", + -12.714299201965332 + ], + [ + "▁Justinian", + -12.71442699432373 + ], + [ + "▁caption", + -12.71471881866455 + ], + [ + "▁contentious", + -12.714971542358398 + ], + [ + "▁Happen", + -12.715163230895996 + ], + [ + "▁trè", + -12.715167999267578 + ], + [ + "▁Bauer", + -12.71518611907959 + ], + [ + "1,000", + -12.715291023254395 + ], + [ + "▁taboo", + -12.715432167053223 + ], + [ + "▁inhibition", + -12.716124534606934 + ], + [ + "▁Developing", + -12.716129302978516 + ], + [ + "▁automotive", + -12.716129302978516 + ], + [ + "▁intimidate", + -12.716130256652832 + ], + [ + "▁Wallachia", + -12.716231346130371 + ], + [ + "▁permitting", + -12.716798782348633 + ], + [ + "▁Orbit", + -12.717034339904785 + ], + [ + "▁assimilate", + -12.717100143432617 + ], + [ + "▁cadmium", + -12.717100143432617 + ], + [ + "▁cinematographer", + -12.717100143432617 + ], + [ + "▁lanmò", + -12.717100143432617 + ], + [ + "▁loneliness", + -12.717101097106934 + ], + [ + "▁shortcomings", + -12.717101097106934 + ], + [ + "▁knit", + -12.717264175415039 + ], + [ + "▁1782", + -12.717459678649902 + ], + [ + "plat", + -12.717573165893555 + ], + [ + "▁Fatal", + -12.71767520904541 + ], + [ + "▁foal", + -12.717781066894531 + ], + [ + "▁Wilfrid", + -12.718071937561035 + ], + [ + "▁Pseudo", + -12.718072891235352 + ], + [ + "▁Uprising", + -12.718073844909668 + ], + [ + "▁hardened", + -12.718101501464844 + ], + [ + "▁squat", + -12.718289375305176 + ], + [ + "▁Deux", + -12.71838092803955 + ], + [ + "▁Mahler", + -12.718622207641602 + ], + [ + "raptor", + -12.718799591064453 + ], + [ + "▁Statistical", + -12.71904468536377 + ], + [ + "▁Teknoloji", + -12.71904468536377 + ], + [ + "▁arsenic", + -12.719045639038086 + ], + [ + "▁splinter", + -12.719045639038086 + ], + [ + "▁moat", + -12.719077110290527 + ], + [ + "▁Curie", + -12.719172477722168 + ], + [ + "▁otè", + -12.719263076782227 + ], + [ + "closure", + -12.719353675842285 + ], + [ + "▁Jenner", + -12.719460487365723 + ], + [ + "▁Caucasus", + -12.72001838684082 + ], + [ + "▁Navarro", + -12.72001838684082 + ], + [ + "▁salamander", + -12.72001838684082 + ], + [ + "▁sclerosis", + -12.72001838684082 + ], + [ + "▁drank", + -12.72002124786377 + ], + [ + "▁ratification", + -12.720152854919434 + ], + [ + "▁dorm", + -12.720442771911621 + ], + [ + "oplasm", + -12.720576286315918 + ], + [ + "▁counteract", + -12.720632553100586 + ], + [ + "▁Message", + -12.720694541931152 + ], + [ + "▁Calhoun", + -12.720993041992188 + ], + [ + "▁Collegiate", + -12.720993041992188 + ], + [ + "▁mercenaries", + -12.720993041992188 + ], + [ + "▁referencing", + -12.720993041992188 + ], + [ + "▁densities", + -12.720999717712402 + ], + [ + "▁circa", + -12.721019744873047 + ], + [ + "▁insecticide", + -12.721020698547363 + ], + [ + "▁postwar", + -12.721308708190918 + ], + [ + "facing", + -12.721356391906738 + ], + [ + "▁overdub", + -12.721436500549316 + ], + [ + "▁Thriller", + -12.721701622009277 + ], + [ + "▁Elisabeth", + -12.721968650817871 + ], + [ + "▁sacrament", + -12.721968650817871 + ], + [ + "▁translating", + -12.721969604492188 + ], + [ + "▁bikini", + -12.721970558166504 + ], + [ + "▁FIA", + -12.721977233886719 + ], + [ + "▁Annals", + -12.722220420837402 + ], + [ + "▁flak", + -12.722554206848145 + ], + [ + "′", + -12.722620010375977 + ], + [ + "▁reworked", + -12.7229585647583 + ], + [ + "▁Potential", + -12.723007202148438 + ], + [ + "▁Spell", + -12.723031044006348 + ], + [ + "▁checkpoint", + -12.72325611114502 + ], + [ + "▁Sonia", + -12.723346710205078 + ], + [ + "▁URL", + -12.7237548828125 + ], + [ + "▁drier", + -12.72381591796875 + ], + [ + "▁intravenous", + -12.723922729492188 + ], + [ + "▁Playboy", + -12.724016189575195 + ], + [ + "▁conformation", + -12.724279403686523 + ], + [ + "▁drawback", + -12.724515914916992 + ], + [ + "▁american", + -12.724543571472168 + ], + [ + "▁PET", + -12.724687576293945 + ], + [ + "▁Astronomical", + -12.72490119934082 + ], + [ + "▁jockey", + -12.72490119934082 + ], + [ + "▁holistic", + -12.724905967712402 + ], + [ + "▁Interpret", + -12.724926948547363 + ], + [ + "fiction", + -12.725052833557129 + ], + [ + "▁Chew", + -12.725154876708984 + ], + [ + "▁Bluff", + -12.725189208984375 + ], + [ + "▁southernmost", + -12.725386619567871 + ], + [ + "▁Vander", + -12.725687026977539 + ], + [ + "▁cohesive", + -12.72588062286377 + ], + [ + "▁gubernatorial", + -12.72588062286377 + ], + [ + "0.00", + -12.725892066955566 + ], + [ + "▁bilateral", + -12.725944519042969 + ], + [ + "▁Alert", + -12.72606372833252 + ], + [ + "▁Cesar", + -12.726523399353027 + ], + [ + "▁ruf", + -12.726634979248047 + ], + [ + "▁Riding", + -12.726661682128906 + ], + [ + "▁Oryzomy", + -12.726861000061035 + ], + [ + "▁reaffirm", + -12.726861000061035 + ], + [ + "▁schooner", + -12.726861000061035 + ], + [ + "▁secrecy", + -12.726861000061035 + ], + [ + "▁herbicide", + -12.726861953735352 + ], + [ + "▁Klingon", + -12.726869583129883 + ], + [ + "▁Merry", + -12.726985931396484 + ], + [ + "▁Levant", + -12.727029800415039 + ], + [ + "▁orchestrated", + -12.72749137878418 + ], + [ + "IND", + -12.72750473022461 + ], + [ + "▁consequent", + -12.727750778198242 + ], + [ + "▁electorate", + -12.727842330932617 + ], + [ + "▁bronchi", + -12.727880477905273 + ], + [ + "▁NSW", + -12.727890014648438 + ], + [ + "▁kilometer", + -12.728342056274414 + ], + [ + "▁visa", + -12.728342056274414 + ], + [ + "▁subtype", + -12.728352546691895 + ], + [ + "determined", + -12.72840404510498 + ], + [ + "▁usher", + -12.72856616973877 + ], + [ + "▁frè", + -12.728597640991211 + ], + [ + "▁Gail", + -12.7286958694458 + ], + [ + "▁Briarcliff", + -12.728824615478516 + ], + [ + "▁Butterfly", + -12.728824615478516 + ], + [ + "▁Lichtenstein", + -12.728824615478516 + ], + [ + "▁Nablus", + -12.728824615478516 + ], + [ + "▁Svalbard", + -12.728824615478516 + ], + [ + "▁sidkoreyèn", + -12.728824615478516 + ], + [ + "▁Incident", + -12.728826522827148 + ], + [ + "▁Mafia", + -12.728827476501465 + ], + [ + "▁Hollow", + -12.729140281677246 + ], + [ + "▁Flair", + -12.729207992553711 + ], + [ + "▁penti", + -12.72967529296875 + ], + [ + "▁inconclusive", + -12.729808807373047 + ], + [ + "▁staunch", + -12.729836463928223 + ], + [ + "▁Alban", + -12.730020523071289 + ], + [ + "▁prevail", + -12.730303764343262 + ], + [ + "▁Wedding", + -12.730494499206543 + ], + [ + "▁fishery", + -12.730743408203125 + ], + [ + "dokimantè", + -12.730792045593262 + ], + [ + "▁cinematography", + -12.730792045593262 + ], + [ + "▁scavenge", + -12.730792045593262 + ], + [ + "▁Somali", + -12.73083209991455 + ], + [ + "▁droplets", + -12.730927467346191 + ], + [ + "▁Collect", + -12.730939865112305 + ], + [ + "khan", + -12.731122016906738 + ], + [ + "▁clamp", + -12.731244087219238 + ], + [ + "▁correlate", + -12.731284141540527 + ], + [ + "▁wreckage", + -12.731300354003906 + ], + [ + "▁captaincy", + -12.731484413146973 + ], + [ + "▁Benoît", + -12.73177719116211 + ], + [ + "▁aerosol", + -12.731780052185059 + ], + [ + "▁sterile", + -12.731785774230957 + ], + [ + "▁Budget", + -12.731842994689941 + ], + [ + "▁GameSp", + -12.731856346130371 + ], + [ + "▁highlands", + -12.731941223144531 + ], + [ + "▁orchid", + -12.731971740722656 + ], + [ + "▁Merlin", + -12.732070922851562 + ], + [ + "▁Sancti", + -12.732213020324707 + ], + [ + "▁diaries", + -12.73241138458252 + ], + [ + "▁avail", + -12.73261833190918 + ], + [ + "▁evaporation", + -12.732763290405273 + ], + [ + "▁insomnia", + -12.732763290405273 + ], + [ + "▁Snyder", + -12.73276424407959 + ], + [ + "▁Firth", + -12.732784271240234 + ], + [ + "▁smokers", + -12.73291015625 + ], + [ + "▁Donkey", + -12.733166694641113 + ], + [ + "▁Laugh", + -12.733246803283691 + ], + [ + "▁Brahma", + -12.73324966430664 + ], + [ + "▁spoof", + -12.73375129699707 + ], + [ + "▁Hamasaki", + -12.733752250671387 + ], + [ + "kovsky", + -12.7339448928833 + ], + [ + "▁organising", + -12.733993530273438 + ], + [ + "▁Contrary", + -12.7340087890625 + ], + [ + "▁ridden", + -12.734126091003418 + ], + [ + "▁fearful", + -12.73427963256836 + ], + [ + "critical", + -12.734454154968262 + ], + [ + "▁siding", + -12.73449420928955 + ], + [ + "▁Hague", + -12.734519958496094 + ], + [ + "▁brigadier", + -12.734739303588867 + ], + [ + "▁mediocre", + -12.734739303588867 + ], + [ + "▁unpublished", + -12.734739303588867 + ], + [ + "▁thief", + -12.734740257263184 + ], + [ + "▁Sentinel", + -12.7347412109375 + ], + [ + "▁dominion", + -12.734746932983398 + ], + [ + "▁discriminate", + -12.734796524047852 + ], + [ + "▁omit", + -12.73493480682373 + ], + [ + "▁salute", + -12.734951972961426 + ], + [ + "▁Jungle", + -12.735238075256348 + ], + [ + "▁commonplace", + -12.735536575317383 + ], + [ + "issi", + -12.735657691955566 + ], + [ + "▁luminosity", + -12.73572826385498 + ], + [ + "▁chassis", + -12.735734939575195 + ], + [ + "▁auditory", + -12.735794067382812 + ], + [ + "▁unfit", + -12.736222267150879 + ], + [ + "▁Mendel", + -12.736350059509277 + ], + [ + "▁sensational", + -12.736446380615234 + ], + [ + "▁Coaches", + -12.736475944519043 + ], + [ + "▁Stead", + -12.736715316772461 + ], + [ + "▁Corridor", + -12.73671817779541 + ], + [ + "▁Dunstan", + -12.736729621887207 + ], + [ + "aliforni", + -12.736747741699219 + ], + [ + "/10.1", + -12.736754417419434 + ], + [ + "▁Oilers", + -12.737143516540527 + ], + [ + "▁overlook", + -12.73725414276123 + ], + [ + "▁Runner", + -12.737679481506348 + ], + [ + "▁McGovern", + -12.737709045410156 + ], + [ + "▁Raúl", + -12.737709045410156 + ], + [ + "▁quartz", + -12.737709045410156 + ], + [ + "▁selenium", + -12.737709045410156 + ], + [ + "▁Purchase", + -12.737709999084473 + ], + [ + "▁utilization", + -12.737709999084473 + ], + [ + "▁unleash", + -12.737711906433105 + ], + [ + "Learn", + -12.737945556640625 + ], + [ + "▁lazy", + -12.738473892211914 + ], + [ + "▁vitro", + -12.738531112670898 + ], + [ + "у", + -12.738700866699219 + ], + [ + "▁HPV", + -12.738702774047852 + ], + [ + "▁knives", + -12.73870849609375 + ], + [ + "▁blockchain", + -12.73875904083252 + ], + [ + "▁Normally", + -12.739222526550293 + ], + [ + "▁Partners", + -12.739418983459473 + ], + [ + "▁Christgau", + -12.739694595336914 + ], + [ + "▁Senegal", + -12.73969554901123 + ], + [ + "▁Mortimer", + -12.739703178405762 + ], + [ + "Haïti", + -12.739714622497559 + ], + [ + "▁convergence", + -12.739737510681152 + ], + [ + "▁Reign", + -12.739903450012207 + ], + [ + "▁Patty", + -12.73993968963623 + ], + [ + "▁Pep", + -12.740165710449219 + ], + [ + "▁Foley", + -12.740217208862305 + ], + [ + "▁lagoon", + -12.740694046020508 + ], + [ + "▁Positive", + -12.740694999694824 + ], + [ + "▁violet", + -12.740697860717773 + ], + [ + "▁Beaufort", + -12.740726470947266 + ], + [ + "▁snowfall", + -12.74087905883789 + ], + [ + "▁Baird", + -12.740900993347168 + ], + [ + "▁Vogue", + -12.741073608398438 + ], + [ + "▁Medici", + -12.741209983825684 + ], + [ + "▁parole", + -12.741469383239746 + ], + [ + "▁Coolidge", + -12.741683959960938 + ], + [ + "▁Mohawk", + -12.742020606994629 + ], + [ + "▁seaplane", + -12.742122650146484 + ], + [ + "▁Cerv", + -12.742392539978027 + ], + [ + "▁fragmentation", + -12.742474555969238 + ], + [ + "▁Confucian", + -12.742679595947266 + ], + [ + "▁catastrophe", + -12.742679595947266 + ], + [ + "▁embarrassing", + -12.742679595947266 + ], + [ + "▁Montagu", + -12.742768287658691 + ], + [ + "▁pleasing", + -12.742890357971191 + ], + [ + "▁amber", + -12.74293041229248 + ], + [ + "▁LLC", + -12.74304485321045 + ], + [ + "▁Woodward", + -12.743538856506348 + ], + [ + "▁Framework", + -12.74367618560791 + ], + [ + "▁simplify", + -12.74367618560791 + ], + [ + "▁Already", + -12.743677139282227 + ], + [ + "▁Nissan", + -12.743680953979492 + ], + [ + "▁Vlad", + -12.74368667602539 + ], + [ + "▁revered", + -12.743712425231934 + ], + [ + "olisyon", + -12.743966102600098 + ], + [ + "▁Calvert", + -12.744046211242676 + ], + [ + "esteem", + -12.744339942932129 + ], + [ + "▁Beauchamp", + -12.744674682617188 + ], + [ + "▁Marguerite", + -12.744674682617188 + ], + [ + "▁Radcliffe", + -12.744674682617188 + ], + [ + "▁dominating", + -12.744675636291504 + ], + [ + "▁Scratch", + -12.744681358337402 + ], + [ + "▁deported", + -12.744708061218262 + ], + [ + "▁pony", + -12.744900703430176 + ], + [ + "▁circulate", + -12.745193481445312 + ], + [ + "▁insertion", + -12.745525360107422 + ], + [ + "▁frightened", + -12.745673179626465 + ], + [ + "▁hesitant", + -12.745674133300781 + ], + [ + "▁arbitration", + -12.745675086975098 + ], + [ + "▁Translation", + -12.745818138122559 + ], + [ + "▁Stakes", + -12.745932579040527 + ], + [ + "▁Scheme", + -12.746020317077637 + ], + [ + "arctic", + -12.74604320526123 + ], + [ + "▁crystalline", + -12.746137619018555 + ], + [ + "▁70%", + -12.746413230895996 + ], + [ + "▁fry", + -12.746463775634766 + ], + [ + "▁exacerbat", + -12.746611595153809 + ], + [ + "▁Yasu", + -12.746658325195312 + ], + [ + "▁victor", + -12.746668815612793 + ], + [ + "▁Diocletian", + -12.746673583984375 + ], + [ + "▁aggravate", + -12.746673583984375 + ], + [ + "▁Ceylon", + -12.746674537658691 + ], + [ + "▁Noël", + -12.74667739868164 + ], + [ + "▁PPV", + -12.746679306030273 + ], + [ + "▁Scarborough", + -12.746700286865234 + ], + [ + "▁Templar", + -12.74677848815918 + ], + [ + "▁roundabout", + -12.746874809265137 + ], + [ + "▁Howell", + -12.746975898742676 + ], + [ + "▁dissect", + -12.746981620788574 + ], + [ + "▁slick", + -12.747020721435547 + ], + [ + "▁Flame", + -12.747305870056152 + ], + [ + "computer", + -12.747371673583984 + ], + [ + "vati", + -12.747496604919434 + ], + [ + "▁Divètisman", + -12.747674942016602 + ], + [ + "▁Olympus", + -12.747674942016602 + ], + [ + "▁unpaid", + -12.747675895690918 + ], + [ + "▁Tactical", + -12.747676849365234 + ], + [ + "▁sunscreen", + -12.747803688049316 + ], + [ + "▁Owing", + -12.748194694519043 + ], + [ + "meyer", + -12.748202323913574 + ], + [ + "▁icy", + -12.748211860656738 + ], + [ + "▁Astronomy", + -12.748676300048828 + ], + [ + "▁Gardiner", + -12.748676300048828 + ], + [ + "▁Reconnaissance", + -12.748676300048828 + ], + [ + "▁penetrating", + -12.748676300048828 + ], + [ + "▁turbulent", + -12.748676300048828 + ], + [ + "▁ubiquitous", + -12.748676300048828 + ], + [ + "▁recounts", + -12.748719215393066 + ], + [ + "▁immoral", + -12.748723983764648 + ], + [ + "▁dubious", + -12.748727798461914 + ], + [ + "▁Bowen", + -12.749004364013672 + ], + [ + "▁flatter", + -12.74902629852295 + ], + [ + "PEC", + -12.749669075012207 + ], + [ + "▁Kafka", + -12.749680519104004 + ], + [ + "▁perfume", + -12.749695777893066 + ], + [ + "Saharan", + -12.749796867370605 + ], + [ + "▁Chopin", + -12.749879837036133 + ], + [ + "▁rhino", + -12.749931335449219 + ], + [ + "desimal", + -12.750428199768066 + ], + [ + "▁roar", + -12.750524520874023 + ], + [ + "▁Dracula", + -12.750683784484863 + ], + [ + "▁follicle", + -12.750683784484863 + ], + [ + "▁cognition", + -12.75068473815918 + ], + [ + "hiko", + -12.750720024108887 + ], + [ + "▁Woodstock", + -12.750865936279297 + ], + [ + "▁factual", + -12.751243591308594 + ], + [ + "Olivier", + -12.751380920410156 + ], + [ + "▁unintentional", + -12.751688003540039 + ], + [ + "▁ekzadesimal", + -12.751688957214355 + ], + [ + "▁microscopy", + -12.751688957214355 + ], + [ + "▁Robbins", + -12.751748085021973 + ], + [ + "▁puck", + -12.752630233764648 + ], + [ + "▁Oracle", + -12.752696990966797 + ], + [ + "▁devout", + -12.752699851989746 + ], + [ + "▁Kruger", + -12.752798080444336 + ], + [ + "▁interned", + -12.752822875976562 + ], + [ + "▁MiG", + -12.753275871276855 + ], + [ + "▁Rowan", + -12.753300666809082 + ], + [ + "▁Haf", + -12.753344535827637 + ], + [ + "▁crisp", + -12.75340461730957 + ], + [ + "ACE", + -12.75365161895752 + ], + [ + "▁(2003)", + -12.753702163696289 + ], + [ + "▁Gómez", + -12.753702163696289 + ], + [ + "▁tumour", + -12.753702163696289 + ], + [ + "▁citrus", + -12.753705024719238 + ], + [ + "▁solemn", + -12.753774642944336 + ], + [ + "▁respiration", + -12.754497528076172 + ], + [ + "▁Bypass", + -12.754608154296875 + ], + [ + "▁Lorraine", + -12.75471019744873 + ], + [ + "▁TARDIS", + -12.75471019744873 + ], + [ + "▁dissatisfaction", + -12.75471019744873 + ], + [ + "▁taxonomy", + -12.75471019744873 + ], + [ + "▁sliding", + -12.754715919494629 + ], + [ + "▁Sherlock", + -12.754759788513184 + ], + [ + "▁comfortably", + -12.754871368408203 + ], + [ + "▁Darling", + -12.754972457885742 + ], + [ + "▁Sector", + -12.755160331726074 + ], + [ + "fòm", + -12.75562858581543 + ], + [ + "▁Ordnance", + -12.755719184875488 + ], + [ + "▁Amateur", + -12.75572395324707 + ], + [ + "▁recycle", + -12.75575065612793 + ], + [ + "▁Tikal", + -12.755845069885254 + ], + [ + "AST", + -12.755908012390137 + ], + [ + "▁Bohr", + -12.75592041015625 + ], + [ + "▁blot", + -12.755974769592285 + ], + [ + "▁cleanup", + -12.756048202514648 + ], + [ + "▁Wicca", + -12.756095886230469 + ], + [ + "changing", + -12.756709098815918 + ], + [ + "▁Epsilon", + -12.756729125976562 + ], + [ + "▁fascination", + -12.756729125976562 + ], + [ + "▁Raphael", + -12.756730079650879 + ], + [ + "▁lobster", + -12.756731033325195 + ], + [ + "▁bulge", + -12.756781578063965 + ], + [ + "▁baker", + -12.756795883178711 + ], + [ + "▁meander", + -12.756843566894531 + ], + [ + "▁torment", + -12.756854057312012 + ], + [ + "▁mulch", + -12.756860733032227 + ], + [ + "▁Gabrielle", + -12.757018089294434 + ], + [ + "▁Shape", + -12.757270812988281 + ], + [ + "ERT", + -12.757346153259277 + ], + [ + "▁boron", + -12.757370948791504 + ], + [ + "▁bureau", + -12.757655143737793 + ], + [ + "▁Hernández", + -12.757740020751953 + ], + [ + "▁Artemis", + -12.7577486038208 + ], + [ + "▁Frankenstein", + -12.757879257202148 + ], + [ + "▁domesticated", + -12.75804615020752 + ], + [ + "▁floral", + -12.758091926574707 + ], + [ + "▁bacon", + -12.758289337158203 + ], + [ + "30,000", + -12.758408546447754 + ], + [ + "employ", + -12.75844955444336 + ], + [ + "▁Mussolini", + -12.75875186920166 + ], + [ + "▁propagation", + -12.75875186920166 + ], + [ + "र", + -12.758752822875977 + ], + [ + "▁childbirth", + -12.758752822875977 + ], + [ + "▁caudal", + -12.75875473022461 + ], + [ + "▁Laguna", + -12.758755683898926 + ], + [ + "Televisa", + -12.758761405944824 + ], + [ + "▁Miracle", + -12.758792877197266 + ], + [ + "▁palp", + -12.758962631225586 + ], + [ + "▁silica", + -12.759031295776367 + ], + [ + "▁contour", + -12.759145736694336 + ], + [ + "2006", + -12.759149551391602 + ], + [ + "▁Morrow", + -12.759393692016602 + ], + [ + "Why", + -12.759564399719238 + ], + [ + "▁Harlan", + -12.759632110595703 + ], + [ + "▁admire", + -12.759718894958496 + ], + [ + "▁Claudius", + -12.759765625 + ], + [ + "▁Migration", + -12.759765625 + ], + [ + "▁breastfeeding", + -12.759765625 + ], + [ + "▁caricature", + -12.759765625 + ], + [ + "▁wizard", + -12.759765625 + ], + [ + "▁unequal", + -12.759766578674316 + ], + [ + "▁unlawful", + -12.75976848602295 + ], + [ + "▁Defender", + -12.759865760803223 + ], + [ + "archive", + -12.760367393493652 + ], + [ + "▁pacing", + -12.760550498962402 + ], + [ + "Baptiste", + -12.760685920715332 + ], + [ + "▁Coventry", + -12.76077938079834 + ], + [ + "▁conjecture", + -12.76077938079834 + ], + [ + "▁dessert", + -12.760788917541504 + ], + [ + "▁Rahman", + -12.761591911315918 + ], + [ + "▁oxidative", + -12.761795043945312 + ], + [ + "▁predominate", + -12.761796951293945 + ], + [ + "▁hurdle", + -12.761799812316895 + ], + [ + "▁Eurovision", + -12.761836051940918 + ], + [ + "▁accountability", + -12.761899948120117 + ], + [ + "▁Punch", + -12.762019157409668 + ], + [ + "otti", + -12.762781143188477 + ], + [ + "▁Doris", + -12.762808799743652 + ], + [ + "↑", + -12.762810707092285 + ], + [ + "▁controversies", + -12.762810707092285 + ], + [ + "▁northerly", + -12.762892723083496 + ], + [ + "▁offended", + -12.762938499450684 + ], + [ + "integration", + -12.763583183288574 + ], + [ + "▁marathon", + -12.76382827758789 + ], + [ + "▁Atkinson", + -12.763829231262207 + ], + [ + "▁freelance", + -12.764108657836914 + ], + [ + "▁Morph", + -12.764452934265137 + ], + [ + "rkham", + -12.764695167541504 + ], + [ + "▁illumination", + -12.764846801757812 + ], + [ + "▁Coronation", + -12.764909744262695 + ], + [ + "▁pivot", + -12.765092849731445 + ], + [ + "▁delightful", + -12.765110969543457 + ], + [ + "▁Cobra", + -12.765527725219727 + ], + [ + "▁Frederic", + -12.76552963256836 + ], + [ + "ン", + -12.765865325927734 + ], + [ + "▁aggregator", + -12.76586627960205 + ], + [ + "▁souvenir", + -12.76586627960205 + ], + [ + "▁befriended", + -12.765876770019531 + ], + [ + "▁forbade", + -12.765921592712402 + ], + [ + "▁Classroom", + -12.766053199768066 + ], + [ + "▁Messiah", + -12.766058921813965 + ], + [ + "▁Sirius", + -12.766141891479492 + ], + [ + "▁Gaspar", + -12.766274452209473 + ], + [ + "▁Scientist", + -12.76628589630127 + ], + [ + "shock", + -12.76644229888916 + ], + [ + "▁treasurer", + -12.766505241394043 + ], + [ + "ARP", + -12.766526222229004 + ], + [ + "▁Wainwright", + -12.766886711120605 + ], + [ + "▁commune", + -12.766886711120605 + ], + [ + "▁dissertation", + -12.766886711120605 + ], + [ + "▁interconnected", + -12.766886711120605 + ], + [ + "▁nymph", + -12.766888618469238 + ], + [ + "▁drape", + -12.767159461975098 + ], + [ + "▁showrunner", + -12.767282485961914 + ], + [ + "▁hopeful", + -12.767321586608887 + ], + [ + "▁restrictive", + -12.767345428466797 + ], + [ + "▁ansyen", + -12.767425537109375 + ], + [ + "▁Malik", + -12.767766952514648 + ], + [ + "▁Andromeda", + -12.767908096313477 + ], + [ + "▁embarrassed", + -12.767908096313477 + ], + [ + "▁Schwarz", + -12.767909049987793 + ], + [ + "▁Nathaniel", + -12.767971992492676 + ], + [ + "▁Smile", + -12.768436431884766 + ], + [ + "▁acquainted", + -12.768930435180664 + ], + [ + "▁resurgence", + -12.768930435180664 + ], + [ + "▁Rabaul", + -12.76893138885498 + ], + [ + "▁aerodynamic", + -12.76893138885498 + ], + [ + "▁Kerrigan", + -12.768949508666992 + ], + [ + "▁Osborne", + -12.768953323364258 + ], + [ + "▁Bacteria", + -12.768954277038574 + ], + [ + "▁backlash", + -12.76904296875 + ], + [ + "66667", + -12.769572257995605 + ], + [ + "▁Burnett", + -12.769643783569336 + ], + [ + "▁approximation", + -12.769953727722168 + ], + [ + "▁Loyola", + -12.769954681396484 + ], + [ + "▁Speedway", + -12.7701416015625 + ], + [ + "▁Jensen", + -12.770211219787598 + ], + [ + "when", + -12.770410537719727 + ], + [ + "million", + -12.770560264587402 + ], + [ + "gyn", + -12.770864486694336 + ], + [ + "production", + -12.770952224731445 + ], + [ + "▁logarithm", + -12.770977973937988 + ], + [ + "▁Murdoch", + -12.770978927612305 + ], + [ + "▁crippled", + -12.770978927612305 + ], + [ + "▁obituary", + -12.770978927612305 + ], + [ + "▁redundant", + -12.770978927612305 + ], + [ + "▁epoch", + -12.77098274230957 + ], + [ + "aeus", + -12.771074295043945 + ], + [ + "▁noteworthy", + -12.77109432220459 + ], + [ + "▁Wilderness", + -12.77121353149414 + ], + [ + "▁Insect", + -12.771353721618652 + ], + [ + "eanu", + -12.771588325500488 + ], + [ + "▁continual", + -12.771956443786621 + ], + [ + "ر", + -12.772004127502441 + ], + [ + "▁Celebration", + -12.772004127502441 + ], + [ + "▁monologue", + -12.772039413452148 + ], + [ + "▁Pusan", + -12.772096633911133 + ], + [ + "▁minimise", + -12.77209758758545 + ], + [ + "▁knockout", + -12.772309303283691 + ], + [ + "▁graceful", + -12.772412300109863 + ], + [ + "▁sedimentary", + -12.772584915161133 + ], + [ + "▁confesses", + -12.772822380065918 + ], + [ + "ACT", + -12.7728853225708 + ], + [ + "▁Juvenile", + -12.773031234741211 + ], + [ + "▁rallied", + -12.773031234741211 + ], + [ + "▁Arjona", + -12.77405834197998 + ], + [ + "▁extravagant", + -12.77405834197998 + ], + [ + "▁gimmick", + -12.77405834197998 + ], + [ + "ω", + -12.774059295654297 + ], + [ + "▁Ezra", + -12.774066925048828 + ], + [ + "▁Revolt", + -12.77407455444336 + ], + [ + "▁Judas", + -12.774134635925293 + ], + [ + "▁Zeta", + -12.774640083312988 + ], + [ + "▁hinge", + -12.7750244140625 + ], + [ + "▁BMI", + -12.775084495544434 + ], + [ + "▁Bournemouth", + -12.775087356567383 + ], + [ + "▁preclude", + -12.775087356567383 + ], + [ + "▁pwofesè", + -12.775087356567383 + ], + [ + "▁transgender", + -12.775087356567383 + ], + [ + "▁Asylum", + -12.775093078613281 + ], + [ + "▁stingray", + -12.775157928466797 + ], + [ + "▁Collector", + -12.775707244873047 + ], + [ + "▁recharge", + -12.775897026062012 + ], + [ + "▁Maverick", + -12.776117324829102 + ], + [ + "▁arranging", + -12.776117324829102 + ], + [ + "▁galactic", + -12.776117324829102 + ], + [ + "▁Purdue", + -12.776143074035645 + ], + [ + "▁podcast", + -12.776165962219238 + ], + [ + "▁fingerprint", + -12.776169776916504 + ], + [ + "▁Programming", + -12.776365280151367 + ], + [ + "▁rotor", + -12.77648639678955 + ], + [ + "chloro", + -12.776564598083496 + ], + [ + "▁Huang", + -12.777101516723633 + ], + [ + "▁entrenched", + -12.777148246765137 + ], + [ + "▁incompatible", + -12.777148246765137 + ], + [ + "▁Sixteen", + -12.777149200439453 + ], + [ + "▁puncture", + -12.777149200439453 + ], + [ + "▁genomic", + -12.777151107788086 + ], + [ + "▁Silicon", + -12.777159690856934 + ], + [ + "▁biochemical", + -12.77722454071045 + ], + [ + "▁Weld", + -12.77725601196289 + ], + [ + "▁reckless", + -12.778270721435547 + ], + [ + "▁biopsy", + -12.778493881225586 + ], + [ + "▁signalling", + -12.778840065002441 + ], + [ + "ær", + -12.778857231140137 + ], + [ + "▁Babylonian", + -12.778913497924805 + ], + [ + "respond", + -12.779054641723633 + ], + [ + "▁Bullet", + -12.779143333435059 + ], + [ + "▁Euclid", + -12.779212951660156 + ], + [ + "▁Manufacture", + -12.779212951660156 + ], + [ + "▁Susquehanna", + -12.779212951660156 + ], + [ + "▁invaluable", + -12.779212951660156 + ], + [ + "▁deportation", + -12.779224395751953 + ], + [ + "▁avatar", + -12.779244422912598 + ], + [ + "▁Transfer", + -12.779629707336426 + ], + [ + "▁Release", + -12.779803276062012 + ], + [ + "index", + -12.779952049255371 + ], + [ + "β", + -12.780085563659668 + ], + [ + "▁geologic", + -12.780159950256348 + ], + [ + "▁Lebanese", + -12.780247688293457 + ], + [ + "▁depletion", + -12.780247688293457 + ], + [ + "▁Memoir", + -12.780251502990723 + ], + [ + "▁Falun", + -12.780256271362305 + ], + [ + "uzu", + -12.780322074890137 + ], + [ + "▁commencement", + -12.780497550964355 + ], + [ + "▁Absolute", + -12.781282424926758 + ], + [ + "▁embracing", + -12.781282424926758 + ], + [ + "▁nurture", + -12.781282424926758 + ], + [ + "▁Awareness", + -12.78128433227539 + ], + [ + "▁testament", + -12.781291007995605 + ], + [ + "▁Simeon", + -12.78142261505127 + ], + [ + "▁conscription", + -12.781466484069824 + ], + [ + "▁slain", + -12.781597137451172 + ], + [ + "▁hypothesized", + -12.781752586364746 + ], + [ + "▁anecdote", + -12.782319068908691 + ], + [ + "▁defunct", + -12.782319068908691 + ], + [ + "▁buffalo", + -12.782320022583008 + ], + [ + "▁petrel", + -12.782438278198242 + ], + [ + "▁Chatham", + -12.78256607055664 + ], + [ + "▁halves", + -12.78257942199707 + ], + [ + "▁sidewalk", + -12.782963752746582 + ], + [ + "▁Bernie", + -12.782981872558594 + ], + [ + "▁raccoon", + -12.783355712890625 + ], + [ + "▁café", + -12.783357620239258 + ], + [ + "▁yarn", + -12.783360481262207 + ], + [ + "pozisyon", + -12.783361434936523 + ], + [ + "▁Andersen", + -12.783369064331055 + ], + [ + "▁Watkins", + -12.783380508422852 + ], + [ + "▁pellet", + -12.783381462097168 + ], + [ + "Institut", + -12.783502578735352 + ], + [ + "▁Electoral", + -12.783940315246582 + ], + [ + "▁vaginal", + -12.784086227416992 + ], + [ + "▁constructive", + -12.784310340881348 + ], + [ + "▁Enrico", + -12.784395217895508 + ], + [ + "▁splendid", + -12.784395217895508 + ], + [ + "▁crucifix", + -12.784396171569824 + ], + [ + "▁Sufi", + -12.784423828125 + ], + [ + "▁Cream", + -12.784476280212402 + ], + [ + "▁Renault", + -12.784514427185059 + ], + [ + "▁revolutionaries", + -12.78453254699707 + ], + [ + "▁patrolled", + -12.784754753112793 + ], + [ + "▁VRS", + -12.78498649597168 + ], + [ + "▁termination", + -12.785099983215332 + ], + [ + "▁repository", + -12.785433769226074 + ], + [ + "▁Latvia", + -12.78548526763916 + ], + [ + "▁Oakley", + -12.786205291748047 + ], + [ + "▁backbone", + -12.78625774383545 + ], + [ + "▁Goebbels", + -12.78647518157959 + ], + [ + "▁grunge", + -12.786476135253906 + ], + [ + "▁Kaufman", + -12.786478042602539 + ], + [ + "▁Nightmare", + -12.786483764648438 + ], + [ + "▁Fluor", + -12.786548614501953 + ], + [ + "▁Naomi", + -12.786700248718262 + ], + [ + "▁Jolie", + -12.787027359008789 + ], + [ + "ième", + -12.787193298339844 + ], + [ + "haven", + -12.787447929382324 + ], + [ + "¥", + -12.787516593933105 + ], + [ + "▁decomposition", + -12.787517547607422 + ], + [ + "▁bisexual", + -12.787620544433594 + ], + [ + "▁Aleppo", + -12.788558959960938 + ], + [ + "▁Hannibal", + -12.788558959960938 + ], + [ + "▁stylized", + -12.788558959960938 + ], + [ + "▁Embr", + -12.788578987121582 + ], + [ + "▁commute", + -12.788607597351074 + ], + [ + "▁Daisy", + -12.788630485534668 + ], + [ + "▁blaze", + -12.788768768310547 + ], + [ + "▁Patent", + -12.788841247558594 + ], + [ + "▁fireworks", + -12.789095878601074 + ], + [ + "▁Achilles", + -12.789603233337402 + ], + [ + "▁scaling", + -12.789627075195312 + ], + [ + "▁scarcity", + -12.78964614868164 + ], + [ + "▁Burlington", + -12.789656639099121 + ], + [ + "▁Landscape", + -12.789693832397461 + ], + [ + "▁coronary", + -12.789753913879395 + ], + [ + "▁coexist", + -12.789904594421387 + ], + [ + "▁Moreau", + -12.790572166442871 + ], + [ + "support", + -12.79057788848877 + ], + [ + "▁Presentation", + -12.79063892364502 + ], + [ + "▁Athlete", + -12.790648460388184 + ], + [ + "▁automation", + -12.790648460388184 + ], + [ + "▁vacated", + -12.7906494140625 + ], + [ + "▁clump", + -12.790658950805664 + ], + [ + "embra", + -12.791114807128906 + ], + [ + "▁Wilkes", + -12.791440963745117 + ], + [ + "▁Certificate", + -12.791693687438965 + ], + [ + "▁Jubilee", + -12.791693687438965 + ], + [ + "▁Mackenzie", + -12.791693687438965 + ], + [ + "▁deficient", + -12.791693687438965 + ], + [ + "▁embarrassment", + -12.791693687438965 + ], + [ + "▁ghetto", + -12.791693687438965 + ], + [ + "▁Rudolph", + -12.792740821838379 + ], + [ + "▁resupply", + -12.792740821838379 + ], + [ + "▁undesirable", + -12.792740821838379 + ], + [ + "▁overcoming", + -12.79284954071045 + ], + [ + "▁Granada", + -12.792878150939941 + ], + [ + "▁cornerstone", + -12.793171882629395 + ], + [ + "▁fragrance", + -12.79378890991211 + ], + [ + "▁frightening", + -12.79378890991211 + ], + [ + "▁shingle", + -12.793791770935059 + ], + [ + "▁ponies", + -12.793802261352539 + ], + [ + "▁Crook", + -12.793819427490234 + ], + [ + "▁Shearer", + -12.793824195861816 + ], + [ + "bbling", + -12.794028282165527 + ], + [ + "▁Naruto", + -12.794222831726074 + ], + [ + "▁Monsieur", + -12.794838905334473 + ], + [ + "▁stairway", + -12.794838905334473 + ], + [ + "▁Narayan", + -12.794867515563965 + ], + [ + "▁Chev", + -12.794882774353027 + ], + [ + "▁Melody", + -12.79490852355957 + ], + [ + "history", + -12.794997215270996 + ], + [ + "▁Wife", + -12.795361518859863 + ], + [ + "▁arithmetic", + -12.795888900756836 + ], + [ + "▁bureaucracy", + -12.795888900756836 + ], + [ + "▁upbringing", + -12.795888900756836 + ], + [ + "▁insignia", + -12.795889854431152 + ], + [ + "▁lottery", + -12.795896530151367 + ], + [ + "▁dunes", + -12.795939445495605 + ], + [ + "▁Winthrop", + -12.795989990234375 + ], + [ + "▁Argon", + -12.79609489440918 + ], + [ + "▁bidding", + -12.796283721923828 + ], + [ + "atomic", + -12.796299934387207 + ], + [ + "▁capsized", + -12.796299934387207 + ], + [ + "▁encore", + -12.796380043029785 + ], + [ + "▁pact", + -12.796998023986816 + ], + [ + "pulse", + -12.79737377166748 + ], + [ + "▁Shakur", + -12.797412872314453 + ], + [ + "▁Gamma", + -12.797471046447754 + ], + [ + "▁disclose", + -12.797697067260742 + ], + [ + "▁Dunham", + -12.797748565673828 + ], + [ + "▁amplitude", + -12.797992706298828 + ], + [ + "▁aerobic", + -12.797993659973145 + ], + [ + "▁toujou", + -12.797996520996094 + ], + [ + "▁obverse", + -12.798068046569824 + ], + [ + "▁Tristan", + -12.798117637634277 + ], + [ + "▁rumour", + -12.79815673828125 + ], + [ + "▁Fellowship", + -12.798182487487793 + ], + [ + "▁meteorite", + -12.798315048217773 + ], + [ + "▁Martel", + -12.798410415649414 + ], + [ + "neurotransmitter", + -12.799046516418457 + ], + [ + "▁Gilmour", + -12.799046516418457 + ], + [ + "▁Monastery", + -12.799046516418457 + ], + [ + "▁yogurt", + -12.799046516418457 + ], + [ + "▁strife", + -12.79904842376709 + ], + [ + "▁agitation", + -12.799067497253418 + ], + [ + "▁rehearse", + -12.79906940460205 + ], + [ + "▁Countess", + -12.799151420593262 + ], + [ + "▁motte", + -12.79946231842041 + ], + [ + "▁diode", + -12.799664497375488 + ], + [ + "▁Suzanne", + -12.800102233886719 + ], + [ + "▁pornography", + -12.800102233886719 + ], + [ + "▁Estimates", + -12.800104141235352 + ], + [ + "▁floss", + -12.800148010253906 + ], + [ + "▁commentaries", + -12.800199508666992 + ], + [ + "▁Patrice", + -12.800214767456055 + ], + [ + "▁empath", + -12.80031681060791 + ], + [ + "ombre", + -12.800495147705078 + ], + [ + "▁Gig", + -12.800934791564941 + ], + [ + "▁Metz", + -12.80105972290039 + ], + [ + "▁Giuseppe", + -12.80115795135498 + ], + [ + "▁Revenue", + -12.80115795135498 + ], + [ + "▁resilient", + -12.80115795135498 + ], + [ + "▁unrealistic", + -12.80115795135498 + ], + [ + "▁constrained", + -12.801161766052246 + ], + [ + "▁Anything", + -12.80117416381836 + ], + [ + "▁italyen", + -12.80117416381836 + ], + [ + "▁inventive", + -12.801179885864258 + ], + [ + "▁Joanna", + -12.801275253295898 + ], + [ + "▁Léo", + -12.801583290100098 + ], + [ + "RES", + -12.801926612854004 + ], + [ + "Č", + -12.802214622497559 + ], + [ + "▁Sihanouk", + -12.802214622497559 + ], + [ + "▁obsessive", + -12.802214622497559 + ], + [ + "▁whatsoever", + -12.802214622497559 + ], + [ + "▁Intervention", + -12.802255630493164 + ], + [ + "▁Sumner", + -12.802560806274414 + ], + [ + "▁Yuri", + -12.80260944366455 + ], + [ + "▁pronounce", + -12.80319881439209 + ], + [ + "▁Amtrak", + -12.80327320098877 + ], + [ + "▁Especially", + -12.80327320098877 + ], + [ + "▁authoritative", + -12.80327320098877 + ], + [ + "▁Île", + -12.803274154663086 + ], + [ + "▁Goodbye", + -12.803275108337402 + ], + [ + "education", + -12.803287506103516 + ], + [ + "▁temptation", + -12.803335189819336 + ], + [ + "▁tracing", + -12.803418159484863 + ], + [ + "▁Boulder", + -12.803457260131836 + ], + [ + "▁Jaime", + -12.803465843200684 + ], + [ + "▁rebelled", + -12.803547859191895 + ], + [ + "▁cheerful", + -12.80356216430664 + ], + [ + "▁tramp", + -12.803576469421387 + ], + [ + "▁rooftop", + -12.803601264953613 + ], + [ + "▁Burnley", + -12.803804397583008 + ], + [ + "▁converse", + -12.803884506225586 + ], + [ + "▁Marceline", + -12.803990364074707 + ], + [ + "▁Karma", + -12.804108619689941 + ], + [ + "▁psyche", + -12.804176330566406 + ], + [ + "▁Britannia", + -12.804332733154297 + ], + [ + "▁proprietary", + -12.804332733154297 + ], + [ + "▁théâtre", + -12.804332733154297 + ], + [ + "▁Liszt", + -12.804333686828613 + ], + [ + "▁Northampton", + -12.804431915283203 + ], + [ + "▁Msye", + -12.804553031921387 + ], + [ + "▁Liao", + -12.804696083068848 + ], + [ + "▁deviate", + -12.80488109588623 + ], + [ + "▁palette", + -12.805143356323242 + ], + [ + "▁arsenal", + -12.80539321899414 + ], + [ + "▁endowment", + -12.805397033691406 + ], + [ + "▁regroup", + -12.805400848388672 + ], + [ + "▁Getty", + -12.805445671081543 + ], + [ + "▁charismatic", + -12.805449485778809 + ], + [ + "▁scribe", + -12.805990219116211 + ], + [ + "▁respectful", + -12.806425094604492 + ], + [ + "threatening", + -12.806432723999023 + ], + [ + "▁Chevalier", + -12.8064546585083 + ], + [ + "▁Platform", + -12.8064546585083 + ], + [ + "▁Ptolemy", + -12.8064546585083 + ], + [ + "▁festivities", + -12.8064546585083 + ], + [ + "▁milligrams", + -12.806455612182617 + ], + [ + "▁Position", + -12.806466102600098 + ], + [ + "▁Neck", + -12.806493759155273 + ], + [ + "▁mindfulness", + -12.806648254394531 + ], + [ + "▁Denny", + -12.806975364685059 + ], + [ + "▁Requiem", + -12.807517051696777 + ], + [ + "▁aboriginal", + -12.807517051696777 + ], + [ + "▁collapsing", + -12.807517051696777 + ], + [ + "▁curvature", + -12.807517051696777 + ], + [ + "▁subdivided", + -12.807517051696777 + ], + [ + "▁culmination", + -12.807518005371094 + ], + [ + "▁necklace", + -12.807518005371094 + ], + [ + "▁Adolph", + -12.807527542114258 + ], + [ + "▁rhetorical", + -12.807647705078125 + ], + [ + "▁Leaving", + -12.807662010192871 + ], + [ + "▁Grange", + -12.808439254760742 + ], + [ + "▁Abstract", + -12.808554649353027 + ], + [ + "▁geothermal", + -12.808581352233887 + ], + [ + "▁ivory", + -12.808586120605469 + ], + [ + "▁Opinion", + -12.808587074279785 + ], + [ + "▁interruption", + -12.808618545532227 + ], + [ + "hydro", + -12.808662414550781 + ], + [ + "▁vinegar", + -12.80867862701416 + ], + [ + "usually", + -12.808847427368164 + ], + [ + "▁seminal", + -12.808963775634766 + ], + [ + "▁Smallville", + -12.809066772460938 + ], + [ + "Comp", + -12.809110641479492 + ], + [ + "▁horseback", + -12.809270858764648 + ], + [ + "▁Orico", + -12.809508323669434 + ], + [ + "phase", + -12.809553146362305 + ], + [ + "▁picket", + -12.809595108032227 + ], + [ + "▁dissident", + -12.809645652770996 + ], + [ + "▁impractical", + -12.809645652770996 + ], + [ + "▁sedentary", + -12.809645652770996 + ], + [ + "▁stubborn", + -12.809659957885742 + ], + [ + "▁Resort", + -12.809676170349121 + ], + [ + "▁Beaumont", + -12.809723854064941 + ], + [ + "▁Gilligan", + -12.809767723083496 + ], + [ + "▁Bavarian", + -12.809925079345703 + ], + [ + "▁Phonographi", + -12.809967994689941 + ], + [ + "▁predate", + -12.810420036315918 + ], + [ + "purpose", + -12.810447692871094 + ], + [ + "▁Broadcast", + -12.810543060302734 + ], + [ + "▁Balance", + -12.810547828674316 + ], + [ + "▁Caliph", + -12.810578346252441 + ], + [ + "▁Vanderbilt", + -12.810711860656738 + ], + [ + "▁pancreatic", + -12.810711860656738 + ], + [ + "▁urgency", + -12.810711860656738 + ], + [ + "▁miniseries", + -12.810713768005371 + ], + [ + "▁Yardley", + -12.81108283996582 + ], + [ + "▁narrate", + -12.811368942260742 + ], + [ + "▁convent", + -12.811443328857422 + ], + [ + "▁Argyll", + -12.811779022216797 + ], + [ + "▁Believing", + -12.811779022216797 + ], + [ + "▁Defensive", + -12.811779022216797 + ], + [ + "▁ambiguity", + -12.811779022216797 + ], + [ + "▁fluctuate", + -12.811779022216797 + ], + [ + "▁Exposure", + -12.811781883239746 + ], + [ + "▁intolerance", + -12.811782836914062 + ], + [ + "cutaneous", + -12.811789512634277 + ], + [ + "▁besieg", + -12.81198787689209 + ], + [ + "▁palate", + -12.812070846557617 + ], + [ + "▁Freddy", + -12.812213897705078 + ], + [ + "▁chieftain", + -12.812359809875488 + ], + [ + "▁Imam", + -12.812396049499512 + ], + [ + "▁Richter", + -12.81246566772461 + ], + [ + "▁mitochondria", + -12.812498092651367 + ], + [ + "▁alienated", + -12.812508583068848 + ], + [ + "▁USGS", + -12.81253719329834 + ], + [ + "▁Prefecture", + -12.812847137451172 + ], + [ + "▁grievance", + -12.812847137451172 + ], + [ + "▁oxidize", + -12.812847137451172 + ], + [ + "▁chèf", + -12.812848091125488 + ], + [ + "▁Ebola", + -12.812853813171387 + ], + [ + "quarter", + -12.812859535217285 + ], + [ + "▁Viscount", + -12.812889099121094 + ], + [ + "QU", + -12.812939643859863 + ], + [ + "▁coupling", + -12.812955856323242 + ], + [ + "▁Marqu", + -12.813220024108887 + ], + [ + "▁tipped", + -12.813234329223633 + ], + [ + "▁Hilary", + -12.813297271728516 + ], + [ + "▁fabricated", + -12.813376426696777 + ], + [ + "▁posthumous", + -12.813913345336914 + ], + [ + "▁Properties", + -12.81391716003418 + ], + [ + "▁Darryl", + -12.813918113708496 + ], + [ + "▁sympathize", + -12.813918113708496 + ], + [ + "access", + -12.813960075378418 + ], + [ + "▁Burgess", + -12.814068794250488 + ], + [ + "▁lush", + -12.814583778381348 + ], + [ + "▁Loft", + -12.814840316772461 + ], + [ + "▁migrating", + -12.814988136291504 + ], + [ + "▁incubation", + -12.814994812011719 + ], + [ + "▁Pentagon", + -12.8150053024292 + ], + [ + "regulation", + -12.815089225769043 + ], + [ + "▁panned", + -12.815336227416992 + ], + [ + "▁Ryder", + -12.815375328063965 + ], + [ + "▁waking", + -12.815393447875977 + ], + [ + "▁vertebra", + -12.815715789794922 + ], + [ + "▁Bordeaux", + -12.816059112548828 + ], + [ + "▁Honolulu", + -12.816059112548828 + ], + [ + "▁Literacy", + -12.816059112548828 + ], + [ + "▁currencies", + -12.816059112548828 + ], + [ + "▁enforcing", + -12.816059112548828 + ], + [ + "▁menstrual", + -12.816059112548828 + ], + [ + "▁Coleridge", + -12.816132545471191 + ], + [ + "▁canonical", + -12.816641807556152 + ], + [ + "▁Explore", + -12.816760063171387 + ], + [ + "▁relapse", + -12.816819190979004 + ], + [ + "▁Dubrovnik", + -12.817132949829102 + ], + [ + "▁aircrew", + -12.817132949829102 + ], + [ + "▁bandwidth", + -12.817132949829102 + ], + [ + "▁cloverleaf", + -12.817132949829102 + ], + [ + "▁mujer", + -12.817137718200684 + ], + [ + "▁Pickett", + -12.817277908325195 + ], + [ + "osaurs", + -12.81749439239502 + ], + [ + "▁postpone", + -12.817867279052734 + ], + [ + "▁Moul", + -12.81804370880127 + ], + [ + "▁Hybrid", + -12.818206787109375 + ], + [ + "▁Physician", + -12.818206787109375 + ], + [ + "▁fizisyen", + -12.818206787109375 + ], + [ + "▁Determine", + -12.818207740783691 + ], + [ + "▁Weinberg", + -12.818242073059082 + ], + [ + "▁maladi", + -12.818313598632812 + ], + [ + "▁Examination", + -12.819281578063965 + ], + [ + "▁balcony", + -12.819281578063965 + ], + [ + "▁Patti", + -12.819343566894531 + ], + [ + "▁purification", + -12.819477081298828 + ], + [ + "▁Discussion", + -12.820061683654785 + ], + [ + "▁Junta", + -12.820294380187988 + ], + [ + "▁Juliette", + -12.820393562316895 + ], + [ + "▁proxy", + -12.820439338684082 + ], + [ + "▁Household", + -12.82046890258789 + ], + [ + "▁Macmillan", + -12.821435928344727 + ], + [ + "▁sequential", + -12.821435928344727 + ], + [ + "▁Maximilian", + -12.821436882019043 + ], + [ + "region", + -12.822026252746582 + ], + [ + "positive", + -12.822354316711426 + ], + [ + "▁Electricity", + -12.822477340698242 + ], + [ + "▁Cameroon", + -12.822514533996582 + ], + [ + "▁Exodus", + -12.822514533996582 + ], + [ + "▁brittle", + -12.822514533996582 + ], + [ + "▁mollusc", + -12.822514533996582 + ], + [ + "▁thorium", + -12.822514533996582 + ], + [ + "▁vengeance", + -12.822514533996582 + ], + [ + "▁myriad", + -12.822519302368164 + ], + [ + "▁Prescott", + -12.82252025604248 + ], + [ + "▁Autism", + -12.822525978088379 + ], + [ + "▁socioeconomic", + -12.822529792785645 + ], + [ + "▁Marianne", + -12.8225736618042 + ], + [ + "▁cuticle", + -12.822827339172363 + ], + [ + "▁maze", + -12.822882652282715 + ], + [ + "▁madness", + -12.823183059692383 + ], + [ + "▁shootout", + -12.823387145996094 + ], + [ + "▁Quincy", + -12.823596000671387 + ], + [ + "soluble", + -12.823662757873535 + ], + [ + "‐", + -12.823662757873535 + ], + [ + "▁molten", + -12.823725700378418 + ], + [ + "▁Galland", + -12.823995590209961 + ], + [ + "talled", + -12.824576377868652 + ], + [ + "▁Faulkner", + -12.824675559997559 + ], + [ + "▁Kolkata", + -12.824675559997559 + ], + [ + "▁criterion", + -12.824675559997559 + ], + [ + "▁qualifier", + -12.824675559997559 + ], + [ + "▁refrigerator", + -12.824675559997559 + ], + [ + "▁Filmfare", + -12.824677467346191 + ], + [ + "▁graphite", + -12.825167655944824 + ], + [ + "▁Heinz", + -12.825323104858398 + ], + [ + "י", + -12.82575798034668 + ], + [ + "▁Huffington", + -12.82575798034668 + ], + [ + "▁Joachim", + -12.82575798034668 + ], + [ + "▁Roddenberry", + -12.82575798034668 + ], + [ + "▁cushion", + -12.82575798034668 + ], + [ + "▁observance", + -12.82575798034668 + ], + [ + "▁preparatory", + -12.82575798034668 + ], + [ + "▁sprinkle", + -12.825770378112793 + ], + [ + "▁strait", + -12.825787544250488 + ], + [ + "▁Accept", + -12.825797080993652 + ], + [ + "setting", + -12.825992584228516 + ], + [ + "▁Beirut", + -12.826841354370117 + ], + [ + "▁McCormick", + -12.826841354370117 + ], + [ + "▁judging", + -12.826841354370117 + ], + [ + "▁revolving", + -12.826841354370117 + ], + [ + "▁foreground", + -12.826887130737305 + ], + [ + "▁pinpoint", + -12.826992988586426 + ], + [ + "▁quell", + -12.827366828918457 + ], + [ + "▁Divide", + -12.827557563781738 + ], + [ + "▁Worst", + -12.827729225158691 + ], + [ + "▁unearthed", + -12.827925682067871 + ], + [ + "▁savanna", + -12.827927589416504 + ], + [ + "▁superseded", + -12.827927589416504 + ], + [ + "terdisciplinary", + -12.82792854309082 + ], + [ + "▁External", + -12.827929496765137 + ], + [ + "▁Gibbons", + -12.828014373779297 + ], + [ + "AIDS", + -12.828056335449219 + ], + [ + "▁Expect", + -12.82822036743164 + ], + [ + "▁Exploration", + -12.829011917114258 + ], + [ + "▁annoyed", + -12.829011917114258 + ], + [ + "▁estimating", + -12.829011917114258 + ], + [ + "▁vocational", + -12.829011917114258 + ], + [ + "▁reagent", + -12.829017639160156 + ], + [ + "sphere", + -12.829019546508789 + ], + [ + "▁Frozen", + -12.829046249389648 + ], + [ + "▁(2013)", + -12.829118728637695 + ], + [ + "▁Sofia", + -12.82922649383545 + ], + [ + "▁Hassan", + -12.82950210571289 + ], + [ + "▁Platoon", + -12.829673767089844 + ], + [ + "enfant", + -12.829874992370605 + ], + [ + "▁Aubrey", + -12.830099105834961 + ], + [ + "▁Integrated", + -12.830099105834961 + ], + [ + "▁educating", + -12.830099105834961 + ], + [ + "▁stipulated", + -12.830099105834961 + ], + [ + "▁sèlman", + -12.830100059509277 + ], + [ + "▁Brennan", + -12.830142974853516 + ], + [ + "▁impersonat", + -12.830169677734375 + ], + [ + "▁Trustees", + -12.830694198608398 + ], + [ + "▁colonize", + -12.83079719543457 + ], + [ + "▁conceive", + -12.830978393554688 + ], + [ + "▁Hezbollah", + -12.83118724822998 + ], + [ + "▁Rodrigo", + -12.83118724822998 + ], + [ + "▁Sunshine", + -12.83118724822998 + ], + [ + "▁accredited", + -12.83118724822998 + ], + [ + "▁inaccessible", + -12.831188201904297 + ], + [ + "▁Cushing", + -12.831193923950195 + ], + [ + "▁Hearst", + -12.831220626831055 + ], + [ + "▁cocktail", + -12.831225395202637 + ], + [ + "▁Beckham", + -12.831497192382812 + ], + [ + "▁expire", + -12.831890106201172 + ], + [ + "▁brutality", + -12.831899642944336 + ], + [ + "▁Appendix", + -12.832276344299316 + ], + [ + "▁Phyllis", + -12.832276344299316 + ], + [ + "▁Tribunal", + -12.832276344299316 + ], + [ + "▁refurbished", + -12.832276344299316 + ], + [ + "▁suspense", + -12.832276344299316 + ], + [ + "▁Stamford", + -12.832277297973633 + ], + [ + "▁Herrera", + -12.832281112670898 + ], + [ + "▁tropics", + -12.832293510437012 + ], + [ + "▁worthwhile", + -12.832313537597656 + ], + [ + "family", + -12.832324028015137 + ], + [ + "▁Console", + -12.832332611083984 + ], + [ + "▁Jewel", + -12.832629203796387 + ], + [ + "electro", + -12.832778930664062 + ], + [ + "▁Chevrolet", + -12.833366394042969 + ], + [ + "▁Springsteen", + -12.833366394042969 + ], + [ + "▁Townshend", + -12.833366394042969 + ], + [ + "▁speculative", + -12.833366394042969 + ], + [ + "▁bounty", + -12.833367347717285 + ], + [ + "▁elusive", + -12.833367347717285 + ], + [ + "▁Cinque", + -12.8333740234375 + ], + [ + "shark", + -12.833419799804688 + ], + [ + "▁underparts", + -12.833439826965332 + ], + [ + "▁firepower", + -12.833932876586914 + ], + [ + "1000", + -12.834001541137695 + ], + [ + "▁Panther", + -12.834099769592285 + ], + [ + "2005", + -12.834217071533203 + ], + [ + "EAR", + -12.834455490112305 + ], + [ + "▁Assistance", + -12.834458351135254 + ], + [ + "▁Mendoza", + -12.834458351135254 + ], + [ + "▁pibliye", + -12.834458351135254 + ], + [ + "▁unopposed", + -12.834458351135254 + ], + [ + "▁Weinstein", + -12.83445930480957 + ], + [ + "▁cyclonic", + -12.834506034851074 + ], + [ + "▁Sparrow", + -12.834551811218262 + ], + [ + "▁noticeably", + -12.834807395935059 + ], + [ + "kòz", + -12.835320472717285 + ], + [ + "▁Navajo", + -12.835551261901855 + ], + [ + "▁psoriasis", + -12.835551261901855 + ], + [ + "▁Epidemi", + -12.835594177246094 + ], + [ + "▁clown", + -12.835670471191406 + ], + [ + "Univers", + -12.835721969604492 + ], + [ + "▁Chou", + -12.835803031921387 + ], + [ + "ggling", + -12.836417198181152 + ], + [ + "▁Messenger", + -12.836645126342773 + ], + [ + "▁PTSD", + -12.836645126342773 + ], + [ + "▁contagious", + -12.836645126342773 + ], + [ + "▁hormonal", + -12.836645126342773 + ], + [ + "▁Ganesha", + -12.83664608001709 + ], + [ + "▁Ramayana", + -12.83664608001709 + ], + [ + "▁blister", + -12.836657524108887 + ], + [ + "photo", + -12.836776733398438 + ], + [ + "▁annex", + -12.836812019348145 + ], + [ + "▁Belmont", + -12.836861610412598 + ], + [ + "▁Digest", + -12.837126731872559 + ], + [ + "▁Ballet", + -12.837549209594727 + ], + [ + "führer", + -12.837740898132324 + ], + [ + "▁Mosquito", + -12.837740898132324 + ], + [ + "▁prerogative", + -12.837740898132324 + ], + [ + "▁reorganization", + -12.837740898132324 + ], + [ + "▁vaccinated", + -12.837740898132324 + ], + [ + "▁Details", + -12.8377685546875 + ], + [ + "▁prioritize", + -12.83785343170166 + ], + [ + "▁Sharma", + -12.83807373046875 + ], + [ + "▁Lehman", + -12.838216781616211 + ], + [ + "▁Trois", + -12.838334083557129 + ], + [ + "▁err", + -12.83835506439209 + ], + [ + "▁Patch", + -12.838708877563477 + ], + [ + "▁Gonzalez", + -12.838836669921875 + ], + [ + "▁reliably", + -12.838837623596191 + ], + [ + "▁shrew", + -12.838838577270508 + ], + [ + "▁variance", + -12.838839530944824 + ], + [ + "▁Tillman", + -12.838851928710938 + ], + [ + "▁bootleg", + -12.838942527770996 + ], + [ + "▁dependency", + -12.838985443115234 + ], + [ + "▁hype", + -12.839235305786133 + ], + [ + "Game", + -12.839472770690918 + ], + [ + "▁Mathematical", + -12.839934349060059 + ], + [ + "▁smuggling", + -12.839934349060059 + ], + [ + "▁tranquil", + -12.839934349060059 + ], + [ + "▁adherents", + -12.839937210083008 + ], + [ + "▁shortstop", + -12.83997631072998 + ], + [ + "issue", + -12.84005355834961 + ], + [ + "▁Affair", + -12.840409278869629 + ], + [ + "▁condemnation", + -12.84061050415039 + ], + [ + "▁Pharaoh", + -12.841033935546875 + ], + [ + "▁pinfall", + -12.841167449951172 + ], + [ + "▁Mizik", + -12.841172218322754 + ], + [ + "▁Zappa", + -12.841174125671387 + ], + [ + "▁subgroup", + -12.84127426147461 + ], + [ + "▁Elector", + -12.841517448425293 + ], + [ + "▁viability", + -12.841638565063477 + ], + [ + "northernmost", + -12.842100143432617 + ], + [ + "▁Villeneuve", + -12.842133522033691 + ], + [ + "▁Hotspur", + -12.842142105102539 + ], + [ + "▁Typical", + -12.84216022491455 + ], + [ + "trix", + -12.842508316040039 + ], + [ + "▁petty", + -12.8430814743042 + ], + [ + "ý", + -12.84323501586914 + ], + [ + "▁Mendelssohn", + -12.84323501586914 + ], + [ + "▁constipation", + -12.84323501586914 + ], + [ + "▁sensible", + -12.843238830566406 + ], + [ + "▁Namibia", + -12.843240737915039 + ], + [ + "ström", + -12.843243598937988 + ], + [ + "▁Nikki", + -12.843550682067871 + ], + [ + "▁Acapulco", + -12.844337463378906 + ], + [ + "▁undisclosed", + -12.844337463378906 + ], + [ + "▁Eternal", + -12.844347953796387 + ], + [ + "▁crank", + -12.844381332397461 + ], + [ + "▁Zika", + -12.844489097595215 + ], + [ + "▁Darlington", + -12.844611167907715 + ], + [ + "bush", + -12.844670295715332 + ], + [ + "▁Roz", + -12.845194816589355 + ], + [ + "▁rude", + -12.845205307006836 + ], + [ + "ornith", + -12.845232009887695 + ], + [ + "ệ", + -12.845441818237305 + ], + [ + "▁Syndicate", + -12.845441818237305 + ], + [ + "▁angrily", + -12.845441818237305 + ], + [ + "▁cataract", + -12.845441818237305 + ], + [ + "▁Worksheet", + -12.845481872558594 + ], + [ + "▁apostle", + -12.845566749572754 + ], + [ + "▁disruptive", + -12.845930099487305 + ], + [ + "design", + -12.846470832824707 + ], + [ + "▁veterinary", + -12.846546173095703 + ], + [ + "▁Stratford", + -12.84654712677002 + ], + [ + "▁Dewey", + -12.846551895141602 + ], + [ + "▁womb", + -12.846899032592773 + ], + [ + "▁Curse", + -12.847015380859375 + ], + [ + "▁volley", + -12.847587585449219 + ], + [ + "▁Goddard", + -12.847662925720215 + ], + [ + "▁inference", + -12.847672462463379 + ], + [ + "▁goodbye", + -12.847686767578125 + ], + [ + "▁beacon", + -12.847774505615234 + ], + [ + "population", + -12.847957611083984 + ], + [ + "▁Andhra", + -12.848127365112305 + ], + [ + "▁Kriegsmarine", + -12.848759651184082 + ], + [ + "▁pwodiksyon", + -12.848759651184082 + ], + [ + "・", + -12.848759651184082 + ], + [ + "▁collagen", + -12.848760604858398 + ], + [ + "▁measles", + -12.848760604858398 + ], + [ + "▁Toulon", + -12.848764419555664 + ], + [ + "▁Deacon", + -12.848785400390625 + ], + [ + "▁Ledger", + -12.848787307739258 + ], + [ + "▁marred", + -12.849160194396973 + ], + [ + "▁Biscay", + -12.849869728088379 + ], + [ + "▁intervening", + -12.849871635437012 + ], + [ + "▁Snap", + -12.849888801574707 + ], + [ + "▁inorganic", + -12.849906921386719 + ], + [ + "▁whereabouts", + -12.849906921386719 + ], + [ + "Henri", + -12.850120544433594 + ], + [ + "▁colourful", + -12.850882530212402 + ], + [ + "▁Djokovic", + -12.85097885131836 + ], + [ + "▁Literati", + -12.85097885131836 + ], + [ + "▁apocalyptic", + -12.85097885131836 + ], + [ + "▁hydroxide", + -12.85097885131836 + ], + [ + "▁hottest", + -12.851250648498535 + ], + [ + "▁endanger", + -12.85208797454834 + ], + [ + "▁Helsinki", + -12.852089881896973 + ], + [ + "▁Repiblik", + -12.852089881896973 + ], + [ + "▁nutritious", + -12.852089881896973 + ], + [ + "▁optimum", + -12.852089881896973 + ], + [ + "▁pedestal", + -12.852089881896973 + ], + [ + "▁wiring", + -12.85210132598877 + ], + [ + "▁Abuse", + -12.852168083190918 + ], + [ + "▁Poems", + -12.852181434631348 + ], + [ + "▁yolk", + -12.852252006530762 + ], + [ + "▁Whitlam", + -12.852252960205078 + ], + [ + "▁Spiritual", + -12.852334976196289 + ], + [ + "▁Brahman", + -12.852668762207031 + ], + [ + "▁Immigration", + -12.853201866149902 + ], + [ + "▁Relationship", + -12.853201866149902 + ], + [ + "▁parodied", + -12.853201866149902 + ], + [ + "▁sulfide", + -12.853201866149902 + ], + [ + "▁Maintain", + -12.853472709655762 + ], + [ + "torrential", + -12.85347843170166 + ], + [ + "▁Pepsi", + -12.853631019592285 + ], + [ + "▁Obviously", + -12.854315757751465 + ], + [ + "▁proficiency", + -12.854315757751465 + ], + [ + "▁Nellie", + -12.854321479797363 + ], + [ + "▁Athena", + -12.854392051696777 + ], + [ + "▁ripped", + -12.854430198669434 + ], + [ + "π", + -12.85455322265625 + ], + [ + "▁informative", + -12.85484790802002 + ], + [ + "▁unprotected", + -12.855430603027344 + ], + [ + "▁cessation", + -12.85543155670166 + ], + [ + "▁prowess", + -12.85543155670166 + ], + [ + "▁xenon", + -12.855433464050293 + ], + [ + "▁carcinogen", + -12.855456352233887 + ], + [ + "▁Hammerstein", + -12.855473518371582 + ], + [ + "▁lantern", + -12.855537414550781 + ], + [ + "punct", + -12.855570793151855 + ], + [ + "communication", + -12.856302261352539 + ], + [ + "▁Bitcoin", + -12.856546401977539 + ], + [ + "▁abbreviation", + -12.856546401977539 + ], + [ + "▁pervasive", + -12.856546401977539 + ], + [ + "▁serotonin", + -12.856546401977539 + ], + [ + "▁Dixie", + -12.856549263000488 + ], + [ + "▁tyrant", + -12.856553077697754 + ], + [ + "▁kilowatt", + -12.856554985046387 + ], + [ + "▁Putnam", + -12.85660171508789 + ], + [ + "▁Strom", + -12.85663890838623 + ], + [ + "▁Bravo", + -12.857465744018555 + ], + [ + "azine", + -12.857583999633789 + ], + [ + "▁Pasadena", + -12.857664108276367 + ], + [ + "▁Tyrannosaurus", + -12.857664108276367 + ], + [ + "▁exploding", + -12.857664108276367 + ], + [ + "▁fledgling", + -12.857664108276367 + ], + [ + "▁illustrating", + -12.857664108276367 + ], + [ + "▁neutrino", + -12.857664108276367 + ], + [ + "▁irrational", + -12.857665061950684 + ], + [ + "▁Goebel", + -12.857667922973633 + ], + [ + "▁Anchor", + -12.857687950134277 + ], + [ + "▁sidelined", + -12.85769271850586 + ], + [ + "▁grading", + -12.857726097106934 + ], + [ + "Ō", + -12.858781814575195 + ], + [ + "▁sauropod", + -12.858784675598145 + ], + [ + "▁montage", + -12.858793258666992 + ], + [ + "▁Yeats", + -12.85880184173584 + ], + [ + "▁shotgun", + -12.859180450439453 + ], + [ + "▁Tradition", + -12.859196662902832 + ], + [ + "833333", + -12.85937786102295 + ], + [ + "▁_____", + -12.85954761505127 + ], + [ + "▁doubtful", + -12.859853744506836 + ], + [ + "▁Restaurant", + -12.859902381896973 + ], + [ + "▁reclassified", + -12.859902381896973 + ], + [ + "▁unaffected", + -12.859902381896973 + ], + [ + "▁Mustaine", + -12.859903335571289 + ], + [ + "▁deadliest", + -12.859903335571289 + ], + [ + "▁apologise", + -12.859905242919922 + ], + [ + "▁Hammersmith", + -12.859922409057617 + ], + [ + "▁Dockyard", + -12.85992431640625 + ], + [ + "▁Tali", + -12.860198974609375 + ], + [ + "(4)", + -12.860355377197266 + ], + [ + "▁Yosemite", + -12.86102294921875 + ], + [ + "▁figurine", + -12.86102294921875 + ], + [ + "▁invariably", + -12.861024856567383 + ], + [ + "▁gorilla", + -12.8610258102417 + ], + [ + "▁locating", + -12.861026763916016 + ], + [ + "▁surpass", + -12.861144065856934 + ], + [ + "▁Peterborough", + -12.861337661743164 + ], + [ + "▁supervise", + -12.861794471740723 + ], + [ + "▁Codex", + -12.862038612365723 + ], + [ + "▁Clément", + -12.86214542388916 + ], + [ + "▁Ideas", + -12.86215877532959 + ], + [ + "▁drumming", + -12.86232852935791 + ], + [ + "▁blueprint", + -12.862372398376465 + ], + [ + "ADT", + -12.8624267578125 + ], + [ + "▁confine", + -12.862770080566406 + ], + [ + "cancer", + -12.86318588256836 + ], + [ + "▁Mamluk", + -12.863268852233887 + ], + [ + "▁caliph", + -12.863272666931152 + ], + [ + "▁Jessie", + -12.863471984863281 + ], + [ + "▁McCull", + -12.863495826721191 + ], + [ + "saturated", + -12.86356258392334 + ], + [ + "▁outweigh", + -12.86373519897461 + ], + [ + "▁UFO", + -12.86410903930664 + ], + [ + "▁chimpanzee", + -12.864394187927246 + ], + [ + "▁phenotype", + -12.864394187927246 + ], + [ + "▁Enhance", + -12.864398002624512 + ], + [ + "▁crescent", + -12.864492416381836 + ], + [ + "▁Catalan", + -12.864614486694336 + ], + [ + "▁monograph", + -12.864864349365234 + ], + [ + "ceps", + -12.8653564453125 + ], + [ + "black", + -12.865469932556152 + ], + [ + "▁gossip", + -12.8655366897583 + ], + [ + "▁bedrock", + -12.86563491821289 + ], + [ + "program", + -12.86616039276123 + ], + [ + "▁hurried", + -12.866647720336914 + ], + [ + "▁recurrence", + -12.866647720336914 + ], + [ + "▁Fifty", + -12.866649627685547 + ], + [ + "▁Bourbon", + -12.866711616516113 + ], + [ + "material", + -12.866965293884277 + ], + [ + "▁Expression", + -12.867484092712402 + ], + [ + "▁McLean", + -12.867775917053223 + ], + [ + "▁Middlesbrough", + -12.867775917053223 + ], + [ + "▁terrifying", + -12.867775917053223 + ], + [ + "▁exquisite", + -12.867776870727539 + ], + [ + "▁impetus", + -12.867776870727539 + ], + [ + "▁rigging", + -12.86789321899414 + ], + [ + "▁equatorial", + -12.86790943145752 + ], + [ + "▁taunt", + -12.868349075317383 + ], + [ + "▁detox", + -12.868392944335938 + ], + [ + "▁Amherst", + -12.868906021118164 + ], + [ + "▁McNamara", + -12.868906021118164 + ], + [ + "▁equestrian", + -12.868906021118164 + ], + [ + "▁gigantic", + -12.868906021118164 + ], + [ + "▁perpetuate", + -12.868906021118164 + ], + [ + "▁cobalt", + -12.868916511535645 + ], + [ + "▁initiating", + -12.868916511535645 + ], + [ + "▁tread", + -12.869112014770508 + ], + [ + "▁Yuki", + -12.869145393371582 + ], + [ + "▁MacLeod", + -12.870037078857422 + ], + [ + "▁tangible", + -12.870038032531738 + ], + [ + "▁indicted", + -12.870185852050781 + ], + [ + "▁pumpkin", + -12.870199203491211 + ], + [ + "▁Tonga", + -12.870329856872559 + ], + [ + "▁rampant", + -12.870671272277832 + ], + [ + "▁petrol", + -12.870786666870117 + ], + [ + "disqualification", + -12.871170043945312 + ], + [ + "▁aggregation", + -12.871170043945312 + ], + [ + "▁impoverished", + -12.871170043945312 + ], + [ + "++", + -12.871262550354004 + ], + [ + "▁Firm", + -12.871308326721191 + ], + [ + "▁verification", + -12.871367454528809 + ], + [ + "▁Diefenbaker", + -12.87230396270752 + ], + [ + "▁adhesive", + -12.87230396270752 + ], + [ + "▁Ortiz", + -12.872306823730469 + ], + [ + "▁Lumpur", + -12.872359275817871 + ], + [ + "▁SAFE", + -12.872363090515137 + ], + [ + "▁Sherwood", + -12.872454643249512 + ], + [ + "▁Ernie", + -12.872507095336914 + ], + [ + "▁complimentary", + -12.872507095336914 + ], + [ + "▁Paige", + -12.872572898864746 + ], + [ + "▁Alternate", + -12.873438835144043 + ], + [ + "▁Welfare", + -12.873438835144043 + ], + [ + "▁demolish", + -12.873699188232422 + ], + [ + "▁firefight", + -12.87370491027832 + ], + [ + "▁rations", + -12.873961448669434 + ], + [ + "▁exponent", + -12.874480247497559 + ], + [ + "▁Gruppe", + -12.874558448791504 + ], + [ + "▁poignant", + -12.874574661254883 + ], + [ + "▁Glorious", + -12.8745756149292 + ], + [ + "▁octagonal", + -12.8745756149292 + ], + [ + "▁restructuring", + -12.8745756149292 + ], + [ + "▁tertiary", + -12.8745756149292 + ], + [ + "▁uncredited", + -12.8745756149292 + ], + [ + "ος", + -12.874590873718262 + ], + [ + "▁Christchurch", + -12.874611854553223 + ], + [ + "▁sinister", + -12.874733924865723 + ], + [ + "▁Diesel", + -12.874832153320312 + ], + [ + "▁Surf", + -12.874970436096191 + ], + [ + "▁espionage", + -12.875712394714355 + ], + [ + "▁suicidal", + -12.875712394714355 + ], + [ + "▁tackling", + -12.875712394714355 + ], + [ + "♯", + -12.875712394714355 + ], + [ + "▁Waffen", + -12.875714302062988 + ], + [ + "▁miserable", + -12.875717163085938 + ], + [ + "▁Bentley", + -12.87572193145752 + ], + [ + "▁precedence", + -12.875734329223633 + ], + [ + "▁slump", + -12.875741958618164 + ], + [ + "hedral", + -12.875986099243164 + ], + [ + "Script", + -12.87602424621582 + ], + [ + "▁muddy", + -12.876081466674805 + ], + [ + "▁Fidel", + -12.876385688781738 + ], + [ + "▁acronym", + -12.876852035522461 + ], + [ + "▁caravan", + -12.87685775756836 + ], + [ + "▁Kyoto", + -12.876886367797852 + ], + [ + "while", + -12.877116203308105 + ], + [ + "▁fetal", + -12.877303123474121 + ], + [ + "▁Transition", + -12.8778076171875 + ], + [ + "▁contractual", + -12.877861022949219 + ], + [ + "▁Maintenance", + -12.877991676330566 + ], + [ + "▁carnival", + -12.877991676330566 + ], + [ + "▁interfering", + -12.877994537353516 + ], + [ + "▁Cavalier", + -12.878010749816895 + ], + [ + "▁inflated", + -12.878067016601562 + ], + [ + "approx", + -12.878116607666016 + ], + [ + "▁Friendship", + -12.878129005432129 + ], + [ + "▁Israelites", + -12.878642082214355 + ], + [ + "▁strata", + -12.87871265411377 + ], + [ + "▁60%", + -12.87908935546875 + ], + [ + "▁Comparison", + -12.879133224487305 + ], + [ + "▁foreshadow", + -12.879133224487305 + ], + [ + "▁graffiti", + -12.879133224487305 + ], + [ + "▁Armistice", + -12.879134178161621 + ], + [ + "▁sprawl", + -12.879136085510254 + ], + [ + "▁MHz", + -12.879137992858887 + ], + [ + "▁Geography", + -12.87941837310791 + ], + [ + "▁Rockstar", + -12.879478454589844 + ], + [ + "▁Barrichello", + -12.880276679992676 + ], + [ + "▁Orioles", + -12.880276679992676 + ], + [ + "▁quarantine", + -12.880276679992676 + ], + [ + "ル", + -12.880277633666992 + ], + [ + "▁Remote", + -12.880326271057129 + ], + [ + "▁meteorological", + -12.88037109375 + ], + [ + "ILL", + -12.880444526672363 + ], + [ + "▁Sargent", + -12.880467414855957 + ], + [ + "▁Hydra", + -12.880502700805664 + ], + [ + "General", + -12.880677223205566 + ], + [ + "▁Croix", + -12.880704879760742 + ], + [ + "▁radiate", + -12.88074779510498 + ], + [ + "▁collier", + -12.880802154541016 + ], + [ + "▁capacitor", + -12.881420135498047 + ], + [ + "▁miraculous", + -12.881420135498047 + ], + [ + "▁whisper", + -12.881420135498047 + ], + [ + "▁forerunner", + -12.881433486938477 + ], + [ + "▁curricula", + -12.881539344787598 + ], + [ + "▁graze", + -12.881756782531738 + ], + [ + "children", + -12.881884574890137 + ], + [ + "▁avenge", + -12.881967544555664 + ], + [ + "▁Remove", + -12.881999015808105 + ], + [ + "ković", + -12.882110595703125 + ], + [ + "▁shave", + -12.882390975952148 + ], + [ + "▁Maharashtra", + -12.882566452026367 + ], + [ + "▁Myanmar", + -12.882566452026367 + ], + [ + "▁SummerSlam", + -12.882566452026367 + ], + [ + "▁Surgeon", + -12.882567405700684 + ], + [ + "▁Broncos", + -12.882573127746582 + ], + [ + "▁Wreck", + -12.882588386535645 + ], + [ + "▁zoologist", + -12.882614135742188 + ], + [ + "▁Guill", + -12.882755279541016 + ], + [ + "▁happier", + -12.883712768554688 + ], + [ + "▁Constable", + -12.8837308883667 + ], + [ + "▁Alexios", + -12.883735656738281 + ], + [ + "▁emancipation", + -12.88376522064209 + ], + [ + "▁calves", + -12.883965492248535 + ], + [ + "▁Megade", + -12.884272575378418 + ], + [ + "▁resonate", + -12.884373664855957 + ], + [ + "▁Moravia", + -12.884400367736816 + ], + [ + "▁neutralize", + -12.884581565856934 + ], + [ + "▁Territories", + -12.88486099243164 + ], + [ + "▁utmost", + -12.884862899780273 + ], + [ + "▁Terminator", + -12.884875297546387 + ], + [ + "▁CMLL", + -12.884879112243652 + ], + [ + "▁nasty", + -12.884886741638184 + ], + [ + "▁Chakra", + -12.885071754455566 + ], + [ + "▁refitted", + -12.885180473327637 + ], + [ + "▁Brenda", + -12.885189056396484 + ], + [ + "▁Painting", + -12.885470390319824 + ], + [ + "▁Axel", + -12.885595321655273 + ], + [ + "▁randomized", + -12.885599136352539 + ], + [ + "▁Carnival", + -12.88601016998291 + ], + [ + "▁apartheid", + -12.88601016998291 + ], + [ + "▁Donovan", + -12.886012077331543 + ], + [ + "▁resented", + -12.886012077331543 + ], + [ + "▁Adrien", + -12.886417388916016 + ], + [ + "kumar", + -12.886758804321289 + ], + [ + "▁Château", + -12.887161254882812 + ], + [ + "▁Nuremberg", + -12.887161254882812 + ], + [ + "▁dynasties", + -12.887161254882812 + ], + [ + "▁laundry", + -12.887161254882812 + ], + [ + "▁stalemate", + -12.887161254882812 + ], + [ + "▁Celsius", + -12.887163162231445 + ], + [ + "▁endowed", + -12.887182235717773 + ], + [ + "▁persistence", + -12.887373924255371 + ], + [ + "▁Update", + -12.888143539428711 + ], + [ + "▁Herodotus", + -12.888313293457031 + ], + [ + "▁miscarriage", + -12.888313293457031 + ], + [ + "▁oscillation", + -12.888313293457031 + ], + [ + "▁translucent", + -12.888313293457031 + ], + [ + "▁madanm", + -12.888315200805664 + ], + [ + "▁Convoy", + -12.88831615447998 + ], + [ + "▁concise", + -12.888317108154297 + ], + [ + "▁meningitis", + -12.888320922851562 + ], + [ + "▁allotted", + -12.888324737548828 + ], + [ + "▁aprè", + -12.888591766357422 + ], + [ + "▁Domain", + -12.888906478881836 + ], + [ + "▁Ethel", + -12.889198303222656 + ], + [ + "Khánh", + -12.889466285705566 + ], + [ + "▁Tobacco", + -12.889466285705566 + ], + [ + "▁tabloid", + -12.889466285705566 + ], + [ + "▁intruder", + -12.889480590820312 + ], + [ + "▁Whitehall", + -12.88991641998291 + ], + [ + "▁analyse", + -12.89050579071045 + ], + [ + "▁Cornelius", + -12.890621185302734 + ], + [ + "▁Hélène", + -12.890621185302734 + ], + [ + "▁Immortal", + -12.890621185302734 + ], + [ + "▁Pulitzer", + -12.890621185302734 + ], + [ + "▁barrister", + -12.890621185302734 + ], + [ + "▁rectangle", + -12.890621185302734 + ], + [ + "▁Whistle", + -12.890630722045898 + ], + [ + "▁artifact", + -12.89082145690918 + ], + [ + "▁IoT", + -12.89083194732666 + ], + [ + "▁Promise", + -12.891221046447754 + ], + [ + "▁eyesight", + -12.891261100769043 + ], + [ + "▁creditors", + -12.891441345214844 + ], + [ + "▁Memories", + -12.891777038574219 + ], + [ + "▁caucus", + -12.891777038574219 + ], + [ + "▁multiplied", + -12.891777038574219 + ], + [ + "φ", + -12.891777992248535 + ], + [ + "▁antelope", + -12.891779899597168 + ], + [ + "▁skepticism", + -12.891876220703125 + ], + [ + "▁analogue", + -12.891880989074707 + ], + [ + "▁Citation", + -12.89198112487793 + ], + [ + "▁revise", + -12.892326354980469 + ], + [ + "▁Weekend", + -12.892337799072266 + ], + [ + "ferential", + -12.8927001953125 + ], + [ + "narky", + -12.892903327941895 + ], + [ + "▁Gravity", + -12.892934799194336 + ], + [ + "▁eclectic", + -12.892934799194336 + ], + [ + "▁Infinity", + -12.892940521240234 + ], + [ + "▁Oasis", + -12.892960548400879 + ], + [ + "▁(2000)", + -12.893045425415039 + ], + [ + "▁Maratha", + -12.893233299255371 + ], + [ + "▁Filip", + -12.893383979797363 + ], + [ + "CHA", + -12.893768310546875 + ], + [ + "▁ekspresyon", + -12.89409351348877 + ], + [ + "▁interstellar", + -12.89409351348877 + ], + [ + "▁trophies", + -12.89409351348877 + ], + [ + "▁Botanical", + -12.894094467163086 + ], + [ + "▁Zimmerman", + -12.894097328186035 + ], + [ + "▁stereotypical", + -12.894103050231934 + ], + [ + "▁Staffordshire", + -12.894129753112793 + ], + [ + "▁Volcano", + -12.89416217803955 + ], + [ + "lleging", + -12.894204139709473 + ], + [ + "▁Perrin", + -12.894765853881836 + ], + [ + "▁(2001)", + -12.89525318145752 + ], + [ + "▁Difficult", + -12.89525318145752 + ], + [ + "▁emergencies", + -12.89525318145752 + ], + [ + "▁advising", + -12.895254135131836 + ], + [ + "▁purse", + -12.89531135559082 + ], + [ + "▁mucus", + -12.895491600036621 + ], + [ + "▁Gotham", + -12.895657539367676 + ], + [ + "▁articulate", + -12.896098136901855 + ], + [ + "état", + -12.896391868591309 + ], + [ + "▁prognosis", + -12.896414756774902 + ], + [ + "▁Relative", + -12.896417617797852 + ], + [ + "▁Barracks", + -12.896422386169434 + ], + [ + "▁riddle", + -12.896600723266602 + ], + [ + "▁Anglesey", + -12.896604537963867 + ], + [ + "▁gloom", + -12.896689414978027 + ], + [ + "▁jerk", + -12.896713256835938 + ], + [ + "▁peroxide", + -12.8967866897583 + ], + [ + "▁Thief", + -12.896920204162598 + ], + [ + "▁Medicare", + -12.897578239440918 + ], + [ + "▁disintegrate", + -12.897578239440918 + ], + [ + "▁susceptibility", + -12.897578239440918 + ], + [ + "▁Octopus", + -12.897599220275879 + ], + [ + "▁reckon", + -12.897669792175293 + ], + [ + "▁Stockport", + -12.897842407226562 + ], + [ + "▁queue", + -12.897920608520508 + ], + [ + "▁devastation", + -12.898741722106934 + ], + [ + "▁melancholy", + -12.898741722106934 + ], + [ + "▁cascade", + -12.898748397827148 + ], + [ + "▁Communities", + -12.89887809753418 + ], + [ + "▁Craven", + -12.899039268493652 + ], + [ + "▁Ruben", + -12.899042129516602 + ], + [ + "▁hectare", + -12.89914608001709 + ], + [ + "の", + -12.899907112121582 + ], + [ + "▁ovarian", + -12.899910926818848 + ], + [ + "▁unconditional", + -12.89991569519043 + ], + [ + "plen", + -12.900371551513672 + ], + [ + "▁Fingleton", + -12.901074409484863 + ], + [ + "▁Garrison", + -12.901074409484863 + ], + [ + "▁Gladstone", + -12.901074409484863 + ], + [ + "▁apprehend", + -12.901074409484863 + ], + [ + "▁investigative", + -12.901074409484863 + ], + [ + "▁Seminary", + -12.90107536315918 + ], + [ + "▁archaic", + -12.90110969543457 + ], + [ + "▁Slavonia", + -12.901116371154785 + ], + [ + "▁Tanaka", + -12.901256561279297 + ], + [ + "▁Robyn", + -12.90134334564209 + ], + [ + "▁Moderate", + -12.901422500610352 + ], + [ + "▁cornea", + -12.902202606201172 + ], + [ + "▁Freemason", + -12.902241706848145 + ], + [ + "▁swirl", + -12.902241706848145 + ], + [ + "▁Emirates", + -12.902242660522461 + ], + [ + "▁bleak", + -12.902271270751953 + ], + [ + "▁Osaka", + -12.902294158935547 + ], + [ + "▁deacon", + -12.902304649353027 + ], + [ + "▁disciplinary", + -12.902324676513672 + ], + [ + "▁Slide", + -12.903097152709961 + ], + [ + "▁evaporate", + -12.903411865234375 + ], + [ + "▁navigator", + -12.903411865234375 + ], + [ + "▁cougar", + -12.903413772583008 + ], + [ + "▁disdain", + -12.90341567993164 + ], + [ + "▁Marquette", + -12.90345287322998 + ], + [ + "▁orchestration", + -12.903693199157715 + ], + [ + "▁Paolo", + -12.903748512268066 + ], + [ + "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "1": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "2": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "3": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "4": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "5": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + }, + "6": { + "content": "", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false, + "special": true + } + }, + "additional_special_tokens": [ + "", + "", + "" + ], + "bos_token": "", + "clean_up_tokenization_spaces": false, + "eos_token": "", + "extra_special_tokens": {}, + "legacy": true, + "model_max_length": 1000000000000000019884624838656, + "pad_token": "", + "sp_model_kwargs": {}, + "spaces_between_special_tokens": false, + "tokenizer_class": "LlamaTokenizer", + "unk_token": "", + "use_default_system_prompt": false +} diff --git a/Tokenizer/convert_to_hf.py b/Tokenizer/convert_to_hf.py new file mode 100644 index 0000000000000000000000000000000000000000..287f56623f688c21a7b6ef48b594cda86cccd22d --- /dev/null +++ b/Tokenizer/convert_to_hf.py @@ -0,0 +1,18 @@ +from transformers import LlamaTokenizerFast + +# Load the raw spm model +tokenizer = LlamaTokenizerFast(vocab_file="/home/aviinashh/projects/Mini-LLM/Tokenizer/BPE/spm.model") + +# Add your special tokens manually to the HF config part +tokenizer.add_special_tokens({ + "bos_token": "", + "eos_token": "", + "unk_token": "", + "pad_token": "", + "additional_special_tokens": ["", "", ""] +}) + +# Save the json version +tokenizer.save_pretrained("Tokenizer/") + +print("Converted to tokenizer.json successfully!") \ No newline at end of file diff --git a/Tokenizer/test_tokenizer.py b/Tokenizer/test_tokenizer.py new file mode 100644 index 0000000000000000000000000000000000000000..8731d9ad0e2b606bb6d4423a651c39de4e1c3d2c --- /dev/null +++ b/Tokenizer/test_tokenizer.py @@ -0,0 +1,9 @@ +from transformers import AutoTokenizer +tok = AutoTokenizer.from_pretrained(".") +print(tok.tokenize("Hello world! write code ")) + +text = "Hello world! write code " +ids = tok.encode(text) +print(ids) +print(tok.decode(ids)) +print(tok.decode(ids, skip_special_tokens=True)) \ No newline at end of file diff --git a/Tokenizer/train_spm_bpe.py b/Tokenizer/train_spm_bpe.py new file mode 100644 index 0000000000000000000000000000000000000000..eaf3b90cafaf285862c9c685246ff5ecb3b4cd97 --- /dev/null +++ b/Tokenizer/train_spm_bpe.py @@ -0,0 +1,18 @@ +import sentencepiece as spm + +spm.SentencePieceTrainer.Train( + input="/home/aviinashh/projects/Mini-LLM/data/raw/merged_text/corpus.txt", + model_prefix="/home/aviinashh/projects/Mini-LLM/Tokenizer/BPE/spm", + vocab_size=32000, + model_type="bpe", + byte_fallback=True, + character_coverage=1.0, + unk_id=0, + bos_id=1, + eos_id=2, + pad_id=3, + user_defined_symbols=["", "", ""], +) + +print("Tokenizer trained!") +# Model and vocab will be saved as spm.model and spm.vocab in the specified path \ No newline at end of file diff --git a/Tokenizer/train_spm_unigram.py b/Tokenizer/train_spm_unigram.py new file mode 100644 index 0000000000000000000000000000000000000000..bf31e52d7e8d2a822d1fba0b0fecdbe1a9e29367 --- /dev/null +++ b/Tokenizer/train_spm_unigram.py @@ -0,0 +1,17 @@ +import sentencepiece as spm + +spm.SentencePieceTrainer.Train( + input="/home/aviinashh/projects/Mini-LLM/data/raw/merged_text/corpus.txt", + model_prefix="/home/aviinashh/projects/Mini-LLM/Tokenizer/spm", + vocab_size=32000, + model_type="unigram", + character_coverage=1.0, + unk_id=0, + bos_id=1, + eos_id=2, + pad_id=3, + user_defined_symbols=["", "", ""], +) + +print("Tokenizer trained!") +# Model and vocab will be saved as spm.model and spm.vocab in the specified path \ No newline at end of file diff --git a/data/README.md b/data/README.md new file mode 100644 index 0000000000000000000000000000000000000000..943c085078ce4bcbcf25efb88fddcdbdbd992127 --- /dev/null +++ b/data/README.md @@ -0,0 +1,213 @@ +# Data Module + +This module handles all data preprocessing, tokenization, and preparation for training. + +## Overview + +The data pipeline converts raw text into binary token files optimized for training: +- **Raw text collection** from multiple sources +- **Tokenization** using BPE tokenizer +- **Binary serialization** for efficient loading +- **Train/validation splitting** + +## Directory Structure + +``` +data/ +├── raw/ # Raw text sources +│ ├── books/ # Book corpus +│ ├── wikipedia/ # Wikipedia dumps +│ ├── fineweb/ # Web crawl data +│ └── merged_text/ +│ └── corpus.txt # Combined corpus +├── bin/ # Tokenized binary files +│ ├── train.bin # Training data (uint16) +│ └── val.bin # Validation data (uint16) +└── prepare_data.py # Tokenization script +``` + +## Data Processing Pipeline + +``` +┌─────────────────────────────────────────────┐ +│ 1. Raw Text Sources │ +│ - Books: 15 files │ +│ - Wikipedia: 3 dumps │ +│ - FineWeb: 1 crawl │ +└──────────────────┬──────────────────────────┘ + │ + ▼ +┌─────────────────────────────────────────────┐ +│ 2. Merge & Clean │ +│ → corpus.txt (all text combined) │ +└──────────────────┬──────────────────────────┘ + │ + ▼ +┌─────────────────────────────────────────────┐ +│ 3. Tokenize (prepare_data.py) │ +│ - Load BPE tokenizer │ +│ - Process line-by-line │ +│ - Append EOS tokens │ +└──────────────────┬──────────────────────────┘ + │ + ▼ +┌─────────────────────────────────────────────┐ +│ 4. Convert to NumPy (uint16) │ +│ - Vocab size: 32,000 fits in uint16 │ +│ - Memory efficient (2 bytes/token) │ +└──────────────────┬──────────────────────────┘ + │ + ▼ +┌─────────────────────────────────────────────┐ +│ 5. Train/Val Split (90/10) │ +│ - train.bin: 325M tokens │ +│ - val.bin: 36M tokens │ +└─────────────────────────────────────────────┘ +``` + +## Data Preparation Script + +**File**: `prepare_data.py` + +```python +import numpy as np +from transformers import AutoTokenizer +from tqdm import tqdm + +# 1. Load tokenizer +tokenizer = AutoTokenizer.from_pretrained("Tokenizer/BPE") +eos_id = tokenizer.eos_token_id + +# 2. Read corpus +with open("data/raw/merged_text/corpus.txt") as f: + lines = f.readlines() + +# 3. Tokenize +all_tokens = [] +for line in tqdm(lines): + tokens = tokenizer.encode(line.strip()) + tokens.append(eos_id) # Mark end of line + all_tokens.extend(tokens) + +# 4. Convert to uint16 +ids = np.array(all_tokens, dtype=np.uint16) + +# 5. Split +val_count = int(len(ids) * 0.1) +train_ids = ids[:-val_count] +val_ids = ids[-val_count:] + +# 6. Save +train_ids.tofile("data/bin/train.bin") +val_ids.tofile("data/bin/val.bin") +``` + +## Example: Text → Tokens + +**Input Text** (`corpus.txt`): +``` +The quick brown fox jumps over the lazy dog. +Machine learning is transforming the world. +``` + +**Tokenization Process**: + +``` +Line 1: "The quick brown fox jumps over the lazy dog." + Tokens: [1, 334, 3855, 288, 267, 2959, 354, 267, 12397, 8885, 2] + [, The, quick, brown, fox, jumps, over, the, lazy, dog, ] + +Line 2: "Machine learning is transforming the world." + Tokens: [1, 5234, 1234, 456, 7890, 267, 9876, 2] + [, Machine, learning, is, transforming, the, world, ] + +Combined: [1, 334, 3855, ..., 2, 1, 5234, ..., 2] +``` + +**Binary Format**: + +``` +train.bin structure: + Byte 0-1: Token 0 (uint16) + Byte 2-3: Token 1 (uint16) + Byte 4-5: Token 2 (uint16) + ... + Byte N-2:N Token N/2 (uint16) + +Total size: 325,004,796 tokens × 2 bytes = ~650 MB +``` + +## Dataset Statistics + +### Corpus Size + +``` +Raw Text: + - Total files: 19 + - Total size: ~1.4 GB + - Total lines: ~5.2M + +Tokenized: + - Total tokens: 361,116,440 + - Train tokens: 325,004,796 (90%) + - Val tokens: 36,111,644 (10%) +``` + +## Usage + +### Prepare Data + +```bash +# Tokenize corpus +python data/prepare_data.py +``` + +**Output:** +``` +Loading tokenizer from Tokenizer/BPE... +Vocab size: 32000 +EOS ID: 2 +Reading data/raw/merged_text/corpus.txt... +Total lines: 5,234,567 +Tokenizing... +100%|████████████| 5.2M/5.2M [02:34<00:00] +Total tokens: 361,116,440 +Train tokens: 325,004,796 +Val tokens: 36,111,644 +✅ Saved binary files to data/bin/ +``` + +### Load in Training + +```python +from train.dataloader import DataLoader + +loader = DataLoader("data/bin", batch_size=16, block_size=512, split="train") +x, y = loader.get_batch(device="cuda") + +# x: [16, 512] input tokens +# y: [16, 512] target tokens (shifted by 1) +``` + +## Memory-Mapped Loading + +The binary files are loaded using `np.memmap` for efficiency: + +```python +# Traditional loading (BAD) +data = np.fromfile("train.bin", dtype=np.uint16) # Loads 650MB into RAM! + +# Memory-mapped loading (GOOD) +data = np.memmap("train.bin", dtype=np.uint16, mode='r') # OS handles paging +``` + +**Benefits:** +- **No RAM overhead**: File stays on disk +- **Fast random access**: OS caches hot pages +- **Scalable**: Works with TB-scale datasets + +## References + +- [The Pile: An 800GB Dataset](https://arxiv.org/abs/2101.00027) +- [Data Quality for Language Models](https://arxiv.org/abs/2201.06009) +- [Efficient Data Loading](https://pytorch.org/docs/stable/data.html) diff --git a/data/bin/train.bin b/data/bin/train.bin new file mode 100644 index 0000000000000000000000000000000000000000..b68a9774c06a6a0267138ef23a0ee84314793ebf --- /dev/null +++ b/data/bin/train.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de480e746786af5675ce42681e009835772c7688567c16ceb429239dfb8eb38b +size 650009592 diff --git a/data/bin/val.bin b/data/bin/val.bin new file mode 100644 index 0000000000000000000000000000000000000000..e7e69691b3013a33a17bdf03e327725fd4a48343 --- /dev/null +++ b/data/bin/val.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0715cff0afb66a0f922639521ec5aaa7e75803134b4283df10501f981a20954 +size 72223288 diff --git a/data/prepare_data.py b/data/prepare_data.py new file mode 100644 index 0000000000000000000000000000000000000000..6e36d9de43facaa3eb46b6fd1e8325a8b56acbb6 --- /dev/null +++ b/data/prepare_data.py @@ -0,0 +1,72 @@ +import os +import numpy as np +from transformers import AutoTokenizer +from tqdm import tqdm + +def process_data(): + # 1. Config + input_file_path = "data/raw/merged_text/corpus.txt" # PATH TO YOUR DATA + tokenizer_path = "Tokenizer/BPE" # PATH TO YOUR NEW TOKENIZER + output_dir = "data/bin" + val_split_ratio = 0.1 # 10% for validation + + os.makedirs(output_dir, exist_ok=True) + + # 2. Load Tokenizer + print(f"Loading tokenizer from {tokenizer_path}...") + tokenizer = AutoTokenizer.from_pretrained(tokenizer_path) + + # Ensure eos_token is present (usually ID 2) + eos_id = tokenizer.eos_token_id + print(f"Vocab size: {tokenizer.vocab_size}") + print(f"EOS ID: {eos_id}") + + # 3. Read Data + print(f"Reading {input_file_path}...") + with open(input_file_path, 'r', encoding='utf-8') as f: + # Read all lines + lines = f.readlines() + + print(f"Total lines: {len(lines):,}") + + # 4. Tokenize + # We use a simple list comprehension for the 80M scale. + # For 100B scale, we would use parallel processing (multiprocessing). + print("Tokenizing...") + all_tokens = [] + + # Using tqdm for progress bar + for line in tqdm(lines): + text = line.strip() + if not text: + continue + + # Encode text and append EOS token + # This tells the model where one sentence ends and the next begins + tokens = tokenizer.encode(text) + tokens.append(eos_id) + all_tokens.extend(tokens) + + token_count = len(all_tokens) + print(f"Total tokens: {token_count:,}") + + # 5. Convert to Numpy (uint16 saves 50% RAM) + # 32,000 fits easily in uint16 (max 65,535) + ids = np.array(all_tokens, dtype=np.uint16) + + # 6. Split Train/Val + val_count = int(token_count * val_split_ratio) + train_ids = ids[:-val_count] + val_ids = ids[-val_count:] + + print(f"Train tokens: {len(train_ids):,}") + print(f"Val tokens: {len(val_ids):,}") + + # 7. Save to disk (Memory Mapped friendly) + train_ids.tofile(os.path.join(output_dir, "train.bin")) + val_ids.tofile(os.path.join(output_dir, "val.bin")) + + print(f"✅ Saved binary files to {output_dir}/") + +if __name__ == "__main__": + process_data() diff --git a/data/raw/books/.gitattributes b/data/raw/books/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..957b2579c6ef20995a09efd9a17f8fd90606f5ed --- /dev/null +++ b/data/raw/books/.gitattributes @@ -0,0 +1,27 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bin.* filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zstandard filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text diff --git a/data/raw/books/README.md b/data/raw/books/README.md new file mode 100644 index 0000000000000000000000000000000000000000..2a4fec2bc8df76c9d4da1c8e8865b625eb221c76 --- /dev/null +++ b/data/raw/books/README.md @@ -0,0 +1,344 @@ +--- +annotations_creators: +- no-annotation +language_creators: +- crowdsourced +language: +- en +license: +- cc-by-sa-3.0 +- gfdl +multilinguality: +- monolingual +size_categories: +- 1M (unknown) tokens. +- Non-raw (for word level work) contain only the tokens in their vocabulary (wiki.train.tokens, wiki.valid.tokens, and wiki.test.tokens). + The out-of-vocabulary tokens have been replaced with the the token. + + +### Supported Tasks and Leaderboards + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +### Languages + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +## Dataset Structure + +### Data Instances + +#### wikitext-103-raw-v1 + +- **Size of downloaded dataset files:** 191.98 MB +- **Size of the generated dataset:** 549.42 MB +- **Total amount of disk used:** 741.41 MB + +An example of 'validation' looks as follows. +``` +This example was too long and was cropped: + +{ + "text": "\" The gold dollar or gold one @-@ dollar piece was a coin struck as a regular issue by the United States Bureau of the Mint from..." +} +``` + +#### wikitext-103-v1 + +- **Size of downloaded dataset files:** 190.23 MB +- **Size of the generated dataset:** 548.05 MB +- **Total amount of disk used:** 738.27 MB + +An example of 'train' looks as follows. +``` +This example was too long and was cropped: + +{ + "text": "\" Senjō no Valkyria 3 : Chronicles ( Japanese : 戦場のヴァルキュリア3 , lit . Valkyria of the Battlefield 3 ) , commonly referred to..." +} +``` + +#### wikitext-2-raw-v1 + +- **Size of downloaded dataset files:** 4.72 MB +- **Size of the generated dataset:** 13.54 MB +- **Total amount of disk used:** 18.26 MB + +An example of 'train' looks as follows. +``` +This example was too long and was cropped: + +{ + "text": "\" The Sinclair Scientific Programmable was introduced in 1975 , with the same case as the Sinclair Oxford . It was larger than t..." +} +``` + +#### wikitext-2-v1 + +- **Size of downloaded dataset files:** 4.48 MB +- **Size of the generated dataset:** 13.34 MB +- **Total amount of disk used:** 17.82 MB + +An example of 'train' looks as follows. +``` +This example was too long and was cropped: + +{ + "text": "\" Senjō no Valkyria 3 : Chronicles ( Japanese : 戦場のヴァルキュリア3 , lit . Valkyria of the Battlefield 3 ) , commonly referred to..." +} +``` + +### Data Fields + +The data fields are the same among all splits. + +#### wikitext-103-raw-v1 +- `text`: a `string` feature. + +#### wikitext-103-v1 +- `text`: a `string` feature. + +#### wikitext-2-raw-v1 +- `text`: a `string` feature. + +#### wikitext-2-v1 +- `text`: a `string` feature. + +### Data Splits + +| name | train |validation|test| +|-------------------|------:|---------:|---:| +|wikitext-103-raw-v1|1801350| 3760|4358| +|wikitext-103-v1 |1801350| 3760|4358| +|wikitext-2-raw-v1 | 36718| 3760|4358| +|wikitext-2-v1 | 36718| 3760|4358| + +## Dataset Creation + +### Curation Rationale + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +### Source Data + +#### Initial Data Collection and Normalization + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +#### Who are the source language producers? + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +### Annotations + +#### Annotation process + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +#### Who are the annotators? + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +### Personal and Sensitive Information + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +## Considerations for Using the Data + +### Social Impact of Dataset + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +### Discussion of Biases + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +### Other Known Limitations + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +## Additional Information + +### Dataset Curators + +[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) + +### Licensing Information + +The dataset is available under the [Creative Commons Attribution-ShareAlike License (CC BY-SA 4.0)](https://creativecommons.org/licenses/by-sa/4.0/). + +### Citation Information + +``` +@misc{merity2016pointer, + title={Pointer Sentinel Mixture Models}, + author={Stephen Merity and Caiming Xiong and James Bradbury and Richard Socher}, + year={2016}, + eprint={1609.07843}, + archivePrefix={arXiv}, + primaryClass={cs.CL} +} +``` + + +### Contributions + +Thanks to [@thomwolf](https://github.com/thomwolf), [@lewtun](https://github.com/lewtun), [@patrickvonplaten](https://github.com/patrickvonplaten), [@mariamabarham](https://github.com/mariamabarham) for adding this dataset. \ No newline at end of file diff --git a/data/raw/books/wikitext-103-raw-v1/test-00000-of-00001.parquet b/data/raw/books/wikitext-103-raw-v1/test-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6ba58cb2514e5816aa401f841c34a0e3a6b727b4 --- /dev/null +++ b/data/raw/books/wikitext-103-raw-v1/test-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1bea067869d04849c0f975a2b29c4ff47d867f484f5010ea5e861eab246d91 +size 732610 diff --git a/data/raw/books/wikitext-103-raw-v1/train-00000-of-00002.parquet b/data/raw/books/wikitext-103-raw-v1/train-00000-of-00002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1806afe43f6e4abb6f503df3cd08638bce806d49 --- /dev/null +++ b/data/raw/books/wikitext-103-raw-v1/train-00000-of-00002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74da360f23826045b3e6ac6375411fdb15f003030aa74f2596ed08b857cb9212 +size 156987808 diff --git a/data/raw/books/wikitext-103-raw-v1/train-00001-of-00002.parquet b/data/raw/books/wikitext-103-raw-v1/train-00001-of-00002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..2b494c50c58fff9343b7af61c2f73c529bcc5629 --- /dev/null +++ b/data/raw/books/wikitext-103-raw-v1/train-00001-of-00002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba090ac30dbf5461e8dcbdd1a1b8e6f3cf9c2c756d64f0c1220450acd514f720 +size 157088770 diff --git a/data/raw/books/wikitext-103-raw-v1/validation-00000-of-00001.parquet b/data/raw/books/wikitext-103-raw-v1/validation-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..41c5457d2df9e8f98a0629fe0039de49edbba387 --- /dev/null +++ b/data/raw/books/wikitext-103-raw-v1/validation-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204929b7ff9d6184953f867dedb860e40aa69c078fc1e54b3baaa8fb28511c4c +size 657209 diff --git a/data/raw/books/wikitext-103-v1/test-00000-of-00001.parquet b/data/raw/books/wikitext-103-v1/test-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c6189462a24639f57711a26da55ab52378a64a54 --- /dev/null +++ b/data/raw/books/wikitext-103-v1/test-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abdfc9f83b1103b502924072460d4c92f277c9b49c313cef3e48cfcf7428e125 +size 721735 diff --git a/data/raw/books/wikitext-103-v1/train-00000-of-00002.parquet b/data/raw/books/wikitext-103-v1/train-00000-of-00002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..c3db0cd513c4b95402e2562b347710317fb47a54 --- /dev/null +++ b/data/raw/books/wikitext-103-v1/train-00000-of-00002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2ecca8c3250e79518e45d125f3a9a757d8014f6b2d8435c602be87c1f79ec3b +size 155788327 diff --git a/data/raw/books/wikitext-103-v1/train-00001-of-00002.parquet b/data/raw/books/wikitext-103-v1/train-00001-of-00002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..b28a21475364003827a9eaecd06f5ca40a441f2e --- /dev/null +++ b/data/raw/books/wikitext-103-v1/train-00001-of-00002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720f2503551f33c25bb822aad74d699fee4d5331a7373d0c262f1bfb01354fcf +size 155928670 diff --git a/data/raw/books/wikitext-103-v1/validation-00000-of-00001.parquet b/data/raw/books/wikitext-103-v1/validation-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..644647ebfe80179dc8ce4185c1e01116da42fa1e --- /dev/null +++ b/data/raw/books/wikitext-103-v1/validation-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a586125adab06f115018c43507ac267ea70850ce6218cbb96e08bb3b4db0899b +size 655106 diff --git a/data/raw/books/wikitext-2-raw-v1/test-00000-of-00001.parquet b/data/raw/books/wikitext-2-raw-v1/test-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6ba58cb2514e5816aa401f841c34a0e3a6b727b4 --- /dev/null +++ b/data/raw/books/wikitext-2-raw-v1/test-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1bea067869d04849c0f975a2b29c4ff47d867f484f5010ea5e861eab246d91 +size 732610 diff --git a/data/raw/books/wikitext-2-raw-v1/train-00000-of-00001.parquet b/data/raw/books/wikitext-2-raw-v1/train-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f0ce4bc13873f9e74671a2fbf874f54f85110fc1 --- /dev/null +++ b/data/raw/books/wikitext-2-raw-v1/train-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e83889baabc497075506f91975be5fac0d45c5290b6b20582c8cd1e853d0c9f7 +size 6357543 diff --git a/data/raw/books/wikitext-2-raw-v1/validation-00000-of-00001.parquet b/data/raw/books/wikitext-2-raw-v1/validation-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..41c5457d2df9e8f98a0629fe0039de49edbba387 --- /dev/null +++ b/data/raw/books/wikitext-2-raw-v1/validation-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:204929b7ff9d6184953f867dedb860e40aa69c078fc1e54b3baaa8fb28511c4c +size 657209 diff --git a/data/raw/books/wikitext-2-v1/test-00000-of-00001.parquet b/data/raw/books/wikitext-2-v1/test-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..890bd8406deb5f084ec19fa3a6a8f0c853449597 --- /dev/null +++ b/data/raw/books/wikitext-2-v1/test-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b3913da714b63a60a571698b20ff15441fb015783ea1b5285f707d4f2f00a9 +size 685430 diff --git a/data/raw/books/wikitext-2-v1/train-00000-of-00001.parquet b/data/raw/books/wikitext-2-v1/train-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..2d53b2eb0e740be2595e310a14683f28a423a8d9 --- /dev/null +++ b/data/raw/books/wikitext-2-v1/train-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfc27e4360c639dc1fba1e403bfffd53af4a5c75d5363b5724d49bf12d07cce6 +size 6068114 diff --git a/data/raw/books/wikitext-2-v1/validation-00000-of-00001.parquet b/data/raw/books/wikitext-2-v1/validation-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..896a8bd2bb812d3407571d12cfe8b8cf5a81a9b9 --- /dev/null +++ b/data/raw/books/wikitext-2-v1/validation-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:717de9a0c1c0b0b1dfdd8f1e6ad8a30ece618bbde81f5da8207277547d324215 +size 617738 diff --git a/data/raw/extract_all.py b/data/raw/extract_all.py new file mode 100644 index 0000000000000000000000000000000000000000..ced0b5da3e0b0770e5937b95fcec31f5b101cff5 --- /dev/null +++ b/data/raw/extract_all.py @@ -0,0 +1,53 @@ +import os +import pyarrow.parquet as pq +from glob import glob +from tqdm import tqdm + +INPUT_DIRS = [ + "books", + "fineweb", + "wikipedia", +] + +OUTPUT_DIR = "merged_text" +os.makedirs(OUTPUT_DIR, exist_ok=True) +OUT_FILE = os.path.join(OUTPUT_DIR, "corpus.txt") + +def extract_text_from_parquet(path): + try: + table = pq.read_table(path) + df = table.to_pandas() + + # Look for likely text column + for col in ["text", "content", "document", "article", "source"]: + if col in df.columns: + return df[col].astype(str).tolist() + + # Fallback: take the first string-like column + for col in df.columns: + if df[col].dtype == object: + return df[col].astype(str).tolist() + + return [] + except Exception as e: + print(f"Error reading {path}: {e}") + return [] + +all_parquet_files = [] +for d in INPUT_DIRS: + all_parquet_files.extend(glob(f"{d}/**/*.parquet", recursive=True)) + +print("Total parquet files found:", len(all_parquet_files)) + +with open(OUT_FILE, "w", encoding="utf-8") as fout: + for file in tqdm(all_parquet_files, desc="Extracting text"): + texts = extract_text_from_parquet(file) + for t in texts: + t = t.strip() + if len(t) < 50: + continue + if not any(c.isalpha() for c in t): + continue + fout.write(t + "\n\n") + +print("DONE! Saved merged corpus →", OUT_FILE) diff --git a/data/raw/fineweb/.gitattributes b/data/raw/fineweb/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..1ef325f1b111266a6b26e0196871bd78baa8c2f3 --- /dev/null +++ b/data/raw/fineweb/.gitattributes @@ -0,0 +1,59 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.lz4 filter=lfs diff=lfs merge=lfs -text +*.mds filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +# Audio files - uncompressed +*.pcm filter=lfs diff=lfs merge=lfs -text +*.sam filter=lfs diff=lfs merge=lfs -text +*.raw filter=lfs diff=lfs merge=lfs -text +# Audio files - compressed +*.aac filter=lfs diff=lfs merge=lfs -text +*.flac filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +# Image files - uncompressed +*.bmp filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.tiff filter=lfs diff=lfs merge=lfs -text +# Image files - compressed +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.webp filter=lfs diff=lfs merge=lfs -text +# Video files - compressed +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.webm filter=lfs diff=lfs merge=lfs -text diff --git a/data/raw/fineweb/train-00000-of-00099.parquet b/data/raw/fineweb/train-00000-of-00099.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a45e1328a0bb282f3da1042c0df5803f631d11a0 --- /dev/null +++ b/data/raw/fineweb/train-00000-of-00099.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c386575467e252ff81316a193bb1e07ebe067aec34cbbd5076ee7dd2ffe42f +size 289110403 diff --git a/data/raw/merged_text/corpus.txt b/data/raw/merged_text/corpus.txt new file mode 100644 index 0000000000000000000000000000000000000000..2856140c236641199bbe32e1c2e7cbe72d3a9d17 --- /dev/null +++ b/data/raw/merged_text/corpus.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ad42d10157bf9f296b7752bbabc47b936de7af220927c9be54ceeb2ecada01d +size 1599143862 diff --git a/data/raw/verify_compression_ratio.py b/data/raw/verify_compression_ratio.py new file mode 100644 index 0000000000000000000000000000000000000000..fc8177b248dc8d5a8b8113e2333bad10bd39172e --- /dev/null +++ b/data/raw/verify_compression_ratio.py @@ -0,0 +1,15 @@ +from transformers import PreTrainedTokenizerFast + +tok = PreTrainedTokenizerFast(tokenizer_file="tokenizer/hf/tokenizer.json") + +import os + +with open("tokenizer/corpus.txt","r") as f: + text = f.read() + +num_bytes = len(text.encode("utf-8")) +num_tokens = len(tok.encode(text)) + +ratio = num_bytes / num_tokens +print("Compression ratio:", ratio) +# Expected ratio is around 3.5 to 4.5 for a good tokenizer \ No newline at end of file diff --git a/data/raw/wikipedia/.gitattributes b/data/raw/wikipedia/.gitattributes new file mode 100644 index 0000000000000000000000000000000000000000..1ef325f1b111266a6b26e0196871bd78baa8c2f3 --- /dev/null +++ b/data/raw/wikipedia/.gitattributes @@ -0,0 +1,59 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.lz4 filter=lfs diff=lfs merge=lfs -text +*.mds filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +# Audio files - uncompressed +*.pcm filter=lfs diff=lfs merge=lfs -text +*.sam filter=lfs diff=lfs merge=lfs -text +*.raw filter=lfs diff=lfs merge=lfs -text +# Audio files - compressed +*.aac filter=lfs diff=lfs merge=lfs -text +*.flac filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +# Image files - uncompressed +*.bmp filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.tiff filter=lfs diff=lfs merge=lfs -text +# Image files - compressed +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.webp filter=lfs diff=lfs merge=lfs -text +# Video files - compressed +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.webm filter=lfs diff=lfs merge=lfs -text diff --git a/data/raw/wikipedia/README.md b/data/raw/wikipedia/README.md new file mode 100644 index 0000000000000000000000000000000000000000..ea12237fe2012d4de3a0266d04d2b64a96074a52 --- /dev/null +++ b/data/raw/wikipedia/README.md @@ -0,0 +1,26 @@ +--- +dataset_info: + features: + - name: text + dtype: string + - name: tokens + sequence: int64 + - name: token_count + dtype: int64 + splits: + - name: train + num_bytes: 167968257.38066393 + num_examples: 69445 + - name: test + num_bytes: 1726968.6193360796 + num_examples: 714 + download_size: 49543706 + dataset_size: 169695226.0 +configs: +- config_name: default + data_files: + - split: train + path: data/train-* + - split: test + path: data/test-* +--- diff --git a/data/raw/wikipedia/data/test-00000-of-00001.parquet b/data/raw/wikipedia/data/test-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..2b2f32a90776b36a8e26ebd2a853612985a5428e --- /dev/null +++ b/data/raw/wikipedia/data/test-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:062222ddf69aa636b56a2c48299ece565eb85fbee8d9efbce0a1f47b436617ac +size 511192 diff --git a/data/raw/wikipedia/data/train-00000-of-00001.parquet b/data/raw/wikipedia/data/train-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6b4d7a75387d681a5a90f92db6bd3e6ba28af8d4 --- /dev/null +++ b/data/raw/wikipedia/data/train-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4785fbc0ae815936f34a7923af854ab7752a456d64f5fc497ed7f234330afd94 +size 49032514 diff --git a/model_index.json b/model_index.json new file mode 100644 index 0000000000000000000000000000000000000000..cb99421f0ad0cae068d32e4d0cd206eaa88537cd --- /dev/null +++ b/model_index.json @@ -0,0 +1,9 @@ +{ + "models": [ + { + "id": "Mini-LLM", + "name": "Mini-LLM 80M", + "type": "causal-lm" + } + ] +} diff --git a/phase-1-pretraining/checkpoints/ckpt.pt b/phase-1-pretraining/checkpoints/ckpt.pt new file mode 100644 index 0000000000000000000000000000000000000000..c7ad454bd37f0c9a14b4e6b73978af7e53d734ec --- /dev/null +++ b/phase-1-pretraining/checkpoints/ckpt.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1b2e41595289f0611fa5e4ebf0f3a87b1369f5db54bde503a687db6eb841e50 +size 600770292 diff --git a/phase-1-pretraining/logs/eval.jsonl b/phase-1-pretraining/logs/eval.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..2dc7506c1d66822669ca4b7244c5230d86fe5cfc --- /dev/null +++ b/phase-1-pretraining/logs/eval.jsonl @@ -0,0 +1,19 @@ +{"step": 500, "train_loss": 10.778825759887695, "val_loss": 13.1365966796875, "timestamp": 1765121142.1095726} +{"step": 1000, "train_loss": 6.187847137451172, "val_loss": 8.19359016418457, "timestamp": 1765122533.5425217} +{"step": 1500, "train_loss": 5.195547103881836, "val_loss": 7.4823431968688965, "timestamp": 1765123928.6393468} +{"step": 2000, "train_loss": 4.572986602783203, "val_loss": 6.851518154144287, "timestamp": 1765125323.769954} +{"step": 2500, "train_loss": 4.198941230773926, "val_loss": 6.329182147979736, "timestamp": 1765126718.9196975} +{"step": 3000, "train_loss": 3.999880313873291, "val_loss": 6.123196601867676, "timestamp": 1765128113.9750416} +{"step": 3500, "train_loss": 3.8646719455718994, "val_loss": 5.921552658081055, "timestamp": 1765129509.4658458} +{"step": 4000, "train_loss": 3.7474677562713623, "val_loss": 5.774941444396973, "timestamp": 1765130903.9073179} +{"step": 4500, "train_loss": 3.671774387359619, "val_loss": 5.681786060333252, "timestamp": 1765132299.7015603} +{"step": 5000, "train_loss": 3.606069326400757, "val_loss": 5.644675254821777, "timestamp": 1765133694.2307134} +{"step": 5500, "train_loss": 3.562687397003174, "val_loss": 5.565449237823486, "timestamp": 1765135089.7659369} +{"step": 6000, "train_loss": 3.4939072132110596, "val_loss": 5.591969013214111, "timestamp": 1765136485.239644} +{"step": 6500, "train_loss": 3.4530725479125977, "val_loss": 5.604204177856445, "timestamp": 1765137881.630621} +{"step": 7000, "train_loss": 3.431117296218872, "val_loss": 5.523367881774902, "timestamp": 1765139274.5536194} +{"step": 7500, "train_loss": 3.396348237991333, "val_loss": 5.512942314147949, "timestamp": 1765140670.2996948} +{"step": 8000, "train_loss": 3.361485004425049, "val_loss": 5.478160858154297, "timestamp": 1765142066.2042627} +{"step": 8500, "train_loss": 3.3407044410705566, "val_loss": 5.503045082092285, "timestamp": 1765143461.7326434} +{"step": 9000, "train_loss": 3.3342764377593994, "val_loss": 5.526843070983887, "timestamp": 1765144854.7744858} +{"step": 9500, "train_loss": 3.315610408782959, "val_loss": 5.399053573608398, "timestamp": 1765146247.813718} diff --git a/phase-1-pretraining/logs/train.jsonl b/phase-1-pretraining/logs/train.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..967ad0653c94aa9590ceb555ebe85a948dfeac2c --- /dev/null +++ b/phase-1-pretraining/logs/train.jsonl @@ -0,0 +1,1000 @@ +{"step": 0, "loss": 346.7655334472656, "lr": 5.994005994005993e-07, "time_ms": 3103.6784648895264, "eta_seconds": 31036.784648895264, "eta": "8:37:16", "timestamp": 1765119755.5383532} +{"step": 10, "loss": 340.015869140625, "lr": 6.593406593406593e-06, "time_ms": 2678.084135055542, "eta_seconds": 26754.060509204865, "eta": "7:25:54", "timestamp": 1765119782.2909086} +{"step": 20, "loss": 307.205078125, "lr": 1.2587412587412586e-05, "time_ms": 2679.382085800171, "eta_seconds": 26740.233216285706, "eta": "7:25:40", "timestamp": 1765119809.0909734} +{"step": 30, "loss": 219.22137451171875, "lr": 1.858141858141858e-05, "time_ms": 2681.1091899871826, "eta_seconds": 26730.65862417221, "eta": "7:25:30", "timestamp": 1765119835.9003806} +{"step": 40, "loss": 120.50293731689453, "lr": 2.4575424575424573e-05, "time_ms": 2680.757522583008, "eta_seconds": 26700.344924926758, "eta": "7:25:00", "timestamp": 1765119862.7110457} +{"step": 50, "loss": 73.25249481201172, "lr": 3.0569430569430565e-05, "time_ms": 2681.413173675537, "eta_seconds": 26680.061078071594, "eta": "7:24:40", "timestamp": 1765119889.5213668} +{"step": 60, "loss": 58.2353401184082, "lr": 3.656343656343656e-05, "time_ms": 2682.896137237549, "eta_seconds": 26667.987604141235, "eta": "7:24:27", "timestamp": 1765119916.354111} +{"step": 70, "loss": 48.106605529785156, "lr": 4.2557442557442556e-05, "time_ms": 2682.310104370117, "eta_seconds": 26635.339336395264, "eta": "7:23:55", "timestamp": 1765119943.1942616} +{"step": 80, "loss": 42.2056770324707, "lr": 4.855144855144855e-05, "time_ms": 2684.4685077667236, "eta_seconds": 26629.9275970459, "eta": "7:23:49", "timestamp": 1765119970.0385246} +{"step": 90, "loss": 39.07096862792969, "lr": 5.454545454545454e-05, "time_ms": 2684.32879447937, "eta_seconds": 26601.698353290558, "eta": "7:23:21", "timestamp": 1765119996.8823547} +{"step": 100, "loss": 36.518714904785156, "lr": 6.0539460539460535e-05, "time_ms": 2682.6841831207275, "eta_seconds": 26558.573412895203, "eta": "7:22:38", "timestamp": 1765120023.72426} +{"step": 110, "loss": 34.40033721923828, "lr": 6.653346653346653e-05, "time_ms": 2683.2849979400635, "eta_seconds": 26537.688629627228, "eta": "7:22:17", "timestamp": 1765120050.5640945} +{"step": 120, "loss": 33.52009201049805, "lr": 7.252747252747252e-05, "time_ms": 2683.140516281128, "eta_seconds": 26509.428300857544, "eta": "7:21:49", "timestamp": 1765120077.4049942} +{"step": 130, "loss": 31.94071388244629, "lr": 7.852147852147851e-05, "time_ms": 2683.8998794555664, "eta_seconds": 26490.09181022644, "eta": "7:21:30", "timestamp": 1765120104.246763} +{"step": 140, "loss": 31.385366439819336, "lr": 8.451548451548451e-05, "time_ms": 2681.9756031036377, "eta_seconds": 26444.279446601868, "eta": "7:20:44", "timestamp": 1765120131.0864935} +{"step": 150, "loss": 30.354520797729492, "lr": 9.05094905094905e-05, "time_ms": 2683.6555004119873, "eta_seconds": 26434.006679058075, "eta": "7:20:34", "timestamp": 1765120157.9309537} +{"step": 160, "loss": 30.034793853759766, "lr": 9.65034965034965e-05, "time_ms": 2682.577133178711, "eta_seconds": 26396.558990478516, "eta": "7:19:56", "timestamp": 1765120184.7717178} +{"step": 170, "loss": 29.688859939575195, "lr": 0.00010249750249750249, "time_ms": 2683.669090270996, "eta_seconds": 26380.46715736389, "eta": "7:19:40", "timestamp": 1765120211.6135983} +{"step": 180, "loss": 29.22146224975586, "lr": 0.00010849150849150848, "time_ms": 2683.2327842712402, "eta_seconds": 26349.34594154358, "eta": "7:19:09", "timestamp": 1765120238.455056} +{"step": 190, "loss": 28.208110809326172, "lr": 0.00011448551448551448, "time_ms": 2683.6156845092773, "eta_seconds": 26326.26986503601, "eta": "7:18:46", "timestamp": 1765120265.2976305} +{"step": 200, "loss": 28.17795753479004, "lr": 0.00012047952047952047, "time_ms": 2683.290481567383, "eta_seconds": 26296.24671936035, "eta": "7:18:16", "timestamp": 1765120292.1402917} +{"step": 210, "loss": 27.575517654418945, "lr": 0.00012647352647352647, "time_ms": 2684.7128868103027, "eta_seconds": 26283.339161872864, "eta": "7:18:03", "timestamp": 1765120318.986001} +{"step": 220, "loss": 26.767345428466797, "lr": 0.00013246753246753246, "time_ms": 2683.096408843994, "eta_seconds": 26240.682878494263, "eta": "7:17:20", "timestamp": 1765120345.8342094} +{"step": 230, "loss": 26.31460952758789, "lr": 0.00013846153846153847, "time_ms": 2686.1326694488525, "eta_seconds": 26243.51618051529, "eta": "7:17:23", "timestamp": 1765120372.6889124} +{"step": 240, "loss": 25.911911010742188, "lr": 0.00014445554445554444, "time_ms": 2686.924457550049, "eta_seconds": 26224.382705688477, "eta": "7:17:04", "timestamp": 1765120399.548299} +{"step": 250, "loss": 25.004718780517578, "lr": 0.00015044955044955042, "time_ms": 2685.2073669433594, "eta_seconds": 26180.771827697754, "eta": "7:16:20", "timestamp": 1765120426.4025605} +{"step": 260, "loss": 24.249658584594727, "lr": 0.00015644355644355644, "time_ms": 2684.635877609253, "eta_seconds": 26148.353447914124, "eta": "7:15:48", "timestamp": 1765120453.257643} +{"step": 270, "loss": 23.559293746948242, "lr": 0.00016243756243756243, "time_ms": 2686.68270111084, "eta_seconds": 26141.42268180847, "eta": "7:15:41", "timestamp": 1765120480.1153662} +{"step": 280, "loss": 23.364116668701172, "lr": 0.0001684315684315684, "time_ms": 2684.241771697998, "eta_seconds": 26090.83002090454, "eta": "7:14:50", "timestamp": 1765120506.9696681} +{"step": 290, "loss": 22.692651748657227, "lr": 0.0001744255744255744, "time_ms": 2683.720111846924, "eta_seconds": 26058.92228603363, "eta": "7:14:18", "timestamp": 1765120533.8199706} +{"step": 300, "loss": 21.707658767700195, "lr": 0.0001804195804195804, "time_ms": 2684.880018234253, "eta_seconds": 26043.336176872253, "eta": "7:14:03", "timestamp": 1765120560.6726272} +{"step": 310, "loss": 21.29494857788086, "lr": 0.0001864135864135864, "time_ms": 2685.8038902282715, "eta_seconds": 26025.43969631195, "eta": "7:13:45", "timestamp": 1765120587.5225558} +{"step": 320, "loss": 21.047264099121094, "lr": 0.0001924075924075924, "time_ms": 2684.3199729919434, "eta_seconds": 25984.21733856201, "eta": "7:13:04", "timestamp": 1765120614.374398} +{"step": 330, "loss": 20.149551391601562, "lr": 0.00019840159840159836, "time_ms": 2683.290481567383, "eta_seconds": 25947.41895675659, "eta": "7:12:27", "timestamp": 1765120641.2229927} +{"step": 340, "loss": 19.679216384887695, "lr": 0.00020439560439560438, "time_ms": 2684.8385334014893, "eta_seconds": 25935.540232658386, "eta": "7:12:15", "timestamp": 1765120668.0721009} +{"step": 350, "loss": 19.52688980102539, "lr": 0.00021038961038961036, "time_ms": 2684.537410736084, "eta_seconds": 25905.78601360321, "eta": "7:11:45", "timestamp": 1765120694.922882} +{"step": 360, "loss": 18.24361801147461, "lr": 0.00021638361638361638, "time_ms": 2684.95512008667, "eta_seconds": 25882.967357635498, "eta": "7:11:22", "timestamp": 1765120721.7713966} +{"step": 370, "loss": 17.947500228881836, "lr": 0.00022237762237762237, "time_ms": 2684.290885925293, "eta_seconds": 25849.72123146057, "eta": "7:10:49", "timestamp": 1765120748.6251478} +{"step": 380, "loss": 17.02100372314453, "lr": 0.00022837162837162833, "time_ms": 2684.752941131592, "eta_seconds": 25827.323293685913, "eta": "7:10:27", "timestamp": 1765120775.4779832} +{"step": 390, "loss": 16.443405151367188, "lr": 0.00023436563436563435, "time_ms": 2685.9965324401855, "eta_seconds": 25812.426676750183, "eta": "7:10:12", "timestamp": 1765120802.3303127} +{"step": 400, "loss": 15.751742362976074, "lr": 0.00024035964035964033, "time_ms": 2684.3559741973877, "eta_seconds": 25769.817352294922, "eta": "7:09:29", "timestamp": 1765120829.1757474} +{"step": 410, "loss": 15.244556427001953, "lr": 0.0002463536463536463, "time_ms": 2685.481309890747, "eta_seconds": 25753.765761852264, "eta": "7:09:13", "timestamp": 1765120856.0301971} +{"step": 420, "loss": 14.770166397094727, "lr": 0.00025234765234765234, "time_ms": 2684.7314834594727, "eta_seconds": 25719.727611541748, "eta": "7:08:39", "timestamp": 1765120882.8828816} +{"step": 430, "loss": 14.01164436340332, "lr": 0.00025834165834165835, "time_ms": 2685.4372024536133, "eta_seconds": 25699.63402748108, "eta": "7:08:19", "timestamp": 1765120909.7361364} +{"step": 440, "loss": 13.658737182617188, "lr": 0.0002643356643356643, "time_ms": 2685.0922107696533, "eta_seconds": 25669.481534957886, "eta": "7:07:49", "timestamp": 1765120936.5862927} +{"step": 450, "loss": 12.989947319030762, "lr": 0.0002703296703296703, "time_ms": 2684.4775676727295, "eta_seconds": 25636.760771274567, "eta": "7:07:16", "timestamp": 1765120963.4402497} +{"step": 460, "loss": 12.893111228942871, "lr": 0.0002763236763236763, "time_ms": 2684.481143951416, "eta_seconds": 25609.95011329651, "eta": "7:06:49", "timestamp": 1765120990.2906578} +{"step": 470, "loss": 12.253782272338867, "lr": 0.00028231768231768225, "time_ms": 2684.93914604187, "eta_seconds": 25587.470061779022, "eta": "7:06:27", "timestamp": 1765121017.1442094} +{"step": 480, "loss": 11.63758373260498, "lr": 0.00028831168831168827, "time_ms": 2685.370445251465, "eta_seconds": 25564.726638793945, "eta": "7:06:04", "timestamp": 1765121043.996428} +{"step": 490, "loss": 11.170119285583496, "lr": 0.0002943056943056943, "time_ms": 2683.7992668151855, "eta_seconds": 25522.931027412415, "eta": "7:05:22", "timestamp": 1765121070.8503807} +{"step": 500, "loss": 10.74889087677002, "lr": 0.0003002997002997003, "time_ms": 50592.29016304016, "eta_seconds": 480626.75654888153, "eta": "5 days, 13:30:26", "timestamp": 1765121145.6115067} +{"step": 510, "loss": 10.464680671691895, "lr": 0.00030629370629370626, "time_ms": 2684.276342391968, "eta_seconds": 25473.782489299774, "eta": "7:04:33", "timestamp": 1765121172.454694} +{"step": 520, "loss": 10.157018661499023, "lr": 0.0003122877122877123, "time_ms": 2684.4561100006104, "eta_seconds": 25448.643922805786, "eta": "7:04:08", "timestamp": 1765121199.3023608} +{"step": 530, "loss": 9.71251392364502, "lr": 0.0003182817182817183, "time_ms": 2685.8766078948975, "eta_seconds": 25435.25147676468, "eta": "7:03:55", "timestamp": 1765121226.152674} +{"step": 540, "loss": 9.375505447387695, "lr": 0.0003242757242757242, "time_ms": 2684.929847717285, "eta_seconds": 25399.436359405518, "eta": "7:03:19", "timestamp": 1765121253.0055754} +{"step": 550, "loss": 9.244869232177734, "lr": 0.0003302697302697302, "time_ms": 2685.9726905822754, "eta_seconds": 25382.441926002502, "eta": "7:03:02", "timestamp": 1765121279.8631773} +{"step": 560, "loss": 8.83364486694336, "lr": 0.00033626373626373623, "time_ms": 2684.5498085021973, "eta_seconds": 25342.150192260742, "eta": "7:02:22", "timestamp": 1765121306.7228742} +{"step": 570, "loss": 8.691001892089844, "lr": 0.0003422577422577422, "time_ms": 2685.6749057769775, "eta_seconds": 25325.9143614769, "eta": "7:02:05", "timestamp": 1765121333.580086} +{"step": 580, "loss": 8.422346115112305, "lr": 0.0003482517482517482, "time_ms": 2686.0482692718506, "eta_seconds": 25302.574696540833, "eta": "7:01:42", "timestamp": 1765121360.4389098} +{"step": 590, "loss": 8.136713027954102, "lr": 0.0003542457542457542, "time_ms": 2685.2028369903564, "eta_seconds": 25267.758696079254, "eta": "7:01:07", "timestamp": 1765121387.2989519} +{"step": 600, "loss": 7.853506565093994, "lr": 0.00036023976023976024, "time_ms": 2685.605525970459, "eta_seconds": 25244.691944122314, "eta": "7:00:44", "timestamp": 1765121414.1582808} +{"step": 610, "loss": 7.757828235626221, "lr": 0.0003662337662337662, "time_ms": 2685.307741165161, "eta_seconds": 25215.039689540863, "eta": "7:00:15", "timestamp": 1765121441.0180404} +{"step": 620, "loss": 7.671686172485352, "lr": 0.0003722277722277722, "time_ms": 2685.6460571289062, "eta_seconds": 25191.36001586914, "eta": "6:59:51", "timestamp": 1765121467.877593} +{"step": 630, "loss": 7.621791839599609, "lr": 0.00037822177822177823, "time_ms": 2685.410261154175, "eta_seconds": 25162.294147014618, "eta": "6:59:22", "timestamp": 1765121494.7407098} +{"step": 640, "loss": 7.464466571807861, "lr": 0.00038421578421578414, "time_ms": 2685.8890056610107, "eta_seconds": 25139.92109298706, "eta": "6:58:59", "timestamp": 1765121521.6027257} +{"step": 650, "loss": 7.440684795379639, "lr": 0.00039020979020979016, "time_ms": 2685.9965324401855, "eta_seconds": 25114.067578315735, "eta": "6:58:34", "timestamp": 1765121548.4617672} +{"step": 660, "loss": 7.184878349304199, "lr": 0.0003962037962037962, "time_ms": 2686.110258102417, "eta_seconds": 25088.269810676575, "eta": "6:58:08", "timestamp": 1765121575.3242047} +{"step": 670, "loss": 7.3195061683654785, "lr": 0.00040219780219780213, "time_ms": 2685.7752799987793, "eta_seconds": 25058.28336238861, "eta": "6:57:38", "timestamp": 1765121602.1865685} +{"step": 680, "loss": 7.2969584465026855, "lr": 0.00040819180819180815, "time_ms": 2686.6254806518555, "eta_seconds": 25039.349479675293, "eta": "6:57:19", "timestamp": 1765121629.050249} +{"step": 690, "loss": 7.042532920837402, "lr": 0.00041418581418581417, "time_ms": 2686.09619140625, "eta_seconds": 25007.555541992188, "eta": "6:56:47", "timestamp": 1765121655.9154713} +{"step": 700, "loss": 7.124141216278076, "lr": 0.00042017982017982013, "time_ms": 2684.8886013031006, "eta_seconds": 24969.463992118835, "eta": "6:56:09", "timestamp": 1765121682.7800746} +{"step": 710, "loss": 6.965004920959473, "lr": 0.00042617382617382614, "time_ms": 2686.56587600708, "eta_seconds": 24958.196988105774, "eta": "6:55:58", "timestamp": 1765121709.6425798} +{"step": 720, "loss": 7.090205669403076, "lr": 0.00043216783216783216, "time_ms": 2686.3348484039307, "eta_seconds": 24929.187393188477, "eta": "6:55:29", "timestamp": 1765121736.5063298} +{"step": 730, "loss": 7.000826835632324, "lr": 0.0004381618381618381, "time_ms": 2684.6728324890137, "eta_seconds": 24886.917157173157, "eta": "6:54:46", "timestamp": 1765121763.3656955} +{"step": 740, "loss": 6.89832878112793, "lr": 0.0004441558441558441, "time_ms": 2684.767961502075, "eta_seconds": 24860.951323509216, "eta": "6:54:20", "timestamp": 1765121790.2255142} +{"step": 750, "loss": 6.939929962158203, "lr": 0.0004501498501498501, "time_ms": 2685.83083152771, "eta_seconds": 24843.935191631317, "eta": "6:54:03", "timestamp": 1765121817.0816624} +{"step": 760, "loss": 6.83512544631958, "lr": 0.0004561438561438561, "time_ms": 2685.668468475342, "eta_seconds": 24815.57664871216, "eta": "6:53:35", "timestamp": 1765121843.9363298} +{"step": 770, "loss": 6.759770393371582, "lr": 0.0004621378621378621, "time_ms": 2686.134099960327, "eta_seconds": 24793.01774263382, "eta": "6:53:13", "timestamp": 1765121870.7992418} +{"step": 780, "loss": 6.887198448181152, "lr": 0.0004681318681318681, "time_ms": 2686.600685119629, "eta_seconds": 24770.45831680298, "eta": "6:52:50", "timestamp": 1765121897.6636226} +{"step": 790, "loss": 6.741876125335693, "lr": 0.0004741258741258741, "time_ms": 2684.7281455993652, "eta_seconds": 24726.346220970154, "eta": "6:52:06", "timestamp": 1765121924.528988} +{"step": 800, "loss": 6.704683780670166, "lr": 0.00048011988011988007, "time_ms": 2689.269542694092, "eta_seconds": 24741.279792785645, "eta": "6:52:21", "timestamp": 1765121951.400036} +{"step": 810, "loss": 6.5955047607421875, "lr": 0.0004861138861138861, "time_ms": 2685.23907661438, "eta_seconds": 24677.34711408615, "eta": "6:51:17", "timestamp": 1765121978.265252} +{"step": 820, "loss": 6.646420001983643, "lr": 0.0004921078921078921, "time_ms": 2685.8112812042236, "eta_seconds": 24655.747561454773, "eta": "6:50:55", "timestamp": 1765122005.135324} +{"step": 830, "loss": 6.598686218261719, "lr": 0.000498101898101898, "time_ms": 2685.8577728271484, "eta_seconds": 24629.31577682495, "eta": "6:50:29", "timestamp": 1765122032.006535} +{"step": 840, "loss": 6.565834999084473, "lr": 0.000504095904095904, "time_ms": 2685.3716373443604, "eta_seconds": 24598.00419807434, "eta": "6:49:58", "timestamp": 1765122058.8758988} +{"step": 850, "loss": 6.528083801269531, "lr": 0.00051008991008991, "time_ms": 2685.727596282959, "eta_seconds": 24574.407505989075, "eta": "6:49:34", "timestamp": 1765122085.7438421} +{"step": 860, "loss": 6.440849304199219, "lr": 0.000516083916083916, "time_ms": 2687.0501041412354, "eta_seconds": 24559.63795185089, "eta": "6:49:19", "timestamp": 1765122112.612876} +{"step": 870, "loss": 6.455558776855469, "lr": 0.0005220779220779221, "time_ms": 2686.4538192749023, "eta_seconds": 24527.32336997986, "eta": "6:48:47", "timestamp": 1765122139.4836102} +{"step": 880, "loss": 6.385119438171387, "lr": 0.0005280719280719281, "time_ms": 2685.9142780303955, "eta_seconds": 24495.538215637207, "eta": "6:48:15", "timestamp": 1765122166.3486774} +{"step": 890, "loss": 6.395497798919678, "lr": 0.000534065934065934, "time_ms": 2686.5530014038086, "eta_seconds": 24474.497842788696, "eta": "6:47:54", "timestamp": 1765122193.2187178} +{"step": 900, "loss": 6.3999528884887695, "lr": 0.00054005994005994, "time_ms": 2686.0904693603516, "eta_seconds": 24443.4232711792, "eta": "6:47:23", "timestamp": 1765122220.0838802} +{"step": 910, "loss": 6.584550380706787, "lr": 0.000546053946053946, "time_ms": 2687.281608581543, "eta_seconds": 24427.389822006226, "eta": "6:47:07", "timestamp": 1765122246.9554513} +{"step": 920, "loss": 6.415899753570557, "lr": 0.000552047952047952, "time_ms": 2686.6979598999023, "eta_seconds": 24395.217475891113, "eta": "6:46:35", "timestamp": 1765122273.8305373} +{"step": 930, "loss": 6.432614326477051, "lr": 0.0005580419580419581, "time_ms": 2686.631202697754, "eta_seconds": 24367.745008468628, "eta": "6:46:07", "timestamp": 1765122300.7060165} +{"step": 940, "loss": 6.357086658477783, "lr": 0.0005640359640359641, "time_ms": 2687.2456073760986, "eta_seconds": 24346.445202827454, "eta": "6:45:46", "timestamp": 1765122327.5820844} +{"step": 950, "loss": 6.279504299163818, "lr": 0.00057002997002997, "time_ms": 2686.1038208007812, "eta_seconds": 24309.23957824707, "eta": "6:45:09", "timestamp": 1765122354.4642818} +{"step": 960, "loss": 6.364739894866943, "lr": 0.000576023976023976, "time_ms": 2687.244653701782, "eta_seconds": 24292.69166946411, "eta": "6:44:52", "timestamp": 1765122381.3391218} +{"step": 970, "loss": 6.381607532501221, "lr": 0.0005820179820179819, "time_ms": 2688.206672668457, "eta_seconds": 24274.506254196167, "eta": "6:44:34", "timestamp": 1765122408.222101} +{"step": 980, "loss": 6.158621788024902, "lr": 0.0005880119880119879, "time_ms": 2687.0269775390625, "eta_seconds": 24236.983337402344, "eta": "6:43:56", "timestamp": 1765122435.1035419} +{"step": 990, "loss": 6.173436641693115, "lr": 0.0005940059940059939, "time_ms": 2688.02547454834, "eta_seconds": 24219.109525680542, "eta": "6:43:39", "timestamp": 1765122461.982508} +{"step": 1000, "loss": 6.1511664390563965, "lr": 0.0006, "time_ms": 52750.64706802368, "eta_seconds": 474755.82361221313, "eta": "5 days, 11:52:35", "timestamp": 1765122538.9253614} +{"step": 1010, "loss": 6.143887996673584, "lr": 0.0005999983550676034, "time_ms": 2688.1625652313232, "eta_seconds": 24166.581461429596, "eta": "6:42:46", "timestamp": 1765122565.7994134} +{"step": 1020, "loss": 6.213443756103516, "lr": 0.0005999934202904565, "time_ms": 2689.4900798797607, "eta_seconds": 24151.62091732025, "eta": "6:42:31", "timestamp": 1765122592.699499} +{"step": 1030, "loss": 6.061520576477051, "lr": 0.0005999851957286882, "time_ms": 2689.7153854370117, "eta_seconds": 24126.747007369995, "eta": "6:42:06", "timestamp": 1765122619.599735} +{"step": 1040, "loss": 6.144708633422852, "lr": 0.0005999736814825121, "time_ms": 2688.9772415161133, "eta_seconds": 24093.236083984375, "eta": "6:41:33", "timestamp": 1765122646.5007746} +{"step": 1050, "loss": 6.147915840148926, "lr": 0.0005999588776922256, "time_ms": 2690.8462047576904, "eta_seconds": 24083.07353258133, "eta": "6:41:23", "timestamp": 1765122673.4030704} +{"step": 1060, "loss": 6.081887245178223, "lr": 0.0005999407845382082, "time_ms": 2689.561367034912, "eta_seconds": 24044.678621292114, "eta": "6:40:44", "timestamp": 1765122700.3028483} +{"step": 1070, "loss": 5.944100856781006, "lr": 0.0005999194022409194, "time_ms": 2688.474178314209, "eta_seconds": 24008.074412345886, "eta": "6:40:08", "timestamp": 1765122727.2013466} +{"step": 1080, "loss": 5.950677394866943, "lr": 0.0005998947310608956, "time_ms": 2688.8089179992676, "eta_seconds": 23984.175548553467, "eta": "6:39:44", "timestamp": 1765122754.1022463} +{"step": 1090, "loss": 5.9500627517700195, "lr": 0.0005998667712987475, "time_ms": 2689.481258392334, "eta_seconds": 23963.278012275696, "eta": "6:39:23", "timestamp": 1765122780.9994802} +{"step": 1100, "loss": 6.030828475952148, "lr": 0.0005998355232951559, "time_ms": 2689.6204948425293, "eta_seconds": 23937.62240409851, "eta": "6:38:57", "timestamp": 1765122807.900335} +{"step": 1110, "loss": 5.883779048919678, "lr": 0.0005998009874308676, "time_ms": 2691.0197734832764, "eta_seconds": 23923.165786266327, "eta": "6:38:43", "timestamp": 1765122834.8027976} +{"step": 1120, "loss": 5.959603309631348, "lr": 0.0005997631641266917, "time_ms": 2689.3434524536133, "eta_seconds": 23881.369857788086, "eta": "6:38:01", "timestamp": 1765122861.7046688} +{"step": 1130, "loss": 5.959445953369141, "lr": 0.0005997220538434929, "time_ms": 2689.669132232666, "eta_seconds": 23857.365202903748, "eta": "6:37:37", "timestamp": 1765122888.6093028} +{"step": 1140, "loss": 5.868113994598389, "lr": 0.0005996776570821871, "time_ms": 2688.1940364837646, "eta_seconds": 23817.399163246155, "eta": "6:36:57", "timestamp": 1765122915.5074015} +{"step": 1150, "loss": 5.774717807769775, "lr": 0.0005996299743837349, "time_ms": 2690.021753311157, "eta_seconds": 23806.69251680374, "eta": "6:36:46", "timestamp": 1765122942.406164} +{"step": 1160, "loss": 5.775592803955078, "lr": 0.0005995790063291348, "time_ms": 2689.711809158325, "eta_seconds": 23777.052392959595, "eta": "6:36:17", "timestamp": 1765122969.3085918} +{"step": 1170, "loss": 5.86311674118042, "lr": 0.0005995247535394166, "time_ms": 2688.911199569702, "eta_seconds": 23743.08589220047, "eta": "6:35:43", "timestamp": 1765122996.213499} +{"step": 1180, "loss": 5.816684722900391, "lr": 0.0005994672166756333, "time_ms": 2689.279317855835, "eta_seconds": 23719.443583488464, "eta": "6:35:19", "timestamp": 1765123023.1138358} +{"step": 1190, "loss": 5.800718784332275, "lr": 0.0005994063964388535, "time_ms": 2688.938617706299, "eta_seconds": 23689.549221992493, "eta": "6:34:49", "timestamp": 1765123050.0123057} +{"step": 1200, "loss": 5.64614200592041, "lr": 0.0005993422935701524, "time_ms": 2688.7292861938477, "eta_seconds": 23660.81771850586, "eta": "6:34:20", "timestamp": 1765123076.9142306} +{"step": 1210, "loss": 5.775592803955078, "lr": 0.0005992749088506036, "time_ms": 2689.058780670166, "eta_seconds": 23636.82668209076, "eta": "6:33:56", "timestamp": 1765123103.8150866} +{"step": 1220, "loss": 5.688136577606201, "lr": 0.0005992042431012685, "time_ms": 2689.5649433135986, "eta_seconds": 23614.380202293396, "eta": "6:33:34", "timestamp": 1765123130.714806} +{"step": 1230, "loss": 5.592213153839111, "lr": 0.0005991302971831867, "time_ms": 2690.415143966675, "eta_seconds": 23594.940812587738, "eta": "6:33:14", "timestamp": 1765123157.615186} +{"step": 1240, "loss": 5.573948860168457, "lr": 0.0005990530719973661, "time_ms": 2690.1841163635254, "eta_seconds": 23566.012859344482, "eta": "6:32:46", "timestamp": 1765123184.5143056} +{"step": 1250, "loss": 5.54298210144043, "lr": 0.0005989725684847712, "time_ms": 2690.5720233917236, "eta_seconds": 23542.50520467758, "eta": "6:32:22", "timestamp": 1765123211.4161212} +{"step": 1260, "loss": 5.603926181793213, "lr": 0.0005988887876263119, "time_ms": 2688.910484313965, "eta_seconds": 23501.077632904053, "eta": "6:31:41", "timestamp": 1765123238.3158803} +{"step": 1270, "loss": 5.569946765899658, "lr": 0.0005988017304428316, "time_ms": 2689.2940998077393, "eta_seconds": 23477.537491321564, "eta": "6:31:17", "timestamp": 1765123265.2153165} +{"step": 1280, "loss": 5.528009414672852, "lr": 0.0005987113979950944, "time_ms": 2690.838575363159, "eta_seconds": 23464.112377166748, "eta": "6:31:04", "timestamp": 1765123292.1210725} +{"step": 1290, "loss": 5.697690963745117, "lr": 0.0005986177913837728, "time_ms": 2690.0644302368164, "eta_seconds": 23430.46118736267, "eta": "6:30:30", "timestamp": 1765123319.0226107} +{"step": 1300, "loss": 5.562711715698242, "lr": 0.0005985209117494337, "time_ms": 2690.053939819336, "eta_seconds": 23403.469276428223, "eta": "6:30:03", "timestamp": 1765123345.9243383} +{"step": 1310, "loss": 5.477464199066162, "lr": 0.0005984207602725251, "time_ms": 2689.4326210021973, "eta_seconds": 23371.169476509094, "eta": "6:29:31", "timestamp": 1765123372.827006} +{"step": 1320, "loss": 5.5441083908081055, "lr": 0.000598317338173361, "time_ms": 2689.7928714752197, "eta_seconds": 23347.402124404907, "eta": "6:29:07", "timestamp": 1765123399.728433} +{"step": 1330, "loss": 5.481055736541748, "lr": 0.000598210646712107, "time_ms": 2689.0063285827637, "eta_seconds": 23313.68486881256, "eta": "6:28:33", "timestamp": 1765123426.626512} +{"step": 1340, "loss": 5.590710639953613, "lr": 0.0005981006871887649, "time_ms": 2689.6700859069824, "eta_seconds": 23292.542943954468, "eta": "6:28:12", "timestamp": 1765123453.5275724} +{"step": 1350, "loss": 5.507302761077881, "lr": 0.0005979874609431569, "time_ms": 2690.3316974639893, "eta_seconds": 23271.369183063507, "eta": "6:27:51", "timestamp": 1765123480.427398} +{"step": 1360, "loss": 5.357255935668945, "lr": 0.000597870969354909, "time_ms": 2689.1226768493652, "eta_seconds": 23234.019927978516, "eta": "6:27:14", "timestamp": 1765123507.3267548} +{"step": 1370, "loss": 5.371493339538574, "lr": 0.0005977512138434343, "time_ms": 2688.5745525360107, "eta_seconds": 23202.398388385773, "eta": "6:26:42", "timestamp": 1765123534.2281713} +{"step": 1380, "loss": 5.406754970550537, "lr": 0.0005976281958679162, "time_ms": 2690.5357837677, "eta_seconds": 23192.418456077576, "eta": "6:26:32", "timestamp": 1765123561.1328943} +{"step": 1390, "loss": 5.3553972244262695, "lr": 0.0005975019169272897, "time_ms": 2689.5699501037598, "eta_seconds": 23157.19727039337, "eta": "6:25:57", "timestamp": 1765123588.0342567} +{"step": 1400, "loss": 5.363597393035889, "lr": 0.000597372378560224, "time_ms": 2689.809799194336, "eta_seconds": 23132.36427307129, "eta": "6:25:32", "timestamp": 1765123614.9351118} +{"step": 1410, "loss": 5.279834270477295, "lr": 0.000597239582345103, "time_ms": 2690.551996231079, "eta_seconds": 23111.84164762497, "eta": "6:25:11", "timestamp": 1765123641.8347948} +{"step": 1420, "loss": 5.355911731719971, "lr": 0.0005971035299000069, "time_ms": 2690.371036529541, "eta_seconds": 23083.383493423462, "eta": "6:24:43", "timestamp": 1765123668.73617} +{"step": 1430, "loss": 5.340585708618164, "lr": 0.0005969642228826915, "time_ms": 2688.040018081665, "eta_seconds": 23036.50295495987, "eta": "6:23:56", "timestamp": 1765123695.6299567} +{"step": 1440, "loss": 5.435864448547363, "lr": 0.0005968216629905692, "time_ms": 2689.3234252929688, "eta_seconds": 23020.608520507812, "eta": "6:23:40", "timestamp": 1765123722.5254517} +{"step": 1450, "loss": 5.355688095092773, "lr": 0.0005966758519606872, "time_ms": 2689.2354488372803, "eta_seconds": 22992.963087558746, "eta": "6:23:12", "timestamp": 1765123749.4258678} +{"step": 1460, "loss": 5.241639614105225, "lr": 0.0005965267915697067, "time_ms": 2688.742160797119, "eta_seconds": 22961.858053207397, "eta": "6:22:41", "timestamp": 1765123776.3245196} +{"step": 1470, "loss": 5.266523361206055, "lr": 0.0005963744836338816, "time_ms": 2690.6824111938477, "eta_seconds": 22951.52096748352, "eta": "6:22:31", "timestamp": 1765123803.224314} +{"step": 1480, "loss": 5.196133613586426, "lr": 0.0005962189300090363, "time_ms": 2691.359519958496, "eta_seconds": 22930.383110046387, "eta": "6:22:10", "timestamp": 1765123830.1270502} +{"step": 1490, "loss": 5.191649436950684, "lr": 0.0005960601325905423, "time_ms": 2690.066337585449, "eta_seconds": 22892.464532852173, "eta": "6:21:32", "timestamp": 1765123857.0320933} +{"step": 1500, "loss": 5.247959136962891, "lr": 0.0005958980933132962, "time_ms": 52791.23902320862, "eta_seconds": 448725.53169727325, "eta": "5 days, 4:38:45", "timestamp": 1765123934.0361476} +{"step": 1510, "loss": 5.32852029800415, "lr": 0.0005957328141516952, "time_ms": 2689.5833015441895, "eta_seconds": 22834.56223011017, "eta": "6:20:34", "timestamp": 1765123960.9241555} +{"step": 1520, "loss": 5.078707218170166, "lr": 0.0005955642971196142, "time_ms": 2689.277410507202, "eta_seconds": 22805.072441101074, "eta": "6:20:05", "timestamp": 1765123987.8239088} +{"step": 1530, "loss": 5.228704929351807, "lr": 0.0005953925442703796, "time_ms": 2689.476251602173, "eta_seconds": 22779.863851070404, "eta": "6:19:39", "timestamp": 1765124014.7247176} +{"step": 1540, "loss": 5.176631927490234, "lr": 0.000595217557696746, "time_ms": 2690.0246143341064, "eta_seconds": 22757.60823726654, "eta": "6:19:17", "timestamp": 1765124041.6271713} +{"step": 1550, "loss": 5.267725944519043, "lr": 0.0005950393395308692, "time_ms": 2690.298557281494, "eta_seconds": 22733.022809028625, "eta": "6:18:53", "timestamp": 1765124068.5301373} +{"step": 1560, "loss": 5.0185546875, "lr": 0.0005948578919442816, "time_ms": 2690.1421546936035, "eta_seconds": 22704.799785614014, "eta": "6:18:24", "timestamp": 1765124095.4325} +{"step": 1570, "loss": 5.176824569702148, "lr": 0.0005946732171478649, "time_ms": 2689.6560192108154, "eta_seconds": 22673.800241947174, "eta": "6:17:53", "timestamp": 1765124122.3368633} +{"step": 1580, "loss": 5.131961345672607, "lr": 0.0005944853173918229, "time_ms": 2689.350128173828, "eta_seconds": 22644.328079223633, "eta": "6:17:24", "timestamp": 1765124149.2405825} +{"step": 1590, "loss": 5.163421630859375, "lr": 0.0005942941949656549, "time_ms": 2689.868211746216, "eta_seconds": 22621.791660785675, "eta": "6:17:01", "timestamp": 1765124176.143893} +{"step": 1600, "loss": 5.184752464294434, "lr": 0.0005940998521981274, "time_ms": 2689.5687580108643, "eta_seconds": 22592.37756729126, "eta": "6:16:32", "timestamp": 1765124203.0448341} +{"step": 1610, "loss": 5.112778663635254, "lr": 0.0005939022914572459, "time_ms": 2688.4093284606934, "eta_seconds": 22555.754265785217, "eta": "6:15:55", "timestamp": 1765124229.9510524} +{"step": 1620, "loss": 5.1714324951171875, "lr": 0.0005937015151502253, "time_ms": 2690.5524730682373, "eta_seconds": 22546.82972431183, "eta": "6:15:46", "timestamp": 1765124256.8535714} +{"step": 1630, "loss": 4.985273361206055, "lr": 0.0005934975257234617, "time_ms": 2688.6672973632812, "eta_seconds": 22504.145278930664, "eta": "6:15:04", "timestamp": 1765124283.7578146} +{"step": 1640, "loss": 5.042994976043701, "lr": 0.000593290325662502, "time_ms": 2689.197301864624, "eta_seconds": 22481.689443588257, "eta": "6:14:41", "timestamp": 1765124310.6609461} +{"step": 1650, "loss": 4.992228031158447, "lr": 0.0005930799174920135, "time_ms": 2690.4051303863525, "eta_seconds": 22464.882838726044, "eta": "6:14:24", "timestamp": 1765124337.5628526} +{"step": 1660, "loss": 5.010766506195068, "lr": 0.0005928663037757532, "time_ms": 2689.666509628296, "eta_seconds": 22431.818690299988, "eta": "6:13:51", "timestamp": 1765124364.4657145} +{"step": 1670, "loss": 4.953133583068848, "lr": 0.0005926494871165371, "time_ms": 2689.713478088379, "eta_seconds": 22405.313272476196, "eta": "6:13:25", "timestamp": 1765124391.366104} +{"step": 1680, "loss": 4.9790120124816895, "lr": 0.0005924294701562075, "time_ms": 2688.25364112854, "eta_seconds": 22366.270294189453, "eta": "6:12:46", "timestamp": 1765124418.2587678} +{"step": 1690, "loss": 4.86929988861084, "lr": 0.0005922062555756017, "time_ms": 2688.2002353668213, "eta_seconds": 22338.943955898285, "eta": "6:12:18", "timestamp": 1765124445.1397734} +{"step": 1700, "loss": 5.062023639678955, "lr": 0.000591979846094519, "time_ms": 2689.194917678833, "eta_seconds": 22320.317816734314, "eta": "6:12:00", "timestamp": 1765124472.0266626} +{"step": 1710, "loss": 4.921777248382568, "lr": 0.0005917502444716875, "time_ms": 2687.8154277801514, "eta_seconds": 22281.989896297455, "eta": "6:11:21", "timestamp": 1765124498.923863} +{"step": 1720, "loss": 4.832278251647949, "lr": 0.0005915174535047304, "time_ms": 2690.0792121887207, "eta_seconds": 22273.855876922607, "eta": "6:11:13", "timestamp": 1765124525.8243341} +{"step": 1730, "loss": 5.000360488891602, "lr": 0.0005912814760301322, "time_ms": 2689.5461082458496, "eta_seconds": 22242.546315193176, "eta": "6:10:42", "timestamp": 1765124552.7244072} +{"step": 1740, "loss": 4.8151164054870605, "lr": 0.000591042314923204, "time_ms": 2691.019296646118, "eta_seconds": 22227.819390296936, "eta": "6:10:27", "timestamp": 1765124579.6232278} +{"step": 1750, "loss": 4.849522590637207, "lr": 0.0005907999730980484, "time_ms": 2689.249038696289, "eta_seconds": 22186.304569244385, "eta": "6:09:46", "timestamp": 1765124606.5230172} +{"step": 1760, "loss": 4.961391448974609, "lr": 0.000590554453507524, "time_ms": 2689.666986465454, "eta_seconds": 22162.85596847534, "eta": "6:09:22", "timestamp": 1765124633.4262755} +{"step": 1770, "loss": 4.8241400718688965, "lr": 0.0005903057591432097, "time_ms": 2689.9256706237793, "eta_seconds": 22138.088269233704, "eta": "6:08:58", "timestamp": 1765124660.3283496} +{"step": 1780, "loss": 4.888782501220703, "lr": 0.0005900538930353677, "time_ms": 2689.969301223755, "eta_seconds": 22111.547656059265, "eta": "6:08:31", "timestamp": 1765124687.2323804} +{"step": 1790, "loss": 4.8769612312316895, "lr": 0.000589798858252907, "time_ms": 2689.8393630981445, "eta_seconds": 22083.581171035767, "eta": "6:08:03", "timestamp": 1765124714.1317272} +{"step": 1800, "loss": 4.846798419952393, "lr": 0.000589540657903346, "time_ms": 2689.652442932129, "eta_seconds": 22055.150032043457, "eta": "6:07:35", "timestamp": 1765124741.0340238} +{"step": 1810, "loss": 4.916466236114502, "lr": 0.0005892792951327746, "time_ms": 2690.0696754455566, "eta_seconds": 22031.67064189911, "eta": "6:07:11", "timestamp": 1765124767.9360616} +{"step": 1820, "loss": 4.7886247634887695, "lr": 0.0005890147731258154, "time_ms": 2687.9754066467285, "eta_seconds": 21987.63882637024, "eta": "6:06:27", "timestamp": 1765124794.8263743} +{"step": 1830, "loss": 4.800199508666992, "lr": 0.0005887470951055859, "time_ms": 2689.6233558654785, "eta_seconds": 21974.22281742096, "eta": "6:06:14", "timestamp": 1765124821.7199373} +{"step": 1840, "loss": 4.767756462097168, "lr": 0.000588476264333658, "time_ms": 2690.0880336761475, "eta_seconds": 21951.118354797363, "eta": "6:05:51", "timestamp": 1765124848.6208858} +{"step": 1850, "loss": 4.776322841644287, "lr": 0.0005882022841100196, "time_ms": 2688.704490661621, "eta_seconds": 21912.941598892212, "eta": "6:05:12", "timestamp": 1765124875.5212204} +{"step": 1860, "loss": 4.576502799987793, "lr": 0.0005879251577730327, "time_ms": 2689.521074295044, "eta_seconds": 21892.701544761658, "eta": "6:04:52", "timestamp": 1765124902.4222882} +{"step": 1870, "loss": 4.655456066131592, "lr": 0.0005876448886993947, "time_ms": 2688.2739067077637, "eta_seconds": 21855.66686153412, "eta": "6:04:15", "timestamp": 1765124929.319978} +{"step": 1880, "loss": 4.768405914306641, "lr": 0.0005873614803040957, "time_ms": 2689.3739700317383, "eta_seconds": 21837.716636657715, "eta": "6:03:57", "timestamp": 1765124956.2175124} +{"step": 1890, "loss": 4.8236799240112305, "lr": 0.0005870749360403774, "time_ms": 2690.519332885742, "eta_seconds": 21820.11178970337, "eta": "6:03:40", "timestamp": 1765124983.1161835} +{"step": 1900, "loss": 4.86521577835083, "lr": 0.0005867852593996914, "time_ms": 2690.5503273010254, "eta_seconds": 21793.457651138306, "eta": "6:03:13", "timestamp": 1765125010.0160465} +{"step": 1910, "loss": 4.716339588165283, "lr": 0.0005864924539116561, "time_ms": 2688.3695125579834, "eta_seconds": 21748.909356594086, "eta": "6:02:28", "timestamp": 1765125036.915023} +{"step": 1920, "loss": 4.827800750732422, "lr": 0.000586196523144014, "time_ms": 2689.4869804382324, "eta_seconds": 21731.054801940918, "eta": "6:02:11", "timestamp": 1765125063.8155928} +{"step": 1930, "loss": 4.738182544708252, "lr": 0.0005858974707025881, "time_ms": 2691.1165714263916, "eta_seconds": 21717.31073141098, "eta": "6:01:57", "timestamp": 1765125090.718251} +{"step": 1940, "loss": 4.590117454528809, "lr": 0.0005855953002312379, "time_ms": 2689.223289489746, "eta_seconds": 21675.139713287354, "eta": "6:01:15", "timestamp": 1765125117.6225004} +{"step": 1950, "loss": 4.471175193786621, "lr": 0.0005852900154118155, "time_ms": 2690.491199493408, "eta_seconds": 21658.454155921936, "eta": "6:00:58", "timestamp": 1765125144.5258706} +{"step": 1960, "loss": 4.581606388092041, "lr": 0.0005849816199641198, "time_ms": 2690.1652812957764, "eta_seconds": 21628.928861618042, "eta": "6:00:28", "timestamp": 1765125171.4323215} +{"step": 1970, "loss": 4.5900750160217285, "lr": 0.0005846701176458522, "time_ms": 2690.5159950256348, "eta_seconds": 21604.843440055847, "eta": "6:00:04", "timestamp": 1765125198.3371727} +{"step": 1980, "loss": 4.622983455657959, "lr": 0.0005843555122525701, "time_ms": 2690.4196739196777, "eta_seconds": 21577.165784835815, "eta": "5:59:37", "timestamp": 1765125225.2425902} +{"step": 1990, "loss": 4.545095920562744, "lr": 0.0005840378076176409, "time_ms": 2688.927173614502, "eta_seconds": 21538.30666065216, "eta": "5:58:58", "timestamp": 1765125252.1466713} +{"step": 2000, "loss": 4.631114959716797, "lr": 0.0005837170076121953, "time_ms": 52745.16439437866, "eta_seconds": 421961.3151550293, "eta": "4 days, 21:12:41", "timestamp": 1765125329.106254} +{"step": 2010, "loss": 4.499159812927246, "lr": 0.0005833931161450801, "time_ms": 2689.854383468628, "eta_seconds": 21491.936523914337, "eta": "5:58:11", "timestamp": 1765125355.9915245} +{"step": 2020, "loss": 4.651795387268066, "lr": 0.0005830661371628107, "time_ms": 2689.852714538574, "eta_seconds": 21465.024662017822, "eta": "5:57:45", "timestamp": 1765125382.8874786} +{"step": 2030, "loss": 4.451202392578125, "lr": 0.0005827360746495227, "time_ms": 2689.743995666504, "eta_seconds": 21437.259645462036, "eta": "5:57:17", "timestamp": 1765125409.7849338} +{"step": 2040, "loss": 4.467798709869385, "lr": 0.0005824029326269238, "time_ms": 2689.3551349639893, "eta_seconds": 21407.266874313354, "eta": "5:56:47", "timestamp": 1765125436.6876693} +{"step": 2050, "loss": 4.444151878356934, "lr": 0.0005820667151542444, "time_ms": 2688.728094100952, "eta_seconds": 21375.38834810257, "eta": "5:56:15", "timestamp": 1765125463.587287} +{"step": 2060, "loss": 4.495687961578369, "lr": 0.0005817274263281882, "time_ms": 2690.3722286224365, "eta_seconds": 21361.555495262146, "eta": "5:56:01", "timestamp": 1765125490.4922187} +{"step": 2070, "loss": 4.599917888641357, "lr": 0.0005813850702828826, "time_ms": 2690.3960704803467, "eta_seconds": 21334.84083890915, "eta": "5:55:34", "timestamp": 1765125517.3989065} +{"step": 2080, "loss": 4.605347633361816, "lr": 0.0005810396511898279, "time_ms": 2691.009044647217, "eta_seconds": 21312.791633605957, "eta": "5:55:12", "timestamp": 1765125544.3032367} +{"step": 2090, "loss": 4.479176044464111, "lr": 0.0005806911732578466, "time_ms": 2689.573287963867, "eta_seconds": 21274.52470779419, "eta": "5:54:34", "timestamp": 1765125571.2084024} +{"step": 2100, "loss": 4.454916000366211, "lr": 0.0005803396407330325, "time_ms": 2689.7099018096924, "eta_seconds": 21248.70822429657, "eta": "5:54:08", "timestamp": 1765125598.1150725} +{"step": 2110, "loss": 4.535158634185791, "lr": 0.0005799850578986985, "time_ms": 2690.4802322387695, "eta_seconds": 21227.88903236389, "eta": "5:53:47", "timestamp": 1765125625.0211976} +{"step": 2120, "loss": 4.365918159484863, "lr": 0.0005796274290753245, "time_ms": 2690.9713745117188, "eta_seconds": 21204.854431152344, "eta": "5:53:24", "timestamp": 1765125651.9288116} +{"step": 2130, "loss": 4.53456449508667, "lr": 0.0005792667586205048, "time_ms": 2689.976215362549, "eta_seconds": 21170.11281490326, "eta": "5:52:50", "timestamp": 1765125678.835993} +{"step": 2140, "loss": 4.418206214904785, "lr": 0.0005789030509288951, "time_ms": 2690.8910274505615, "eta_seconds": 21150.403475761414, "eta": "5:52:30", "timestamp": 1765125705.745704} +{"step": 2150, "loss": 4.566821575164795, "lr": 0.0005785363104321589, "time_ms": 2690.556526184082, "eta_seconds": 21120.868730545044, "eta": "5:52:00", "timestamp": 1765125732.6561654} +{"step": 2160, "loss": 4.390469551086426, "lr": 0.0005781665415989133, "time_ms": 2690.2236938476562, "eta_seconds": 21091.353759765625, "eta": "5:51:31", "timestamp": 1765125759.5646899} +{"step": 2170, "loss": 4.507580757141113, "lr": 0.0005777937489346749, "time_ms": 2690.2124881744385, "eta_seconds": 21064.363782405853, "eta": "5:51:04", "timestamp": 1765125786.474586} +{"step": 2180, "loss": 4.589878082275391, "lr": 0.0005774179369818046, "time_ms": 2689.869165420532, "eta_seconds": 21034.776873588562, "eta": "5:50:34", "timestamp": 1765125813.3824818} +{"step": 2190, "loss": 4.266302108764648, "lr": 0.0005770391103194527, "time_ms": 2691.129684448242, "eta_seconds": 21017.72283554077, "eta": "5:50:17", "timestamp": 1765125840.2913141} +{"step": 2200, "loss": 4.3395514488220215, "lr": 0.0005766572735635022, "time_ms": 2690.476179122925, "eta_seconds": 20985.714197158813, "eta": "5:49:45", "timestamp": 1765125867.2005522} +{"step": 2210, "loss": 4.426790237426758, "lr": 0.0005762724313665137, "time_ms": 2690.4196739196777, "eta_seconds": 20958.36925983429, "eta": "5:49:18", "timestamp": 1765125894.1072028} +{"step": 2220, "loss": 4.375397682189941, "lr": 0.0005758845884176677, "time_ms": 2687.8440380096436, "eta_seconds": 20911.426615715027, "eta": "5:48:31", "timestamp": 1765125921.0094993} +{"step": 2230, "loss": 4.407618999481201, "lr": 0.0005754937494427085, "time_ms": 2690.1652812957764, "eta_seconds": 20902.584235668182, "eta": "5:48:22", "timestamp": 1765125947.9058745} +{"step": 2240, "loss": 4.4002604484558105, "lr": 0.0005750999192038853, "time_ms": 2689.9304389953613, "eta_seconds": 20873.860206604004, "eta": "5:47:53", "timestamp": 1765125974.8076124} +{"step": 2250, "loss": 4.357213020324707, "lr": 0.0005747031024998955, "time_ms": 2691.0219192504883, "eta_seconds": 20855.419874191284, "eta": "5:47:35", "timestamp": 1765126001.7128844} +{"step": 2260, "loss": 4.385488510131836, "lr": 0.0005743033041658252, "time_ms": 2689.8229122161865, "eta_seconds": 20819.229340553284, "eta": "5:46:59", "timestamp": 1765126028.6218252} +{"step": 2270, "loss": 4.211174011230469, "lr": 0.0005739005290730912, "time_ms": 2690.2060508728027, "eta_seconds": 20795.292773246765, "eta": "5:46:35", "timestamp": 1765126055.5306375} +{"step": 2280, "loss": 4.26361608505249, "lr": 0.0005734947821293807, "time_ms": 2690.3045177459717, "eta_seconds": 20769.1508769989, "eta": "5:46:09", "timestamp": 1765126082.4353797} +{"step": 2290, "loss": 4.374439239501953, "lr": 0.0005730860682785922, "time_ms": 2689.531087875366, "eta_seconds": 20736.284687519073, "eta": "5:45:36", "timestamp": 1765126109.3330204} +{"step": 2300, "loss": 4.300197601318359, "lr": 0.0005726743925007751, "time_ms": 2689.82195854187, "eta_seconds": 20711.6290807724, "eta": "5:45:11", "timestamp": 1765126136.235796} +{"step": 2310, "loss": 4.312472343444824, "lr": 0.0005722597598120686, "time_ms": 2689.9495124816895, "eta_seconds": 20685.711750984192, "eta": "5:44:45", "timestamp": 1765126163.1423688} +{"step": 2320, "loss": 4.192580699920654, "lr": 0.0005718421752646415, "time_ms": 2690.129041671753, "eta_seconds": 20660.191040039062, "eta": "5:44:20", "timestamp": 1765126190.0492797} +{"step": 2330, "loss": 4.325389385223389, "lr": 0.0005714216439466293, "time_ms": 2690.5901432037354, "eta_seconds": 20636.82639837265, "eta": "5:43:56", "timestamp": 1765126216.9522762} +{"step": 2340, "loss": 4.199782371520996, "lr": 0.0005709981709820738, "time_ms": 2691.1561489105225, "eta_seconds": 20614.256100654602, "eta": "5:43:34", "timestamp": 1765126243.858165} +{"step": 2350, "loss": 4.398078441619873, "lr": 0.0005705717615308593, "time_ms": 2690.3462409973145, "eta_seconds": 20581.148743629456, "eta": "5:43:01", "timestamp": 1765126270.7665648} +{"step": 2360, "loss": 4.266849040985107, "lr": 0.0005701424207886503, "time_ms": 2690.908432006836, "eta_seconds": 20558.540420532227, "eta": "5:42:38", "timestamp": 1765126297.6729064} +{"step": 2370, "loss": 4.241163730621338, "lr": 0.0005697101539868282, "time_ms": 2689.2433166503906, "eta_seconds": 20518.92650604248, "eta": "5:41:58", "timestamp": 1765126324.5771458} +{"step": 2380, "loss": 4.255152702331543, "lr": 0.0005692749663924279, "time_ms": 2689.1720294952393, "eta_seconds": 20491.490864753723, "eta": "5:41:31", "timestamp": 1765126351.4782057} +{"step": 2390, "loss": 4.332055568695068, "lr": 0.0005688368633080726, "time_ms": 2690.3936862945557, "eta_seconds": 20473.89595270157, "eta": "5:41:13", "timestamp": 1765126378.3846211} +{"step": 2400, "loss": 4.1553144454956055, "lr": 0.0005683958500719103, "time_ms": 2690.2198791503906, "eta_seconds": 20445.67108154297, "eta": "5:40:45", "timestamp": 1765126405.293487} +{"step": 2410, "loss": 4.2826337814331055, "lr": 0.0005679519320575478, "time_ms": 2690.4358863830566, "eta_seconds": 20420.4083776474, "eta": "5:40:20", "timestamp": 1765126432.2031183} +{"step": 2420, "loss": 4.268885135650635, "lr": 0.0005675051146739864, "time_ms": 2690.762758255005, "eta_seconds": 20395.981707572937, "eta": "5:39:55", "timestamp": 1765126459.1112068} +{"step": 2430, "loss": 4.088177680969238, "lr": 0.0005670554033655546, "time_ms": 2690.8140182495117, "eta_seconds": 20369.462118148804, "eta": "5:39:29", "timestamp": 1765126486.0194724} +{"step": 2440, "loss": 4.099613189697266, "lr": 0.0005666028036118431, "time_ms": 2689.9240016937256, "eta_seconds": 20335.825452804565, "eta": "5:38:55", "timestamp": 1765126512.9303691} +{"step": 2450, "loss": 4.151208400726318, "lr": 0.0005661473209276368, "time_ms": 2689.809560775757, "eta_seconds": 20308.062183856964, "eta": "5:38:28", "timestamp": 1765126539.839847} +{"step": 2460, "loss": 4.239109992980957, "lr": 0.0005656889608628486, "time_ms": 2690.2008056640625, "eta_seconds": 20284.11407470703, "eta": "5:38:04", "timestamp": 1765126566.7486277} +{"step": 2470, "loss": 4.3467254638671875, "lr": 0.0005652277290024511, "time_ms": 2690.450668334961, "eta_seconds": 20259.093532562256, "eta": "5:37:39", "timestamp": 1765126593.6602314} +{"step": 2480, "loss": 4.293366432189941, "lr": 0.0005647636309664091, "time_ms": 2690.796375274658, "eta_seconds": 20234.78874206543, "eta": "5:37:14", "timestamp": 1765126620.5699527} +{"step": 2490, "loss": 4.197343349456787, "lr": 0.0005642966724096107, "time_ms": 2690.587282180786, "eta_seconds": 20206.310489177704, "eta": "5:36:46", "timestamp": 1765126647.4782596} +{"step": 2500, "loss": 4.296971321105957, "lr": 0.0005638268590217985, "time_ms": 52553.4873008728, "eta_seconds": 394151.154756546, "eta": "4 days, 13:29:11", "timestamp": 1765126724.2491896} +{"step": 2510, "loss": 4.135358810424805, "lr": 0.0005633541965275003, "time_ms": 2689.624071121216, "eta_seconds": 20145.284292697906, "eta": "5:35:45", "timestamp": 1765126751.1419098} +{"step": 2520, "loss": 4.316387176513672, "lr": 0.0005628786906859594, "time_ms": 2689.6157264709473, "eta_seconds": 20118.325634002686, "eta": "5:35:18", "timestamp": 1765126778.0439022} +{"step": 2530, "loss": 4.216681003570557, "lr": 0.0005624003472910647, "time_ms": 2689.8193359375, "eta_seconds": 20092.950439453125, "eta": "5:34:52", "timestamp": 1765126804.9449728} +{"step": 2540, "loss": 4.244337558746338, "lr": 0.0005619191721712793, "time_ms": 2690.295696258545, "eta_seconds": 20069.605894088745, "eta": "5:34:29", "timestamp": 1765126831.8450868} +{"step": 2550, "loss": 4.260036945343018, "lr": 0.0005614351711895703, "time_ms": 2689.5980834960938, "eta_seconds": 20037.5057220459, "eta": "5:33:57", "timestamp": 1765126858.7492669} +{"step": 2560, "loss": 4.126336097717285, "lr": 0.0005609483502433367, "time_ms": 2688.1139278411865, "eta_seconds": 19999.567623138428, "eta": "5:33:19", "timestamp": 1765126885.6556203} +{"step": 2570, "loss": 4.224637031555176, "lr": 0.0005604587152643383, "time_ms": 2690.8390522003174, "eta_seconds": 19992.934157848358, "eta": "5:33:12", "timestamp": 1765126912.562684} +{"step": 2580, "loss": 4.080143928527832, "lr": 0.0005599662722186228, "time_ms": 2690.1113986968994, "eta_seconds": 19960.626578330994, "eta": "5:32:40", "timestamp": 1765126939.4688787} +{"step": 2590, "loss": 4.1858744621276855, "lr": 0.0005594710271064532, "time_ms": 2690.446138381958, "eta_seconds": 19936.20588541031, "eta": "5:32:16", "timestamp": 1765126966.372455} +{"step": 2600, "loss": 4.12255334854126, "lr": 0.000558972985962235, "time_ms": 2690.150022506714, "eta_seconds": 19907.110166549683, "eta": "5:31:47", "timestamp": 1765126993.2804158} +{"step": 2610, "loss": 4.162102222442627, "lr": 0.0005584721548544423, "time_ms": 2689.9726390838623, "eta_seconds": 19878.897802829742, "eta": "5:31:18", "timestamp": 1765127020.1878376} +{"step": 2620, "loss": 4.15994930267334, "lr": 0.000557968539885544, "time_ms": 2689.91756439209, "eta_seconds": 19851.591625213623, "eta": "5:30:51", "timestamp": 1765127047.0940373} +{"step": 2630, "loss": 4.2518439292907715, "lr": 0.0005574621471919298, "time_ms": 2689.6262168884277, "eta_seconds": 19822.545218467712, "eta": "5:30:22", "timestamp": 1765127074.0009618} +{"step": 2640, "loss": 4.237005710601807, "lr": 0.0005569529829438347, "time_ms": 2690.3488636016846, "eta_seconds": 19800.9676361084, "eta": "5:30:00", "timestamp": 1765127100.9071944} +{"step": 2650, "loss": 4.076812267303467, "lr": 0.0005564410533452645, "time_ms": 2690.171241760254, "eta_seconds": 19772.758626937866, "eta": "5:29:32", "timestamp": 1765127127.814129} +{"step": 2660, "loss": 4.123446941375732, "lr": 0.0005559263646339196, "time_ms": 2690.8321380615234, "eta_seconds": 19750.707893371582, "eta": "5:29:10", "timestamp": 1765127154.7196994} +{"step": 2670, "loss": 4.2257304191589355, "lr": 0.0005554089230811196, "time_ms": 2690.2596950531006, "eta_seconds": 19719.603564739227, "eta": "5:28:39", "timestamp": 1765127181.6270843} +{"step": 2680, "loss": 4.2654595375061035, "lr": 0.0005548887349917268, "time_ms": 2689.8653507232666, "eta_seconds": 19689.81436729431, "eta": "5:28:09", "timestamp": 1765127208.5337183} +{"step": 2690, "loss": 4.150134563446045, "lr": 0.0005543658067040686, "time_ms": 2690.356492996216, "eta_seconds": 19666.505963802338, "eta": "5:27:46", "timestamp": 1765127235.4411314} +{"step": 2700, "loss": 4.002840995788574, "lr": 0.0005538401445898612, "time_ms": 2689.786672592163, "eta_seconds": 19635.44270992279, "eta": "5:27:15", "timestamp": 1765127262.3470697} +{"step": 2710, "loss": 4.203924655914307, "lr": 0.0005533117550541316, "time_ms": 2690.798759460449, "eta_seconds": 19615.922956466675, "eta": "5:26:55", "timestamp": 1765127289.2560287} +{"step": 2720, "loss": 4.096187114715576, "lr": 0.0005527806445351397, "time_ms": 2690.5291080474854, "eta_seconds": 19587.051906585693, "eta": "5:26:27", "timestamp": 1765127316.1668358} +{"step": 2730, "loss": 4.064530372619629, "lr": 0.0005522468195042993, "time_ms": 2690.0041103363037, "eta_seconds": 19556.329882144928, "eta": "5:25:56", "timestamp": 1765127343.0745533} +{"step": 2740, "loss": 4.076711654663086, "lr": 0.0005517102864661, "time_ms": 2690.5598640441895, "eta_seconds": 19533.464612960815, "eta": "5:25:33", "timestamp": 1765127369.9824014} +{"step": 2750, "loss": 3.985109567642212, "lr": 0.0005511710519580278, "time_ms": 2690.6137466430664, "eta_seconds": 19506.94966316223, "eta": "5:25:06", "timestamp": 1765127396.8902667} +{"step": 2760, "loss": 3.960557699203491, "lr": 0.0005506291225504846, "time_ms": 2691.5478706359863, "eta_seconds": 19486.80658340454, "eta": "5:24:46", "timestamp": 1765127423.8025396} +{"step": 2770, "loss": 4.104734897613525, "lr": 0.0005500845048467095, "time_ms": 2691.075086593628, "eta_seconds": 19456.47287607193, "eta": "5:24:16", "timestamp": 1765127450.7109065} +{"step": 2780, "loss": 4.028797626495361, "lr": 0.0005495372054826974, "time_ms": 2690.6254291534424, "eta_seconds": 19426.315598487854, "eta": "5:23:46", "timestamp": 1765127477.6162007} +{"step": 2790, "loss": 4.151330471038818, "lr": 0.0005489872311271181, "time_ms": 2690.7670497894287, "eta_seconds": 19400.43042898178, "eta": "5:23:20", "timestamp": 1765127504.5236785} +{"step": 2800, "loss": 4.19321870803833, "lr": 0.0005484345884812357, "time_ms": 2689.359426498413, "eta_seconds": 19363.387870788574, "eta": "5:22:43", "timestamp": 1765127531.4266105} +{"step": 2810, "loss": 4.017468452453613, "lr": 0.0005478792842788265, "time_ms": 2689.9585723876953, "eta_seconds": 19340.80213546753, "eta": "5:22:20", "timestamp": 1765127558.3298373} +{"step": 2820, "loss": 4.067428112030029, "lr": 0.0005473213252860967, "time_ms": 2689.1391277313232, "eta_seconds": 19308.0189371109, "eta": "5:21:48", "timestamp": 1765127585.2348807} +{"step": 2830, "loss": 4.087689399719238, "lr": 0.0005467607183016009, "time_ms": 2690.92059135437, "eta_seconds": 19293.900640010834, "eta": "5:21:33", "timestamp": 1765127612.1390598} +{"step": 2840, "loss": 3.9702937602996826, "lr": 0.0005461974701561579, "time_ms": 2690.3679370880127, "eta_seconds": 19263.03442955017, "eta": "5:21:03", "timestamp": 1765127639.0449328} +{"step": 2850, "loss": 3.947720766067505, "lr": 0.000545631587712769, "time_ms": 2689.7547245025635, "eta_seconds": 19231.74628019333, "eta": "5:20:31", "timestamp": 1765127665.9490354} +{"step": 2860, "loss": 4.169245719909668, "lr": 0.0005450630778665329, "time_ms": 2688.1062984466553, "eta_seconds": 19193.07897090912, "eta": "5:19:53", "timestamp": 1765127692.853152} +{"step": 2870, "loss": 3.9979748725891113, "lr": 0.0005444919475445628, "time_ms": 2689.281225204468, "eta_seconds": 19174.575135707855, "eta": "5:19:34", "timestamp": 1765127719.7467926} +{"step": 2880, "loss": 4.091871738433838, "lr": 0.0005439182037059014, "time_ms": 2688.748598098755, "eta_seconds": 19143.890018463135, "eta": "5:19:03", "timestamp": 1765127746.637782} +{"step": 2890, "loss": 4.044551849365234, "lr": 0.0005433418533414364, "time_ms": 2688.985586166382, "eta_seconds": 19118.687517642975, "eta": "5:18:38", "timestamp": 1765127773.5257905} +{"step": 2900, "loss": 4.0237531661987305, "lr": 0.0005427629034738148, "time_ms": 2689.1918182373047, "eta_seconds": 19093.261909484863, "eta": "5:18:13", "timestamp": 1765127800.4230397} +{"step": 2910, "loss": 4.022540092468262, "lr": 0.0005421813611573584, "time_ms": 2689.523458480835, "eta_seconds": 19068.72132062912, "eta": "5:17:48", "timestamp": 1765127827.325521} +{"step": 2920, "loss": 4.0796966552734375, "lr": 0.0005415972334779766, "time_ms": 2689.5859241485596, "eta_seconds": 19042.2683429718, "eta": "5:17:22", "timestamp": 1765127854.2275474} +{"step": 2930, "loss": 4.140377998352051, "lr": 0.0005410105275530809, "time_ms": 2689.663887023926, "eta_seconds": 19015.923681259155, "eta": "5:16:55", "timestamp": 1765127881.1273344} +{"step": 2940, "loss": 4.096635341644287, "lr": 0.000540421250531498, "time_ms": 2688.3959770202637, "eta_seconds": 18980.07559776306, "eta": "5:16:20", "timestamp": 1765127908.0247056} +{"step": 2950, "loss": 4.015339374542236, "lr": 0.000539829409593382, "time_ms": 2689.177989959717, "eta_seconds": 18958.704829216003, "eta": "5:15:58", "timestamp": 1765127934.927474} +{"step": 2960, "loss": 3.9845633506774902, "lr": 0.0005392350119501284, "time_ms": 2689.8226737976074, "eta_seconds": 18936.351623535156, "eta": "5:15:36", "timestamp": 1765127961.829623} +{"step": 2970, "loss": 4.127829551696777, "lr": 0.0005386380648442847, "time_ms": 2690.2408599853516, "eta_seconds": 18912.39324569702, "eta": "5:15:12", "timestamp": 1765127988.7335098} +{"step": 2980, "loss": 4.111495494842529, "lr": 0.000538038575549463, "time_ms": 2689.850330352783, "eta_seconds": 18882.749319076538, "eta": "5:14:42", "timestamp": 1765128015.6368856} +{"step": 2990, "loss": 4.0937700271606445, "lr": 0.0005374365513702513, "time_ms": 2690.776586532593, "eta_seconds": 18862.343871593475, "eta": "5:14:22", "timestamp": 1765128042.543037} +{"step": 3000, "loss": 4.116408348083496, "lr": 0.0005368319996421239, "time_ms": 52531.426191329956, "eta_seconds": 367719.9833393097, "eta": "4 days, 6:08:39", "timestamp": 1765128119.289973} +{"step": 3010, "loss": 3.884317636489868, "lr": 0.0005362249277313534, "time_ms": 2690.204620361328, "eta_seconds": 18804.530296325684, "eta": "5:13:24", "timestamp": 1765128146.178417} +{"step": 3020, "loss": 3.8064355850219727, "lr": 0.0005356153430349189, "time_ms": 2691.070556640625, "eta_seconds": 18783.672485351562, "eta": "5:13:03", "timestamp": 1765128173.0814645} +{"step": 3030, "loss": 4.011989593505859, "lr": 0.0005350032529804177, "time_ms": 2690.1073455810547, "eta_seconds": 18750.04819869995, "eta": "5:12:30", "timestamp": 1765128199.987558} +{"step": 3040, "loss": 4.0624775886535645, "lr": 0.0005343886650259742, "time_ms": 2690.150022506714, "eta_seconds": 18723.44415664673, "eta": "5:12:03", "timestamp": 1765128226.8973207} +{"step": 3050, "loss": 3.912344455718994, "lr": 0.0005337715866601484, "time_ms": 2689.861059188843, "eta_seconds": 18694.534361362457, "eta": "5:11:34", "timestamp": 1765128253.80528} +{"step": 3060, "loss": 3.9372787475585938, "lr": 0.0005331520254018455, "time_ms": 2690.429449081421, "eta_seconds": 18671.58037662506, "eta": "5:11:11", "timestamp": 1765128280.7161987} +{"step": 3070, "loss": 3.936131477355957, "lr": 0.000532529988800224, "time_ms": 2690.486192703247, "eta_seconds": 18645.069315433502, "eta": "5:10:45", "timestamp": 1765128307.6262288} +{"step": 3080, "loss": 4.109328746795654, "lr": 0.0005319054844346036, "time_ms": 2690.4900074005127, "eta_seconds": 18618.190851211548, "eta": "5:10:18", "timestamp": 1765128334.5378642} +{"step": 3090, "loss": 3.9433798789978027, "lr": 0.0005312785199143727, "time_ms": 2691.366672515869, "eta_seconds": 18597.343707084656, "eta": "5:09:57", "timestamp": 1765128361.4491725} +{"step": 3100, "loss": 3.9203379154205322, "lr": 0.0005306491028788964, "time_ms": 2690.842390060425, "eta_seconds": 18566.81249141693, "eta": "5:09:26", "timestamp": 1765128388.359095} +{"step": 3110, "loss": 3.89469051361084, "lr": 0.0005300172409974225, "time_ms": 2690.556526184082, "eta_seconds": 18537.934465408325, "eta": "5:08:57", "timestamp": 1765128415.2691553} +{"step": 3120, "loss": 3.9375972747802734, "lr": 0.0005293829419689886, "time_ms": 2690.3955936431885, "eta_seconds": 18509.921684265137, "eta": "5:08:29", "timestamp": 1765128442.179723} +{"step": 3130, "loss": 4.031548500061035, "lr": 0.0005287462135223283, "time_ms": 2690.8974647521973, "eta_seconds": 18486.465582847595, "eta": "5:08:06", "timestamp": 1765128469.0917287} +{"step": 3140, "loss": 3.8996360301971436, "lr": 0.0005281070634157765, "time_ms": 2690.401554107666, "eta_seconds": 18456.15466117859, "eta": "5:07:36", "timestamp": 1765128496.0038025} +{"step": 3150, "loss": 3.944692850112915, "lr": 0.0005274654994371759, "time_ms": 2691.554069519043, "eta_seconds": 18437.145376205444, "eta": "5:07:17", "timestamp": 1765128522.9183633} +{"step": 3160, "loss": 3.861314296722412, "lr": 0.000526821529403781, "time_ms": 2690.486192703247, "eta_seconds": 18402.92555809021, "eta": "5:06:42", "timestamp": 1765128549.8272362} +{"step": 3170, "loss": 3.936054229736328, "lr": 0.0005261751611621634, "time_ms": 2690.5429363250732, "eta_seconds": 18376.40825510025, "eta": "5:06:16", "timestamp": 1765128576.7379897} +{"step": 3180, "loss": 3.851860761642456, "lr": 0.0005255264025881162, "time_ms": 2690.8438205718994, "eta_seconds": 18351.554856300354, "eta": "5:05:51", "timestamp": 1765128603.6481318} +{"step": 3190, "loss": 4.107852458953857, "lr": 0.0005248752615865577, "time_ms": 2690.609931945801, "eta_seconds": 18323.053636550903, "eta": "5:05:23", "timestamp": 1765128630.55844} +{"step": 3200, "loss": 3.9359970092773438, "lr": 0.0005242217460914358, "time_ms": 2689.9654865264893, "eta_seconds": 18291.765308380127, "eta": "5:04:51", "timestamp": 1765128657.4701886} +{"step": 3210, "loss": 3.8516530990600586, "lr": 0.0005235658640656303, "time_ms": 2691.166877746582, "eta_seconds": 18273.023099899292, "eta": "5:04:33", "timestamp": 1765128684.383935} +{"step": 3220, "loss": 4.065548419952393, "lr": 0.0005229076235008568, "time_ms": 2690.20938873291, "eta_seconds": 18239.61965560913, "eta": "5:03:59", "timestamp": 1765128711.2960458} +{"step": 3230, "loss": 3.8050742149353027, "lr": 0.000522247032417569, "time_ms": 2691.5481090545654, "eta_seconds": 18221.780698299408, "eta": "5:03:41", "timestamp": 1765128738.2080526} +{"step": 3240, "loss": 3.840873956680298, "lr": 0.0005215840988648606, "time_ms": 2690.934658050537, "eta_seconds": 18190.71828842163, "eta": "5:03:10", "timestamp": 1765128765.1179721} +{"step": 3250, "loss": 3.9182777404785156, "lr": 0.0005209188309203678, "time_ms": 2690.6046867370605, "eta_seconds": 18161.58163547516, "eta": "5:02:41", "timestamp": 1765128792.0268388} +{"step": 3260, "loss": 3.9248995780944824, "lr": 0.0005202512366901705, "time_ms": 2690.931558609009, "eta_seconds": 18136.87870502472, "eta": "5:02:16", "timestamp": 1765128818.9371612} +{"step": 3270, "loss": 3.920917272567749, "lr": 0.0005195813243086938, "time_ms": 2690.534830093384, "eta_seconds": 18107.299406528473, "eta": "5:01:47", "timestamp": 1765128845.8472393} +{"step": 3280, "loss": 3.8486971855163574, "lr": 0.0005189091019386086, "time_ms": 2690.969228744507, "eta_seconds": 18083.313217163086, "eta": "5:01:23", "timestamp": 1765128872.7554972} +{"step": 3290, "loss": 3.7571070194244385, "lr": 0.0005182345777707324, "time_ms": 2690.6614303588867, "eta_seconds": 18054.33819770813, "eta": "5:00:54", "timestamp": 1765128899.6661465} +{"step": 3300, "loss": 3.8062729835510254, "lr": 0.0005175577600239292, "time_ms": 2690.9637451171875, "eta_seconds": 18029.457092285156, "eta": "5:00:29", "timestamp": 1765128926.574064} +{"step": 3310, "loss": 3.8404393196105957, "lr": 0.0005168786569450098, "time_ms": 2690.279006958008, "eta_seconds": 17997.966556549072, "eta": "4:59:57", "timestamp": 1765128953.4806604} +{"step": 3320, "loss": 3.783167839050293, "lr": 0.0005161972768086307, "time_ms": 2691.2646293640137, "eta_seconds": 17977.64772415161, "eta": "4:59:37", "timestamp": 1765128980.3903763} +{"step": 3330, "loss": 3.9795150756835938, "lr": 0.0005155136279171941, "time_ms": 2690.1021003723145, "eta_seconds": 17942.981009483337, "eta": "4:59:02", "timestamp": 1765129007.3016863} +{"step": 3340, "loss": 3.8668627738952637, "lr": 0.0005148277186007459, "time_ms": 2690.272331237793, "eta_seconds": 17917.2137260437, "eta": "4:58:37", "timestamp": 1765129034.2122235} +{"step": 3350, "loss": 4.01901912689209, "lr": 0.0005141395572168746, "time_ms": 2690.6771659851074, "eta_seconds": 17893.003153800964, "eta": "4:58:13", "timestamp": 1765129061.1224625} +{"step": 3360, "loss": 3.829000234603882, "lr": 0.0005134491521506094, "time_ms": 2690.5136108398438, "eta_seconds": 17865.010375976562, "eta": "4:57:45", "timestamp": 1765129088.0342066} +{"step": 3370, "loss": 3.866755962371826, "lr": 0.0005127565118143183, "time_ms": 2691.81752204895, "eta_seconds": 17846.75017118454, "eta": "4:57:26", "timestamp": 1765129114.9443855} +{"step": 3380, "loss": 4.0187602043151855, "lr": 0.0005120616446476052, "time_ms": 2691.0533905029297, "eta_seconds": 17814.773445129395, "eta": "4:56:54", "timestamp": 1765129141.8544538} +{"step": 3390, "loss": 3.8270366191864014, "lr": 0.0005113645591172073, "time_ms": 2690.3955936431885, "eta_seconds": 17783.514873981476, "eta": "4:56:23", "timestamp": 1765129168.7613227} +{"step": 3400, "loss": 3.699831008911133, "lr": 0.0005106652637168916, "time_ms": 2690.246105194092, "eta_seconds": 17755.624294281006, "eta": "4:55:55", "timestamp": 1765129195.6692035} +{"step": 3410, "loss": 3.8173210620880127, "lr": 0.000509963766967352, "time_ms": 2689.948320388794, "eta_seconds": 17726.759431362152, "eta": "4:55:26", "timestamp": 1765129222.5758166} +{"step": 3420, "loss": 3.877948522567749, "lr": 0.0005092600774161052, "time_ms": 2690.767288208008, "eta_seconds": 17705.24875640869, "eta": "4:55:05", "timestamp": 1765129249.48574} +{"step": 3430, "loss": 3.9030673503875732, "lr": 0.000508554203637386, "time_ms": 2690.8321380615234, "eta_seconds": 17678.76714706421, "eta": "4:54:38", "timestamp": 1765129276.39221} +{"step": 3440, "loss": 3.750906229019165, "lr": 0.0005078461542320436, "time_ms": 2689.9001598358154, "eta_seconds": 17645.74504852295, "eta": "4:54:05", "timestamp": 1765129303.2987702} +{"step": 3450, "loss": 3.7287631034851074, "lr": 0.0005071359378274369, "time_ms": 2690.302848815918, "eta_seconds": 17621.483659744263, "eta": "4:53:41", "timestamp": 1765129330.204738} +{"step": 3460, "loss": 3.9097394943237305, "lr": 0.0005064235630773285, "time_ms": 2689.9290084838867, "eta_seconds": 17592.13571548462, "eta": "4:53:12", "timestamp": 1765129357.110886} +{"step": 3470, "loss": 3.604060173034668, "lr": 0.0005057090386617796, "time_ms": 2690.5386447906494, "eta_seconds": 17569.21735048294, "eta": "4:52:49", "timestamp": 1765129384.019443} +{"step": 3480, "loss": 3.7080392837524414, "lr": 0.0005049923732870453, "time_ms": 2691.5316581726074, "eta_seconds": 17548.7864112854, "eta": "4:52:28", "timestamp": 1765129410.9314084} +{"step": 3490, "loss": 3.9106361865997314, "lr": 0.0005042735756854666, "time_ms": 2690.3491020202637, "eta_seconds": 17514.172654151917, "eta": "4:51:54", "timestamp": 1765129437.841807} +{"step": 3500, "loss": 3.8377413749694824, "lr": 0.0005035526546153655, "time_ms": 52734.42816734314, "eta_seconds": 342773.7830877304, "eta": "3 days, 23:12:53", "timestamp": 1765129514.792843} +{"step": 3510, "loss": 3.8816070556640625, "lr": 0.000502829618860938, "time_ms": 2686.624050140381, "eta_seconds": 17436.19008541107, "eta": "4:50:36", "timestamp": 1765129541.6629987} +{"step": 3520, "loss": 3.789853096008301, "lr": 0.0005021044772321461, "time_ms": 2688.7776851654053, "eta_seconds": 17423.279399871826, "eta": "4:50:23", "timestamp": 1765129568.5453608} +{"step": 3530, "loss": 3.931692600250244, "lr": 0.0005013772385646122, "time_ms": 2687.7686977386475, "eta_seconds": 17389.86347436905, "eta": "4:49:49", "timestamp": 1765129595.4246185} +{"step": 3540, "loss": 3.920625686645508, "lr": 0.0005006479117195097, "time_ms": 2689.38946723938, "eta_seconds": 17373.455958366394, "eta": "4:49:33", "timestamp": 1765129622.3114967} +{"step": 3550, "loss": 3.8381471633911133, "lr": 0.0004999165055834561, "time_ms": 2687.351703643799, "eta_seconds": 17333.418488502502, "eta": "4:48:53", "timestamp": 1765129649.194024} +{"step": 3560, "loss": 3.7834129333496094, "lr": 0.0004991830290684043, "time_ms": 2687.3648166656494, "eta_seconds": 17306.629419326782, "eta": "4:48:26", "timestamp": 1765129676.0808578} +{"step": 3570, "loss": 3.8798818588256836, "lr": 0.0004984474911115342, "time_ms": 2688.4655952453613, "eta_seconds": 17286.833777427673, "eta": "4:48:06", "timestamp": 1765129702.9649935} +{"step": 3580, "loss": 3.758981943130493, "lr": 0.0004977099006751437, "time_ms": 2688.0064010620117, "eta_seconds": 17257.001094818115, "eta": "4:47:37", "timestamp": 1765129729.8516288} +{"step": 3590, "loss": 3.92991304397583, "lr": 0.0004969702667465396, "time_ms": 2688.3788108825684, "eta_seconds": 17232.508177757263, "eta": "4:47:12", "timestamp": 1765129756.7380493} +{"step": 3600, "loss": 3.879608392715454, "lr": 0.0004962285983379276, "time_ms": 2688.159227371216, "eta_seconds": 17204.21905517578, "eta": "4:46:44", "timestamp": 1765129783.622691} +{"step": 3610, "loss": 3.8458781242370605, "lr": 0.0004954849044863036, "time_ms": 2688.5006427764893, "eta_seconds": 17179.519107341766, "eta": "4:46:19", "timestamp": 1765129810.505242} +{"step": 3620, "loss": 3.772733688354492, "lr": 0.0004947391942533423, "time_ms": 2688.014030456543, "eta_seconds": 17149.529514312744, "eta": "4:45:49", "timestamp": 1765129837.391187} +{"step": 3630, "loss": 3.883812189102173, "lr": 0.0004939914767252873, "time_ms": 2688.0874633789062, "eta_seconds": 17123.117141723633, "eta": "4:45:23", "timestamp": 1765129864.278447} +{"step": 3640, "loss": 3.8938052654266357, "lr": 0.0004932417610128412, "time_ms": 2688.232898712158, "eta_seconds": 17097.161235809326, "eta": "4:44:57", "timestamp": 1765129891.166211} +{"step": 3650, "loss": 3.8687994480133057, "lr": 0.000492490056251053, "time_ms": 2688.1511211395264, "eta_seconds": 17069.759619235992, "eta": "4:44:29", "timestamp": 1765129918.0536494} +{"step": 3660, "loss": 3.907830238342285, "lr": 0.0004917363715992081, "time_ms": 2688.6534690856934, "eta_seconds": 17046.062994003296, "eta": "4:44:06", "timestamp": 1765129944.9425693} +{"step": 3670, "loss": 3.765756368637085, "lr": 0.0004909807162407162, "time_ms": 2688.5933876037598, "eta_seconds": 17018.7961435318, "eta": "4:43:38", "timestamp": 1765129971.8321393} +{"step": 3680, "loss": 3.8678083419799805, "lr": 0.0004902230993829994, "time_ms": 2689.563751220703, "eta_seconds": 16998.042907714844, "eta": "4:43:18", "timestamp": 1765129998.7210183} +{"step": 3690, "loss": 3.757514238357544, "lr": 0.0004894635302573798, "time_ms": 2690.014123916626, "eta_seconds": 16973.98912191391, "eta": "4:42:53", "timestamp": 1765130025.6112452} +{"step": 3700, "loss": 3.7789676189422607, "lr": 0.0004887020181189677, "time_ms": 2689.8536682128906, "eta_seconds": 16946.07810974121, "eta": "4:42:26", "timestamp": 1765130052.5030766} +{"step": 3710, "loss": 3.8415417671203613, "lr": 0.00048793857224654815, "time_ms": 2687.2308254241943, "eta_seconds": 16902.681891918182, "eta": "4:41:42", "timestamp": 1765130079.386646} +{"step": 3720, "loss": 3.922987222671509, "lr": 0.00048717320194246804, "time_ms": 2689.283609390259, "eta_seconds": 16888.701066970825, "eta": "4:41:28", "timestamp": 1765130106.2755945} +{"step": 3730, "loss": 3.81547212600708, "lr": 0.0004864059165325232, "time_ms": 2687.793016433716, "eta_seconds": 16852.4622130394, "eta": "4:40:52", "timestamp": 1765130133.1653953} +{"step": 3740, "loss": 3.841766119003296, "lr": 0.0004856367253658441, "time_ms": 2688.8935565948486, "eta_seconds": 16832.473664283752, "eta": "4:40:32", "timestamp": 1765130160.0561714} +{"step": 3750, "loss": 3.742861747741699, "lr": 0.00048486563781478234, "time_ms": 2688.0335807800293, "eta_seconds": 16800.209879875183, "eta": "4:40:00", "timestamp": 1765130186.9442732} +{"step": 3760, "loss": 3.6967756748199463, "lr": 0.00048409266327479656, "time_ms": 2688.798189163208, "eta_seconds": 16778.100700378418, "eta": "4:39:38", "timestamp": 1765130213.830113} +{"step": 3770, "loss": 3.9097487926483154, "lr": 0.0004833178111643373, "time_ms": 2684.7939491271973, "eta_seconds": 16726.26630306244, "eta": "4:38:46", "timestamp": 1765130240.691876} +{"step": 3780, "loss": 3.8741772174835205, "lr": 0.00048254109092473314, "time_ms": 2686.7287158966064, "eta_seconds": 16711.452612876892, "eta": "4:38:31", "timestamp": 1765130267.561478} +{"step": 3790, "loss": 3.5968289375305176, "lr": 0.00048176251202007516, "time_ms": 2688.1744861602783, "eta_seconds": 16693.56355905533, "eta": "4:38:13", "timestamp": 1765130294.442284} +{"step": 3800, "loss": 3.744539976119995, "lr": 0.00048098208393710154, "time_ms": 2688.5526180267334, "eta_seconds": 16669.026231765747, "eta": "4:37:49", "timestamp": 1765130321.3288825} +{"step": 3810, "loss": 3.8645899295806885, "lr": 0.00048019981618508225, "time_ms": 2688.638210296631, "eta_seconds": 16642.670521736145, "eta": "4:37:22", "timestamp": 1765130348.2159684} +{"step": 3820, "loss": 3.7573108673095703, "lr": 0.00047941571829570283, "time_ms": 2687.8883838653564, "eta_seconds": 16611.150212287903, "eta": "4:36:51", "timestamp": 1765130375.1043828} +{"step": 3830, "loss": 3.9844441413879395, "lr": 0.0004786297998229487, "time_ms": 2688.263416290283, "eta_seconds": 16586.585278511047, "eta": "4:36:26", "timestamp": 1765130401.995784} +{"step": 3840, "loss": 3.657184600830078, "lr": 0.0004778420703429885, "time_ms": 2688.392400741577, "eta_seconds": 16560.497188568115, "eta": "4:36:00", "timestamp": 1765130428.89026} +{"step": 3850, "loss": 3.8730812072753906, "lr": 0.00047705253945405727, "time_ms": 2689.157724380493, "eta_seconds": 16538.320004940033, "eta": "4:35:38", "timestamp": 1765130455.7793028} +{"step": 3860, "loss": 3.7259299755096436, "lr": 0.00047626121677633973, "time_ms": 2687.993288040161, "eta_seconds": 16504.27878856659, "eta": "4:35:04", "timestamp": 1765130482.6711287} +{"step": 3870, "loss": 3.71696138381958, "lr": 0.00047546811195185295, "time_ms": 2689.0079975128174, "eta_seconds": 16483.61902475357, "eta": "4:34:43", "timestamp": 1765130509.5642686} +{"step": 3880, "loss": 3.7578039169311523, "lr": 0.000474673234644329, "time_ms": 2687.19220161438, "eta_seconds": 16445.616273880005, "eta": "4:34:05", "timestamp": 1765130536.4559424} +{"step": 3890, "loss": 3.6949119567871094, "lr": 0.000473876594539097, "time_ms": 2688.5273456573486, "eta_seconds": 16426.9020819664, "eta": "4:33:46", "timestamp": 1765130563.3482184} +{"step": 3900, "loss": 3.7928380966186523, "lr": 0.00047307820134296524, "time_ms": 2688.438892364502, "eta_seconds": 16399.477243423462, "eta": "4:33:19", "timestamp": 1765130590.2388585} +{"step": 3910, "loss": 3.673444986343384, "lr": 0.0004722780647841029, "time_ms": 2689.2330646514893, "eta_seconds": 16377.42936372757, "eta": "4:32:57", "timestamp": 1765130617.1326568} +{"step": 3920, "loss": 3.717175006866455, "lr": 0.00047147619461192133, "time_ms": 2688.908576965332, "eta_seconds": 16348.564147949219, "eta": "4:32:28", "timestamp": 1765130644.0232968} +{"step": 3930, "loss": 3.8434865474700928, "lr": 0.0004706726005969556, "time_ms": 2689.1298294067383, "eta_seconds": 16323.018064498901, "eta": "4:32:03", "timestamp": 1765130670.9178512} +{"step": 3940, "loss": 3.8052213191986084, "lr": 0.0004698672925307451, "time_ms": 2689.1698837280273, "eta_seconds": 16296.369495391846, "eta": "4:31:36", "timestamp": 1765130697.8112268} +{"step": 3950, "loss": 3.7479493618011475, "lr": 0.0004690602802257146, "time_ms": 2688.249111175537, "eta_seconds": 16263.907122612, "eta": "4:31:03", "timestamp": 1765130724.7049644} +{"step": 3960, "loss": 3.8036913871765137, "lr": 0.0004682515735150542, "time_ms": 2688.788652420044, "eta_seconds": 16240.283460617065, "eta": "4:30:40", "timestamp": 1765130751.5984216} +{"step": 3970, "loss": 3.6737775802612305, "lr": 0.0004674411822526002, "time_ms": 2688.5671615600586, "eta_seconds": 16212.059984207153, "eta": "4:30:12", "timestamp": 1765130778.4926805} +{"step": 3980, "loss": 3.7850334644317627, "lr": 0.0004666291163127141, "time_ms": 2689.2993450164795, "eta_seconds": 16189.582056999207, "eta": "4:29:49", "timestamp": 1765130805.3844497} +{"step": 3990, "loss": 3.6875503063201904, "lr": 0.00046581538559016343, "time_ms": 2689.0602111816406, "eta_seconds": 16161.25186920166, "eta": "4:29:21", "timestamp": 1765130832.2753623} +{"step": 4000, "loss": 3.7642388343811035, "lr": 0.0004649999999999999, "time_ms": 52804.76784706116, "eta_seconds": 316828.60708236694, "eta": "3 days, 16:00:28", "timestamp": 1765130909.2864263} +{"step": 4010, "loss": 3.7570154666900635, "lr": 0.0004641829694774399, "time_ms": 2690.08469581604, "eta_seconds": 16113.60732793808, "eta": "4:28:33", "timestamp": 1765130936.1862507} +{"step": 4020, "loss": 3.753396511077881, "lr": 0.0004633643039777423, "time_ms": 2691.120147705078, "eta_seconds": 16092.898483276367, "eta": "4:28:12", "timestamp": 1765130963.0938582} +{"step": 4030, "loss": 3.710937738418579, "lr": 0.00046254401347608793, "time_ms": 2690.5758380889893, "eta_seconds": 16062.737753391266, "eta": "4:27:42", "timestamp": 1765130990.0085008} +{"step": 4040, "loss": 3.8796215057373047, "lr": 0.00046172210796745775, "time_ms": 2689.7482872009277, "eta_seconds": 16030.89979171753, "eta": "4:27:10", "timestamp": 1765131016.9218466} +{"step": 4050, "loss": 3.7172927856445312, "lr": 0.00046089859746651095, "time_ms": 2691.2314891815186, "eta_seconds": 16012.827360630035, "eta": "4:26:52", "timestamp": 1765131043.8395407} +{"step": 4060, "loss": 3.7235212326049805, "lr": 0.000460073492007463, "time_ms": 2690.394401550293, "eta_seconds": 15980.94274520874, "eta": "4:26:20", "timestamp": 1765131070.7555063} +{"step": 4070, "loss": 3.7379000186920166, "lr": 0.0004592468016439638, "time_ms": 2691.500663757324, "eta_seconds": 15960.598936080933, "eta": "4:26:00", "timestamp": 1765131097.6777644} +{"step": 4080, "loss": 3.676144599914551, "lr": 0.00045841853644897426, "time_ms": 2691.931962966919, "eta_seconds": 15936.23722076416, "eta": "4:25:36", "timestamp": 1765131124.5986722} +{"step": 4090, "loss": 3.731685161590576, "lr": 0.0004575887065146445, "time_ms": 2690.7286643981934, "eta_seconds": 15902.206406593323, "eta": "4:25:02", "timestamp": 1765131151.5156846} +{"step": 4100, "loss": 3.7531063556671143, "lr": 0.0004567573219521904, "time_ms": 2691.3938522338867, "eta_seconds": 15879.223728179932, "eta": "4:24:39", "timestamp": 1765131178.4387918} +{"step": 4110, "loss": 3.687319755554199, "lr": 0.00045592439289177057, "time_ms": 2692.075490951538, "eta_seconds": 15856.32464170456, "eta": "4:24:16", "timestamp": 1765131205.362227} +{"step": 4120, "loss": 3.6061697006225586, "lr": 0.0004550899294823626, "time_ms": 2691.354513168335, "eta_seconds": 15825.16453742981, "eta": "4:23:45", "timestamp": 1765131232.279605} +{"step": 4130, "loss": 3.7958741188049316, "lr": 0.0004542539418916399, "time_ms": 2692.117214202881, "eta_seconds": 15802.72804737091, "eta": "4:23:22", "timestamp": 1765131259.20077} +{"step": 4140, "loss": 3.8079843521118164, "lr": 0.0004534164403058474, "time_ms": 2692.65079498291, "eta_seconds": 15778.933658599854, "eta": "4:22:58", "timestamp": 1765131286.1246898} +{"step": 4150, "loss": 3.7453932762145996, "lr": 0.0004525774349296775, "time_ms": 2691.105842590332, "eta_seconds": 15742.969179153442, "eta": "4:22:22", "timestamp": 1765131313.0435195} +{"step": 4160, "loss": 3.583233118057251, "lr": 0.00045173693598614623, "time_ms": 2691.1144256591797, "eta_seconds": 15716.10824584961, "eta": "4:21:56", "timestamp": 1765131339.9580674} +{"step": 4170, "loss": 3.746497631072998, "lr": 0.0004508949537164677, "time_ms": 2691.181421279907, "eta_seconds": 15689.58768606186, "eta": "4:21:29", "timestamp": 1765131366.8762205} +{"step": 4180, "loss": 3.788916826248169, "lr": 0.00045005149837993035, "time_ms": 2691.7645931243896, "eta_seconds": 15666.069931983948, "eta": "4:21:06", "timestamp": 1765131393.7938888} +{"step": 4190, "loss": 3.6866350173950195, "lr": 0.00044920658025377115, "time_ms": 2691.6441917419434, "eta_seconds": 15638.452754020691, "eta": "4:20:38", "timestamp": 1765131420.7102985} +{"step": 4200, "loss": 3.801429271697998, "lr": 0.0004483602096330508, "time_ms": 2689.53013420105, "eta_seconds": 15599.274778366089, "eta": "4:19:59", "timestamp": 1765131447.6245162} +{"step": 4210, "loss": 3.8512394428253174, "lr": 0.0004475123968305284, "time_ms": 2690.6027793884277, "eta_seconds": 15578.590092658997, "eta": "4:19:38", "timestamp": 1765131474.5377495} +{"step": 4220, "loss": 3.8097519874572754, "lr": 0.0004466631521765352, "time_ms": 2690.2616024017334, "eta_seconds": 15549.712061882019, "eta": "4:19:09", "timestamp": 1765131501.4519029} +{"step": 4230, "loss": 3.8016459941864014, "lr": 0.0004458124860188493, "time_ms": 2691.106081008911, "eta_seconds": 15527.682087421417, "eta": "4:18:47", "timestamp": 1765131528.3677032} +{"step": 4240, "loss": 3.7269394397735596, "lr": 0.00044496040872256956, "time_ms": 2689.1136169433594, "eta_seconds": 15489.29443359375, "eta": "4:18:09", "timestamp": 1765131555.2831442} +{"step": 4250, "loss": 3.7691829204559326, "lr": 0.00044410693066998877, "time_ms": 2690.520763397217, "eta_seconds": 15470.494389533997, "eta": "4:17:50", "timestamp": 1765131582.1940727} +{"step": 4260, "loss": 3.6822264194488525, "lr": 0.00044325206226046777, "time_ms": 2690.135717391968, "eta_seconds": 15441.379017829895, "eta": "4:17:21", "timestamp": 1765131609.1076376} +{"step": 4270, "loss": 3.4620144367218018, "lr": 0.0004423958139103083, "time_ms": 2691.763401031494, "eta_seconds": 15423.804287910461, "eta": "4:17:03", "timestamp": 1765131636.024587} +{"step": 4280, "loss": 3.690488815307617, "lr": 0.00044153819605262623, "time_ms": 2690.535068511963, "eta_seconds": 15389.860591888428, "eta": "4:16:29", "timestamp": 1765131662.9388707} +{"step": 4290, "loss": 3.683811902999878, "lr": 0.00044067921913722456, "time_ms": 2691.499948501587, "eta_seconds": 15368.464705944061, "eta": "4:16:08", "timestamp": 1765131689.8555174} +{"step": 4300, "loss": 3.719294786453247, "lr": 0.00043981889363046604, "time_ms": 2691.3583278656006, "eta_seconds": 15340.742468833923, "eta": "4:15:40", "timestamp": 1765131716.772446} +{"step": 4310, "loss": 3.7546439170837402, "lr": 0.0004389572300151453, "time_ms": 2691.0135746002197, "eta_seconds": 15311.86723947525, "eta": "4:15:11", "timestamp": 1765131743.6859345} +{"step": 4320, "loss": 3.558096170425415, "lr": 0.00043809423879036165, "time_ms": 2692.0294761657715, "eta_seconds": 15290.727424621582, "eta": "4:14:50", "timestamp": 1765131770.6023629} +{"step": 4330, "loss": 3.6813108921051025, "lr": 0.00043722993047139066, "time_ms": 2690.706253051758, "eta_seconds": 15256.304454803467, "eta": "4:14:16", "timestamp": 1765131797.5129814} +{"step": 4340, "loss": 3.644679069519043, "lr": 0.0004363643155895567, "time_ms": 2689.854621887207, "eta_seconds": 15224.577159881592, "eta": "4:13:44", "timestamp": 1765131824.4241953} +{"step": 4350, "loss": 3.7940869331359863, "lr": 0.0004354974046921038, "time_ms": 2690.021276473999, "eta_seconds": 15198.620212078094, "eta": "4:13:18", "timestamp": 1765131851.3354547} +{"step": 4360, "loss": 3.725163459777832, "lr": 0.00043462920834206773, "time_ms": 2690.3862953186035, "eta_seconds": 15173.778705596924, "eta": "4:12:53", "timestamp": 1765131878.2414985} +{"step": 4370, "loss": 3.6847236156463623, "lr": 0.0004337597371181469, "time_ms": 2691.174030303955, "eta_seconds": 15151.309790611267, "eta": "4:12:31", "timestamp": 1765131905.144456} +{"step": 4380, "loss": 3.6675708293914795, "lr": 0.000432889001614574, "time_ms": 2688.9967918395996, "eta_seconds": 15112.16197013855, "eta": "4:11:52", "timestamp": 1765131932.0479836} +{"step": 4390, "loss": 3.5900614261627197, "lr": 0.0004320170124409861, "time_ms": 2689.131498336792, "eta_seconds": 15086.027705669403, "eta": "4:11:26", "timestamp": 1765131958.951026} +{"step": 4400, "loss": 3.723742961883545, "lr": 0.0004311437802222962, "time_ms": 2689.253807067871, "eta_seconds": 15059.821319580078, "eta": "4:10:59", "timestamp": 1765131985.8546593} +{"step": 4410, "loss": 3.684633731842041, "lr": 0.0004302693155985634, "time_ms": 2689.497709274292, "eta_seconds": 15034.292194843292, "eta": "4:10:34", "timestamp": 1765132012.7568798} +{"step": 4420, "loss": 3.8144142627716064, "lr": 0.00042939362922486305, "time_ms": 2690.350294113159, "eta_seconds": 15012.154641151428, "eta": "4:10:12", "timestamp": 1765132039.6624038} +{"step": 4430, "loss": 3.794452667236328, "lr": 0.00042851673177115717, "time_ms": 2690.729856491089, "eta_seconds": 14987.365300655365, "eta": "4:09:47", "timestamp": 1765132066.566616} +{"step": 4440, "loss": 3.6910510063171387, "lr": 0.0004276386339221648, "time_ms": 2691.023349761963, "eta_seconds": 14962.089824676514, "eta": "4:09:22", "timestamp": 1765132093.4712443} +{"step": 4450, "loss": 3.797473192214966, "lr": 0.00042675934637723096, "time_ms": 2689.7261142730713, "eta_seconds": 14927.979934215546, "eta": "4:08:47", "timestamp": 1765132120.3790872} +{"step": 4460, "loss": 3.614053249359131, "lr": 0.00042587887985019696, "time_ms": 2689.7714138031006, "eta_seconds": 14901.333632469177, "eta": "4:08:21", "timestamp": 1765132147.2910938} +{"step": 4470, "loss": 3.5825908184051514, "lr": 0.0004249972450692694, "time_ms": 2690.541982650757, "eta_seconds": 14878.697164058685, "eta": "4:07:58", "timestamp": 1765132174.2019687} +{"step": 4480, "loss": 3.76223087310791, "lr": 0.00042411445277689005, "time_ms": 2691.0266876220703, "eta_seconds": 14854.467315673828, "eta": "4:07:34", "timestamp": 1765132201.1143475} +{"step": 4490, "loss": 3.5288422107696533, "lr": 0.0004232305137296043, "time_ms": 2690.613269805908, "eta_seconds": 14825.279116630554, "eta": "4:07:05", "timestamp": 1765132228.0266478} +{"step": 4500, "loss": 3.7394018173217773, "lr": 0.00042234543869793054, "time_ms": 52835.423946380615, "eta_seconds": 290594.8317050934, "eta": "3 days, 8:43:14", "timestamp": 1765132305.0826526} +{"step": 4510, "loss": 3.6888904571533203, "lr": 0.00042145923846622865, "time_ms": 2689.213275909424, "eta_seconds": 14763.780884742737, "eta": "4:06:03", "timestamp": 1765132331.958578} +{"step": 4520, "loss": 3.742673397064209, "lr": 0.00042057192383256883, "time_ms": 2688.981771469116, "eta_seconds": 14735.620107650757, "eta": "4:05:35", "timestamp": 1765132358.8445804} +{"step": 4530, "loss": 3.5666768550872803, "lr": 0.0004196835056085998, "time_ms": 2689.249277114868, "eta_seconds": 14710.193545818329, "eta": "4:05:10", "timestamp": 1765132385.7341413} +{"step": 4540, "loss": 3.7068724632263184, "lr": 0.0004187939946194174, "time_ms": 2688.314914703369, "eta_seconds": 14678.199434280396, "eta": "4:04:38", "timestamp": 1765132412.6245885} +{"step": 4550, "loss": 3.741919994354248, "lr": 0.00041790340170343225, "time_ms": 2688.5008811950684, "eta_seconds": 14652.329802513123, "eta": "4:04:12", "timestamp": 1765132439.5178437} +{"step": 4560, "loss": 3.6236822605133057, "lr": 0.00041701173771223793, "time_ms": 2688.21120262146, "eta_seconds": 14623.868942260742, "eta": "4:03:43", "timestamp": 1765132466.4107673} +{"step": 4570, "loss": 3.6976287364959717, "lr": 0.0004161190135104788, "time_ms": 2688.253164291382, "eta_seconds": 14597.214682102203, "eta": "4:03:17", "timestamp": 1765132493.3032975} +{"step": 4580, "loss": 3.5981101989746094, "lr": 0.0004152252399757176, "time_ms": 2688.7383460998535, "eta_seconds": 14572.961835861206, "eta": "4:02:52", "timestamp": 1765132520.199587} +{"step": 4590, "loss": 3.773273468017578, "lr": 0.00041433042799830273, "time_ms": 2689.277172088623, "eta_seconds": 14548.98950099945, "eta": "4:02:28", "timestamp": 1765132547.0959566} +{"step": 4600, "loss": 3.6572299003601074, "lr": 0.00041343458848123576, "time_ms": 2689.8248195648193, "eta_seconds": 14525.054025650024, "eta": "4:02:05", "timestamp": 1765132573.990555} +{"step": 4610, "loss": 3.748236656188965, "lr": 0.0004125377323400385, "time_ms": 2690.0112628936768, "eta_seconds": 14499.160706996918, "eta": "4:01:39", "timestamp": 1765132600.8855057} +{"step": 4620, "loss": 3.683753252029419, "lr": 0.00041163987050261996, "time_ms": 2690.8910274505615, "eta_seconds": 14476.993727684021, "eta": "4:01:16", "timestamp": 1765132627.782611} +{"step": 4630, "loss": 3.602186679840088, "lr": 0.0004107410139091433, "time_ms": 2689.7497177124023, "eta_seconds": 14443.9559841156, "eta": "4:00:43", "timestamp": 1765132654.6779068} +{"step": 4640, "loss": 3.5017354488372803, "lr": 0.00040984117351189255, "time_ms": 2688.918352127075, "eta_seconds": 14412.602367401123, "eta": "4:00:12", "timestamp": 1765132681.577194} +{"step": 4650, "loss": 3.5024032592773438, "lr": 0.0004089403602751389, "time_ms": 2688.3182525634766, "eta_seconds": 14382.5026512146, "eta": "3:59:42", "timestamp": 1765132708.4720712} +{"step": 4660, "loss": 3.729384422302246, "lr": 0.00040803858517500724, "time_ms": 2688.2102489471436, "eta_seconds": 14355.042729377747, "eta": "3:59:15", "timestamp": 1765132735.366165} +{"step": 4670, "loss": 3.633435010910034, "lr": 0.0004071358591993428, "time_ms": 2687.92724609375, "eta_seconds": 14326.652221679688, "eta": "3:58:46", "timestamp": 1765132762.2587774} +{"step": 4680, "loss": 3.702911853790283, "lr": 0.00040623219334757663, "time_ms": 2689.734697341919, "eta_seconds": 14309.388589859009, "eta": "3:58:29", "timestamp": 1765132789.1539128} +{"step": 4690, "loss": 3.7450530529022217, "lr": 0.00040532759863059185, "time_ms": 2688.692331314087, "eta_seconds": 14276.956279277802, "eta": "3:57:56", "timestamp": 1765132816.0452218} +{"step": 4700, "loss": 3.6070058345794678, "lr": 0.0004044220860705897, "time_ms": 2687.9639625549316, "eta_seconds": 14246.209001541138, "eta": "3:57:26", "timestamp": 1765132842.9364643} +{"step": 4710, "loss": 3.6779093742370605, "lr": 0.000403515666700955, "time_ms": 2689.465045928955, "eta_seconds": 14227.270092964172, "eta": "3:57:07", "timestamp": 1765132869.8300054} +{"step": 4720, "loss": 3.6126866340637207, "lr": 0.00040260835156612164, "time_ms": 2688.528537750244, "eta_seconds": 14195.430679321289, "eta": "3:56:35", "timestamp": 1765132896.714823} +{"step": 4730, "loss": 3.727400779724121, "lr": 0.0004017001517214383, "time_ms": 2689.570426940918, "eta_seconds": 14174.036149978638, "eta": "3:56:14", "timestamp": 1765132923.6012564} +{"step": 4740, "loss": 3.6715781688690186, "lr": 0.0004007910782330334, "time_ms": 2687.185764312744, "eta_seconds": 14134.597120285034, "eta": "3:55:34", "timestamp": 1765132950.47923} +{"step": 4750, "loss": 3.762518882751465, "lr": 0.00039988114217768053, "time_ms": 2688.2247924804688, "eta_seconds": 14113.180160522461, "eta": "3:55:13", "timestamp": 1765132977.3575473} +{"step": 4760, "loss": 3.656032085418701, "lr": 0.0003989703546426634, "time_ms": 2686.2051486968994, "eta_seconds": 14075.714979171753, "eta": "3:54:35", "timestamp": 1765133004.228529} +{"step": 4770, "loss": 3.674248695373535, "lr": 0.0003980587267256407, "time_ms": 2687.01434135437, "eta_seconds": 14053.085005283356, "eta": "3:54:13", "timestamp": 1765133031.107609} +{"step": 4780, "loss": 3.839123487472534, "lr": 0.0003971462695345108, "time_ms": 2687.1285438537598, "eta_seconds": 14026.810998916626, "eta": "3:53:46", "timestamp": 1765133057.9905605} +{"step": 4790, "loss": 3.7343015670776367, "lr": 0.00039623299418727666, "time_ms": 2687.562942504883, "eta_seconds": 14002.20293045044, "eta": "3:53:22", "timestamp": 1765133084.8717842} +{"step": 4800, "loss": 3.703749656677246, "lr": 0.0003953189118119102, "time_ms": 2686.3160133361816, "eta_seconds": 13968.843269348145, "eta": "3:52:48", "timestamp": 1765133111.7510839} +{"step": 4810, "loss": 3.6845035552978516, "lr": 0.0003944040335462168, "time_ms": 2688.3597373962402, "eta_seconds": 13952.587037086487, "eta": "3:52:32", "timestamp": 1765133138.6244907} +{"step": 4820, "loss": 3.624732732772827, "lr": 0.0003934883705376992, "time_ms": 2687.98565864563, "eta_seconds": 13923.765711784363, "eta": "3:52:03", "timestamp": 1765133165.5085223} +{"step": 4830, "loss": 3.540260076522827, "lr": 0.00039257193394342236, "time_ms": 2688.1237030029297, "eta_seconds": 13897.599544525146, "eta": "3:51:37", "timestamp": 1765133192.3979034} +{"step": 4840, "loss": 3.729161262512207, "lr": 0.000391654734929877, "time_ms": 2689.1982555389404, "eta_seconds": 13876.262998580933, "eta": "3:51:16", "timestamp": 1765133219.2929945} +{"step": 4850, "loss": 3.524585008621216, "lr": 0.0003907367846728435, "time_ms": 2688.002109527588, "eta_seconds": 13843.210864067078, "eta": "3:50:43", "timestamp": 1765133246.1885238} +{"step": 4860, "loss": 3.5102083683013916, "lr": 0.00038981809435725617, "time_ms": 2690.5956268310547, "eta_seconds": 13829.661521911621, "eta": "3:50:29", "timestamp": 1765133273.0832515} +{"step": 4870, "loss": 3.489262342453003, "lr": 0.0003888986751770665, "time_ms": 2688.401460647583, "eta_seconds": 13791.4994931221, "eta": "3:49:51", "timestamp": 1765133299.9803004} +{"step": 4880, "loss": 3.605618953704834, "lr": 0.00038797853833510705, "time_ms": 2688.619375228882, "eta_seconds": 13765.731201171875, "eta": "3:49:25", "timestamp": 1765133326.876789} +{"step": 4890, "loss": 3.6356160640716553, "lr": 0.0003870576950429549, "time_ms": 2690.476417541504, "eta_seconds": 13748.334493637085, "eta": "3:49:08", "timestamp": 1765133353.7733371} +{"step": 4900, "loss": 3.746793746948242, "lr": 0.0003861361565207949, "time_ms": 2689.4776821136475, "eta_seconds": 13716.336178779602, "eta": "3:48:36", "timestamp": 1765133380.6702557} +{"step": 4910, "loss": 3.538569211959839, "lr": 0.0003852139339972833, "time_ms": 2689.546585083008, "eta_seconds": 13689.79211807251, "eta": "3:48:09", "timestamp": 1765133407.5650713} +{"step": 4920, "loss": 3.735692024230957, "lr": 0.00038429103870941044, "time_ms": 2689.227819442749, "eta_seconds": 13661.277322769165, "eta": "3:47:41", "timestamp": 1765133434.4595904} +{"step": 4930, "loss": 3.6047887802124023, "lr": 0.000383367481902364, "time_ms": 2689.7823810577393, "eta_seconds": 13637.196671962738, "eta": "3:47:17", "timestamp": 1765133461.3596952} +{"step": 4940, "loss": 3.6860291957855225, "lr": 0.00038244327482939237, "time_ms": 2689.9020671844482, "eta_seconds": 13610.904459953308, "eta": "3:46:50", "timestamp": 1765133488.2604053} +{"step": 4950, "loss": 3.6189258098602295, "lr": 0.00038151842875166705, "time_ms": 2688.0903244018555, "eta_seconds": 13574.85613822937, "eta": "3:46:14", "timestamp": 1765133515.1632204} +{"step": 4960, "loss": 3.7083232402801514, "lr": 0.0003805929549381456, "time_ms": 2689.7940635681152, "eta_seconds": 13556.5620803833, "eta": "3:45:56", "timestamp": 1765133542.0648975} +{"step": 4970, "loss": 3.5750045776367188, "lr": 0.0003796668646654344, "time_ms": 2689.423084259033, "eta_seconds": 13527.798113822937, "eta": "3:45:27", "timestamp": 1765133568.96247} +{"step": 4980, "loss": 3.666093349456787, "lr": 0.00037874016921765114, "time_ms": 2689.0923976898193, "eta_seconds": 13499.243836402893, "eta": "3:44:59", "timestamp": 1765133595.8614056} +{"step": 4990, "loss": 3.5773444175720215, "lr": 0.00037781287988628747, "time_ms": 2689.1860961914062, "eta_seconds": 13472.822341918945, "eta": "3:44:32", "timestamp": 1765133622.7615159} +{"step": 5000, "loss": 3.7257821559906006, "lr": 0.0003768850079700712, "time_ms": 52581.78186416626, "eta_seconds": 262908.9093208313, "eta": "3 days, 1:01:48", "timestamp": 1765133699.5519943} +{"step": 5010, "loss": 3.542142152786255, "lr": 0.00037595656477482873, "time_ms": 2689.9776458740234, "eta_seconds": 13422.988452911377, "eta": "3:43:42", "timestamp": 1765133726.4440432} +{"step": 5020, "loss": 3.7951886653900146, "lr": 0.00037502756161334757, "time_ms": 2690.965175628662, "eta_seconds": 13401.006574630737, "eta": "3:43:21", "timestamp": 1765133753.3563886} +{"step": 5030, "loss": 3.6452577114105225, "lr": 0.00037409800980523796, "time_ms": 2691.1027431488037, "eta_seconds": 13374.780633449554, "eta": "3:42:54", "timestamp": 1765133780.2688036} +{"step": 5040, "loss": 3.554370403289795, "lr": 0.00037316792067679537, "time_ms": 2691.336154937744, "eta_seconds": 13349.027328491211, "eta": "3:42:29", "timestamp": 1765133807.18365} +{"step": 5050, "loss": 3.5373544692993164, "lr": 0.0003722373055608623, "time_ms": 2691.718101501465, "eta_seconds": 13324.004602432251, "eta": "3:42:04", "timestamp": 1765133834.1000252} +{"step": 5060, "loss": 3.7190749645233154, "lr": 0.00037130617579669026, "time_ms": 2691.373825073242, "eta_seconds": 13295.386695861816, "eta": "3:41:35", "timestamp": 1765133861.016614} +{"step": 5070, "loss": 3.7271039485931396, "lr": 0.00037037454272980156, "time_ms": 2690.6025409698486, "eta_seconds": 13264.670526981354, "eta": "3:41:04", "timestamp": 1765133887.931213} +{"step": 5080, "loss": 3.595651626586914, "lr": 0.0003694424177118511, "time_ms": 2691.08247756958, "eta_seconds": 13240.125789642334, "eta": "3:40:40", "timestamp": 1765133914.8438132} +{"step": 5090, "loss": 3.5822927951812744, "lr": 0.00036850981210048814, "time_ms": 2690.4544830322266, "eta_seconds": 13210.131511688232, "eta": "3:40:10", "timestamp": 1765133941.757768} +{"step": 5100, "loss": 3.6888294219970703, "lr": 0.0003675767372592176, "time_ms": 2690.885066986084, "eta_seconds": 13185.336828231812, "eta": "3:39:45", "timestamp": 1765133968.6702192} +{"step": 5110, "loss": 3.708026170730591, "lr": 0.0003666432045572621, "time_ms": 2691.297769546509, "eta_seconds": 13160.446093082428, "eta": "3:39:20", "timestamp": 1765133995.5863457} +{"step": 5120, "loss": 3.609689712524414, "lr": 0.000365709225369423, "time_ms": 2690.6983852386475, "eta_seconds": 13130.6081199646, "eta": "3:38:50", "timestamp": 1765134022.4995964} +{"step": 5130, "loss": 3.6129369735717773, "lr": 0.0003647748110759419, "time_ms": 2691.5807723999023, "eta_seconds": 13107.998361587524, "eta": "3:38:27", "timestamp": 1765134049.412281} +{"step": 5140, "loss": 3.6125664710998535, "lr": 0.0003638399730623621, "time_ms": 2690.838098526001, "eta_seconds": 13077.473158836365, "eta": "3:37:57", "timestamp": 1765134076.3256607} +{"step": 5150, "loss": 3.556455612182617, "lr": 0.00036290472271938975, "time_ms": 2690.521717071533, "eta_seconds": 13049.030327796936, "eta": "3:37:29", "timestamp": 1765134103.2395844} +{"step": 5160, "loss": 3.559642791748047, "lr": 0.00036196907144275527, "time_ms": 2691.500663757324, "eta_seconds": 13026.86321258545, "eta": "3:37:06", "timestamp": 1765134130.1513612} +{"step": 5170, "loss": 3.739997386932373, "lr": 0.00036103303063307396, "time_ms": 2691.232204437256, "eta_seconds": 12998.651547431946, "eta": "3:36:38", "timestamp": 1765134157.0646527} +{"step": 5180, "loss": 3.605043411254883, "lr": 0.0003600966116957078, "time_ms": 2691.287040710449, "eta_seconds": 12972.003536224365, "eta": "3:36:12", "timestamp": 1765134183.9792662} +{"step": 5190, "loss": 3.5504047870635986, "lr": 0.0003591598260406261, "time_ms": 2690.8276081085205, "eta_seconds": 12942.880795001984, "eta": "3:35:42", "timestamp": 1765134210.8934479} +{"step": 5200, "loss": 3.7031657695770264, "lr": 0.0003582226850822664, "time_ms": 2690.4296875, "eta_seconds": 12914.0625, "eta": "3:35:14", "timestamp": 1765134237.8051395} +{"step": 5210, "loss": 3.702183246612549, "lr": 0.0003572852002393954, "time_ms": 2690.2732849121094, "eta_seconds": 12886.409034729004, "eta": "3:34:46", "timestamp": 1765134264.7169812} +{"step": 5220, "loss": 3.6444849967956543, "lr": 0.00035634738293497027, "time_ms": 2690.819025039673, "eta_seconds": 12862.114939689636, "eta": "3:34:22", "timestamp": 1765134291.6287286} +{"step": 5230, "loss": 3.5154550075531006, "lr": 0.0003554092445959989, "time_ms": 2690.9828186035156, "eta_seconds": 12835.98804473877, "eta": "3:33:55", "timestamp": 1765134318.5392542} +{"step": 5240, "loss": 3.5562376976013184, "lr": 0.00035447079665340065, "time_ms": 2690.6721591949463, "eta_seconds": 12807.599477767944, "eta": "3:33:27", "timestamp": 1765134345.450094} +{"step": 5250, "loss": 3.5435311794281006, "lr": 0.0003535320505418677, "time_ms": 2691.4737224578857, "eta_seconds": 12784.500181674957, "eta": "3:33:04", "timestamp": 1765134372.3617225} +{"step": 5260, "loss": 3.4482171535491943, "lr": 0.0003525930176997252, "time_ms": 2690.9825801849365, "eta_seconds": 12755.2574300766, "eta": "3:32:35", "timestamp": 1765134399.2738454} +{"step": 5270, "loss": 3.573338031768799, "lr": 0.0003516537095687918, "time_ms": 2691.0290718078613, "eta_seconds": 12728.567509651184, "eta": "3:32:08", "timestamp": 1765134426.183103} +{"step": 5280, "loss": 3.453293800354004, "lr": 0.000350714137594241, "time_ms": 2691.270589828491, "eta_seconds": 12702.797183990479, "eta": "3:31:42", "timestamp": 1765134453.0956957} +{"step": 5290, "loss": 3.386354923248291, "lr": 0.0003497743132244605, "time_ms": 2691.0953521728516, "eta_seconds": 12675.05910873413, "eta": "3:31:15", "timestamp": 1765134480.0062447} +{"step": 5300, "loss": 3.625610113143921, "lr": 0.00034883424791091376, "time_ms": 2691.385507583618, "eta_seconds": 12649.511885643005, "eta": "3:30:49", "timestamp": 1765134506.9182758} +{"step": 5310, "loss": 3.6599838733673096, "lr": 0.000347893953108, "time_ms": 2691.44344329834, "eta_seconds": 12622.869749069214, "eta": "3:30:22", "timestamp": 1765134533.8315687} +{"step": 5320, "loss": 3.6538469791412354, "lr": 0.0003469534402729146, "time_ms": 2690.709352493286, "eta_seconds": 12592.51976966858, "eta": "3:29:52", "timestamp": 1765134560.7447782} +{"step": 5330, "loss": 3.521974802017212, "lr": 0.0003460127208655096, "time_ms": 2691.0040378570557, "eta_seconds": 12566.98885679245, "eta": "3:29:26", "timestamp": 1765134587.657234} +{"step": 5340, "loss": 3.5887739658355713, "lr": 0.00034507180634815417, "time_ms": 2691.312313079834, "eta_seconds": 12541.515378952026, "eta": "3:29:01", "timestamp": 1765134614.57289} +{"step": 5350, "loss": 3.584489345550537, "lr": 0.0003441307081855948, "time_ms": 2691.162586212158, "eta_seconds": 12513.906025886536, "eta": "3:28:33", "timestamp": 1765134641.4851027} +{"step": 5360, "loss": 3.561399459838867, "lr": 0.00034318943784481556, "time_ms": 2691.8368339538574, "eta_seconds": 12490.122909545898, "eta": "3:28:10", "timestamp": 1765134668.3996296} +{"step": 5370, "loss": 3.488069534301758, "lr": 0.00034224800679489843, "time_ms": 2690.742254257202, "eta_seconds": 12458.136637210846, "eta": "3:27:38", "timestamp": 1765134695.3139925} +{"step": 5380, "loss": 3.6524055004119873, "lr": 0.00034130642650688383, "time_ms": 2690.9713745117188, "eta_seconds": 12432.28775024414, "eta": "3:27:12", "timestamp": 1765134722.227537} +{"step": 5390, "loss": 3.6533589363098145, "lr": 0.00034036470845363035, "time_ms": 2690.3886795043945, "eta_seconds": 12402.691812515259, "eta": "3:26:42", "timestamp": 1765134749.1396384} +{"step": 5400, "loss": 3.6962716579437256, "lr": 0.00033942286410967523, "time_ms": 2691.002607345581, "eta_seconds": 12378.611993789673, "eta": "3:26:18", "timestamp": 1765134776.05364} +{"step": 5410, "loss": 3.6455960273742676, "lr": 0.0003384809049510946, "time_ms": 2691.554307937622, "eta_seconds": 12354.234273433685, "eta": "3:25:54", "timestamp": 1765134802.9682937} +{"step": 5420, "loss": 3.681647300720215, "lr": 0.0003375388424553636, "time_ms": 2690.5853748321533, "eta_seconds": 12322.881016731262, "eta": "3:25:22", "timestamp": 1765134829.880953} +{"step": 5430, "loss": 3.55768084526062, "lr": 0.00033659668810121635, "time_ms": 2691.570043563843, "eta_seconds": 12300.475099086761, "eta": "3:25:00", "timestamp": 1765134856.79589} +{"step": 5440, "loss": 3.6998679637908936, "lr": 0.0003356544533685063, "time_ms": 2691.070079803467, "eta_seconds": 12271.279563903809, "eta": "3:24:31", "timestamp": 1765134883.712521} +{"step": 5450, "loss": 3.6796979904174805, "lr": 0.00033471214973806654, "time_ms": 2690.3443336486816, "eta_seconds": 12241.066718101501, "eta": "3:24:01", "timestamp": 1765134910.626955} +{"step": 5460, "loss": 3.465418815612793, "lr": 0.00033376978869156923, "time_ms": 2690.81449508667, "eta_seconds": 12216.297807693481, "eta": "3:23:36", "timestamp": 1765134937.5447066} +{"step": 5470, "loss": 3.5215020179748535, "lr": 0.0003328273817113863, "time_ms": 2691.711902618408, "eta_seconds": 12193.45491886139, "eta": "3:23:13", "timestamp": 1765134964.4632533} +{"step": 5480, "loss": 3.6753509044647217, "lr": 0.00033188494028044954, "time_ms": 2691.852569580078, "eta_seconds": 12167.173614501953, "eta": "3:22:47", "timestamp": 1765134991.381116} +{"step": 5490, "loss": 3.6809167861938477, "lr": 0.00033094247588211033, "time_ms": 2690.8998489379883, "eta_seconds": 12135.958318710327, "eta": "3:22:15", "timestamp": 1765135018.2981236} +{"step": 5500, "loss": 3.5302722454071045, "lr": 0.00032999999999999994, "time_ms": 52576.611042022705, "eta_seconds": 236594.74968910217, "eta": "2 days, 17:43:14", "timestamp": 1765135095.0994575} +{"step": 5510, "loss": 3.47719407081604, "lr": 0.0003290575241178896, "time_ms": 2689.6615028381348, "eta_seconds": 12076.580147743225, "eta": "3:21:16", "timestamp": 1765135121.997743} +{"step": 5520, "loss": 3.4518444538116455, "lr": 0.00032811505971955035, "time_ms": 2690.2384757995605, "eta_seconds": 12052.268371582031, "eta": "3:20:52", "timestamp": 1765135148.9055982} +{"step": 5530, "loss": 3.5136008262634277, "lr": 0.00032717261828861364, "time_ms": 2691.2851333618164, "eta_seconds": 12030.04454612732, "eta": "3:20:30", "timestamp": 1765135175.8210351} +{"step": 5540, "loss": 3.5563414096832275, "lr": 0.00032623021130843077, "time_ms": 2691.0250186920166, "eta_seconds": 12001.971583366394, "eta": "3:20:01", "timestamp": 1765135202.7330117} +{"step": 5550, "loss": 3.6759562492370605, "lr": 0.0003252878502619334, "time_ms": 2691.375970840454, "eta_seconds": 11976.62307024002, "eta": "3:19:36", "timestamp": 1765135229.6491694} +{"step": 5560, "loss": 3.55159068107605, "lr": 0.00032434554663149357, "time_ms": 2690.844774246216, "eta_seconds": 11947.350797653198, "eta": "3:19:07", "timestamp": 1765135256.5626936} +{"step": 5570, "loss": 3.5696797370910645, "lr": 0.0003234033118987836, "time_ms": 2690.2518272399902, "eta_seconds": 11917.815594673157, "eta": "3:18:37", "timestamp": 1765135283.4719698} +{"step": 5580, "loss": 3.462432384490967, "lr": 0.0003224611575446364, "time_ms": 2690.0012493133545, "eta_seconds": 11889.805521965027, "eta": "3:18:09", "timestamp": 1765135310.3723302} +{"step": 5590, "loss": 3.528493881225586, "lr": 0.0003215190950489053, "time_ms": 2690.448760986328, "eta_seconds": 11864.879035949707, "eta": "3:17:44", "timestamp": 1765135337.2803304} +{"step": 5600, "loss": 3.5367424488067627, "lr": 0.00032057713589032477, "time_ms": 2691.7104721069336, "eta_seconds": 11843.526077270508, "eta": "3:17:23", "timestamp": 1765135364.1947973} +{"step": 5610, "loss": 3.557140350341797, "lr": 0.0003196352915463696, "time_ms": 2690.4520988464355, "eta_seconds": 11811.084713935852, "eta": "3:16:51", "timestamp": 1765135391.108985} +{"step": 5620, "loss": 3.679509401321411, "lr": 0.0003186935734931161, "time_ms": 2690.5295848846436, "eta_seconds": 11784.519581794739, "eta": "3:16:24", "timestamp": 1765135418.0220127} +{"step": 5630, "loss": 3.5390427112579346, "lr": 0.00031775199320510146, "time_ms": 2690.4664039611816, "eta_seconds": 11757.338185310364, "eta": "3:15:57", "timestamp": 1765135444.9338422} +{"step": 5640, "loss": 3.549666166305542, "lr": 0.0003168105621551844, "time_ms": 2691.5361881256104, "eta_seconds": 11735.097780227661, "eta": "3:15:35", "timestamp": 1765135471.8506742} +{"step": 5650, "loss": 3.452528715133667, "lr": 0.0003158692918144051, "time_ms": 2691.936492919922, "eta_seconds": 11709.92374420166, "eta": "3:15:09", "timestamp": 1765135498.7670135} +{"step": 5660, "loss": 3.5731427669525146, "lr": 0.0003149281936518457, "time_ms": 2691.01881980896, "eta_seconds": 11679.021677970886, "eta": "3:14:39", "timestamp": 1765135525.6815767} +{"step": 5670, "loss": 3.5008463859558105, "lr": 0.00031398727913449037, "time_ms": 2690.396308898926, "eta_seconds": 11649.416017532349, "eta": "3:14:09", "timestamp": 1765135552.5939834} +{"step": 5680, "loss": 3.604156255722046, "lr": 0.00031304655972708536, "time_ms": 2690.6421184539795, "eta_seconds": 11623.573951721191, "eta": "3:13:43", "timestamp": 1765135579.5066154} +{"step": 5690, "loss": 3.6722640991210938, "lr": 0.000312106046892, "time_ms": 2690.938949584961, "eta_seconds": 11597.946872711182, "eta": "3:13:17", "timestamp": 1765135606.415784} +{"step": 5700, "loss": 3.57108736038208, "lr": 0.0003111657520890861, "time_ms": 2690.972089767456, "eta_seconds": 11571.179986000061, "eta": "3:12:51", "timestamp": 1765135633.3254635} +{"step": 5710, "loss": 3.3976991176605225, "lr": 0.00031022568677553945, "time_ms": 2690.9594535827637, "eta_seconds": 11544.216055870056, "eta": "3:12:24", "timestamp": 1765135660.2352664} +{"step": 5720, "loss": 3.566011667251587, "lr": 0.0003092858624057589, "time_ms": 2689.6755695343018, "eta_seconds": 11511.811437606812, "eta": "3:11:51", "timestamp": 1765135687.1390398} +{"step": 5730, "loss": 3.5751349925994873, "lr": 0.0003083462904312081, "time_ms": 2690.4115676879883, "eta_seconds": 11488.05739402771, "eta": "3:11:28", "timestamp": 1765135714.047868} +{"step": 5740, "loss": 3.542179584503174, "lr": 0.0003074069823002748, "time_ms": 2690.650224685669, "eta_seconds": 11462.16995716095, "eta": "3:11:02", "timestamp": 1765135740.9563076} +{"step": 5750, "loss": 3.53115177154541, "lr": 0.0003064679494581322, "time_ms": 2691.366672515869, "eta_seconds": 11438.308358192444, "eta": "3:10:38", "timestamp": 1765135767.8695307} +{"step": 5760, "loss": 3.4548020362854004, "lr": 0.00030552920334659935, "time_ms": 2690.9806728363037, "eta_seconds": 11409.758052825928, "eta": "3:10:09", "timestamp": 1765135794.7828577} +{"step": 5770, "loss": 3.466799020767212, "lr": 0.0003045907554040011, "time_ms": 2690.652847290039, "eta_seconds": 11381.461544036865, "eta": "3:09:41", "timestamp": 1765135821.695936} +{"step": 5780, "loss": 3.623839855194092, "lr": 0.0003036526170650296, "time_ms": 2690.976619720459, "eta_seconds": 11355.921335220337, "eta": "3:09:15", "timestamp": 1765135848.6091266} +{"step": 5790, "loss": 3.4901771545410156, "lr": 0.0003027147997606044, "time_ms": 2691.4124488830566, "eta_seconds": 11330.846409797668, "eta": "3:08:50", "timestamp": 1765135875.5232847} +{"step": 5800, "loss": 3.520242214202881, "lr": 0.0003017773149177336, "time_ms": 2691.011428833008, "eta_seconds": 11302.248001098633, "eta": "3:08:22", "timestamp": 1765135902.4373362} +{"step": 5810, "loss": 3.4153010845184326, "lr": 0.0003008401739593738, "time_ms": 2690.1180744171143, "eta_seconds": 11271.594731807709, "eta": "3:07:51", "timestamp": 1765135929.348228} +{"step": 5820, "loss": 3.5906379222869873, "lr": 0.0002999033883042921, "time_ms": 2690.873861312866, "eta_seconds": 11247.85274028778, "eta": "3:07:27", "timestamp": 1765135956.2592945} +{"step": 5830, "loss": 3.5189883708953857, "lr": 0.00029896696936692604, "time_ms": 2690.685510635376, "eta_seconds": 11220.158579349518, "eta": "3:07:00", "timestamp": 1765135983.1734595} +{"step": 5840, "loss": 3.4467554092407227, "lr": 0.0002980309285572447, "time_ms": 2691.347360610962, "eta_seconds": 11196.005020141602, "eta": "3:06:36", "timestamp": 1765136010.0850573} +{"step": 5850, "loss": 3.50405216217041, "lr": 0.0002970952772806102, "time_ms": 2690.5264854431152, "eta_seconds": 11165.684914588928, "eta": "3:06:05", "timestamp": 1765136036.9971087} +{"step": 5860, "loss": 3.5450353622436523, "lr": 0.0002961600269376378, "time_ms": 2690.7989978790283, "eta_seconds": 11139.907851219177, "eta": "3:05:39", "timestamp": 1765136063.9078057} +{"step": 5870, "loss": 3.5115067958831787, "lr": 0.000295225188924058, "time_ms": 2690.887212753296, "eta_seconds": 11113.364188671112, "eta": "3:05:13", "timestamp": 1765136090.822061} +{"step": 5880, "loss": 3.4926419258117676, "lr": 0.00029429077463057686, "time_ms": 2691.183567047119, "eta_seconds": 11087.67629623413, "eta": "3:04:47", "timestamp": 1765136117.7357597} +{"step": 5890, "loss": 3.4198520183563232, "lr": 0.0002933567954427378, "time_ms": 2690.520763397217, "eta_seconds": 11058.040337562561, "eta": "3:04:18", "timestamp": 1765136144.6472695} +{"step": 5900, "loss": 3.39607834815979, "lr": 0.00029242326274078235, "time_ms": 2691.889762878418, "eta_seconds": 11036.748027801514, "eta": "3:03:56", "timestamp": 1765136171.5595486} +{"step": 5910, "loss": 3.486295461654663, "lr": 0.00029149018789951186, "time_ms": 2691.2500858306885, "eta_seconds": 11007.212851047516, "eta": "3:03:27", "timestamp": 1765136198.471256} +{"step": 5920, "loss": 3.5351791381835938, "lr": 0.00029055758228814884, "time_ms": 2690.2341842651367, "eta_seconds": 10976.155471801758, "eta": "3:02:56", "timestamp": 1765136225.380978} +{"step": 5930, "loss": 3.517378568649292, "lr": 0.00028962545727019844, "time_ms": 2690.452814102173, "eta_seconds": 10950.142953395844, "eta": "3:02:30", "timestamp": 1765136252.2944407} +{"step": 5940, "loss": 3.538886070251465, "lr": 0.00028869382420330974, "time_ms": 2691.1075115203857, "eta_seconds": 10925.896496772766, "eta": "3:02:05", "timestamp": 1765136279.207934} +{"step": 5950, "loss": 3.495985269546509, "lr": 0.0002877626944391376, "time_ms": 2690.7451152801514, "eta_seconds": 10897.517716884613, "eta": "3:01:37", "timestamp": 1765136306.119894} +{"step": 5960, "loss": 3.47821307182312, "lr": 0.0002868320793232046, "time_ms": 2690.6440258026123, "eta_seconds": 10870.201864242554, "eta": "3:01:10", "timestamp": 1765136333.03338} +{"step": 5970, "loss": 3.4509494304656982, "lr": 0.00028590199019476204, "time_ms": 2691.258430480957, "eta_seconds": 10845.771474838257, "eta": "3:00:45", "timestamp": 1765136359.9470375} +{"step": 5980, "loss": 3.3957533836364746, "lr": 0.0002849724383866524, "time_ms": 2690.866470336914, "eta_seconds": 10817.283210754395, "eta": "3:00:17", "timestamp": 1765136386.8625252} +{"step": 5990, "loss": 3.508836030960083, "lr": 0.0002840434352251712, "time_ms": 2690.6838417053223, "eta_seconds": 10789.642205238342, "eta": "2:59:49", "timestamp": 1765136413.7767856} +{"step": 6000, "loss": 3.420541286468506, "lr": 0.0002831149920299288, "time_ms": 49932.13629722595, "eta_seconds": 199728.5451889038, "eta": "2 days, 7:28:48", "timestamp": 1765136487.9343574} +{"step": 6010, "loss": 3.5173749923706055, "lr": 0.0002821871201137125, "time_ms": 2690.7994747161865, "eta_seconds": 10736.289904117584, "eta": "2:58:56", "timestamp": 1765136514.8519993} +{"step": 6020, "loss": 3.449103832244873, "lr": 0.0002812598307823488, "time_ms": 2691.9167041778564, "eta_seconds": 10713.828482627869, "eta": "2:58:33", "timestamp": 1765136541.768577} +{"step": 6030, "loss": 3.450855255126953, "lr": 0.0002803331353345655, "time_ms": 2691.0555362701416, "eta_seconds": 10683.490478992462, "eta": "2:58:03", "timestamp": 1765136568.686697} +{"step": 6040, "loss": 3.6312997341156006, "lr": 0.0002794070450618543, "time_ms": 2690.6723976135254, "eta_seconds": 10655.06269454956, "eta": "2:57:35", "timestamp": 1765136595.6024075} +{"step": 6050, "loss": 3.5521318912506104, "lr": 0.00027848157124833284, "time_ms": 2691.484212875366, "eta_seconds": 10631.362640857697, "eta": "2:57:11", "timestamp": 1765136622.5150135} +{"step": 6060, "loss": 3.3981292247772217, "lr": 0.0002775567251706076, "time_ms": 2690.9704208374023, "eta_seconds": 10602.423458099365, "eta": "2:56:42", "timestamp": 1765136649.426829} +{"step": 6070, "loss": 3.4012625217437744, "lr": 0.0002766325180976359, "time_ms": 2690.406084060669, "eta_seconds": 10573.295910358429, "eta": "2:56:13", "timestamp": 1765136676.457454} +{"step": 6080, "loss": 3.4841156005859375, "lr": 0.00027570896129058955, "time_ms": 2690.422296524048, "eta_seconds": 10546.455402374268, "eta": "2:55:46", "timestamp": 1765136703.3687441} +{"step": 6090, "loss": 3.562171697616577, "lr": 0.0002747860660027166, "time_ms": 2690.1891231536865, "eta_seconds": 10518.639471530914, "eta": "2:55:18", "timestamp": 1765136730.2756002} +{"step": 6100, "loss": 3.4397482872009277, "lr": 0.000273863843479205, "time_ms": 2691.225051879883, "eta_seconds": 10495.777702331543, "eta": "2:54:55", "timestamp": 1765136757.1817033} +{"step": 6110, "loss": 3.3686983585357666, "lr": 0.00027294230495704505, "time_ms": 2691.2291049957275, "eta_seconds": 10468.88121843338, "eta": "2:54:28", "timestamp": 1765136784.08812} +{"step": 6120, "loss": 3.5265955924987793, "lr": 0.0002720214616648929, "time_ms": 2690.2337074279785, "eta_seconds": 10438.106784820557, "eta": "2:53:58", "timestamp": 1765136810.9956677} +{"step": 6130, "loss": 3.418337106704712, "lr": 0.00027110132482293357, "time_ms": 2690.641164779663, "eta_seconds": 10412.781307697296, "eta": "2:53:32", "timestamp": 1765136837.9036672} +{"step": 6140, "loss": 3.587554454803467, "lr": 0.00027018190564274383, "time_ms": 2689.9335384368896, "eta_seconds": 10383.143458366394, "eta": "2:53:03", "timestamp": 1765136864.8120534} +{"step": 6150, "loss": 3.52272367477417, "lr": 0.00026926321532715644, "time_ms": 2690.4046535491943, "eta_seconds": 10358.057916164398, "eta": "2:52:38", "timestamp": 1765136891.7211206} +{"step": 6160, "loss": 3.4360411167144775, "lr": 0.0002683452650701229, "time_ms": 2690.574884414673, "eta_seconds": 10331.807556152344, "eta": "2:52:11", "timestamp": 1765136918.6282754} +{"step": 6170, "loss": 3.596872329711914, "lr": 0.00026742806605657753, "time_ms": 2690.356492996216, "eta_seconds": 10304.065368175507, "eta": "2:51:44", "timestamp": 1765136945.7092066} +{"step": 6180, "loss": 3.4629976749420166, "lr": 0.0002665116294623007, "time_ms": 2690.537691116333, "eta_seconds": 10277.853980064392, "eta": "2:51:17", "timestamp": 1765136972.9452841} +{"step": 6190, "loss": 3.4176108837127686, "lr": 0.0002655959664537832, "time_ms": 2691.2598609924316, "eta_seconds": 10253.700070381165, "eta": "2:50:53", "timestamp": 1765136999.8562398} +{"step": 6200, "loss": 3.418454885482788, "lr": 0.0002646810881880897, "time_ms": 2690.2472972869873, "eta_seconds": 10222.939729690552, "eta": "2:50:22", "timestamp": 1765137026.9345005} +{"step": 6210, "loss": 3.422356367111206, "lr": 0.0002637670058127233, "time_ms": 2690.185070037842, "eta_seconds": 10195.80141544342, "eta": "2:49:55", "timestamp": 1765137054.0333781} +{"step": 6220, "loss": 3.482009172439575, "lr": 0.0002628537304654892, "time_ms": 2690.160036087036, "eta_seconds": 10168.804936408997, "eta": "2:49:28", "timestamp": 1765137081.1671216} +{"step": 6230, "loss": 3.3580284118652344, "lr": 0.00026194127327435927, "time_ms": 2690.991163253784, "eta_seconds": 10145.036685466766, "eta": "2:49:05", "timestamp": 1765137108.0795379} +{"step": 6240, "loss": 3.493834972381592, "lr": 0.00026102964535733655, "time_ms": 2691.3583278656006, "eta_seconds": 10119.507312774658, "eta": "2:48:39", "timestamp": 1765137134.9926016} +{"step": 6250, "loss": 3.403848886489868, "lr": 0.00026011885782231935, "time_ms": 2690.4566287994385, "eta_seconds": 10089.212357997894, "eta": "2:48:09", "timestamp": 1765137161.9050312} +{"step": 6260, "loss": 3.581848621368408, "lr": 0.00025920892176696655, "time_ms": 2691.0581588745117, "eta_seconds": 10064.557514190674, "eta": "2:47:44", "timestamp": 1765137188.820753} +{"step": 6270, "loss": 3.3920047283172607, "lr": 0.00025829984827856157, "time_ms": 2690.9828186035156, "eta_seconds": 10037.365913391113, "eta": "2:47:17", "timestamp": 1765137215.7328825} +{"step": 6280, "loss": 3.361009120941162, "lr": 0.00025739164843387825, "time_ms": 2690.1159286499023, "eta_seconds": 10007.231254577637, "eta": "2:46:47", "timestamp": 1765137242.6456976} +{"step": 6290, "loss": 3.570831298828125, "lr": 0.0002564843332990449, "time_ms": 2691.154718399048, "eta_seconds": 9984.184005260468, "eta": "2:46:24", "timestamp": 1765137269.5559573} +{"step": 6300, "loss": 3.3538503646850586, "lr": 0.00025557791392941023, "time_ms": 2690.3018951416016, "eta_seconds": 9954.117012023926, "eta": "2:45:54", "timestamp": 1765137296.4656863} +{"step": 6310, "loss": 3.3225929737091064, "lr": 0.0002546724013694081, "time_ms": 2690.835952758789, "eta_seconds": 9929.184665679932, "eta": "2:45:29", "timestamp": 1765137323.37827} +{"step": 6320, "loss": 3.4126877784729004, "lr": 0.0002537678066524233, "time_ms": 2691.6141510009766, "eta_seconds": 9905.140075683594, "eta": "2:45:05", "timestamp": 1765137350.2913} +{"step": 6330, "loss": 3.43868350982666, "lr": 0.00025286414080065715, "time_ms": 2690.4664039611816, "eta_seconds": 9874.011702537537, "eta": "2:44:34", "timestamp": 1765137377.2030513} +{"step": 6340, "loss": 3.546349287033081, "lr": 0.0002519614148249926, "time_ms": 2690.73486328125, "eta_seconds": 9848.089599609375, "eta": "2:44:08", "timestamp": 1765137404.1149092} +{"step": 6350, "loss": 3.3371284008026123, "lr": 0.00025105963972486107, "time_ms": 2690.469264984131, "eta_seconds": 9820.212817192078, "eta": "2:43:40", "timestamp": 1765137431.023756} +{"step": 6360, "loss": 3.4704344272613525, "lr": 0.00025015882648810744, "time_ms": 2690.5317306518555, "eta_seconds": 9793.535499572754, "eta": "2:43:13", "timestamp": 1765137457.9332569} +{"step": 6370, "loss": 3.412588357925415, "lr": 0.00024925898609085657, "time_ms": 2690.7315254211426, "eta_seconds": 9767.355437278748, "eta": "2:42:47", "timestamp": 1765137484.8431323} +{"step": 6380, "loss": 3.4235095977783203, "lr": 0.00024836012949738, "time_ms": 2691.0908222198486, "eta_seconds": 9741.748776435852, "eta": "2:42:21", "timestamp": 1765137511.753994} +{"step": 6390, "loss": 3.4516563415527344, "lr": 0.00024746226765996147, "time_ms": 2690.2689933776855, "eta_seconds": 9711.871066093445, "eta": "2:41:51", "timestamp": 1765137538.663548} +{"step": 6400, "loss": 3.6397013664245605, "lr": 0.0002465654115187642, "time_ms": 2691.5698051452637, "eta_seconds": 9689.65129852295, "eta": "2:41:29", "timestamp": 1765137565.5754323} +{"step": 6410, "loss": 3.5247018337249756, "lr": 0.00024566957200169716, "time_ms": 2690.1957988739014, "eta_seconds": 9657.802917957306, "eta": "2:40:57", "timestamp": 1765137592.486338} +{"step": 6420, "loss": 3.442823886871338, "lr": 0.00024477476002428234, "time_ms": 2690.631151199341, "eta_seconds": 9632.45952129364, "eta": "2:40:32", "timestamp": 1765137619.399767} +{"step": 6430, "loss": 3.549304485321045, "lr": 0.00024388098648952104, "time_ms": 2691.136360168457, "eta_seconds": 9607.356805801392, "eta": "2:40:07", "timestamp": 1765137646.3128839} +{"step": 6440, "loss": 3.496286392211914, "lr": 0.000242988262287762, "time_ms": 2690.791606903076, "eta_seconds": 9579.218120574951, "eta": "2:39:39", "timestamp": 1765137673.225103} +{"step": 6450, "loss": 3.4224905967712402, "lr": 0.00024209659829656772, "time_ms": 2690.9985542297363, "eta_seconds": 9553.044867515564, "eta": "2:39:13", "timestamp": 1765137700.139099} +{"step": 6460, "loss": 3.4913291931152344, "lr": 0.00024120600538058248, "time_ms": 2691.7998790740967, "eta_seconds": 9528.971571922302, "eta": "2:38:48", "timestamp": 1765137727.3012466} +{"step": 6470, "loss": 3.53629207611084, "lr": 0.00024031649439140015, "time_ms": 2691.9453144073486, "eta_seconds": 9502.56695985794, "eta": "2:38:22", "timestamp": 1765137754.8785405} +{"step": 6480, "loss": 3.414605140686035, "lr": 0.00023942807616743114, "time_ms": 2688.736915588379, "eta_seconds": 9464.353942871094, "eta": "2:37:44", "timestamp": 1765137781.9615412} +{"step": 6490, "loss": 3.224918842315674, "lr": 0.0002385407615337713, "time_ms": 2689.650535583496, "eta_seconds": 9440.673379898071, "eta": "2:37:20", "timestamp": 1765137809.1476462} +{"step": 6500, "loss": 3.5934042930603027, "lr": 0.00023765456130206942, "time_ms": 50520.64752578735, "eta_seconds": 176822.26634025574, "eta": "2 days, 1:07:02", "timestamp": 1765137884.3252578} +{"step": 6510, "loss": 3.4796619415283203, "lr": 0.0002367694862703956, "time_ms": 2691.5335655212402, "eta_seconds": 9393.452143669128, "eta": "2:36:33", "timestamp": 1765137911.2393227} +{"step": 6520, "loss": 3.4967548847198486, "lr": 0.00023588554722310992, "time_ms": 2691.171407699585, "eta_seconds": 9365.276498794556, "eta": "2:36:05", "timestamp": 1765137938.1511428} +{"step": 6530, "loss": 3.4703867435455322, "lr": 0.00023500275493073048, "time_ms": 2690.8864974975586, "eta_seconds": 9337.376146316528, "eta": "2:35:37", "timestamp": 1765137965.0618584} +{"step": 6540, "loss": 3.431929588317871, "lr": 0.000234121120149803, "time_ms": 2691.1063194274902, "eta_seconds": 9311.227865219116, "eta": "2:35:11", "timestamp": 1765137991.9766192} +{"step": 6550, "loss": 3.5372202396392822, "lr": 0.0002332406536227689, "time_ms": 2690.883159637451, "eta_seconds": 9283.546900749207, "eta": "2:34:43", "timestamp": 1765138018.8878684} +{"step": 6560, "loss": 3.578564405441284, "lr": 0.00023236136607783509, "time_ms": 2690.8552646636963, "eta_seconds": 9256.542110443115, "eta": "2:34:16", "timestamp": 1765138045.7962327} +{"step": 6570, "loss": 3.37480092048645, "lr": 0.00023148326822884264, "time_ms": 2690.608024597168, "eta_seconds": 9228.785524368286, "eta": "2:33:48", "timestamp": 1765138072.705673} +{"step": 6580, "loss": 3.4870028495788574, "lr": 0.00023060637077513692, "time_ms": 2690.0150775909424, "eta_seconds": 9199.851565361023, "eta": "2:33:19", "timestamp": 1765138099.6185937} +{"step": 6590, "loss": 3.4104645252227783, "lr": 0.00022973068440143663, "time_ms": 2690.4587745666504, "eta_seconds": 9174.464421272278, "eta": "2:32:54", "timestamp": 1765138126.5306067} +{"step": 6600, "loss": 3.4747934341430664, "lr": 0.0002288562197777037, "time_ms": 2690.45090675354, "eta_seconds": 9147.533082962036, "eta": "2:32:27", "timestamp": 1765138153.440386} +{"step": 6610, "loss": 3.358769655227661, "lr": 0.00022798298755901387, "time_ms": 2690.47212600708, "eta_seconds": 9120.700507164001, "eta": "2:32:00", "timestamp": 1765138180.3481312} +{"step": 6620, "loss": 3.4173970222473145, "lr": 0.00022711099838542597, "time_ms": 2690.3164386749268, "eta_seconds": 9093.269562721252, "eta": "2:31:33", "timestamp": 1765138207.2555819} +{"step": 6630, "loss": 3.418813943862915, "lr": 0.00022624026288185298, "time_ms": 2691.021203994751, "eta_seconds": 9068.74145746231, "eta": "2:31:08", "timestamp": 1765138234.167421} +{"step": 6640, "loss": 3.5241851806640625, "lr": 0.00022537079165793218, "time_ms": 2690.8278465270996, "eta_seconds": 9041.181564331055, "eta": "2:30:41", "timestamp": 1765138261.0751827} +{"step": 6650, "loss": 3.396704912185669, "lr": 0.0002245025953078961, "time_ms": 2690.7339096069336, "eta_seconds": 9013.958597183228, "eta": "2:30:13", "timestamp": 1765138287.9824767} +{"step": 6660, "loss": 3.400761127471924, "lr": 0.00022363568441044316, "time_ms": 2690.4428005218506, "eta_seconds": 8986.078953742981, "eta": "2:29:46", "timestamp": 1765138314.8933117} +{"step": 6670, "loss": 3.3927133083343506, "lr": 0.00022277006952860923, "time_ms": 2690.653085708618, "eta_seconds": 8959.874775409698, "eta": "2:29:19", "timestamp": 1765138341.804742} +{"step": 6680, "loss": 3.4570531845092773, "lr": 0.00022190576120963837, "time_ms": 2690.1838779449463, "eta_seconds": 8931.410474777222, "eta": "2:28:51", "timestamp": 1765138368.716449} +{"step": 6690, "loss": 3.331723690032959, "lr": 0.00022104276998485465, "time_ms": 2690.9339427948, "eta_seconds": 8906.991350650787, "eta": "2:28:26", "timestamp": 1765138395.6301634} +{"step": 6700, "loss": 3.4251439571380615, "lr": 0.00022018110636953396, "time_ms": 2690.526247024536, "eta_seconds": 8878.73661518097, "eta": "2:27:58", "timestamp": 1765138422.544396} +{"step": 6710, "loss": 3.37251615524292, "lr": 0.0002193207808627753, "time_ms": 2690.7920837402344, "eta_seconds": 8852.705955505371, "eta": "2:27:32", "timestamp": 1765138449.4587204} +{"step": 6720, "loss": 3.432312250137329, "lr": 0.00021846180394737371, "time_ms": 2690.998315811157, "eta_seconds": 8826.474475860596, "eta": "2:27:06", "timestamp": 1765138476.3716955} +{"step": 6730, "loss": 3.4787094593048096, "lr": 0.00021760418608969168, "time_ms": 2689.2764568328857, "eta_seconds": 8793.934013843536, "eta": "2:26:33", "timestamp": 1765138503.2757113} +{"step": 6740, "loss": 3.5033011436462402, "lr": 0.00021674793773953215, "time_ms": 2690.3882026672363, "eta_seconds": 8770.66554069519, "eta": "2:26:10", "timestamp": 1765138530.1803086} +{"step": 6750, "loss": 3.482980966567993, "lr": 0.00021589306933001115, "time_ms": 2691.4172172546387, "eta_seconds": 8747.105956077576, "eta": "2:25:47", "timestamp": 1765138557.0927937} +{"step": 6760, "loss": 3.512728691101074, "lr": 0.00021503959127743035, "time_ms": 2691.1158561706543, "eta_seconds": 8719.21537399292, "eta": "2:25:19", "timestamp": 1765138584.0053189} +{"step": 6770, "loss": 3.3874425888061523, "lr": 0.00021418751398115062, "time_ms": 2690.653085708618, "eta_seconds": 8690.809466838837, "eta": "2:24:50", "timestamp": 1765138610.918395} +{"step": 6780, "loss": 3.3097598552703857, "lr": 0.0002133368478234647, "time_ms": 2691.4594173431396, "eta_seconds": 8666.49932384491, "eta": "2:24:26", "timestamp": 1765138637.8316422} +{"step": 6790, "loss": 3.2920711040496826, "lr": 0.00021248760316947156, "time_ms": 2691.2152767181396, "eta_seconds": 8638.801038265228, "eta": "2:23:58", "timestamp": 1765138664.7445552} +{"step": 6800, "loss": 3.2818877696990967, "lr": 0.00021163979036694904, "time_ms": 2690.382242202759, "eta_seconds": 8609.223175048828, "eta": "2:23:29", "timestamp": 1765138691.6563742} +{"step": 6810, "loss": 3.3885483741760254, "lr": 0.00021079341974622877, "time_ms": 2690.7308101654053, "eta_seconds": 8583.431284427643, "eta": "2:23:03", "timestamp": 1765138718.5673316} +{"step": 6820, "loss": 3.300163984298706, "lr": 0.00020994850162006962, "time_ms": 2690.467357635498, "eta_seconds": 8555.686197280884, "eta": "2:22:35", "timestamp": 1765138745.4761074} +{"step": 6830, "loss": 3.4955670833587646, "lr": 0.00020910504628353217, "time_ms": 2690.2706623077393, "eta_seconds": 8528.157999515533, "eta": "2:22:08", "timestamp": 1765138772.386369} +{"step": 6840, "loss": 3.530777931213379, "lr": 0.00020826306401385371, "time_ms": 2691.678762435913, "eta_seconds": 8505.704889297485, "eta": "2:21:45", "timestamp": 1765138799.2986186} +{"step": 6850, "loss": 3.528226613998413, "lr": 0.00020742256507032234, "time_ms": 2691.2434101104736, "eta_seconds": 8477.416741847992, "eta": "2:21:17", "timestamp": 1765138826.2078502} +{"step": 6860, "loss": 3.5991218090057373, "lr": 0.0002065835596941526, "time_ms": 2690.7272338867188, "eta_seconds": 8448.883514404297, "eta": "2:20:48", "timestamp": 1765138853.1209967} +{"step": 6870, "loss": 3.4468417167663574, "lr": 0.00020574605810836003, "time_ms": 2691.3506984710693, "eta_seconds": 8423.927686214447, "eta": "2:20:23", "timestamp": 1765138880.0342999} +{"step": 6880, "loss": 3.417487144470215, "lr": 0.00020491007051763737, "time_ms": 2690.481424331665, "eta_seconds": 8394.302043914795, "eta": "2:19:54", "timestamp": 1765138906.946102} +{"step": 6890, "loss": 3.351123809814453, "lr": 0.00020407560710822937, "time_ms": 2690.4654502868652, "eta_seconds": 8367.34755039215, "eta": "2:19:27", "timestamp": 1765138933.859647} +{"step": 6900, "loss": 3.500756025314331, "lr": 0.0002032426780478095, "time_ms": 2691.810369491577, "eta_seconds": 8344.61214542389, "eta": "2:19:04", "timestamp": 1765138960.7724724} +{"step": 6910, "loss": 3.400543451309204, "lr": 0.00020241129348535543, "time_ms": 2691.0245418548584, "eta_seconds": 8315.265834331512, "eta": "2:18:35", "timestamp": 1765138987.6829927} +{"step": 6920, "loss": 3.509866237640381, "lr": 0.00020158146355102563, "time_ms": 2691.68758392334, "eta_seconds": 8290.397758483887, "eta": "2:18:10", "timestamp": 1765139014.5929778} +{"step": 6930, "loss": 3.461097478866577, "lr": 0.00020075319835603615, "time_ms": 2692.187786102295, "eta_seconds": 8265.016503334045, "eta": "2:17:45", "timestamp": 1765139041.504754} +{"step": 6940, "loss": 3.554655075073242, "lr": 0.0001999265079925368, "time_ms": 2690.359592437744, "eta_seconds": 8232.500352859497, "eta": "2:17:12", "timestamp": 1765139068.4150267} +{"step": 6950, "loss": 3.4832096099853516, "lr": 0.00019910140253348897, "time_ms": 2691.049814224243, "eta_seconds": 8207.701933383942, "eta": "2:16:47", "timestamp": 1765139095.3257563} +{"step": 6960, "loss": 3.327665090560913, "lr": 0.00019827789203254208, "time_ms": 2690.674066543579, "eta_seconds": 8179.6491622924805, "eta": "2:16:19", "timestamp": 1765139122.2342753} +{"step": 6970, "loss": 3.427402973175049, "lr": 0.00019745598652391196, "time_ms": 2690.64998626709, "eta_seconds": 8152.669458389282, "eta": "2:15:52", "timestamp": 1765139149.1467342} +{"step": 6980, "loss": 3.51924467086792, "lr": 0.00019663569602225767, "time_ms": 2690.398931503296, "eta_seconds": 8125.004773139954, "eta": "2:15:25", "timestamp": 1765139176.0588627} +{"step": 6990, "loss": 3.3873050212860107, "lr": 0.00019581703052256002, "time_ms": 2691.2336349487305, "eta_seconds": 8100.613241195679, "eta": "2:15:00", "timestamp": 1765139202.973045} +{"step": 7000, "loss": 3.3779006004333496, "lr": 0.00019500000000000002, "time_ms": 52693.54796409607, "eta_seconds": 158080.6438922882, "eta": "1 day, 19:54:40", "timestamp": 1765139279.8888164} +{"step": 7010, "loss": 3.4047203063964844, "lr": 0.0001941846144098365, "time_ms": 2689.473867416382, "eta_seconds": 8041.526863574982, "eta": "2:14:01", "timestamp": 1765139306.7843802} +{"step": 7020, "loss": 3.431291103363037, "lr": 0.00019337088368728578, "time_ms": 2690.838575363159, "eta_seconds": 8018.698954582214, "eta": "2:13:38", "timestamp": 1765139333.691375} +{"step": 7030, "loss": 3.3528175354003906, "lr": 0.00019255881774739972, "time_ms": 2691.3273334503174, "eta_seconds": 7993.242180347443, "eta": "2:13:13", "timestamp": 1765139360.6043997} +{"step": 7040, "loss": 3.3947906494140625, "lr": 0.0001917484264849457, "time_ms": 2690.993070602417, "eta_seconds": 7965.339488983154, "eta": "2:12:45", "timestamp": 1765139387.5174377} +{"step": 7050, "loss": 3.348944664001465, "lr": 0.0001909397197742853, "time_ms": 2689.373254776001, "eta_seconds": 7933.651101589203, "eta": "2:12:13", "timestamp": 1765139414.4295855} +{"step": 7060, "loss": 3.446909189224243, "lr": 0.00019013270746925487, "time_ms": 2689.7435188293457, "eta_seconds": 7907.845945358276, "eta": "2:11:47", "timestamp": 1765139441.3404639} +{"step": 7070, "loss": 3.5647950172424316, "lr": 0.00018932739940304445, "time_ms": 2690.2451515197754, "eta_seconds": 7882.418293952942, "eta": "2:11:22", "timestamp": 1765139468.2523808} +{"step": 7080, "loss": 3.410280704498291, "lr": 0.00018852380538807864, "time_ms": 2690.3297901153564, "eta_seconds": 7855.762987136841, "eta": "2:10:55", "timestamp": 1765139495.1633945} +{"step": 7090, "loss": 3.4991438388824463, "lr": 0.000187721935215897, "time_ms": 2691.9405460357666, "eta_seconds": 7833.546988964081, "eta": "2:10:33", "timestamp": 1765139522.0790448} +{"step": 7100, "loss": 3.414989471435547, "lr": 0.00018692179865703468, "time_ms": 2691.0266876220703, "eta_seconds": 7803.977394104004, "eta": "2:10:03", "timestamp": 1765139548.994254} +{"step": 7110, "loss": 3.414426803588867, "lr": 0.00018612340546090284, "time_ms": 2690.990924835205, "eta_seconds": 7776.963772773743, "eta": "2:09:36", "timestamp": 1765139575.9101315} +{"step": 7120, "loss": 3.385707378387451, "lr": 0.0001853267653556708, "time_ms": 2691.0157203674316, "eta_seconds": 7750.125274658203, "eta": "2:09:10", "timestamp": 1765139602.8216069} +{"step": 7130, "loss": 3.4088165760040283, "lr": 0.0001845318880481469, "time_ms": 2691.04266166687, "eta_seconds": 7723.292438983917, "eta": "2:08:43", "timestamp": 1765139629.7337077} +{"step": 7140, "loss": 3.349766492843628, "lr": 0.00018373878322366024, "time_ms": 2690.937280654907, "eta_seconds": 7696.080622673035, "eta": "2:08:16", "timestamp": 1765139656.648402} +{"step": 7150, "loss": 3.4881389141082764, "lr": 0.00018294746054594267, "time_ms": 2691.4827823638916, "eta_seconds": 7670.725929737091, "eta": "2:07:50", "timestamp": 1765139683.5654588} +{"step": 7160, "loss": 3.3947136402130127, "lr": 0.00018215792965701143, "time_ms": 2691.3199424743652, "eta_seconds": 7643.348636627197, "eta": "2:07:23", "timestamp": 1765139710.4785044} +{"step": 7170, "loss": 3.5066614151000977, "lr": 0.00018137020017705116, "time_ms": 2690.8187866210938, "eta_seconds": 7615.017166137695, "eta": "2:06:55", "timestamp": 1765139737.3927987} +{"step": 7180, "loss": 3.4828622341156006, "lr": 0.0001805842817042971, "time_ms": 2690.6745433807373, "eta_seconds": 7587.702212333679, "eta": "2:06:27", "timestamp": 1765139764.3068912} +{"step": 7190, "loss": 3.446274518966675, "lr": 0.00017980018381491767, "time_ms": 2690.5159950256348, "eta_seconds": 7560.349946022034, "eta": "2:06:00", "timestamp": 1765139791.2189028} +{"step": 7200, "loss": 3.291308641433716, "lr": 0.00017901791606289837, "time_ms": 2690.6518936157227, "eta_seconds": 7533.825302124023, "eta": "2:05:33", "timestamp": 1765139818.1338491} +{"step": 7210, "loss": 3.3550214767456055, "lr": 0.0001782374879799248, "time_ms": 2691.518783569336, "eta_seconds": 7509.337406158447, "eta": "2:05:09", "timestamp": 1765139845.0488987} +{"step": 7220, "loss": 3.3011016845703125, "lr": 0.00017745890907526675, "time_ms": 2691.135883331299, "eta_seconds": 7481.357755661011, "eta": "2:04:41", "timestamp": 1765139871.9632144} +{"step": 7230, "loss": 3.4803550243377686, "lr": 0.0001766821888356627, "time_ms": 2690.9759044647217, "eta_seconds": 7454.003255367279, "eta": "2:04:14", "timestamp": 1765139898.8780613} +{"step": 7240, "loss": 3.25938081741333, "lr": 0.00017590733672520346, "time_ms": 2690.915107727051, "eta_seconds": 7426.92569732666, "eta": "2:03:46", "timestamp": 1765139925.7927275} +{"step": 7250, "loss": 3.410045623779297, "lr": 0.0001751343621852176, "time_ms": 2692.6283836364746, "eta_seconds": 7404.728055000305, "eta": "2:03:24", "timestamp": 1765139952.704084} +{"step": 7260, "loss": 3.4541642665863037, "lr": 0.00017436327463415583, "time_ms": 2690.4516220092773, "eta_seconds": 7371.83744430542, "eta": "2:02:51", "timestamp": 1765139979.6159945} +{"step": 7270, "loss": 3.3238883018493652, "lr": 0.00017359408346747675, "time_ms": 2691.049814224243, "eta_seconds": 7346.565992832184, "eta": "2:02:26", "timestamp": 1765140006.5298138} +{"step": 7280, "loss": 3.5215630531311035, "lr": 0.00017282679805753187, "time_ms": 2690.7224655151367, "eta_seconds": 7318.765106201172, "eta": "2:01:58", "timestamp": 1765140033.4420207} +{"step": 7290, "loss": 3.410937547683716, "lr": 0.0001720614277534518, "time_ms": 2691.1821365356445, "eta_seconds": 7293.103590011597, "eta": "2:01:33", "timestamp": 1765140060.353301} +{"step": 7300, "loss": 3.3720624446868896, "lr": 0.00017129798188103226, "time_ms": 2690.778970718384, "eta_seconds": 7265.103220939636, "eta": "2:01:05", "timestamp": 1765140087.2620037} +{"step": 7310, "loss": 3.3123180866241455, "lr": 0.0001705364697426201, "time_ms": 2690.0556087493896, "eta_seconds": 7236.249587535858, "eta": "2:00:36", "timestamp": 1765140114.1726437} +{"step": 7320, "loss": 3.47444486618042, "lr": 0.0001697769006170006, "time_ms": 2691.086530685425, "eta_seconds": 7212.1119022369385, "eta": "2:00:12", "timestamp": 1765140141.0849643} +{"step": 7330, "loss": 3.4373276233673096, "lr": 0.0001690192837592837, "time_ms": 2690.976142883301, "eta_seconds": 7184.906301498413, "eta": "1:59:44", "timestamp": 1765140167.996844} +{"step": 7340, "loss": 3.2812440395355225, "lr": 0.00016826362840079184, "time_ms": 2690.662622451782, "eta_seconds": 7157.162575721741, "eta": "1:59:17", "timestamp": 1765140194.9082737} +{"step": 7350, "loss": 3.488464593887329, "lr": 0.00016750994374894692, "time_ms": 2690.763473510742, "eta_seconds": 7130.523204803467, "eta": "1:58:50", "timestamp": 1765140221.8200698} +{"step": 7360, "loss": 3.372711658477783, "lr": 0.0001667582389871588, "time_ms": 2690.429210662842, "eta_seconds": 7102.733116149902, "eta": "1:58:22", "timestamp": 1765140248.733195} +{"step": 7370, "loss": 3.4508445262908936, "lr": 0.00016600852327471264, "time_ms": 2691.5693283081055, "eta_seconds": 7078.827333450317, "eta": "1:57:58", "timestamp": 1765140275.6465728} +{"step": 7380, "loss": 3.4506311416625977, "lr": 0.00016526080574665774, "time_ms": 2691.171407699585, "eta_seconds": 7050.869088172913, "eta": "1:57:30", "timestamp": 1765140302.5597878} +{"step": 7390, "loss": 3.483416795730591, "lr": 0.00016451509551369638, "time_ms": 2690.142869949341, "eta_seconds": 7021.2728905677795, "eta": "1:57:01", "timestamp": 1765140329.4721122} +{"step": 7400, "loss": 3.323662042617798, "lr": 0.00016377140166207226, "time_ms": 2691.178321838379, "eta_seconds": 6997.063636779785, "eta": "1:56:37", "timestamp": 1765140356.3861651} +{"step": 7410, "loss": 3.5495169162750244, "lr": 0.00016302973325346042, "time_ms": 2690.55438041687, "eta_seconds": 6968.535845279694, "eta": "1:56:08", "timestamp": 1765140383.3018422} +{"step": 7420, "loss": 3.265690326690674, "lr": 0.0001622900993248562, "time_ms": 2691.5721893310547, "eta_seconds": 6944.256248474121, "eta": "1:55:44", "timestamp": 1765140410.2174435} +{"step": 7430, "loss": 3.27311110496521, "lr": 0.00016155250888846576, "time_ms": 2691.286087036133, "eta_seconds": 6916.605243682861, "eta": "1:55:16", "timestamp": 1765140437.131801} +{"step": 7440, "loss": 3.474173069000244, "lr": 0.00016081697093159574, "time_ms": 2691.8373107910156, "eta_seconds": 6891.103515625, "eta": "1:54:51", "timestamp": 1765140464.0454822} +{"step": 7450, "loss": 3.390735149383545, "lr": 0.0001600834944165439, "time_ms": 2691.8647289276123, "eta_seconds": 6864.255058765411, "eta": "1:54:24", "timestamp": 1765140490.9593303} +{"step": 7460, "loss": 3.4436347484588623, "lr": 0.00015935208828049023, "time_ms": 2690.653085708618, "eta_seconds": 6834.25883769989, "eta": "1:53:54", "timestamp": 1765140517.872479} +{"step": 7470, "loss": 3.391531229019165, "lr": 0.00015862276143538775, "time_ms": 2691.469192504883, "eta_seconds": 6809.4170570373535, "eta": "1:53:29", "timestamp": 1765140544.787212} +{"step": 7480, "loss": 3.4062657356262207, "lr": 0.00015789552276785376, "time_ms": 2691.530704498291, "eta_seconds": 6782.657375335693, "eta": "1:53:02", "timestamp": 1765140571.7027333} +{"step": 7490, "loss": 3.35864520072937, "lr": 0.00015717038113906195, "time_ms": 2690.7763481140137, "eta_seconds": 6753.848633766174, "eta": "1:52:33", "timestamp": 1765140598.6169944} +{"step": 7500, "loss": 3.3165578842163086, "lr": 0.00015644734538463435, "time_ms": 52860.53800582886, "eta_seconds": 132151.34501457214, "eta": "1 day, 12:42:31", "timestamp": 1765140675.701124} +{"step": 7510, "loss": 3.3213443756103516, "lr": 0.0001557264243145333, "time_ms": 2690.7448768615723, "eta_seconds": 6699.954743385315, "eta": "1:51:39", "timestamp": 1765140702.5932043} +{"step": 7520, "loss": 3.371352195739746, "lr": 0.00015500762671295465, "time_ms": 2690.690755844116, "eta_seconds": 6672.913074493408, "eta": "1:51:12", "timestamp": 1765140729.5002313} +{"step": 7530, "loss": 3.5109429359436035, "lr": 0.00015429096133822025, "time_ms": 2691.580057144165, "eta_seconds": 6648.202741146088, "eta": "1:50:48", "timestamp": 1765140756.412794} +{"step": 7540, "loss": 3.4200916290283203, "lr": 0.0001535764369226715, "time_ms": 2690.995931625366, "eta_seconds": 6619.849991798401, "eta": "1:50:19", "timestamp": 1765140783.3267214} +{"step": 7550, "loss": 3.48549485206604, "lr": 0.00015286406217256306, "time_ms": 2689.958333969116, "eta_seconds": 6590.397918224335, "eta": "1:49:50", "timestamp": 1765140810.2409973} +{"step": 7560, "loss": 3.393724203109741, "lr": 0.00015215384576795622, "time_ms": 2690.884590148926, "eta_seconds": 6565.758399963379, "eta": "1:49:25", "timestamp": 1765140837.1541073} +{"step": 7570, "loss": 3.3120131492614746, "lr": 0.00015144579636261403, "time_ms": 2691.758632659912, "eta_seconds": 6540.973477363586, "eta": "1:49:00", "timestamp": 1765140864.067697} +{"step": 7580, "loss": 3.3397738933563232, "lr": 0.00015073992258389475, "time_ms": 2690.357208251953, "eta_seconds": 6510.664443969727, "eta": "1:48:30", "timestamp": 1765140890.9801624} +{"step": 7590, "loss": 3.3119640350341797, "lr": 0.00015003623303264785, "time_ms": 2690.8910274505615, "eta_seconds": 6485.047376155853, "eta": "1:48:05", "timestamp": 1765140917.8958201} +{"step": 7600, "loss": 3.4343881607055664, "lr": 0.00014933473628310834, "time_ms": 2690.966844558716, "eta_seconds": 6458.320426940918, "eta": "1:47:38", "timestamp": 1765140944.8103833} +{"step": 7610, "loss": 3.4073452949523926, "lr": 0.00014863544088279267, "time_ms": 2690.5505657196045, "eta_seconds": 6430.415852069855, "eta": "1:47:10", "timestamp": 1765140971.72428} +{"step": 7620, "loss": 3.444519519805908, "lr": 0.00014793835535239475, "time_ms": 2690.5899047851562, "eta_seconds": 6403.603973388672, "eta": "1:46:43", "timestamp": 1765140998.6365268} +{"step": 7630, "loss": 3.4623537063598633, "lr": 0.00014724348818568163, "time_ms": 2690.2520656585693, "eta_seconds": 6375.897395610809, "eta": "1:46:15", "timestamp": 1765141025.5508633} +{"step": 7640, "loss": 3.486971855163574, "lr": 0.0001465508478493906, "time_ms": 2690.7687187194824, "eta_seconds": 6350.2141761779785, "eta": "1:45:50", "timestamp": 1765141052.4630315} +{"step": 7650, "loss": 3.3233399391174316, "lr": 0.00014586044278312542, "time_ms": 2690.946578979492, "eta_seconds": 6323.724460601807, "eta": "1:45:23", "timestamp": 1765141079.3760257} +{"step": 7660, "loss": 3.2917320728302, "lr": 0.00014517228139925402, "time_ms": 2691.3602352142334, "eta_seconds": 6297.782950401306, "eta": "1:44:57", "timestamp": 1765141106.2885172} +{"step": 7670, "loss": 3.333756446838379, "lr": 0.00014448637208280582, "time_ms": 2690.81974029541, "eta_seconds": 6269.609994888306, "eta": "1:44:29", "timestamp": 1765141133.2053807} +{"step": 7680, "loss": 3.4497272968292236, "lr": 0.00014380272319136915, "time_ms": 2690.258026123047, "eta_seconds": 6241.398620605469, "eta": "1:44:01", "timestamp": 1765141160.1226168} +{"step": 7690, "loss": 3.26739501953125, "lr": 0.0001431213430549902, "time_ms": 2690.9334659576416, "eta_seconds": 6216.056306362152, "eta": "1:43:36", "timestamp": 1765141187.036327} +{"step": 7700, "loss": 3.2567079067230225, "lr": 0.0001424422399760707, "time_ms": 2692.0411586761475, "eta_seconds": 6191.694664955139, "eta": "1:43:11", "timestamp": 1765141213.951032} +{"step": 7710, "loss": 3.347151041030884, "lr": 0.00014176542222926758, "time_ms": 2693.072557449341, "eta_seconds": 6167.1361565589905, "eta": "1:42:47", "timestamp": 1765141240.8657546} +{"step": 7720, "loss": 3.4606809616088867, "lr": 0.0001410908980613913, "time_ms": 2691.3838386535645, "eta_seconds": 6136.355152130127, "eta": "1:42:16", "timestamp": 1765141267.7831967} +{"step": 7730, "loss": 3.2836639881134033, "lr": 0.00014041867569130614, "time_ms": 2691.7901039123535, "eta_seconds": 6110.3635358810425, "eta": "1:41:50", "timestamp": 1765141294.6995118} +{"step": 7740, "loss": 3.3936939239501953, "lr": 0.0001397487633098294, "time_ms": 2690.5879974365234, "eta_seconds": 6080.728874206543, "eta": "1:41:20", "timestamp": 1765141321.6165802} +{"step": 7750, "loss": 3.562915802001953, "lr": 0.00013908116907963218, "time_ms": 2690.629482269287, "eta_seconds": 6053.916335105896, "eta": "1:40:53", "timestamp": 1765141348.5295749} +{"step": 7760, "loss": 3.35880708694458, "lr": 0.0001384159011351394, "time_ms": 2691.460609436035, "eta_seconds": 6028.871765136719, "eta": "1:40:28", "timestamp": 1765141375.4435241} +{"step": 7770, "loss": 3.366746425628662, "lr": 0.00013775296758243097, "time_ms": 2690.2525424957275, "eta_seconds": 5999.263169765472, "eta": "1:39:59", "timestamp": 1765141402.356633} +{"step": 7780, "loss": 3.409856081008911, "lr": 0.00013709237649914315, "time_ms": 2690.875291824341, "eta_seconds": 5973.743147850037, "eta": "1:39:33", "timestamp": 1765141429.268949} +{"step": 7790, "loss": 3.3415374755859375, "lr": 0.00013643413593436964, "time_ms": 2691.6069984436035, "eta_seconds": 5948.451466560364, "eta": "1:39:08", "timestamp": 1765141456.1850083} +{"step": 7800, "loss": 3.3486440181732178, "lr": 0.00013577825390856423, "time_ms": 2691.3890838623047, "eta_seconds": 5921.05598449707, "eta": "1:38:41", "timestamp": 1765141483.1036363} +{"step": 7810, "loss": 3.1951751708984375, "lr": 0.0001351247384134422, "time_ms": 2691.516399383545, "eta_seconds": 5894.420914649963, "eta": "1:38:14", "timestamp": 1765141510.0210352} +{"step": 7820, "loss": 3.3693692684173584, "lr": 0.00013447359741188382, "time_ms": 2691.084623336792, "eta_seconds": 5866.5644788742065, "eta": "1:37:46", "timestamp": 1765141536.9376667} +{"step": 7830, "loss": 3.2546303272247314, "lr": 0.0001338248388378365, "time_ms": 2691.5605068206787, "eta_seconds": 5840.686299800873, "eta": "1:37:20", "timestamp": 1765141563.8542676} +{"step": 7840, "loss": 3.4579989910125732, "lr": 0.00013317847059621894, "time_ms": 2690.566062927246, "eta_seconds": 5811.622695922852, "eta": "1:36:51", "timestamp": 1765141590.7714539} +{"step": 7850, "loss": 3.401890993118286, "lr": 0.00013253450056282395, "time_ms": 2690.831422805786, "eta_seconds": 5785.28755903244, "eta": "1:36:25", "timestamp": 1765141617.6867673} +{"step": 7860, "loss": 3.347987174987793, "lr": 0.00013189293658422333, "time_ms": 2689.586639404297, "eta_seconds": 5755.715408325195, "eta": "1:35:55", "timestamp": 1765141644.6018674} +{"step": 7870, "loss": 3.3840203285217285, "lr": 0.0001312537864776717, "time_ms": 2690.8791065216064, "eta_seconds": 5731.572496891022, "eta": "1:35:31", "timestamp": 1765141671.5174572} +{"step": 7880, "loss": 3.28843355178833, "lr": 0.00013061705803101134, "time_ms": 2691.223382949829, "eta_seconds": 5705.393571853638, "eta": "1:35:05", "timestamp": 1765141698.435167} +{"step": 7890, "loss": 3.3608944416046143, "lr": 0.00012998275900257748, "time_ms": 2691.2078857421875, "eta_seconds": 5678.448638916016, "eta": "1:34:38", "timestamp": 1765141725.3511522} +{"step": 7900, "loss": 3.3687992095947266, "lr": 0.0001293508971211035, "time_ms": 2690.704822540283, "eta_seconds": 5650.480127334595, "eta": "1:34:10", "timestamp": 1765141752.2651114} +{"step": 7910, "loss": 3.3455803394317627, "lr": 0.0001287214800856272, "time_ms": 2690.6023025512695, "eta_seconds": 5623.358812332153, "eta": "1:33:43", "timestamp": 1765141779.180939} +{"step": 7920, "loss": 3.3198509216308594, "lr": 0.00012809451556539643, "time_ms": 2691.392183303833, "eta_seconds": 5598.095741271973, "eta": "1:33:18", "timestamp": 1765141806.097743} +{"step": 7930, "loss": 3.398447275161743, "lr": 0.00012747001119977589, "time_ms": 2691.9941902160645, "eta_seconds": 5572.427973747253, "eta": "1:32:52", "timestamp": 1765141833.0136197} +{"step": 7940, "loss": 3.2872154712677, "lr": 0.00012684797459815443, "time_ms": 2691.2178993225098, "eta_seconds": 5543.90887260437, "eta": "1:32:23", "timestamp": 1765141859.9307036} +{"step": 7950, "loss": 3.2800357341766357, "lr": 0.00012622841333985153, "time_ms": 2691.1277770996094, "eta_seconds": 5516.811943054199, "eta": "1:31:56", "timestamp": 1765141886.8483515} +{"step": 7960, "loss": 3.199725866317749, "lr": 0.00012561133497402579, "time_ms": 2690.0768280029297, "eta_seconds": 5487.756729125977, "eta": "1:31:27", "timestamp": 1765141913.7641957} +{"step": 7970, "loss": 3.301370143890381, "lr": 0.00012499674701958217, "time_ms": 2690.7763481140137, "eta_seconds": 5462.275986671448, "eta": "1:31:02", "timestamp": 1765141940.679314} +{"step": 7980, "loss": 3.2861764430999756, "lr": 0.0001243846569650811, "time_ms": 2691.4966106414795, "eta_seconds": 5436.823153495789, "eta": "1:30:36", "timestamp": 1765141967.5965574} +{"step": 7990, "loss": 3.4885597229003906, "lr": 0.00012377507226864667, "time_ms": 2689.5124912261963, "eta_seconds": 5405.9201073646545, "eta": "1:30:05", "timestamp": 1765141994.511382} +{"step": 8000, "loss": 3.510509729385376, "lr": 0.00012316800035787594, "time_ms": 52807.03282356262, "eta_seconds": 105614.06564712524, "eta": "1 day, 5:20:14", "timestamp": 1765142071.5432765} +{"step": 8010, "loss": 3.4013826847076416, "lr": 0.00012256344862974873, "time_ms": 2689.6839141845703, "eta_seconds": 5352.470989227295, "eta": "1:29:12", "timestamp": 1765142098.440581} +{"step": 8020, "loss": 3.4684290885925293, "lr": 0.00012196142445053691, "time_ms": 2691.038131713867, "eta_seconds": 5328.255500793457, "eta": "1:28:48", "timestamp": 1765142125.346448} +{"step": 8030, "loss": 3.347038745880127, "lr": 0.00012136193515571521, "time_ms": 2690.9689903259277, "eta_seconds": 5301.208910942078, "eta": "1:28:21", "timestamp": 1765142152.2568727} +{"step": 8040, "loss": 3.3585739135742188, "lr": 0.00012076498804987152, "time_ms": 2691.214084625244, "eta_seconds": 5274.7796058654785, "eta": "1:27:54", "timestamp": 1765142179.1709368} +{"step": 8050, "loss": 3.3624343872070312, "lr": 0.00012017059040661784, "time_ms": 2691.6356086730957, "eta_seconds": 5248.689436912537, "eta": "1:27:28", "timestamp": 1765142206.0854137} +{"step": 8060, "loss": 3.3724749088287354, "lr": 0.00011957874946850192, "time_ms": 2690.6838417053223, "eta_seconds": 5219.926652908325, "eta": "1:26:59", "timestamp": 1765142233.0000045} +{"step": 8070, "loss": 3.2693450450897217, "lr": 0.0001189894724469189, "time_ms": 2690.4475688934326, "eta_seconds": 5192.563807964325, "eta": "1:26:32", "timestamp": 1765142259.910999} +{"step": 8080, "loss": 3.2794079780578613, "lr": 0.00011840276652202327, "time_ms": 2690.59157371521, "eta_seconds": 5165.935821533203, "eta": "1:26:05", "timestamp": 1765142286.8204944} +{"step": 8090, "loss": 3.492159366607666, "lr": 0.00011781863884264146, "time_ms": 2690.53316116333, "eta_seconds": 5138.91833782196, "eta": "1:25:38", "timestamp": 1765142313.7322109} +{"step": 8100, "loss": 3.399838924407959, "lr": 0.00011723709652618508, "time_ms": 2690.3929710388184, "eta_seconds": 5111.746644973755, "eta": "1:25:11", "timestamp": 1765142340.6437612} +{"step": 8110, "loss": 3.3023929595947266, "lr": 0.00011665814665856358, "time_ms": 2690.4168128967285, "eta_seconds": 5084.887776374817, "eta": "1:24:44", "timestamp": 1765142367.5543778} +{"step": 8120, "loss": 3.292243003845215, "lr": 0.00011608179629409853, "time_ms": 2691.1468505859375, "eta_seconds": 5059.3560791015625, "eta": "1:24:19", "timestamp": 1765142394.4649973} +{"step": 8130, "loss": 3.5050899982452393, "lr": 0.00011550805245543707, "time_ms": 2691.1561489105225, "eta_seconds": 5032.461998462677, "eta": "1:23:52", "timestamp": 1765142421.3773503} +{"step": 8140, "loss": 3.5275585651397705, "lr": 0.000114936922133467, "time_ms": 2690.9337043762207, "eta_seconds": 5005.1366901397705, "eta": "1:23:25", "timestamp": 1765142448.2886908} +{"step": 8150, "loss": 3.4321401119232178, "lr": 0.000114368412287231, "time_ms": 2691.71142578125, "eta_seconds": 4979.6661376953125, "eta": "1:22:59", "timestamp": 1765142475.201153} +{"step": 8160, "loss": 3.4114489555358887, "lr": 0.00011380252984384198, "time_ms": 2690.2613639831543, "eta_seconds": 4950.080909729004, "eta": "1:22:30", "timestamp": 1765142502.1131105} +{"step": 8170, "loss": 3.397610664367676, "lr": 0.00011323928169839912, "time_ms": 2690.804958343506, "eta_seconds": 4924.173073768616, "eta": "1:22:04", "timestamp": 1765142529.0227528} +{"step": 8180, "loss": 3.419696569442749, "lr": 0.00011267867471390319, "time_ms": 2691.0126209259033, "eta_seconds": 4897.642970085144, "eta": "1:21:37", "timestamp": 1765142555.9337213} +{"step": 8190, "loss": 3.304830551147461, "lr": 0.00011212071572117353, "time_ms": 2689.7382736206055, "eta_seconds": 4868.426275253296, "eta": "1:21:08", "timestamp": 1765142582.8464813} +{"step": 8200, "loss": 3.3216350078582764, "lr": 0.00011156541151876421, "time_ms": 2690.6561851501465, "eta_seconds": 4843.181133270264, "eta": "1:20:43", "timestamp": 1765142609.757757} +{"step": 8210, "loss": 3.3689510822296143, "lr": 0.00011101276887288185, "time_ms": 2689.540147781372, "eta_seconds": 4814.276864528656, "eta": "1:20:14", "timestamp": 1765142636.667398} +{"step": 8220, "loss": 3.364605188369751, "lr": 0.00011046279451730255, "time_ms": 2690.5579566955566, "eta_seconds": 4789.193162918091, "eta": "1:19:49", "timestamp": 1765142663.5756533} +{"step": 8230, "loss": 3.242360830307007, "lr": 0.00010991549515329033, "time_ms": 2690.559148788452, "eta_seconds": 4762.28969335556, "eta": "1:19:22", "timestamp": 1765142690.485409} +{"step": 8240, "loss": 3.3352532386779785, "lr": 0.0001093708774495153, "time_ms": 2689.6748542785645, "eta_seconds": 4733.827743530273, "eta": "1:18:53", "timestamp": 1765142717.3959346} +{"step": 8250, "loss": 3.3154122829437256, "lr": 0.00010882894804197218, "time_ms": 2690.901517868042, "eta_seconds": 4709.0776562690735, "eta": "1:18:29", "timestamp": 1765142744.307486} +{"step": 8260, "loss": 3.231806755065918, "lr": 0.0001082897135338999, "time_ms": 2689.7101402282715, "eta_seconds": 4680.095643997192, "eta": "1:18:00", "timestamp": 1765142771.2158332} +{"step": 8270, "loss": 3.411125421524048, "lr": 0.00010775318049570067, "time_ms": 2690.6166076660156, "eta_seconds": 4654.766731262207, "eta": "1:17:34", "timestamp": 1765142798.1254163} +{"step": 8280, "loss": 3.2329282760620117, "lr": 0.00010721935546486032, "time_ms": 2689.7847652435303, "eta_seconds": 4626.429796218872, "eta": "1:17:06", "timestamp": 1765142825.0338764} +{"step": 8290, "loss": 3.315493583679199, "lr": 0.00010668824494586827, "time_ms": 2691.032648086548, "eta_seconds": 4601.665828227997, "eta": "1:16:41", "timestamp": 1765142851.943724} +{"step": 8300, "loss": 3.3229782581329346, "lr": 0.00010615985541013876, "time_ms": 2689.962387084961, "eta_seconds": 4572.936058044434, "eta": "1:16:12", "timestamp": 1765142878.8539932} +{"step": 8310, "loss": 3.3469886779785156, "lr": 0.00010563419329593141, "time_ms": 2690.593481063843, "eta_seconds": 4547.102982997894, "eta": "1:15:47", "timestamp": 1765142905.7643256} +{"step": 8320, "loss": 3.349055051803589, "lr": 0.00010511126500827316, "time_ms": 2691.2500858306885, "eta_seconds": 4521.300144195557, "eta": "1:15:21", "timestamp": 1765142932.6780229} +{"step": 8330, "loss": 3.3976316452026367, "lr": 0.00010459107691888026, "time_ms": 2689.7189617156982, "eta_seconds": 4491.830666065216, "eta": "1:14:51", "timestamp": 1765142959.5886538} +{"step": 8340, "loss": 3.4126346111297607, "lr": 0.00010407363536608035, "time_ms": 2691.0805702209473, "eta_seconds": 4467.1937465667725, "eta": "1:14:27", "timestamp": 1765142986.497959} +{"step": 8350, "loss": 3.4419100284576416, "lr": 0.00010355894665473553, "time_ms": 2691.6825771331787, "eta_seconds": 4441.276252269745, "eta": "1:14:01", "timestamp": 1765143013.4111288} +{"step": 8360, "loss": 3.361856698989868, "lr": 0.00010304701705616525, "time_ms": 2690.382242202759, "eta_seconds": 4412.226877212524, "eta": "1:13:32", "timestamp": 1765143040.3209908} +{"step": 8370, "loss": 3.377951145172119, "lr": 0.00010253785280807019, "time_ms": 2690.328359603882, "eta_seconds": 4385.235226154327, "eta": "1:13:05", "timestamp": 1765143067.229381} +{"step": 8380, "loss": 3.4571197032928467, "lr": 0.00010203146011445599, "time_ms": 2689.945697784424, "eta_seconds": 4357.712030410767, "eta": "1:12:37", "timestamp": 1765143094.1393497} +{"step": 8390, "loss": 3.190080165863037, "lr": 0.00010152784514555775, "time_ms": 2691.4730072021484, "eta_seconds": 4333.271541595459, "eta": "1:12:13", "timestamp": 1765143121.0503879} +{"step": 8400, "loss": 3.383554697036743, "lr": 0.00010102701403776499, "time_ms": 2689.9354457855225, "eta_seconds": 4303.896713256836, "eta": "1:11:43", "timestamp": 1765143147.958026} +{"step": 8410, "loss": 3.3776726722717285, "lr": 0.00010052897289354677, "time_ms": 2690.4377937316895, "eta_seconds": 4277.796092033386, "eta": "1:11:17", "timestamp": 1765143174.867733} +{"step": 8420, "loss": 3.410266160964966, "lr": 0.00010003372778137712, "time_ms": 2690.28902053833, "eta_seconds": 4250.6566524505615, "eta": "1:10:50", "timestamp": 1765143201.7803087} +{"step": 8430, "loss": 3.374704122543335, "lr": 9.954128473566155e-05, "time_ms": 2691.314220428467, "eta_seconds": 4225.363326072693, "eta": "1:10:25", "timestamp": 1765143228.6917434} +{"step": 8440, "loss": 3.365989923477173, "lr": 9.905164975666321e-05, "time_ms": 2690.842866897583, "eta_seconds": 4197.7148723602295, "eta": "1:09:57", "timestamp": 1765143255.6011415} +{"step": 8450, "loss": 3.3367154598236084, "lr": 9.85648288104297e-05, "time_ms": 2690.8199787139893, "eta_seconds": 4170.770967006683, "eta": "1:09:30", "timestamp": 1765143282.5096643} +{"step": 8460, "loss": 3.393660306930542, "lr": 9.80808278287206e-05, "time_ms": 2690.160036087036, "eta_seconds": 4142.846455574036, "eta": "1:09:02", "timestamp": 1765143309.4169624} +{"step": 8470, "loss": 3.34236478805542, "lr": 9.759965270893524e-05, "time_ms": 2689.990282058716, "eta_seconds": 4115.685131549835, "eta": "1:08:35", "timestamp": 1765143336.3290691} +{"step": 8480, "loss": 3.288980722427368, "lr": 9.712130931404048e-05, "time_ms": 2690.6702518463135, "eta_seconds": 4089.8187828063965, "eta": "1:08:09", "timestamp": 1765143363.239859} +{"step": 8490, "loss": 3.38795804977417, "lr": 9.664580347249974e-05, "time_ms": 2689.586400985718, "eta_seconds": 4061.275465488434, "eta": "1:07:41", "timestamp": 1765143390.151873} +{"step": 8500, "loss": 3.3587489128112793, "lr": 9.617314097820154e-05, "time_ms": 50056.7889213562, "eta_seconds": 75085.1833820343, "eta": "20:51:25", "timestamp": 1765143464.4278038} +{"step": 8510, "loss": 3.409309148788452, "lr": 9.570332759038935e-05, "time_ms": 2690.657615661621, "eta_seconds": 4009.0798473358154, "eta": "1:06:49", "timestamp": 1765143491.3384542} +{"step": 8520, "loss": 3.4744555950164795, "lr": 9.523636903359086e-05, "time_ms": 2690.35005569458, "eta_seconds": 3981.7180824279785, "eta": "1:06:21", "timestamp": 1765143518.249051} +{"step": 8530, "loss": 3.303799867630005, "lr": 9.477227099754886e-05, "time_ms": 2689.422845840454, "eta_seconds": 3953.4515833854675, "eta": "1:05:53", "timestamp": 1765143545.1568255} +{"step": 8540, "loss": 3.3909847736358643, "lr": 9.431103913715142e-05, "time_ms": 2689.4264221191406, "eta_seconds": 3926.5625762939453, "eta": "1:05:26", "timestamp": 1765143572.0661223} +{"step": 8550, "loss": 3.2989492416381836, "lr": 9.385267907236314e-05, "time_ms": 2688.6818408966064, "eta_seconds": 3898.5886693000793, "eta": "1:04:58", "timestamp": 1765143598.967236} +{"step": 8560, "loss": 3.243168830871582, "lr": 9.339719638815689e-05, "time_ms": 2690.2079582214355, "eta_seconds": 3873.899459838867, "eta": "1:04:33", "timestamp": 1765143625.8752072} +{"step": 8570, "loss": 3.3418707847595215, "lr": 9.294459663444524e-05, "time_ms": 2690.1533603668213, "eta_seconds": 3846.9193053245544, "eta": "1:04:06", "timestamp": 1765143652.7832148} +{"step": 8580, "loss": 3.260011911392212, "lr": 9.249488532601358e-05, "time_ms": 2691.0927295684814, "eta_seconds": 3821.3516759872437, "eta": "1:03:41", "timestamp": 1765143679.6961155} +{"step": 8590, "loss": 3.4200499057769775, "lr": 9.20480679424521e-05, "time_ms": 2691.0765171051025, "eta_seconds": 3794.4178891181946, "eta": "1:03:14", "timestamp": 1765143706.6072495} +{"step": 8600, "loss": 3.4440009593963623, "lr": 9.16041499280897e-05, "time_ms": 2690.5856132507324, "eta_seconds": 3766.8198585510254, "eta": "1:02:46", "timestamp": 1765143733.5198185} +{"step": 8610, "loss": 3.3442983627319336, "lr": 9.116313669192733e-05, "time_ms": 2690.6862258911133, "eta_seconds": 3740.0538539886475, "eta": "1:02:20", "timestamp": 1765143760.4321253} +{"step": 8620, "loss": 3.365971565246582, "lr": 9.072503360757202e-05, "time_ms": 2692.046642303467, "eta_seconds": 3715.024366378784, "eta": "1:01:55", "timestamp": 1765143787.347133} +{"step": 8630, "loss": 3.153622627258301, "lr": 9.028984601317166e-05, "time_ms": 2690.237283706665, "eta_seconds": 3685.625078678131, "eta": "1:01:25", "timestamp": 1765143814.262085} +{"step": 8640, "loss": 3.3887555599212646, "lr": 8.985757921134966e-05, "time_ms": 2690.73748588562, "eta_seconds": 3659.4029808044434, "eta": "1:00:59", "timestamp": 1765143841.1750631} +{"step": 8650, "loss": 3.486097574234009, "lr": 8.942823846914069e-05, "time_ms": 2690.1230812072754, "eta_seconds": 3631.666159629822, "eta": "1:00:31", "timestamp": 1765143868.087896} +{"step": 8660, "loss": 3.2878191471099854, "lr": 8.900182901792608e-05, "time_ms": 2691.7150020599365, "eta_seconds": 3606.898102760315, "eta": "1:00:06", "timestamp": 1765143895.0026808} +{"step": 8670, "loss": 3.3771045207977295, "lr": 8.85783560533706e-05, "time_ms": 2691.115140914917, "eta_seconds": 3579.1831374168396, "eta": "0:59:39", "timestamp": 1765143921.9144099} +{"step": 8680, "loss": 3.2994155883789062, "lr": 8.815782473535851e-05, "time_ms": 2690.5598640441895, "eta_seconds": 3551.53902053833, "eta": "0:59:11", "timestamp": 1765143948.8260663} +{"step": 8690, "loss": 3.3699631690979004, "lr": 8.774024018793134e-05, "time_ms": 2690.713882446289, "eta_seconds": 3524.8351860046387, "eta": "0:58:44", "timestamp": 1765143975.7416425} +{"step": 8700, "loss": 3.4374184608459473, "lr": 8.732560749922495e-05, "time_ms": 2690.570831298828, "eta_seconds": 3497.7420806884766, "eta": "0:58:17", "timestamp": 1765144002.6519482} +{"step": 8710, "loss": 3.3896124362945557, "lr": 8.691393172140775e-05, "time_ms": 2689.120292663574, "eta_seconds": 3468.9651775360107, "eta": "0:57:48", "timestamp": 1765144029.5562959} +{"step": 8720, "loss": 3.2293946743011475, "lr": 8.65052178706193e-05, "time_ms": 2689.6586418151855, "eta_seconds": 3442.7630615234375, "eta": "0:57:22", "timestamp": 1765144056.453786} +{"step": 8730, "loss": 3.2661988735198975, "lr": 8.609947092690877e-05, "time_ms": 2691.1773681640625, "eta_seconds": 3417.7952575683594, "eta": "0:56:57", "timestamp": 1765144083.3631487} +{"step": 8740, "loss": 3.2970285415649414, "lr": 8.569669583417477e-05, "time_ms": 2691.1985874176025, "eta_seconds": 3390.910220146179, "eta": "0:56:30", "timestamp": 1765144110.2750328} +{"step": 8750, "loss": 3.466867208480835, "lr": 8.529689750010451e-05, "time_ms": 2691.352605819702, "eta_seconds": 3364.1907572746277, "eta": "0:56:04", "timestamp": 1765144137.1897147} +{"step": 8760, "loss": 3.0660409927368164, "lr": 8.490008079611468e-05, "time_ms": 2691.3857460021973, "eta_seconds": 3337.3183250427246, "eta": "0:55:37", "timestamp": 1765144164.1041923} +{"step": 8770, "loss": 3.3840668201446533, "lr": 8.45062505572915e-05, "time_ms": 2690.1464462280273, "eta_seconds": 3308.8801288604736, "eta": "0:55:08", "timestamp": 1765144191.018715} +{"step": 8780, "loss": 3.2500574588775635, "lr": 8.41154115823322e-05, "time_ms": 2691.279888153076, "eta_seconds": 3283.361463546753, "eta": "0:54:43", "timestamp": 1765144217.9304605} +{"step": 8790, "loss": 3.2973031997680664, "lr": 8.372756863348629e-05, "time_ms": 2691.8017864227295, "eta_seconds": 3257.0801615715027, "eta": "0:54:17", "timestamp": 1765144244.8447702} +{"step": 8800, "loss": 3.350229263305664, "lr": 8.334272643649774e-05, "time_ms": 2690.011739730835, "eta_seconds": 3228.014087677002, "eta": "0:53:48", "timestamp": 1765144271.7606108} +{"step": 8810, "loss": 3.306692361831665, "lr": 8.296088968054731e-05, "time_ms": 2690.187454223633, "eta_seconds": 3201.323070526123, "eta": "0:53:21", "timestamp": 1765144298.6739902} +{"step": 8820, "loss": 3.2704901695251465, "lr": 8.258206301819529e-05, "time_ms": 2690.011739730835, "eta_seconds": 3174.2138528823853, "eta": "0:52:54", "timestamp": 1765144325.5879424} +{"step": 8830, "loss": 3.3559107780456543, "lr": 8.220625106532508e-05, "time_ms": 2691.0314559936523, "eta_seconds": 3148.5068035125732, "eta": "0:52:28", "timestamp": 1765144352.4996324} +{"step": 8840, "loss": 3.190155029296875, "lr": 8.183345840108672e-05, "time_ms": 2691.0266876220703, "eta_seconds": 3121.5909576416016, "eta": "0:52:01", "timestamp": 1765144379.4140732} +{"step": 8850, "loss": 3.448669195175171, "lr": 8.14636895678411e-05, "time_ms": 2690.8040046691895, "eta_seconds": 3094.424605369568, "eta": "0:51:34", "timestamp": 1765144406.3291774} +{"step": 8860, "loss": 3.294142007827759, "lr": 8.109694907110489e-05, "time_ms": 2690.7005310058594, "eta_seconds": 3067.3986053466797, "eta": "0:51:07", "timestamp": 1765144433.241375} +{"step": 8870, "loss": 3.3672802448272705, "lr": 8.073324137949516e-05, "time_ms": 2690.0577545166016, "eta_seconds": 3039.7652626037598, "eta": "0:50:39", "timestamp": 1765144460.1525671} +{"step": 8880, "loss": 3.327383279800415, "lr": 8.037257092467548e-05, "time_ms": 2690.9737586975098, "eta_seconds": 3013.890609741211, "eta": "0:50:13", "timestamp": 1765144487.0630734} +{"step": 8890, "loss": 3.3358213901519775, "lr": 8.001494210130143e-05, "time_ms": 2690.3278827667236, "eta_seconds": 2986.2639498710632, "eta": "0:49:46", "timestamp": 1765144513.9756875} +{"step": 8900, "loss": 3.2487611770629883, "lr": 7.966035926696742e-05, "time_ms": 2690.4070377349854, "eta_seconds": 2959.447741508484, "eta": "0:49:19", "timestamp": 1765144540.8874497} +{"step": 8910, "loss": 3.3701391220092773, "lr": 7.930882674215335e-05, "time_ms": 2689.4524097442627, "eta_seconds": 2931.5031266212463, "eta": "0:48:51", "timestamp": 1765144567.7989552} +{"step": 8920, "loss": 3.3464550971984863, "lr": 7.896034881017214e-05, "time_ms": 2690.3719902038574, "eta_seconds": 2905.601749420166, "eta": "0:48:25", "timestamp": 1765144594.7102695} +{"step": 8930, "loss": 3.287585973739624, "lr": 7.86149297171174e-05, "time_ms": 2690.749406814575, "eta_seconds": 2879.1018652915955, "eta": "0:47:59", "timestamp": 1765144621.6255114} +{"step": 8940, "loss": 3.3739752769470215, "lr": 7.827257367181171e-05, "time_ms": 2690.541982650757, "eta_seconds": 2851.9745016098022, "eta": "0:47:31", "timestamp": 1765144648.537869} +{"step": 8950, "loss": 3.35949969291687, "lr": 7.793328484575556e-05, "time_ms": 2689.65482711792, "eta_seconds": 2824.137568473816, "eta": "0:47:04", "timestamp": 1765144675.4492328} +{"step": 8960, "loss": 3.350524425506592, "lr": 7.759706737307611e-05, "time_ms": 2690.2449131011963, "eta_seconds": 2797.854709625244, "eta": "0:46:37", "timestamp": 1765144702.3602793} +{"step": 8970, "loss": 3.3846492767333984, "lr": 7.726392535047721e-05, "time_ms": 2689.9728775024414, "eta_seconds": 2770.6720638275146, "eta": "0:46:10", "timestamp": 1765144729.2705336} +{"step": 8980, "loss": 3.2283291816711426, "lr": 7.69338628371893e-05, "time_ms": 2690.236806869507, "eta_seconds": 2744.041543006897, "eta": "0:45:44", "timestamp": 1765144756.1815174} +{"step": 8990, "loss": 3.3537302017211914, "lr": 7.66068838549199e-05, "time_ms": 2690.2143955230713, "eta_seconds": 2717.116539478302, "eta": "0:45:17", "timestamp": 1765144783.0938842} +{"step": 9000, "loss": 3.238189220428467, "lr": 7.628299238780476e-05, "time_ms": 50151.429891586304, "eta_seconds": 50151.429891586304, "eta": "13:55:51", "timestamp": 1765144857.4694958} +{"step": 9010, "loss": 3.321075201034546, "lr": 7.596219238235912e-05, "time_ms": 2690.6301975250244, "eta_seconds": 2663.723895549774, "eta": "0:44:23", "timestamp": 1765144884.3811572} +{"step": 9020, "loss": 3.368441581726074, "lr": 7.56444877474299e-05, "time_ms": 2690.4261112213135, "eta_seconds": 2636.617588996887, "eta": "0:43:56", "timestamp": 1765144911.292855} +{"step": 9030, "loss": 3.233717679977417, "lr": 7.532988235414774e-05, "time_ms": 2691.530704498291, "eta_seconds": 2610.7847833633423, "eta": "0:43:30", "timestamp": 1765144938.2058027} +{"step": 9040, "loss": 3.0437161922454834, "lr": 7.501838003588013e-05, "time_ms": 2690.9141540527344, "eta_seconds": 2583.277587890625, "eta": "0:43:03", "timestamp": 1765144965.1212626} +{"step": 9050, "loss": 3.3927624225616455, "lr": 7.470998458818445e-05, "time_ms": 2690.71626663208, "eta_seconds": 2556.180453300476, "eta": "0:42:36", "timestamp": 1765144992.0339315} +{"step": 9060, "loss": 3.1412177085876465, "lr": 7.440469976876201e-05, "time_ms": 2690.9077167510986, "eta_seconds": 2529.4532537460327, "eta": "0:42:09", "timestamp": 1765145018.9474924} +{"step": 9070, "loss": 3.400611162185669, "lr": 7.410252929741189e-05, "time_ms": 2691.2190914154053, "eta_seconds": 2502.833755016327, "eta": "0:41:42", "timestamp": 1765145045.8587904} +{"step": 9080, "loss": 3.325889825820923, "lr": 7.380347685598593e-05, "time_ms": 2691.059350967407, "eta_seconds": 2475.7746028900146, "eta": "0:41:15", "timestamp": 1765145072.774267} +{"step": 9090, "loss": 3.3158247470855713, "lr": 7.350754608834386e-05, "time_ms": 2690.5198097229004, "eta_seconds": 2448.3730268478394, "eta": "0:40:48", "timestamp": 1765145099.685419} +{"step": 9100, "loss": 3.1698713302612305, "lr": 7.321474060030854e-05, "time_ms": 2690.671920776367, "eta_seconds": 2421.6047286987305, "eta": "0:40:21", "timestamp": 1765145126.5987024} +{"step": 9110, "loss": 3.3236937522888184, "lr": 7.292506395962258e-05, "time_ms": 2691.5459632873535, "eta_seconds": 2395.4759073257446, "eta": "0:39:55", "timestamp": 1765145153.5127046} +{"step": 9120, "loss": 3.3959319591522217, "lr": 7.263851969590433e-05, "time_ms": 2690.4077529907227, "eta_seconds": 2367.558822631836, "eta": "0:39:27", "timestamp": 1765145180.424076} +{"step": 9130, "loss": 3.1804773807525635, "lr": 7.235511130060526e-05, "time_ms": 2691.3211345672607, "eta_seconds": 2341.449387073517, "eta": "0:39:01", "timestamp": 1765145207.338237} +{"step": 9140, "loss": 3.4528889656066895, "lr": 7.207484222696722e-05, "time_ms": 2691.3883686065674, "eta_seconds": 2314.593997001648, "eta": "0:38:34", "timestamp": 1765145234.2524323} +{"step": 9150, "loss": 3.412187099456787, "lr": 7.179771588998042e-05, "time_ms": 2691.922187805176, "eta_seconds": 2288.1338596343994, "eta": "0:38:08", "timestamp": 1765145261.1690712} +{"step": 9160, "loss": 3.291551113128662, "lr": 7.152373566634185e-05, "time_ms": 2692.4338340759277, "eta_seconds": 2261.6444206237793, "eta": "0:37:41", "timestamp": 1765145288.083003} +{"step": 9170, "loss": 3.3227102756500244, "lr": 7.125290489441403e-05, "time_ms": 2691.3366317749023, "eta_seconds": 2233.809404373169, "eta": "0:37:13", "timestamp": 1765145314.9997158} +{"step": 9180, "loss": 3.497157096862793, "lr": 7.098522687418448e-05, "time_ms": 2690.047264099121, "eta_seconds": 2205.8387565612793, "eta": "0:36:45", "timestamp": 1765145341.9133205} +{"step": 9190, "loss": 3.3776609897613525, "lr": 7.072070486722538e-05, "time_ms": 2690.613031387329, "eta_seconds": 2179.3965554237366, "eta": "0:36:19", "timestamp": 1765145368.8254082} +{"step": 9200, "loss": 3.4541120529174805, "lr": 7.04593420966539e-05, "time_ms": 2690.265893936157, "eta_seconds": 2152.212715148926, "eta": "0:35:52", "timestamp": 1765145395.736828} +{"step": 9210, "loss": 3.3831913471221924, "lr": 7.020114174709295e-05, "time_ms": 2690.6821727752686, "eta_seconds": 2125.638916492462, "eta": "0:35:25", "timestamp": 1765145422.6455042} +{"step": 9220, "loss": 3.3052053451538086, "lr": 6.994610696463231e-05, "time_ms": 2689.974069595337, "eta_seconds": 2098.179774284363, "eta": "0:34:58", "timestamp": 1765145449.5568812} +{"step": 9230, "loss": 3.3486926555633545, "lr": 6.96942408567903e-05, "time_ms": 2691.2832260131836, "eta_seconds": 2072.2880840301514, "eta": "0:34:32", "timestamp": 1765145476.4681933} +{"step": 9240, "loss": 3.3560941219329834, "lr": 6.944554649247592e-05, "time_ms": 2691.5979385375977, "eta_seconds": 2045.6144332885742, "eta": "0:34:05", "timestamp": 1765145503.378264} +{"step": 9250, "loss": 3.4633677005767822, "lr": 6.920002690195159e-05, "time_ms": 2689.979314804077, "eta_seconds": 2017.4844861030579, "eta": "0:33:37", "timestamp": 1765145530.2871575} +{"step": 9260, "loss": 3.3973076343536377, "lr": 6.895768507679596e-05, "time_ms": 2691.4148330688477, "eta_seconds": 1991.6469764709473, "eta": "0:33:11", "timestamp": 1765145557.2008674} +{"step": 9270, "loss": 3.443970203399658, "lr": 6.87185239698678e-05, "time_ms": 2689.2895698547363, "eta_seconds": 1963.1813859939575, "eta": "0:32:43", "timestamp": 1765145584.1106727} +{"step": 9280, "loss": 3.5234930515289307, "lr": 6.848254649526961e-05, "time_ms": 2691.1725997924805, "eta_seconds": 1937.644271850586, "eta": "0:32:17", "timestamp": 1765145611.019961} +{"step": 9290, "loss": 3.394359588623047, "lr": 6.824975552831251e-05, "time_ms": 2690.337657928467, "eta_seconds": 1910.1397371292114, "eta": "0:31:50", "timestamp": 1765145637.9292974} +{"step": 9300, "loss": 3.097745656967163, "lr": 6.802015390548096e-05, "time_ms": 2690.8953189849854, "eta_seconds": 1883.6267232894897, "eta": "0:31:23", "timestamp": 1765145664.841099} +{"step": 9310, "loss": 3.4809844493865967, "lr": 6.779374442439828e-05, "time_ms": 2690.831184387207, "eta_seconds": 1856.6735172271729, "eta": "0:30:56", "timestamp": 1765145691.754142} +{"step": 9320, "loss": 3.298445224761963, "lr": 6.757052984379253e-05, "time_ms": 2690.5364990234375, "eta_seconds": 1829.5648193359375, "eta": "0:30:29", "timestamp": 1765145718.6680684} +{"step": 9330, "loss": 3.285349130630493, "lr": 6.735051288346295e-05, "time_ms": 2690.944194793701, "eta_seconds": 1802.9326105117798, "eta": "0:30:02", "timestamp": 1765145745.5792248} +{"step": 9340, "loss": 3.2319021224975586, "lr": 6.713369622424672e-05, "time_ms": 2691.387414932251, "eta_seconds": 1776.3156938552856, "eta": "0:29:36", "timestamp": 1765145772.4948668} +{"step": 9350, "loss": 3.4492931365966797, "lr": 6.692008250798652e-05, "time_ms": 2691.1263465881348, "eta_seconds": 1749.2321252822876, "eta": "0:29:09", "timestamp": 1765145799.4110487} +{"step": 9360, "loss": 3.269191265106201, "lr": 6.670967433749792e-05, "time_ms": 2690.7882690429688, "eta_seconds": 1722.1044921875, "eta": "0:28:42", "timestamp": 1765145826.3243115} +{"step": 9370, "loss": 3.2780473232269287, "lr": 6.650247427653819e-05, "time_ms": 2690.3634071350098, "eta_seconds": 1694.9289464950562, "eta": "0:28:14", "timestamp": 1765145853.23687} +{"step": 9380, "loss": 3.2713801860809326, "lr": 6.629848484977466e-05, "time_ms": 2688.443183898926, "eta_seconds": 1666.834774017334, "eta": "0:27:46", "timestamp": 1765145880.1465743} +{"step": 9390, "loss": 3.4110066890716553, "lr": 6.609770854275412e-05, "time_ms": 2689.96262550354, "eta_seconds": 1640.8772015571594, "eta": "0:27:20", "timestamp": 1765145907.0601888} +{"step": 9400, "loss": 3.482130527496338, "lr": 6.590014780187247e-05, "time_ms": 2692.415952682495, "eta_seconds": 1615.449571609497, "eta": "0:26:55", "timestamp": 1765145933.9713614} +{"step": 9410, "loss": 3.3858838081359863, "lr": 6.570580503434505e-05, "time_ms": 2690.715551376343, "eta_seconds": 1587.5221753120422, "eta": "0:26:27", "timestamp": 1765145960.879309} +{"step": 9420, "loss": 3.330615758895874, "lr": 6.55146826081771e-05, "time_ms": 2690.448999404907, "eta_seconds": 1560.4604196548462, "eta": "0:26:00", "timestamp": 1765145987.7938142} +{"step": 9430, "loss": 3.3212339878082275, "lr": 6.532678285213513e-05, "time_ms": 2689.3038749694824, "eta_seconds": 1532.903208732605, "eta": "0:25:32", "timestamp": 1765146014.704986} +{"step": 9440, "loss": 3.349790096282959, "lr": 6.514210805571828e-05, "time_ms": 2690.1302337646484, "eta_seconds": 1506.4729309082031, "eta": "0:25:06", "timestamp": 1765146041.6152415} +{"step": 9450, "loss": 3.267841100692749, "lr": 6.496066046913072e-05, "time_ms": 2690.500259399414, "eta_seconds": 1479.7751426696777, "eta": "0:24:39", "timestamp": 1765146068.526422} +{"step": 9460, "loss": 3.396723985671997, "lr": 6.478244230325407e-05, "time_ms": 2690.5646324157715, "eta_seconds": 1452.9049015045166, "eta": "0:24:12", "timestamp": 1765146095.440053} +{"step": 9470, "loss": 3.2867977619171143, "lr": 6.460745572962038e-05, "time_ms": 2690.4075145721436, "eta_seconds": 1425.915982723236, "eta": "0:23:45", "timestamp": 1765146122.3517492} +{"step": 9480, "loss": 3.4188685417175293, "lr": 6.443570288038583e-05, "time_ms": 2692.270040512085, "eta_seconds": 1399.9804210662842, "eta": "0:23:19", "timestamp": 1765146149.2700443} +{"step": 9490, "loss": 3.0679399967193604, "lr": 6.42671858483047e-05, "time_ms": 2689.9805068969727, "eta_seconds": 1371.890058517456, "eta": "0:22:51", "timestamp": 1765146176.1795604} +{"step": 9500, "loss": 3.324418544769287, "lr": 6.410190668670384e-05, "time_ms": 52776.08513832092, "eta_seconds": 26388.04256916046, "eta": "7:19:48", "timestamp": 1765146253.1828957} +{"step": 9510, "loss": 3.340278387069702, "lr": 6.393986740945768e-05, "time_ms": 2687.2103214263916, "eta_seconds": 1316.7330574989319, "eta": "0:21:56", "timestamp": 1765146280.0550935} +{"step": 9520, "loss": 3.484975814819336, "lr": 6.378106999096369e-05, "time_ms": 2688.401460647583, "eta_seconds": 1290.4327011108398, "eta": "0:21:30", "timestamp": 1765146306.9392776} +{"step": 9530, "loss": 3.2023866176605225, "lr": 6.362551636611827e-05, "time_ms": 2689.185380935669, "eta_seconds": 1263.9171290397644, "eta": "0:21:03", "timestamp": 1765146333.8260663} +{"step": 9540, "loss": 3.3591413497924805, "lr": 6.347320843029327e-05, "time_ms": 2688.9917850494385, "eta_seconds": 1236.9362211227417, "eta": "0:20:36", "timestamp": 1765146360.7175539} +{"step": 9550, "loss": 3.2357943058013916, "lr": 6.332414803931283e-05, "time_ms": 2689.65220451355, "eta_seconds": 1210.3434920310974, "eta": "0:20:10", "timestamp": 1765146387.6077816} +{"step": 9560, "loss": 3.350475549697876, "lr": 6.317833700943075e-05, "time_ms": 2689.3861293792725, "eta_seconds": 1183.3298969268799, "eta": "0:19:43", "timestamp": 1765146414.499476} +{"step": 9570, "loss": 3.3136377334594727, "lr": 6.303577711730843e-05, "time_ms": 2689.45574760437, "eta_seconds": 1156.4659714698792, "eta": "0:19:16", "timestamp": 1765146441.391204} +{"step": 9580, "loss": 3.4145419597625732, "lr": 6.289647009999316e-05, "time_ms": 2688.781499862671, "eta_seconds": 1129.2882299423218, "eta": "0:18:49", "timestamp": 1765146468.2880764} +{"step": 9590, "loss": 3.3090322017669678, "lr": 6.276041765489697e-05, "time_ms": 2689.6684169769287, "eta_seconds": 1102.7640509605408, "eta": "0:18:22", "timestamp": 1765146495.1817966} +{"step": 9600, "loss": 3.3046224117279053, "lr": 6.2627621439776e-05, "time_ms": 2688.9405250549316, "eta_seconds": 1075.5762100219727, "eta": "0:17:55", "timestamp": 1765146522.0760531} +{"step": 9610, "loss": 3.4344797134399414, "lr": 6.249808307271023e-05, "time_ms": 2688.852310180664, "eta_seconds": 1048.652400970459, "eta": "0:17:28", "timestamp": 1765146548.9710443} +{"step": 9620, "loss": 3.264498710632324, "lr": 6.237180413208375e-05, "time_ms": 2688.2786750793457, "eta_seconds": 1021.5458965301514, "eta": "0:17:01", "timestamp": 1765146575.8618126} +{"step": 9630, "loss": 3.2657411098480225, "lr": 6.224878615656559e-05, "time_ms": 2689.856767654419, "eta_seconds": 995.247004032135, "eta": "0:16:35", "timestamp": 1765146602.7580612} +{"step": 9640, "loss": 3.3627946376800537, "lr": 6.2129030645091e-05, "time_ms": 2689.2547607421875, "eta_seconds": 968.1317138671875, "eta": "0:16:08", "timestamp": 1765146629.6517048} +{"step": 9650, "loss": 3.338411569595337, "lr": 6.201253905684307e-05, "time_ms": 2688.350200653076, "eta_seconds": 940.9225702285767, "eta": "0:15:40", "timestamp": 1765146656.5476153} +{"step": 9660, "loss": 3.272153615951538, "lr": 6.189931281123503e-05, "time_ms": 2688.8375282287598, "eta_seconds": 914.2047595977783, "eta": "0:15:14", "timestamp": 1765146683.4454076} +{"step": 9670, "loss": 3.3755619525909424, "lr": 6.178935328789296e-05, "time_ms": 2689.8062229156494, "eta_seconds": 887.6360535621643, "eta": "0:14:47", "timestamp": 1765146710.3408399} +{"step": 9680, "loss": 3.3868374824523926, "lr": 6.168266182663898e-05, "time_ms": 2688.807725906372, "eta_seconds": 860.4184722900391, "eta": "0:14:20", "timestamp": 1765146737.2336738} +{"step": 9690, "loss": 3.292916774749756, "lr": 6.157923972747485e-05, "time_ms": 2688.793897628784, "eta_seconds": 833.5261082649231, "eta": "0:13:53", "timestamp": 1765146764.1257758} +{"step": 9700, "loss": 3.240556478500366, "lr": 6.147908825056621e-05, "time_ms": 2688.258171081543, "eta_seconds": 806.4774513244629, "eta": "0:13:26", "timestamp": 1765146791.0214467} +{"step": 9710, "loss": 3.2629811763763428, "lr": 6.138220861622719e-05, "time_ms": 2688.965082168579, "eta_seconds": 779.7998738288879, "eta": "0:12:59", "timestamp": 1765146817.9157} +{"step": 9720, "loss": 3.2918541431427, "lr": 6.128860200490559e-05, "time_ms": 2689.4314289093018, "eta_seconds": 753.0408000946045, "eta": "0:12:33", "timestamp": 1765146844.8130531} +{"step": 9730, "loss": 3.195098400115967, "lr": 6.119826955716841e-05, "time_ms": 2688.084602355957, "eta_seconds": 725.7828426361084, "eta": "0:12:05", "timestamp": 1765146871.7054849} +{"step": 9740, "loss": 3.337319850921631, "lr": 6.111121237368802e-05, "time_ms": 2689.401865005493, "eta_seconds": 699.2444849014282, "eta": "0:11:39", "timestamp": 1765146898.6025329} +{"step": 9750, "loss": 3.221512794494629, "lr": 6.1027431515228704e-05, "time_ms": 2689.9352073669434, "eta_seconds": 672.4838018417358, "eta": "0:11:12", "timestamp": 1765146925.4973016} +{"step": 9760, "loss": 3.3094615936279297, "lr": 6.094692800263382e-05, "time_ms": 2689.04972076416, "eta_seconds": 645.3719329833984, "eta": "0:10:45", "timestamp": 1765146952.3899589} +{"step": 9770, "loss": 3.2300150394439697, "lr": 6.0869702816813275e-05, "time_ms": 2689.7895336151123, "eta_seconds": 618.6515927314758, "eta": "0:10:18", "timestamp": 1765146979.2841277} +{"step": 9780, "loss": 3.306036949157715, "lr": 6.079575689873153e-05, "time_ms": 2689.4164085388184, "eta_seconds": 591.67160987854, "eta": "0:09:51", "timestamp": 1765147006.1775029} +{"step": 9790, "loss": 3.3454127311706543, "lr": 6.072509114939632e-05, "time_ms": 2689.775228500366, "eta_seconds": 564.8527979850769, "eta": "0:09:24", "timestamp": 1765147033.071847} +{"step": 9800, "loss": 3.304492473602295, "lr": 6.0657706429847466e-05, "time_ms": 2689.2566680908203, "eta_seconds": 537.8513336181641, "eta": "0:08:57", "timestamp": 1765147059.968857} +{"step": 9810, "loss": 3.455810070037842, "lr": 6.059360356114651e-05, "time_ms": 2688.8973712921143, "eta_seconds": 510.8905005455017, "eta": "0:08:30", "timestamp": 1765147086.862959} +{"step": 9820, "loss": 3.4776737689971924, "lr": 6.053278332436668e-05, "time_ms": 2689.0103816986084, "eta_seconds": 484.0218687057495, "eta": "0:08:04", "timestamp": 1765147113.7565496} +{"step": 9830, "loss": 3.3366410732269287, "lr": 6.0475246460583366e-05, "time_ms": 2689.279794692993, "eta_seconds": 457.17756509780884, "eta": "0:07:37", "timestamp": 1765147140.6531205} +{"step": 9840, "loss": 3.3179469108581543, "lr": 6.042099367086513e-05, "time_ms": 2689.0907287597656, "eta_seconds": 430.2545166015625, "eta": "0:07:10", "timestamp": 1765147167.5458026} +{"step": 9850, "loss": 3.3535568714141846, "lr": 6.037002561626506e-05, "time_ms": 2688.7810230255127, "eta_seconds": 403.3171534538269, "eta": "0:06:43", "timestamp": 1765147194.4385083} +{"step": 9860, "loss": 3.3613433837890625, "lr": 6.032234291781283e-05, "time_ms": 2688.74454498291, "eta_seconds": 376.4242362976074, "eta": "0:06:16", "timestamp": 1765147221.3307095} +{"step": 9870, "loss": 3.483717918395996, "lr": 6.027794615650705e-05, "time_ms": 2689.3749237060547, "eta_seconds": 349.6187400817871, "eta": "0:05:49", "timestamp": 1765147248.2211068} +{"step": 9880, "loss": 3.388702154159546, "lr": 6.0236835873308236e-05, "time_ms": 2689.330816268921, "eta_seconds": 322.7196979522705, "eta": "0:05:22", "timestamp": 1765147275.1128876} +{"step": 9890, "loss": 3.3678600788116455, "lr": 6.019901256913229e-05, "time_ms": 2688.1558895111084, "eta_seconds": 295.6971478462219, "eta": "0:04:55", "timestamp": 1765147302.003117} +{"step": 9900, "loss": 3.2922918796539307, "lr": 6.0164476704844146e-05, "time_ms": 2688.1864070892334, "eta_seconds": 268.81864070892334, "eta": "0:04:28", "timestamp": 1765147328.8951654} +{"step": 9910, "loss": 3.3373093605041504, "lr": 6.013322870125247e-05, "time_ms": 2689.406394958496, "eta_seconds": 242.04657554626465, "eta": "0:04:02", "timestamp": 1765147355.7884636} +{"step": 9920, "loss": 3.38280987739563, "lr": 6.0105268939104325e-05, "time_ms": 2688.615322113037, "eta_seconds": 215.08922576904297, "eta": "0:03:35", "timestamp": 1765147382.6790795} +{"step": 9930, "loss": 3.2267403602600098, "lr": 6.008059775908056e-05, "time_ms": 2688.2388591766357, "eta_seconds": 188.1767201423645, "eta": "0:03:08", "timestamp": 1765147409.5703785} +{"step": 9940, "loss": 3.354172945022583, "lr": 6.0059215461791714e-05, "time_ms": 2689.608335494995, "eta_seconds": 161.3765001296997, "eta": "0:02:41", "timestamp": 1765147436.464254} +{"step": 9950, "loss": 3.312748670578003, "lr": 6.004112230777436e-05, "time_ms": 2687.5503063201904, "eta_seconds": 134.37751531600952, "eta": "0:02:14", "timestamp": 1765147463.3538563} +{"step": 9960, "loss": 3.3858091831207275, "lr": 6.0026318517487855e-05, "time_ms": 2689.098119735718, "eta_seconds": 107.56392478942871, "eta": "0:01:47", "timestamp": 1765147490.2437391} +{"step": 9970, "loss": 3.364229440689087, "lr": 6.0014804271311725e-05, "time_ms": 2688.302755355835, "eta_seconds": 80.64908266067505, "eta": "0:01:20", "timestamp": 1765147517.1327198} +{"step": 9980, "loss": 3.2903707027435303, "lr": 6.000657970954342e-05, "time_ms": 2687.347412109375, "eta_seconds": 53.7469482421875, "eta": "0:00:53", "timestamp": 1765147544.021121} +{"step": 9990, "loss": 3.2541794776916504, "lr": 6.0001644932396594e-05, "time_ms": 2687.5641345977783, "eta_seconds": 26.875641345977783, "eta": "0:00:26", "timestamp": 1765147570.9073985} diff --git a/phase-1-pretraining/plots/loss_curve.png b/phase-1-pretraining/plots/loss_curve.png new file mode 100644 index 0000000000000000000000000000000000000000..0ddae02145c2a27b9c7c3b5c3dad8a45deb1945f Binary files /dev/null and b/phase-1-pretraining/plots/loss_curve.png differ diff --git a/phase-1-pretraining/plots/lr_curve.png b/phase-1-pretraining/plots/lr_curve.png new file mode 100644 index 0000000000000000000000000000000000000000..e6688f13a0ff8811dd8b4e7f6aa0bc98c2c58463 Binary files /dev/null and b/phase-1-pretraining/plots/lr_curve.png differ diff --git a/phase-1-pretraining/safetensors/config.json b/phase-1-pretraining/safetensors/config.json new file mode 100644 index 0000000000000000000000000000000000000000..051ae6dc38bcdd1e2bc864c5eb039514cd20d7ea --- /dev/null +++ b/phase-1-pretraining/safetensors/config.json @@ -0,0 +1,15 @@ +{ + "dim": 384, + "n_layers": 16, + "n_heads": 6, + "n_kv_heads": 6, + "vocab_size": 32000, + "multiple_of": 32, + "max_seq_len": 128, + "dropout": 0.0, + "device": "cuda", + "architectures": [ + "MiniLLM" + ], + "model_type": "mini-llm" +} \ No newline at end of file diff --git a/phase-1-pretraining/safetensors/model.safetensors b/phase-1-pretraining/safetensors/model.safetensors new file mode 100644 index 0000000000000000000000000000000000000000..ca0823f824f119ce880e81b948146110dc84d4bd --- /dev/null +++ b/phase-1-pretraining/safetensors/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f71a2758832ba0152a050e387171c510963fe623476f2caea1be14c11f76c48c +size 249397320